diff --git a/src/gatsby-types.d.ts b/src/gatsby-types.d.ts index 9bbbf78..2ad6baf 100644 --- a/src/gatsby-types.d.ts +++ b/src/gatsby-types.d.ts @@ -3,7642 +3,7619 @@ /* THIS FILE IS AUTOGENERATED. CHANGES WILL BE LOST ON SUBSEQUENT RUNS. */ declare namespace Queries { - -type Maybe = T | null; -type InputMaybe = T | null; -type Exact = { [K in keyof T]: T[K] }; -type MakeOptional = Omit & { [SubKey in K]?: Maybe }; -type MakeMaybe = Omit & { [SubKey in K]: Maybe }; -/** All built-in and custom scalars, mapped to their actual values */ -type Scalars = { - /** The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `"4"`) or integer (such as `4`) input value will be accepted as an ID. */ - ID: string; - /** The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text. */ - String: string; - /** The `Boolean` scalar type represents `true` or `false`. */ - Boolean: boolean; - /** The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1. */ - Int: number; - /** The `Float` scalar type represents signed double-precision fractional values as specified by [IEEE 754](https://en.wikipedia.org/wiki/IEEE_floating_point). */ - Float: number; - /** A date string, such as 2007-12-03, compliant with the ISO 8601 standard for representation of dates and times using the Gregorian calendar. */ - Date: string; - GatsbyImageData: import('gatsby-plugin-image').IGatsbyImageData; - /** The `JSON` scalar type represents JSON values as specified by [ECMA-404](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf). */ - JSON: Record; -}; - -type AVIFOptions = { - readonly lossless: InputMaybe; - readonly quality: InputMaybe; - readonly speed: InputMaybe; -}; - -type BlurredOptions = { - /** Force the output format for the low-res preview. Default is to use the same format as the input. You should rarely need to change this */ - readonly toFormat: InputMaybe; - /** Width of the generated low-res preview. Default is 20px */ - readonly width: InputMaybe; -}; - -type BooleanQueryOperatorInput = { - readonly eq: InputMaybe; - readonly in: InputMaybe>>; - readonly ne: InputMaybe; - readonly nin: InputMaybe>>; -}; - -type DateQueryOperatorInput = { - readonly eq: InputMaybe; - readonly gt: InputMaybe; - readonly gte: InputMaybe; - readonly in: InputMaybe>>; - readonly lt: InputMaybe; - readonly lte: InputMaybe; - readonly ne: InputMaybe; - readonly nin: InputMaybe>>; -}; - -type Directory = Node & { - readonly absolutePath: Scalars['String']; - readonly accessTime: Scalars['Date']; - readonly atime: Scalars['Date']; - readonly atimeMs: Scalars['Float']; - readonly base: Scalars['String']; - readonly birthTime: Scalars['Date']; - /** @deprecated Use `birthTime` instead */ - readonly birthtime: Maybe; - /** @deprecated Use `birthTime` instead */ - readonly birthtimeMs: Maybe; - readonly changeTime: Scalars['Date']; - readonly children: ReadonlyArray; - readonly ctime: Scalars['Date']; - readonly ctimeMs: Scalars['Float']; - readonly dev: Scalars['Int']; - readonly dir: Scalars['String']; - readonly ext: Scalars['String']; - readonly extension: Scalars['String']; - readonly gid: Scalars['Int']; - readonly id: Scalars['ID']; - readonly ino: Scalars['Float']; - readonly internal: Internal; - readonly mode: Scalars['Int']; - readonly modifiedTime: Scalars['Date']; - readonly mtime: Scalars['Date']; - readonly mtimeMs: Scalars['Float']; - readonly name: Scalars['String']; - readonly nlink: Scalars['Int']; - readonly parent: Maybe; - readonly prettySize: Scalars['String']; - readonly rdev: Scalars['Int']; - readonly relativeDirectory: Scalars['String']; - readonly relativePath: Scalars['String']; - readonly root: Scalars['String']; - readonly size: Scalars['Int']; - readonly sourceInstanceName: Scalars['String']; - readonly uid: Scalars['Int']; -}; - - -type Directory_accessTimeArgs = { - difference: InputMaybe; - formatString: InputMaybe; - fromNow: InputMaybe; - locale: InputMaybe; -}; - - -type Directory_atimeArgs = { - difference: InputMaybe; - formatString: InputMaybe; - fromNow: InputMaybe; - locale: InputMaybe; -}; - - -type Directory_birthTimeArgs = { - difference: InputMaybe; - formatString: InputMaybe; - fromNow: InputMaybe; - locale: InputMaybe; -}; - - -type Directory_changeTimeArgs = { - difference: InputMaybe; - formatString: InputMaybe; - fromNow: InputMaybe; - locale: InputMaybe; -}; - - -type Directory_ctimeArgs = { - difference: InputMaybe; - formatString: InputMaybe; - fromNow: InputMaybe; - locale: InputMaybe; -}; - - -type Directory_modifiedTimeArgs = { - difference: InputMaybe; - formatString: InputMaybe; - fromNow: InputMaybe; - locale: InputMaybe; -}; - - -type Directory_mtimeArgs = { - difference: InputMaybe; - formatString: InputMaybe; - fromNow: InputMaybe; - locale: InputMaybe; -}; - -type DirectoryConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type DirectoryConnection_distinctArgs = { - field: DirectoryFieldSelector; -}; - - -type DirectoryConnection_groupArgs = { - field: DirectoryFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type DirectoryConnection_maxArgs = { - field: DirectoryFieldSelector; -}; - - -type DirectoryConnection_minArgs = { - field: DirectoryFieldSelector; -}; - - -type DirectoryConnection_sumArgs = { - field: DirectoryFieldSelector; -}; - -type DirectoryEdge = { - readonly next: Maybe; - readonly node: Directory; - readonly previous: Maybe; -}; - -type DirectoryFieldSelector = { - readonly absolutePath: InputMaybe; - readonly accessTime: InputMaybe; - readonly atime: InputMaybe; - readonly atimeMs: InputMaybe; - readonly base: InputMaybe; - readonly birthTime: InputMaybe; - readonly birthtime: InputMaybe; - readonly birthtimeMs: InputMaybe; - readonly changeTime: InputMaybe; - readonly children: InputMaybe; - readonly ctime: InputMaybe; - readonly ctimeMs: InputMaybe; - readonly dev: InputMaybe; - readonly dir: InputMaybe; - readonly ext: InputMaybe; - readonly extension: InputMaybe; - readonly gid: InputMaybe; - readonly id: InputMaybe; - readonly ino: InputMaybe; - readonly internal: InputMaybe; - readonly mode: InputMaybe; - readonly modifiedTime: InputMaybe; - readonly mtime: InputMaybe; - readonly mtimeMs: InputMaybe; - readonly name: InputMaybe; - readonly nlink: InputMaybe; - readonly parent: InputMaybe; - readonly prettySize: InputMaybe; - readonly rdev: InputMaybe; - readonly relativeDirectory: InputMaybe; - readonly relativePath: InputMaybe; - readonly root: InputMaybe; - readonly size: InputMaybe; - readonly sourceInstanceName: InputMaybe; - readonly uid: InputMaybe; -}; - -type DirectoryFilterInput = { - readonly absolutePath: InputMaybe; - readonly accessTime: InputMaybe; - readonly atime: InputMaybe; - readonly atimeMs: InputMaybe; - readonly base: InputMaybe; - readonly birthTime: InputMaybe; - readonly birthtime: InputMaybe; - readonly birthtimeMs: InputMaybe; - readonly changeTime: InputMaybe; - readonly children: InputMaybe; - readonly ctime: InputMaybe; - readonly ctimeMs: InputMaybe; - readonly dev: InputMaybe; - readonly dir: InputMaybe; - readonly ext: InputMaybe; - readonly extension: InputMaybe; - readonly gid: InputMaybe; - readonly id: InputMaybe; - readonly ino: InputMaybe; - readonly internal: InputMaybe; - readonly mode: InputMaybe; - readonly modifiedTime: InputMaybe; - readonly mtime: InputMaybe; - readonly mtimeMs: InputMaybe; - readonly name: InputMaybe; - readonly nlink: InputMaybe; - readonly parent: InputMaybe; - readonly prettySize: InputMaybe; - readonly rdev: InputMaybe; - readonly relativeDirectory: InputMaybe; - readonly relativePath: InputMaybe; - readonly root: InputMaybe; - readonly size: InputMaybe; - readonly sourceInstanceName: InputMaybe; - readonly uid: InputMaybe; -}; - -type DirectoryGroupConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly field: Scalars['String']; - readonly fieldValue: Maybe; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type DirectoryGroupConnection_distinctArgs = { - field: DirectoryFieldSelector; -}; - - -type DirectoryGroupConnection_groupArgs = { - field: DirectoryFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type DirectoryGroupConnection_maxArgs = { - field: DirectoryFieldSelector; -}; - - -type DirectoryGroupConnection_minArgs = { - field: DirectoryFieldSelector; -}; - - -type DirectoryGroupConnection_sumArgs = { - field: DirectoryFieldSelector; -}; - -type DirectorySortInput = { - readonly absolutePath: InputMaybe; - readonly accessTime: InputMaybe; - readonly atime: InputMaybe; - readonly atimeMs: InputMaybe; - readonly base: InputMaybe; - readonly birthTime: InputMaybe; - readonly birthtime: InputMaybe; - readonly birthtimeMs: InputMaybe; - readonly changeTime: InputMaybe; - readonly children: InputMaybe; - readonly ctime: InputMaybe; - readonly ctimeMs: InputMaybe; - readonly dev: InputMaybe; - readonly dir: InputMaybe; - readonly ext: InputMaybe; - readonly extension: InputMaybe; - readonly gid: InputMaybe; - readonly id: InputMaybe; - readonly ino: InputMaybe; - readonly internal: InputMaybe; - readonly mode: InputMaybe; - readonly modifiedTime: InputMaybe; - readonly mtime: InputMaybe; - readonly mtimeMs: InputMaybe; - readonly name: InputMaybe; - readonly nlink: InputMaybe; - readonly parent: InputMaybe; - readonly prettySize: InputMaybe; - readonly rdev: InputMaybe; - readonly relativeDirectory: InputMaybe; - readonly relativePath: InputMaybe; - readonly root: InputMaybe; - readonly size: InputMaybe; - readonly sourceInstanceName: InputMaybe; - readonly uid: InputMaybe; -}; - -type DuotoneGradient = { - readonly highlight: Scalars['String']; - readonly opacity: InputMaybe; - readonly shadow: Scalars['String']; -}; - -type FieldSelectorEnum = - | 'SELECT'; - -type File = Node & { - readonly absolutePath: Scalars['String']; - readonly accessTime: Scalars['Date']; - readonly atime: Scalars['Date']; - readonly atimeMs: Scalars['Float']; - readonly base: Scalars['String']; - readonly birthTime: Scalars['Date']; - /** @deprecated Use `birthTime` instead */ - readonly birthtime: Maybe; - /** @deprecated Use `birthTime` instead */ - readonly birthtimeMs: Maybe; - readonly blksize: Maybe; - readonly blocks: Maybe; - readonly changeTime: Scalars['Date']; - /** Returns the first child node of type ImageSharp or null if there are no children of given type on this node */ - readonly childImageSharp: Maybe; - readonly children: ReadonlyArray; - /** Returns all children nodes filtered by type ImageSharp */ - readonly childrenImageSharp: Maybe>>; - readonly ctime: Scalars['Date']; - readonly ctimeMs: Scalars['Float']; - readonly dev: Scalars['Int']; - readonly dir: Scalars['String']; - readonly ext: Scalars['String']; - readonly extension: Scalars['String']; - readonly gid: Scalars['Int']; - readonly id: Scalars['ID']; - readonly ino: Scalars['Float']; - readonly internal: Internal; - readonly mode: Scalars['Int']; - readonly modifiedTime: Scalars['Date']; - readonly mtime: Scalars['Date']; - readonly mtimeMs: Scalars['Float']; - readonly name: Scalars['String']; - readonly nlink: Scalars['Int']; - readonly parent: Maybe; - readonly prettySize: Scalars['String']; - readonly rdev: Scalars['Int']; - readonly relativeDirectory: Scalars['String']; - readonly relativePath: Scalars['String']; - readonly root: Scalars['String']; - readonly size: Scalars['Int']; - readonly sourceInstanceName: Scalars['String']; - readonly uid: Scalars['Int']; - readonly url: Maybe; -}; - - -type File_accessTimeArgs = { - difference: InputMaybe; - formatString: InputMaybe; - fromNow: InputMaybe; - locale: InputMaybe; -}; - - -type File_atimeArgs = { - difference: InputMaybe; - formatString: InputMaybe; - fromNow: InputMaybe; - locale: InputMaybe; -}; - - -type File_birthTimeArgs = { - difference: InputMaybe; - formatString: InputMaybe; - fromNow: InputMaybe; - locale: InputMaybe; -}; - - -type File_changeTimeArgs = { - difference: InputMaybe; - formatString: InputMaybe; - fromNow: InputMaybe; - locale: InputMaybe; -}; - - -type File_ctimeArgs = { - difference: InputMaybe; - formatString: InputMaybe; - fromNow: InputMaybe; - locale: InputMaybe; -}; - - -type File_modifiedTimeArgs = { - difference: InputMaybe; - formatString: InputMaybe; - fromNow: InputMaybe; - locale: InputMaybe; -}; - - -type File_mtimeArgs = { - difference: InputMaybe; - formatString: InputMaybe; - fromNow: InputMaybe; - locale: InputMaybe; -}; - -type FileConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type FileConnection_distinctArgs = { - field: FileFieldSelector; -}; - - -type FileConnection_groupArgs = { - field: FileFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type FileConnection_maxArgs = { - field: FileFieldSelector; -}; - - -type FileConnection_minArgs = { - field: FileFieldSelector; -}; - - -type FileConnection_sumArgs = { - field: FileFieldSelector; -}; - -type FileEdge = { - readonly next: Maybe; - readonly node: File; - readonly previous: Maybe; -}; - -type FileFieldSelector = { - readonly absolutePath: InputMaybe; - readonly accessTime: InputMaybe; - readonly atime: InputMaybe; - readonly atimeMs: InputMaybe; - readonly base: InputMaybe; - readonly birthTime: InputMaybe; - readonly birthtime: InputMaybe; - readonly birthtimeMs: InputMaybe; - readonly blksize: InputMaybe; - readonly blocks: InputMaybe; - readonly changeTime: InputMaybe; - readonly childImageSharp: InputMaybe; - readonly children: InputMaybe; - readonly childrenImageSharp: InputMaybe; - readonly ctime: InputMaybe; - readonly ctimeMs: InputMaybe; - readonly dev: InputMaybe; - readonly dir: InputMaybe; - readonly ext: InputMaybe; - readonly extension: InputMaybe; - readonly gid: InputMaybe; - readonly id: InputMaybe; - readonly ino: InputMaybe; - readonly internal: InputMaybe; - readonly mode: InputMaybe; - readonly modifiedTime: InputMaybe; - readonly mtime: InputMaybe; - readonly mtimeMs: InputMaybe; - readonly name: InputMaybe; - readonly nlink: InputMaybe; - readonly parent: InputMaybe; - readonly prettySize: InputMaybe; - readonly rdev: InputMaybe; - readonly relativeDirectory: InputMaybe; - readonly relativePath: InputMaybe; - readonly root: InputMaybe; - readonly size: InputMaybe; - readonly sourceInstanceName: InputMaybe; - readonly uid: InputMaybe; - readonly url: InputMaybe; -}; - -type FileFilterInput = { - readonly absolutePath: InputMaybe; - readonly accessTime: InputMaybe; - readonly atime: InputMaybe; - readonly atimeMs: InputMaybe; - readonly base: InputMaybe; - readonly birthTime: InputMaybe; - readonly birthtime: InputMaybe; - readonly birthtimeMs: InputMaybe; - readonly blksize: InputMaybe; - readonly blocks: InputMaybe; - readonly changeTime: InputMaybe; - readonly childImageSharp: InputMaybe; - readonly children: InputMaybe; - readonly childrenImageSharp: InputMaybe; - readonly ctime: InputMaybe; - readonly ctimeMs: InputMaybe; - readonly dev: InputMaybe; - readonly dir: InputMaybe; - readonly ext: InputMaybe; - readonly extension: InputMaybe; - readonly gid: InputMaybe; - readonly id: InputMaybe; - readonly ino: InputMaybe; - readonly internal: InputMaybe; - readonly mode: InputMaybe; - readonly modifiedTime: InputMaybe; - readonly mtime: InputMaybe; - readonly mtimeMs: InputMaybe; - readonly name: InputMaybe; - readonly nlink: InputMaybe; - readonly parent: InputMaybe; - readonly prettySize: InputMaybe; - readonly rdev: InputMaybe; - readonly relativeDirectory: InputMaybe; - readonly relativePath: InputMaybe; - readonly root: InputMaybe; - readonly size: InputMaybe; - readonly sourceInstanceName: InputMaybe; - readonly uid: InputMaybe; - readonly url: InputMaybe; -}; - -type FileGroupConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly field: Scalars['String']; - readonly fieldValue: Maybe; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type FileGroupConnection_distinctArgs = { - field: FileFieldSelector; -}; - - -type FileGroupConnection_groupArgs = { - field: FileFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type FileGroupConnection_maxArgs = { - field: FileFieldSelector; -}; - - -type FileGroupConnection_minArgs = { - field: FileFieldSelector; -}; - - -type FileGroupConnection_sumArgs = { - field: FileFieldSelector; -}; - -type FileSortInput = { - readonly absolutePath: InputMaybe; - readonly accessTime: InputMaybe; - readonly atime: InputMaybe; - readonly atimeMs: InputMaybe; - readonly base: InputMaybe; - readonly birthTime: InputMaybe; - readonly birthtime: InputMaybe; - readonly birthtimeMs: InputMaybe; - readonly blksize: InputMaybe; - readonly blocks: InputMaybe; - readonly changeTime: InputMaybe; - readonly childImageSharp: InputMaybe; - readonly children: InputMaybe; - readonly childrenImageSharp: InputMaybe; - readonly ctime: InputMaybe; - readonly ctimeMs: InputMaybe; - readonly dev: InputMaybe; - readonly dir: InputMaybe; - readonly ext: InputMaybe; - readonly extension: InputMaybe; - readonly gid: InputMaybe; - readonly id: InputMaybe; - readonly ino: InputMaybe; - readonly internal: InputMaybe; - readonly mode: InputMaybe; - readonly modifiedTime: InputMaybe; - readonly mtime: InputMaybe; - readonly mtimeMs: InputMaybe; - readonly name: InputMaybe; - readonly nlink: InputMaybe; - readonly parent: InputMaybe; - readonly prettySize: InputMaybe; - readonly rdev: InputMaybe; - readonly relativeDirectory: InputMaybe; - readonly relativePath: InputMaybe; - readonly root: InputMaybe; - readonly size: InputMaybe; - readonly sourceInstanceName: InputMaybe; - readonly uid: InputMaybe; - readonly url: InputMaybe; -}; - -type FloatQueryOperatorInput = { - readonly eq: InputMaybe; - readonly gt: InputMaybe; - readonly gte: InputMaybe; - readonly in: InputMaybe>>; - readonly lt: InputMaybe; - readonly lte: InputMaybe; - readonly ne: InputMaybe; - readonly nin: InputMaybe>>; -}; - -type GatsbyImageDataQueryOperatorInput = { - readonly eq: InputMaybe; - readonly in: InputMaybe>>; - readonly ne: InputMaybe; - readonly nin: InputMaybe>>; -}; - -type GatsbyImageFormat = - | 'auto' - | 'avif' - | 'jpg' - | '' - | 'png' - | 'webp'; - -type GatsbyImageLayout = - | 'constrained' - | 'fixed' - | 'fullWidth'; - -type GatsbyImagePlaceholder = - | 'blurred' - | 'dominantColor' - | 'none' - | 'tracedSVG'; - -type ImageCropFocus = - | 17 - | 0 - | 2 - | 16 - | 1 - | 5 - | 8 - | 3 - | 6 - | 7 - | 4; - -type ImageFit = - | 'contain' - | 'cover' - | 'fill' - | 'inside' - | 'outside'; - -type ImageFormat = - | '' - | 'avif' - | 'jpg' - | '' - | 'png' - | 'webp'; - -type ImageLayout = - | 'constrained' - | 'fixed' - | 'fullWidth'; - -type ImagePlaceholder = - | 'blurred' - | 'dominantColor' - | 'none' - | 'tracedSVG'; - -type ImageSharp = Node & { - readonly children: ReadonlyArray; - readonly fixed: Maybe; - readonly fluid: Maybe; - readonly gatsbyImageData: Scalars['GatsbyImageData']; - readonly id: Scalars['ID']; - readonly internal: Internal; - readonly original: Maybe; - readonly parent: Maybe; - readonly resize: Maybe; -}; - - -type ImageSharp_fixedArgs = { - background?: InputMaybe; - base64Width: InputMaybe; - cropFocus?: InputMaybe; - duotone: InputMaybe; - fit?: InputMaybe; - grayscale?: InputMaybe; - height: InputMaybe; - jpegProgressive?: InputMaybe; - jpegQuality: InputMaybe; - pngCompressionSpeed?: InputMaybe; - pngQuality: InputMaybe; - quality: InputMaybe; - rotate?: InputMaybe; - toFormat?: InputMaybe; - toFormatBase64?: InputMaybe; - traceSVG: InputMaybe; - trim?: InputMaybe; - webpQuality: InputMaybe; - width: InputMaybe; -}; - - -type ImageSharp_fluidArgs = { - background?: InputMaybe; - base64Width: InputMaybe; - cropFocus?: InputMaybe; - duotone: InputMaybe; - fit?: InputMaybe; - grayscale?: InputMaybe; - jpegProgressive?: InputMaybe; - jpegQuality: InputMaybe; - maxHeight: InputMaybe; - maxWidth: InputMaybe; - pngCompressionSpeed?: InputMaybe; - pngQuality: InputMaybe; - quality: InputMaybe; - rotate?: InputMaybe; - sizes?: InputMaybe; - srcSetBreakpoints?: InputMaybe>>; - toFormat?: InputMaybe; - toFormatBase64?: InputMaybe; - traceSVG: InputMaybe; - trim?: InputMaybe; - webpQuality: InputMaybe; -}; - - -type ImageSharp_gatsbyImageDataArgs = { - aspectRatio: InputMaybe; - avifOptions: InputMaybe; - backgroundColor: InputMaybe; - blurredOptions: InputMaybe; - breakpoints: InputMaybe>>; - formats: InputMaybe>>; - height: InputMaybe; - jpgOptions: InputMaybe; - layout?: InputMaybe; - outputPixelDensities: InputMaybe>>; - placeholder: InputMaybe; - pngOptions: InputMaybe; - quality: InputMaybe; - sizes: InputMaybe; - tracedSVGOptions: InputMaybe; - transformOptions: InputMaybe; - webpOptions: InputMaybe; - width: InputMaybe; -}; - - -type ImageSharp_resizeArgs = { - background?: InputMaybe; - base64?: InputMaybe; - cropFocus?: InputMaybe; - duotone: InputMaybe; - fit?: InputMaybe; - grayscale?: InputMaybe; - height: InputMaybe; - jpegProgressive?: InputMaybe; - jpegQuality: InputMaybe; - pngCompressionLevel?: InputMaybe; - pngCompressionSpeed?: InputMaybe; - pngQuality: InputMaybe; - quality: InputMaybe; - rotate?: InputMaybe; - toFormat?: InputMaybe; - traceSVG: InputMaybe; - trim?: InputMaybe; - webpQuality: InputMaybe; - width: InputMaybe; -}; - -type ImageSharpConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type ImageSharpConnection_distinctArgs = { - field: ImageSharpFieldSelector; -}; - - -type ImageSharpConnection_groupArgs = { - field: ImageSharpFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type ImageSharpConnection_maxArgs = { - field: ImageSharpFieldSelector; -}; - - -type ImageSharpConnection_minArgs = { - field: ImageSharpFieldSelector; -}; - - -type ImageSharpConnection_sumArgs = { - field: ImageSharpFieldSelector; -}; - -type ImageSharpEdge = { - readonly next: Maybe; - readonly node: ImageSharp; - readonly previous: Maybe; -}; - -type ImageSharpFieldSelector = { - readonly children: InputMaybe; - readonly fixed: InputMaybe; - readonly fluid: InputMaybe; - readonly gatsbyImageData: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly original: InputMaybe; - readonly parent: InputMaybe; - readonly resize: InputMaybe; -}; - -type ImageSharpFilterInput = { - readonly children: InputMaybe; - readonly fixed: InputMaybe; - readonly fluid: InputMaybe; - readonly gatsbyImageData: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly original: InputMaybe; - readonly parent: InputMaybe; - readonly resize: InputMaybe; -}; - -type ImageSharpFilterListInput = { - readonly elemMatch: InputMaybe; -}; - -type ImageSharpFixed = { - readonly aspectRatio: Maybe; - readonly base64: Maybe; - readonly height: Scalars['Float']; - readonly originalName: Maybe; - readonly src: Scalars['String']; - readonly srcSet: Scalars['String']; - readonly srcSetWebp: Maybe; - readonly srcWebp: Maybe; - readonly tracedSVG: Maybe; - readonly width: Scalars['Float']; -}; - -type ImageSharpFixedFieldSelector = { - readonly aspectRatio: InputMaybe; - readonly base64: InputMaybe; - readonly height: InputMaybe; - readonly originalName: InputMaybe; - readonly src: InputMaybe; - readonly srcSet: InputMaybe; - readonly srcSetWebp: InputMaybe; - readonly srcWebp: InputMaybe; - readonly tracedSVG: InputMaybe; - readonly width: InputMaybe; -}; - -type ImageSharpFixedFilterInput = { - readonly aspectRatio: InputMaybe; - readonly base64: InputMaybe; - readonly height: InputMaybe; - readonly originalName: InputMaybe; - readonly src: InputMaybe; - readonly srcSet: InputMaybe; - readonly srcSetWebp: InputMaybe; - readonly srcWebp: InputMaybe; - readonly tracedSVG: InputMaybe; - readonly width: InputMaybe; -}; - -type ImageSharpFixedSortInput = { - readonly aspectRatio: InputMaybe; - readonly base64: InputMaybe; - readonly height: InputMaybe; - readonly originalName: InputMaybe; - readonly src: InputMaybe; - readonly srcSet: InputMaybe; - readonly srcSetWebp: InputMaybe; - readonly srcWebp: InputMaybe; - readonly tracedSVG: InputMaybe; - readonly width: InputMaybe; -}; - -type ImageSharpFluid = { - readonly aspectRatio: Scalars['Float']; - readonly base64: Maybe; - readonly originalImg: Maybe; - readonly originalName: Maybe; - readonly presentationHeight: Scalars['Int']; - readonly presentationWidth: Scalars['Int']; - readonly sizes: Scalars['String']; - readonly src: Scalars['String']; - readonly srcSet: Scalars['String']; - readonly srcSetWebp: Maybe; - readonly srcWebp: Maybe; - readonly tracedSVG: Maybe; -}; - -type ImageSharpFluidFieldSelector = { - readonly aspectRatio: InputMaybe; - readonly base64: InputMaybe; - readonly originalImg: InputMaybe; - readonly originalName: InputMaybe; - readonly presentationHeight: InputMaybe; - readonly presentationWidth: InputMaybe; - readonly sizes: InputMaybe; - readonly src: InputMaybe; - readonly srcSet: InputMaybe; - readonly srcSetWebp: InputMaybe; - readonly srcWebp: InputMaybe; - readonly tracedSVG: InputMaybe; -}; - -type ImageSharpFluidFilterInput = { - readonly aspectRatio: InputMaybe; - readonly base64: InputMaybe; - readonly originalImg: InputMaybe; - readonly originalName: InputMaybe; - readonly presentationHeight: InputMaybe; - readonly presentationWidth: InputMaybe; - readonly sizes: InputMaybe; - readonly src: InputMaybe; - readonly srcSet: InputMaybe; - readonly srcSetWebp: InputMaybe; - readonly srcWebp: InputMaybe; - readonly tracedSVG: InputMaybe; -}; - -type ImageSharpFluidSortInput = { - readonly aspectRatio: InputMaybe; - readonly base64: InputMaybe; - readonly originalImg: InputMaybe; - readonly originalName: InputMaybe; - readonly presentationHeight: InputMaybe; - readonly presentationWidth: InputMaybe; - readonly sizes: InputMaybe; - readonly src: InputMaybe; - readonly srcSet: InputMaybe; - readonly srcSetWebp: InputMaybe; - readonly srcWebp: InputMaybe; - readonly tracedSVG: InputMaybe; -}; - -type ImageSharpGroupConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly field: Scalars['String']; - readonly fieldValue: Maybe; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type ImageSharpGroupConnection_distinctArgs = { - field: ImageSharpFieldSelector; -}; - - -type ImageSharpGroupConnection_groupArgs = { - field: ImageSharpFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type ImageSharpGroupConnection_maxArgs = { - field: ImageSharpFieldSelector; -}; - - -type ImageSharpGroupConnection_minArgs = { - field: ImageSharpFieldSelector; -}; - - -type ImageSharpGroupConnection_sumArgs = { - field: ImageSharpFieldSelector; -}; - -type ImageSharpOriginal = { - readonly height: Maybe; - readonly src: Maybe; - readonly width: Maybe; -}; - -type ImageSharpOriginalFieldSelector = { - readonly height: InputMaybe; - readonly src: InputMaybe; - readonly width: InputMaybe; -}; - -type ImageSharpOriginalFilterInput = { - readonly height: InputMaybe; - readonly src: InputMaybe; - readonly width: InputMaybe; -}; - -type ImageSharpOriginalSortInput = { - readonly height: InputMaybe; - readonly src: InputMaybe; - readonly width: InputMaybe; -}; - -type ImageSharpResize = { - readonly aspectRatio: Maybe; - readonly height: Maybe; - readonly originalName: Maybe; - readonly src: Maybe; - readonly tracedSVG: Maybe; - readonly width: Maybe; -}; - -type ImageSharpResizeFieldSelector = { - readonly aspectRatio: InputMaybe; - readonly height: InputMaybe; - readonly originalName: InputMaybe; - readonly src: InputMaybe; - readonly tracedSVG: InputMaybe; - readonly width: InputMaybe; -}; - -type ImageSharpResizeFilterInput = { - readonly aspectRatio: InputMaybe; - readonly height: InputMaybe; - readonly originalName: InputMaybe; - readonly src: InputMaybe; - readonly tracedSVG: InputMaybe; - readonly width: InputMaybe; -}; - -type ImageSharpResizeSortInput = { - readonly aspectRatio: InputMaybe; - readonly height: InputMaybe; - readonly originalName: InputMaybe; - readonly src: InputMaybe; - readonly tracedSVG: InputMaybe; - readonly width: InputMaybe; -}; - -type ImageSharpSortInput = { - readonly children: InputMaybe; - readonly fixed: InputMaybe; - readonly fluid: InputMaybe; - readonly gatsbyImageData: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly original: InputMaybe; - readonly parent: InputMaybe; - readonly resize: InputMaybe; -}; - -type IntQueryOperatorInput = { - readonly eq: InputMaybe; - readonly gt: InputMaybe; - readonly gte: InputMaybe; - readonly in: InputMaybe>>; - readonly lt: InputMaybe; - readonly lte: InputMaybe; - readonly ne: InputMaybe; - readonly nin: InputMaybe>>; -}; - -type Internal = { - readonly content: Maybe; - readonly contentDigest: Scalars['String']; - readonly contentFilePath: Maybe; - readonly description: Maybe; - readonly fieldOwners: Maybe>>; - readonly ignoreType: Maybe; - readonly mediaType: Maybe; - readonly owner: Scalars['String']; - readonly type: Scalars['String']; -}; - -type InternalFieldSelector = { - readonly content: InputMaybe; - readonly contentDigest: InputMaybe; - readonly contentFilePath: InputMaybe; - readonly description: InputMaybe; - readonly fieldOwners: InputMaybe; - readonly ignoreType: InputMaybe; - readonly mediaType: InputMaybe; - readonly owner: InputMaybe; - readonly type: InputMaybe; -}; - -type InternalFilterInput = { - readonly content: InputMaybe; - readonly contentDigest: InputMaybe; - readonly contentFilePath: InputMaybe; - readonly description: InputMaybe; - readonly fieldOwners: InputMaybe; - readonly ignoreType: InputMaybe; - readonly mediaType: InputMaybe; - readonly owner: InputMaybe; - readonly type: InputMaybe; -}; - -type InternalSortInput = { - readonly content: InputMaybe; - readonly contentDigest: InputMaybe; - readonly contentFilePath: InputMaybe; - readonly description: InputMaybe; - readonly fieldOwners: InputMaybe; - readonly ignoreType: InputMaybe; - readonly mediaType: InputMaybe; - readonly owner: InputMaybe; - readonly type: InputMaybe; -}; - -type JPGOptions = { - readonly progressive: InputMaybe; - readonly quality: InputMaybe; -}; - -type JSONQueryOperatorInput = { - readonly eq: InputMaybe; - readonly glob: InputMaybe; - readonly in: InputMaybe>>; - readonly ne: InputMaybe; - readonly nin: InputMaybe>>; - readonly regex: InputMaybe; -}; - -type MarkdownExcerptFormats = - | 'HTML' - | 'MARKDOWN' - | 'PLAIN'; - -type MarkdownHeading = { - readonly depth: Maybe; - readonly id: Maybe; - readonly value: Maybe; -}; - -type MarkdownHeadingFieldSelector = { - readonly depth: InputMaybe; - readonly id: InputMaybe; - readonly value: InputMaybe; -}; - -type MarkdownHeadingFilterInput = { - readonly depth: InputMaybe; - readonly id: InputMaybe; - readonly value: InputMaybe; -}; - -type MarkdownHeadingFilterListInput = { - readonly elemMatch: InputMaybe; -}; - -type MarkdownHeadingLevels = - | 'h1' - | 'h2' - | 'h3' - | 'h4' - | 'h5' - | 'h6'; - -type MarkdownHeadingSortInput = { - readonly depth: InputMaybe; - readonly id: InputMaybe; - readonly value: InputMaybe; -}; - -type MarkdownRemark = Node & { - readonly children: ReadonlyArray; - readonly excerpt: Maybe; - readonly excerptAst: Maybe; - readonly frontmatter: Maybe; - readonly headings: Maybe>>; - readonly html: Maybe; - readonly htmlAst: Maybe; - readonly id: Scalars['ID']; - readonly internal: Internal; - readonly parent: Maybe; - readonly rawMarkdownBody: Maybe; - readonly tableOfContents: Maybe; - readonly timeToRead: Maybe; - readonly wordCount: Maybe; -}; - - -type MarkdownRemark_excerptArgs = { - format?: InputMaybe; - pruneLength?: InputMaybe; - truncate?: InputMaybe; -}; - - -type MarkdownRemark_excerptAstArgs = { - pruneLength?: InputMaybe; - truncate?: InputMaybe; -}; - - -type MarkdownRemark_headingsArgs = { - depth: InputMaybe; -}; - - -type MarkdownRemark_tableOfContentsArgs = { - absolute?: InputMaybe; - heading: InputMaybe; - maxDepth: InputMaybe; - pathToSlugField?: InputMaybe; -}; - -type MarkdownRemarkConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type MarkdownRemarkConnection_distinctArgs = { - field: MarkdownRemarkFieldSelector; -}; - - -type MarkdownRemarkConnection_groupArgs = { - field: MarkdownRemarkFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type MarkdownRemarkConnection_maxArgs = { - field: MarkdownRemarkFieldSelector; -}; - - -type MarkdownRemarkConnection_minArgs = { - field: MarkdownRemarkFieldSelector; -}; - - -type MarkdownRemarkConnection_sumArgs = { - field: MarkdownRemarkFieldSelector; -}; - -type MarkdownRemarkEdge = { - readonly next: Maybe; - readonly node: MarkdownRemark; - readonly previous: Maybe; -}; - -type MarkdownRemarkFieldSelector = { - readonly children: InputMaybe; - readonly excerpt: InputMaybe; - readonly excerptAst: InputMaybe; - readonly frontmatter: InputMaybe; - readonly headings: InputMaybe; - readonly html: InputMaybe; - readonly htmlAst: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; - readonly rawMarkdownBody: InputMaybe; - readonly tableOfContents: InputMaybe; - readonly timeToRead: InputMaybe; - readonly wordCount: InputMaybe; -}; - -type MarkdownRemarkFilterInput = { - readonly children: InputMaybe; - readonly excerpt: InputMaybe; - readonly excerptAst: InputMaybe; - readonly frontmatter: InputMaybe; - readonly headings: InputMaybe; - readonly html: InputMaybe; - readonly htmlAst: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; - readonly rawMarkdownBody: InputMaybe; - readonly tableOfContents: InputMaybe; - readonly timeToRead: InputMaybe; - readonly wordCount: InputMaybe; -}; - -type MarkdownRemarkFilterListInput = { - readonly elemMatch: InputMaybe; -}; - -type MarkdownRemarkFrontmatter = { - readonly title: Maybe; -}; - -type MarkdownRemarkFrontmatterFieldSelector = { - readonly title: InputMaybe; -}; - -type MarkdownRemarkFrontmatterFilterInput = { - readonly title: InputMaybe; -}; - -type MarkdownRemarkFrontmatterSortInput = { - readonly title: InputMaybe; -}; - -type MarkdownRemarkGroupConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly field: Scalars['String']; - readonly fieldValue: Maybe; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type MarkdownRemarkGroupConnection_distinctArgs = { - field: MarkdownRemarkFieldSelector; -}; - - -type MarkdownRemarkGroupConnection_groupArgs = { - field: MarkdownRemarkFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type MarkdownRemarkGroupConnection_maxArgs = { - field: MarkdownRemarkFieldSelector; -}; - - -type MarkdownRemarkGroupConnection_minArgs = { - field: MarkdownRemarkFieldSelector; -}; - - -type MarkdownRemarkGroupConnection_sumArgs = { - field: MarkdownRemarkFieldSelector; -}; - -type MarkdownRemarkSortInput = { - readonly children: InputMaybe; - readonly excerpt: InputMaybe; - readonly excerptAst: InputMaybe; - readonly frontmatter: InputMaybe; - readonly headings: InputMaybe; - readonly html: InputMaybe; - readonly htmlAst: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; - readonly rawMarkdownBody: InputMaybe; - readonly tableOfContents: InputMaybe; - readonly timeToRead: InputMaybe; - readonly wordCount: InputMaybe; -}; - -type MarkdownWordCount = { - readonly paragraphs: Maybe; - readonly sentences: Maybe; - readonly words: Maybe; -}; - -type MarkdownWordCountFieldSelector = { - readonly paragraphs: InputMaybe; - readonly sentences: InputMaybe; - readonly words: InputMaybe; -}; - -type MarkdownWordCountFilterInput = { - readonly paragraphs: InputMaybe; - readonly sentences: InputMaybe; - readonly words: InputMaybe; -}; - -type MarkdownWordCountSortInput = { - readonly paragraphs: InputMaybe; - readonly sentences: InputMaybe; - readonly words: InputMaybe; -}; - -/** Node Interface */ -type Node = { - readonly children: ReadonlyArray; - readonly id: Scalars['ID']; - readonly internal: Internal; - readonly parent: Maybe; -}; - -type NodeFieldSelector = { - readonly children: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; -}; - -type NodeFilterInput = { - readonly children: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; -}; - -type NodeFilterListInput = { - readonly elemMatch: InputMaybe; -}; - -type NodeSortInput = { - readonly children: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; -}; - -type PNGOptions = { - readonly compressionSpeed: InputMaybe; - readonly quality: InputMaybe; -}; - -type PageInfo = { - readonly currentPage: Scalars['Int']; - readonly hasNextPage: Scalars['Boolean']; - readonly hasPreviousPage: Scalars['Boolean']; - readonly itemCount: Scalars['Int']; - readonly pageCount: Scalars['Int']; - readonly perPage: Maybe; - readonly totalCount: Scalars['Int']; -}; - -type Potrace = { - readonly alphaMax: InputMaybe; - readonly background: InputMaybe; - readonly blackOnWhite: InputMaybe; - readonly color: InputMaybe; - readonly optCurve: InputMaybe; - readonly optTolerance: InputMaybe; - readonly threshold: InputMaybe; - readonly turdSize: InputMaybe; - readonly turnPolicy: InputMaybe; -}; - -type PotraceTurnPolicy = - | 'black' - | 'left' - | 'majority' - | 'minority' - | 'right' - | 'white'; - -type Query = { - readonly allDirectory: DirectoryConnection; - readonly allFile: FileConnection; - readonly allImageSharp: ImageSharpConnection; - readonly allMarkdownRemark: MarkdownRemarkConnection; - readonly allSite: SiteConnection; - readonly allSiteBuildMetadata: SiteBuildMetadataConnection; - readonly allSiteFunction: SiteFunctionConnection; - readonly allSitePage: SitePageConnection; - readonly allSitePlugin: SitePluginConnection; - readonly allStrapiAward: STRAPI_AWARDConnection; - readonly allStrapiCommunityEntry: STRAPI_COMMUNITY_ENTRYConnection; - readonly allStrapiCommunityEntryDescriptionTextnode: STRAPI_COMMUNITY_ENTRY_DESCRIPTION_TEXTNODEConnection; - readonly allStrapiComponentAwardAward: STRAPI__COMPONENT_AWARD_AWARDConnection; - readonly allStrapiComponentAwardAwardDescriptionTextnode: STRAPI__COMPONENT_AWARD_AWARD_DESCRIPTION_TEXTNODEConnection; - readonly allStrapiComponentImageCopyrightImage: STRAPI__COMPONENT_IMAGE_COPYRIGHT_IMAGEConnection; - readonly allStrapiComponentLinksLinks: STRAPI__COMPONENT_LINKS_LINKSConnection; - readonly allStrapiExample: STRAPI_EXAMPLEConnection; - readonly allStrapiExampleAuthoritiesTextnode: STRAPI_EXAMPLE_AUTHORITIES_TEXTNODEConnection; - readonly allStrapiExampleChallengesTextnode: STRAPI_EXAMPLE_CHALLENGES_TEXTNODEConnection; - readonly allStrapiExampleCommunicationTextnode: STRAPI_EXAMPLE_COMMUNICATION_TEXTNODEConnection; - readonly allStrapiExampleDescriptionTextnode: STRAPI_EXAMPLE_DESCRIPTION_TEXTNODEConnection; - readonly allStrapiExampleFundingTextnode: STRAPI_EXAMPLE_FUNDING_TEXTNODEConnection; - readonly allStrapiExampleGoalsTextnode: STRAPI_EXAMPLE_GOALS_TEXTNODEConnection; - readonly allStrapiExampleLocalchallengesTextnode: STRAPI_EXAMPLE_LOCALCHALLENGES_TEXTNODEConnection; - readonly allStrapiExampleNotesTextnode: STRAPI_EXAMPLE_NOTES_TEXTNODEConnection; - readonly allStrapiExampleParticularitiesTextnode: STRAPI_EXAMPLE_PARTICULARITIES_TEXTNODEConnection; - readonly allStrapiExamplePersonnelexpensesTextnode: STRAPI_EXAMPLE_PERSONNELEXPENSES_TEXTNODEConnection; - readonly allStrapiExampleRelatedofficeTextnode: STRAPI_EXAMPLE_RELATEDOFFICE_TEXTNODEConnection; - readonly allStrapiExampleResultsTextnode: STRAPI_EXAMPLE_RESULTS_TEXTNODEConnection; - readonly allStrapiExampleSourcesTextnode: STRAPI_EXAMPLE_SOURCES_TEXTNODEConnection; - readonly allStrapiExampleStakeholdersTextnode: STRAPI_EXAMPLE_STAKEHOLDERS_TEXTNODEConnection; - readonly allStrapiMeasure: STRAPI_MEASUREConnection; - readonly allStrapiMeasureDescriptionTextnode: STRAPI_MEASURE_DESCRIPTION_TEXTNODEConnection; - readonly allStrapiMedia: STRAPI__MEDIAConnection; - readonly allStrapiTopic: STRAPI_TOPICConnection; - readonly allStrapiTopicDescriptionTextnode: STRAPI_TOPIC_DESCRIPTION_TEXTNODEConnection; - readonly directory: Maybe; - readonly file: Maybe; - readonly imageSharp: Maybe; - readonly markdownRemark: Maybe; - readonly site: Maybe; - readonly siteBuildMetadata: Maybe; - readonly siteFunction: Maybe; - readonly sitePage: Maybe; - readonly sitePlugin: Maybe; - readonly strapiAward: Maybe; - readonly strapiCommunityEntry: Maybe; - readonly strapiCommunityEntryDescriptionTextnode: Maybe; - readonly strapiComponentAwardAward: Maybe; - readonly strapiComponentAwardAwardDescriptionTextnode: Maybe; - readonly strapiComponentImageCopyrightImage: Maybe; - readonly strapiComponentLinksLinks: Maybe; - readonly strapiExample: Maybe; - readonly strapiExampleAuthoritiesTextnode: Maybe; - readonly strapiExampleChallengesTextnode: Maybe; - readonly strapiExampleCommunicationTextnode: Maybe; - readonly strapiExampleDescriptionTextnode: Maybe; - readonly strapiExampleFundingTextnode: Maybe; - readonly strapiExampleGoalsTextnode: Maybe; - readonly strapiExampleLocalchallengesTextnode: Maybe; - readonly strapiExampleNotesTextnode: Maybe; - readonly strapiExampleParticularitiesTextnode: Maybe; - readonly strapiExamplePersonnelexpensesTextnode: Maybe; - readonly strapiExampleRelatedofficeTextnode: Maybe; - readonly strapiExampleResultsTextnode: Maybe; - readonly strapiExampleSourcesTextnode: Maybe; - readonly strapiExampleStakeholdersTextnode: Maybe; - readonly strapiMeasure: Maybe; - readonly strapiMeasureDescriptionTextnode: Maybe; - readonly strapiMedia: Maybe; - readonly strapiTopic: Maybe; - readonly strapiTopicDescriptionTextnode: Maybe; -}; - - -type Query_allDirectoryArgs = { - filter: InputMaybe; - limit: InputMaybe; - skip: InputMaybe; - sort: InputMaybe>>; -}; - - -type Query_allFileArgs = { - filter: InputMaybe; - limit: InputMaybe; - skip: InputMaybe; - sort: InputMaybe>>; -}; - - -type Query_allImageSharpArgs = { - filter: InputMaybe; - limit: InputMaybe; - skip: InputMaybe; - sort: InputMaybe>>; -}; - - -type Query_allMarkdownRemarkArgs = { - filter: InputMaybe; - limit: InputMaybe; - skip: InputMaybe; - sort: InputMaybe>>; -}; - - -type Query_allSiteArgs = { - filter: InputMaybe; - limit: InputMaybe; - skip: InputMaybe; - sort: InputMaybe>>; -}; - - -type Query_allSiteBuildMetadataArgs = { - filter: InputMaybe; - limit: InputMaybe; - skip: InputMaybe; - sort: InputMaybe>>; -}; - - -type Query_allSiteFunctionArgs = { - filter: InputMaybe; - limit: InputMaybe; - skip: InputMaybe; - sort: InputMaybe>>; -}; - - -type Query_allSitePageArgs = { - filter: InputMaybe; - limit: InputMaybe; - skip: InputMaybe; - sort: InputMaybe>>; -}; - - -type Query_allSitePluginArgs = { - filter: InputMaybe; - limit: InputMaybe; - skip: InputMaybe; - sort: InputMaybe>>; -}; - - -type Query_allStrapiAwardArgs = { - filter: InputMaybe; - limit: InputMaybe; - skip: InputMaybe; - sort: InputMaybe>>; -}; - - -type Query_allStrapiCommunityEntryArgs = { - filter: InputMaybe; - limit: InputMaybe; - skip: InputMaybe; - sort: InputMaybe>>; -}; - - -type Query_allStrapiCommunityEntryDescriptionTextnodeArgs = { - filter: InputMaybe; - limit: InputMaybe; - skip: InputMaybe; - sort: InputMaybe>>; -}; - - -type Query_allStrapiComponentAwardAwardArgs = { - filter: InputMaybe; - limit: InputMaybe; - skip: InputMaybe; - sort: InputMaybe>>; -}; - - -type Query_allStrapiComponentAwardAwardDescriptionTextnodeArgs = { - filter: InputMaybe; - limit: InputMaybe; - skip: InputMaybe; - sort: InputMaybe>>; -}; - - -type Query_allStrapiComponentImageCopyrightImageArgs = { - filter: InputMaybe; - limit: InputMaybe; - skip: InputMaybe; - sort: InputMaybe>>; -}; - - -type Query_allStrapiComponentLinksLinksArgs = { - filter: InputMaybe; - limit: InputMaybe; - skip: InputMaybe; - sort: InputMaybe>>; -}; - - -type Query_allStrapiExampleArgs = { - filter: InputMaybe; - limit: InputMaybe; - skip: InputMaybe; - sort: InputMaybe>>; -}; - - -type Query_allStrapiExampleAuthoritiesTextnodeArgs = { - filter: InputMaybe; - limit: InputMaybe; - skip: InputMaybe; - sort: InputMaybe>>; -}; - - -type Query_allStrapiExampleChallengesTextnodeArgs = { - filter: InputMaybe; - limit: InputMaybe; - skip: InputMaybe; - sort: InputMaybe>>; -}; - - -type Query_allStrapiExampleCommunicationTextnodeArgs = { - filter: InputMaybe; - limit: InputMaybe; - skip: InputMaybe; - sort: InputMaybe>>; -}; - - -type Query_allStrapiExampleDescriptionTextnodeArgs = { - filter: InputMaybe; - limit: InputMaybe; - skip: InputMaybe; - sort: InputMaybe>>; -}; - - -type Query_allStrapiExampleFundingTextnodeArgs = { - filter: InputMaybe; - limit: InputMaybe; - skip: InputMaybe; - sort: InputMaybe>>; -}; - - -type Query_allStrapiExampleGoalsTextnodeArgs = { - filter: InputMaybe; - limit: InputMaybe; - skip: InputMaybe; - sort: InputMaybe>>; -}; - - -type Query_allStrapiExampleLocalchallengesTextnodeArgs = { - filter: InputMaybe; - limit: InputMaybe; - skip: InputMaybe; - sort: InputMaybe>>; -}; - - -type Query_allStrapiExampleNotesTextnodeArgs = { - filter: InputMaybe; - limit: InputMaybe; - skip: InputMaybe; - sort: InputMaybe>>; -}; - - -type Query_allStrapiExampleParticularitiesTextnodeArgs = { - filter: InputMaybe; - limit: InputMaybe; - skip: InputMaybe; - sort: InputMaybe>>; -}; - - -type Query_allStrapiExamplePersonnelexpensesTextnodeArgs = { - filter: InputMaybe; - limit: InputMaybe; - skip: InputMaybe; - sort: InputMaybe>>; -}; - - -type Query_allStrapiExampleRelatedofficeTextnodeArgs = { - filter: InputMaybe; - limit: InputMaybe; - skip: InputMaybe; - sort: InputMaybe>>; -}; - - -type Query_allStrapiExampleResultsTextnodeArgs = { - filter: InputMaybe; - limit: InputMaybe; - skip: InputMaybe; - sort: InputMaybe>>; -}; - - -type Query_allStrapiExampleSourcesTextnodeArgs = { - filter: InputMaybe; - limit: InputMaybe; - skip: InputMaybe; - sort: InputMaybe>>; -}; - - -type Query_allStrapiExampleStakeholdersTextnodeArgs = { - filter: InputMaybe; - limit: InputMaybe; - skip: InputMaybe; - sort: InputMaybe>>; -}; - - -type Query_allStrapiMeasureArgs = { - filter: InputMaybe; - limit: InputMaybe; - skip: InputMaybe; - sort: InputMaybe>>; -}; - - -type Query_allStrapiMeasureDescriptionTextnodeArgs = { - filter: InputMaybe; - limit: InputMaybe; - skip: InputMaybe; - sort: InputMaybe>>; -}; - - -type Query_allStrapiMediaArgs = { - filter: InputMaybe; - limit: InputMaybe; - skip: InputMaybe; - sort: InputMaybe>>; -}; - - -type Query_allStrapiTopicArgs = { - filter: InputMaybe; - limit: InputMaybe; - skip: InputMaybe; - sort: InputMaybe>>; -}; - - -type Query_allStrapiTopicDescriptionTextnodeArgs = { - filter: InputMaybe; - limit: InputMaybe; - skip: InputMaybe; - sort: InputMaybe>>; -}; - - -type Query_directoryArgs = { - absolutePath: InputMaybe; - accessTime: InputMaybe; - atime: InputMaybe; - atimeMs: InputMaybe; - base: InputMaybe; - birthTime: InputMaybe; - birthtime: InputMaybe; - birthtimeMs: InputMaybe; - changeTime: InputMaybe; - children: InputMaybe; - ctime: InputMaybe; - ctimeMs: InputMaybe; - dev: InputMaybe; - dir: InputMaybe; - ext: InputMaybe; - extension: InputMaybe; - gid: InputMaybe; - id: InputMaybe; - ino: InputMaybe; - internal: InputMaybe; - mode: InputMaybe; - modifiedTime: InputMaybe; - mtime: InputMaybe; - mtimeMs: InputMaybe; - name: InputMaybe; - nlink: InputMaybe; - parent: InputMaybe; - prettySize: InputMaybe; - rdev: InputMaybe; - relativeDirectory: InputMaybe; - relativePath: InputMaybe; - root: InputMaybe; - size: InputMaybe; - sourceInstanceName: InputMaybe; - uid: InputMaybe; -}; - - -type Query_fileArgs = { - absolutePath: InputMaybe; - accessTime: InputMaybe; - atime: InputMaybe; - atimeMs: InputMaybe; - base: InputMaybe; - birthTime: InputMaybe; - birthtime: InputMaybe; - birthtimeMs: InputMaybe; - blksize: InputMaybe; - blocks: InputMaybe; - changeTime: InputMaybe; - childImageSharp: InputMaybe; - children: InputMaybe; - childrenImageSharp: InputMaybe; - ctime: InputMaybe; - ctimeMs: InputMaybe; - dev: InputMaybe; - dir: InputMaybe; - ext: InputMaybe; - extension: InputMaybe; - gid: InputMaybe; - id: InputMaybe; - ino: InputMaybe; - internal: InputMaybe; - mode: InputMaybe; - modifiedTime: InputMaybe; - mtime: InputMaybe; - mtimeMs: InputMaybe; - name: InputMaybe; - nlink: InputMaybe; - parent: InputMaybe; - prettySize: InputMaybe; - rdev: InputMaybe; - relativeDirectory: InputMaybe; - relativePath: InputMaybe; - root: InputMaybe; - size: InputMaybe; - sourceInstanceName: InputMaybe; - uid: InputMaybe; - url: InputMaybe; -}; - - -type Query_imageSharpArgs = { - children: InputMaybe; - fixed: InputMaybe; - fluid: InputMaybe; - gatsbyImageData: InputMaybe; - id: InputMaybe; - internal: InputMaybe; - original: InputMaybe; - parent: InputMaybe; - resize: InputMaybe; -}; - - -type Query_markdownRemarkArgs = { - children: InputMaybe; - excerpt: InputMaybe; - excerptAst: InputMaybe; - frontmatter: InputMaybe; - headings: InputMaybe; - html: InputMaybe; - htmlAst: InputMaybe; - id: InputMaybe; - internal: InputMaybe; - parent: InputMaybe; - rawMarkdownBody: InputMaybe; - tableOfContents: InputMaybe; - timeToRead: InputMaybe; - wordCount: InputMaybe; -}; - - -type Query_siteArgs = { - buildTime: InputMaybe; - children: InputMaybe; - graphqlTypegen: InputMaybe; - host: InputMaybe; - id: InputMaybe; - internal: InputMaybe; - jsxRuntime: InputMaybe; - parent: InputMaybe; - pathPrefix: InputMaybe; - polyfill: InputMaybe; - port: InputMaybe; - siteMetadata: InputMaybe; - trailingSlash: InputMaybe; -}; - - -type Query_siteBuildMetadataArgs = { - buildTime: InputMaybe; - children: InputMaybe; - id: InputMaybe; - internal: InputMaybe; - parent: InputMaybe; -}; - - -type Query_siteFunctionArgs = { - absoluteCompiledFilePath: InputMaybe; - children: InputMaybe; - functionRoute: InputMaybe; - id: InputMaybe; - internal: InputMaybe; - matchPath: InputMaybe; - originalAbsoluteFilePath: InputMaybe; - originalRelativeFilePath: InputMaybe; - parent: InputMaybe; - pluginName: InputMaybe; - relativeCompiledFilePath: InputMaybe; -}; - - -type Query_sitePageArgs = { - children: InputMaybe; - component: InputMaybe; - componentChunkName: InputMaybe; - id: InputMaybe; - internal: InputMaybe; - internalComponentName: InputMaybe; - matchPath: InputMaybe; - pageContext: InputMaybe; - parent: InputMaybe; - path: InputMaybe; - pluginCreator: InputMaybe; -}; - - -type Query_sitePluginArgs = { - browserAPIs: InputMaybe; - children: InputMaybe; - id: InputMaybe; - internal: InputMaybe; - name: InputMaybe; - nodeAPIs: InputMaybe; - packageJson: InputMaybe; - parent: InputMaybe; - pluginFilepath: InputMaybe; - pluginOptions: InputMaybe; - resolve: InputMaybe; - ssrAPIs: InputMaybe; - version: InputMaybe; -}; - - -type Query_strapiAwardArgs = { - children: InputMaybe; - createdAt: InputMaybe; - id: InputMaybe; - internal: InputMaybe; - logo: InputMaybe; - name: InputMaybe; - parent: InputMaybe; - publishedAt: InputMaybe; - strapi_id: InputMaybe; - updatedAt: InputMaybe; -}; - - -type Query_strapiCommunityEntryArgs = { - author: InputMaybe; - children: InputMaybe; - commune: InputMaybe; - contact: InputMaybe; - countryState: InputMaybe; - createdAt: InputMaybe; - description: InputMaybe; - id: InputMaybe; - image: InputMaybe; - internal: InputMaybe; - parent: InputMaybe; - publishedAt: InputMaybe; - strapi_id: InputMaybe; - subcategory: InputMaybe; - title: InputMaybe; - updatedAt: InputMaybe; - website: InputMaybe; -}; - - -type Query_strapiCommunityEntryDescriptionTextnodeArgs = { - childMarkdownRemark: InputMaybe; - children: InputMaybe; - childrenMarkdownRemark: InputMaybe; - description: InputMaybe; - id: InputMaybe; - internal: InputMaybe; - parent: InputMaybe; -}; - - -type Query_strapiComponentAwardAwardArgs = { - award: InputMaybe; - children: InputMaybe; - description: InputMaybe; - id: InputMaybe; - internal: InputMaybe; - parent: InputMaybe; - strapi_id: InputMaybe; -}; - - -type Query_strapiComponentAwardAwardDescriptionTextnodeArgs = { - childMarkdownRemark: InputMaybe; - children: InputMaybe; - childrenMarkdownRemark: InputMaybe; - description: InputMaybe; - id: InputMaybe; - internal: InputMaybe; - parent: InputMaybe; -}; - - -type Query_strapiComponentImageCopyrightImageArgs = { - children: InputMaybe; - copyright: InputMaybe; - id: InputMaybe; - image: InputMaybe; - internal: InputMaybe; - parent: InputMaybe; - strapi_id: InputMaybe; -}; - - -type Query_strapiComponentLinksLinksArgs = { - children: InputMaybe; - display: InputMaybe; - id: InputMaybe; - internal: InputMaybe; - parent: InputMaybe; - strapi_id: InputMaybe; - url: InputMaybe; -}; - - -type Query_strapiExampleArgs = { - authorities: InputMaybe; - awards: InputMaybe; - beginnerFriendly: InputMaybe; - centrality: InputMaybe; - challenges: InputMaybe; - children: InputMaybe; - commune: InputMaybe; - communication: InputMaybe; - costs: InputMaybe; - countryState: InputMaybe; - createdAt: InputMaybe; - description: InputMaybe; - financiallyWeak: InputMaybe; - funding: InputMaybe; - gatsbyPath: InputMaybe; - goals: InputMaybe; - id: InputMaybe; - image: InputMaybe; - internal: InputMaybe; - links: InputMaybe; - localChallenges: InputMaybe; - measure: InputMaybe; - notes: InputMaybe; - parent: InputMaybe; - particularities: InputMaybe; - period: InputMaybe; - personnelExpenses: InputMaybe; - population: InputMaybe; - position: InputMaybe; - publishedAt: InputMaybe; - relatedOffice: InputMaybe; - relatedTopic: InputMaybe; - results: InputMaybe; - shortDescription: InputMaybe; - slug: InputMaybe; - sources: InputMaybe; - spatialStructure: InputMaybe; - stakeholders: InputMaybe; - strapi_id: InputMaybe; - subcategory: InputMaybe; - title: InputMaybe; - updatedAt: InputMaybe; -}; - - -type Query_strapiExampleAuthoritiesTextnodeArgs = { - authorities: InputMaybe; - childMarkdownRemark: InputMaybe; - children: InputMaybe; - childrenMarkdownRemark: InputMaybe; - id: InputMaybe; - internal: InputMaybe; - parent: InputMaybe; -}; - - -type Query_strapiExampleChallengesTextnodeArgs = { - challenges: InputMaybe; - childMarkdownRemark: InputMaybe; - children: InputMaybe; - childrenMarkdownRemark: InputMaybe; - id: InputMaybe; - internal: InputMaybe; - parent: InputMaybe; -}; - - -type Query_strapiExampleCommunicationTextnodeArgs = { - childMarkdownRemark: InputMaybe; - children: InputMaybe; - childrenMarkdownRemark: InputMaybe; - communication: InputMaybe; - id: InputMaybe; - internal: InputMaybe; - parent: InputMaybe; -}; - - -type Query_strapiExampleDescriptionTextnodeArgs = { - childMarkdownRemark: InputMaybe; - children: InputMaybe; - childrenMarkdownRemark: InputMaybe; - description: InputMaybe; - id: InputMaybe; - internal: InputMaybe; - parent: InputMaybe; -}; - - -type Query_strapiExampleFundingTextnodeArgs = { - childMarkdownRemark: InputMaybe; - children: InputMaybe; - childrenMarkdownRemark: InputMaybe; - funding: InputMaybe; - id: InputMaybe; - internal: InputMaybe; - parent: InputMaybe; -}; - - -type Query_strapiExampleGoalsTextnodeArgs = { - childMarkdownRemark: InputMaybe; - children: InputMaybe; - childrenMarkdownRemark: InputMaybe; - goals: InputMaybe; - id: InputMaybe; - internal: InputMaybe; - parent: InputMaybe; -}; - - -type Query_strapiExampleLocalchallengesTextnodeArgs = { - childMarkdownRemark: InputMaybe; - children: InputMaybe; - childrenMarkdownRemark: InputMaybe; - id: InputMaybe; - internal: InputMaybe; - localChallenges: InputMaybe; - parent: InputMaybe; -}; - - -type Query_strapiExampleNotesTextnodeArgs = { - childMarkdownRemark: InputMaybe; - children: InputMaybe; - childrenMarkdownRemark: InputMaybe; - id: InputMaybe; - internal: InputMaybe; - notes: InputMaybe; - parent: InputMaybe; -}; - - -type Query_strapiExampleParticularitiesTextnodeArgs = { - childMarkdownRemark: InputMaybe; - children: InputMaybe; - childrenMarkdownRemark: InputMaybe; - id: InputMaybe; - internal: InputMaybe; - parent: InputMaybe; - particularities: InputMaybe; -}; - - -type Query_strapiExamplePersonnelexpensesTextnodeArgs = { - childMarkdownRemark: InputMaybe; - children: InputMaybe; - childrenMarkdownRemark: InputMaybe; - id: InputMaybe; - internal: InputMaybe; - parent: InputMaybe; - personnelExpenses: InputMaybe; -}; - - -type Query_strapiExampleRelatedofficeTextnodeArgs = { - childMarkdownRemark: InputMaybe; - children: InputMaybe; - childrenMarkdownRemark: InputMaybe; - id: InputMaybe; - internal: InputMaybe; - parent: InputMaybe; - relatedOffice: InputMaybe; -}; - - -type Query_strapiExampleResultsTextnodeArgs = { - childMarkdownRemark: InputMaybe; - children: InputMaybe; - childrenMarkdownRemark: InputMaybe; - id: InputMaybe; - internal: InputMaybe; - parent: InputMaybe; - results: InputMaybe; -}; - - -type Query_strapiExampleSourcesTextnodeArgs = { - childMarkdownRemark: InputMaybe; - children: InputMaybe; - childrenMarkdownRemark: InputMaybe; - id: InputMaybe; - internal: InputMaybe; - parent: InputMaybe; - sources: InputMaybe; -}; - - -type Query_strapiExampleStakeholdersTextnodeArgs = { - childMarkdownRemark: InputMaybe; - children: InputMaybe; - childrenMarkdownRemark: InputMaybe; - id: InputMaybe; - internal: InputMaybe; - parent: InputMaybe; - stakeholders: InputMaybe; -}; - - -type Query_strapiMeasureArgs = { - additionalResources: InputMaybe; - children: InputMaybe; - communityEntries: InputMaybe; - createdAt: InputMaybe; - description: InputMaybe; - examples: InputMaybe; - fundings: InputMaybe; - gatsbyPath: InputMaybe; - guidelines: InputMaybe; - id: InputMaybe; - internal: InputMaybe; - name: InputMaybe; - parent: InputMaybe; - position: InputMaybe; - publishedAt: InputMaybe; - shortDescription: InputMaybe; - slug: InputMaybe; - strapi_id: InputMaybe; - topic: InputMaybe; - updatedAt: InputMaybe; -}; - - -type Query_strapiMeasureDescriptionTextnodeArgs = { - childMarkdownRemark: InputMaybe; - children: InputMaybe; - childrenMarkdownRemark: InputMaybe; - description: InputMaybe; - id: InputMaybe; - internal: InputMaybe; - parent: InputMaybe; -}; - - -type Query_strapiMediaArgs = { - children: InputMaybe; - createdAt: InputMaybe; - ext: InputMaybe; - formats: InputMaybe; - hash: InputMaybe; - height: InputMaybe; - id: InputMaybe; - internal: InputMaybe; - localFile: InputMaybe; - mime: InputMaybe; - name: InputMaybe; - parent: InputMaybe; - size: InputMaybe; - strapi_id: InputMaybe; - updatedAt: InputMaybe; - url: InputMaybe; - width: InputMaybe; -}; - - -type Query_strapiTopicArgs = { - additionalResources: InputMaybe; - children: InputMaybe; - createdAt: InputMaybe; - description: InputMaybe; - fundings: InputMaybe; - gatsbyPath: InputMaybe; - guidelines: InputMaybe; - id: InputMaybe; - image: InputMaybe; - internal: InputMaybe; - measures: InputMaybe; - name: InputMaybe; - parent: InputMaybe; - position: InputMaybe; - publishedAt: InputMaybe; - shortDescription: InputMaybe; - slug: InputMaybe; - strapi_id: InputMaybe; - updatedAt: InputMaybe; -}; - - -type Query_strapiTopicDescriptionTextnodeArgs = { - childMarkdownRemark: InputMaybe; - children: InputMaybe; - childrenMarkdownRemark: InputMaybe; - description: InputMaybe; - id: InputMaybe; - internal: InputMaybe; - parent: InputMaybe; -}; - -type STRAPI_AWARD = Node & { - readonly children: ReadonlyArray; - readonly createdAt: Maybe; - readonly id: Scalars['ID']; - readonly internal: Internal; - readonly logo: Maybe; - readonly name: Maybe; - readonly parent: Maybe; - readonly publishedAt: Maybe; - readonly strapi_id: Maybe; - readonly updatedAt: Maybe; -}; - - -type STRAPI_AWARD_createdAtArgs = { - difference: InputMaybe; - formatString: InputMaybe; - fromNow: InputMaybe; - locale: InputMaybe; -}; - - -type STRAPI_AWARD_publishedAtArgs = { - difference: InputMaybe; - formatString: InputMaybe; - fromNow: InputMaybe; - locale: InputMaybe; -}; - - -type STRAPI_AWARD_updatedAtArgs = { - difference: InputMaybe; - formatString: InputMaybe; - fromNow: InputMaybe; - locale: InputMaybe; -}; - -type STRAPI_AWARDConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type STRAPI_AWARDConnection_distinctArgs = { - field: STRAPI_AWARDFieldSelector; -}; - - -type STRAPI_AWARDConnection_groupArgs = { - field: STRAPI_AWARDFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type STRAPI_AWARDConnection_maxArgs = { - field: STRAPI_AWARDFieldSelector; -}; - - -type STRAPI_AWARDConnection_minArgs = { - field: STRAPI_AWARDFieldSelector; -}; - - -type STRAPI_AWARDConnection_sumArgs = { - field: STRAPI_AWARDFieldSelector; -}; - -type STRAPI_AWARDEdge = { - readonly next: Maybe; - readonly node: STRAPI_AWARD; - readonly previous: Maybe; -}; - -type STRAPI_AWARDFieldSelector = { - readonly children: InputMaybe; - readonly createdAt: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly logo: InputMaybe; - readonly name: InputMaybe; - readonly parent: InputMaybe; - readonly publishedAt: InputMaybe; - readonly strapi_id: InputMaybe; - readonly updatedAt: InputMaybe; -}; - -type STRAPI_AWARDFilterInput = { - readonly children: InputMaybe; - readonly createdAt: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly logo: InputMaybe; - readonly name: InputMaybe; - readonly parent: InputMaybe; - readonly publishedAt: InputMaybe; - readonly strapi_id: InputMaybe; - readonly updatedAt: InputMaybe; -}; - -type STRAPI_AWARDGroupConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly field: Scalars['String']; - readonly fieldValue: Maybe; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type STRAPI_AWARDGroupConnection_distinctArgs = { - field: STRAPI_AWARDFieldSelector; -}; - - -type STRAPI_AWARDGroupConnection_groupArgs = { - field: STRAPI_AWARDFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type STRAPI_AWARDGroupConnection_maxArgs = { - field: STRAPI_AWARDFieldSelector; -}; - - -type STRAPI_AWARDGroupConnection_minArgs = { - field: STRAPI_AWARDFieldSelector; -}; - - -type STRAPI_AWARDGroupConnection_sumArgs = { - field: STRAPI_AWARDFieldSelector; -}; - -type STRAPI_AWARDSortInput = { - readonly children: InputMaybe; - readonly createdAt: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly logo: InputMaybe; - readonly name: InputMaybe; - readonly parent: InputMaybe; - readonly publishedAt: InputMaybe; - readonly strapi_id: InputMaybe; - readonly updatedAt: InputMaybe; -}; - -type STRAPI_COMMUNITY_ENTRY = Node & { - readonly author: Maybe; - readonly children: ReadonlyArray; - readonly commune: Maybe; - readonly contact: Maybe; - readonly countryState: Maybe; - readonly createdAt: Maybe; - readonly description: Maybe; - readonly id: Scalars['ID']; - readonly image: Maybe; - readonly internal: Internal; - readonly parent: Maybe; - readonly publishedAt: Maybe; - readonly strapi_id: Maybe; - readonly subcategory: Maybe; - readonly title: Maybe; - readonly updatedAt: Maybe; - readonly website: Maybe; -}; - - -type STRAPI_COMMUNITY_ENTRY_createdAtArgs = { - difference: InputMaybe; - formatString: InputMaybe; - fromNow: InputMaybe; - locale: InputMaybe; -}; - - -type STRAPI_COMMUNITY_ENTRY_publishedAtArgs = { - difference: InputMaybe; - formatString: InputMaybe; - fromNow: InputMaybe; - locale: InputMaybe; -}; - - -type STRAPI_COMMUNITY_ENTRY_updatedAtArgs = { - difference: InputMaybe; - formatString: InputMaybe; - fromNow: InputMaybe; - locale: InputMaybe; -}; - -type STRAPI_COMMUNITY_ENTRYConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type STRAPI_COMMUNITY_ENTRYConnection_distinctArgs = { - field: STRAPI_COMMUNITY_ENTRYFieldSelector; -}; - - -type STRAPI_COMMUNITY_ENTRYConnection_groupArgs = { - field: STRAPI_COMMUNITY_ENTRYFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type STRAPI_COMMUNITY_ENTRYConnection_maxArgs = { - field: STRAPI_COMMUNITY_ENTRYFieldSelector; -}; - - -type STRAPI_COMMUNITY_ENTRYConnection_minArgs = { - field: STRAPI_COMMUNITY_ENTRYFieldSelector; -}; - - -type STRAPI_COMMUNITY_ENTRYConnection_sumArgs = { - field: STRAPI_COMMUNITY_ENTRYFieldSelector; -}; - -type STRAPI_COMMUNITY_ENTRYDescription = { - readonly data: Maybe; -}; - -type STRAPI_COMMUNITY_ENTRYDescriptionFieldSelector = { - readonly data: InputMaybe; -}; - -type STRAPI_COMMUNITY_ENTRYDescriptionFilterInput = { - readonly data: InputMaybe; -}; - -type STRAPI_COMMUNITY_ENTRYDescriptionSortInput = { - readonly data: InputMaybe; -}; - -type STRAPI_COMMUNITY_ENTRYEdge = { - readonly next: Maybe; - readonly node: STRAPI_COMMUNITY_ENTRY; - readonly previous: Maybe; -}; - -type STRAPI_COMMUNITY_ENTRYFieldSelector = { - readonly author: InputMaybe; - readonly children: InputMaybe; - readonly commune: InputMaybe; - readonly contact: InputMaybe; - readonly countryState: InputMaybe; - readonly createdAt: InputMaybe; - readonly description: InputMaybe; - readonly id: InputMaybe; - readonly image: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; - readonly publishedAt: InputMaybe; - readonly strapi_id: InputMaybe; - readonly subcategory: InputMaybe; - readonly title: InputMaybe; - readonly updatedAt: InputMaybe; - readonly website: InputMaybe; -}; - -type STRAPI_COMMUNITY_ENTRYFilterInput = { - readonly author: InputMaybe; - readonly children: InputMaybe; - readonly commune: InputMaybe; - readonly contact: InputMaybe; - readonly countryState: InputMaybe; - readonly createdAt: InputMaybe; - readonly description: InputMaybe; - readonly id: InputMaybe; - readonly image: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; - readonly publishedAt: InputMaybe; - readonly strapi_id: InputMaybe; - readonly subcategory: InputMaybe; - readonly title: InputMaybe; - readonly updatedAt: InputMaybe; - readonly website: InputMaybe; -}; - -type STRAPI_COMMUNITY_ENTRYFilterListInput = { - readonly elemMatch: InputMaybe; -}; - -type STRAPI_COMMUNITY_ENTRYGroupConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly field: Scalars['String']; - readonly fieldValue: Maybe; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type STRAPI_COMMUNITY_ENTRYGroupConnection_distinctArgs = { - field: STRAPI_COMMUNITY_ENTRYFieldSelector; -}; - - -type STRAPI_COMMUNITY_ENTRYGroupConnection_groupArgs = { - field: STRAPI_COMMUNITY_ENTRYFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type STRAPI_COMMUNITY_ENTRYGroupConnection_maxArgs = { - field: STRAPI_COMMUNITY_ENTRYFieldSelector; -}; - - -type STRAPI_COMMUNITY_ENTRYGroupConnection_minArgs = { - field: STRAPI_COMMUNITY_ENTRYFieldSelector; -}; - - -type STRAPI_COMMUNITY_ENTRYGroupConnection_sumArgs = { - field: STRAPI_COMMUNITY_ENTRYFieldSelector; -}; - -type STRAPI_COMMUNITY_ENTRYSortInput = { - readonly author: InputMaybe; - readonly children: InputMaybe; - readonly commune: InputMaybe; - readonly contact: InputMaybe; - readonly countryState: InputMaybe; - readonly createdAt: InputMaybe; - readonly description: InputMaybe; - readonly id: InputMaybe; - readonly image: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; - readonly publishedAt: InputMaybe; - readonly strapi_id: InputMaybe; - readonly subcategory: InputMaybe; - readonly title: InputMaybe; - readonly updatedAt: InputMaybe; - readonly website: InputMaybe; -}; - -type STRAPI_COMMUNITY_ENTRY_DESCRIPTION_TEXTNODE = Node & { - /** Returns the first child node of type MarkdownRemark or null if there are no children of given type on this node */ - readonly childMarkdownRemark: Maybe; - readonly children: ReadonlyArray; - /** Returns all children nodes filtered by type MarkdownRemark */ - readonly childrenMarkdownRemark: Maybe>>; - readonly description: Maybe; - readonly id: Scalars['ID']; - readonly internal: Internal; - readonly parent: Maybe; -}; - -type STRAPI_COMMUNITY_ENTRY_DESCRIPTION_TEXTNODEConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type STRAPI_COMMUNITY_ENTRY_DESCRIPTION_TEXTNODEConnection_distinctArgs = { - field: STRAPI_COMMUNITY_ENTRY_DESCRIPTION_TEXTNODEFieldSelector; -}; - - -type STRAPI_COMMUNITY_ENTRY_DESCRIPTION_TEXTNODEConnection_groupArgs = { - field: STRAPI_COMMUNITY_ENTRY_DESCRIPTION_TEXTNODEFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type STRAPI_COMMUNITY_ENTRY_DESCRIPTION_TEXTNODEConnection_maxArgs = { - field: STRAPI_COMMUNITY_ENTRY_DESCRIPTION_TEXTNODEFieldSelector; -}; - - -type STRAPI_COMMUNITY_ENTRY_DESCRIPTION_TEXTNODEConnection_minArgs = { - field: STRAPI_COMMUNITY_ENTRY_DESCRIPTION_TEXTNODEFieldSelector; -}; - - -type STRAPI_COMMUNITY_ENTRY_DESCRIPTION_TEXTNODEConnection_sumArgs = { - field: STRAPI_COMMUNITY_ENTRY_DESCRIPTION_TEXTNODEFieldSelector; -}; - -type STRAPI_COMMUNITY_ENTRY_DESCRIPTION_TEXTNODEEdge = { - readonly next: Maybe; - readonly node: STRAPI_COMMUNITY_ENTRY_DESCRIPTION_TEXTNODE; - readonly previous: Maybe; -}; - -type STRAPI_COMMUNITY_ENTRY_DESCRIPTION_TEXTNODEFieldSelector = { - readonly childMarkdownRemark: InputMaybe; - readonly children: InputMaybe; - readonly childrenMarkdownRemark: InputMaybe; - readonly description: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; -}; - -type STRAPI_COMMUNITY_ENTRY_DESCRIPTION_TEXTNODEFilterInput = { - readonly childMarkdownRemark: InputMaybe; - readonly children: InputMaybe; - readonly childrenMarkdownRemark: InputMaybe; - readonly description: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; -}; - -type STRAPI_COMMUNITY_ENTRY_DESCRIPTION_TEXTNODEGroupConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly field: Scalars['String']; - readonly fieldValue: Maybe; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type STRAPI_COMMUNITY_ENTRY_DESCRIPTION_TEXTNODEGroupConnection_distinctArgs = { - field: STRAPI_COMMUNITY_ENTRY_DESCRIPTION_TEXTNODEFieldSelector; -}; - - -type STRAPI_COMMUNITY_ENTRY_DESCRIPTION_TEXTNODEGroupConnection_groupArgs = { - field: STRAPI_COMMUNITY_ENTRY_DESCRIPTION_TEXTNODEFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type STRAPI_COMMUNITY_ENTRY_DESCRIPTION_TEXTNODEGroupConnection_maxArgs = { - field: STRAPI_COMMUNITY_ENTRY_DESCRIPTION_TEXTNODEFieldSelector; -}; - - -type STRAPI_COMMUNITY_ENTRY_DESCRIPTION_TEXTNODEGroupConnection_minArgs = { - field: STRAPI_COMMUNITY_ENTRY_DESCRIPTION_TEXTNODEFieldSelector; -}; - - -type STRAPI_COMMUNITY_ENTRY_DESCRIPTION_TEXTNODEGroupConnection_sumArgs = { - field: STRAPI_COMMUNITY_ENTRY_DESCRIPTION_TEXTNODEFieldSelector; -}; - -type STRAPI_COMMUNITY_ENTRY_DESCRIPTION_TEXTNODESortInput = { - readonly childMarkdownRemark: InputMaybe; - readonly children: InputMaybe; - readonly childrenMarkdownRemark: InputMaybe; - readonly description: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; -}; - -type STRAPI_EXAMPLE = Node & { - readonly authorities: Maybe; - readonly awards: Maybe>>; - readonly beginnerFriendly: Maybe; - readonly centrality: Maybe; - readonly challenges: Maybe; - readonly children: ReadonlyArray; - readonly commune: Maybe; - readonly communication: Maybe; - readonly costs: Maybe; - readonly countryState: Maybe; - readonly createdAt: Maybe; - readonly description: Maybe; - readonly financiallyWeak: Maybe; - readonly funding: Maybe; - readonly gatsbyPath: Maybe; - readonly goals: Maybe; - readonly id: Scalars['ID']; - readonly image: Maybe; - readonly internal: Internal; - readonly links: Maybe>>; - readonly localChallenges: Maybe; - readonly measure: Maybe; - readonly notes: Maybe; - readonly parent: Maybe; - readonly particularities: Maybe; - readonly period: Maybe; - readonly personnelExpenses: Maybe; - readonly population: Maybe; - readonly position: Maybe; - readonly publishedAt: Maybe; - readonly relatedOffice: Maybe; - readonly relatedTopic: Maybe; - readonly results: Maybe; - readonly shortDescription: Maybe; - readonly slug: Maybe; - readonly sources: Maybe; - readonly spatialStructure: Maybe; - readonly stakeholders: Maybe; - readonly strapi_id: Maybe; - readonly subcategory: Maybe; - readonly title: Maybe; - readonly updatedAt: Maybe; -}; - - -type STRAPI_EXAMPLE_createdAtArgs = { - difference: InputMaybe; - formatString: InputMaybe; - fromNow: InputMaybe; - locale: InputMaybe; -}; - - -type STRAPI_EXAMPLE_gatsbyPathArgs = { - filePath: InputMaybe; -}; - - -type STRAPI_EXAMPLE_publishedAtArgs = { - difference: InputMaybe; - formatString: InputMaybe; - fromNow: InputMaybe; - locale: InputMaybe; -}; - - -type STRAPI_EXAMPLE_updatedAtArgs = { - difference: InputMaybe; - formatString: InputMaybe; - fromNow: InputMaybe; - locale: InputMaybe; -}; - -type STRAPI_EXAMPLEAuthorities = { - readonly data: Maybe; -}; - -type STRAPI_EXAMPLEAuthoritiesFieldSelector = { - readonly data: InputMaybe; -}; - -type STRAPI_EXAMPLEAuthoritiesFilterInput = { - readonly data: InputMaybe; -}; - -type STRAPI_EXAMPLEAuthoritiesSortInput = { - readonly data: InputMaybe; -}; - -type STRAPI_EXAMPLEChallenges = { - readonly data: Maybe; -}; - -type STRAPI_EXAMPLEChallengesFieldSelector = { - readonly data: InputMaybe; -}; - -type STRAPI_EXAMPLEChallengesFilterInput = { - readonly data: InputMaybe; -}; - -type STRAPI_EXAMPLEChallengesSortInput = { - readonly data: InputMaybe; -}; - -type STRAPI_EXAMPLECommunication = { - readonly data: Maybe; -}; - -type STRAPI_EXAMPLECommunicationFieldSelector = { - readonly data: InputMaybe; -}; - -type STRAPI_EXAMPLECommunicationFilterInput = { - readonly data: InputMaybe; -}; - -type STRAPI_EXAMPLECommunicationSortInput = { - readonly data: InputMaybe; -}; - -type STRAPI_EXAMPLEConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type STRAPI_EXAMPLEConnection_distinctArgs = { - field: STRAPI_EXAMPLEFieldSelector; -}; - - -type STRAPI_EXAMPLEConnection_groupArgs = { - field: STRAPI_EXAMPLEFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type STRAPI_EXAMPLEConnection_maxArgs = { - field: STRAPI_EXAMPLEFieldSelector; -}; - - -type STRAPI_EXAMPLEConnection_minArgs = { - field: STRAPI_EXAMPLEFieldSelector; -}; - - -type STRAPI_EXAMPLEConnection_sumArgs = { - field: STRAPI_EXAMPLEFieldSelector; -}; - -type STRAPI_EXAMPLEDescription = { - readonly data: Maybe; -}; - -type STRAPI_EXAMPLEDescriptionFieldSelector = { - readonly data: InputMaybe; -}; - -type STRAPI_EXAMPLEDescriptionFilterInput = { - readonly data: InputMaybe; -}; - -type STRAPI_EXAMPLEDescriptionSortInput = { - readonly data: InputMaybe; -}; - -type STRAPI_EXAMPLEEdge = { - readonly next: Maybe; - readonly node: STRAPI_EXAMPLE; - readonly previous: Maybe; -}; - -type STRAPI_EXAMPLEFieldSelector = { - readonly authorities: InputMaybe; - readonly awards: InputMaybe; - readonly beginnerFriendly: InputMaybe; - readonly centrality: InputMaybe; - readonly challenges: InputMaybe; - readonly children: InputMaybe; - readonly commune: InputMaybe; - readonly communication: InputMaybe; - readonly costs: InputMaybe; - readonly countryState: InputMaybe; - readonly createdAt: InputMaybe; - readonly description: InputMaybe; - readonly financiallyWeak: InputMaybe; - readonly funding: InputMaybe; - readonly gatsbyPath: InputMaybe; - readonly goals: InputMaybe; - readonly id: InputMaybe; - readonly image: InputMaybe; - readonly internal: InputMaybe; - readonly links: InputMaybe; - readonly localChallenges: InputMaybe; - readonly measure: InputMaybe; - readonly notes: InputMaybe; - readonly parent: InputMaybe; - readonly particularities: InputMaybe; - readonly period: InputMaybe; - readonly personnelExpenses: InputMaybe; - readonly population: InputMaybe; - readonly position: InputMaybe; - readonly publishedAt: InputMaybe; - readonly relatedOffice: InputMaybe; - readonly relatedTopic: InputMaybe; - readonly results: InputMaybe; - readonly shortDescription: InputMaybe; - readonly slug: InputMaybe; - readonly sources: InputMaybe; - readonly spatialStructure: InputMaybe; - readonly stakeholders: InputMaybe; - readonly strapi_id: InputMaybe; - readonly subcategory: InputMaybe; - readonly title: InputMaybe; - readonly updatedAt: InputMaybe; -}; - -type STRAPI_EXAMPLEFilterInput = { - readonly authorities: InputMaybe; - readonly awards: InputMaybe; - readonly beginnerFriendly: InputMaybe; - readonly centrality: InputMaybe; - readonly challenges: InputMaybe; - readonly children: InputMaybe; - readonly commune: InputMaybe; - readonly communication: InputMaybe; - readonly costs: InputMaybe; - readonly countryState: InputMaybe; - readonly createdAt: InputMaybe; - readonly description: InputMaybe; - readonly financiallyWeak: InputMaybe; - readonly funding: InputMaybe; - readonly gatsbyPath: InputMaybe; - readonly goals: InputMaybe; - readonly id: InputMaybe; - readonly image: InputMaybe; - readonly internal: InputMaybe; - readonly links: InputMaybe; - readonly localChallenges: InputMaybe; - readonly measure: InputMaybe; - readonly notes: InputMaybe; - readonly parent: InputMaybe; - readonly particularities: InputMaybe; - readonly period: InputMaybe; - readonly personnelExpenses: InputMaybe; - readonly population: InputMaybe; - readonly position: InputMaybe; - readonly publishedAt: InputMaybe; - readonly relatedOffice: InputMaybe; - readonly relatedTopic: InputMaybe; - readonly results: InputMaybe; - readonly shortDescription: InputMaybe; - readonly slug: InputMaybe; - readonly sources: InputMaybe; - readonly spatialStructure: InputMaybe; - readonly stakeholders: InputMaybe; - readonly strapi_id: InputMaybe; - readonly subcategory: InputMaybe; - readonly title: InputMaybe; - readonly updatedAt: InputMaybe; -}; - -type STRAPI_EXAMPLEFilterListInput = { - readonly elemMatch: InputMaybe; -}; - -type STRAPI_EXAMPLEFunding = { - readonly data: Maybe; -}; - -type STRAPI_EXAMPLEFundingFieldSelector = { - readonly data: InputMaybe; -}; - -type STRAPI_EXAMPLEFundingFilterInput = { - readonly data: InputMaybe; -}; - -type STRAPI_EXAMPLEFundingSortInput = { - readonly data: InputMaybe; -}; - -type STRAPI_EXAMPLEGoals = { - readonly data: Maybe; -}; - -type STRAPI_EXAMPLEGoalsFieldSelector = { - readonly data: InputMaybe; -}; - -type STRAPI_EXAMPLEGoalsFilterInput = { - readonly data: InputMaybe; -}; - -type STRAPI_EXAMPLEGoalsSortInput = { - readonly data: InputMaybe; -}; - -type STRAPI_EXAMPLEGroupConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly field: Scalars['String']; - readonly fieldValue: Maybe; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type STRAPI_EXAMPLEGroupConnection_distinctArgs = { - field: STRAPI_EXAMPLEFieldSelector; -}; - - -type STRAPI_EXAMPLEGroupConnection_groupArgs = { - field: STRAPI_EXAMPLEFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type STRAPI_EXAMPLEGroupConnection_maxArgs = { - field: STRAPI_EXAMPLEFieldSelector; -}; - - -type STRAPI_EXAMPLEGroupConnection_minArgs = { - field: STRAPI_EXAMPLEFieldSelector; -}; - - -type STRAPI_EXAMPLEGroupConnection_sumArgs = { - field: STRAPI_EXAMPLEFieldSelector; -}; - -type STRAPI_EXAMPLELocalChallenges = { - readonly data: Maybe; -}; - -type STRAPI_EXAMPLELocalChallengesFieldSelector = { - readonly data: InputMaybe; -}; - -type STRAPI_EXAMPLELocalChallengesFilterInput = { - readonly data: InputMaybe; -}; - -type STRAPI_EXAMPLELocalChallengesSortInput = { - readonly data: InputMaybe; -}; - -type STRAPI_EXAMPLENotes = { - readonly data: Maybe; -}; - -type STRAPI_EXAMPLENotesFieldSelector = { - readonly data: InputMaybe; -}; - -type STRAPI_EXAMPLENotesFilterInput = { - readonly data: InputMaybe; -}; - -type STRAPI_EXAMPLENotesSortInput = { - readonly data: InputMaybe; -}; - -type STRAPI_EXAMPLEParticularities = { - readonly data: Maybe; -}; - -type STRAPI_EXAMPLEParticularitiesFieldSelector = { - readonly data: InputMaybe; -}; - -type STRAPI_EXAMPLEParticularitiesFilterInput = { - readonly data: InputMaybe; -}; - -type STRAPI_EXAMPLEParticularitiesSortInput = { - readonly data: InputMaybe; -}; - -type STRAPI_EXAMPLEPersonnelExpenses = { - readonly data: Maybe; -}; - -type STRAPI_EXAMPLEPersonnelExpensesFieldSelector = { - readonly data: InputMaybe; -}; - -type STRAPI_EXAMPLEPersonnelExpensesFilterInput = { - readonly data: InputMaybe; -}; - -type STRAPI_EXAMPLEPersonnelExpensesSortInput = { - readonly data: InputMaybe; -}; - -type STRAPI_EXAMPLERelatedOffice = { - readonly data: Maybe; -}; - -type STRAPI_EXAMPLERelatedOfficeFieldSelector = { - readonly data: InputMaybe; -}; - -type STRAPI_EXAMPLERelatedOfficeFilterInput = { - readonly data: InputMaybe; -}; - -type STRAPI_EXAMPLERelatedOfficeSortInput = { - readonly data: InputMaybe; -}; - -type STRAPI_EXAMPLEResults = { - readonly data: Maybe; -}; - -type STRAPI_EXAMPLEResultsFieldSelector = { - readonly data: InputMaybe; -}; - -type STRAPI_EXAMPLEResultsFilterInput = { - readonly data: InputMaybe; -}; - -type STRAPI_EXAMPLEResultsSortInput = { - readonly data: InputMaybe; -}; - -type STRAPI_EXAMPLESortInput = { - readonly authorities: InputMaybe; - readonly awards: InputMaybe; - readonly beginnerFriendly: InputMaybe; - readonly centrality: InputMaybe; - readonly challenges: InputMaybe; - readonly children: InputMaybe; - readonly commune: InputMaybe; - readonly communication: InputMaybe; - readonly costs: InputMaybe; - readonly countryState: InputMaybe; - readonly createdAt: InputMaybe; - readonly description: InputMaybe; - readonly financiallyWeak: InputMaybe; - readonly funding: InputMaybe; - readonly gatsbyPath: InputMaybe; - readonly goals: InputMaybe; - readonly id: InputMaybe; - readonly image: InputMaybe; - readonly internal: InputMaybe; - readonly links: InputMaybe; - readonly localChallenges: InputMaybe; - readonly measure: InputMaybe; - readonly notes: InputMaybe; - readonly parent: InputMaybe; - readonly particularities: InputMaybe; - readonly period: InputMaybe; - readonly personnelExpenses: InputMaybe; - readonly population: InputMaybe; - readonly position: InputMaybe; - readonly publishedAt: InputMaybe; - readonly relatedOffice: InputMaybe; - readonly relatedTopic: InputMaybe; - readonly results: InputMaybe; - readonly shortDescription: InputMaybe; - readonly slug: InputMaybe; - readonly sources: InputMaybe; - readonly spatialStructure: InputMaybe; - readonly stakeholders: InputMaybe; - readonly strapi_id: InputMaybe; - readonly subcategory: InputMaybe; - readonly title: InputMaybe; - readonly updatedAt: InputMaybe; -}; - -type STRAPI_EXAMPLESources = { - readonly data: Maybe; -}; - -type STRAPI_EXAMPLESourcesFieldSelector = { - readonly data: InputMaybe; -}; - -type STRAPI_EXAMPLESourcesFilterInput = { - readonly data: InputMaybe; -}; - -type STRAPI_EXAMPLESourcesSortInput = { - readonly data: InputMaybe; -}; - -type STRAPI_EXAMPLEStakeholders = { - readonly data: Maybe; -}; - -type STRAPI_EXAMPLEStakeholdersFieldSelector = { - readonly data: InputMaybe; -}; - -type STRAPI_EXAMPLEStakeholdersFilterInput = { - readonly data: InputMaybe; -}; - -type STRAPI_EXAMPLEStakeholdersSortInput = { - readonly data: InputMaybe; -}; - -type STRAPI_EXAMPLE_AUTHORITIES_TEXTNODE = Node & { - readonly authorities: Maybe; - /** Returns the first child node of type MarkdownRemark or null if there are no children of given type on this node */ - readonly childMarkdownRemark: Maybe; - readonly children: ReadonlyArray; - /** Returns all children nodes filtered by type MarkdownRemark */ - readonly childrenMarkdownRemark: Maybe>>; - readonly id: Scalars['ID']; - readonly internal: Internal; - readonly parent: Maybe; -}; - -type STRAPI_EXAMPLE_AUTHORITIES_TEXTNODEConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type STRAPI_EXAMPLE_AUTHORITIES_TEXTNODEConnection_distinctArgs = { - field: STRAPI_EXAMPLE_AUTHORITIES_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_AUTHORITIES_TEXTNODEConnection_groupArgs = { - field: STRAPI_EXAMPLE_AUTHORITIES_TEXTNODEFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type STRAPI_EXAMPLE_AUTHORITIES_TEXTNODEConnection_maxArgs = { - field: STRAPI_EXAMPLE_AUTHORITIES_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_AUTHORITIES_TEXTNODEConnection_minArgs = { - field: STRAPI_EXAMPLE_AUTHORITIES_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_AUTHORITIES_TEXTNODEConnection_sumArgs = { - field: STRAPI_EXAMPLE_AUTHORITIES_TEXTNODEFieldSelector; -}; - -type STRAPI_EXAMPLE_AUTHORITIES_TEXTNODEEdge = { - readonly next: Maybe; - readonly node: STRAPI_EXAMPLE_AUTHORITIES_TEXTNODE; - readonly previous: Maybe; -}; - -type STRAPI_EXAMPLE_AUTHORITIES_TEXTNODEFieldSelector = { - readonly authorities: InputMaybe; - readonly childMarkdownRemark: InputMaybe; - readonly children: InputMaybe; - readonly childrenMarkdownRemark: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; -}; - -type STRAPI_EXAMPLE_AUTHORITIES_TEXTNODEFilterInput = { - readonly authorities: InputMaybe; - readonly childMarkdownRemark: InputMaybe; - readonly children: InputMaybe; - readonly childrenMarkdownRemark: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; -}; - -type STRAPI_EXAMPLE_AUTHORITIES_TEXTNODEGroupConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly field: Scalars['String']; - readonly fieldValue: Maybe; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type STRAPI_EXAMPLE_AUTHORITIES_TEXTNODEGroupConnection_distinctArgs = { - field: STRAPI_EXAMPLE_AUTHORITIES_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_AUTHORITIES_TEXTNODEGroupConnection_groupArgs = { - field: STRAPI_EXAMPLE_AUTHORITIES_TEXTNODEFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type STRAPI_EXAMPLE_AUTHORITIES_TEXTNODEGroupConnection_maxArgs = { - field: STRAPI_EXAMPLE_AUTHORITIES_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_AUTHORITIES_TEXTNODEGroupConnection_minArgs = { - field: STRAPI_EXAMPLE_AUTHORITIES_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_AUTHORITIES_TEXTNODEGroupConnection_sumArgs = { - field: STRAPI_EXAMPLE_AUTHORITIES_TEXTNODEFieldSelector; -}; - -type STRAPI_EXAMPLE_AUTHORITIES_TEXTNODESortInput = { - readonly authorities: InputMaybe; - readonly childMarkdownRemark: InputMaybe; - readonly children: InputMaybe; - readonly childrenMarkdownRemark: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; -}; - -type STRAPI_EXAMPLE_CHALLENGES_TEXTNODE = Node & { - readonly challenges: Maybe; - /** Returns the first child node of type MarkdownRemark or null if there are no children of given type on this node */ - readonly childMarkdownRemark: Maybe; - readonly children: ReadonlyArray; - /** Returns all children nodes filtered by type MarkdownRemark */ - readonly childrenMarkdownRemark: Maybe>>; - readonly id: Scalars['ID']; - readonly internal: Internal; - readonly parent: Maybe; -}; - -type STRAPI_EXAMPLE_CHALLENGES_TEXTNODEConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type STRAPI_EXAMPLE_CHALLENGES_TEXTNODEConnection_distinctArgs = { - field: STRAPI_EXAMPLE_CHALLENGES_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_CHALLENGES_TEXTNODEConnection_groupArgs = { - field: STRAPI_EXAMPLE_CHALLENGES_TEXTNODEFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type STRAPI_EXAMPLE_CHALLENGES_TEXTNODEConnection_maxArgs = { - field: STRAPI_EXAMPLE_CHALLENGES_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_CHALLENGES_TEXTNODEConnection_minArgs = { - field: STRAPI_EXAMPLE_CHALLENGES_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_CHALLENGES_TEXTNODEConnection_sumArgs = { - field: STRAPI_EXAMPLE_CHALLENGES_TEXTNODEFieldSelector; -}; - -type STRAPI_EXAMPLE_CHALLENGES_TEXTNODEEdge = { - readonly next: Maybe; - readonly node: STRAPI_EXAMPLE_CHALLENGES_TEXTNODE; - readonly previous: Maybe; -}; - -type STRAPI_EXAMPLE_CHALLENGES_TEXTNODEFieldSelector = { - readonly challenges: InputMaybe; - readonly childMarkdownRemark: InputMaybe; - readonly children: InputMaybe; - readonly childrenMarkdownRemark: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; -}; - -type STRAPI_EXAMPLE_CHALLENGES_TEXTNODEFilterInput = { - readonly challenges: InputMaybe; - readonly childMarkdownRemark: InputMaybe; - readonly children: InputMaybe; - readonly childrenMarkdownRemark: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; -}; - -type STRAPI_EXAMPLE_CHALLENGES_TEXTNODEGroupConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly field: Scalars['String']; - readonly fieldValue: Maybe; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type STRAPI_EXAMPLE_CHALLENGES_TEXTNODEGroupConnection_distinctArgs = { - field: STRAPI_EXAMPLE_CHALLENGES_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_CHALLENGES_TEXTNODEGroupConnection_groupArgs = { - field: STRAPI_EXAMPLE_CHALLENGES_TEXTNODEFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type STRAPI_EXAMPLE_CHALLENGES_TEXTNODEGroupConnection_maxArgs = { - field: STRAPI_EXAMPLE_CHALLENGES_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_CHALLENGES_TEXTNODEGroupConnection_minArgs = { - field: STRAPI_EXAMPLE_CHALLENGES_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_CHALLENGES_TEXTNODEGroupConnection_sumArgs = { - field: STRAPI_EXAMPLE_CHALLENGES_TEXTNODEFieldSelector; -}; - -type STRAPI_EXAMPLE_CHALLENGES_TEXTNODESortInput = { - readonly challenges: InputMaybe; - readonly childMarkdownRemark: InputMaybe; - readonly children: InputMaybe; - readonly childrenMarkdownRemark: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; -}; - -type STRAPI_EXAMPLE_COMMUNICATION_TEXTNODE = Node & { - /** Returns the first child node of type MarkdownRemark or null if there are no children of given type on this node */ - readonly childMarkdownRemark: Maybe; - readonly children: ReadonlyArray; - /** Returns all children nodes filtered by type MarkdownRemark */ - readonly childrenMarkdownRemark: Maybe>>; - readonly communication: Maybe; - readonly id: Scalars['ID']; - readonly internal: Internal; - readonly parent: Maybe; -}; - -type STRAPI_EXAMPLE_COMMUNICATION_TEXTNODEConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type STRAPI_EXAMPLE_COMMUNICATION_TEXTNODEConnection_distinctArgs = { - field: STRAPI_EXAMPLE_COMMUNICATION_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_COMMUNICATION_TEXTNODEConnection_groupArgs = { - field: STRAPI_EXAMPLE_COMMUNICATION_TEXTNODEFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type STRAPI_EXAMPLE_COMMUNICATION_TEXTNODEConnection_maxArgs = { - field: STRAPI_EXAMPLE_COMMUNICATION_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_COMMUNICATION_TEXTNODEConnection_minArgs = { - field: STRAPI_EXAMPLE_COMMUNICATION_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_COMMUNICATION_TEXTNODEConnection_sumArgs = { - field: STRAPI_EXAMPLE_COMMUNICATION_TEXTNODEFieldSelector; -}; - -type STRAPI_EXAMPLE_COMMUNICATION_TEXTNODEEdge = { - readonly next: Maybe; - readonly node: STRAPI_EXAMPLE_COMMUNICATION_TEXTNODE; - readonly previous: Maybe; -}; - -type STRAPI_EXAMPLE_COMMUNICATION_TEXTNODEFieldSelector = { - readonly childMarkdownRemark: InputMaybe; - readonly children: InputMaybe; - readonly childrenMarkdownRemark: InputMaybe; - readonly communication: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; -}; - -type STRAPI_EXAMPLE_COMMUNICATION_TEXTNODEFilterInput = { - readonly childMarkdownRemark: InputMaybe; - readonly children: InputMaybe; - readonly childrenMarkdownRemark: InputMaybe; - readonly communication: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; -}; - -type STRAPI_EXAMPLE_COMMUNICATION_TEXTNODEGroupConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly field: Scalars['String']; - readonly fieldValue: Maybe; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type STRAPI_EXAMPLE_COMMUNICATION_TEXTNODEGroupConnection_distinctArgs = { - field: STRAPI_EXAMPLE_COMMUNICATION_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_COMMUNICATION_TEXTNODEGroupConnection_groupArgs = { - field: STRAPI_EXAMPLE_COMMUNICATION_TEXTNODEFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type STRAPI_EXAMPLE_COMMUNICATION_TEXTNODEGroupConnection_maxArgs = { - field: STRAPI_EXAMPLE_COMMUNICATION_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_COMMUNICATION_TEXTNODEGroupConnection_minArgs = { - field: STRAPI_EXAMPLE_COMMUNICATION_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_COMMUNICATION_TEXTNODEGroupConnection_sumArgs = { - field: STRAPI_EXAMPLE_COMMUNICATION_TEXTNODEFieldSelector; -}; - -type STRAPI_EXAMPLE_COMMUNICATION_TEXTNODESortInput = { - readonly childMarkdownRemark: InputMaybe; - readonly children: InputMaybe; - readonly childrenMarkdownRemark: InputMaybe; - readonly communication: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; -}; - -type STRAPI_EXAMPLE_DESCRIPTION_TEXTNODE = Node & { - /** Returns the first child node of type MarkdownRemark or null if there are no children of given type on this node */ - readonly childMarkdownRemark: Maybe; - readonly children: ReadonlyArray; - /** Returns all children nodes filtered by type MarkdownRemark */ - readonly childrenMarkdownRemark: Maybe>>; - readonly description: Maybe; - readonly id: Scalars['ID']; - readonly internal: Internal; - readonly parent: Maybe; -}; - -type STRAPI_EXAMPLE_DESCRIPTION_TEXTNODEConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type STRAPI_EXAMPLE_DESCRIPTION_TEXTNODEConnection_distinctArgs = { - field: STRAPI_EXAMPLE_DESCRIPTION_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_DESCRIPTION_TEXTNODEConnection_groupArgs = { - field: STRAPI_EXAMPLE_DESCRIPTION_TEXTNODEFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type STRAPI_EXAMPLE_DESCRIPTION_TEXTNODEConnection_maxArgs = { - field: STRAPI_EXAMPLE_DESCRIPTION_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_DESCRIPTION_TEXTNODEConnection_minArgs = { - field: STRAPI_EXAMPLE_DESCRIPTION_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_DESCRIPTION_TEXTNODEConnection_sumArgs = { - field: STRAPI_EXAMPLE_DESCRIPTION_TEXTNODEFieldSelector; -}; - -type STRAPI_EXAMPLE_DESCRIPTION_TEXTNODEEdge = { - readonly next: Maybe; - readonly node: STRAPI_EXAMPLE_DESCRIPTION_TEXTNODE; - readonly previous: Maybe; -}; - -type STRAPI_EXAMPLE_DESCRIPTION_TEXTNODEFieldSelector = { - readonly childMarkdownRemark: InputMaybe; - readonly children: InputMaybe; - readonly childrenMarkdownRemark: InputMaybe; - readonly description: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; -}; - -type STRAPI_EXAMPLE_DESCRIPTION_TEXTNODEFilterInput = { - readonly childMarkdownRemark: InputMaybe; - readonly children: InputMaybe; - readonly childrenMarkdownRemark: InputMaybe; - readonly description: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; -}; - -type STRAPI_EXAMPLE_DESCRIPTION_TEXTNODEGroupConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly field: Scalars['String']; - readonly fieldValue: Maybe; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type STRAPI_EXAMPLE_DESCRIPTION_TEXTNODEGroupConnection_distinctArgs = { - field: STRAPI_EXAMPLE_DESCRIPTION_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_DESCRIPTION_TEXTNODEGroupConnection_groupArgs = { - field: STRAPI_EXAMPLE_DESCRIPTION_TEXTNODEFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type STRAPI_EXAMPLE_DESCRIPTION_TEXTNODEGroupConnection_maxArgs = { - field: STRAPI_EXAMPLE_DESCRIPTION_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_DESCRIPTION_TEXTNODEGroupConnection_minArgs = { - field: STRAPI_EXAMPLE_DESCRIPTION_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_DESCRIPTION_TEXTNODEGroupConnection_sumArgs = { - field: STRAPI_EXAMPLE_DESCRIPTION_TEXTNODEFieldSelector; -}; - -type STRAPI_EXAMPLE_DESCRIPTION_TEXTNODESortInput = { - readonly childMarkdownRemark: InputMaybe; - readonly children: InputMaybe; - readonly childrenMarkdownRemark: InputMaybe; - readonly description: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; -}; - -type STRAPI_EXAMPLE_FUNDING_TEXTNODE = Node & { - /** Returns the first child node of type MarkdownRemark or null if there are no children of given type on this node */ - readonly childMarkdownRemark: Maybe; - readonly children: ReadonlyArray; - /** Returns all children nodes filtered by type MarkdownRemark */ - readonly childrenMarkdownRemark: Maybe>>; - readonly funding: Maybe; - readonly id: Scalars['ID']; - readonly internal: Internal; - readonly parent: Maybe; -}; - -type STRAPI_EXAMPLE_FUNDING_TEXTNODEConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type STRAPI_EXAMPLE_FUNDING_TEXTNODEConnection_distinctArgs = { - field: STRAPI_EXAMPLE_FUNDING_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_FUNDING_TEXTNODEConnection_groupArgs = { - field: STRAPI_EXAMPLE_FUNDING_TEXTNODEFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type STRAPI_EXAMPLE_FUNDING_TEXTNODEConnection_maxArgs = { - field: STRAPI_EXAMPLE_FUNDING_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_FUNDING_TEXTNODEConnection_minArgs = { - field: STRAPI_EXAMPLE_FUNDING_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_FUNDING_TEXTNODEConnection_sumArgs = { - field: STRAPI_EXAMPLE_FUNDING_TEXTNODEFieldSelector; -}; - -type STRAPI_EXAMPLE_FUNDING_TEXTNODEEdge = { - readonly next: Maybe; - readonly node: STRAPI_EXAMPLE_FUNDING_TEXTNODE; - readonly previous: Maybe; -}; - -type STRAPI_EXAMPLE_FUNDING_TEXTNODEFieldSelector = { - readonly childMarkdownRemark: InputMaybe; - readonly children: InputMaybe; - readonly childrenMarkdownRemark: InputMaybe; - readonly funding: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; -}; - -type STRAPI_EXAMPLE_FUNDING_TEXTNODEFilterInput = { - readonly childMarkdownRemark: InputMaybe; - readonly children: InputMaybe; - readonly childrenMarkdownRemark: InputMaybe; - readonly funding: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; -}; - -type STRAPI_EXAMPLE_FUNDING_TEXTNODEGroupConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly field: Scalars['String']; - readonly fieldValue: Maybe; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type STRAPI_EXAMPLE_FUNDING_TEXTNODEGroupConnection_distinctArgs = { - field: STRAPI_EXAMPLE_FUNDING_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_FUNDING_TEXTNODEGroupConnection_groupArgs = { - field: STRAPI_EXAMPLE_FUNDING_TEXTNODEFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type STRAPI_EXAMPLE_FUNDING_TEXTNODEGroupConnection_maxArgs = { - field: STRAPI_EXAMPLE_FUNDING_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_FUNDING_TEXTNODEGroupConnection_minArgs = { - field: STRAPI_EXAMPLE_FUNDING_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_FUNDING_TEXTNODEGroupConnection_sumArgs = { - field: STRAPI_EXAMPLE_FUNDING_TEXTNODEFieldSelector; -}; - -type STRAPI_EXAMPLE_FUNDING_TEXTNODESortInput = { - readonly childMarkdownRemark: InputMaybe; - readonly children: InputMaybe; - readonly childrenMarkdownRemark: InputMaybe; - readonly funding: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; -}; - -type STRAPI_EXAMPLE_GOALS_TEXTNODE = Node & { - /** Returns the first child node of type MarkdownRemark or null if there are no children of given type on this node */ - readonly childMarkdownRemark: Maybe; - readonly children: ReadonlyArray; - /** Returns all children nodes filtered by type MarkdownRemark */ - readonly childrenMarkdownRemark: Maybe>>; - readonly goals: Maybe; - readonly id: Scalars['ID']; - readonly internal: Internal; - readonly parent: Maybe; -}; - -type STRAPI_EXAMPLE_GOALS_TEXTNODEConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type STRAPI_EXAMPLE_GOALS_TEXTNODEConnection_distinctArgs = { - field: STRAPI_EXAMPLE_GOALS_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_GOALS_TEXTNODEConnection_groupArgs = { - field: STRAPI_EXAMPLE_GOALS_TEXTNODEFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type STRAPI_EXAMPLE_GOALS_TEXTNODEConnection_maxArgs = { - field: STRAPI_EXAMPLE_GOALS_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_GOALS_TEXTNODEConnection_minArgs = { - field: STRAPI_EXAMPLE_GOALS_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_GOALS_TEXTNODEConnection_sumArgs = { - field: STRAPI_EXAMPLE_GOALS_TEXTNODEFieldSelector; -}; - -type STRAPI_EXAMPLE_GOALS_TEXTNODEEdge = { - readonly next: Maybe; - readonly node: STRAPI_EXAMPLE_GOALS_TEXTNODE; - readonly previous: Maybe; -}; - -type STRAPI_EXAMPLE_GOALS_TEXTNODEFieldSelector = { - readonly childMarkdownRemark: InputMaybe; - readonly children: InputMaybe; - readonly childrenMarkdownRemark: InputMaybe; - readonly goals: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; -}; - -type STRAPI_EXAMPLE_GOALS_TEXTNODEFilterInput = { - readonly childMarkdownRemark: InputMaybe; - readonly children: InputMaybe; - readonly childrenMarkdownRemark: InputMaybe; - readonly goals: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; -}; - -type STRAPI_EXAMPLE_GOALS_TEXTNODEGroupConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly field: Scalars['String']; - readonly fieldValue: Maybe; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type STRAPI_EXAMPLE_GOALS_TEXTNODEGroupConnection_distinctArgs = { - field: STRAPI_EXAMPLE_GOALS_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_GOALS_TEXTNODEGroupConnection_groupArgs = { - field: STRAPI_EXAMPLE_GOALS_TEXTNODEFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type STRAPI_EXAMPLE_GOALS_TEXTNODEGroupConnection_maxArgs = { - field: STRAPI_EXAMPLE_GOALS_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_GOALS_TEXTNODEGroupConnection_minArgs = { - field: STRAPI_EXAMPLE_GOALS_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_GOALS_TEXTNODEGroupConnection_sumArgs = { - field: STRAPI_EXAMPLE_GOALS_TEXTNODEFieldSelector; -}; - -type STRAPI_EXAMPLE_GOALS_TEXTNODESortInput = { - readonly childMarkdownRemark: InputMaybe; - readonly children: InputMaybe; - readonly childrenMarkdownRemark: InputMaybe; - readonly goals: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; -}; - -type STRAPI_EXAMPLE_LOCALCHALLENGES_TEXTNODE = Node & { - /** Returns the first child node of type MarkdownRemark or null if there are no children of given type on this node */ - readonly childMarkdownRemark: Maybe; - readonly children: ReadonlyArray; - /** Returns all children nodes filtered by type MarkdownRemark */ - readonly childrenMarkdownRemark: Maybe>>; - readonly id: Scalars['ID']; - readonly internal: Internal; - readonly localChallenges: Maybe; - readonly parent: Maybe; -}; - -type STRAPI_EXAMPLE_LOCALCHALLENGES_TEXTNODEConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type STRAPI_EXAMPLE_LOCALCHALLENGES_TEXTNODEConnection_distinctArgs = { - field: STRAPI_EXAMPLE_LOCALCHALLENGES_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_LOCALCHALLENGES_TEXTNODEConnection_groupArgs = { - field: STRAPI_EXAMPLE_LOCALCHALLENGES_TEXTNODEFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type STRAPI_EXAMPLE_LOCALCHALLENGES_TEXTNODEConnection_maxArgs = { - field: STRAPI_EXAMPLE_LOCALCHALLENGES_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_LOCALCHALLENGES_TEXTNODEConnection_minArgs = { - field: STRAPI_EXAMPLE_LOCALCHALLENGES_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_LOCALCHALLENGES_TEXTNODEConnection_sumArgs = { - field: STRAPI_EXAMPLE_LOCALCHALLENGES_TEXTNODEFieldSelector; -}; - -type STRAPI_EXAMPLE_LOCALCHALLENGES_TEXTNODEEdge = { - readonly next: Maybe; - readonly node: STRAPI_EXAMPLE_LOCALCHALLENGES_TEXTNODE; - readonly previous: Maybe; -}; - -type STRAPI_EXAMPLE_LOCALCHALLENGES_TEXTNODEFieldSelector = { - readonly childMarkdownRemark: InputMaybe; - readonly children: InputMaybe; - readonly childrenMarkdownRemark: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly localChallenges: InputMaybe; - readonly parent: InputMaybe; -}; - -type STRAPI_EXAMPLE_LOCALCHALLENGES_TEXTNODEFilterInput = { - readonly childMarkdownRemark: InputMaybe; - readonly children: InputMaybe; - readonly childrenMarkdownRemark: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly localChallenges: InputMaybe; - readonly parent: InputMaybe; -}; - -type STRAPI_EXAMPLE_LOCALCHALLENGES_TEXTNODEGroupConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly field: Scalars['String']; - readonly fieldValue: Maybe; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type STRAPI_EXAMPLE_LOCALCHALLENGES_TEXTNODEGroupConnection_distinctArgs = { - field: STRAPI_EXAMPLE_LOCALCHALLENGES_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_LOCALCHALLENGES_TEXTNODEGroupConnection_groupArgs = { - field: STRAPI_EXAMPLE_LOCALCHALLENGES_TEXTNODEFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type STRAPI_EXAMPLE_LOCALCHALLENGES_TEXTNODEGroupConnection_maxArgs = { - field: STRAPI_EXAMPLE_LOCALCHALLENGES_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_LOCALCHALLENGES_TEXTNODEGroupConnection_minArgs = { - field: STRAPI_EXAMPLE_LOCALCHALLENGES_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_LOCALCHALLENGES_TEXTNODEGroupConnection_sumArgs = { - field: STRAPI_EXAMPLE_LOCALCHALLENGES_TEXTNODEFieldSelector; -}; - -type STRAPI_EXAMPLE_LOCALCHALLENGES_TEXTNODESortInput = { - readonly childMarkdownRemark: InputMaybe; - readonly children: InputMaybe; - readonly childrenMarkdownRemark: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly localChallenges: InputMaybe; - readonly parent: InputMaybe; -}; - -type STRAPI_EXAMPLE_NOTES_TEXTNODE = Node & { - /** Returns the first child node of type MarkdownRemark or null if there are no children of given type on this node */ - readonly childMarkdownRemark: Maybe; - readonly children: ReadonlyArray; - /** Returns all children nodes filtered by type MarkdownRemark */ - readonly childrenMarkdownRemark: Maybe>>; - readonly id: Scalars['ID']; - readonly internal: Internal; - readonly notes: Maybe; - readonly parent: Maybe; -}; - -type STRAPI_EXAMPLE_NOTES_TEXTNODEConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type STRAPI_EXAMPLE_NOTES_TEXTNODEConnection_distinctArgs = { - field: STRAPI_EXAMPLE_NOTES_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_NOTES_TEXTNODEConnection_groupArgs = { - field: STRAPI_EXAMPLE_NOTES_TEXTNODEFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type STRAPI_EXAMPLE_NOTES_TEXTNODEConnection_maxArgs = { - field: STRAPI_EXAMPLE_NOTES_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_NOTES_TEXTNODEConnection_minArgs = { - field: STRAPI_EXAMPLE_NOTES_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_NOTES_TEXTNODEConnection_sumArgs = { - field: STRAPI_EXAMPLE_NOTES_TEXTNODEFieldSelector; -}; - -type STRAPI_EXAMPLE_NOTES_TEXTNODEEdge = { - readonly next: Maybe; - readonly node: STRAPI_EXAMPLE_NOTES_TEXTNODE; - readonly previous: Maybe; -}; - -type STRAPI_EXAMPLE_NOTES_TEXTNODEFieldSelector = { - readonly childMarkdownRemark: InputMaybe; - readonly children: InputMaybe; - readonly childrenMarkdownRemark: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly notes: InputMaybe; - readonly parent: InputMaybe; -}; - -type STRAPI_EXAMPLE_NOTES_TEXTNODEFilterInput = { - readonly childMarkdownRemark: InputMaybe; - readonly children: InputMaybe; - readonly childrenMarkdownRemark: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly notes: InputMaybe; - readonly parent: InputMaybe; -}; - -type STRAPI_EXAMPLE_NOTES_TEXTNODEGroupConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly field: Scalars['String']; - readonly fieldValue: Maybe; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type STRAPI_EXAMPLE_NOTES_TEXTNODEGroupConnection_distinctArgs = { - field: STRAPI_EXAMPLE_NOTES_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_NOTES_TEXTNODEGroupConnection_groupArgs = { - field: STRAPI_EXAMPLE_NOTES_TEXTNODEFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type STRAPI_EXAMPLE_NOTES_TEXTNODEGroupConnection_maxArgs = { - field: STRAPI_EXAMPLE_NOTES_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_NOTES_TEXTNODEGroupConnection_minArgs = { - field: STRAPI_EXAMPLE_NOTES_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_NOTES_TEXTNODEGroupConnection_sumArgs = { - field: STRAPI_EXAMPLE_NOTES_TEXTNODEFieldSelector; -}; - -type STRAPI_EXAMPLE_NOTES_TEXTNODESortInput = { - readonly childMarkdownRemark: InputMaybe; - readonly children: InputMaybe; - readonly childrenMarkdownRemark: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly notes: InputMaybe; - readonly parent: InputMaybe; -}; - -type STRAPI_EXAMPLE_PARTICULARITIES_TEXTNODE = Node & { - /** Returns the first child node of type MarkdownRemark or null if there are no children of given type on this node */ - readonly childMarkdownRemark: Maybe; - readonly children: ReadonlyArray; - /** Returns all children nodes filtered by type MarkdownRemark */ - readonly childrenMarkdownRemark: Maybe>>; - readonly id: Scalars['ID']; - readonly internal: Internal; - readonly parent: Maybe; - readonly particularities: Maybe; -}; - -type STRAPI_EXAMPLE_PARTICULARITIES_TEXTNODEConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type STRAPI_EXAMPLE_PARTICULARITIES_TEXTNODEConnection_distinctArgs = { - field: STRAPI_EXAMPLE_PARTICULARITIES_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_PARTICULARITIES_TEXTNODEConnection_groupArgs = { - field: STRAPI_EXAMPLE_PARTICULARITIES_TEXTNODEFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type STRAPI_EXAMPLE_PARTICULARITIES_TEXTNODEConnection_maxArgs = { - field: STRAPI_EXAMPLE_PARTICULARITIES_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_PARTICULARITIES_TEXTNODEConnection_minArgs = { - field: STRAPI_EXAMPLE_PARTICULARITIES_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_PARTICULARITIES_TEXTNODEConnection_sumArgs = { - field: STRAPI_EXAMPLE_PARTICULARITIES_TEXTNODEFieldSelector; -}; - -type STRAPI_EXAMPLE_PARTICULARITIES_TEXTNODEEdge = { - readonly next: Maybe; - readonly node: STRAPI_EXAMPLE_PARTICULARITIES_TEXTNODE; - readonly previous: Maybe; -}; - -type STRAPI_EXAMPLE_PARTICULARITIES_TEXTNODEFieldSelector = { - readonly childMarkdownRemark: InputMaybe; - readonly children: InputMaybe; - readonly childrenMarkdownRemark: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; - readonly particularities: InputMaybe; -}; - -type STRAPI_EXAMPLE_PARTICULARITIES_TEXTNODEFilterInput = { - readonly childMarkdownRemark: InputMaybe; - readonly children: InputMaybe; - readonly childrenMarkdownRemark: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; - readonly particularities: InputMaybe; -}; - -type STRAPI_EXAMPLE_PARTICULARITIES_TEXTNODEGroupConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly field: Scalars['String']; - readonly fieldValue: Maybe; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type STRAPI_EXAMPLE_PARTICULARITIES_TEXTNODEGroupConnection_distinctArgs = { - field: STRAPI_EXAMPLE_PARTICULARITIES_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_PARTICULARITIES_TEXTNODEGroupConnection_groupArgs = { - field: STRAPI_EXAMPLE_PARTICULARITIES_TEXTNODEFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type STRAPI_EXAMPLE_PARTICULARITIES_TEXTNODEGroupConnection_maxArgs = { - field: STRAPI_EXAMPLE_PARTICULARITIES_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_PARTICULARITIES_TEXTNODEGroupConnection_minArgs = { - field: STRAPI_EXAMPLE_PARTICULARITIES_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_PARTICULARITIES_TEXTNODEGroupConnection_sumArgs = { - field: STRAPI_EXAMPLE_PARTICULARITIES_TEXTNODEFieldSelector; -}; - -type STRAPI_EXAMPLE_PARTICULARITIES_TEXTNODESortInput = { - readonly childMarkdownRemark: InputMaybe; - readonly children: InputMaybe; - readonly childrenMarkdownRemark: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; - readonly particularities: InputMaybe; -}; - -type STRAPI_EXAMPLE_PERSONNELEXPENSES_TEXTNODE = Node & { - /** Returns the first child node of type MarkdownRemark or null if there are no children of given type on this node */ - readonly childMarkdownRemark: Maybe; - readonly children: ReadonlyArray; - /** Returns all children nodes filtered by type MarkdownRemark */ - readonly childrenMarkdownRemark: Maybe>>; - readonly id: Scalars['ID']; - readonly internal: Internal; - readonly parent: Maybe; - readonly personnelExpenses: Maybe; -}; - -type STRAPI_EXAMPLE_PERSONNELEXPENSES_TEXTNODEConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type STRAPI_EXAMPLE_PERSONNELEXPENSES_TEXTNODEConnection_distinctArgs = { - field: STRAPI_EXAMPLE_PERSONNELEXPENSES_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_PERSONNELEXPENSES_TEXTNODEConnection_groupArgs = { - field: STRAPI_EXAMPLE_PERSONNELEXPENSES_TEXTNODEFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type STRAPI_EXAMPLE_PERSONNELEXPENSES_TEXTNODEConnection_maxArgs = { - field: STRAPI_EXAMPLE_PERSONNELEXPENSES_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_PERSONNELEXPENSES_TEXTNODEConnection_minArgs = { - field: STRAPI_EXAMPLE_PERSONNELEXPENSES_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_PERSONNELEXPENSES_TEXTNODEConnection_sumArgs = { - field: STRAPI_EXAMPLE_PERSONNELEXPENSES_TEXTNODEFieldSelector; -}; - -type STRAPI_EXAMPLE_PERSONNELEXPENSES_TEXTNODEEdge = { - readonly next: Maybe; - readonly node: STRAPI_EXAMPLE_PERSONNELEXPENSES_TEXTNODE; - readonly previous: Maybe; -}; - -type STRAPI_EXAMPLE_PERSONNELEXPENSES_TEXTNODEFieldSelector = { - readonly childMarkdownRemark: InputMaybe; - readonly children: InputMaybe; - readonly childrenMarkdownRemark: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; - readonly personnelExpenses: InputMaybe; -}; - -type STRAPI_EXAMPLE_PERSONNELEXPENSES_TEXTNODEFilterInput = { - readonly childMarkdownRemark: InputMaybe; - readonly children: InputMaybe; - readonly childrenMarkdownRemark: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; - readonly personnelExpenses: InputMaybe; -}; - -type STRAPI_EXAMPLE_PERSONNELEXPENSES_TEXTNODEGroupConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly field: Scalars['String']; - readonly fieldValue: Maybe; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type STRAPI_EXAMPLE_PERSONNELEXPENSES_TEXTNODEGroupConnection_distinctArgs = { - field: STRAPI_EXAMPLE_PERSONNELEXPENSES_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_PERSONNELEXPENSES_TEXTNODEGroupConnection_groupArgs = { - field: STRAPI_EXAMPLE_PERSONNELEXPENSES_TEXTNODEFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type STRAPI_EXAMPLE_PERSONNELEXPENSES_TEXTNODEGroupConnection_maxArgs = { - field: STRAPI_EXAMPLE_PERSONNELEXPENSES_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_PERSONNELEXPENSES_TEXTNODEGroupConnection_minArgs = { - field: STRAPI_EXAMPLE_PERSONNELEXPENSES_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_PERSONNELEXPENSES_TEXTNODEGroupConnection_sumArgs = { - field: STRAPI_EXAMPLE_PERSONNELEXPENSES_TEXTNODEFieldSelector; -}; - -type STRAPI_EXAMPLE_PERSONNELEXPENSES_TEXTNODESortInput = { - readonly childMarkdownRemark: InputMaybe; - readonly children: InputMaybe; - readonly childrenMarkdownRemark: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; - readonly personnelExpenses: InputMaybe; -}; - -type STRAPI_EXAMPLE_RELATEDOFFICE_TEXTNODE = Node & { - /** Returns the first child node of type MarkdownRemark or null if there are no children of given type on this node */ - readonly childMarkdownRemark: Maybe; - readonly children: ReadonlyArray; - /** Returns all children nodes filtered by type MarkdownRemark */ - readonly childrenMarkdownRemark: Maybe>>; - readonly id: Scalars['ID']; - readonly internal: Internal; - readonly parent: Maybe; - readonly relatedOffice: Maybe; -}; - -type STRAPI_EXAMPLE_RELATEDOFFICE_TEXTNODEConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type STRAPI_EXAMPLE_RELATEDOFFICE_TEXTNODEConnection_distinctArgs = { - field: STRAPI_EXAMPLE_RELATEDOFFICE_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_RELATEDOFFICE_TEXTNODEConnection_groupArgs = { - field: STRAPI_EXAMPLE_RELATEDOFFICE_TEXTNODEFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type STRAPI_EXAMPLE_RELATEDOFFICE_TEXTNODEConnection_maxArgs = { - field: STRAPI_EXAMPLE_RELATEDOFFICE_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_RELATEDOFFICE_TEXTNODEConnection_minArgs = { - field: STRAPI_EXAMPLE_RELATEDOFFICE_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_RELATEDOFFICE_TEXTNODEConnection_sumArgs = { - field: STRAPI_EXAMPLE_RELATEDOFFICE_TEXTNODEFieldSelector; -}; - -type STRAPI_EXAMPLE_RELATEDOFFICE_TEXTNODEEdge = { - readonly next: Maybe; - readonly node: STRAPI_EXAMPLE_RELATEDOFFICE_TEXTNODE; - readonly previous: Maybe; -}; - -type STRAPI_EXAMPLE_RELATEDOFFICE_TEXTNODEFieldSelector = { - readonly childMarkdownRemark: InputMaybe; - readonly children: InputMaybe; - readonly childrenMarkdownRemark: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; - readonly relatedOffice: InputMaybe; -}; - -type STRAPI_EXAMPLE_RELATEDOFFICE_TEXTNODEFilterInput = { - readonly childMarkdownRemark: InputMaybe; - readonly children: InputMaybe; - readonly childrenMarkdownRemark: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; - readonly relatedOffice: InputMaybe; -}; - -type STRAPI_EXAMPLE_RELATEDOFFICE_TEXTNODEGroupConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly field: Scalars['String']; - readonly fieldValue: Maybe; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type STRAPI_EXAMPLE_RELATEDOFFICE_TEXTNODEGroupConnection_distinctArgs = { - field: STRAPI_EXAMPLE_RELATEDOFFICE_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_RELATEDOFFICE_TEXTNODEGroupConnection_groupArgs = { - field: STRAPI_EXAMPLE_RELATEDOFFICE_TEXTNODEFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type STRAPI_EXAMPLE_RELATEDOFFICE_TEXTNODEGroupConnection_maxArgs = { - field: STRAPI_EXAMPLE_RELATEDOFFICE_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_RELATEDOFFICE_TEXTNODEGroupConnection_minArgs = { - field: STRAPI_EXAMPLE_RELATEDOFFICE_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_RELATEDOFFICE_TEXTNODEGroupConnection_sumArgs = { - field: STRAPI_EXAMPLE_RELATEDOFFICE_TEXTNODEFieldSelector; -}; - -type STRAPI_EXAMPLE_RELATEDOFFICE_TEXTNODESortInput = { - readonly childMarkdownRemark: InputMaybe; - readonly children: InputMaybe; - readonly childrenMarkdownRemark: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; - readonly relatedOffice: InputMaybe; -}; - -type STRAPI_EXAMPLE_RESULTS_TEXTNODE = Node & { - /** Returns the first child node of type MarkdownRemark or null if there are no children of given type on this node */ - readonly childMarkdownRemark: Maybe; - readonly children: ReadonlyArray; - /** Returns all children nodes filtered by type MarkdownRemark */ - readonly childrenMarkdownRemark: Maybe>>; - readonly id: Scalars['ID']; - readonly internal: Internal; - readonly parent: Maybe; - readonly results: Maybe; -}; - -type STRAPI_EXAMPLE_RESULTS_TEXTNODEConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type STRAPI_EXAMPLE_RESULTS_TEXTNODEConnection_distinctArgs = { - field: STRAPI_EXAMPLE_RESULTS_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_RESULTS_TEXTNODEConnection_groupArgs = { - field: STRAPI_EXAMPLE_RESULTS_TEXTNODEFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type STRAPI_EXAMPLE_RESULTS_TEXTNODEConnection_maxArgs = { - field: STRAPI_EXAMPLE_RESULTS_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_RESULTS_TEXTNODEConnection_minArgs = { - field: STRAPI_EXAMPLE_RESULTS_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_RESULTS_TEXTNODEConnection_sumArgs = { - field: STRAPI_EXAMPLE_RESULTS_TEXTNODEFieldSelector; -}; - -type STRAPI_EXAMPLE_RESULTS_TEXTNODEEdge = { - readonly next: Maybe; - readonly node: STRAPI_EXAMPLE_RESULTS_TEXTNODE; - readonly previous: Maybe; -}; - -type STRAPI_EXAMPLE_RESULTS_TEXTNODEFieldSelector = { - readonly childMarkdownRemark: InputMaybe; - readonly children: InputMaybe; - readonly childrenMarkdownRemark: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; - readonly results: InputMaybe; -}; - -type STRAPI_EXAMPLE_RESULTS_TEXTNODEFilterInput = { - readonly childMarkdownRemark: InputMaybe; - readonly children: InputMaybe; - readonly childrenMarkdownRemark: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; - readonly results: InputMaybe; -}; - -type STRAPI_EXAMPLE_RESULTS_TEXTNODEGroupConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly field: Scalars['String']; - readonly fieldValue: Maybe; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type STRAPI_EXAMPLE_RESULTS_TEXTNODEGroupConnection_distinctArgs = { - field: STRAPI_EXAMPLE_RESULTS_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_RESULTS_TEXTNODEGroupConnection_groupArgs = { - field: STRAPI_EXAMPLE_RESULTS_TEXTNODEFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type STRAPI_EXAMPLE_RESULTS_TEXTNODEGroupConnection_maxArgs = { - field: STRAPI_EXAMPLE_RESULTS_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_RESULTS_TEXTNODEGroupConnection_minArgs = { - field: STRAPI_EXAMPLE_RESULTS_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_RESULTS_TEXTNODEGroupConnection_sumArgs = { - field: STRAPI_EXAMPLE_RESULTS_TEXTNODEFieldSelector; -}; - -type STRAPI_EXAMPLE_RESULTS_TEXTNODESortInput = { - readonly childMarkdownRemark: InputMaybe; - readonly children: InputMaybe; - readonly childrenMarkdownRemark: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; - readonly results: InputMaybe; -}; - -type STRAPI_EXAMPLE_SOURCES_TEXTNODE = Node & { - /** Returns the first child node of type MarkdownRemark or null if there are no children of given type on this node */ - readonly childMarkdownRemark: Maybe; - readonly children: ReadonlyArray; - /** Returns all children nodes filtered by type MarkdownRemark */ - readonly childrenMarkdownRemark: Maybe>>; - readonly id: Scalars['ID']; - readonly internal: Internal; - readonly parent: Maybe; - readonly sources: Maybe; -}; - -type STRAPI_EXAMPLE_SOURCES_TEXTNODEConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type STRAPI_EXAMPLE_SOURCES_TEXTNODEConnection_distinctArgs = { - field: STRAPI_EXAMPLE_SOURCES_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_SOURCES_TEXTNODEConnection_groupArgs = { - field: STRAPI_EXAMPLE_SOURCES_TEXTNODEFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type STRAPI_EXAMPLE_SOURCES_TEXTNODEConnection_maxArgs = { - field: STRAPI_EXAMPLE_SOURCES_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_SOURCES_TEXTNODEConnection_minArgs = { - field: STRAPI_EXAMPLE_SOURCES_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_SOURCES_TEXTNODEConnection_sumArgs = { - field: STRAPI_EXAMPLE_SOURCES_TEXTNODEFieldSelector; -}; - -type STRAPI_EXAMPLE_SOURCES_TEXTNODEEdge = { - readonly next: Maybe; - readonly node: STRAPI_EXAMPLE_SOURCES_TEXTNODE; - readonly previous: Maybe; -}; - -type STRAPI_EXAMPLE_SOURCES_TEXTNODEFieldSelector = { - readonly childMarkdownRemark: InputMaybe; - readonly children: InputMaybe; - readonly childrenMarkdownRemark: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; - readonly sources: InputMaybe; -}; - -type STRAPI_EXAMPLE_SOURCES_TEXTNODEFilterInput = { - readonly childMarkdownRemark: InputMaybe; - readonly children: InputMaybe; - readonly childrenMarkdownRemark: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; - readonly sources: InputMaybe; -}; - -type STRAPI_EXAMPLE_SOURCES_TEXTNODEGroupConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly field: Scalars['String']; - readonly fieldValue: Maybe; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type STRAPI_EXAMPLE_SOURCES_TEXTNODEGroupConnection_distinctArgs = { - field: STRAPI_EXAMPLE_SOURCES_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_SOURCES_TEXTNODEGroupConnection_groupArgs = { - field: STRAPI_EXAMPLE_SOURCES_TEXTNODEFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type STRAPI_EXAMPLE_SOURCES_TEXTNODEGroupConnection_maxArgs = { - field: STRAPI_EXAMPLE_SOURCES_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_SOURCES_TEXTNODEGroupConnection_minArgs = { - field: STRAPI_EXAMPLE_SOURCES_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_SOURCES_TEXTNODEGroupConnection_sumArgs = { - field: STRAPI_EXAMPLE_SOURCES_TEXTNODEFieldSelector; -}; - -type STRAPI_EXAMPLE_SOURCES_TEXTNODESortInput = { - readonly childMarkdownRemark: InputMaybe; - readonly children: InputMaybe; - readonly childrenMarkdownRemark: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; - readonly sources: InputMaybe; -}; - -type STRAPI_EXAMPLE_STAKEHOLDERS_TEXTNODE = Node & { - /** Returns the first child node of type MarkdownRemark or null if there are no children of given type on this node */ - readonly childMarkdownRemark: Maybe; - readonly children: ReadonlyArray; - /** Returns all children nodes filtered by type MarkdownRemark */ - readonly childrenMarkdownRemark: Maybe>>; - readonly id: Scalars['ID']; - readonly internal: Internal; - readonly parent: Maybe; - readonly stakeholders: Maybe; -}; - -type STRAPI_EXAMPLE_STAKEHOLDERS_TEXTNODEConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type STRAPI_EXAMPLE_STAKEHOLDERS_TEXTNODEConnection_distinctArgs = { - field: STRAPI_EXAMPLE_STAKEHOLDERS_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_STAKEHOLDERS_TEXTNODEConnection_groupArgs = { - field: STRAPI_EXAMPLE_STAKEHOLDERS_TEXTNODEFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type STRAPI_EXAMPLE_STAKEHOLDERS_TEXTNODEConnection_maxArgs = { - field: STRAPI_EXAMPLE_STAKEHOLDERS_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_STAKEHOLDERS_TEXTNODEConnection_minArgs = { - field: STRAPI_EXAMPLE_STAKEHOLDERS_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_STAKEHOLDERS_TEXTNODEConnection_sumArgs = { - field: STRAPI_EXAMPLE_STAKEHOLDERS_TEXTNODEFieldSelector; -}; - -type STRAPI_EXAMPLE_STAKEHOLDERS_TEXTNODEEdge = { - readonly next: Maybe; - readonly node: STRAPI_EXAMPLE_STAKEHOLDERS_TEXTNODE; - readonly previous: Maybe; -}; - -type STRAPI_EXAMPLE_STAKEHOLDERS_TEXTNODEFieldSelector = { - readonly childMarkdownRemark: InputMaybe; - readonly children: InputMaybe; - readonly childrenMarkdownRemark: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; - readonly stakeholders: InputMaybe; -}; - -type STRAPI_EXAMPLE_STAKEHOLDERS_TEXTNODEFilterInput = { - readonly childMarkdownRemark: InputMaybe; - readonly children: InputMaybe; - readonly childrenMarkdownRemark: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; - readonly stakeholders: InputMaybe; -}; - -type STRAPI_EXAMPLE_STAKEHOLDERS_TEXTNODEGroupConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly field: Scalars['String']; - readonly fieldValue: Maybe; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type STRAPI_EXAMPLE_STAKEHOLDERS_TEXTNODEGroupConnection_distinctArgs = { - field: STRAPI_EXAMPLE_STAKEHOLDERS_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_STAKEHOLDERS_TEXTNODEGroupConnection_groupArgs = { - field: STRAPI_EXAMPLE_STAKEHOLDERS_TEXTNODEFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type STRAPI_EXAMPLE_STAKEHOLDERS_TEXTNODEGroupConnection_maxArgs = { - field: STRAPI_EXAMPLE_STAKEHOLDERS_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_STAKEHOLDERS_TEXTNODEGroupConnection_minArgs = { - field: STRAPI_EXAMPLE_STAKEHOLDERS_TEXTNODEFieldSelector; -}; - - -type STRAPI_EXAMPLE_STAKEHOLDERS_TEXTNODEGroupConnection_sumArgs = { - field: STRAPI_EXAMPLE_STAKEHOLDERS_TEXTNODEFieldSelector; -}; - -type STRAPI_EXAMPLE_STAKEHOLDERS_TEXTNODESortInput = { - readonly childMarkdownRemark: InputMaybe; - readonly children: InputMaybe; - readonly childrenMarkdownRemark: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; - readonly stakeholders: InputMaybe; -}; - -type STRAPI_MEASURE = Node & { - readonly additionalResources: Maybe>>; - readonly children: ReadonlyArray; - readonly communityEntries: Maybe>>; - readonly createdAt: Maybe; - readonly description: Maybe; - readonly examples: Maybe>>; - readonly fundings: Maybe>>; - readonly gatsbyPath: Maybe; - readonly guidelines: Maybe>>; - readonly id: Scalars['ID']; - readonly internal: Internal; - readonly name: Maybe; - readonly parent: Maybe; - readonly position: Maybe; - readonly publishedAt: Maybe; - readonly shortDescription: Maybe; - readonly slug: Maybe; - readonly strapi_id: Maybe; - readonly topic: Maybe; - readonly updatedAt: Maybe; -}; - - -type STRAPI_MEASURE_createdAtArgs = { - difference: InputMaybe; - formatString: InputMaybe; - fromNow: InputMaybe; - locale: InputMaybe; -}; - - -type STRAPI_MEASURE_gatsbyPathArgs = { - filePath: InputMaybe; -}; - - -type STRAPI_MEASURE_publishedAtArgs = { - difference: InputMaybe; - formatString: InputMaybe; - fromNow: InputMaybe; - locale: InputMaybe; -}; - - -type STRAPI_MEASURE_updatedAtArgs = { - difference: InputMaybe; - formatString: InputMaybe; - fromNow: InputMaybe; - locale: InputMaybe; -}; - -type STRAPI_MEASUREConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type STRAPI_MEASUREConnection_distinctArgs = { - field: STRAPI_MEASUREFieldSelector; -}; - - -type STRAPI_MEASUREConnection_groupArgs = { - field: STRAPI_MEASUREFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type STRAPI_MEASUREConnection_maxArgs = { - field: STRAPI_MEASUREFieldSelector; -}; - - -type STRAPI_MEASUREConnection_minArgs = { - field: STRAPI_MEASUREFieldSelector; -}; - - -type STRAPI_MEASUREConnection_sumArgs = { - field: STRAPI_MEASUREFieldSelector; -}; - -type STRAPI_MEASUREDescription = { - readonly data: Maybe; -}; - -type STRAPI_MEASUREDescriptionFieldSelector = { - readonly data: InputMaybe; -}; - -type STRAPI_MEASUREDescriptionFilterInput = { - readonly data: InputMaybe; -}; - -type STRAPI_MEASUREDescriptionSortInput = { - readonly data: InputMaybe; -}; - -type STRAPI_MEASUREEdge = { - readonly next: Maybe; - readonly node: STRAPI_MEASURE; - readonly previous: Maybe; -}; - -type STRAPI_MEASUREFieldSelector = { - readonly additionalResources: InputMaybe; - readonly children: InputMaybe; - readonly communityEntries: InputMaybe; - readonly createdAt: InputMaybe; - readonly description: InputMaybe; - readonly examples: InputMaybe; - readonly fundings: InputMaybe; - readonly gatsbyPath: InputMaybe; - readonly guidelines: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly name: InputMaybe; - readonly parent: InputMaybe; - readonly position: InputMaybe; - readonly publishedAt: InputMaybe; - readonly shortDescription: InputMaybe; - readonly slug: InputMaybe; - readonly strapi_id: InputMaybe; - readonly topic: InputMaybe; - readonly updatedAt: InputMaybe; -}; - -type STRAPI_MEASUREFilterInput = { - readonly additionalResources: InputMaybe; - readonly children: InputMaybe; - readonly communityEntries: InputMaybe; - readonly createdAt: InputMaybe; - readonly description: InputMaybe; - readonly examples: InputMaybe; - readonly fundings: InputMaybe; - readonly gatsbyPath: InputMaybe; - readonly guidelines: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly name: InputMaybe; - readonly parent: InputMaybe; - readonly position: InputMaybe; - readonly publishedAt: InputMaybe; - readonly shortDescription: InputMaybe; - readonly slug: InputMaybe; - readonly strapi_id: InputMaybe; - readonly topic: InputMaybe; - readonly updatedAt: InputMaybe; -}; - -type STRAPI_MEASUREFilterListInput = { - readonly elemMatch: InputMaybe; -}; - -type STRAPI_MEASUREGroupConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly field: Scalars['String']; - readonly fieldValue: Maybe; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type STRAPI_MEASUREGroupConnection_distinctArgs = { - field: STRAPI_MEASUREFieldSelector; -}; - - -type STRAPI_MEASUREGroupConnection_groupArgs = { - field: STRAPI_MEASUREFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type STRAPI_MEASUREGroupConnection_maxArgs = { - field: STRAPI_MEASUREFieldSelector; -}; - - -type STRAPI_MEASUREGroupConnection_minArgs = { - field: STRAPI_MEASUREFieldSelector; -}; - - -type STRAPI_MEASUREGroupConnection_sumArgs = { - field: STRAPI_MEASUREFieldSelector; -}; - -type STRAPI_MEASURESortInput = { - readonly additionalResources: InputMaybe; - readonly children: InputMaybe; - readonly communityEntries: InputMaybe; - readonly createdAt: InputMaybe; - readonly description: InputMaybe; - readonly examples: InputMaybe; - readonly fundings: InputMaybe; - readonly gatsbyPath: InputMaybe; - readonly guidelines: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly name: InputMaybe; - readonly parent: InputMaybe; - readonly position: InputMaybe; - readonly publishedAt: InputMaybe; - readonly shortDescription: InputMaybe; - readonly slug: InputMaybe; - readonly strapi_id: InputMaybe; - readonly topic: InputMaybe; - readonly updatedAt: InputMaybe; -}; - -type STRAPI_MEASURE_DESCRIPTION_TEXTNODE = Node & { - /** Returns the first child node of type MarkdownRemark or null if there are no children of given type on this node */ - readonly childMarkdownRemark: Maybe; - readonly children: ReadonlyArray; - /** Returns all children nodes filtered by type MarkdownRemark */ - readonly childrenMarkdownRemark: Maybe>>; - readonly description: Maybe; - readonly id: Scalars['ID']; - readonly internal: Internal; - readonly parent: Maybe; -}; - -type STRAPI_MEASURE_DESCRIPTION_TEXTNODEConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type STRAPI_MEASURE_DESCRIPTION_TEXTNODEConnection_distinctArgs = { - field: STRAPI_MEASURE_DESCRIPTION_TEXTNODEFieldSelector; -}; - - -type STRAPI_MEASURE_DESCRIPTION_TEXTNODEConnection_groupArgs = { - field: STRAPI_MEASURE_DESCRIPTION_TEXTNODEFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type STRAPI_MEASURE_DESCRIPTION_TEXTNODEConnection_maxArgs = { - field: STRAPI_MEASURE_DESCRIPTION_TEXTNODEFieldSelector; -}; - - -type STRAPI_MEASURE_DESCRIPTION_TEXTNODEConnection_minArgs = { - field: STRAPI_MEASURE_DESCRIPTION_TEXTNODEFieldSelector; -}; - - -type STRAPI_MEASURE_DESCRIPTION_TEXTNODEConnection_sumArgs = { - field: STRAPI_MEASURE_DESCRIPTION_TEXTNODEFieldSelector; -}; - -type STRAPI_MEASURE_DESCRIPTION_TEXTNODEEdge = { - readonly next: Maybe; - readonly node: STRAPI_MEASURE_DESCRIPTION_TEXTNODE; - readonly previous: Maybe; -}; - -type STRAPI_MEASURE_DESCRIPTION_TEXTNODEFieldSelector = { - readonly childMarkdownRemark: InputMaybe; - readonly children: InputMaybe; - readonly childrenMarkdownRemark: InputMaybe; - readonly description: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; -}; - -type STRAPI_MEASURE_DESCRIPTION_TEXTNODEFilterInput = { - readonly childMarkdownRemark: InputMaybe; - readonly children: InputMaybe; - readonly childrenMarkdownRemark: InputMaybe; - readonly description: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; -}; - -type STRAPI_MEASURE_DESCRIPTION_TEXTNODEGroupConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly field: Scalars['String']; - readonly fieldValue: Maybe; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type STRAPI_MEASURE_DESCRIPTION_TEXTNODEGroupConnection_distinctArgs = { - field: STRAPI_MEASURE_DESCRIPTION_TEXTNODEFieldSelector; -}; - - -type STRAPI_MEASURE_DESCRIPTION_TEXTNODEGroupConnection_groupArgs = { - field: STRAPI_MEASURE_DESCRIPTION_TEXTNODEFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type STRAPI_MEASURE_DESCRIPTION_TEXTNODEGroupConnection_maxArgs = { - field: STRAPI_MEASURE_DESCRIPTION_TEXTNODEFieldSelector; -}; - - -type STRAPI_MEASURE_DESCRIPTION_TEXTNODEGroupConnection_minArgs = { - field: STRAPI_MEASURE_DESCRIPTION_TEXTNODEFieldSelector; -}; - - -type STRAPI_MEASURE_DESCRIPTION_TEXTNODEGroupConnection_sumArgs = { - field: STRAPI_MEASURE_DESCRIPTION_TEXTNODEFieldSelector; -}; - -type STRAPI_MEASURE_DESCRIPTION_TEXTNODESortInput = { - readonly childMarkdownRemark: InputMaybe; - readonly children: InputMaybe; - readonly childrenMarkdownRemark: InputMaybe; - readonly description: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; -}; - -type STRAPI_TOPIC = Node & { - readonly additionalResources: Maybe>>; - readonly children: ReadonlyArray; - readonly createdAt: Maybe; - readonly description: Maybe; - readonly fundings: Maybe>>; - readonly gatsbyPath: Maybe; - readonly guidelines: Maybe>>; - readonly id: Scalars['ID']; - readonly image: Maybe; - readonly internal: Internal; - readonly measures: Maybe>>; - readonly name: Maybe; - readonly parent: Maybe; - readonly position: Maybe; - readonly publishedAt: Maybe; - readonly shortDescription: Maybe; - readonly slug: Maybe; - readonly strapi_id: Maybe; - readonly updatedAt: Maybe; -}; - - -type STRAPI_TOPIC_createdAtArgs = { - difference: InputMaybe; - formatString: InputMaybe; - fromNow: InputMaybe; - locale: InputMaybe; -}; - - -type STRAPI_TOPIC_gatsbyPathArgs = { - filePath: InputMaybe; -}; - - -type STRAPI_TOPIC_publishedAtArgs = { - difference: InputMaybe; - formatString: InputMaybe; - fromNow: InputMaybe; - locale: InputMaybe; -}; - - -type STRAPI_TOPIC_updatedAtArgs = { - difference: InputMaybe; - formatString: InputMaybe; - fromNow: InputMaybe; - locale: InputMaybe; -}; - -type STRAPI_TOPICConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type STRAPI_TOPICConnection_distinctArgs = { - field: STRAPI_TOPICFieldSelector; -}; - - -type STRAPI_TOPICConnection_groupArgs = { - field: STRAPI_TOPICFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type STRAPI_TOPICConnection_maxArgs = { - field: STRAPI_TOPICFieldSelector; -}; - - -type STRAPI_TOPICConnection_minArgs = { - field: STRAPI_TOPICFieldSelector; -}; - - -type STRAPI_TOPICConnection_sumArgs = { - field: STRAPI_TOPICFieldSelector; -}; - -type STRAPI_TOPICDescription = { - readonly data: Maybe; -}; - -type STRAPI_TOPICDescriptionFieldSelector = { - readonly data: InputMaybe; -}; - -type STRAPI_TOPICDescriptionFilterInput = { - readonly data: InputMaybe; -}; - -type STRAPI_TOPICDescriptionSortInput = { - readonly data: InputMaybe; -}; - -type STRAPI_TOPICEdge = { - readonly next: Maybe; - readonly node: STRAPI_TOPIC; - readonly previous: Maybe; -}; - -type STRAPI_TOPICFieldSelector = { - readonly additionalResources: InputMaybe; - readonly children: InputMaybe; - readonly createdAt: InputMaybe; - readonly description: InputMaybe; - readonly fundings: InputMaybe; - readonly gatsbyPath: InputMaybe; - readonly guidelines: InputMaybe; - readonly id: InputMaybe; - readonly image: InputMaybe; - readonly internal: InputMaybe; - readonly measures: InputMaybe; - readonly name: InputMaybe; - readonly parent: InputMaybe; - readonly position: InputMaybe; - readonly publishedAt: InputMaybe; - readonly shortDescription: InputMaybe; - readonly slug: InputMaybe; - readonly strapi_id: InputMaybe; - readonly updatedAt: InputMaybe; -}; - -type STRAPI_TOPICFilterInput = { - readonly additionalResources: InputMaybe; - readonly children: InputMaybe; - readonly createdAt: InputMaybe; - readonly description: InputMaybe; - readonly fundings: InputMaybe; - readonly gatsbyPath: InputMaybe; - readonly guidelines: InputMaybe; - readonly id: InputMaybe; - readonly image: InputMaybe; - readonly internal: InputMaybe; - readonly measures: InputMaybe; - readonly name: InputMaybe; - readonly parent: InputMaybe; - readonly position: InputMaybe; - readonly publishedAt: InputMaybe; - readonly shortDescription: InputMaybe; - readonly slug: InputMaybe; - readonly strapi_id: InputMaybe; - readonly updatedAt: InputMaybe; -}; - -type STRAPI_TOPICGroupConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly field: Scalars['String']; - readonly fieldValue: Maybe; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type STRAPI_TOPICGroupConnection_distinctArgs = { - field: STRAPI_TOPICFieldSelector; -}; - - -type STRAPI_TOPICGroupConnection_groupArgs = { - field: STRAPI_TOPICFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type STRAPI_TOPICGroupConnection_maxArgs = { - field: STRAPI_TOPICFieldSelector; -}; - - -type STRAPI_TOPICGroupConnection_minArgs = { - field: STRAPI_TOPICFieldSelector; -}; - - -type STRAPI_TOPICGroupConnection_sumArgs = { - field: STRAPI_TOPICFieldSelector; -}; - -type STRAPI_TOPICSortInput = { - readonly additionalResources: InputMaybe; - readonly children: InputMaybe; - readonly createdAt: InputMaybe; - readonly description: InputMaybe; - readonly fundings: InputMaybe; - readonly gatsbyPath: InputMaybe; - readonly guidelines: InputMaybe; - readonly id: InputMaybe; - readonly image: InputMaybe; - readonly internal: InputMaybe; - readonly measures: InputMaybe; - readonly name: InputMaybe; - readonly parent: InputMaybe; - readonly position: InputMaybe; - readonly publishedAt: InputMaybe; - readonly shortDescription: InputMaybe; - readonly slug: InputMaybe; - readonly strapi_id: InputMaybe; - readonly updatedAt: InputMaybe; -}; - -type STRAPI_TOPIC_DESCRIPTION_TEXTNODE = Node & { - /** Returns the first child node of type MarkdownRemark or null if there are no children of given type on this node */ - readonly childMarkdownRemark: Maybe; - readonly children: ReadonlyArray; - /** Returns all children nodes filtered by type MarkdownRemark */ - readonly childrenMarkdownRemark: Maybe>>; - readonly description: Maybe; - readonly id: Scalars['ID']; - readonly internal: Internal; - readonly parent: Maybe; -}; - -type STRAPI_TOPIC_DESCRIPTION_TEXTNODEConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type STRAPI_TOPIC_DESCRIPTION_TEXTNODEConnection_distinctArgs = { - field: STRAPI_TOPIC_DESCRIPTION_TEXTNODEFieldSelector; -}; - - -type STRAPI_TOPIC_DESCRIPTION_TEXTNODEConnection_groupArgs = { - field: STRAPI_TOPIC_DESCRIPTION_TEXTNODEFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type STRAPI_TOPIC_DESCRIPTION_TEXTNODEConnection_maxArgs = { - field: STRAPI_TOPIC_DESCRIPTION_TEXTNODEFieldSelector; -}; - - -type STRAPI_TOPIC_DESCRIPTION_TEXTNODEConnection_minArgs = { - field: STRAPI_TOPIC_DESCRIPTION_TEXTNODEFieldSelector; -}; - - -type STRAPI_TOPIC_DESCRIPTION_TEXTNODEConnection_sumArgs = { - field: STRAPI_TOPIC_DESCRIPTION_TEXTNODEFieldSelector; -}; - -type STRAPI_TOPIC_DESCRIPTION_TEXTNODEEdge = { - readonly next: Maybe; - readonly node: STRAPI_TOPIC_DESCRIPTION_TEXTNODE; - readonly previous: Maybe; -}; - -type STRAPI_TOPIC_DESCRIPTION_TEXTNODEFieldSelector = { - readonly childMarkdownRemark: InputMaybe; - readonly children: InputMaybe; - readonly childrenMarkdownRemark: InputMaybe; - readonly description: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; -}; - -type STRAPI_TOPIC_DESCRIPTION_TEXTNODEFilterInput = { - readonly childMarkdownRemark: InputMaybe; - readonly children: InputMaybe; - readonly childrenMarkdownRemark: InputMaybe; - readonly description: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; -}; - -type STRAPI_TOPIC_DESCRIPTION_TEXTNODEGroupConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly field: Scalars['String']; - readonly fieldValue: Maybe; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type STRAPI_TOPIC_DESCRIPTION_TEXTNODEGroupConnection_distinctArgs = { - field: STRAPI_TOPIC_DESCRIPTION_TEXTNODEFieldSelector; -}; - - -type STRAPI_TOPIC_DESCRIPTION_TEXTNODEGroupConnection_groupArgs = { - field: STRAPI_TOPIC_DESCRIPTION_TEXTNODEFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type STRAPI_TOPIC_DESCRIPTION_TEXTNODEGroupConnection_maxArgs = { - field: STRAPI_TOPIC_DESCRIPTION_TEXTNODEFieldSelector; -}; - - -type STRAPI_TOPIC_DESCRIPTION_TEXTNODEGroupConnection_minArgs = { - field: STRAPI_TOPIC_DESCRIPTION_TEXTNODEFieldSelector; -}; - - -type STRAPI_TOPIC_DESCRIPTION_TEXTNODEGroupConnection_sumArgs = { - field: STRAPI_TOPIC_DESCRIPTION_TEXTNODEFieldSelector; -}; - -type STRAPI_TOPIC_DESCRIPTION_TEXTNODESortInput = { - readonly childMarkdownRemark: InputMaybe; - readonly children: InputMaybe; - readonly childrenMarkdownRemark: InputMaybe; - readonly description: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; -}; - -type STRAPI__COMPONENT_AWARD_AWARD = Node & { - readonly award: Maybe; - readonly children: ReadonlyArray; - readonly description: Maybe; - readonly id: Scalars['ID']; - readonly internal: Internal; - readonly parent: Maybe; - readonly strapi_id: Maybe; -}; - -type STRAPI__COMPONENT_AWARD_AWARDConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type STRAPI__COMPONENT_AWARD_AWARDConnection_distinctArgs = { - field: STRAPI__COMPONENT_AWARD_AWARDFieldSelector; -}; - - -type STRAPI__COMPONENT_AWARD_AWARDConnection_groupArgs = { - field: STRAPI__COMPONENT_AWARD_AWARDFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type STRAPI__COMPONENT_AWARD_AWARDConnection_maxArgs = { - field: STRAPI__COMPONENT_AWARD_AWARDFieldSelector; -}; - - -type STRAPI__COMPONENT_AWARD_AWARDConnection_minArgs = { - field: STRAPI__COMPONENT_AWARD_AWARDFieldSelector; -}; - - -type STRAPI__COMPONENT_AWARD_AWARDConnection_sumArgs = { - field: STRAPI__COMPONENT_AWARD_AWARDFieldSelector; -}; - -type STRAPI__COMPONENT_AWARD_AWARDDescription = { - readonly data: Maybe; -}; - -type STRAPI__COMPONENT_AWARD_AWARDDescriptionFieldSelector = { - readonly data: InputMaybe; -}; - -type STRAPI__COMPONENT_AWARD_AWARDDescriptionFilterInput = { - readonly data: InputMaybe; -}; - -type STRAPI__COMPONENT_AWARD_AWARDDescriptionSortInput = { - readonly data: InputMaybe; -}; - -type STRAPI__COMPONENT_AWARD_AWARDEdge = { - readonly next: Maybe; - readonly node: STRAPI__COMPONENT_AWARD_AWARD; - readonly previous: Maybe; -}; - -type STRAPI__COMPONENT_AWARD_AWARDFieldSelector = { - readonly award: InputMaybe; - readonly children: InputMaybe; - readonly description: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; - readonly strapi_id: InputMaybe; -}; - -type STRAPI__COMPONENT_AWARD_AWARDFilterInput = { - readonly award: InputMaybe; - readonly children: InputMaybe; - readonly description: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; - readonly strapi_id: InputMaybe; -}; - -type STRAPI__COMPONENT_AWARD_AWARDFilterListInput = { - readonly elemMatch: InputMaybe; -}; - -type STRAPI__COMPONENT_AWARD_AWARDGroupConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly field: Scalars['String']; - readonly fieldValue: Maybe; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type STRAPI__COMPONENT_AWARD_AWARDGroupConnection_distinctArgs = { - field: STRAPI__COMPONENT_AWARD_AWARDFieldSelector; -}; - - -type STRAPI__COMPONENT_AWARD_AWARDGroupConnection_groupArgs = { - field: STRAPI__COMPONENT_AWARD_AWARDFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type STRAPI__COMPONENT_AWARD_AWARDGroupConnection_maxArgs = { - field: STRAPI__COMPONENT_AWARD_AWARDFieldSelector; -}; - - -type STRAPI__COMPONENT_AWARD_AWARDGroupConnection_minArgs = { - field: STRAPI__COMPONENT_AWARD_AWARDFieldSelector; -}; - - -type STRAPI__COMPONENT_AWARD_AWARDGroupConnection_sumArgs = { - field: STRAPI__COMPONENT_AWARD_AWARDFieldSelector; -}; - -type STRAPI__COMPONENT_AWARD_AWARDSortInput = { - readonly award: InputMaybe; - readonly children: InputMaybe; - readonly description: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; - readonly strapi_id: InputMaybe; -}; - -type STRAPI__COMPONENT_AWARD_AWARD_DESCRIPTION_TEXTNODE = Node & { - /** Returns the first child node of type MarkdownRemark or null if there are no children of given type on this node */ - readonly childMarkdownRemark: Maybe; - readonly children: ReadonlyArray; - /** Returns all children nodes filtered by type MarkdownRemark */ - readonly childrenMarkdownRemark: Maybe>>; - readonly description: Maybe; - readonly id: Scalars['ID']; - readonly internal: Internal; - readonly parent: Maybe; -}; - -type STRAPI__COMPONENT_AWARD_AWARD_DESCRIPTION_TEXTNODEConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type STRAPI__COMPONENT_AWARD_AWARD_DESCRIPTION_TEXTNODEConnection_distinctArgs = { - field: STRAPI__COMPONENT_AWARD_AWARD_DESCRIPTION_TEXTNODEFieldSelector; -}; - - -type STRAPI__COMPONENT_AWARD_AWARD_DESCRIPTION_TEXTNODEConnection_groupArgs = { - field: STRAPI__COMPONENT_AWARD_AWARD_DESCRIPTION_TEXTNODEFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type STRAPI__COMPONENT_AWARD_AWARD_DESCRIPTION_TEXTNODEConnection_maxArgs = { - field: STRAPI__COMPONENT_AWARD_AWARD_DESCRIPTION_TEXTNODEFieldSelector; -}; - - -type STRAPI__COMPONENT_AWARD_AWARD_DESCRIPTION_TEXTNODEConnection_minArgs = { - field: STRAPI__COMPONENT_AWARD_AWARD_DESCRIPTION_TEXTNODEFieldSelector; -}; - - -type STRAPI__COMPONENT_AWARD_AWARD_DESCRIPTION_TEXTNODEConnection_sumArgs = { - field: STRAPI__COMPONENT_AWARD_AWARD_DESCRIPTION_TEXTNODEFieldSelector; -}; - -type STRAPI__COMPONENT_AWARD_AWARD_DESCRIPTION_TEXTNODEEdge = { - readonly next: Maybe; - readonly node: STRAPI__COMPONENT_AWARD_AWARD_DESCRIPTION_TEXTNODE; - readonly previous: Maybe; -}; - -type STRAPI__COMPONENT_AWARD_AWARD_DESCRIPTION_TEXTNODEFieldSelector = { - readonly childMarkdownRemark: InputMaybe; - readonly children: InputMaybe; - readonly childrenMarkdownRemark: InputMaybe; - readonly description: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; -}; - -type STRAPI__COMPONENT_AWARD_AWARD_DESCRIPTION_TEXTNODEFilterInput = { - readonly childMarkdownRemark: InputMaybe; - readonly children: InputMaybe; - readonly childrenMarkdownRemark: InputMaybe; - readonly description: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; -}; - -type STRAPI__COMPONENT_AWARD_AWARD_DESCRIPTION_TEXTNODEGroupConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly field: Scalars['String']; - readonly fieldValue: Maybe; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type STRAPI__COMPONENT_AWARD_AWARD_DESCRIPTION_TEXTNODEGroupConnection_distinctArgs = { - field: STRAPI__COMPONENT_AWARD_AWARD_DESCRIPTION_TEXTNODEFieldSelector; -}; - - -type STRAPI__COMPONENT_AWARD_AWARD_DESCRIPTION_TEXTNODEGroupConnection_groupArgs = { - field: STRAPI__COMPONENT_AWARD_AWARD_DESCRIPTION_TEXTNODEFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type STRAPI__COMPONENT_AWARD_AWARD_DESCRIPTION_TEXTNODEGroupConnection_maxArgs = { - field: STRAPI__COMPONENT_AWARD_AWARD_DESCRIPTION_TEXTNODEFieldSelector; -}; - - -type STRAPI__COMPONENT_AWARD_AWARD_DESCRIPTION_TEXTNODEGroupConnection_minArgs = { - field: STRAPI__COMPONENT_AWARD_AWARD_DESCRIPTION_TEXTNODEFieldSelector; -}; - - -type STRAPI__COMPONENT_AWARD_AWARD_DESCRIPTION_TEXTNODEGroupConnection_sumArgs = { - field: STRAPI__COMPONENT_AWARD_AWARD_DESCRIPTION_TEXTNODEFieldSelector; -}; - -type STRAPI__COMPONENT_AWARD_AWARD_DESCRIPTION_TEXTNODESortInput = { - readonly childMarkdownRemark: InputMaybe; - readonly children: InputMaybe; - readonly childrenMarkdownRemark: InputMaybe; - readonly description: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; -}; - -type STRAPI__COMPONENT_IMAGE_COPYRIGHT_IMAGE = Node & { - readonly children: ReadonlyArray; - readonly copyright: Maybe; - readonly id: Scalars['ID']; - readonly image: Maybe; - readonly internal: Internal; - readonly parent: Maybe; - readonly strapi_id: Maybe; -}; - -type STRAPI__COMPONENT_IMAGE_COPYRIGHT_IMAGEConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type STRAPI__COMPONENT_IMAGE_COPYRIGHT_IMAGEConnection_distinctArgs = { - field: STRAPI__COMPONENT_IMAGE_COPYRIGHT_IMAGEFieldSelector; -}; - - -type STRAPI__COMPONENT_IMAGE_COPYRIGHT_IMAGEConnection_groupArgs = { - field: STRAPI__COMPONENT_IMAGE_COPYRIGHT_IMAGEFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type STRAPI__COMPONENT_IMAGE_COPYRIGHT_IMAGEConnection_maxArgs = { - field: STRAPI__COMPONENT_IMAGE_COPYRIGHT_IMAGEFieldSelector; -}; - - -type STRAPI__COMPONENT_IMAGE_COPYRIGHT_IMAGEConnection_minArgs = { - field: STRAPI__COMPONENT_IMAGE_COPYRIGHT_IMAGEFieldSelector; -}; - - -type STRAPI__COMPONENT_IMAGE_COPYRIGHT_IMAGEConnection_sumArgs = { - field: STRAPI__COMPONENT_IMAGE_COPYRIGHT_IMAGEFieldSelector; -}; - -type STRAPI__COMPONENT_IMAGE_COPYRIGHT_IMAGEEdge = { - readonly next: Maybe; - readonly node: STRAPI__COMPONENT_IMAGE_COPYRIGHT_IMAGE; - readonly previous: Maybe; -}; - -type STRAPI__COMPONENT_IMAGE_COPYRIGHT_IMAGEFieldSelector = { - readonly children: InputMaybe; - readonly copyright: InputMaybe; - readonly id: InputMaybe; - readonly image: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; - readonly strapi_id: InputMaybe; -}; - -type STRAPI__COMPONENT_IMAGE_COPYRIGHT_IMAGEFilterInput = { - readonly children: InputMaybe; - readonly copyright: InputMaybe; - readonly id: InputMaybe; - readonly image: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; - readonly strapi_id: InputMaybe; -}; - -type STRAPI__COMPONENT_IMAGE_COPYRIGHT_IMAGEGroupConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly field: Scalars['String']; - readonly fieldValue: Maybe; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type STRAPI__COMPONENT_IMAGE_COPYRIGHT_IMAGEGroupConnection_distinctArgs = { - field: STRAPI__COMPONENT_IMAGE_COPYRIGHT_IMAGEFieldSelector; -}; - - -type STRAPI__COMPONENT_IMAGE_COPYRIGHT_IMAGEGroupConnection_groupArgs = { - field: STRAPI__COMPONENT_IMAGE_COPYRIGHT_IMAGEFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type STRAPI__COMPONENT_IMAGE_COPYRIGHT_IMAGEGroupConnection_maxArgs = { - field: STRAPI__COMPONENT_IMAGE_COPYRIGHT_IMAGEFieldSelector; -}; - - -type STRAPI__COMPONENT_IMAGE_COPYRIGHT_IMAGEGroupConnection_minArgs = { - field: STRAPI__COMPONENT_IMAGE_COPYRIGHT_IMAGEFieldSelector; -}; - - -type STRAPI__COMPONENT_IMAGE_COPYRIGHT_IMAGEGroupConnection_sumArgs = { - field: STRAPI__COMPONENT_IMAGE_COPYRIGHT_IMAGEFieldSelector; -}; - -type STRAPI__COMPONENT_IMAGE_COPYRIGHT_IMAGESortInput = { - readonly children: InputMaybe; - readonly copyright: InputMaybe; - readonly id: InputMaybe; - readonly image: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; - readonly strapi_id: InputMaybe; -}; - -type STRAPI__COMPONENT_LINKS_LINKS = Node & { - readonly children: ReadonlyArray; - readonly display: Maybe; - readonly id: Scalars['ID']; - readonly internal: Internal; - readonly parent: Maybe; - readonly strapi_id: Maybe; - readonly url: Maybe; -}; - -type STRAPI__COMPONENT_LINKS_LINKSConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type STRAPI__COMPONENT_LINKS_LINKSConnection_distinctArgs = { - field: STRAPI__COMPONENT_LINKS_LINKSFieldSelector; -}; - - -type STRAPI__COMPONENT_LINKS_LINKSConnection_groupArgs = { - field: STRAPI__COMPONENT_LINKS_LINKSFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type STRAPI__COMPONENT_LINKS_LINKSConnection_maxArgs = { - field: STRAPI__COMPONENT_LINKS_LINKSFieldSelector; -}; - - -type STRAPI__COMPONENT_LINKS_LINKSConnection_minArgs = { - field: STRAPI__COMPONENT_LINKS_LINKSFieldSelector; -}; - - -type STRAPI__COMPONENT_LINKS_LINKSConnection_sumArgs = { - field: STRAPI__COMPONENT_LINKS_LINKSFieldSelector; -}; - -type STRAPI__COMPONENT_LINKS_LINKSEdge = { - readonly next: Maybe; - readonly node: STRAPI__COMPONENT_LINKS_LINKS; - readonly previous: Maybe; -}; - -type STRAPI__COMPONENT_LINKS_LINKSFieldSelector = { - readonly children: InputMaybe; - readonly display: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; - readonly strapi_id: InputMaybe; - readonly url: InputMaybe; -}; - -type STRAPI__COMPONENT_LINKS_LINKSFilterInput = { - readonly children: InputMaybe; - readonly display: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; - readonly strapi_id: InputMaybe; - readonly url: InputMaybe; -}; - -type STRAPI__COMPONENT_LINKS_LINKSFilterListInput = { - readonly elemMatch: InputMaybe; -}; - -type STRAPI__COMPONENT_LINKS_LINKSGroupConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly field: Scalars['String']; - readonly fieldValue: Maybe; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type STRAPI__COMPONENT_LINKS_LINKSGroupConnection_distinctArgs = { - field: STRAPI__COMPONENT_LINKS_LINKSFieldSelector; -}; - - -type STRAPI__COMPONENT_LINKS_LINKSGroupConnection_groupArgs = { - field: STRAPI__COMPONENT_LINKS_LINKSFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type STRAPI__COMPONENT_LINKS_LINKSGroupConnection_maxArgs = { - field: STRAPI__COMPONENT_LINKS_LINKSFieldSelector; -}; - - -type STRAPI__COMPONENT_LINKS_LINKSGroupConnection_minArgs = { - field: STRAPI__COMPONENT_LINKS_LINKSFieldSelector; -}; - - -type STRAPI__COMPONENT_LINKS_LINKSGroupConnection_sumArgs = { - field: STRAPI__COMPONENT_LINKS_LINKSFieldSelector; -}; - -type STRAPI__COMPONENT_LINKS_LINKSSortInput = { - readonly children: InputMaybe; - readonly display: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; - readonly strapi_id: InputMaybe; - readonly url: InputMaybe; -}; - -type STRAPI__MEDIA = Node & { - readonly children: ReadonlyArray; - readonly createdAt: Maybe; - readonly ext: Maybe; - readonly formats: Maybe; - readonly hash: Maybe; - readonly height: Maybe; - readonly id: Scalars['ID']; - readonly internal: Internal; - readonly localFile: Maybe; - readonly mime: Maybe; - readonly name: Maybe; - readonly parent: Maybe; - readonly size: Maybe; - readonly strapi_id: Maybe; - readonly updatedAt: Maybe; - readonly url: Maybe; - readonly width: Maybe; -}; - - -type STRAPI__MEDIA_createdAtArgs = { - difference: InputMaybe; - formatString: InputMaybe; - fromNow: InputMaybe; - locale: InputMaybe; -}; - - -type STRAPI__MEDIA_updatedAtArgs = { - difference: InputMaybe; - formatString: InputMaybe; - fromNow: InputMaybe; - locale: InputMaybe; -}; - -type STRAPI__MEDIAConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type STRAPI__MEDIAConnection_distinctArgs = { - field: STRAPI__MEDIAFieldSelector; -}; - - -type STRAPI__MEDIAConnection_groupArgs = { - field: STRAPI__MEDIAFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type STRAPI__MEDIAConnection_maxArgs = { - field: STRAPI__MEDIAFieldSelector; -}; - - -type STRAPI__MEDIAConnection_minArgs = { - field: STRAPI__MEDIAFieldSelector; -}; - - -type STRAPI__MEDIAConnection_sumArgs = { - field: STRAPI__MEDIAFieldSelector; -}; - -type STRAPI__MEDIAEdge = { - readonly next: Maybe; - readonly node: STRAPI__MEDIA; - readonly previous: Maybe; -}; - -type STRAPI__MEDIAFieldSelector = { - readonly children: InputMaybe; - readonly createdAt: InputMaybe; - readonly ext: InputMaybe; - readonly formats: InputMaybe; - readonly hash: InputMaybe; - readonly height: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly localFile: InputMaybe; - readonly mime: InputMaybe; - readonly name: InputMaybe; - readonly parent: InputMaybe; - readonly size: InputMaybe; - readonly strapi_id: InputMaybe; - readonly updatedAt: InputMaybe; - readonly url: InputMaybe; - readonly width: InputMaybe; -}; - -type STRAPI__MEDIAFilterInput = { - readonly children: InputMaybe; - readonly createdAt: InputMaybe; - readonly ext: InputMaybe; - readonly formats: InputMaybe; - readonly hash: InputMaybe; - readonly height: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly localFile: InputMaybe; - readonly mime: InputMaybe; - readonly name: InputMaybe; - readonly parent: InputMaybe; - readonly size: InputMaybe; - readonly strapi_id: InputMaybe; - readonly updatedAt: InputMaybe; - readonly url: InputMaybe; - readonly width: InputMaybe; -}; - -type STRAPI__MEDIAFormats = { - readonly thumbnail: Maybe; -}; - -type STRAPI__MEDIAFormatsFieldSelector = { - readonly thumbnail: InputMaybe; -}; - -type STRAPI__MEDIAFormatsFilterInput = { - readonly thumbnail: InputMaybe; -}; - -type STRAPI__MEDIAFormatsSortInput = { - readonly thumbnail: InputMaybe; -}; - -type STRAPI__MEDIAFormatsThumbnail = { - readonly ext: Maybe; - readonly hash: Maybe; - readonly height: Maybe; - readonly mime: Maybe; - readonly name: Maybe; - readonly size: Maybe; - readonly url: Maybe; - readonly width: Maybe; -}; - -type STRAPI__MEDIAFormatsThumbnailFieldSelector = { - readonly ext: InputMaybe; - readonly hash: InputMaybe; - readonly height: InputMaybe; - readonly mime: InputMaybe; - readonly name: InputMaybe; - readonly size: InputMaybe; - readonly url: InputMaybe; - readonly width: InputMaybe; -}; - -type STRAPI__MEDIAFormatsThumbnailFilterInput = { - readonly ext: InputMaybe; - readonly hash: InputMaybe; - readonly height: InputMaybe; - readonly mime: InputMaybe; - readonly name: InputMaybe; - readonly size: InputMaybe; - readonly url: InputMaybe; - readonly width: InputMaybe; -}; - -type STRAPI__MEDIAFormatsThumbnailSortInput = { - readonly ext: InputMaybe; - readonly hash: InputMaybe; - readonly height: InputMaybe; - readonly mime: InputMaybe; - readonly name: InputMaybe; - readonly size: InputMaybe; - readonly url: InputMaybe; - readonly width: InputMaybe; -}; - -type STRAPI__MEDIAGroupConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly field: Scalars['String']; - readonly fieldValue: Maybe; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type STRAPI__MEDIAGroupConnection_distinctArgs = { - field: STRAPI__MEDIAFieldSelector; -}; - - -type STRAPI__MEDIAGroupConnection_groupArgs = { - field: STRAPI__MEDIAFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type STRAPI__MEDIAGroupConnection_maxArgs = { - field: STRAPI__MEDIAFieldSelector; -}; - - -type STRAPI__MEDIAGroupConnection_minArgs = { - field: STRAPI__MEDIAFieldSelector; -}; - - -type STRAPI__MEDIAGroupConnection_sumArgs = { - field: STRAPI__MEDIAFieldSelector; -}; - -type STRAPI__MEDIASortInput = { - readonly children: InputMaybe; - readonly createdAt: InputMaybe; - readonly ext: InputMaybe; - readonly formats: InputMaybe; - readonly hash: InputMaybe; - readonly height: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly localFile: InputMaybe; - readonly mime: InputMaybe; - readonly name: InputMaybe; - readonly parent: InputMaybe; - readonly size: InputMaybe; - readonly strapi_id: InputMaybe; - readonly updatedAt: InputMaybe; - readonly url: InputMaybe; - readonly width: InputMaybe; -}; - -type Site = Node & { - readonly buildTime: Maybe; - readonly children: ReadonlyArray; - readonly graphqlTypegen: Maybe; - readonly host: Maybe; - readonly id: Scalars['ID']; - readonly internal: Internal; - readonly jsxRuntime: Maybe; - readonly parent: Maybe; - readonly pathPrefix: Maybe; - readonly polyfill: Maybe; - readonly port: Maybe; - readonly siteMetadata: Maybe; - readonly trailingSlash: Maybe; -}; - - -type Site_buildTimeArgs = { - difference: InputMaybe; - formatString: InputMaybe; - fromNow: InputMaybe; - locale: InputMaybe; -}; - -type SiteBuildMetadata = Node & { - readonly buildTime: Maybe; - readonly children: ReadonlyArray; - readonly id: Scalars['ID']; - readonly internal: Internal; - readonly parent: Maybe; -}; - - -type SiteBuildMetadata_buildTimeArgs = { - difference: InputMaybe; - formatString: InputMaybe; - fromNow: InputMaybe; - locale: InputMaybe; -}; - -type SiteBuildMetadataConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type SiteBuildMetadataConnection_distinctArgs = { - field: SiteBuildMetadataFieldSelector; -}; - - -type SiteBuildMetadataConnection_groupArgs = { - field: SiteBuildMetadataFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type SiteBuildMetadataConnection_maxArgs = { - field: SiteBuildMetadataFieldSelector; -}; - - -type SiteBuildMetadataConnection_minArgs = { - field: SiteBuildMetadataFieldSelector; -}; - - -type SiteBuildMetadataConnection_sumArgs = { - field: SiteBuildMetadataFieldSelector; -}; - -type SiteBuildMetadataEdge = { - readonly next: Maybe; - readonly node: SiteBuildMetadata; - readonly previous: Maybe; -}; - -type SiteBuildMetadataFieldSelector = { - readonly buildTime: InputMaybe; - readonly children: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; -}; - -type SiteBuildMetadataFilterInput = { - readonly buildTime: InputMaybe; - readonly children: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; -}; - -type SiteBuildMetadataGroupConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly field: Scalars['String']; - readonly fieldValue: Maybe; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type SiteBuildMetadataGroupConnection_distinctArgs = { - field: SiteBuildMetadataFieldSelector; -}; - - -type SiteBuildMetadataGroupConnection_groupArgs = { - field: SiteBuildMetadataFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type SiteBuildMetadataGroupConnection_maxArgs = { - field: SiteBuildMetadataFieldSelector; -}; - - -type SiteBuildMetadataGroupConnection_minArgs = { - field: SiteBuildMetadataFieldSelector; -}; - - -type SiteBuildMetadataGroupConnection_sumArgs = { - field: SiteBuildMetadataFieldSelector; -}; - -type SiteBuildMetadataSortInput = { - readonly buildTime: InputMaybe; - readonly children: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; -}; - -type SiteConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type SiteConnection_distinctArgs = { - field: SiteFieldSelector; -}; - - -type SiteConnection_groupArgs = { - field: SiteFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type SiteConnection_maxArgs = { - field: SiteFieldSelector; -}; - - -type SiteConnection_minArgs = { - field: SiteFieldSelector; -}; - - -type SiteConnection_sumArgs = { - field: SiteFieldSelector; -}; - -type SiteEdge = { - readonly next: Maybe; - readonly node: Site; - readonly previous: Maybe; -}; - -type SiteFieldSelector = { - readonly buildTime: InputMaybe; - readonly children: InputMaybe; - readonly graphqlTypegen: InputMaybe; - readonly host: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly jsxRuntime: InputMaybe; - readonly parent: InputMaybe; - readonly pathPrefix: InputMaybe; - readonly polyfill: InputMaybe; - readonly port: InputMaybe; - readonly siteMetadata: InputMaybe; - readonly trailingSlash: InputMaybe; -}; - -type SiteFilterInput = { - readonly buildTime: InputMaybe; - readonly children: InputMaybe; - readonly graphqlTypegen: InputMaybe; - readonly host: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly jsxRuntime: InputMaybe; - readonly parent: InputMaybe; - readonly pathPrefix: InputMaybe; - readonly polyfill: InputMaybe; - readonly port: InputMaybe; - readonly siteMetadata: InputMaybe; - readonly trailingSlash: InputMaybe; -}; - -type SiteFunction = Node & { - readonly absoluteCompiledFilePath: Scalars['String']; - readonly children: ReadonlyArray; - readonly functionRoute: Scalars['String']; - readonly id: Scalars['ID']; - readonly internal: Internal; - readonly matchPath: Maybe; - readonly originalAbsoluteFilePath: Scalars['String']; - readonly originalRelativeFilePath: Scalars['String']; - readonly parent: Maybe; - readonly pluginName: Scalars['String']; - readonly relativeCompiledFilePath: Scalars['String']; -}; - -type SiteFunctionConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type SiteFunctionConnection_distinctArgs = { - field: SiteFunctionFieldSelector; -}; - - -type SiteFunctionConnection_groupArgs = { - field: SiteFunctionFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type SiteFunctionConnection_maxArgs = { - field: SiteFunctionFieldSelector; -}; - - -type SiteFunctionConnection_minArgs = { - field: SiteFunctionFieldSelector; -}; - - -type SiteFunctionConnection_sumArgs = { - field: SiteFunctionFieldSelector; -}; - -type SiteFunctionEdge = { - readonly next: Maybe; - readonly node: SiteFunction; - readonly previous: Maybe; -}; - -type SiteFunctionFieldSelector = { - readonly absoluteCompiledFilePath: InputMaybe; - readonly children: InputMaybe; - readonly functionRoute: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly matchPath: InputMaybe; - readonly originalAbsoluteFilePath: InputMaybe; - readonly originalRelativeFilePath: InputMaybe; - readonly parent: InputMaybe; - readonly pluginName: InputMaybe; - readonly relativeCompiledFilePath: InputMaybe; -}; - -type SiteFunctionFilterInput = { - readonly absoluteCompiledFilePath: InputMaybe; - readonly children: InputMaybe; - readonly functionRoute: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly matchPath: InputMaybe; - readonly originalAbsoluteFilePath: InputMaybe; - readonly originalRelativeFilePath: InputMaybe; - readonly parent: InputMaybe; - readonly pluginName: InputMaybe; - readonly relativeCompiledFilePath: InputMaybe; -}; - -type SiteFunctionGroupConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly field: Scalars['String']; - readonly fieldValue: Maybe; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type SiteFunctionGroupConnection_distinctArgs = { - field: SiteFunctionFieldSelector; -}; - - -type SiteFunctionGroupConnection_groupArgs = { - field: SiteFunctionFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type SiteFunctionGroupConnection_maxArgs = { - field: SiteFunctionFieldSelector; -}; - - -type SiteFunctionGroupConnection_minArgs = { - field: SiteFunctionFieldSelector; -}; - - -type SiteFunctionGroupConnection_sumArgs = { - field: SiteFunctionFieldSelector; -}; - -type SiteFunctionSortInput = { - readonly absoluteCompiledFilePath: InputMaybe; - readonly children: InputMaybe; - readonly functionRoute: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly matchPath: InputMaybe; - readonly originalAbsoluteFilePath: InputMaybe; - readonly originalRelativeFilePath: InputMaybe; - readonly parent: InputMaybe; - readonly pluginName: InputMaybe; - readonly relativeCompiledFilePath: InputMaybe; -}; - -type SiteGraphqlTypegen = { - readonly documentSearchPaths: Maybe>>; - readonly generateOnBuild: Maybe; - readonly typesOutputPath: Maybe; -}; - -type SiteGraphqlTypegenFieldSelector = { - readonly documentSearchPaths: InputMaybe; - readonly generateOnBuild: InputMaybe; - readonly typesOutputPath: InputMaybe; -}; - -type SiteGraphqlTypegenFilterInput = { - readonly documentSearchPaths: InputMaybe; - readonly generateOnBuild: InputMaybe; - readonly typesOutputPath: InputMaybe; -}; - -type SiteGraphqlTypegenSortInput = { - readonly documentSearchPaths: InputMaybe; - readonly generateOnBuild: InputMaybe; - readonly typesOutputPath: InputMaybe; -}; - -type SiteGroupConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly field: Scalars['String']; - readonly fieldValue: Maybe; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type SiteGroupConnection_distinctArgs = { - field: SiteFieldSelector; -}; - - -type SiteGroupConnection_groupArgs = { - field: SiteFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type SiteGroupConnection_maxArgs = { - field: SiteFieldSelector; -}; - - -type SiteGroupConnection_minArgs = { - field: SiteFieldSelector; -}; - - -type SiteGroupConnection_sumArgs = { - field: SiteFieldSelector; -}; - -type SitePage = Node & { - readonly children: ReadonlyArray; - readonly component: Scalars['String']; - readonly componentChunkName: Scalars['String']; - readonly id: Scalars['ID']; - readonly internal: Internal; - readonly internalComponentName: Scalars['String']; - readonly matchPath: Maybe; - readonly pageContext: Maybe; - readonly parent: Maybe; - readonly path: Scalars['String']; - readonly pluginCreator: Maybe; -}; - -type SitePageConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type SitePageConnection_distinctArgs = { - field: SitePageFieldSelector; -}; - - -type SitePageConnection_groupArgs = { - field: SitePageFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type SitePageConnection_maxArgs = { - field: SitePageFieldSelector; -}; - - -type SitePageConnection_minArgs = { - field: SitePageFieldSelector; -}; - - -type SitePageConnection_sumArgs = { - field: SitePageFieldSelector; -}; - -type SitePageEdge = { - readonly next: Maybe; - readonly node: SitePage; - readonly previous: Maybe; -}; - -type SitePageFieldSelector = { - readonly children: InputMaybe; - readonly component: InputMaybe; - readonly componentChunkName: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly internalComponentName: InputMaybe; - readonly matchPath: InputMaybe; - readonly pageContext: InputMaybe; - readonly parent: InputMaybe; - readonly path: InputMaybe; - readonly pluginCreator: InputMaybe; -}; - -type SitePageFilterInput = { - readonly children: InputMaybe; - readonly component: InputMaybe; - readonly componentChunkName: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly internalComponentName: InputMaybe; - readonly matchPath: InputMaybe; - readonly pageContext: InputMaybe; - readonly parent: InputMaybe; - readonly path: InputMaybe; - readonly pluginCreator: InputMaybe; -}; - -type SitePageGroupConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly field: Scalars['String']; - readonly fieldValue: Maybe; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type SitePageGroupConnection_distinctArgs = { - field: SitePageFieldSelector; -}; - - -type SitePageGroupConnection_groupArgs = { - field: SitePageFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type SitePageGroupConnection_maxArgs = { - field: SitePageFieldSelector; -}; - - -type SitePageGroupConnection_minArgs = { - field: SitePageFieldSelector; -}; - - -type SitePageGroupConnection_sumArgs = { - field: SitePageFieldSelector; -}; - -type SitePageSortInput = { - readonly children: InputMaybe; - readonly component: InputMaybe; - readonly componentChunkName: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly internalComponentName: InputMaybe; - readonly matchPath: InputMaybe; - readonly pageContext: InputMaybe; - readonly parent: InputMaybe; - readonly path: InputMaybe; - readonly pluginCreator: InputMaybe; -}; - -type SitePlugin = Node & { - readonly browserAPIs: Maybe>>; - readonly children: ReadonlyArray; - readonly id: Scalars['ID']; - readonly internal: Internal; - readonly name: Maybe; - readonly nodeAPIs: Maybe>>; - readonly packageJson: Maybe; - readonly parent: Maybe; - readonly pluginFilepath: Maybe; - readonly pluginOptions: Maybe; - readonly resolve: Maybe; - readonly ssrAPIs: Maybe>>; - readonly version: Maybe; -}; - -type SitePluginConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type SitePluginConnection_distinctArgs = { - field: SitePluginFieldSelector; -}; - - -type SitePluginConnection_groupArgs = { - field: SitePluginFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type SitePluginConnection_maxArgs = { - field: SitePluginFieldSelector; -}; - - -type SitePluginConnection_minArgs = { - field: SitePluginFieldSelector; -}; - - -type SitePluginConnection_sumArgs = { - field: SitePluginFieldSelector; -}; - -type SitePluginEdge = { - readonly next: Maybe; - readonly node: SitePlugin; - readonly previous: Maybe; -}; - -type SitePluginFieldSelector = { - readonly browserAPIs: InputMaybe; - readonly children: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly name: InputMaybe; - readonly nodeAPIs: InputMaybe; - readonly packageJson: InputMaybe; - readonly parent: InputMaybe; - readonly pluginFilepath: InputMaybe; - readonly pluginOptions: InputMaybe; - readonly resolve: InputMaybe; - readonly ssrAPIs: InputMaybe; - readonly version: InputMaybe; -}; - -type SitePluginFilterInput = { - readonly browserAPIs: InputMaybe; - readonly children: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly name: InputMaybe; - readonly nodeAPIs: InputMaybe; - readonly packageJson: InputMaybe; - readonly parent: InputMaybe; - readonly pluginFilepath: InputMaybe; - readonly pluginOptions: InputMaybe; - readonly resolve: InputMaybe; - readonly ssrAPIs: InputMaybe; - readonly version: InputMaybe; -}; - -type SitePluginGroupConnection = { - readonly distinct: ReadonlyArray; - readonly edges: ReadonlyArray; - readonly field: Scalars['String']; - readonly fieldValue: Maybe; - readonly group: ReadonlyArray; - readonly max: Maybe; - readonly min: Maybe; - readonly nodes: ReadonlyArray; - readonly pageInfo: PageInfo; - readonly sum: Maybe; - readonly totalCount: Scalars['Int']; -}; - - -type SitePluginGroupConnection_distinctArgs = { - field: SitePluginFieldSelector; -}; - - -type SitePluginGroupConnection_groupArgs = { - field: SitePluginFieldSelector; - limit: InputMaybe; - skip: InputMaybe; -}; - - -type SitePluginGroupConnection_maxArgs = { - field: SitePluginFieldSelector; -}; - - -type SitePluginGroupConnection_minArgs = { - field: SitePluginFieldSelector; -}; - - -type SitePluginGroupConnection_sumArgs = { - field: SitePluginFieldSelector; -}; - -type SitePluginSortInput = { - readonly browserAPIs: InputMaybe; - readonly children: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly name: InputMaybe; - readonly nodeAPIs: InputMaybe; - readonly packageJson: InputMaybe; - readonly parent: InputMaybe; - readonly pluginFilepath: InputMaybe; - readonly pluginOptions: InputMaybe; - readonly resolve: InputMaybe; - readonly ssrAPIs: InputMaybe; - readonly version: InputMaybe; -}; - -type SiteSiteMetadata = { - readonly description: Maybe; - readonly siteUrl: Maybe; - readonly title: Maybe; -}; - -type SiteSiteMetadataFieldSelector = { - readonly description: InputMaybe; - readonly siteUrl: InputMaybe; - readonly title: InputMaybe; -}; - -type SiteSiteMetadataFilterInput = { - readonly description: InputMaybe; - readonly siteUrl: InputMaybe; - readonly title: InputMaybe; -}; - -type SiteSiteMetadataSortInput = { - readonly description: InputMaybe; - readonly siteUrl: InputMaybe; - readonly title: InputMaybe; -}; - -type SiteSortInput = { - readonly buildTime: InputMaybe; - readonly children: InputMaybe; - readonly graphqlTypegen: InputMaybe; - readonly host: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly jsxRuntime: InputMaybe; - readonly parent: InputMaybe; - readonly pathPrefix: InputMaybe; - readonly polyfill: InputMaybe; - readonly port: InputMaybe; - readonly siteMetadata: InputMaybe; - readonly trailingSlash: InputMaybe; -}; - -type SortOrderEnum = - | 'ASC' - | 'DESC'; - -type StringQueryOperatorInput = { - readonly eq: InputMaybe; - readonly glob: InputMaybe; - readonly in: InputMaybe>>; - readonly ne: InputMaybe; - readonly nin: InputMaybe>>; - readonly regex: InputMaybe; -}; - -type TransformOptions = { - readonly cropFocus: InputMaybe; - readonly duotone: InputMaybe; - readonly fit: InputMaybe; - readonly grayscale: InputMaybe; - readonly rotate: InputMaybe; - readonly trim: InputMaybe; -}; - -type WebPOptions = { - readonly quality: InputMaybe; -}; - -type ExampleDetailsQueryVariables = Exact<{ - id: Scalars['String']; -}>; - - -type ExampleDetailsQuery = { readonly example: { readonly title: string | null, readonly shortDescription: string | null, readonly period: string | null, readonly countryState: string | null, readonly commune: string | null, readonly spatialStructure: string | null, readonly centrality: string | null, readonly subcategory: string | null, readonly population: string | null, readonly costs: string | null, readonly slug: string | null, readonly description: { readonly data: { readonly childMarkdownRemark: { readonly html: string | null } | null } | null } | null, readonly stakeholders: { readonly data: { readonly childMarkdownRemark: { readonly html: string | null } | null } | null } | null, readonly links: ReadonlyArray<{ readonly url: string | null, readonly display: string | null } | null> | null, readonly relatedOffice: { readonly data: { readonly childMarkdownRemark: { readonly html: string | null } | null } | null } | null, readonly awards: ReadonlyArray<{ readonly award: { readonly name: string | null, readonly logo: { readonly copyright: string | null, readonly image: { readonly url: string | null } | null } | null } | null, readonly description: { readonly data: { readonly id: string, readonly childMarkdownRemark: { readonly html: string | null } | null } | null } | null } | null> | null, readonly localChallenges: { readonly data: { readonly childMarkdownRemark: { readonly html: string | null } | null } | null } | null, readonly communication: { readonly data: { readonly childMarkdownRemark: { readonly html: string | null } | null } | null } | null, readonly funding: { readonly data: { readonly childMarkdownRemark: { readonly html: string | null } | null } | null } | null, readonly personnelExpenses: { readonly data: { readonly childMarkdownRemark: { readonly html: string | null } | null } | null } | null, readonly challenges: { readonly data: { readonly childMarkdownRemark: { readonly html: string | null } | null } | null } | null, readonly authorities: { readonly data: { readonly childMarkdownRemark: { readonly html: string | null } | null } | null } | null, readonly goals: { readonly data: { readonly goals: string | null, readonly childMarkdownRemark: { readonly html: string | null } | null } | null } | null, readonly results: { readonly data: { readonly results: string | null, readonly childMarkdownRemark: { readonly html: string | null } | null } | null } | null, readonly sources: { readonly data: { readonly sources: string | null, readonly childMarkdownRemark: { readonly html: string | null } | null } | null } | null, readonly particularities: { readonly data: { readonly particularities: string | null, readonly childMarkdownRemark: { readonly html: string | null } | null } | null } | null, readonly notes: { readonly data: { readonly notes: string | null, readonly childMarkdownRemark: { readonly html: string | null } | null } | null } | null, readonly image: { readonly copyright: string | null, readonly image: { readonly localFile: { readonly childImageSharp: { readonly gatsbyImageData: import('gatsby-plugin-image').IGatsbyImageData } | null } | null } | null } | null, readonly measure: { readonly name: string | null, readonly topic: { readonly name: string | null } | null, readonly examples: ReadonlyArray<{ readonly slug: string | null, readonly position: number | null } | null> | null, readonly communityEntries: ReadonlyArray<{ readonly title: string | null, readonly author: string | null, readonly contact: string | null, readonly subcategory: string | null, readonly countryState: string | null, readonly commune: string | null, readonly description: { readonly data: { readonly childMarkdownRemark: { readonly html: string | null } | null } | null } | null, readonly image: { readonly copyright: string | null, readonly image: { readonly localFile: { readonly childImageSharp: { readonly gatsbyImageData: import('gatsby-plugin-image').IGatsbyImageData } | null } | null } | null } | null, readonly website: { readonly url: string | null, readonly display: string | null } | null } | null> | null } | null, readonly relatedTopic: { readonly name: string | null } | null } | null }; - -type GatsbyImageSharpFixedFragment = { readonly base64: string | null, readonly width: number, readonly height: number, readonly src: string, readonly srcSet: string }; - -type GatsbyImageSharpFixed_noBase64Fragment = { readonly width: number, readonly height: number, readonly src: string, readonly srcSet: string }; - -type GatsbyImageSharpFixed_tracedSVGFragment = { readonly tracedSVG: string | null, readonly width: number, readonly height: number, readonly src: string, readonly srcSet: string }; - -type GatsbyImageSharpFixed_withWebpFragment = { readonly base64: string | null, readonly width: number, readonly height: number, readonly src: string, readonly srcSet: string, readonly srcWebp: string | null, readonly srcSetWebp: string | null }; - -type GatsbyImageSharpFixed_withWebp_noBase64Fragment = { readonly width: number, readonly height: number, readonly src: string, readonly srcSet: string, readonly srcWebp: string | null, readonly srcSetWebp: string | null }; - -type GatsbyImageSharpFixed_withWebp_tracedSVGFragment = { readonly tracedSVG: string | null, readonly width: number, readonly height: number, readonly src: string, readonly srcSet: string, readonly srcWebp: string | null, readonly srcSetWebp: string | null }; - -type GatsbyImageSharpFluidFragment = { readonly base64: string | null, readonly aspectRatio: number, readonly src: string, readonly srcSet: string, readonly sizes: string }; - -type GatsbyImageSharpFluid_noBase64Fragment = { readonly aspectRatio: number, readonly src: string, readonly srcSet: string, readonly sizes: string }; - -type GatsbyImageSharpFluid_tracedSVGFragment = { readonly tracedSVG: string | null, readonly aspectRatio: number, readonly src: string, readonly srcSet: string, readonly sizes: string }; - -type GatsbyImageSharpFluid_withWebpFragment = { readonly base64: string | null, readonly aspectRatio: number, readonly src: string, readonly srcSet: string, readonly srcWebp: string | null, readonly srcSetWebp: string | null, readonly sizes: string }; - -type GatsbyImageSharpFluid_withWebp_noBase64Fragment = { readonly aspectRatio: number, readonly src: string, readonly srcSet: string, readonly srcWebp: string | null, readonly srcSetWebp: string | null, readonly sizes: string }; - -type GatsbyImageSharpFluid_withWebp_tracedSVGFragment = { readonly tracedSVG: string | null, readonly aspectRatio: number, readonly src: string, readonly srcSet: string, readonly srcWebp: string | null, readonly srcSetWebp: string | null, readonly sizes: string }; - -type GatsbyImageSharpFluidLimitPresentationSizeFragment = { readonly maxHeight: number, readonly maxWidth: number }; - -type MeasureDetailsQueryVariables = Exact<{ - id: Scalars['String']; -}>; - - -type MeasureDetailsQuery = { readonly measure: { readonly name: string | null, readonly description: { readonly data: { readonly childMarkdownRemark: { readonly html: string | null } | null } | null } | null, readonly additionalResources: ReadonlyArray<{ readonly url: string | null, readonly display: string | null } | null> | null, readonly guidelines: ReadonlyArray<{ readonly display: string | null, readonly url: string | null } | null> | null, readonly fundings: ReadonlyArray<{ readonly display: string | null, readonly url: string | null } | null> | null, readonly topic: { readonly name: string | null } | null, readonly examples: ReadonlyArray<{ readonly title: string | null, readonly slug: string | null, readonly shortDescription: string | null, readonly position: number | null, readonly image: { readonly copyright: string | null, readonly image: { readonly localFile: { readonly childImageSharp: { readonly gatsbyImageData: import('gatsby-plugin-image').IGatsbyImageData } | null } | null } | null } | null } | null> | null, readonly communityEntries: ReadonlyArray<{ readonly title: string | null, readonly author: string | null, readonly contact: string | null, readonly subcategory: string | null, readonly countryState: string | null, readonly commune: string | null, readonly description: { readonly data: { readonly childMarkdownRemark: { readonly html: string | null } | null } | null } | null, readonly image: { readonly copyright: string | null, readonly image: { readonly localFile: { readonly childImageSharp: { readonly gatsbyImageData: import('gatsby-plugin-image').IGatsbyImageData } | null } | null } | null } | null, readonly website: { readonly url: string | null, readonly display: string | null } | null } | null> | null } | null }; - -type TopicDetailsQueryVariables = Exact<{ - id: Scalars['String']; -}>; - - -type TopicDetailsQuery = { readonly topic: { readonly name: string | null, readonly fundings: ReadonlyArray<{ readonly display: string | null, readonly url: string | null } | null> | null, readonly image: { readonly url: string | null } | null, readonly additionalResources: ReadonlyArray<{ readonly display: string | null, readonly url: string | null } | null> | null, readonly description: { readonly data: { readonly childMarkdownRemark: { readonly html: string | null } | null } | null } | null, readonly guidelines: ReadonlyArray<{ readonly display: string | null, readonly url: string | null } | null> | null, readonly measures: ReadonlyArray<{ readonly name: string | null, readonly slug: string | null, readonly position: number | null, readonly shortDescription: string | null } | null> | null } | null }; - -type TopicMeasureTreeQueryVariables = Exact<{ [key: string]: never; }>; - - -type TopicMeasureTreeQuery = { readonly allStrapiTopic: { readonly nodes: ReadonlyArray<{ readonly position: number | null, readonly name: string | null, readonly slug: string | null, readonly measures: ReadonlyArray<{ readonly position: number | null, readonly name: string | null, readonly slug: string | null } | null> | null }> } }; - -type TopicOverviewQueryVariables = Exact<{ [key: string]: never; }>; - - -type TopicOverviewQuery = { readonly topics: { readonly nodes: ReadonlyArray<{ readonly slug: string | null, readonly name: string | null, readonly image: { readonly url: string | null } | null }> }, readonly measures: { readonly nodes: ReadonlyArray<{ readonly slug: string | null, readonly topic: { readonly slug: string | null } | null, readonly examples: ReadonlyArray<{ readonly slug: string | null, readonly title: string | null, readonly shortDescription: string | null, readonly image: { readonly image: { readonly localFile: { readonly childImageSharp: { readonly gatsbyImageData: import('gatsby-plugin-image').IGatsbyImageData } | null } | null } | null } | null } | null> | null }> } }; - -type TopicTeasersQueryVariables = Exact<{ [key: string]: never; }>; - - -type TopicTeasersQuery = { readonly topics: { readonly nodes: ReadonlyArray<{ readonly slug: string | null, readonly name: string | null, readonly shortDescription: string | null, readonly image: { readonly url: string | null } | null }> } }; - - + type Maybe = T | null; + type InputMaybe = T | null; + type Exact = { [K in keyof T]: T[K] }; + type MakeOptional = Omit & { + [SubKey in K]?: Maybe; + }; + type MakeMaybe = Omit & { + [SubKey in K]: Maybe; + }; + /** All built-in and custom scalars, mapped to their actual values */ + type Scalars = { + /** The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `"4"`) or integer (such as `4`) input value will be accepted as an ID. */ + ID: string; + /** The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text. */ + String: string; + /** The `Boolean` scalar type represents `true` or `false`. */ + Boolean: boolean; + /** The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1. */ + Int: number; + /** The `Float` scalar type represents signed double-precision fractional values as specified by [IEEE 754](https://en.wikipedia.org/wiki/IEEE_floating_point). */ + Float: number; + /** A date string, such as 2007-12-03, compliant with the ISO 8601 standard for representation of dates and times using the Gregorian calendar. */ + Date: string; + GatsbyImageData: import('gatsby-plugin-image').IGatsbyImageData; + /** The `JSON` scalar type represents JSON values as specified by [ECMA-404](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf). */ + JSON: Record; + }; + + type AVIFOptions = { + readonly lossless: InputMaybe; + readonly quality: InputMaybe; + readonly speed: InputMaybe; + }; + + type BlurredOptions = { + /** Force the output format for the low-res preview. Default is to use the same format as the input. You should rarely need to change this */ + readonly toFormat: InputMaybe; + /** Width of the generated low-res preview. Default is 20px */ + readonly width: InputMaybe; + }; + + type BooleanQueryOperatorInput = { + readonly eq: InputMaybe; + readonly in: InputMaybe>>; + readonly ne: InputMaybe; + readonly nin: InputMaybe>>; + }; + + type DateQueryOperatorInput = { + readonly eq: InputMaybe; + readonly gt: InputMaybe; + readonly gte: InputMaybe; + readonly in: InputMaybe>>; + readonly lt: InputMaybe; + readonly lte: InputMaybe; + readonly ne: InputMaybe; + readonly nin: InputMaybe>>; + }; + + type Directory = Node & { + readonly absolutePath: Scalars['String']; + readonly accessTime: Scalars['Date']; + readonly atime: Scalars['Date']; + readonly atimeMs: Scalars['Float']; + readonly base: Scalars['String']; + readonly birthTime: Scalars['Date']; + /** @deprecated Use `birthTime` instead */ + readonly birthtime: Maybe; + /** @deprecated Use `birthTime` instead */ + readonly birthtimeMs: Maybe; + readonly changeTime: Scalars['Date']; + readonly children: ReadonlyArray; + readonly ctime: Scalars['Date']; + readonly ctimeMs: Scalars['Float']; + readonly dev: Scalars['Int']; + readonly dir: Scalars['String']; + readonly ext: Scalars['String']; + readonly extension: Scalars['String']; + readonly gid: Scalars['Int']; + readonly id: Scalars['ID']; + readonly ino: Scalars['Float']; + readonly internal: Internal; + readonly mode: Scalars['Int']; + readonly modifiedTime: Scalars['Date']; + readonly mtime: Scalars['Date']; + readonly mtimeMs: Scalars['Float']; + readonly name: Scalars['String']; + readonly nlink: Scalars['Int']; + readonly parent: Maybe; + readonly prettySize: Scalars['String']; + readonly rdev: Scalars['Int']; + readonly relativeDirectory: Scalars['String']; + readonly relativePath: Scalars['String']; + readonly root: Scalars['String']; + readonly size: Scalars['Int']; + readonly sourceInstanceName: Scalars['String']; + readonly uid: Scalars['Int']; + }; + + type Directory_accessTimeArgs = { + difference: InputMaybe; + formatString: InputMaybe; + fromNow: InputMaybe; + locale: InputMaybe; + }; + + type Directory_atimeArgs = { + difference: InputMaybe; + formatString: InputMaybe; + fromNow: InputMaybe; + locale: InputMaybe; + }; + + type Directory_birthTimeArgs = { + difference: InputMaybe; + formatString: InputMaybe; + fromNow: InputMaybe; + locale: InputMaybe; + }; + + type Directory_changeTimeArgs = { + difference: InputMaybe; + formatString: InputMaybe; + fromNow: InputMaybe; + locale: InputMaybe; + }; + + type Directory_ctimeArgs = { + difference: InputMaybe; + formatString: InputMaybe; + fromNow: InputMaybe; + locale: InputMaybe; + }; + + type Directory_modifiedTimeArgs = { + difference: InputMaybe; + formatString: InputMaybe; + fromNow: InputMaybe; + locale: InputMaybe; + }; + + type Directory_mtimeArgs = { + difference: InputMaybe; + formatString: InputMaybe; + fromNow: InputMaybe; + locale: InputMaybe; + }; + + type DirectoryConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type DirectoryConnection_distinctArgs = { + field: DirectoryFieldSelector; + }; + + type DirectoryConnection_groupArgs = { + field: DirectoryFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type DirectoryConnection_maxArgs = { + field: DirectoryFieldSelector; + }; + + type DirectoryConnection_minArgs = { + field: DirectoryFieldSelector; + }; + + type DirectoryConnection_sumArgs = { + field: DirectoryFieldSelector; + }; + + type DirectoryEdge = { + readonly next: Maybe; + readonly node: Directory; + readonly previous: Maybe; + }; + + type DirectoryFieldSelector = { + readonly absolutePath: InputMaybe; + readonly accessTime: InputMaybe; + readonly atime: InputMaybe; + readonly atimeMs: InputMaybe; + readonly base: InputMaybe; + readonly birthTime: InputMaybe; + readonly birthtime: InputMaybe; + readonly birthtimeMs: InputMaybe; + readonly changeTime: InputMaybe; + readonly children: InputMaybe; + readonly ctime: InputMaybe; + readonly ctimeMs: InputMaybe; + readonly dev: InputMaybe; + readonly dir: InputMaybe; + readonly ext: InputMaybe; + readonly extension: InputMaybe; + readonly gid: InputMaybe; + readonly id: InputMaybe; + readonly ino: InputMaybe; + readonly internal: InputMaybe; + readonly mode: InputMaybe; + readonly modifiedTime: InputMaybe; + readonly mtime: InputMaybe; + readonly mtimeMs: InputMaybe; + readonly name: InputMaybe; + readonly nlink: InputMaybe; + readonly parent: InputMaybe; + readonly prettySize: InputMaybe; + readonly rdev: InputMaybe; + readonly relativeDirectory: InputMaybe; + readonly relativePath: InputMaybe; + readonly root: InputMaybe; + readonly size: InputMaybe; + readonly sourceInstanceName: InputMaybe; + readonly uid: InputMaybe; + }; + + type DirectoryFilterInput = { + readonly absolutePath: InputMaybe; + readonly accessTime: InputMaybe; + readonly atime: InputMaybe; + readonly atimeMs: InputMaybe; + readonly base: InputMaybe; + readonly birthTime: InputMaybe; + readonly birthtime: InputMaybe; + readonly birthtimeMs: InputMaybe; + readonly changeTime: InputMaybe; + readonly children: InputMaybe; + readonly ctime: InputMaybe; + readonly ctimeMs: InputMaybe; + readonly dev: InputMaybe; + readonly dir: InputMaybe; + readonly ext: InputMaybe; + readonly extension: InputMaybe; + readonly gid: InputMaybe; + readonly id: InputMaybe; + readonly ino: InputMaybe; + readonly internal: InputMaybe; + readonly mode: InputMaybe; + readonly modifiedTime: InputMaybe; + readonly mtime: InputMaybe; + readonly mtimeMs: InputMaybe; + readonly name: InputMaybe; + readonly nlink: InputMaybe; + readonly parent: InputMaybe; + readonly prettySize: InputMaybe; + readonly rdev: InputMaybe; + readonly relativeDirectory: InputMaybe; + readonly relativePath: InputMaybe; + readonly root: InputMaybe; + readonly size: InputMaybe; + readonly sourceInstanceName: InputMaybe; + readonly uid: InputMaybe; + }; + + type DirectoryGroupConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly field: Scalars['String']; + readonly fieldValue: Maybe; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type DirectoryGroupConnection_distinctArgs = { + field: DirectoryFieldSelector; + }; + + type DirectoryGroupConnection_groupArgs = { + field: DirectoryFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type DirectoryGroupConnection_maxArgs = { + field: DirectoryFieldSelector; + }; + + type DirectoryGroupConnection_minArgs = { + field: DirectoryFieldSelector; + }; + + type DirectoryGroupConnection_sumArgs = { + field: DirectoryFieldSelector; + }; + + type DirectorySortInput = { + readonly absolutePath: InputMaybe; + readonly accessTime: InputMaybe; + readonly atime: InputMaybe; + readonly atimeMs: InputMaybe; + readonly base: InputMaybe; + readonly birthTime: InputMaybe; + readonly birthtime: InputMaybe; + readonly birthtimeMs: InputMaybe; + readonly changeTime: InputMaybe; + readonly children: InputMaybe; + readonly ctime: InputMaybe; + readonly ctimeMs: InputMaybe; + readonly dev: InputMaybe; + readonly dir: InputMaybe; + readonly ext: InputMaybe; + readonly extension: InputMaybe; + readonly gid: InputMaybe; + readonly id: InputMaybe; + readonly ino: InputMaybe; + readonly internal: InputMaybe; + readonly mode: InputMaybe; + readonly modifiedTime: InputMaybe; + readonly mtime: InputMaybe; + readonly mtimeMs: InputMaybe; + readonly name: InputMaybe; + readonly nlink: InputMaybe; + readonly parent: InputMaybe; + readonly prettySize: InputMaybe; + readonly rdev: InputMaybe; + readonly relativeDirectory: InputMaybe; + readonly relativePath: InputMaybe; + readonly root: InputMaybe; + readonly size: InputMaybe; + readonly sourceInstanceName: InputMaybe; + readonly uid: InputMaybe; + }; + + type DuotoneGradient = { + readonly highlight: Scalars['String']; + readonly opacity: InputMaybe; + readonly shadow: Scalars['String']; + }; + + type FieldSelectorEnum = 'SELECT'; + + type File = Node & { + readonly absolutePath: Scalars['String']; + readonly accessTime: Scalars['Date']; + readonly atime: Scalars['Date']; + readonly atimeMs: Scalars['Float']; + readonly base: Scalars['String']; + readonly birthTime: Scalars['Date']; + /** @deprecated Use `birthTime` instead */ + readonly birthtime: Maybe; + /** @deprecated Use `birthTime` instead */ + readonly birthtimeMs: Maybe; + readonly blksize: Maybe; + readonly blocks: Maybe; + readonly changeTime: Scalars['Date']; + /** Returns the first child node of type ImageSharp or null if there are no children of given type on this node */ + readonly childImageSharp: Maybe; + readonly children: ReadonlyArray; + /** Returns all children nodes filtered by type ImageSharp */ + readonly childrenImageSharp: Maybe>>; + readonly ctime: Scalars['Date']; + readonly ctimeMs: Scalars['Float']; + readonly dev: Scalars['Int']; + readonly dir: Scalars['String']; + readonly ext: Scalars['String']; + readonly extension: Scalars['String']; + readonly gid: Scalars['Int']; + readonly id: Scalars['ID']; + readonly ino: Scalars['Float']; + readonly internal: Internal; + readonly mode: Scalars['Int']; + readonly modifiedTime: Scalars['Date']; + readonly mtime: Scalars['Date']; + readonly mtimeMs: Scalars['Float']; + readonly name: Scalars['String']; + readonly nlink: Scalars['Int']; + readonly parent: Maybe; + readonly prettySize: Scalars['String']; + readonly rdev: Scalars['Int']; + readonly relativeDirectory: Scalars['String']; + readonly relativePath: Scalars['String']; + readonly root: Scalars['String']; + readonly size: Scalars['Int']; + readonly sourceInstanceName: Scalars['String']; + readonly uid: Scalars['Int']; + readonly url: Maybe; + }; + + type File_accessTimeArgs = { + difference: InputMaybe; + formatString: InputMaybe; + fromNow: InputMaybe; + locale: InputMaybe; + }; + + type File_atimeArgs = { + difference: InputMaybe; + formatString: InputMaybe; + fromNow: InputMaybe; + locale: InputMaybe; + }; + + type File_birthTimeArgs = { + difference: InputMaybe; + formatString: InputMaybe; + fromNow: InputMaybe; + locale: InputMaybe; + }; + + type File_changeTimeArgs = { + difference: InputMaybe; + formatString: InputMaybe; + fromNow: InputMaybe; + locale: InputMaybe; + }; + + type File_ctimeArgs = { + difference: InputMaybe; + formatString: InputMaybe; + fromNow: InputMaybe; + locale: InputMaybe; + }; + + type File_modifiedTimeArgs = { + difference: InputMaybe; + formatString: InputMaybe; + fromNow: InputMaybe; + locale: InputMaybe; + }; + + type File_mtimeArgs = { + difference: InputMaybe; + formatString: InputMaybe; + fromNow: InputMaybe; + locale: InputMaybe; + }; + + type FileConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type FileConnection_distinctArgs = { + field: FileFieldSelector; + }; + + type FileConnection_groupArgs = { + field: FileFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type FileConnection_maxArgs = { + field: FileFieldSelector; + }; + + type FileConnection_minArgs = { + field: FileFieldSelector; + }; + + type FileConnection_sumArgs = { + field: FileFieldSelector; + }; + + type FileEdge = { + readonly next: Maybe; + readonly node: File; + readonly previous: Maybe; + }; + + type FileFieldSelector = { + readonly absolutePath: InputMaybe; + readonly accessTime: InputMaybe; + readonly atime: InputMaybe; + readonly atimeMs: InputMaybe; + readonly base: InputMaybe; + readonly birthTime: InputMaybe; + readonly birthtime: InputMaybe; + readonly birthtimeMs: InputMaybe; + readonly blksize: InputMaybe; + readonly blocks: InputMaybe; + readonly changeTime: InputMaybe; + readonly childImageSharp: InputMaybe; + readonly children: InputMaybe; + readonly childrenImageSharp: InputMaybe; + readonly ctime: InputMaybe; + readonly ctimeMs: InputMaybe; + readonly dev: InputMaybe; + readonly dir: InputMaybe; + readonly ext: InputMaybe; + readonly extension: InputMaybe; + readonly gid: InputMaybe; + readonly id: InputMaybe; + readonly ino: InputMaybe; + readonly internal: InputMaybe; + readonly mode: InputMaybe; + readonly modifiedTime: InputMaybe; + readonly mtime: InputMaybe; + readonly mtimeMs: InputMaybe; + readonly name: InputMaybe; + readonly nlink: InputMaybe; + readonly parent: InputMaybe; + readonly prettySize: InputMaybe; + readonly rdev: InputMaybe; + readonly relativeDirectory: InputMaybe; + readonly relativePath: InputMaybe; + readonly root: InputMaybe; + readonly size: InputMaybe; + readonly sourceInstanceName: InputMaybe; + readonly uid: InputMaybe; + readonly url: InputMaybe; + }; + + type FileFilterInput = { + readonly absolutePath: InputMaybe; + readonly accessTime: InputMaybe; + readonly atime: InputMaybe; + readonly atimeMs: InputMaybe; + readonly base: InputMaybe; + readonly birthTime: InputMaybe; + readonly birthtime: InputMaybe; + readonly birthtimeMs: InputMaybe; + readonly blksize: InputMaybe; + readonly blocks: InputMaybe; + readonly changeTime: InputMaybe; + readonly childImageSharp: InputMaybe; + readonly children: InputMaybe; + readonly childrenImageSharp: InputMaybe; + readonly ctime: InputMaybe; + readonly ctimeMs: InputMaybe; + readonly dev: InputMaybe; + readonly dir: InputMaybe; + readonly ext: InputMaybe; + readonly extension: InputMaybe; + readonly gid: InputMaybe; + readonly id: InputMaybe; + readonly ino: InputMaybe; + readonly internal: InputMaybe; + readonly mode: InputMaybe; + readonly modifiedTime: InputMaybe; + readonly mtime: InputMaybe; + readonly mtimeMs: InputMaybe; + readonly name: InputMaybe; + readonly nlink: InputMaybe; + readonly parent: InputMaybe; + readonly prettySize: InputMaybe; + readonly rdev: InputMaybe; + readonly relativeDirectory: InputMaybe; + readonly relativePath: InputMaybe; + readonly root: InputMaybe; + readonly size: InputMaybe; + readonly sourceInstanceName: InputMaybe; + readonly uid: InputMaybe; + readonly url: InputMaybe; + }; + + type FileGroupConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly field: Scalars['String']; + readonly fieldValue: Maybe; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type FileGroupConnection_distinctArgs = { + field: FileFieldSelector; + }; + + type FileGroupConnection_groupArgs = { + field: FileFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type FileGroupConnection_maxArgs = { + field: FileFieldSelector; + }; + + type FileGroupConnection_minArgs = { + field: FileFieldSelector; + }; + + type FileGroupConnection_sumArgs = { + field: FileFieldSelector; + }; + + type FileSortInput = { + readonly absolutePath: InputMaybe; + readonly accessTime: InputMaybe; + readonly atime: InputMaybe; + readonly atimeMs: InputMaybe; + readonly base: InputMaybe; + readonly birthTime: InputMaybe; + readonly birthtime: InputMaybe; + readonly birthtimeMs: InputMaybe; + readonly blksize: InputMaybe; + readonly blocks: InputMaybe; + readonly changeTime: InputMaybe; + readonly childImageSharp: InputMaybe; + readonly children: InputMaybe; + readonly childrenImageSharp: InputMaybe; + readonly ctime: InputMaybe; + readonly ctimeMs: InputMaybe; + readonly dev: InputMaybe; + readonly dir: InputMaybe; + readonly ext: InputMaybe; + readonly extension: InputMaybe; + readonly gid: InputMaybe; + readonly id: InputMaybe; + readonly ino: InputMaybe; + readonly internal: InputMaybe; + readonly mode: InputMaybe; + readonly modifiedTime: InputMaybe; + readonly mtime: InputMaybe; + readonly mtimeMs: InputMaybe; + readonly name: InputMaybe; + readonly nlink: InputMaybe; + readonly parent: InputMaybe; + readonly prettySize: InputMaybe; + readonly rdev: InputMaybe; + readonly relativeDirectory: InputMaybe; + readonly relativePath: InputMaybe; + readonly root: InputMaybe; + readonly size: InputMaybe; + readonly sourceInstanceName: InputMaybe; + readonly uid: InputMaybe; + readonly url: InputMaybe; + }; + + type FloatQueryOperatorInput = { + readonly eq: InputMaybe; + readonly gt: InputMaybe; + readonly gte: InputMaybe; + readonly in: InputMaybe>>; + readonly lt: InputMaybe; + readonly lte: InputMaybe; + readonly ne: InputMaybe; + readonly nin: InputMaybe>>; + }; + + type GatsbyImageDataQueryOperatorInput = { + readonly eq: InputMaybe; + readonly in: InputMaybe< + ReadonlyArray> + >; + readonly ne: InputMaybe; + readonly nin: InputMaybe< + ReadonlyArray> + >; + }; + + type GatsbyImageFormat = 'auto' | 'avif' | 'jpg' | '' | 'png' | 'webp'; + + type GatsbyImageLayout = 'constrained' | 'fixed' | 'fullWidth'; + + type GatsbyImagePlaceholder = + | 'blurred' + | 'dominantColor' + | 'none' + | 'tracedSVG'; + + type ImageCropFocus = 17 | 0 | 2 | 16 | 1 | 5 | 8 | 3 | 6 | 7 | 4; + + type ImageFit = 'contain' | 'cover' | 'fill' | 'inside' | 'outside'; + + type ImageFormat = '' | 'avif' | 'jpg' | '' | 'png' | 'webp'; + + type ImageLayout = 'constrained' | 'fixed' | 'fullWidth'; + + type ImagePlaceholder = 'blurred' | 'dominantColor' | 'none' | 'tracedSVG'; + + type ImageSharp = Node & { + readonly children: ReadonlyArray; + readonly fixed: Maybe; + readonly fluid: Maybe; + readonly gatsbyImageData: Scalars['GatsbyImageData']; + readonly id: Scalars['ID']; + readonly internal: Internal; + readonly original: Maybe; + readonly parent: Maybe; + readonly resize: Maybe; + }; + + type ImageSharp_fixedArgs = { + background?: InputMaybe; + base64Width: InputMaybe; + cropFocus?: InputMaybe; + duotone: InputMaybe; + fit?: InputMaybe; + grayscale?: InputMaybe; + height: InputMaybe; + jpegProgressive?: InputMaybe; + jpegQuality: InputMaybe; + pngCompressionSpeed?: InputMaybe; + pngQuality: InputMaybe; + quality: InputMaybe; + rotate?: InputMaybe; + toFormat?: InputMaybe; + toFormatBase64?: InputMaybe; + traceSVG: InputMaybe; + trim?: InputMaybe; + webpQuality: InputMaybe; + width: InputMaybe; + }; + + type ImageSharp_fluidArgs = { + background?: InputMaybe; + base64Width: InputMaybe; + cropFocus?: InputMaybe; + duotone: InputMaybe; + fit?: InputMaybe; + grayscale?: InputMaybe; + jpegProgressive?: InputMaybe; + jpegQuality: InputMaybe; + maxHeight: InputMaybe; + maxWidth: InputMaybe; + pngCompressionSpeed?: InputMaybe; + pngQuality: InputMaybe; + quality: InputMaybe; + rotate?: InputMaybe; + sizes?: InputMaybe; + srcSetBreakpoints?: InputMaybe>>; + toFormat?: InputMaybe; + toFormatBase64?: InputMaybe; + traceSVG: InputMaybe; + trim?: InputMaybe; + webpQuality: InputMaybe; + }; + + type ImageSharp_gatsbyImageDataArgs = { + aspectRatio: InputMaybe; + avifOptions: InputMaybe; + backgroundColor: InputMaybe; + blurredOptions: InputMaybe; + breakpoints: InputMaybe>>; + formats: InputMaybe>>; + height: InputMaybe; + jpgOptions: InputMaybe; + layout?: InputMaybe; + outputPixelDensities: InputMaybe< + ReadonlyArray> + >; + placeholder: InputMaybe; + pngOptions: InputMaybe; + quality: InputMaybe; + sizes: InputMaybe; + tracedSVGOptions: InputMaybe; + transformOptions: InputMaybe; + webpOptions: InputMaybe; + width: InputMaybe; + }; + + type ImageSharp_resizeArgs = { + background?: InputMaybe; + base64?: InputMaybe; + cropFocus?: InputMaybe; + duotone: InputMaybe; + fit?: InputMaybe; + grayscale?: InputMaybe; + height: InputMaybe; + jpegProgressive?: InputMaybe; + jpegQuality: InputMaybe; + pngCompressionLevel?: InputMaybe; + pngCompressionSpeed?: InputMaybe; + pngQuality: InputMaybe; + quality: InputMaybe; + rotate?: InputMaybe; + toFormat?: InputMaybe; + traceSVG: InputMaybe; + trim?: InputMaybe; + webpQuality: InputMaybe; + width: InputMaybe; + }; + + type ImageSharpConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type ImageSharpConnection_distinctArgs = { + field: ImageSharpFieldSelector; + }; + + type ImageSharpConnection_groupArgs = { + field: ImageSharpFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type ImageSharpConnection_maxArgs = { + field: ImageSharpFieldSelector; + }; + + type ImageSharpConnection_minArgs = { + field: ImageSharpFieldSelector; + }; + + type ImageSharpConnection_sumArgs = { + field: ImageSharpFieldSelector; + }; + + type ImageSharpEdge = { + readonly next: Maybe; + readonly node: ImageSharp; + readonly previous: Maybe; + }; + + type ImageSharpFieldSelector = { + readonly children: InputMaybe; + readonly fixed: InputMaybe; + readonly fluid: InputMaybe; + readonly gatsbyImageData: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly original: InputMaybe; + readonly parent: InputMaybe; + readonly resize: InputMaybe; + }; + + type ImageSharpFilterInput = { + readonly children: InputMaybe; + readonly fixed: InputMaybe; + readonly fluid: InputMaybe; + readonly gatsbyImageData: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly original: InputMaybe; + readonly parent: InputMaybe; + readonly resize: InputMaybe; + }; + + type ImageSharpFilterListInput = { + readonly elemMatch: InputMaybe; + }; + + type ImageSharpFixed = { + readonly aspectRatio: Maybe; + readonly base64: Maybe; + readonly height: Scalars['Float']; + readonly originalName: Maybe; + readonly src: Scalars['String']; + readonly srcSet: Scalars['String']; + readonly srcSetWebp: Maybe; + readonly srcWebp: Maybe; + readonly tracedSVG: Maybe; + readonly width: Scalars['Float']; + }; + + type ImageSharpFixedFieldSelector = { + readonly aspectRatio: InputMaybe; + readonly base64: InputMaybe; + readonly height: InputMaybe; + readonly originalName: InputMaybe; + readonly src: InputMaybe; + readonly srcSet: InputMaybe; + readonly srcSetWebp: InputMaybe; + readonly srcWebp: InputMaybe; + readonly tracedSVG: InputMaybe; + readonly width: InputMaybe; + }; + + type ImageSharpFixedFilterInput = { + readonly aspectRatio: InputMaybe; + readonly base64: InputMaybe; + readonly height: InputMaybe; + readonly originalName: InputMaybe; + readonly src: InputMaybe; + readonly srcSet: InputMaybe; + readonly srcSetWebp: InputMaybe; + readonly srcWebp: InputMaybe; + readonly tracedSVG: InputMaybe; + readonly width: InputMaybe; + }; + + type ImageSharpFixedSortInput = { + readonly aspectRatio: InputMaybe; + readonly base64: InputMaybe; + readonly height: InputMaybe; + readonly originalName: InputMaybe; + readonly src: InputMaybe; + readonly srcSet: InputMaybe; + readonly srcSetWebp: InputMaybe; + readonly srcWebp: InputMaybe; + readonly tracedSVG: InputMaybe; + readonly width: InputMaybe; + }; + + type ImageSharpFluid = { + readonly aspectRatio: Scalars['Float']; + readonly base64: Maybe; + readonly originalImg: Maybe; + readonly originalName: Maybe; + readonly presentationHeight: Scalars['Int']; + readonly presentationWidth: Scalars['Int']; + readonly sizes: Scalars['String']; + readonly src: Scalars['String']; + readonly srcSet: Scalars['String']; + readonly srcSetWebp: Maybe; + readonly srcWebp: Maybe; + readonly tracedSVG: Maybe; + }; + + type ImageSharpFluidFieldSelector = { + readonly aspectRatio: InputMaybe; + readonly base64: InputMaybe; + readonly originalImg: InputMaybe; + readonly originalName: InputMaybe; + readonly presentationHeight: InputMaybe; + readonly presentationWidth: InputMaybe; + readonly sizes: InputMaybe; + readonly src: InputMaybe; + readonly srcSet: InputMaybe; + readonly srcSetWebp: InputMaybe; + readonly srcWebp: InputMaybe; + readonly tracedSVG: InputMaybe; + }; + + type ImageSharpFluidFilterInput = { + readonly aspectRatio: InputMaybe; + readonly base64: InputMaybe; + readonly originalImg: InputMaybe; + readonly originalName: InputMaybe; + readonly presentationHeight: InputMaybe; + readonly presentationWidth: InputMaybe; + readonly sizes: InputMaybe; + readonly src: InputMaybe; + readonly srcSet: InputMaybe; + readonly srcSetWebp: InputMaybe; + readonly srcWebp: InputMaybe; + readonly tracedSVG: InputMaybe; + }; + + type ImageSharpFluidSortInput = { + readonly aspectRatio: InputMaybe; + readonly base64: InputMaybe; + readonly originalImg: InputMaybe; + readonly originalName: InputMaybe; + readonly presentationHeight: InputMaybe; + readonly presentationWidth: InputMaybe; + readonly sizes: InputMaybe; + readonly src: InputMaybe; + readonly srcSet: InputMaybe; + readonly srcSetWebp: InputMaybe; + readonly srcWebp: InputMaybe; + readonly tracedSVG: InputMaybe; + }; + + type ImageSharpGroupConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly field: Scalars['String']; + readonly fieldValue: Maybe; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type ImageSharpGroupConnection_distinctArgs = { + field: ImageSharpFieldSelector; + }; + + type ImageSharpGroupConnection_groupArgs = { + field: ImageSharpFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type ImageSharpGroupConnection_maxArgs = { + field: ImageSharpFieldSelector; + }; + + type ImageSharpGroupConnection_minArgs = { + field: ImageSharpFieldSelector; + }; + + type ImageSharpGroupConnection_sumArgs = { + field: ImageSharpFieldSelector; + }; + + type ImageSharpOriginal = { + readonly height: Maybe; + readonly src: Maybe; + readonly width: Maybe; + }; + + type ImageSharpOriginalFieldSelector = { + readonly height: InputMaybe; + readonly src: InputMaybe; + readonly width: InputMaybe; + }; + + type ImageSharpOriginalFilterInput = { + readonly height: InputMaybe; + readonly src: InputMaybe; + readonly width: InputMaybe; + }; + + type ImageSharpOriginalSortInput = { + readonly height: InputMaybe; + readonly src: InputMaybe; + readonly width: InputMaybe; + }; + + type ImageSharpResize = { + readonly aspectRatio: Maybe; + readonly height: Maybe; + readonly originalName: Maybe; + readonly src: Maybe; + readonly tracedSVG: Maybe; + readonly width: Maybe; + }; + + type ImageSharpResizeFieldSelector = { + readonly aspectRatio: InputMaybe; + readonly height: InputMaybe; + readonly originalName: InputMaybe; + readonly src: InputMaybe; + readonly tracedSVG: InputMaybe; + readonly width: InputMaybe; + }; + + type ImageSharpResizeFilterInput = { + readonly aspectRatio: InputMaybe; + readonly height: InputMaybe; + readonly originalName: InputMaybe; + readonly src: InputMaybe; + readonly tracedSVG: InputMaybe; + readonly width: InputMaybe; + }; + + type ImageSharpResizeSortInput = { + readonly aspectRatio: InputMaybe; + readonly height: InputMaybe; + readonly originalName: InputMaybe; + readonly src: InputMaybe; + readonly tracedSVG: InputMaybe; + readonly width: InputMaybe; + }; + + type ImageSharpSortInput = { + readonly children: InputMaybe; + readonly fixed: InputMaybe; + readonly fluid: InputMaybe; + readonly gatsbyImageData: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly original: InputMaybe; + readonly parent: InputMaybe; + readonly resize: InputMaybe; + }; + + type IntQueryOperatorInput = { + readonly eq: InputMaybe; + readonly gt: InputMaybe; + readonly gte: InputMaybe; + readonly in: InputMaybe>>; + readonly lt: InputMaybe; + readonly lte: InputMaybe; + readonly ne: InputMaybe; + readonly nin: InputMaybe>>; + }; + + type Internal = { + readonly content: Maybe; + readonly contentDigest: Scalars['String']; + readonly contentFilePath: Maybe; + readonly description: Maybe; + readonly fieldOwners: Maybe>>; + readonly ignoreType: Maybe; + readonly mediaType: Maybe; + readonly owner: Scalars['String']; + readonly type: Scalars['String']; + }; + + type InternalFieldSelector = { + readonly content: InputMaybe; + readonly contentDigest: InputMaybe; + readonly contentFilePath: InputMaybe; + readonly description: InputMaybe; + readonly fieldOwners: InputMaybe; + readonly ignoreType: InputMaybe; + readonly mediaType: InputMaybe; + readonly owner: InputMaybe; + readonly type: InputMaybe; + }; + + type InternalFilterInput = { + readonly content: InputMaybe; + readonly contentDigest: InputMaybe; + readonly contentFilePath: InputMaybe; + readonly description: InputMaybe; + readonly fieldOwners: InputMaybe; + readonly ignoreType: InputMaybe; + readonly mediaType: InputMaybe; + readonly owner: InputMaybe; + readonly type: InputMaybe; + }; + + type InternalSortInput = { + readonly content: InputMaybe; + readonly contentDigest: InputMaybe; + readonly contentFilePath: InputMaybe; + readonly description: InputMaybe; + readonly fieldOwners: InputMaybe; + readonly ignoreType: InputMaybe; + readonly mediaType: InputMaybe; + readonly owner: InputMaybe; + readonly type: InputMaybe; + }; + + type JPGOptions = { + readonly progressive: InputMaybe; + readonly quality: InputMaybe; + }; + + type JSONQueryOperatorInput = { + readonly eq: InputMaybe; + readonly glob: InputMaybe; + readonly in: InputMaybe>>; + readonly ne: InputMaybe; + readonly nin: InputMaybe>>; + readonly regex: InputMaybe; + }; + + type MarkdownExcerptFormats = 'HTML' | 'MARKDOWN' | 'PLAIN'; + + type MarkdownHeading = { + readonly depth: Maybe; + readonly id: Maybe; + readonly value: Maybe; + }; + + type MarkdownHeadingFieldSelector = { + readonly depth: InputMaybe; + readonly id: InputMaybe; + readonly value: InputMaybe; + }; + + type MarkdownHeadingFilterInput = { + readonly depth: InputMaybe; + readonly id: InputMaybe; + readonly value: InputMaybe; + }; + + type MarkdownHeadingFilterListInput = { + readonly elemMatch: InputMaybe; + }; + + type MarkdownHeadingLevels = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6'; + + type MarkdownHeadingSortInput = { + readonly depth: InputMaybe; + readonly id: InputMaybe; + readonly value: InputMaybe; + }; + + type MarkdownRemark = Node & { + readonly children: ReadonlyArray; + readonly excerpt: Maybe; + readonly excerptAst: Maybe; + readonly frontmatter: Maybe; + readonly headings: Maybe>>; + readonly html: Maybe; + readonly htmlAst: Maybe; + readonly id: Scalars['ID']; + readonly internal: Internal; + readonly parent: Maybe; + readonly rawMarkdownBody: Maybe; + readonly tableOfContents: Maybe; + readonly timeToRead: Maybe; + readonly wordCount: Maybe; + }; + + type MarkdownRemark_excerptArgs = { + format?: InputMaybe; + pruneLength?: InputMaybe; + truncate?: InputMaybe; + }; + + type MarkdownRemark_excerptAstArgs = { + pruneLength?: InputMaybe; + truncate?: InputMaybe; + }; + + type MarkdownRemark_headingsArgs = { + depth: InputMaybe; + }; + + type MarkdownRemark_tableOfContentsArgs = { + absolute?: InputMaybe; + heading: InputMaybe; + maxDepth: InputMaybe; + pathToSlugField?: InputMaybe; + }; + + type MarkdownRemarkConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type MarkdownRemarkConnection_distinctArgs = { + field: MarkdownRemarkFieldSelector; + }; + + type MarkdownRemarkConnection_groupArgs = { + field: MarkdownRemarkFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type MarkdownRemarkConnection_maxArgs = { + field: MarkdownRemarkFieldSelector; + }; + + type MarkdownRemarkConnection_minArgs = { + field: MarkdownRemarkFieldSelector; + }; + + type MarkdownRemarkConnection_sumArgs = { + field: MarkdownRemarkFieldSelector; + }; + + type MarkdownRemarkEdge = { + readonly next: Maybe; + readonly node: MarkdownRemark; + readonly previous: Maybe; + }; + + type MarkdownRemarkFieldSelector = { + readonly children: InputMaybe; + readonly excerpt: InputMaybe; + readonly excerptAst: InputMaybe; + readonly frontmatter: InputMaybe; + readonly headings: InputMaybe; + readonly html: InputMaybe; + readonly htmlAst: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + readonly rawMarkdownBody: InputMaybe; + readonly tableOfContents: InputMaybe; + readonly timeToRead: InputMaybe; + readonly wordCount: InputMaybe; + }; + + type MarkdownRemarkFilterInput = { + readonly children: InputMaybe; + readonly excerpt: InputMaybe; + readonly excerptAst: InputMaybe; + readonly frontmatter: InputMaybe; + readonly headings: InputMaybe; + readonly html: InputMaybe; + readonly htmlAst: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + readonly rawMarkdownBody: InputMaybe; + readonly tableOfContents: InputMaybe; + readonly timeToRead: InputMaybe; + readonly wordCount: InputMaybe; + }; + + type MarkdownRemarkFilterListInput = { + readonly elemMatch: InputMaybe; + }; + + type MarkdownRemarkFrontmatter = { + readonly title: Maybe; + }; + + type MarkdownRemarkFrontmatterFieldSelector = { + readonly title: InputMaybe; + }; + + type MarkdownRemarkFrontmatterFilterInput = { + readonly title: InputMaybe; + }; + + type MarkdownRemarkFrontmatterSortInput = { + readonly title: InputMaybe; + }; + + type MarkdownRemarkGroupConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly field: Scalars['String']; + readonly fieldValue: Maybe; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type MarkdownRemarkGroupConnection_distinctArgs = { + field: MarkdownRemarkFieldSelector; + }; + + type MarkdownRemarkGroupConnection_groupArgs = { + field: MarkdownRemarkFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type MarkdownRemarkGroupConnection_maxArgs = { + field: MarkdownRemarkFieldSelector; + }; + + type MarkdownRemarkGroupConnection_minArgs = { + field: MarkdownRemarkFieldSelector; + }; + + type MarkdownRemarkGroupConnection_sumArgs = { + field: MarkdownRemarkFieldSelector; + }; + + type MarkdownRemarkSortInput = { + readonly children: InputMaybe; + readonly excerpt: InputMaybe; + readonly excerptAst: InputMaybe; + readonly frontmatter: InputMaybe; + readonly headings: InputMaybe; + readonly html: InputMaybe; + readonly htmlAst: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + readonly rawMarkdownBody: InputMaybe; + readonly tableOfContents: InputMaybe; + readonly timeToRead: InputMaybe; + readonly wordCount: InputMaybe; + }; + + type MarkdownWordCount = { + readonly paragraphs: Maybe; + readonly sentences: Maybe; + readonly words: Maybe; + }; + + type MarkdownWordCountFieldSelector = { + readonly paragraphs: InputMaybe; + readonly sentences: InputMaybe; + readonly words: InputMaybe; + }; + + type MarkdownWordCountFilterInput = { + readonly paragraphs: InputMaybe; + readonly sentences: InputMaybe; + readonly words: InputMaybe; + }; + + type MarkdownWordCountSortInput = { + readonly paragraphs: InputMaybe; + readonly sentences: InputMaybe; + readonly words: InputMaybe; + }; + + /** Node Interface */ + type Node = { + readonly children: ReadonlyArray; + readonly id: Scalars['ID']; + readonly internal: Internal; + readonly parent: Maybe; + }; + + type NodeFieldSelector = { + readonly children: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + }; + + type NodeFilterInput = { + readonly children: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + }; + + type NodeFilterListInput = { + readonly elemMatch: InputMaybe; + }; + + type NodeSortInput = { + readonly children: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + }; + + type PNGOptions = { + readonly compressionSpeed: InputMaybe; + readonly quality: InputMaybe; + }; + + type PageInfo = { + readonly currentPage: Scalars['Int']; + readonly hasNextPage: Scalars['Boolean']; + readonly hasPreviousPage: Scalars['Boolean']; + readonly itemCount: Scalars['Int']; + readonly pageCount: Scalars['Int']; + readonly perPage: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type Potrace = { + readonly alphaMax: InputMaybe; + readonly background: InputMaybe; + readonly blackOnWhite: InputMaybe; + readonly color: InputMaybe; + readonly optCurve: InputMaybe; + readonly optTolerance: InputMaybe; + readonly threshold: InputMaybe; + readonly turdSize: InputMaybe; + readonly turnPolicy: InputMaybe; + }; + + type PotraceTurnPolicy = + | 'black' + | 'left' + | 'majority' + | 'minority' + | 'right' + | 'white'; + + type Query = { + readonly allDirectory: DirectoryConnection; + readonly allFile: FileConnection; + readonly allImageSharp: ImageSharpConnection; + readonly allMarkdownRemark: MarkdownRemarkConnection; + readonly allSite: SiteConnection; + readonly allSiteBuildMetadata: SiteBuildMetadataConnection; + readonly allSiteFunction: SiteFunctionConnection; + readonly allSitePage: SitePageConnection; + readonly allSitePlugin: SitePluginConnection; + readonly allStrapiAward: STRAPI_AWARDConnection; + readonly allStrapiCommunityEntry: STRAPI_COMMUNITY_ENTRYConnection; + readonly allStrapiCommunityEntryDescriptionTextnode: STRAPI_COMMUNITY_ENTRY_DESCRIPTION_TEXTNODEConnection; + readonly allStrapiComponentAwardAward: STRAPI__COMPONENT_AWARD_AWARDConnection; + readonly allStrapiComponentAwardAwardDescriptionTextnode: STRAPI__COMPONENT_AWARD_AWARD_DESCRIPTION_TEXTNODEConnection; + readonly allStrapiComponentImageCopyrightImage: STRAPI__COMPONENT_IMAGE_COPYRIGHT_IMAGEConnection; + readonly allStrapiComponentLinksLinks: STRAPI__COMPONENT_LINKS_LINKSConnection; + readonly allStrapiExample: STRAPI_EXAMPLEConnection; + readonly allStrapiExampleAuthoritiesTextnode: STRAPI_EXAMPLE_AUTHORITIES_TEXTNODEConnection; + readonly allStrapiExampleChallengesTextnode: STRAPI_EXAMPLE_CHALLENGES_TEXTNODEConnection; + readonly allStrapiExampleCommunicationTextnode: STRAPI_EXAMPLE_COMMUNICATION_TEXTNODEConnection; + readonly allStrapiExampleDescriptionTextnode: STRAPI_EXAMPLE_DESCRIPTION_TEXTNODEConnection; + readonly allStrapiExampleFundingTextnode: STRAPI_EXAMPLE_FUNDING_TEXTNODEConnection; + readonly allStrapiExampleGoalsTextnode: STRAPI_EXAMPLE_GOALS_TEXTNODEConnection; + readonly allStrapiExampleLocalchallengesTextnode: STRAPI_EXAMPLE_LOCALCHALLENGES_TEXTNODEConnection; + readonly allStrapiExampleNotesTextnode: STRAPI_EXAMPLE_NOTES_TEXTNODEConnection; + readonly allStrapiExampleParticularitiesTextnode: STRAPI_EXAMPLE_PARTICULARITIES_TEXTNODEConnection; + readonly allStrapiExamplePersonnelexpensesTextnode: STRAPI_EXAMPLE_PERSONNELEXPENSES_TEXTNODEConnection; + readonly allStrapiExampleRelatedofficeTextnode: STRAPI_EXAMPLE_RELATEDOFFICE_TEXTNODEConnection; + readonly allStrapiExampleResultsTextnode: STRAPI_EXAMPLE_RESULTS_TEXTNODEConnection; + readonly allStrapiExampleSourcesTextnode: STRAPI_EXAMPLE_SOURCES_TEXTNODEConnection; + readonly allStrapiExampleStakeholdersTextnode: STRAPI_EXAMPLE_STAKEHOLDERS_TEXTNODEConnection; + readonly allStrapiMeasure: STRAPI_MEASUREConnection; + readonly allStrapiMeasureDescriptionTextnode: STRAPI_MEASURE_DESCRIPTION_TEXTNODEConnection; + readonly allStrapiMedia: STRAPI__MEDIAConnection; + readonly allStrapiTopic: STRAPI_TOPICConnection; + readonly allStrapiTopicDescriptionTextnode: STRAPI_TOPIC_DESCRIPTION_TEXTNODEConnection; + readonly directory: Maybe; + readonly file: Maybe; + readonly imageSharp: Maybe; + readonly markdownRemark: Maybe; + readonly site: Maybe; + readonly siteBuildMetadata: Maybe; + readonly siteFunction: Maybe; + readonly sitePage: Maybe; + readonly sitePlugin: Maybe; + readonly strapiAward: Maybe; + readonly strapiCommunityEntry: Maybe; + readonly strapiCommunityEntryDescriptionTextnode: Maybe; + readonly strapiComponentAwardAward: Maybe; + readonly strapiComponentAwardAwardDescriptionTextnode: Maybe; + readonly strapiComponentImageCopyrightImage: Maybe; + readonly strapiComponentLinksLinks: Maybe; + readonly strapiExample: Maybe; + readonly strapiExampleAuthoritiesTextnode: Maybe; + readonly strapiExampleChallengesTextnode: Maybe; + readonly strapiExampleCommunicationTextnode: Maybe; + readonly strapiExampleDescriptionTextnode: Maybe; + readonly strapiExampleFundingTextnode: Maybe; + readonly strapiExampleGoalsTextnode: Maybe; + readonly strapiExampleLocalchallengesTextnode: Maybe; + readonly strapiExampleNotesTextnode: Maybe; + readonly strapiExampleParticularitiesTextnode: Maybe; + readonly strapiExamplePersonnelexpensesTextnode: Maybe; + readonly strapiExampleRelatedofficeTextnode: Maybe; + readonly strapiExampleResultsTextnode: Maybe; + readonly strapiExampleSourcesTextnode: Maybe; + readonly strapiExampleStakeholdersTextnode: Maybe; + readonly strapiMeasure: Maybe; + readonly strapiMeasureDescriptionTextnode: Maybe; + readonly strapiMedia: Maybe; + readonly strapiTopic: Maybe; + readonly strapiTopicDescriptionTextnode: Maybe; + }; + + type Query_allDirectoryArgs = { + filter: InputMaybe; + limit: InputMaybe; + skip: InputMaybe; + sort: InputMaybe>>; + }; + + type Query_allFileArgs = { + filter: InputMaybe; + limit: InputMaybe; + skip: InputMaybe; + sort: InputMaybe>>; + }; + + type Query_allImageSharpArgs = { + filter: InputMaybe; + limit: InputMaybe; + skip: InputMaybe; + sort: InputMaybe>>; + }; + + type Query_allMarkdownRemarkArgs = { + filter: InputMaybe; + limit: InputMaybe; + skip: InputMaybe; + sort: InputMaybe>>; + }; + + type Query_allSiteArgs = { + filter: InputMaybe; + limit: InputMaybe; + skip: InputMaybe; + sort: InputMaybe>>; + }; + + type Query_allSiteBuildMetadataArgs = { + filter: InputMaybe; + limit: InputMaybe; + skip: InputMaybe; + sort: InputMaybe>>; + }; + + type Query_allSiteFunctionArgs = { + filter: InputMaybe; + limit: InputMaybe; + skip: InputMaybe; + sort: InputMaybe>>; + }; + + type Query_allSitePageArgs = { + filter: InputMaybe; + limit: InputMaybe; + skip: InputMaybe; + sort: InputMaybe>>; + }; + + type Query_allSitePluginArgs = { + filter: InputMaybe; + limit: InputMaybe; + skip: InputMaybe; + sort: InputMaybe>>; + }; + + type Query_allStrapiAwardArgs = { + filter: InputMaybe; + limit: InputMaybe; + skip: InputMaybe; + sort: InputMaybe>>; + }; + + type Query_allStrapiCommunityEntryArgs = { + filter: InputMaybe; + limit: InputMaybe; + skip: InputMaybe; + sort: InputMaybe< + ReadonlyArray> + >; + }; + + type Query_allStrapiCommunityEntryDescriptionTextnodeArgs = { + filter: InputMaybe; + limit: InputMaybe; + skip: InputMaybe; + sort: InputMaybe< + ReadonlyArray< + InputMaybe + > + >; + }; + + type Query_allStrapiComponentAwardAwardArgs = { + filter: InputMaybe; + limit: InputMaybe; + skip: InputMaybe; + sort: InputMaybe< + ReadonlyArray> + >; + }; + + type Query_allStrapiComponentAwardAwardDescriptionTextnodeArgs = { + filter: InputMaybe; + limit: InputMaybe; + skip: InputMaybe; + sort: InputMaybe< + ReadonlyArray< + InputMaybe + > + >; + }; + + type Query_allStrapiComponentImageCopyrightImageArgs = { + filter: InputMaybe; + limit: InputMaybe; + skip: InputMaybe; + sort: InputMaybe< + ReadonlyArray< + InputMaybe + > + >; + }; + + type Query_allStrapiComponentLinksLinksArgs = { + filter: InputMaybe; + limit: InputMaybe; + skip: InputMaybe; + sort: InputMaybe< + ReadonlyArray> + >; + }; + + type Query_allStrapiExampleArgs = { + filter: InputMaybe; + limit: InputMaybe; + skip: InputMaybe; + sort: InputMaybe>>; + }; + + type Query_allStrapiExampleAuthoritiesTextnodeArgs = { + filter: InputMaybe; + limit: InputMaybe; + skip: InputMaybe; + sort: InputMaybe< + ReadonlyArray> + >; + }; + + type Query_allStrapiExampleChallengesTextnodeArgs = { + filter: InputMaybe; + limit: InputMaybe; + skip: InputMaybe; + sort: InputMaybe< + ReadonlyArray> + >; + }; + + type Query_allStrapiExampleCommunicationTextnodeArgs = { + filter: InputMaybe; + limit: InputMaybe; + skip: InputMaybe; + sort: InputMaybe< + ReadonlyArray> + >; + }; + + type Query_allStrapiExampleDescriptionTextnodeArgs = { + filter: InputMaybe; + limit: InputMaybe; + skip: InputMaybe; + sort: InputMaybe< + ReadonlyArray> + >; + }; + + type Query_allStrapiExampleFundingTextnodeArgs = { + filter: InputMaybe; + limit: InputMaybe; + skip: InputMaybe; + sort: InputMaybe< + ReadonlyArray> + >; + }; + + type Query_allStrapiExampleGoalsTextnodeArgs = { + filter: InputMaybe; + limit: InputMaybe; + skip: InputMaybe; + sort: InputMaybe< + ReadonlyArray> + >; + }; + + type Query_allStrapiExampleLocalchallengesTextnodeArgs = { + filter: InputMaybe; + limit: InputMaybe; + skip: InputMaybe; + sort: InputMaybe< + ReadonlyArray< + InputMaybe + > + >; + }; + + type Query_allStrapiExampleNotesTextnodeArgs = { + filter: InputMaybe; + limit: InputMaybe; + skip: InputMaybe; + sort: InputMaybe< + ReadonlyArray> + >; + }; + + type Query_allStrapiExampleParticularitiesTextnodeArgs = { + filter: InputMaybe; + limit: InputMaybe; + skip: InputMaybe; + sort: InputMaybe< + ReadonlyArray< + InputMaybe + > + >; + }; + + type Query_allStrapiExamplePersonnelexpensesTextnodeArgs = { + filter: InputMaybe; + limit: InputMaybe; + skip: InputMaybe; + sort: InputMaybe< + ReadonlyArray< + InputMaybe + > + >; + }; + + type Query_allStrapiExampleRelatedofficeTextnodeArgs = { + filter: InputMaybe; + limit: InputMaybe; + skip: InputMaybe; + sort: InputMaybe< + ReadonlyArray> + >; + }; + + type Query_allStrapiExampleResultsTextnodeArgs = { + filter: InputMaybe; + limit: InputMaybe; + skip: InputMaybe; + sort: InputMaybe< + ReadonlyArray> + >; + }; + + type Query_allStrapiExampleSourcesTextnodeArgs = { + filter: InputMaybe; + limit: InputMaybe; + skip: InputMaybe; + sort: InputMaybe< + ReadonlyArray> + >; + }; + + type Query_allStrapiExampleStakeholdersTextnodeArgs = { + filter: InputMaybe; + limit: InputMaybe; + skip: InputMaybe; + sort: InputMaybe< + ReadonlyArray> + >; + }; + + type Query_allStrapiMeasureArgs = { + filter: InputMaybe; + limit: InputMaybe; + skip: InputMaybe; + sort: InputMaybe>>; + }; + + type Query_allStrapiMeasureDescriptionTextnodeArgs = { + filter: InputMaybe; + limit: InputMaybe; + skip: InputMaybe; + sort: InputMaybe< + ReadonlyArray> + >; + }; + + type Query_allStrapiMediaArgs = { + filter: InputMaybe; + limit: InputMaybe; + skip: InputMaybe; + sort: InputMaybe>>; + }; + + type Query_allStrapiTopicArgs = { + filter: InputMaybe; + limit: InputMaybe; + skip: InputMaybe; + sort: InputMaybe>>; + }; + + type Query_allStrapiTopicDescriptionTextnodeArgs = { + filter: InputMaybe; + limit: InputMaybe; + skip: InputMaybe; + sort: InputMaybe< + ReadonlyArray> + >; + }; + + type Query_directoryArgs = { + absolutePath: InputMaybe; + accessTime: InputMaybe; + atime: InputMaybe; + atimeMs: InputMaybe; + base: InputMaybe; + birthTime: InputMaybe; + birthtime: InputMaybe; + birthtimeMs: InputMaybe; + changeTime: InputMaybe; + children: InputMaybe; + ctime: InputMaybe; + ctimeMs: InputMaybe; + dev: InputMaybe; + dir: InputMaybe; + ext: InputMaybe; + extension: InputMaybe; + gid: InputMaybe; + id: InputMaybe; + ino: InputMaybe; + internal: InputMaybe; + mode: InputMaybe; + modifiedTime: InputMaybe; + mtime: InputMaybe; + mtimeMs: InputMaybe; + name: InputMaybe; + nlink: InputMaybe; + parent: InputMaybe; + prettySize: InputMaybe; + rdev: InputMaybe; + relativeDirectory: InputMaybe; + relativePath: InputMaybe; + root: InputMaybe; + size: InputMaybe; + sourceInstanceName: InputMaybe; + uid: InputMaybe; + }; + + type Query_fileArgs = { + absolutePath: InputMaybe; + accessTime: InputMaybe; + atime: InputMaybe; + atimeMs: InputMaybe; + base: InputMaybe; + birthTime: InputMaybe; + birthtime: InputMaybe; + birthtimeMs: InputMaybe; + blksize: InputMaybe; + blocks: InputMaybe; + changeTime: InputMaybe; + childImageSharp: InputMaybe; + children: InputMaybe; + childrenImageSharp: InputMaybe; + ctime: InputMaybe; + ctimeMs: InputMaybe; + dev: InputMaybe; + dir: InputMaybe; + ext: InputMaybe; + extension: InputMaybe; + gid: InputMaybe; + id: InputMaybe; + ino: InputMaybe; + internal: InputMaybe; + mode: InputMaybe; + modifiedTime: InputMaybe; + mtime: InputMaybe; + mtimeMs: InputMaybe; + name: InputMaybe; + nlink: InputMaybe; + parent: InputMaybe; + prettySize: InputMaybe; + rdev: InputMaybe; + relativeDirectory: InputMaybe; + relativePath: InputMaybe; + root: InputMaybe; + size: InputMaybe; + sourceInstanceName: InputMaybe; + uid: InputMaybe; + url: InputMaybe; + }; + + type Query_imageSharpArgs = { + children: InputMaybe; + fixed: InputMaybe; + fluid: InputMaybe; + gatsbyImageData: InputMaybe; + id: InputMaybe; + internal: InputMaybe; + original: InputMaybe; + parent: InputMaybe; + resize: InputMaybe; + }; + + type Query_markdownRemarkArgs = { + children: InputMaybe; + excerpt: InputMaybe; + excerptAst: InputMaybe; + frontmatter: InputMaybe; + headings: InputMaybe; + html: InputMaybe; + htmlAst: InputMaybe; + id: InputMaybe; + internal: InputMaybe; + parent: InputMaybe; + rawMarkdownBody: InputMaybe; + tableOfContents: InputMaybe; + timeToRead: InputMaybe; + wordCount: InputMaybe; + }; + + type Query_siteArgs = { + buildTime: InputMaybe; + children: InputMaybe; + graphqlTypegen: InputMaybe; + host: InputMaybe; + id: InputMaybe; + internal: InputMaybe; + jsxRuntime: InputMaybe; + parent: InputMaybe; + pathPrefix: InputMaybe; + polyfill: InputMaybe; + port: InputMaybe; + siteMetadata: InputMaybe; + trailingSlash: InputMaybe; + }; + + type Query_siteBuildMetadataArgs = { + buildTime: InputMaybe; + children: InputMaybe; + id: InputMaybe; + internal: InputMaybe; + parent: InputMaybe; + }; + + type Query_siteFunctionArgs = { + absoluteCompiledFilePath: InputMaybe; + children: InputMaybe; + functionRoute: InputMaybe; + id: InputMaybe; + internal: InputMaybe; + matchPath: InputMaybe; + originalAbsoluteFilePath: InputMaybe; + originalRelativeFilePath: InputMaybe; + parent: InputMaybe; + pluginName: InputMaybe; + relativeCompiledFilePath: InputMaybe; + }; + + type Query_sitePageArgs = { + children: InputMaybe; + component: InputMaybe; + componentChunkName: InputMaybe; + id: InputMaybe; + internal: InputMaybe; + internalComponentName: InputMaybe; + matchPath: InputMaybe; + pageContext: InputMaybe; + parent: InputMaybe; + path: InputMaybe; + pluginCreator: InputMaybe; + }; + + type Query_sitePluginArgs = { + browserAPIs: InputMaybe; + children: InputMaybe; + id: InputMaybe; + internal: InputMaybe; + name: InputMaybe; + nodeAPIs: InputMaybe; + packageJson: InputMaybe; + parent: InputMaybe; + pluginFilepath: InputMaybe; + pluginOptions: InputMaybe; + resolve: InputMaybe; + ssrAPIs: InputMaybe; + version: InputMaybe; + }; + + type Query_strapiAwardArgs = { + children: InputMaybe; + createdAt: InputMaybe; + id: InputMaybe; + internal: InputMaybe; + logo: InputMaybe; + name: InputMaybe; + parent: InputMaybe; + publishedAt: InputMaybe; + strapi_id: InputMaybe; + updatedAt: InputMaybe; + }; + + type Query_strapiCommunityEntryArgs = { + author: InputMaybe; + children: InputMaybe; + commune: InputMaybe; + contact: InputMaybe; + countryState: InputMaybe; + createdAt: InputMaybe; + description: InputMaybe; + id: InputMaybe; + image: InputMaybe; + internal: InputMaybe; + parent: InputMaybe; + publishedAt: InputMaybe; + strapi_id: InputMaybe; + subcategory: InputMaybe; + title: InputMaybe; + updatedAt: InputMaybe; + website: InputMaybe; + }; + + type Query_strapiCommunityEntryDescriptionTextnodeArgs = { + childMarkdownRemark: InputMaybe; + children: InputMaybe; + childrenMarkdownRemark: InputMaybe; + description: InputMaybe; + id: InputMaybe; + internal: InputMaybe; + parent: InputMaybe; + }; + + type Query_strapiComponentAwardAwardArgs = { + award: InputMaybe; + children: InputMaybe; + description: InputMaybe; + id: InputMaybe; + internal: InputMaybe; + parent: InputMaybe; + strapi_id: InputMaybe; + }; + + type Query_strapiComponentAwardAwardDescriptionTextnodeArgs = { + childMarkdownRemark: InputMaybe; + children: InputMaybe; + childrenMarkdownRemark: InputMaybe; + description: InputMaybe; + id: InputMaybe; + internal: InputMaybe; + parent: InputMaybe; + }; + + type Query_strapiComponentImageCopyrightImageArgs = { + children: InputMaybe; + copyright: InputMaybe; + id: InputMaybe; + image: InputMaybe; + internal: InputMaybe; + parent: InputMaybe; + strapi_id: InputMaybe; + }; + + type Query_strapiComponentLinksLinksArgs = { + children: InputMaybe; + display: InputMaybe; + id: InputMaybe; + internal: InputMaybe; + parent: InputMaybe; + strapi_id: InputMaybe; + url: InputMaybe; + }; + + type Query_strapiExampleArgs = { + authorities: InputMaybe; + awards: InputMaybe; + beginnerFriendly: InputMaybe; + centrality: InputMaybe; + challenges: InputMaybe; + children: InputMaybe; + commune: InputMaybe; + communication: InputMaybe; + costs: InputMaybe; + countryState: InputMaybe; + createdAt: InputMaybe; + description: InputMaybe; + financiallyWeak: InputMaybe; + funding: InputMaybe; + gatsbyPath: InputMaybe; + goals: InputMaybe; + id: InputMaybe; + image: InputMaybe; + internal: InputMaybe; + links: InputMaybe; + localChallenges: InputMaybe; + measure: InputMaybe; + notes: InputMaybe; + parent: InputMaybe; + particularities: InputMaybe; + period: InputMaybe; + personnelExpenses: InputMaybe; + population: InputMaybe; + position: InputMaybe; + publishedAt: InputMaybe; + relatedOffice: InputMaybe; + relatedTopic: InputMaybe; + results: InputMaybe; + shortDescription: InputMaybe; + slug: InputMaybe; + sources: InputMaybe; + spatialStructure: InputMaybe; + stakeholders: InputMaybe; + strapi_id: InputMaybe; + subcategory: InputMaybe; + title: InputMaybe; + updatedAt: InputMaybe; + }; + + type Query_strapiExampleAuthoritiesTextnodeArgs = { + authorities: InputMaybe; + childMarkdownRemark: InputMaybe; + children: InputMaybe; + childrenMarkdownRemark: InputMaybe; + id: InputMaybe; + internal: InputMaybe; + parent: InputMaybe; + }; + + type Query_strapiExampleChallengesTextnodeArgs = { + challenges: InputMaybe; + childMarkdownRemark: InputMaybe; + children: InputMaybe; + childrenMarkdownRemark: InputMaybe; + id: InputMaybe; + internal: InputMaybe; + parent: InputMaybe; + }; + + type Query_strapiExampleCommunicationTextnodeArgs = { + childMarkdownRemark: InputMaybe; + children: InputMaybe; + childrenMarkdownRemark: InputMaybe; + communication: InputMaybe; + id: InputMaybe; + internal: InputMaybe; + parent: InputMaybe; + }; + + type Query_strapiExampleDescriptionTextnodeArgs = { + childMarkdownRemark: InputMaybe; + children: InputMaybe; + childrenMarkdownRemark: InputMaybe; + description: InputMaybe; + id: InputMaybe; + internal: InputMaybe; + parent: InputMaybe; + }; + + type Query_strapiExampleFundingTextnodeArgs = { + childMarkdownRemark: InputMaybe; + children: InputMaybe; + childrenMarkdownRemark: InputMaybe; + funding: InputMaybe; + id: InputMaybe; + internal: InputMaybe; + parent: InputMaybe; + }; + + type Query_strapiExampleGoalsTextnodeArgs = { + childMarkdownRemark: InputMaybe; + children: InputMaybe; + childrenMarkdownRemark: InputMaybe; + goals: InputMaybe; + id: InputMaybe; + internal: InputMaybe; + parent: InputMaybe; + }; + + type Query_strapiExampleLocalchallengesTextnodeArgs = { + childMarkdownRemark: InputMaybe; + children: InputMaybe; + childrenMarkdownRemark: InputMaybe; + id: InputMaybe; + internal: InputMaybe; + localChallenges: InputMaybe; + parent: InputMaybe; + }; + + type Query_strapiExampleNotesTextnodeArgs = { + childMarkdownRemark: InputMaybe; + children: InputMaybe; + childrenMarkdownRemark: InputMaybe; + id: InputMaybe; + internal: InputMaybe; + notes: InputMaybe; + parent: InputMaybe; + }; + + type Query_strapiExampleParticularitiesTextnodeArgs = { + childMarkdownRemark: InputMaybe; + children: InputMaybe; + childrenMarkdownRemark: InputMaybe; + id: InputMaybe; + internal: InputMaybe; + parent: InputMaybe; + particularities: InputMaybe; + }; + + type Query_strapiExamplePersonnelexpensesTextnodeArgs = { + childMarkdownRemark: InputMaybe; + children: InputMaybe; + childrenMarkdownRemark: InputMaybe; + id: InputMaybe; + internal: InputMaybe; + parent: InputMaybe; + personnelExpenses: InputMaybe; + }; + + type Query_strapiExampleRelatedofficeTextnodeArgs = { + childMarkdownRemark: InputMaybe; + children: InputMaybe; + childrenMarkdownRemark: InputMaybe; + id: InputMaybe; + internal: InputMaybe; + parent: InputMaybe; + relatedOffice: InputMaybe; + }; + + type Query_strapiExampleResultsTextnodeArgs = { + childMarkdownRemark: InputMaybe; + children: InputMaybe; + childrenMarkdownRemark: InputMaybe; + id: InputMaybe; + internal: InputMaybe; + parent: InputMaybe; + results: InputMaybe; + }; + + type Query_strapiExampleSourcesTextnodeArgs = { + childMarkdownRemark: InputMaybe; + children: InputMaybe; + childrenMarkdownRemark: InputMaybe; + id: InputMaybe; + internal: InputMaybe; + parent: InputMaybe; + sources: InputMaybe; + }; + + type Query_strapiExampleStakeholdersTextnodeArgs = { + childMarkdownRemark: InputMaybe; + children: InputMaybe; + childrenMarkdownRemark: InputMaybe; + id: InputMaybe; + internal: InputMaybe; + parent: InputMaybe; + stakeholders: InputMaybe; + }; + + type Query_strapiMeasureArgs = { + additionalResources: InputMaybe; + children: InputMaybe; + communityEntries: InputMaybe; + createdAt: InputMaybe; + description: InputMaybe; + examples: InputMaybe; + fundings: InputMaybe; + gatsbyPath: InputMaybe; + guidelines: InputMaybe; + id: InputMaybe; + internal: InputMaybe; + name: InputMaybe; + parent: InputMaybe; + position: InputMaybe; + publishedAt: InputMaybe; + shortDescription: InputMaybe; + slug: InputMaybe; + strapi_id: InputMaybe; + topic: InputMaybe; + updatedAt: InputMaybe; + }; + + type Query_strapiMeasureDescriptionTextnodeArgs = { + childMarkdownRemark: InputMaybe; + children: InputMaybe; + childrenMarkdownRemark: InputMaybe; + description: InputMaybe; + id: InputMaybe; + internal: InputMaybe; + parent: InputMaybe; + }; + + type Query_strapiMediaArgs = { + children: InputMaybe; + createdAt: InputMaybe; + ext: InputMaybe; + formats: InputMaybe; + hash: InputMaybe; + height: InputMaybe; + id: InputMaybe; + internal: InputMaybe; + localFile: InputMaybe; + mime: InputMaybe; + name: InputMaybe; + parent: InputMaybe; + size: InputMaybe; + strapi_id: InputMaybe; + updatedAt: InputMaybe; + url: InputMaybe; + width: InputMaybe; + }; + + type Query_strapiTopicArgs = { + additionalResources: InputMaybe; + children: InputMaybe; + createdAt: InputMaybe; + description: InputMaybe; + fundings: InputMaybe; + gatsbyPath: InputMaybe; + guidelines: InputMaybe; + id: InputMaybe; + image: InputMaybe; + internal: InputMaybe; + measures: InputMaybe; + name: InputMaybe; + parent: InputMaybe; + position: InputMaybe; + publishedAt: InputMaybe; + shortDescription: InputMaybe; + slug: InputMaybe; + strapi_id: InputMaybe; + updatedAt: InputMaybe; + }; + + type Query_strapiTopicDescriptionTextnodeArgs = { + childMarkdownRemark: InputMaybe; + children: InputMaybe; + childrenMarkdownRemark: InputMaybe; + description: InputMaybe; + id: InputMaybe; + internal: InputMaybe; + parent: InputMaybe; + }; + + type STRAPI_AWARD = Node & { + readonly children: ReadonlyArray; + readonly createdAt: Maybe; + readonly id: Scalars['ID']; + readonly internal: Internal; + readonly logo: Maybe; + readonly name: Maybe; + readonly parent: Maybe; + readonly publishedAt: Maybe; + readonly strapi_id: Maybe; + readonly updatedAt: Maybe; + }; + + type STRAPI_AWARD_createdAtArgs = { + difference: InputMaybe; + formatString: InputMaybe; + fromNow: InputMaybe; + locale: InputMaybe; + }; + + type STRAPI_AWARD_publishedAtArgs = { + difference: InputMaybe; + formatString: InputMaybe; + fromNow: InputMaybe; + locale: InputMaybe; + }; + + type STRAPI_AWARD_updatedAtArgs = { + difference: InputMaybe; + formatString: InputMaybe; + fromNow: InputMaybe; + locale: InputMaybe; + }; + + type STRAPI_AWARDConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type STRAPI_AWARDConnection_distinctArgs = { + field: STRAPI_AWARDFieldSelector; + }; + + type STRAPI_AWARDConnection_groupArgs = { + field: STRAPI_AWARDFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type STRAPI_AWARDConnection_maxArgs = { + field: STRAPI_AWARDFieldSelector; + }; + + type STRAPI_AWARDConnection_minArgs = { + field: STRAPI_AWARDFieldSelector; + }; + + type STRAPI_AWARDConnection_sumArgs = { + field: STRAPI_AWARDFieldSelector; + }; + + type STRAPI_AWARDEdge = { + readonly next: Maybe; + readonly node: STRAPI_AWARD; + readonly previous: Maybe; + }; + + type STRAPI_AWARDFieldSelector = { + readonly children: InputMaybe; + readonly createdAt: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly logo: InputMaybe; + readonly name: InputMaybe; + readonly parent: InputMaybe; + readonly publishedAt: InputMaybe; + readonly strapi_id: InputMaybe; + readonly updatedAt: InputMaybe; + }; + + type STRAPI_AWARDFilterInput = { + readonly children: InputMaybe; + readonly createdAt: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly logo: InputMaybe; + readonly name: InputMaybe; + readonly parent: InputMaybe; + readonly publishedAt: InputMaybe; + readonly strapi_id: InputMaybe; + readonly updatedAt: InputMaybe; + }; + + type STRAPI_AWARDGroupConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly field: Scalars['String']; + readonly fieldValue: Maybe; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type STRAPI_AWARDGroupConnection_distinctArgs = { + field: STRAPI_AWARDFieldSelector; + }; + + type STRAPI_AWARDGroupConnection_groupArgs = { + field: STRAPI_AWARDFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type STRAPI_AWARDGroupConnection_maxArgs = { + field: STRAPI_AWARDFieldSelector; + }; + + type STRAPI_AWARDGroupConnection_minArgs = { + field: STRAPI_AWARDFieldSelector; + }; + + type STRAPI_AWARDGroupConnection_sumArgs = { + field: STRAPI_AWARDFieldSelector; + }; + + type STRAPI_AWARDSortInput = { + readonly children: InputMaybe; + readonly createdAt: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly logo: InputMaybe; + readonly name: InputMaybe; + readonly parent: InputMaybe; + readonly publishedAt: InputMaybe; + readonly strapi_id: InputMaybe; + readonly updatedAt: InputMaybe; + }; + + type STRAPI_COMMUNITY_ENTRY = Node & { + readonly author: Maybe; + readonly children: ReadonlyArray; + readonly commune: Maybe; + readonly contact: Maybe; + readonly countryState: Maybe; + readonly createdAt: Maybe; + readonly description: Maybe; + readonly id: Scalars['ID']; + readonly image: Maybe; + readonly internal: Internal; + readonly parent: Maybe; + readonly publishedAt: Maybe; + readonly strapi_id: Maybe; + readonly subcategory: Maybe; + readonly title: Maybe; + readonly updatedAt: Maybe; + readonly website: Maybe; + }; + + type STRAPI_COMMUNITY_ENTRY_createdAtArgs = { + difference: InputMaybe; + formatString: InputMaybe; + fromNow: InputMaybe; + locale: InputMaybe; + }; + + type STRAPI_COMMUNITY_ENTRY_publishedAtArgs = { + difference: InputMaybe; + formatString: InputMaybe; + fromNow: InputMaybe; + locale: InputMaybe; + }; + + type STRAPI_COMMUNITY_ENTRY_updatedAtArgs = { + difference: InputMaybe; + formatString: InputMaybe; + fromNow: InputMaybe; + locale: InputMaybe; + }; + + type STRAPI_COMMUNITY_ENTRYConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type STRAPI_COMMUNITY_ENTRYConnection_distinctArgs = { + field: STRAPI_COMMUNITY_ENTRYFieldSelector; + }; + + type STRAPI_COMMUNITY_ENTRYConnection_groupArgs = { + field: STRAPI_COMMUNITY_ENTRYFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type STRAPI_COMMUNITY_ENTRYConnection_maxArgs = { + field: STRAPI_COMMUNITY_ENTRYFieldSelector; + }; + + type STRAPI_COMMUNITY_ENTRYConnection_minArgs = { + field: STRAPI_COMMUNITY_ENTRYFieldSelector; + }; + + type STRAPI_COMMUNITY_ENTRYConnection_sumArgs = { + field: STRAPI_COMMUNITY_ENTRYFieldSelector; + }; + + type STRAPI_COMMUNITY_ENTRYDescription = { + readonly data: Maybe; + }; + + type STRAPI_COMMUNITY_ENTRYDescriptionFieldSelector = { + readonly data: InputMaybe; + }; + + type STRAPI_COMMUNITY_ENTRYDescriptionFilterInput = { + readonly data: InputMaybe; + }; + + type STRAPI_COMMUNITY_ENTRYDescriptionSortInput = { + readonly data: InputMaybe; + }; + + type STRAPI_COMMUNITY_ENTRYEdge = { + readonly next: Maybe; + readonly node: STRAPI_COMMUNITY_ENTRY; + readonly previous: Maybe; + }; + + type STRAPI_COMMUNITY_ENTRYFieldSelector = { + readonly author: InputMaybe; + readonly children: InputMaybe; + readonly commune: InputMaybe; + readonly contact: InputMaybe; + readonly countryState: InputMaybe; + readonly createdAt: InputMaybe; + readonly description: InputMaybe; + readonly id: InputMaybe; + readonly image: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + readonly publishedAt: InputMaybe; + readonly strapi_id: InputMaybe; + readonly subcategory: InputMaybe; + readonly title: InputMaybe; + readonly updatedAt: InputMaybe; + readonly website: InputMaybe; + }; + + type STRAPI_COMMUNITY_ENTRYFilterInput = { + readonly author: InputMaybe; + readonly children: InputMaybe; + readonly commune: InputMaybe; + readonly contact: InputMaybe; + readonly countryState: InputMaybe; + readonly createdAt: InputMaybe; + readonly description: InputMaybe; + readonly id: InputMaybe; + readonly image: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + readonly publishedAt: InputMaybe; + readonly strapi_id: InputMaybe; + readonly subcategory: InputMaybe; + readonly title: InputMaybe; + readonly updatedAt: InputMaybe; + readonly website: InputMaybe; + }; + + type STRAPI_COMMUNITY_ENTRYFilterListInput = { + readonly elemMatch: InputMaybe; + }; + + type STRAPI_COMMUNITY_ENTRYGroupConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly field: Scalars['String']; + readonly fieldValue: Maybe; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type STRAPI_COMMUNITY_ENTRYGroupConnection_distinctArgs = { + field: STRAPI_COMMUNITY_ENTRYFieldSelector; + }; + + type STRAPI_COMMUNITY_ENTRYGroupConnection_groupArgs = { + field: STRAPI_COMMUNITY_ENTRYFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type STRAPI_COMMUNITY_ENTRYGroupConnection_maxArgs = { + field: STRAPI_COMMUNITY_ENTRYFieldSelector; + }; + + type STRAPI_COMMUNITY_ENTRYGroupConnection_minArgs = { + field: STRAPI_COMMUNITY_ENTRYFieldSelector; + }; + + type STRAPI_COMMUNITY_ENTRYGroupConnection_sumArgs = { + field: STRAPI_COMMUNITY_ENTRYFieldSelector; + }; + + type STRAPI_COMMUNITY_ENTRYSortInput = { + readonly author: InputMaybe; + readonly children: InputMaybe; + readonly commune: InputMaybe; + readonly contact: InputMaybe; + readonly countryState: InputMaybe; + readonly createdAt: InputMaybe; + readonly description: InputMaybe; + readonly id: InputMaybe; + readonly image: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + readonly publishedAt: InputMaybe; + readonly strapi_id: InputMaybe; + readonly subcategory: InputMaybe; + readonly title: InputMaybe; + readonly updatedAt: InputMaybe; + readonly website: InputMaybe; + }; + + type STRAPI_COMMUNITY_ENTRY_DESCRIPTION_TEXTNODE = Node & { + /** Returns the first child node of type MarkdownRemark or null if there are no children of given type on this node */ + readonly childMarkdownRemark: Maybe; + readonly children: ReadonlyArray; + /** Returns all children nodes filtered by type MarkdownRemark */ + readonly childrenMarkdownRemark: Maybe< + ReadonlyArray> + >; + readonly description: Maybe; + readonly id: Scalars['ID']; + readonly internal: Internal; + readonly parent: Maybe; + }; + + type STRAPI_COMMUNITY_ENTRY_DESCRIPTION_TEXTNODEConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type STRAPI_COMMUNITY_ENTRY_DESCRIPTION_TEXTNODEConnection_distinctArgs = { + field: STRAPI_COMMUNITY_ENTRY_DESCRIPTION_TEXTNODEFieldSelector; + }; + + type STRAPI_COMMUNITY_ENTRY_DESCRIPTION_TEXTNODEConnection_groupArgs = { + field: STRAPI_COMMUNITY_ENTRY_DESCRIPTION_TEXTNODEFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type STRAPI_COMMUNITY_ENTRY_DESCRIPTION_TEXTNODEConnection_maxArgs = { + field: STRAPI_COMMUNITY_ENTRY_DESCRIPTION_TEXTNODEFieldSelector; + }; + + type STRAPI_COMMUNITY_ENTRY_DESCRIPTION_TEXTNODEConnection_minArgs = { + field: STRAPI_COMMUNITY_ENTRY_DESCRIPTION_TEXTNODEFieldSelector; + }; + + type STRAPI_COMMUNITY_ENTRY_DESCRIPTION_TEXTNODEConnection_sumArgs = { + field: STRAPI_COMMUNITY_ENTRY_DESCRIPTION_TEXTNODEFieldSelector; + }; + + type STRAPI_COMMUNITY_ENTRY_DESCRIPTION_TEXTNODEEdge = { + readonly next: Maybe; + readonly node: STRAPI_COMMUNITY_ENTRY_DESCRIPTION_TEXTNODE; + readonly previous: Maybe; + }; + + type STRAPI_COMMUNITY_ENTRY_DESCRIPTION_TEXTNODEFieldSelector = { + readonly childMarkdownRemark: InputMaybe; + readonly children: InputMaybe; + readonly childrenMarkdownRemark: InputMaybe; + readonly description: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + }; + + type STRAPI_COMMUNITY_ENTRY_DESCRIPTION_TEXTNODEFilterInput = { + readonly childMarkdownRemark: InputMaybe; + readonly children: InputMaybe; + readonly childrenMarkdownRemark: InputMaybe; + readonly description: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + }; + + type STRAPI_COMMUNITY_ENTRY_DESCRIPTION_TEXTNODEGroupConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly field: Scalars['String']; + readonly fieldValue: Maybe; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type STRAPI_COMMUNITY_ENTRY_DESCRIPTION_TEXTNODEGroupConnection_distinctArgs = + { + field: STRAPI_COMMUNITY_ENTRY_DESCRIPTION_TEXTNODEFieldSelector; + }; + + type STRAPI_COMMUNITY_ENTRY_DESCRIPTION_TEXTNODEGroupConnection_groupArgs = { + field: STRAPI_COMMUNITY_ENTRY_DESCRIPTION_TEXTNODEFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type STRAPI_COMMUNITY_ENTRY_DESCRIPTION_TEXTNODEGroupConnection_maxArgs = { + field: STRAPI_COMMUNITY_ENTRY_DESCRIPTION_TEXTNODEFieldSelector; + }; + + type STRAPI_COMMUNITY_ENTRY_DESCRIPTION_TEXTNODEGroupConnection_minArgs = { + field: STRAPI_COMMUNITY_ENTRY_DESCRIPTION_TEXTNODEFieldSelector; + }; + + type STRAPI_COMMUNITY_ENTRY_DESCRIPTION_TEXTNODEGroupConnection_sumArgs = { + field: STRAPI_COMMUNITY_ENTRY_DESCRIPTION_TEXTNODEFieldSelector; + }; + + type STRAPI_COMMUNITY_ENTRY_DESCRIPTION_TEXTNODESortInput = { + readonly childMarkdownRemark: InputMaybe; + readonly children: InputMaybe; + readonly childrenMarkdownRemark: InputMaybe; + readonly description: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + }; + + type STRAPI_EXAMPLE = Node & { + readonly authorities: Maybe; + readonly awards: Maybe>>; + readonly beginnerFriendly: Maybe; + readonly centrality: Maybe; + readonly challenges: Maybe; + readonly children: ReadonlyArray; + readonly commune: Maybe; + readonly communication: Maybe; + readonly costs: Maybe; + readonly countryState: Maybe; + readonly createdAt: Maybe; + readonly description: Maybe; + readonly financiallyWeak: Maybe; + readonly funding: Maybe; + readonly gatsbyPath: Maybe; + readonly goals: Maybe; + readonly id: Scalars['ID']; + readonly image: Maybe; + readonly internal: Internal; + readonly links: Maybe>>; + readonly localChallenges: Maybe; + readonly measure: Maybe; + readonly notes: Maybe; + readonly parent: Maybe; + readonly particularities: Maybe; + readonly period: Maybe; + readonly personnelExpenses: Maybe; + readonly population: Maybe; + readonly position: Maybe; + readonly publishedAt: Maybe; + readonly relatedOffice: Maybe; + readonly relatedTopic: Maybe; + readonly results: Maybe; + readonly shortDescription: Maybe; + readonly slug: Maybe; + readonly sources: Maybe; + readonly spatialStructure: Maybe; + readonly stakeholders: Maybe; + readonly strapi_id: Maybe; + readonly subcategory: Maybe; + readonly title: Maybe; + readonly updatedAt: Maybe; + }; + + type STRAPI_EXAMPLE_createdAtArgs = { + difference: InputMaybe; + formatString: InputMaybe; + fromNow: InputMaybe; + locale: InputMaybe; + }; + + type STRAPI_EXAMPLE_gatsbyPathArgs = { + filePath: InputMaybe; + }; + + type STRAPI_EXAMPLE_publishedAtArgs = { + difference: InputMaybe; + formatString: InputMaybe; + fromNow: InputMaybe; + locale: InputMaybe; + }; + + type STRAPI_EXAMPLE_updatedAtArgs = { + difference: InputMaybe; + formatString: InputMaybe; + fromNow: InputMaybe; + locale: InputMaybe; + }; + + type STRAPI_EXAMPLEAuthorities = { + readonly data: Maybe; + }; + + type STRAPI_EXAMPLEAuthoritiesFieldSelector = { + readonly data: InputMaybe; + }; + + type STRAPI_EXAMPLEAuthoritiesFilterInput = { + readonly data: InputMaybe; + }; + + type STRAPI_EXAMPLEAuthoritiesSortInput = { + readonly data: InputMaybe; + }; + + type STRAPI_EXAMPLEChallenges = { + readonly data: Maybe; + }; + + type STRAPI_EXAMPLEChallengesFieldSelector = { + readonly data: InputMaybe; + }; + + type STRAPI_EXAMPLEChallengesFilterInput = { + readonly data: InputMaybe; + }; + + type STRAPI_EXAMPLEChallengesSortInput = { + readonly data: InputMaybe; + }; + + type STRAPI_EXAMPLECommunication = { + readonly data: Maybe; + }; + + type STRAPI_EXAMPLECommunicationFieldSelector = { + readonly data: InputMaybe; + }; + + type STRAPI_EXAMPLECommunicationFilterInput = { + readonly data: InputMaybe; + }; + + type STRAPI_EXAMPLECommunicationSortInput = { + readonly data: InputMaybe; + }; + + type STRAPI_EXAMPLEConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type STRAPI_EXAMPLEConnection_distinctArgs = { + field: STRAPI_EXAMPLEFieldSelector; + }; + + type STRAPI_EXAMPLEConnection_groupArgs = { + field: STRAPI_EXAMPLEFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type STRAPI_EXAMPLEConnection_maxArgs = { + field: STRAPI_EXAMPLEFieldSelector; + }; + + type STRAPI_EXAMPLEConnection_minArgs = { + field: STRAPI_EXAMPLEFieldSelector; + }; + + type STRAPI_EXAMPLEConnection_sumArgs = { + field: STRAPI_EXAMPLEFieldSelector; + }; + + type STRAPI_EXAMPLEDescription = { + readonly data: Maybe; + }; + + type STRAPI_EXAMPLEDescriptionFieldSelector = { + readonly data: InputMaybe; + }; + + type STRAPI_EXAMPLEDescriptionFilterInput = { + readonly data: InputMaybe; + }; + + type STRAPI_EXAMPLEDescriptionSortInput = { + readonly data: InputMaybe; + }; + + type STRAPI_EXAMPLEEdge = { + readonly next: Maybe; + readonly node: STRAPI_EXAMPLE; + readonly previous: Maybe; + }; + + type STRAPI_EXAMPLEFieldSelector = { + readonly authorities: InputMaybe; + readonly awards: InputMaybe; + readonly beginnerFriendly: InputMaybe; + readonly centrality: InputMaybe; + readonly challenges: InputMaybe; + readonly children: InputMaybe; + readonly commune: InputMaybe; + readonly communication: InputMaybe; + readonly costs: InputMaybe; + readonly countryState: InputMaybe; + readonly createdAt: InputMaybe; + readonly description: InputMaybe; + readonly financiallyWeak: InputMaybe; + readonly funding: InputMaybe; + readonly gatsbyPath: InputMaybe; + readonly goals: InputMaybe; + readonly id: InputMaybe; + readonly image: InputMaybe; + readonly internal: InputMaybe; + readonly links: InputMaybe; + readonly localChallenges: InputMaybe; + readonly measure: InputMaybe; + readonly notes: InputMaybe; + readonly parent: InputMaybe; + readonly particularities: InputMaybe; + readonly period: InputMaybe; + readonly personnelExpenses: InputMaybe; + readonly population: InputMaybe; + readonly position: InputMaybe; + readonly publishedAt: InputMaybe; + readonly relatedOffice: InputMaybe; + readonly relatedTopic: InputMaybe; + readonly results: InputMaybe; + readonly shortDescription: InputMaybe; + readonly slug: InputMaybe; + readonly sources: InputMaybe; + readonly spatialStructure: InputMaybe; + readonly stakeholders: InputMaybe; + readonly strapi_id: InputMaybe; + readonly subcategory: InputMaybe; + readonly title: InputMaybe; + readonly updatedAt: InputMaybe; + }; + + type STRAPI_EXAMPLEFilterInput = { + readonly authorities: InputMaybe; + readonly awards: InputMaybe; + readonly beginnerFriendly: InputMaybe; + readonly centrality: InputMaybe; + readonly challenges: InputMaybe; + readonly children: InputMaybe; + readonly commune: InputMaybe; + readonly communication: InputMaybe; + readonly costs: InputMaybe; + readonly countryState: InputMaybe; + readonly createdAt: InputMaybe; + readonly description: InputMaybe; + readonly financiallyWeak: InputMaybe; + readonly funding: InputMaybe; + readonly gatsbyPath: InputMaybe; + readonly goals: InputMaybe; + readonly id: InputMaybe; + readonly image: InputMaybe; + readonly internal: InputMaybe; + readonly links: InputMaybe; + readonly localChallenges: InputMaybe; + readonly measure: InputMaybe; + readonly notes: InputMaybe; + readonly parent: InputMaybe; + readonly particularities: InputMaybe; + readonly period: InputMaybe; + readonly personnelExpenses: InputMaybe; + readonly population: InputMaybe; + readonly position: InputMaybe; + readonly publishedAt: InputMaybe; + readonly relatedOffice: InputMaybe; + readonly relatedTopic: InputMaybe; + readonly results: InputMaybe; + readonly shortDescription: InputMaybe; + readonly slug: InputMaybe; + readonly sources: InputMaybe; + readonly spatialStructure: InputMaybe; + readonly stakeholders: InputMaybe; + readonly strapi_id: InputMaybe; + readonly subcategory: InputMaybe; + readonly title: InputMaybe; + readonly updatedAt: InputMaybe; + }; + + type STRAPI_EXAMPLEFilterListInput = { + readonly elemMatch: InputMaybe; + }; + + type STRAPI_EXAMPLEFunding = { + readonly data: Maybe; + }; + + type STRAPI_EXAMPLEFundingFieldSelector = { + readonly data: InputMaybe; + }; + + type STRAPI_EXAMPLEFundingFilterInput = { + readonly data: InputMaybe; + }; + + type STRAPI_EXAMPLEFundingSortInput = { + readonly data: InputMaybe; + }; + + type STRAPI_EXAMPLEGoals = { + readonly data: Maybe; + }; + + type STRAPI_EXAMPLEGoalsFieldSelector = { + readonly data: InputMaybe; + }; + + type STRAPI_EXAMPLEGoalsFilterInput = { + readonly data: InputMaybe; + }; + + type STRAPI_EXAMPLEGoalsSortInput = { + readonly data: InputMaybe; + }; + + type STRAPI_EXAMPLEGroupConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly field: Scalars['String']; + readonly fieldValue: Maybe; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type STRAPI_EXAMPLEGroupConnection_distinctArgs = { + field: STRAPI_EXAMPLEFieldSelector; + }; + + type STRAPI_EXAMPLEGroupConnection_groupArgs = { + field: STRAPI_EXAMPLEFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type STRAPI_EXAMPLEGroupConnection_maxArgs = { + field: STRAPI_EXAMPLEFieldSelector; + }; + + type STRAPI_EXAMPLEGroupConnection_minArgs = { + field: STRAPI_EXAMPLEFieldSelector; + }; + + type STRAPI_EXAMPLEGroupConnection_sumArgs = { + field: STRAPI_EXAMPLEFieldSelector; + }; + + type STRAPI_EXAMPLELocalChallenges = { + readonly data: Maybe; + }; + + type STRAPI_EXAMPLELocalChallengesFieldSelector = { + readonly data: InputMaybe; + }; + + type STRAPI_EXAMPLELocalChallengesFilterInput = { + readonly data: InputMaybe; + }; + + type STRAPI_EXAMPLELocalChallengesSortInput = { + readonly data: InputMaybe; + }; + + type STRAPI_EXAMPLENotes = { + readonly data: Maybe; + }; + + type STRAPI_EXAMPLENotesFieldSelector = { + readonly data: InputMaybe; + }; + + type STRAPI_EXAMPLENotesFilterInput = { + readonly data: InputMaybe; + }; + + type STRAPI_EXAMPLENotesSortInput = { + readonly data: InputMaybe; + }; + + type STRAPI_EXAMPLEParticularities = { + readonly data: Maybe; + }; + + type STRAPI_EXAMPLEParticularitiesFieldSelector = { + readonly data: InputMaybe; + }; + + type STRAPI_EXAMPLEParticularitiesFilterInput = { + readonly data: InputMaybe; + }; + + type STRAPI_EXAMPLEParticularitiesSortInput = { + readonly data: InputMaybe; + }; + + type STRAPI_EXAMPLEPersonnelExpenses = { + readonly data: Maybe; + }; + + type STRAPI_EXAMPLEPersonnelExpensesFieldSelector = { + readonly data: InputMaybe; + }; + + type STRAPI_EXAMPLEPersonnelExpensesFilterInput = { + readonly data: InputMaybe; + }; + + type STRAPI_EXAMPLEPersonnelExpensesSortInput = { + readonly data: InputMaybe; + }; + + type STRAPI_EXAMPLERelatedOffice = { + readonly data: Maybe; + }; + + type STRAPI_EXAMPLERelatedOfficeFieldSelector = { + readonly data: InputMaybe; + }; + + type STRAPI_EXAMPLERelatedOfficeFilterInput = { + readonly data: InputMaybe; + }; + + type STRAPI_EXAMPLERelatedOfficeSortInput = { + readonly data: InputMaybe; + }; + + type STRAPI_EXAMPLEResults = { + readonly data: Maybe; + }; + + type STRAPI_EXAMPLEResultsFieldSelector = { + readonly data: InputMaybe; + }; + + type STRAPI_EXAMPLEResultsFilterInput = { + readonly data: InputMaybe; + }; + + type STRAPI_EXAMPLEResultsSortInput = { + readonly data: InputMaybe; + }; + + type STRAPI_EXAMPLESortInput = { + readonly authorities: InputMaybe; + readonly awards: InputMaybe; + readonly beginnerFriendly: InputMaybe; + readonly centrality: InputMaybe; + readonly challenges: InputMaybe; + readonly children: InputMaybe; + readonly commune: InputMaybe; + readonly communication: InputMaybe; + readonly costs: InputMaybe; + readonly countryState: InputMaybe; + readonly createdAt: InputMaybe; + readonly description: InputMaybe; + readonly financiallyWeak: InputMaybe; + readonly funding: InputMaybe; + readonly gatsbyPath: InputMaybe; + readonly goals: InputMaybe; + readonly id: InputMaybe; + readonly image: InputMaybe; + readonly internal: InputMaybe; + readonly links: InputMaybe; + readonly localChallenges: InputMaybe; + readonly measure: InputMaybe; + readonly notes: InputMaybe; + readonly parent: InputMaybe; + readonly particularities: InputMaybe; + readonly period: InputMaybe; + readonly personnelExpenses: InputMaybe; + readonly population: InputMaybe; + readonly position: InputMaybe; + readonly publishedAt: InputMaybe; + readonly relatedOffice: InputMaybe; + readonly relatedTopic: InputMaybe; + readonly results: InputMaybe; + readonly shortDescription: InputMaybe; + readonly slug: InputMaybe; + readonly sources: InputMaybe; + readonly spatialStructure: InputMaybe; + readonly stakeholders: InputMaybe; + readonly strapi_id: InputMaybe; + readonly subcategory: InputMaybe; + readonly title: InputMaybe; + readonly updatedAt: InputMaybe; + }; + + type STRAPI_EXAMPLESources = { + readonly data: Maybe; + }; + + type STRAPI_EXAMPLESourcesFieldSelector = { + readonly data: InputMaybe; + }; + + type STRAPI_EXAMPLESourcesFilterInput = { + readonly data: InputMaybe; + }; + + type STRAPI_EXAMPLESourcesSortInput = { + readonly data: InputMaybe; + }; + + type STRAPI_EXAMPLEStakeholders = { + readonly data: Maybe; + }; + + type STRAPI_EXAMPLEStakeholdersFieldSelector = { + readonly data: InputMaybe; + }; + + type STRAPI_EXAMPLEStakeholdersFilterInput = { + readonly data: InputMaybe; + }; + + type STRAPI_EXAMPLEStakeholdersSortInput = { + readonly data: InputMaybe; + }; + + type STRAPI_EXAMPLE_AUTHORITIES_TEXTNODE = Node & { + readonly authorities: Maybe; + /** Returns the first child node of type MarkdownRemark or null if there are no children of given type on this node */ + readonly childMarkdownRemark: Maybe; + readonly children: ReadonlyArray; + /** Returns all children nodes filtered by type MarkdownRemark */ + readonly childrenMarkdownRemark: Maybe< + ReadonlyArray> + >; + readonly id: Scalars['ID']; + readonly internal: Internal; + readonly parent: Maybe; + }; + + type STRAPI_EXAMPLE_AUTHORITIES_TEXTNODEConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type STRAPI_EXAMPLE_AUTHORITIES_TEXTNODEConnection_distinctArgs = { + field: STRAPI_EXAMPLE_AUTHORITIES_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_AUTHORITIES_TEXTNODEConnection_groupArgs = { + field: STRAPI_EXAMPLE_AUTHORITIES_TEXTNODEFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type STRAPI_EXAMPLE_AUTHORITIES_TEXTNODEConnection_maxArgs = { + field: STRAPI_EXAMPLE_AUTHORITIES_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_AUTHORITIES_TEXTNODEConnection_minArgs = { + field: STRAPI_EXAMPLE_AUTHORITIES_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_AUTHORITIES_TEXTNODEConnection_sumArgs = { + field: STRAPI_EXAMPLE_AUTHORITIES_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_AUTHORITIES_TEXTNODEEdge = { + readonly next: Maybe; + readonly node: STRAPI_EXAMPLE_AUTHORITIES_TEXTNODE; + readonly previous: Maybe; + }; + + type STRAPI_EXAMPLE_AUTHORITIES_TEXTNODEFieldSelector = { + readonly authorities: InputMaybe; + readonly childMarkdownRemark: InputMaybe; + readonly children: InputMaybe; + readonly childrenMarkdownRemark: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + }; + + type STRAPI_EXAMPLE_AUTHORITIES_TEXTNODEFilterInput = { + readonly authorities: InputMaybe; + readonly childMarkdownRemark: InputMaybe; + readonly children: InputMaybe; + readonly childrenMarkdownRemark: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + }; + + type STRAPI_EXAMPLE_AUTHORITIES_TEXTNODEGroupConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly field: Scalars['String']; + readonly fieldValue: Maybe; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type STRAPI_EXAMPLE_AUTHORITIES_TEXTNODEGroupConnection_distinctArgs = { + field: STRAPI_EXAMPLE_AUTHORITIES_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_AUTHORITIES_TEXTNODEGroupConnection_groupArgs = { + field: STRAPI_EXAMPLE_AUTHORITIES_TEXTNODEFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type STRAPI_EXAMPLE_AUTHORITIES_TEXTNODEGroupConnection_maxArgs = { + field: STRAPI_EXAMPLE_AUTHORITIES_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_AUTHORITIES_TEXTNODEGroupConnection_minArgs = { + field: STRAPI_EXAMPLE_AUTHORITIES_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_AUTHORITIES_TEXTNODEGroupConnection_sumArgs = { + field: STRAPI_EXAMPLE_AUTHORITIES_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_AUTHORITIES_TEXTNODESortInput = { + readonly authorities: InputMaybe; + readonly childMarkdownRemark: InputMaybe; + readonly children: InputMaybe; + readonly childrenMarkdownRemark: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + }; + + type STRAPI_EXAMPLE_CHALLENGES_TEXTNODE = Node & { + readonly challenges: Maybe; + /** Returns the first child node of type MarkdownRemark or null if there are no children of given type on this node */ + readonly childMarkdownRemark: Maybe; + readonly children: ReadonlyArray; + /** Returns all children nodes filtered by type MarkdownRemark */ + readonly childrenMarkdownRemark: Maybe< + ReadonlyArray> + >; + readonly id: Scalars['ID']; + readonly internal: Internal; + readonly parent: Maybe; + }; + + type STRAPI_EXAMPLE_CHALLENGES_TEXTNODEConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type STRAPI_EXAMPLE_CHALLENGES_TEXTNODEConnection_distinctArgs = { + field: STRAPI_EXAMPLE_CHALLENGES_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_CHALLENGES_TEXTNODEConnection_groupArgs = { + field: STRAPI_EXAMPLE_CHALLENGES_TEXTNODEFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type STRAPI_EXAMPLE_CHALLENGES_TEXTNODEConnection_maxArgs = { + field: STRAPI_EXAMPLE_CHALLENGES_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_CHALLENGES_TEXTNODEConnection_minArgs = { + field: STRAPI_EXAMPLE_CHALLENGES_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_CHALLENGES_TEXTNODEConnection_sumArgs = { + field: STRAPI_EXAMPLE_CHALLENGES_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_CHALLENGES_TEXTNODEEdge = { + readonly next: Maybe; + readonly node: STRAPI_EXAMPLE_CHALLENGES_TEXTNODE; + readonly previous: Maybe; + }; + + type STRAPI_EXAMPLE_CHALLENGES_TEXTNODEFieldSelector = { + readonly challenges: InputMaybe; + readonly childMarkdownRemark: InputMaybe; + readonly children: InputMaybe; + readonly childrenMarkdownRemark: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + }; + + type STRAPI_EXAMPLE_CHALLENGES_TEXTNODEFilterInput = { + readonly challenges: InputMaybe; + readonly childMarkdownRemark: InputMaybe; + readonly children: InputMaybe; + readonly childrenMarkdownRemark: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + }; + + type STRAPI_EXAMPLE_CHALLENGES_TEXTNODEGroupConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly field: Scalars['String']; + readonly fieldValue: Maybe; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type STRAPI_EXAMPLE_CHALLENGES_TEXTNODEGroupConnection_distinctArgs = { + field: STRAPI_EXAMPLE_CHALLENGES_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_CHALLENGES_TEXTNODEGroupConnection_groupArgs = { + field: STRAPI_EXAMPLE_CHALLENGES_TEXTNODEFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type STRAPI_EXAMPLE_CHALLENGES_TEXTNODEGroupConnection_maxArgs = { + field: STRAPI_EXAMPLE_CHALLENGES_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_CHALLENGES_TEXTNODEGroupConnection_minArgs = { + field: STRAPI_EXAMPLE_CHALLENGES_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_CHALLENGES_TEXTNODEGroupConnection_sumArgs = { + field: STRAPI_EXAMPLE_CHALLENGES_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_CHALLENGES_TEXTNODESortInput = { + readonly challenges: InputMaybe; + readonly childMarkdownRemark: InputMaybe; + readonly children: InputMaybe; + readonly childrenMarkdownRemark: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + }; + + type STRAPI_EXAMPLE_COMMUNICATION_TEXTNODE = Node & { + /** Returns the first child node of type MarkdownRemark or null if there are no children of given type on this node */ + readonly childMarkdownRemark: Maybe; + readonly children: ReadonlyArray; + /** Returns all children nodes filtered by type MarkdownRemark */ + readonly childrenMarkdownRemark: Maybe< + ReadonlyArray> + >; + readonly communication: Maybe; + readonly id: Scalars['ID']; + readonly internal: Internal; + readonly parent: Maybe; + }; + + type STRAPI_EXAMPLE_COMMUNICATION_TEXTNODEConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type STRAPI_EXAMPLE_COMMUNICATION_TEXTNODEConnection_distinctArgs = { + field: STRAPI_EXAMPLE_COMMUNICATION_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_COMMUNICATION_TEXTNODEConnection_groupArgs = { + field: STRAPI_EXAMPLE_COMMUNICATION_TEXTNODEFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type STRAPI_EXAMPLE_COMMUNICATION_TEXTNODEConnection_maxArgs = { + field: STRAPI_EXAMPLE_COMMUNICATION_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_COMMUNICATION_TEXTNODEConnection_minArgs = { + field: STRAPI_EXAMPLE_COMMUNICATION_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_COMMUNICATION_TEXTNODEConnection_sumArgs = { + field: STRAPI_EXAMPLE_COMMUNICATION_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_COMMUNICATION_TEXTNODEEdge = { + readonly next: Maybe; + readonly node: STRAPI_EXAMPLE_COMMUNICATION_TEXTNODE; + readonly previous: Maybe; + }; + + type STRAPI_EXAMPLE_COMMUNICATION_TEXTNODEFieldSelector = { + readonly childMarkdownRemark: InputMaybe; + readonly children: InputMaybe; + readonly childrenMarkdownRemark: InputMaybe; + readonly communication: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + }; + + type STRAPI_EXAMPLE_COMMUNICATION_TEXTNODEFilterInput = { + readonly childMarkdownRemark: InputMaybe; + readonly children: InputMaybe; + readonly childrenMarkdownRemark: InputMaybe; + readonly communication: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + }; + + type STRAPI_EXAMPLE_COMMUNICATION_TEXTNODEGroupConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly field: Scalars['String']; + readonly fieldValue: Maybe; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type STRAPI_EXAMPLE_COMMUNICATION_TEXTNODEGroupConnection_distinctArgs = { + field: STRAPI_EXAMPLE_COMMUNICATION_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_COMMUNICATION_TEXTNODEGroupConnection_groupArgs = { + field: STRAPI_EXAMPLE_COMMUNICATION_TEXTNODEFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type STRAPI_EXAMPLE_COMMUNICATION_TEXTNODEGroupConnection_maxArgs = { + field: STRAPI_EXAMPLE_COMMUNICATION_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_COMMUNICATION_TEXTNODEGroupConnection_minArgs = { + field: STRAPI_EXAMPLE_COMMUNICATION_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_COMMUNICATION_TEXTNODEGroupConnection_sumArgs = { + field: STRAPI_EXAMPLE_COMMUNICATION_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_COMMUNICATION_TEXTNODESortInput = { + readonly childMarkdownRemark: InputMaybe; + readonly children: InputMaybe; + readonly childrenMarkdownRemark: InputMaybe; + readonly communication: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + }; + + type STRAPI_EXAMPLE_DESCRIPTION_TEXTNODE = Node & { + /** Returns the first child node of type MarkdownRemark or null if there are no children of given type on this node */ + readonly childMarkdownRemark: Maybe; + readonly children: ReadonlyArray; + /** Returns all children nodes filtered by type MarkdownRemark */ + readonly childrenMarkdownRemark: Maybe< + ReadonlyArray> + >; + readonly description: Maybe; + readonly id: Scalars['ID']; + readonly internal: Internal; + readonly parent: Maybe; + }; + + type STRAPI_EXAMPLE_DESCRIPTION_TEXTNODEConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type STRAPI_EXAMPLE_DESCRIPTION_TEXTNODEConnection_distinctArgs = { + field: STRAPI_EXAMPLE_DESCRIPTION_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_DESCRIPTION_TEXTNODEConnection_groupArgs = { + field: STRAPI_EXAMPLE_DESCRIPTION_TEXTNODEFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type STRAPI_EXAMPLE_DESCRIPTION_TEXTNODEConnection_maxArgs = { + field: STRAPI_EXAMPLE_DESCRIPTION_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_DESCRIPTION_TEXTNODEConnection_minArgs = { + field: STRAPI_EXAMPLE_DESCRIPTION_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_DESCRIPTION_TEXTNODEConnection_sumArgs = { + field: STRAPI_EXAMPLE_DESCRIPTION_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_DESCRIPTION_TEXTNODEEdge = { + readonly next: Maybe; + readonly node: STRAPI_EXAMPLE_DESCRIPTION_TEXTNODE; + readonly previous: Maybe; + }; + + type STRAPI_EXAMPLE_DESCRIPTION_TEXTNODEFieldSelector = { + readonly childMarkdownRemark: InputMaybe; + readonly children: InputMaybe; + readonly childrenMarkdownRemark: InputMaybe; + readonly description: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + }; + + type STRAPI_EXAMPLE_DESCRIPTION_TEXTNODEFilterInput = { + readonly childMarkdownRemark: InputMaybe; + readonly children: InputMaybe; + readonly childrenMarkdownRemark: InputMaybe; + readonly description: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + }; + + type STRAPI_EXAMPLE_DESCRIPTION_TEXTNODEGroupConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly field: Scalars['String']; + readonly fieldValue: Maybe; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type STRAPI_EXAMPLE_DESCRIPTION_TEXTNODEGroupConnection_distinctArgs = { + field: STRAPI_EXAMPLE_DESCRIPTION_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_DESCRIPTION_TEXTNODEGroupConnection_groupArgs = { + field: STRAPI_EXAMPLE_DESCRIPTION_TEXTNODEFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type STRAPI_EXAMPLE_DESCRIPTION_TEXTNODEGroupConnection_maxArgs = { + field: STRAPI_EXAMPLE_DESCRIPTION_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_DESCRIPTION_TEXTNODEGroupConnection_minArgs = { + field: STRAPI_EXAMPLE_DESCRIPTION_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_DESCRIPTION_TEXTNODEGroupConnection_sumArgs = { + field: STRAPI_EXAMPLE_DESCRIPTION_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_DESCRIPTION_TEXTNODESortInput = { + readonly childMarkdownRemark: InputMaybe; + readonly children: InputMaybe; + readonly childrenMarkdownRemark: InputMaybe; + readonly description: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + }; + + type STRAPI_EXAMPLE_FUNDING_TEXTNODE = Node & { + /** Returns the first child node of type MarkdownRemark or null if there are no children of given type on this node */ + readonly childMarkdownRemark: Maybe; + readonly children: ReadonlyArray; + /** Returns all children nodes filtered by type MarkdownRemark */ + readonly childrenMarkdownRemark: Maybe< + ReadonlyArray> + >; + readonly funding: Maybe; + readonly id: Scalars['ID']; + readonly internal: Internal; + readonly parent: Maybe; + }; + + type STRAPI_EXAMPLE_FUNDING_TEXTNODEConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type STRAPI_EXAMPLE_FUNDING_TEXTNODEConnection_distinctArgs = { + field: STRAPI_EXAMPLE_FUNDING_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_FUNDING_TEXTNODEConnection_groupArgs = { + field: STRAPI_EXAMPLE_FUNDING_TEXTNODEFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type STRAPI_EXAMPLE_FUNDING_TEXTNODEConnection_maxArgs = { + field: STRAPI_EXAMPLE_FUNDING_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_FUNDING_TEXTNODEConnection_minArgs = { + field: STRAPI_EXAMPLE_FUNDING_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_FUNDING_TEXTNODEConnection_sumArgs = { + field: STRAPI_EXAMPLE_FUNDING_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_FUNDING_TEXTNODEEdge = { + readonly next: Maybe; + readonly node: STRAPI_EXAMPLE_FUNDING_TEXTNODE; + readonly previous: Maybe; + }; + + type STRAPI_EXAMPLE_FUNDING_TEXTNODEFieldSelector = { + readonly childMarkdownRemark: InputMaybe; + readonly children: InputMaybe; + readonly childrenMarkdownRemark: InputMaybe; + readonly funding: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + }; + + type STRAPI_EXAMPLE_FUNDING_TEXTNODEFilterInput = { + readonly childMarkdownRemark: InputMaybe; + readonly children: InputMaybe; + readonly childrenMarkdownRemark: InputMaybe; + readonly funding: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + }; + + type STRAPI_EXAMPLE_FUNDING_TEXTNODEGroupConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly field: Scalars['String']; + readonly fieldValue: Maybe; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type STRAPI_EXAMPLE_FUNDING_TEXTNODEGroupConnection_distinctArgs = { + field: STRAPI_EXAMPLE_FUNDING_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_FUNDING_TEXTNODEGroupConnection_groupArgs = { + field: STRAPI_EXAMPLE_FUNDING_TEXTNODEFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type STRAPI_EXAMPLE_FUNDING_TEXTNODEGroupConnection_maxArgs = { + field: STRAPI_EXAMPLE_FUNDING_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_FUNDING_TEXTNODEGroupConnection_minArgs = { + field: STRAPI_EXAMPLE_FUNDING_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_FUNDING_TEXTNODEGroupConnection_sumArgs = { + field: STRAPI_EXAMPLE_FUNDING_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_FUNDING_TEXTNODESortInput = { + readonly childMarkdownRemark: InputMaybe; + readonly children: InputMaybe; + readonly childrenMarkdownRemark: InputMaybe; + readonly funding: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + }; + + type STRAPI_EXAMPLE_GOALS_TEXTNODE = Node & { + /** Returns the first child node of type MarkdownRemark or null if there are no children of given type on this node */ + readonly childMarkdownRemark: Maybe; + readonly children: ReadonlyArray; + /** Returns all children nodes filtered by type MarkdownRemark */ + readonly childrenMarkdownRemark: Maybe< + ReadonlyArray> + >; + readonly goals: Maybe; + readonly id: Scalars['ID']; + readonly internal: Internal; + readonly parent: Maybe; + }; + + type STRAPI_EXAMPLE_GOALS_TEXTNODEConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type STRAPI_EXAMPLE_GOALS_TEXTNODEConnection_distinctArgs = { + field: STRAPI_EXAMPLE_GOALS_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_GOALS_TEXTNODEConnection_groupArgs = { + field: STRAPI_EXAMPLE_GOALS_TEXTNODEFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type STRAPI_EXAMPLE_GOALS_TEXTNODEConnection_maxArgs = { + field: STRAPI_EXAMPLE_GOALS_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_GOALS_TEXTNODEConnection_minArgs = { + field: STRAPI_EXAMPLE_GOALS_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_GOALS_TEXTNODEConnection_sumArgs = { + field: STRAPI_EXAMPLE_GOALS_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_GOALS_TEXTNODEEdge = { + readonly next: Maybe; + readonly node: STRAPI_EXAMPLE_GOALS_TEXTNODE; + readonly previous: Maybe; + }; + + type STRAPI_EXAMPLE_GOALS_TEXTNODEFieldSelector = { + readonly childMarkdownRemark: InputMaybe; + readonly children: InputMaybe; + readonly childrenMarkdownRemark: InputMaybe; + readonly goals: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + }; + + type STRAPI_EXAMPLE_GOALS_TEXTNODEFilterInput = { + readonly childMarkdownRemark: InputMaybe; + readonly children: InputMaybe; + readonly childrenMarkdownRemark: InputMaybe; + readonly goals: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + }; + + type STRAPI_EXAMPLE_GOALS_TEXTNODEGroupConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly field: Scalars['String']; + readonly fieldValue: Maybe; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type STRAPI_EXAMPLE_GOALS_TEXTNODEGroupConnection_distinctArgs = { + field: STRAPI_EXAMPLE_GOALS_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_GOALS_TEXTNODEGroupConnection_groupArgs = { + field: STRAPI_EXAMPLE_GOALS_TEXTNODEFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type STRAPI_EXAMPLE_GOALS_TEXTNODEGroupConnection_maxArgs = { + field: STRAPI_EXAMPLE_GOALS_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_GOALS_TEXTNODEGroupConnection_minArgs = { + field: STRAPI_EXAMPLE_GOALS_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_GOALS_TEXTNODEGroupConnection_sumArgs = { + field: STRAPI_EXAMPLE_GOALS_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_GOALS_TEXTNODESortInput = { + readonly childMarkdownRemark: InputMaybe; + readonly children: InputMaybe; + readonly childrenMarkdownRemark: InputMaybe; + readonly goals: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + }; + + type STRAPI_EXAMPLE_LOCALCHALLENGES_TEXTNODE = Node & { + /** Returns the first child node of type MarkdownRemark or null if there are no children of given type on this node */ + readonly childMarkdownRemark: Maybe; + readonly children: ReadonlyArray; + /** Returns all children nodes filtered by type MarkdownRemark */ + readonly childrenMarkdownRemark: Maybe< + ReadonlyArray> + >; + readonly id: Scalars['ID']; + readonly internal: Internal; + readonly localChallenges: Maybe; + readonly parent: Maybe; + }; + + type STRAPI_EXAMPLE_LOCALCHALLENGES_TEXTNODEConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type STRAPI_EXAMPLE_LOCALCHALLENGES_TEXTNODEConnection_distinctArgs = { + field: STRAPI_EXAMPLE_LOCALCHALLENGES_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_LOCALCHALLENGES_TEXTNODEConnection_groupArgs = { + field: STRAPI_EXAMPLE_LOCALCHALLENGES_TEXTNODEFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type STRAPI_EXAMPLE_LOCALCHALLENGES_TEXTNODEConnection_maxArgs = { + field: STRAPI_EXAMPLE_LOCALCHALLENGES_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_LOCALCHALLENGES_TEXTNODEConnection_minArgs = { + field: STRAPI_EXAMPLE_LOCALCHALLENGES_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_LOCALCHALLENGES_TEXTNODEConnection_sumArgs = { + field: STRAPI_EXAMPLE_LOCALCHALLENGES_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_LOCALCHALLENGES_TEXTNODEEdge = { + readonly next: Maybe; + readonly node: STRAPI_EXAMPLE_LOCALCHALLENGES_TEXTNODE; + readonly previous: Maybe; + }; + + type STRAPI_EXAMPLE_LOCALCHALLENGES_TEXTNODEFieldSelector = { + readonly childMarkdownRemark: InputMaybe; + readonly children: InputMaybe; + readonly childrenMarkdownRemark: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly localChallenges: InputMaybe; + readonly parent: InputMaybe; + }; + + type STRAPI_EXAMPLE_LOCALCHALLENGES_TEXTNODEFilterInput = { + readonly childMarkdownRemark: InputMaybe; + readonly children: InputMaybe; + readonly childrenMarkdownRemark: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly localChallenges: InputMaybe; + readonly parent: InputMaybe; + }; + + type STRAPI_EXAMPLE_LOCALCHALLENGES_TEXTNODEGroupConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly field: Scalars['String']; + readonly fieldValue: Maybe; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type STRAPI_EXAMPLE_LOCALCHALLENGES_TEXTNODEGroupConnection_distinctArgs = { + field: STRAPI_EXAMPLE_LOCALCHALLENGES_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_LOCALCHALLENGES_TEXTNODEGroupConnection_groupArgs = { + field: STRAPI_EXAMPLE_LOCALCHALLENGES_TEXTNODEFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type STRAPI_EXAMPLE_LOCALCHALLENGES_TEXTNODEGroupConnection_maxArgs = { + field: STRAPI_EXAMPLE_LOCALCHALLENGES_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_LOCALCHALLENGES_TEXTNODEGroupConnection_minArgs = { + field: STRAPI_EXAMPLE_LOCALCHALLENGES_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_LOCALCHALLENGES_TEXTNODEGroupConnection_sumArgs = { + field: STRAPI_EXAMPLE_LOCALCHALLENGES_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_LOCALCHALLENGES_TEXTNODESortInput = { + readonly childMarkdownRemark: InputMaybe; + readonly children: InputMaybe; + readonly childrenMarkdownRemark: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly localChallenges: InputMaybe; + readonly parent: InputMaybe; + }; + + type STRAPI_EXAMPLE_NOTES_TEXTNODE = Node & { + /** Returns the first child node of type MarkdownRemark or null if there are no children of given type on this node */ + readonly childMarkdownRemark: Maybe; + readonly children: ReadonlyArray; + /** Returns all children nodes filtered by type MarkdownRemark */ + readonly childrenMarkdownRemark: Maybe< + ReadonlyArray> + >; + readonly id: Scalars['ID']; + readonly internal: Internal; + readonly notes: Maybe; + readonly parent: Maybe; + }; + + type STRAPI_EXAMPLE_NOTES_TEXTNODEConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type STRAPI_EXAMPLE_NOTES_TEXTNODEConnection_distinctArgs = { + field: STRAPI_EXAMPLE_NOTES_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_NOTES_TEXTNODEConnection_groupArgs = { + field: STRAPI_EXAMPLE_NOTES_TEXTNODEFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type STRAPI_EXAMPLE_NOTES_TEXTNODEConnection_maxArgs = { + field: STRAPI_EXAMPLE_NOTES_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_NOTES_TEXTNODEConnection_minArgs = { + field: STRAPI_EXAMPLE_NOTES_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_NOTES_TEXTNODEConnection_sumArgs = { + field: STRAPI_EXAMPLE_NOTES_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_NOTES_TEXTNODEEdge = { + readonly next: Maybe; + readonly node: STRAPI_EXAMPLE_NOTES_TEXTNODE; + readonly previous: Maybe; + }; + + type STRAPI_EXAMPLE_NOTES_TEXTNODEFieldSelector = { + readonly childMarkdownRemark: InputMaybe; + readonly children: InputMaybe; + readonly childrenMarkdownRemark: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly notes: InputMaybe; + readonly parent: InputMaybe; + }; + + type STRAPI_EXAMPLE_NOTES_TEXTNODEFilterInput = { + readonly childMarkdownRemark: InputMaybe; + readonly children: InputMaybe; + readonly childrenMarkdownRemark: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly notes: InputMaybe; + readonly parent: InputMaybe; + }; + + type STRAPI_EXAMPLE_NOTES_TEXTNODEGroupConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly field: Scalars['String']; + readonly fieldValue: Maybe; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type STRAPI_EXAMPLE_NOTES_TEXTNODEGroupConnection_distinctArgs = { + field: STRAPI_EXAMPLE_NOTES_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_NOTES_TEXTNODEGroupConnection_groupArgs = { + field: STRAPI_EXAMPLE_NOTES_TEXTNODEFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type STRAPI_EXAMPLE_NOTES_TEXTNODEGroupConnection_maxArgs = { + field: STRAPI_EXAMPLE_NOTES_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_NOTES_TEXTNODEGroupConnection_minArgs = { + field: STRAPI_EXAMPLE_NOTES_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_NOTES_TEXTNODEGroupConnection_sumArgs = { + field: STRAPI_EXAMPLE_NOTES_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_NOTES_TEXTNODESortInput = { + readonly childMarkdownRemark: InputMaybe; + readonly children: InputMaybe; + readonly childrenMarkdownRemark: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly notes: InputMaybe; + readonly parent: InputMaybe; + }; + + type STRAPI_EXAMPLE_PARTICULARITIES_TEXTNODE = Node & { + /** Returns the first child node of type MarkdownRemark or null if there are no children of given type on this node */ + readonly childMarkdownRemark: Maybe; + readonly children: ReadonlyArray; + /** Returns all children nodes filtered by type MarkdownRemark */ + readonly childrenMarkdownRemark: Maybe< + ReadonlyArray> + >; + readonly id: Scalars['ID']; + readonly internal: Internal; + readonly parent: Maybe; + readonly particularities: Maybe; + }; + + type STRAPI_EXAMPLE_PARTICULARITIES_TEXTNODEConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type STRAPI_EXAMPLE_PARTICULARITIES_TEXTNODEConnection_distinctArgs = { + field: STRAPI_EXAMPLE_PARTICULARITIES_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_PARTICULARITIES_TEXTNODEConnection_groupArgs = { + field: STRAPI_EXAMPLE_PARTICULARITIES_TEXTNODEFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type STRAPI_EXAMPLE_PARTICULARITIES_TEXTNODEConnection_maxArgs = { + field: STRAPI_EXAMPLE_PARTICULARITIES_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_PARTICULARITIES_TEXTNODEConnection_minArgs = { + field: STRAPI_EXAMPLE_PARTICULARITIES_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_PARTICULARITIES_TEXTNODEConnection_sumArgs = { + field: STRAPI_EXAMPLE_PARTICULARITIES_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_PARTICULARITIES_TEXTNODEEdge = { + readonly next: Maybe; + readonly node: STRAPI_EXAMPLE_PARTICULARITIES_TEXTNODE; + readonly previous: Maybe; + }; + + type STRAPI_EXAMPLE_PARTICULARITIES_TEXTNODEFieldSelector = { + readonly childMarkdownRemark: InputMaybe; + readonly children: InputMaybe; + readonly childrenMarkdownRemark: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + readonly particularities: InputMaybe; + }; + + type STRAPI_EXAMPLE_PARTICULARITIES_TEXTNODEFilterInput = { + readonly childMarkdownRemark: InputMaybe; + readonly children: InputMaybe; + readonly childrenMarkdownRemark: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + readonly particularities: InputMaybe; + }; + + type STRAPI_EXAMPLE_PARTICULARITIES_TEXTNODEGroupConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly field: Scalars['String']; + readonly fieldValue: Maybe; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type STRAPI_EXAMPLE_PARTICULARITIES_TEXTNODEGroupConnection_distinctArgs = { + field: STRAPI_EXAMPLE_PARTICULARITIES_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_PARTICULARITIES_TEXTNODEGroupConnection_groupArgs = { + field: STRAPI_EXAMPLE_PARTICULARITIES_TEXTNODEFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type STRAPI_EXAMPLE_PARTICULARITIES_TEXTNODEGroupConnection_maxArgs = { + field: STRAPI_EXAMPLE_PARTICULARITIES_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_PARTICULARITIES_TEXTNODEGroupConnection_minArgs = { + field: STRAPI_EXAMPLE_PARTICULARITIES_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_PARTICULARITIES_TEXTNODEGroupConnection_sumArgs = { + field: STRAPI_EXAMPLE_PARTICULARITIES_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_PARTICULARITIES_TEXTNODESortInput = { + readonly childMarkdownRemark: InputMaybe; + readonly children: InputMaybe; + readonly childrenMarkdownRemark: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + readonly particularities: InputMaybe; + }; + + type STRAPI_EXAMPLE_PERSONNELEXPENSES_TEXTNODE = Node & { + /** Returns the first child node of type MarkdownRemark or null if there are no children of given type on this node */ + readonly childMarkdownRemark: Maybe; + readonly children: ReadonlyArray; + /** Returns all children nodes filtered by type MarkdownRemark */ + readonly childrenMarkdownRemark: Maybe< + ReadonlyArray> + >; + readonly id: Scalars['ID']; + readonly internal: Internal; + readonly parent: Maybe; + readonly personnelExpenses: Maybe; + }; + + type STRAPI_EXAMPLE_PERSONNELEXPENSES_TEXTNODEConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type STRAPI_EXAMPLE_PERSONNELEXPENSES_TEXTNODEConnection_distinctArgs = { + field: STRAPI_EXAMPLE_PERSONNELEXPENSES_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_PERSONNELEXPENSES_TEXTNODEConnection_groupArgs = { + field: STRAPI_EXAMPLE_PERSONNELEXPENSES_TEXTNODEFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type STRAPI_EXAMPLE_PERSONNELEXPENSES_TEXTNODEConnection_maxArgs = { + field: STRAPI_EXAMPLE_PERSONNELEXPENSES_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_PERSONNELEXPENSES_TEXTNODEConnection_minArgs = { + field: STRAPI_EXAMPLE_PERSONNELEXPENSES_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_PERSONNELEXPENSES_TEXTNODEConnection_sumArgs = { + field: STRAPI_EXAMPLE_PERSONNELEXPENSES_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_PERSONNELEXPENSES_TEXTNODEEdge = { + readonly next: Maybe; + readonly node: STRAPI_EXAMPLE_PERSONNELEXPENSES_TEXTNODE; + readonly previous: Maybe; + }; + + type STRAPI_EXAMPLE_PERSONNELEXPENSES_TEXTNODEFieldSelector = { + readonly childMarkdownRemark: InputMaybe; + readonly children: InputMaybe; + readonly childrenMarkdownRemark: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + readonly personnelExpenses: InputMaybe; + }; + + type STRAPI_EXAMPLE_PERSONNELEXPENSES_TEXTNODEFilterInput = { + readonly childMarkdownRemark: InputMaybe; + readonly children: InputMaybe; + readonly childrenMarkdownRemark: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + readonly personnelExpenses: InputMaybe; + }; + + type STRAPI_EXAMPLE_PERSONNELEXPENSES_TEXTNODEGroupConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly field: Scalars['String']; + readonly fieldValue: Maybe; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type STRAPI_EXAMPLE_PERSONNELEXPENSES_TEXTNODEGroupConnection_distinctArgs = { + field: STRAPI_EXAMPLE_PERSONNELEXPENSES_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_PERSONNELEXPENSES_TEXTNODEGroupConnection_groupArgs = { + field: STRAPI_EXAMPLE_PERSONNELEXPENSES_TEXTNODEFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type STRAPI_EXAMPLE_PERSONNELEXPENSES_TEXTNODEGroupConnection_maxArgs = { + field: STRAPI_EXAMPLE_PERSONNELEXPENSES_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_PERSONNELEXPENSES_TEXTNODEGroupConnection_minArgs = { + field: STRAPI_EXAMPLE_PERSONNELEXPENSES_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_PERSONNELEXPENSES_TEXTNODEGroupConnection_sumArgs = { + field: STRAPI_EXAMPLE_PERSONNELEXPENSES_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_PERSONNELEXPENSES_TEXTNODESortInput = { + readonly childMarkdownRemark: InputMaybe; + readonly children: InputMaybe; + readonly childrenMarkdownRemark: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + readonly personnelExpenses: InputMaybe; + }; + + type STRAPI_EXAMPLE_RELATEDOFFICE_TEXTNODE = Node & { + /** Returns the first child node of type MarkdownRemark or null if there are no children of given type on this node */ + readonly childMarkdownRemark: Maybe; + readonly children: ReadonlyArray; + /** Returns all children nodes filtered by type MarkdownRemark */ + readonly childrenMarkdownRemark: Maybe< + ReadonlyArray> + >; + readonly id: Scalars['ID']; + readonly internal: Internal; + readonly parent: Maybe; + readonly relatedOffice: Maybe; + }; + + type STRAPI_EXAMPLE_RELATEDOFFICE_TEXTNODEConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type STRAPI_EXAMPLE_RELATEDOFFICE_TEXTNODEConnection_distinctArgs = { + field: STRAPI_EXAMPLE_RELATEDOFFICE_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_RELATEDOFFICE_TEXTNODEConnection_groupArgs = { + field: STRAPI_EXAMPLE_RELATEDOFFICE_TEXTNODEFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type STRAPI_EXAMPLE_RELATEDOFFICE_TEXTNODEConnection_maxArgs = { + field: STRAPI_EXAMPLE_RELATEDOFFICE_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_RELATEDOFFICE_TEXTNODEConnection_minArgs = { + field: STRAPI_EXAMPLE_RELATEDOFFICE_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_RELATEDOFFICE_TEXTNODEConnection_sumArgs = { + field: STRAPI_EXAMPLE_RELATEDOFFICE_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_RELATEDOFFICE_TEXTNODEEdge = { + readonly next: Maybe; + readonly node: STRAPI_EXAMPLE_RELATEDOFFICE_TEXTNODE; + readonly previous: Maybe; + }; + + type STRAPI_EXAMPLE_RELATEDOFFICE_TEXTNODEFieldSelector = { + readonly childMarkdownRemark: InputMaybe; + readonly children: InputMaybe; + readonly childrenMarkdownRemark: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + readonly relatedOffice: InputMaybe; + }; + + type STRAPI_EXAMPLE_RELATEDOFFICE_TEXTNODEFilterInput = { + readonly childMarkdownRemark: InputMaybe; + readonly children: InputMaybe; + readonly childrenMarkdownRemark: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + readonly relatedOffice: InputMaybe; + }; + + type STRAPI_EXAMPLE_RELATEDOFFICE_TEXTNODEGroupConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly field: Scalars['String']; + readonly fieldValue: Maybe; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type STRAPI_EXAMPLE_RELATEDOFFICE_TEXTNODEGroupConnection_distinctArgs = { + field: STRAPI_EXAMPLE_RELATEDOFFICE_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_RELATEDOFFICE_TEXTNODEGroupConnection_groupArgs = { + field: STRAPI_EXAMPLE_RELATEDOFFICE_TEXTNODEFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type STRAPI_EXAMPLE_RELATEDOFFICE_TEXTNODEGroupConnection_maxArgs = { + field: STRAPI_EXAMPLE_RELATEDOFFICE_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_RELATEDOFFICE_TEXTNODEGroupConnection_minArgs = { + field: STRAPI_EXAMPLE_RELATEDOFFICE_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_RELATEDOFFICE_TEXTNODEGroupConnection_sumArgs = { + field: STRAPI_EXAMPLE_RELATEDOFFICE_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_RELATEDOFFICE_TEXTNODESortInput = { + readonly childMarkdownRemark: InputMaybe; + readonly children: InputMaybe; + readonly childrenMarkdownRemark: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + readonly relatedOffice: InputMaybe; + }; + + type STRAPI_EXAMPLE_RESULTS_TEXTNODE = Node & { + /** Returns the first child node of type MarkdownRemark or null if there are no children of given type on this node */ + readonly childMarkdownRemark: Maybe; + readonly children: ReadonlyArray; + /** Returns all children nodes filtered by type MarkdownRemark */ + readonly childrenMarkdownRemark: Maybe< + ReadonlyArray> + >; + readonly id: Scalars['ID']; + readonly internal: Internal; + readonly parent: Maybe; + readonly results: Maybe; + }; + + type STRAPI_EXAMPLE_RESULTS_TEXTNODEConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type STRAPI_EXAMPLE_RESULTS_TEXTNODEConnection_distinctArgs = { + field: STRAPI_EXAMPLE_RESULTS_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_RESULTS_TEXTNODEConnection_groupArgs = { + field: STRAPI_EXAMPLE_RESULTS_TEXTNODEFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type STRAPI_EXAMPLE_RESULTS_TEXTNODEConnection_maxArgs = { + field: STRAPI_EXAMPLE_RESULTS_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_RESULTS_TEXTNODEConnection_minArgs = { + field: STRAPI_EXAMPLE_RESULTS_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_RESULTS_TEXTNODEConnection_sumArgs = { + field: STRAPI_EXAMPLE_RESULTS_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_RESULTS_TEXTNODEEdge = { + readonly next: Maybe; + readonly node: STRAPI_EXAMPLE_RESULTS_TEXTNODE; + readonly previous: Maybe; + }; + + type STRAPI_EXAMPLE_RESULTS_TEXTNODEFieldSelector = { + readonly childMarkdownRemark: InputMaybe; + readonly children: InputMaybe; + readonly childrenMarkdownRemark: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + readonly results: InputMaybe; + }; + + type STRAPI_EXAMPLE_RESULTS_TEXTNODEFilterInput = { + readonly childMarkdownRemark: InputMaybe; + readonly children: InputMaybe; + readonly childrenMarkdownRemark: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + readonly results: InputMaybe; + }; + + type STRAPI_EXAMPLE_RESULTS_TEXTNODEGroupConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly field: Scalars['String']; + readonly fieldValue: Maybe; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type STRAPI_EXAMPLE_RESULTS_TEXTNODEGroupConnection_distinctArgs = { + field: STRAPI_EXAMPLE_RESULTS_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_RESULTS_TEXTNODEGroupConnection_groupArgs = { + field: STRAPI_EXAMPLE_RESULTS_TEXTNODEFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type STRAPI_EXAMPLE_RESULTS_TEXTNODEGroupConnection_maxArgs = { + field: STRAPI_EXAMPLE_RESULTS_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_RESULTS_TEXTNODEGroupConnection_minArgs = { + field: STRAPI_EXAMPLE_RESULTS_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_RESULTS_TEXTNODEGroupConnection_sumArgs = { + field: STRAPI_EXAMPLE_RESULTS_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_RESULTS_TEXTNODESortInput = { + readonly childMarkdownRemark: InputMaybe; + readonly children: InputMaybe; + readonly childrenMarkdownRemark: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + readonly results: InputMaybe; + }; + + type STRAPI_EXAMPLE_SOURCES_TEXTNODE = Node & { + /** Returns the first child node of type MarkdownRemark or null if there are no children of given type on this node */ + readonly childMarkdownRemark: Maybe; + readonly children: ReadonlyArray; + /** Returns all children nodes filtered by type MarkdownRemark */ + readonly childrenMarkdownRemark: Maybe< + ReadonlyArray> + >; + readonly id: Scalars['ID']; + readonly internal: Internal; + readonly parent: Maybe; + readonly sources: Maybe; + }; + + type STRAPI_EXAMPLE_SOURCES_TEXTNODEConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type STRAPI_EXAMPLE_SOURCES_TEXTNODEConnection_distinctArgs = { + field: STRAPI_EXAMPLE_SOURCES_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_SOURCES_TEXTNODEConnection_groupArgs = { + field: STRAPI_EXAMPLE_SOURCES_TEXTNODEFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type STRAPI_EXAMPLE_SOURCES_TEXTNODEConnection_maxArgs = { + field: STRAPI_EXAMPLE_SOURCES_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_SOURCES_TEXTNODEConnection_minArgs = { + field: STRAPI_EXAMPLE_SOURCES_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_SOURCES_TEXTNODEConnection_sumArgs = { + field: STRAPI_EXAMPLE_SOURCES_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_SOURCES_TEXTNODEEdge = { + readonly next: Maybe; + readonly node: STRAPI_EXAMPLE_SOURCES_TEXTNODE; + readonly previous: Maybe; + }; + + type STRAPI_EXAMPLE_SOURCES_TEXTNODEFieldSelector = { + readonly childMarkdownRemark: InputMaybe; + readonly children: InputMaybe; + readonly childrenMarkdownRemark: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + readonly sources: InputMaybe; + }; + + type STRAPI_EXAMPLE_SOURCES_TEXTNODEFilterInput = { + readonly childMarkdownRemark: InputMaybe; + readonly children: InputMaybe; + readonly childrenMarkdownRemark: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + readonly sources: InputMaybe; + }; + + type STRAPI_EXAMPLE_SOURCES_TEXTNODEGroupConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly field: Scalars['String']; + readonly fieldValue: Maybe; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type STRAPI_EXAMPLE_SOURCES_TEXTNODEGroupConnection_distinctArgs = { + field: STRAPI_EXAMPLE_SOURCES_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_SOURCES_TEXTNODEGroupConnection_groupArgs = { + field: STRAPI_EXAMPLE_SOURCES_TEXTNODEFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type STRAPI_EXAMPLE_SOURCES_TEXTNODEGroupConnection_maxArgs = { + field: STRAPI_EXAMPLE_SOURCES_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_SOURCES_TEXTNODEGroupConnection_minArgs = { + field: STRAPI_EXAMPLE_SOURCES_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_SOURCES_TEXTNODEGroupConnection_sumArgs = { + field: STRAPI_EXAMPLE_SOURCES_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_SOURCES_TEXTNODESortInput = { + readonly childMarkdownRemark: InputMaybe; + readonly children: InputMaybe; + readonly childrenMarkdownRemark: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + readonly sources: InputMaybe; + }; + + type STRAPI_EXAMPLE_STAKEHOLDERS_TEXTNODE = Node & { + /** Returns the first child node of type MarkdownRemark or null if there are no children of given type on this node */ + readonly childMarkdownRemark: Maybe; + readonly children: ReadonlyArray; + /** Returns all children nodes filtered by type MarkdownRemark */ + readonly childrenMarkdownRemark: Maybe< + ReadonlyArray> + >; + readonly id: Scalars['ID']; + readonly internal: Internal; + readonly parent: Maybe; + readonly stakeholders: Maybe; + }; + + type STRAPI_EXAMPLE_STAKEHOLDERS_TEXTNODEConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type STRAPI_EXAMPLE_STAKEHOLDERS_TEXTNODEConnection_distinctArgs = { + field: STRAPI_EXAMPLE_STAKEHOLDERS_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_STAKEHOLDERS_TEXTNODEConnection_groupArgs = { + field: STRAPI_EXAMPLE_STAKEHOLDERS_TEXTNODEFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type STRAPI_EXAMPLE_STAKEHOLDERS_TEXTNODEConnection_maxArgs = { + field: STRAPI_EXAMPLE_STAKEHOLDERS_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_STAKEHOLDERS_TEXTNODEConnection_minArgs = { + field: STRAPI_EXAMPLE_STAKEHOLDERS_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_STAKEHOLDERS_TEXTNODEConnection_sumArgs = { + field: STRAPI_EXAMPLE_STAKEHOLDERS_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_STAKEHOLDERS_TEXTNODEEdge = { + readonly next: Maybe; + readonly node: STRAPI_EXAMPLE_STAKEHOLDERS_TEXTNODE; + readonly previous: Maybe; + }; + + type STRAPI_EXAMPLE_STAKEHOLDERS_TEXTNODEFieldSelector = { + readonly childMarkdownRemark: InputMaybe; + readonly children: InputMaybe; + readonly childrenMarkdownRemark: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + readonly stakeholders: InputMaybe; + }; + + type STRAPI_EXAMPLE_STAKEHOLDERS_TEXTNODEFilterInput = { + readonly childMarkdownRemark: InputMaybe; + readonly children: InputMaybe; + readonly childrenMarkdownRemark: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + readonly stakeholders: InputMaybe; + }; + + type STRAPI_EXAMPLE_STAKEHOLDERS_TEXTNODEGroupConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly field: Scalars['String']; + readonly fieldValue: Maybe; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type STRAPI_EXAMPLE_STAKEHOLDERS_TEXTNODEGroupConnection_distinctArgs = { + field: STRAPI_EXAMPLE_STAKEHOLDERS_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_STAKEHOLDERS_TEXTNODEGroupConnection_groupArgs = { + field: STRAPI_EXAMPLE_STAKEHOLDERS_TEXTNODEFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type STRAPI_EXAMPLE_STAKEHOLDERS_TEXTNODEGroupConnection_maxArgs = { + field: STRAPI_EXAMPLE_STAKEHOLDERS_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_STAKEHOLDERS_TEXTNODEGroupConnection_minArgs = { + field: STRAPI_EXAMPLE_STAKEHOLDERS_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_STAKEHOLDERS_TEXTNODEGroupConnection_sumArgs = { + field: STRAPI_EXAMPLE_STAKEHOLDERS_TEXTNODEFieldSelector; + }; + + type STRAPI_EXAMPLE_STAKEHOLDERS_TEXTNODESortInput = { + readonly childMarkdownRemark: InputMaybe; + readonly children: InputMaybe; + readonly childrenMarkdownRemark: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + readonly stakeholders: InputMaybe; + }; + + type STRAPI_MEASURE = Node & { + readonly additionalResources: Maybe< + ReadonlyArray> + >; + readonly children: ReadonlyArray; + readonly communityEntries: Maybe< + ReadonlyArray> + >; + readonly createdAt: Maybe; + readonly description: Maybe; + readonly examples: Maybe>>; + readonly fundings: Maybe< + ReadonlyArray> + >; + readonly gatsbyPath: Maybe; + readonly guidelines: Maybe< + ReadonlyArray> + >; + readonly id: Scalars['ID']; + readonly internal: Internal; + readonly name: Maybe; + readonly parent: Maybe; + readonly position: Maybe; + readonly publishedAt: Maybe; + readonly shortDescription: Maybe; + readonly slug: Maybe; + readonly strapi_id: Maybe; + readonly topic: Maybe; + readonly updatedAt: Maybe; + }; + + type STRAPI_MEASURE_createdAtArgs = { + difference: InputMaybe; + formatString: InputMaybe; + fromNow: InputMaybe; + locale: InputMaybe; + }; + + type STRAPI_MEASURE_gatsbyPathArgs = { + filePath: InputMaybe; + }; + + type STRAPI_MEASURE_publishedAtArgs = { + difference: InputMaybe; + formatString: InputMaybe; + fromNow: InputMaybe; + locale: InputMaybe; + }; + + type STRAPI_MEASURE_updatedAtArgs = { + difference: InputMaybe; + formatString: InputMaybe; + fromNow: InputMaybe; + locale: InputMaybe; + }; + + type STRAPI_MEASUREConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type STRAPI_MEASUREConnection_distinctArgs = { + field: STRAPI_MEASUREFieldSelector; + }; + + type STRAPI_MEASUREConnection_groupArgs = { + field: STRAPI_MEASUREFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type STRAPI_MEASUREConnection_maxArgs = { + field: STRAPI_MEASUREFieldSelector; + }; + + type STRAPI_MEASUREConnection_minArgs = { + field: STRAPI_MEASUREFieldSelector; + }; + + type STRAPI_MEASUREConnection_sumArgs = { + field: STRAPI_MEASUREFieldSelector; + }; + + type STRAPI_MEASUREDescription = { + readonly data: Maybe; + }; + + type STRAPI_MEASUREDescriptionFieldSelector = { + readonly data: InputMaybe; + }; + + type STRAPI_MEASUREDescriptionFilterInput = { + readonly data: InputMaybe; + }; + + type STRAPI_MEASUREDescriptionSortInput = { + readonly data: InputMaybe; + }; + + type STRAPI_MEASUREEdge = { + readonly next: Maybe; + readonly node: STRAPI_MEASURE; + readonly previous: Maybe; + }; + + type STRAPI_MEASUREFieldSelector = { + readonly additionalResources: InputMaybe; + readonly children: InputMaybe; + readonly communityEntries: InputMaybe; + readonly createdAt: InputMaybe; + readonly description: InputMaybe; + readonly examples: InputMaybe; + readonly fundings: InputMaybe; + readonly gatsbyPath: InputMaybe; + readonly guidelines: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly name: InputMaybe; + readonly parent: InputMaybe; + readonly position: InputMaybe; + readonly publishedAt: InputMaybe; + readonly shortDescription: InputMaybe; + readonly slug: InputMaybe; + readonly strapi_id: InputMaybe; + readonly topic: InputMaybe; + readonly updatedAt: InputMaybe; + }; + + type STRAPI_MEASUREFilterInput = { + readonly additionalResources: InputMaybe; + readonly children: InputMaybe; + readonly communityEntries: InputMaybe; + readonly createdAt: InputMaybe; + readonly description: InputMaybe; + readonly examples: InputMaybe; + readonly fundings: InputMaybe; + readonly gatsbyPath: InputMaybe; + readonly guidelines: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly name: InputMaybe; + readonly parent: InputMaybe; + readonly position: InputMaybe; + readonly publishedAt: InputMaybe; + readonly shortDescription: InputMaybe; + readonly slug: InputMaybe; + readonly strapi_id: InputMaybe; + readonly topic: InputMaybe; + readonly updatedAt: InputMaybe; + }; + + type STRAPI_MEASUREFilterListInput = { + readonly elemMatch: InputMaybe; + }; + + type STRAPI_MEASUREGroupConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly field: Scalars['String']; + readonly fieldValue: Maybe; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type STRAPI_MEASUREGroupConnection_distinctArgs = { + field: STRAPI_MEASUREFieldSelector; + }; + + type STRAPI_MEASUREGroupConnection_groupArgs = { + field: STRAPI_MEASUREFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type STRAPI_MEASUREGroupConnection_maxArgs = { + field: STRAPI_MEASUREFieldSelector; + }; + + type STRAPI_MEASUREGroupConnection_minArgs = { + field: STRAPI_MEASUREFieldSelector; + }; + + type STRAPI_MEASUREGroupConnection_sumArgs = { + field: STRAPI_MEASUREFieldSelector; + }; + + type STRAPI_MEASURESortInput = { + readonly additionalResources: InputMaybe; + readonly children: InputMaybe; + readonly communityEntries: InputMaybe; + readonly createdAt: InputMaybe; + readonly description: InputMaybe; + readonly examples: InputMaybe; + readonly fundings: InputMaybe; + readonly gatsbyPath: InputMaybe; + readonly guidelines: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly name: InputMaybe; + readonly parent: InputMaybe; + readonly position: InputMaybe; + readonly publishedAt: InputMaybe; + readonly shortDescription: InputMaybe; + readonly slug: InputMaybe; + readonly strapi_id: InputMaybe; + readonly topic: InputMaybe; + readonly updatedAt: InputMaybe; + }; + + type STRAPI_MEASURE_DESCRIPTION_TEXTNODE = Node & { + /** Returns the first child node of type MarkdownRemark or null if there are no children of given type on this node */ + readonly childMarkdownRemark: Maybe; + readonly children: ReadonlyArray; + /** Returns all children nodes filtered by type MarkdownRemark */ + readonly childrenMarkdownRemark: Maybe< + ReadonlyArray> + >; + readonly description: Maybe; + readonly id: Scalars['ID']; + readonly internal: Internal; + readonly parent: Maybe; + }; + + type STRAPI_MEASURE_DESCRIPTION_TEXTNODEConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type STRAPI_MEASURE_DESCRIPTION_TEXTNODEConnection_distinctArgs = { + field: STRAPI_MEASURE_DESCRIPTION_TEXTNODEFieldSelector; + }; + + type STRAPI_MEASURE_DESCRIPTION_TEXTNODEConnection_groupArgs = { + field: STRAPI_MEASURE_DESCRIPTION_TEXTNODEFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type STRAPI_MEASURE_DESCRIPTION_TEXTNODEConnection_maxArgs = { + field: STRAPI_MEASURE_DESCRIPTION_TEXTNODEFieldSelector; + }; + + type STRAPI_MEASURE_DESCRIPTION_TEXTNODEConnection_minArgs = { + field: STRAPI_MEASURE_DESCRIPTION_TEXTNODEFieldSelector; + }; + + type STRAPI_MEASURE_DESCRIPTION_TEXTNODEConnection_sumArgs = { + field: STRAPI_MEASURE_DESCRIPTION_TEXTNODEFieldSelector; + }; + + type STRAPI_MEASURE_DESCRIPTION_TEXTNODEEdge = { + readonly next: Maybe; + readonly node: STRAPI_MEASURE_DESCRIPTION_TEXTNODE; + readonly previous: Maybe; + }; + + type STRAPI_MEASURE_DESCRIPTION_TEXTNODEFieldSelector = { + readonly childMarkdownRemark: InputMaybe; + readonly children: InputMaybe; + readonly childrenMarkdownRemark: InputMaybe; + readonly description: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + }; + + type STRAPI_MEASURE_DESCRIPTION_TEXTNODEFilterInput = { + readonly childMarkdownRemark: InputMaybe; + readonly children: InputMaybe; + readonly childrenMarkdownRemark: InputMaybe; + readonly description: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + }; + + type STRAPI_MEASURE_DESCRIPTION_TEXTNODEGroupConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly field: Scalars['String']; + readonly fieldValue: Maybe; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type STRAPI_MEASURE_DESCRIPTION_TEXTNODEGroupConnection_distinctArgs = { + field: STRAPI_MEASURE_DESCRIPTION_TEXTNODEFieldSelector; + }; + + type STRAPI_MEASURE_DESCRIPTION_TEXTNODEGroupConnection_groupArgs = { + field: STRAPI_MEASURE_DESCRIPTION_TEXTNODEFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type STRAPI_MEASURE_DESCRIPTION_TEXTNODEGroupConnection_maxArgs = { + field: STRAPI_MEASURE_DESCRIPTION_TEXTNODEFieldSelector; + }; + + type STRAPI_MEASURE_DESCRIPTION_TEXTNODEGroupConnection_minArgs = { + field: STRAPI_MEASURE_DESCRIPTION_TEXTNODEFieldSelector; + }; + + type STRAPI_MEASURE_DESCRIPTION_TEXTNODEGroupConnection_sumArgs = { + field: STRAPI_MEASURE_DESCRIPTION_TEXTNODEFieldSelector; + }; + + type STRAPI_MEASURE_DESCRIPTION_TEXTNODESortInput = { + readonly childMarkdownRemark: InputMaybe; + readonly children: InputMaybe; + readonly childrenMarkdownRemark: InputMaybe; + readonly description: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + }; + + type STRAPI_TOPIC = Node & { + readonly additionalResources: Maybe< + ReadonlyArray> + >; + readonly children: ReadonlyArray; + readonly createdAt: Maybe; + readonly description: Maybe; + readonly fundings: Maybe< + ReadonlyArray> + >; + readonly gatsbyPath: Maybe; + readonly guidelines: Maybe< + ReadonlyArray> + >; + readonly id: Scalars['ID']; + readonly image: Maybe; + readonly internal: Internal; + readonly measures: Maybe>>; + readonly name: Maybe; + readonly parent: Maybe; + readonly position: Maybe; + readonly publishedAt: Maybe; + readonly shortDescription: Maybe; + readonly slug: Maybe; + readonly strapi_id: Maybe; + readonly updatedAt: Maybe; + }; + + type STRAPI_TOPIC_createdAtArgs = { + difference: InputMaybe; + formatString: InputMaybe; + fromNow: InputMaybe; + locale: InputMaybe; + }; + + type STRAPI_TOPIC_gatsbyPathArgs = { + filePath: InputMaybe; + }; + + type STRAPI_TOPIC_publishedAtArgs = { + difference: InputMaybe; + formatString: InputMaybe; + fromNow: InputMaybe; + locale: InputMaybe; + }; + + type STRAPI_TOPIC_updatedAtArgs = { + difference: InputMaybe; + formatString: InputMaybe; + fromNow: InputMaybe; + locale: InputMaybe; + }; + + type STRAPI_TOPICConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type STRAPI_TOPICConnection_distinctArgs = { + field: STRAPI_TOPICFieldSelector; + }; + + type STRAPI_TOPICConnection_groupArgs = { + field: STRAPI_TOPICFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type STRAPI_TOPICConnection_maxArgs = { + field: STRAPI_TOPICFieldSelector; + }; + + type STRAPI_TOPICConnection_minArgs = { + field: STRAPI_TOPICFieldSelector; + }; + + type STRAPI_TOPICConnection_sumArgs = { + field: STRAPI_TOPICFieldSelector; + }; + + type STRAPI_TOPICDescription = { + readonly data: Maybe; + }; + + type STRAPI_TOPICDescriptionFieldSelector = { + readonly data: InputMaybe; + }; + + type STRAPI_TOPICDescriptionFilterInput = { + readonly data: InputMaybe; + }; + + type STRAPI_TOPICDescriptionSortInput = { + readonly data: InputMaybe; + }; + + type STRAPI_TOPICEdge = { + readonly next: Maybe; + readonly node: STRAPI_TOPIC; + readonly previous: Maybe; + }; + + type STRAPI_TOPICFieldSelector = { + readonly additionalResources: InputMaybe; + readonly children: InputMaybe; + readonly createdAt: InputMaybe; + readonly description: InputMaybe; + readonly fundings: InputMaybe; + readonly gatsbyPath: InputMaybe; + readonly guidelines: InputMaybe; + readonly id: InputMaybe; + readonly image: InputMaybe; + readonly internal: InputMaybe; + readonly measures: InputMaybe; + readonly name: InputMaybe; + readonly parent: InputMaybe; + readonly position: InputMaybe; + readonly publishedAt: InputMaybe; + readonly shortDescription: InputMaybe; + readonly slug: InputMaybe; + readonly strapi_id: InputMaybe; + readonly updatedAt: InputMaybe; + }; + + type STRAPI_TOPICFilterInput = { + readonly additionalResources: InputMaybe; + readonly children: InputMaybe; + readonly createdAt: InputMaybe; + readonly description: InputMaybe; + readonly fundings: InputMaybe; + readonly gatsbyPath: InputMaybe; + readonly guidelines: InputMaybe; + readonly id: InputMaybe; + readonly image: InputMaybe; + readonly internal: InputMaybe; + readonly measures: InputMaybe; + readonly name: InputMaybe; + readonly parent: InputMaybe; + readonly position: InputMaybe; + readonly publishedAt: InputMaybe; + readonly shortDescription: InputMaybe; + readonly slug: InputMaybe; + readonly strapi_id: InputMaybe; + readonly updatedAt: InputMaybe; + }; + + type STRAPI_TOPICGroupConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly field: Scalars['String']; + readonly fieldValue: Maybe; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type STRAPI_TOPICGroupConnection_distinctArgs = { + field: STRAPI_TOPICFieldSelector; + }; + + type STRAPI_TOPICGroupConnection_groupArgs = { + field: STRAPI_TOPICFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type STRAPI_TOPICGroupConnection_maxArgs = { + field: STRAPI_TOPICFieldSelector; + }; + + type STRAPI_TOPICGroupConnection_minArgs = { + field: STRAPI_TOPICFieldSelector; + }; + + type STRAPI_TOPICGroupConnection_sumArgs = { + field: STRAPI_TOPICFieldSelector; + }; + + type STRAPI_TOPICSortInput = { + readonly additionalResources: InputMaybe; + readonly children: InputMaybe; + readonly createdAt: InputMaybe; + readonly description: InputMaybe; + readonly fundings: InputMaybe; + readonly gatsbyPath: InputMaybe; + readonly guidelines: InputMaybe; + readonly id: InputMaybe; + readonly image: InputMaybe; + readonly internal: InputMaybe; + readonly measures: InputMaybe; + readonly name: InputMaybe; + readonly parent: InputMaybe; + readonly position: InputMaybe; + readonly publishedAt: InputMaybe; + readonly shortDescription: InputMaybe; + readonly slug: InputMaybe; + readonly strapi_id: InputMaybe; + readonly updatedAt: InputMaybe; + }; + + type STRAPI_TOPIC_DESCRIPTION_TEXTNODE = Node & { + /** Returns the first child node of type MarkdownRemark or null if there are no children of given type on this node */ + readonly childMarkdownRemark: Maybe; + readonly children: ReadonlyArray; + /** Returns all children nodes filtered by type MarkdownRemark */ + readonly childrenMarkdownRemark: Maybe< + ReadonlyArray> + >; + readonly description: Maybe; + readonly id: Scalars['ID']; + readonly internal: Internal; + readonly parent: Maybe; + }; + + type STRAPI_TOPIC_DESCRIPTION_TEXTNODEConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type STRAPI_TOPIC_DESCRIPTION_TEXTNODEConnection_distinctArgs = { + field: STRAPI_TOPIC_DESCRIPTION_TEXTNODEFieldSelector; + }; + + type STRAPI_TOPIC_DESCRIPTION_TEXTNODEConnection_groupArgs = { + field: STRAPI_TOPIC_DESCRIPTION_TEXTNODEFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type STRAPI_TOPIC_DESCRIPTION_TEXTNODEConnection_maxArgs = { + field: STRAPI_TOPIC_DESCRIPTION_TEXTNODEFieldSelector; + }; + + type STRAPI_TOPIC_DESCRIPTION_TEXTNODEConnection_minArgs = { + field: STRAPI_TOPIC_DESCRIPTION_TEXTNODEFieldSelector; + }; + + type STRAPI_TOPIC_DESCRIPTION_TEXTNODEConnection_sumArgs = { + field: STRAPI_TOPIC_DESCRIPTION_TEXTNODEFieldSelector; + }; + + type STRAPI_TOPIC_DESCRIPTION_TEXTNODEEdge = { + readonly next: Maybe; + readonly node: STRAPI_TOPIC_DESCRIPTION_TEXTNODE; + readonly previous: Maybe; + }; + + type STRAPI_TOPIC_DESCRIPTION_TEXTNODEFieldSelector = { + readonly childMarkdownRemark: InputMaybe; + readonly children: InputMaybe; + readonly childrenMarkdownRemark: InputMaybe; + readonly description: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + }; + + type STRAPI_TOPIC_DESCRIPTION_TEXTNODEFilterInput = { + readonly childMarkdownRemark: InputMaybe; + readonly children: InputMaybe; + readonly childrenMarkdownRemark: InputMaybe; + readonly description: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + }; + + type STRAPI_TOPIC_DESCRIPTION_TEXTNODEGroupConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly field: Scalars['String']; + readonly fieldValue: Maybe; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type STRAPI_TOPIC_DESCRIPTION_TEXTNODEGroupConnection_distinctArgs = { + field: STRAPI_TOPIC_DESCRIPTION_TEXTNODEFieldSelector; + }; + + type STRAPI_TOPIC_DESCRIPTION_TEXTNODEGroupConnection_groupArgs = { + field: STRAPI_TOPIC_DESCRIPTION_TEXTNODEFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type STRAPI_TOPIC_DESCRIPTION_TEXTNODEGroupConnection_maxArgs = { + field: STRAPI_TOPIC_DESCRIPTION_TEXTNODEFieldSelector; + }; + + type STRAPI_TOPIC_DESCRIPTION_TEXTNODEGroupConnection_minArgs = { + field: STRAPI_TOPIC_DESCRIPTION_TEXTNODEFieldSelector; + }; + + type STRAPI_TOPIC_DESCRIPTION_TEXTNODEGroupConnection_sumArgs = { + field: STRAPI_TOPIC_DESCRIPTION_TEXTNODEFieldSelector; + }; + + type STRAPI_TOPIC_DESCRIPTION_TEXTNODESortInput = { + readonly childMarkdownRemark: InputMaybe; + readonly children: InputMaybe; + readonly childrenMarkdownRemark: InputMaybe; + readonly description: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + }; + + type STRAPI__COMPONENT_AWARD_AWARD = Node & { + readonly award: Maybe; + readonly children: ReadonlyArray; + readonly description: Maybe; + readonly id: Scalars['ID']; + readonly internal: Internal; + readonly parent: Maybe; + readonly strapi_id: Maybe; + }; + + type STRAPI__COMPONENT_AWARD_AWARDConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type STRAPI__COMPONENT_AWARD_AWARDConnection_distinctArgs = { + field: STRAPI__COMPONENT_AWARD_AWARDFieldSelector; + }; + + type STRAPI__COMPONENT_AWARD_AWARDConnection_groupArgs = { + field: STRAPI__COMPONENT_AWARD_AWARDFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type STRAPI__COMPONENT_AWARD_AWARDConnection_maxArgs = { + field: STRAPI__COMPONENT_AWARD_AWARDFieldSelector; + }; + + type STRAPI__COMPONENT_AWARD_AWARDConnection_minArgs = { + field: STRAPI__COMPONENT_AWARD_AWARDFieldSelector; + }; + + type STRAPI__COMPONENT_AWARD_AWARDConnection_sumArgs = { + field: STRAPI__COMPONENT_AWARD_AWARDFieldSelector; + }; + + type STRAPI__COMPONENT_AWARD_AWARDDescription = { + readonly data: Maybe; + }; + + type STRAPI__COMPONENT_AWARD_AWARDDescriptionFieldSelector = { + readonly data: InputMaybe; + }; + + type STRAPI__COMPONENT_AWARD_AWARDDescriptionFilterInput = { + readonly data: InputMaybe; + }; + + type STRAPI__COMPONENT_AWARD_AWARDDescriptionSortInput = { + readonly data: InputMaybe; + }; + + type STRAPI__COMPONENT_AWARD_AWARDEdge = { + readonly next: Maybe; + readonly node: STRAPI__COMPONENT_AWARD_AWARD; + readonly previous: Maybe; + }; + + type STRAPI__COMPONENT_AWARD_AWARDFieldSelector = { + readonly award: InputMaybe; + readonly children: InputMaybe; + readonly description: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + readonly strapi_id: InputMaybe; + }; + + type STRAPI__COMPONENT_AWARD_AWARDFilterInput = { + readonly award: InputMaybe; + readonly children: InputMaybe; + readonly description: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + readonly strapi_id: InputMaybe; + }; + + type STRAPI__COMPONENT_AWARD_AWARDFilterListInput = { + readonly elemMatch: InputMaybe; + }; + + type STRAPI__COMPONENT_AWARD_AWARDGroupConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly field: Scalars['String']; + readonly fieldValue: Maybe; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type STRAPI__COMPONENT_AWARD_AWARDGroupConnection_distinctArgs = { + field: STRAPI__COMPONENT_AWARD_AWARDFieldSelector; + }; + + type STRAPI__COMPONENT_AWARD_AWARDGroupConnection_groupArgs = { + field: STRAPI__COMPONENT_AWARD_AWARDFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type STRAPI__COMPONENT_AWARD_AWARDGroupConnection_maxArgs = { + field: STRAPI__COMPONENT_AWARD_AWARDFieldSelector; + }; + + type STRAPI__COMPONENT_AWARD_AWARDGroupConnection_minArgs = { + field: STRAPI__COMPONENT_AWARD_AWARDFieldSelector; + }; + + type STRAPI__COMPONENT_AWARD_AWARDGroupConnection_sumArgs = { + field: STRAPI__COMPONENT_AWARD_AWARDFieldSelector; + }; + + type STRAPI__COMPONENT_AWARD_AWARDSortInput = { + readonly award: InputMaybe; + readonly children: InputMaybe; + readonly description: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + readonly strapi_id: InputMaybe; + }; + + type STRAPI__COMPONENT_AWARD_AWARD_DESCRIPTION_TEXTNODE = Node & { + /** Returns the first child node of type MarkdownRemark or null if there are no children of given type on this node */ + readonly childMarkdownRemark: Maybe; + readonly children: ReadonlyArray; + /** Returns all children nodes filtered by type MarkdownRemark */ + readonly childrenMarkdownRemark: Maybe< + ReadonlyArray> + >; + readonly description: Maybe; + readonly id: Scalars['ID']; + readonly internal: Internal; + readonly parent: Maybe; + }; + + type STRAPI__COMPONENT_AWARD_AWARD_DESCRIPTION_TEXTNODEConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type STRAPI__COMPONENT_AWARD_AWARD_DESCRIPTION_TEXTNODEConnection_distinctArgs = + { + field: STRAPI__COMPONENT_AWARD_AWARD_DESCRIPTION_TEXTNODEFieldSelector; + }; + + type STRAPI__COMPONENT_AWARD_AWARD_DESCRIPTION_TEXTNODEConnection_groupArgs = + { + field: STRAPI__COMPONENT_AWARD_AWARD_DESCRIPTION_TEXTNODEFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type STRAPI__COMPONENT_AWARD_AWARD_DESCRIPTION_TEXTNODEConnection_maxArgs = { + field: STRAPI__COMPONENT_AWARD_AWARD_DESCRIPTION_TEXTNODEFieldSelector; + }; + + type STRAPI__COMPONENT_AWARD_AWARD_DESCRIPTION_TEXTNODEConnection_minArgs = { + field: STRAPI__COMPONENT_AWARD_AWARD_DESCRIPTION_TEXTNODEFieldSelector; + }; + + type STRAPI__COMPONENT_AWARD_AWARD_DESCRIPTION_TEXTNODEConnection_sumArgs = { + field: STRAPI__COMPONENT_AWARD_AWARD_DESCRIPTION_TEXTNODEFieldSelector; + }; + + type STRAPI__COMPONENT_AWARD_AWARD_DESCRIPTION_TEXTNODEEdge = { + readonly next: Maybe; + readonly node: STRAPI__COMPONENT_AWARD_AWARD_DESCRIPTION_TEXTNODE; + readonly previous: Maybe; + }; + + type STRAPI__COMPONENT_AWARD_AWARD_DESCRIPTION_TEXTNODEFieldSelector = { + readonly childMarkdownRemark: InputMaybe; + readonly children: InputMaybe; + readonly childrenMarkdownRemark: InputMaybe; + readonly description: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + }; + + type STRAPI__COMPONENT_AWARD_AWARD_DESCRIPTION_TEXTNODEFilterInput = { + readonly childMarkdownRemark: InputMaybe; + readonly children: InputMaybe; + readonly childrenMarkdownRemark: InputMaybe; + readonly description: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + }; + + type STRAPI__COMPONENT_AWARD_AWARD_DESCRIPTION_TEXTNODEGroupConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly field: Scalars['String']; + readonly fieldValue: Maybe; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type STRAPI__COMPONENT_AWARD_AWARD_DESCRIPTION_TEXTNODEGroupConnection_distinctArgs = + { + field: STRAPI__COMPONENT_AWARD_AWARD_DESCRIPTION_TEXTNODEFieldSelector; + }; + + type STRAPI__COMPONENT_AWARD_AWARD_DESCRIPTION_TEXTNODEGroupConnection_groupArgs = + { + field: STRAPI__COMPONENT_AWARD_AWARD_DESCRIPTION_TEXTNODEFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type STRAPI__COMPONENT_AWARD_AWARD_DESCRIPTION_TEXTNODEGroupConnection_maxArgs = + { + field: STRAPI__COMPONENT_AWARD_AWARD_DESCRIPTION_TEXTNODEFieldSelector; + }; + + type STRAPI__COMPONENT_AWARD_AWARD_DESCRIPTION_TEXTNODEGroupConnection_minArgs = + { + field: STRAPI__COMPONENT_AWARD_AWARD_DESCRIPTION_TEXTNODEFieldSelector; + }; + + type STRAPI__COMPONENT_AWARD_AWARD_DESCRIPTION_TEXTNODEGroupConnection_sumArgs = + { + field: STRAPI__COMPONENT_AWARD_AWARD_DESCRIPTION_TEXTNODEFieldSelector; + }; + + type STRAPI__COMPONENT_AWARD_AWARD_DESCRIPTION_TEXTNODESortInput = { + readonly childMarkdownRemark: InputMaybe; + readonly children: InputMaybe; + readonly childrenMarkdownRemark: InputMaybe; + readonly description: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + }; + + type STRAPI__COMPONENT_IMAGE_COPYRIGHT_IMAGE = Node & { + readonly children: ReadonlyArray; + readonly copyright: Maybe; + readonly id: Scalars['ID']; + readonly image: Maybe; + readonly internal: Internal; + readonly parent: Maybe; + readonly strapi_id: Maybe; + }; + + type STRAPI__COMPONENT_IMAGE_COPYRIGHT_IMAGEConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type STRAPI__COMPONENT_IMAGE_COPYRIGHT_IMAGEConnection_distinctArgs = { + field: STRAPI__COMPONENT_IMAGE_COPYRIGHT_IMAGEFieldSelector; + }; + + type STRAPI__COMPONENT_IMAGE_COPYRIGHT_IMAGEConnection_groupArgs = { + field: STRAPI__COMPONENT_IMAGE_COPYRIGHT_IMAGEFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type STRAPI__COMPONENT_IMAGE_COPYRIGHT_IMAGEConnection_maxArgs = { + field: STRAPI__COMPONENT_IMAGE_COPYRIGHT_IMAGEFieldSelector; + }; + + type STRAPI__COMPONENT_IMAGE_COPYRIGHT_IMAGEConnection_minArgs = { + field: STRAPI__COMPONENT_IMAGE_COPYRIGHT_IMAGEFieldSelector; + }; + + type STRAPI__COMPONENT_IMAGE_COPYRIGHT_IMAGEConnection_sumArgs = { + field: STRAPI__COMPONENT_IMAGE_COPYRIGHT_IMAGEFieldSelector; + }; + + type STRAPI__COMPONENT_IMAGE_COPYRIGHT_IMAGEEdge = { + readonly next: Maybe; + readonly node: STRAPI__COMPONENT_IMAGE_COPYRIGHT_IMAGE; + readonly previous: Maybe; + }; + + type STRAPI__COMPONENT_IMAGE_COPYRIGHT_IMAGEFieldSelector = { + readonly children: InputMaybe; + readonly copyright: InputMaybe; + readonly id: InputMaybe; + readonly image: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + readonly strapi_id: InputMaybe; + }; + + type STRAPI__COMPONENT_IMAGE_COPYRIGHT_IMAGEFilterInput = { + readonly children: InputMaybe; + readonly copyright: InputMaybe; + readonly id: InputMaybe; + readonly image: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + readonly strapi_id: InputMaybe; + }; + + type STRAPI__COMPONENT_IMAGE_COPYRIGHT_IMAGEGroupConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly field: Scalars['String']; + readonly fieldValue: Maybe; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type STRAPI__COMPONENT_IMAGE_COPYRIGHT_IMAGEGroupConnection_distinctArgs = { + field: STRAPI__COMPONENT_IMAGE_COPYRIGHT_IMAGEFieldSelector; + }; + + type STRAPI__COMPONENT_IMAGE_COPYRIGHT_IMAGEGroupConnection_groupArgs = { + field: STRAPI__COMPONENT_IMAGE_COPYRIGHT_IMAGEFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type STRAPI__COMPONENT_IMAGE_COPYRIGHT_IMAGEGroupConnection_maxArgs = { + field: STRAPI__COMPONENT_IMAGE_COPYRIGHT_IMAGEFieldSelector; + }; + + type STRAPI__COMPONENT_IMAGE_COPYRIGHT_IMAGEGroupConnection_minArgs = { + field: STRAPI__COMPONENT_IMAGE_COPYRIGHT_IMAGEFieldSelector; + }; + + type STRAPI__COMPONENT_IMAGE_COPYRIGHT_IMAGEGroupConnection_sumArgs = { + field: STRAPI__COMPONENT_IMAGE_COPYRIGHT_IMAGEFieldSelector; + }; + + type STRAPI__COMPONENT_IMAGE_COPYRIGHT_IMAGESortInput = { + readonly children: InputMaybe; + readonly copyright: InputMaybe; + readonly id: InputMaybe; + readonly image: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + readonly strapi_id: InputMaybe; + }; + + type STRAPI__COMPONENT_LINKS_LINKS = Node & { + readonly children: ReadonlyArray; + readonly display: Maybe; + readonly id: Scalars['ID']; + readonly internal: Internal; + readonly parent: Maybe; + readonly strapi_id: Maybe; + readonly url: Maybe; + }; + + type STRAPI__COMPONENT_LINKS_LINKSConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type STRAPI__COMPONENT_LINKS_LINKSConnection_distinctArgs = { + field: STRAPI__COMPONENT_LINKS_LINKSFieldSelector; + }; + + type STRAPI__COMPONENT_LINKS_LINKSConnection_groupArgs = { + field: STRAPI__COMPONENT_LINKS_LINKSFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type STRAPI__COMPONENT_LINKS_LINKSConnection_maxArgs = { + field: STRAPI__COMPONENT_LINKS_LINKSFieldSelector; + }; + + type STRAPI__COMPONENT_LINKS_LINKSConnection_minArgs = { + field: STRAPI__COMPONENT_LINKS_LINKSFieldSelector; + }; + + type STRAPI__COMPONENT_LINKS_LINKSConnection_sumArgs = { + field: STRAPI__COMPONENT_LINKS_LINKSFieldSelector; + }; + + type STRAPI__COMPONENT_LINKS_LINKSEdge = { + readonly next: Maybe; + readonly node: STRAPI__COMPONENT_LINKS_LINKS; + readonly previous: Maybe; + }; + + type STRAPI__COMPONENT_LINKS_LINKSFieldSelector = { + readonly children: InputMaybe; + readonly display: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + readonly strapi_id: InputMaybe; + readonly url: InputMaybe; + }; + + type STRAPI__COMPONENT_LINKS_LINKSFilterInput = { + readonly children: InputMaybe; + readonly display: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + readonly strapi_id: InputMaybe; + readonly url: InputMaybe; + }; + + type STRAPI__COMPONENT_LINKS_LINKSFilterListInput = { + readonly elemMatch: InputMaybe; + }; + + type STRAPI__COMPONENT_LINKS_LINKSGroupConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly field: Scalars['String']; + readonly fieldValue: Maybe; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type STRAPI__COMPONENT_LINKS_LINKSGroupConnection_distinctArgs = { + field: STRAPI__COMPONENT_LINKS_LINKSFieldSelector; + }; + + type STRAPI__COMPONENT_LINKS_LINKSGroupConnection_groupArgs = { + field: STRAPI__COMPONENT_LINKS_LINKSFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type STRAPI__COMPONENT_LINKS_LINKSGroupConnection_maxArgs = { + field: STRAPI__COMPONENT_LINKS_LINKSFieldSelector; + }; + + type STRAPI__COMPONENT_LINKS_LINKSGroupConnection_minArgs = { + field: STRAPI__COMPONENT_LINKS_LINKSFieldSelector; + }; + + type STRAPI__COMPONENT_LINKS_LINKSGroupConnection_sumArgs = { + field: STRAPI__COMPONENT_LINKS_LINKSFieldSelector; + }; + + type STRAPI__COMPONENT_LINKS_LINKSSortInput = { + readonly children: InputMaybe; + readonly display: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + readonly strapi_id: InputMaybe; + readonly url: InputMaybe; + }; + + type STRAPI__MEDIA = Node & { + readonly children: ReadonlyArray; + readonly createdAt: Maybe; + readonly ext: Maybe; + readonly formats: Maybe; + readonly hash: Maybe; + readonly height: Maybe; + readonly id: Scalars['ID']; + readonly internal: Internal; + readonly localFile: Maybe; + readonly mime: Maybe; + readonly name: Maybe; + readonly parent: Maybe; + readonly size: Maybe; + readonly strapi_id: Maybe; + readonly updatedAt: Maybe; + readonly url: Maybe; + readonly width: Maybe; + }; + + type STRAPI__MEDIA_createdAtArgs = { + difference: InputMaybe; + formatString: InputMaybe; + fromNow: InputMaybe; + locale: InputMaybe; + }; + + type STRAPI__MEDIA_updatedAtArgs = { + difference: InputMaybe; + formatString: InputMaybe; + fromNow: InputMaybe; + locale: InputMaybe; + }; + + type STRAPI__MEDIAConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type STRAPI__MEDIAConnection_distinctArgs = { + field: STRAPI__MEDIAFieldSelector; + }; + + type STRAPI__MEDIAConnection_groupArgs = { + field: STRAPI__MEDIAFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type STRAPI__MEDIAConnection_maxArgs = { + field: STRAPI__MEDIAFieldSelector; + }; + + type STRAPI__MEDIAConnection_minArgs = { + field: STRAPI__MEDIAFieldSelector; + }; + + type STRAPI__MEDIAConnection_sumArgs = { + field: STRAPI__MEDIAFieldSelector; + }; + + type STRAPI__MEDIAEdge = { + readonly next: Maybe; + readonly node: STRAPI__MEDIA; + readonly previous: Maybe; + }; + + type STRAPI__MEDIAFieldSelector = { + readonly children: InputMaybe; + readonly createdAt: InputMaybe; + readonly ext: InputMaybe; + readonly formats: InputMaybe; + readonly hash: InputMaybe; + readonly height: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly localFile: InputMaybe; + readonly mime: InputMaybe; + readonly name: InputMaybe; + readonly parent: InputMaybe; + readonly size: InputMaybe; + readonly strapi_id: InputMaybe; + readonly updatedAt: InputMaybe; + readonly url: InputMaybe; + readonly width: InputMaybe; + }; + + type STRAPI__MEDIAFilterInput = { + readonly children: InputMaybe; + readonly createdAt: InputMaybe; + readonly ext: InputMaybe; + readonly formats: InputMaybe; + readonly hash: InputMaybe; + readonly height: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly localFile: InputMaybe; + readonly mime: InputMaybe; + readonly name: InputMaybe; + readonly parent: InputMaybe; + readonly size: InputMaybe; + readonly strapi_id: InputMaybe; + readonly updatedAt: InputMaybe; + readonly url: InputMaybe; + readonly width: InputMaybe; + }; + + type STRAPI__MEDIAFormats = { + readonly thumbnail: Maybe; + }; + + type STRAPI__MEDIAFormatsFieldSelector = { + readonly thumbnail: InputMaybe; + }; + + type STRAPI__MEDIAFormatsFilterInput = { + readonly thumbnail: InputMaybe; + }; + + type STRAPI__MEDIAFormatsSortInput = { + readonly thumbnail: InputMaybe; + }; + + type STRAPI__MEDIAFormatsThumbnail = { + readonly ext: Maybe; + readonly hash: Maybe; + readonly height: Maybe; + readonly mime: Maybe; + readonly name: Maybe; + readonly size: Maybe; + readonly url: Maybe; + readonly width: Maybe; + }; + + type STRAPI__MEDIAFormatsThumbnailFieldSelector = { + readonly ext: InputMaybe; + readonly hash: InputMaybe; + readonly height: InputMaybe; + readonly mime: InputMaybe; + readonly name: InputMaybe; + readonly size: InputMaybe; + readonly url: InputMaybe; + readonly width: InputMaybe; + }; + + type STRAPI__MEDIAFormatsThumbnailFilterInput = { + readonly ext: InputMaybe; + readonly hash: InputMaybe; + readonly height: InputMaybe; + readonly mime: InputMaybe; + readonly name: InputMaybe; + readonly size: InputMaybe; + readonly url: InputMaybe; + readonly width: InputMaybe; + }; + + type STRAPI__MEDIAFormatsThumbnailSortInput = { + readonly ext: InputMaybe; + readonly hash: InputMaybe; + readonly height: InputMaybe; + readonly mime: InputMaybe; + readonly name: InputMaybe; + readonly size: InputMaybe; + readonly url: InputMaybe; + readonly width: InputMaybe; + }; + + type STRAPI__MEDIAGroupConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly field: Scalars['String']; + readonly fieldValue: Maybe; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type STRAPI__MEDIAGroupConnection_distinctArgs = { + field: STRAPI__MEDIAFieldSelector; + }; + + type STRAPI__MEDIAGroupConnection_groupArgs = { + field: STRAPI__MEDIAFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type STRAPI__MEDIAGroupConnection_maxArgs = { + field: STRAPI__MEDIAFieldSelector; + }; + + type STRAPI__MEDIAGroupConnection_minArgs = { + field: STRAPI__MEDIAFieldSelector; + }; + + type STRAPI__MEDIAGroupConnection_sumArgs = { + field: STRAPI__MEDIAFieldSelector; + }; + + type STRAPI__MEDIASortInput = { + readonly children: InputMaybe; + readonly createdAt: InputMaybe; + readonly ext: InputMaybe; + readonly formats: InputMaybe; + readonly hash: InputMaybe; + readonly height: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly localFile: InputMaybe; + readonly mime: InputMaybe; + readonly name: InputMaybe; + readonly parent: InputMaybe; + readonly size: InputMaybe; + readonly strapi_id: InputMaybe; + readonly updatedAt: InputMaybe; + readonly url: InputMaybe; + readonly width: InputMaybe; + }; + + type Site = Node & { + readonly buildTime: Maybe; + readonly children: ReadonlyArray; + readonly graphqlTypegen: Maybe; + readonly host: Maybe; + readonly id: Scalars['ID']; + readonly internal: Internal; + readonly jsxRuntime: Maybe; + readonly parent: Maybe; + readonly pathPrefix: Maybe; + readonly polyfill: Maybe; + readonly port: Maybe; + readonly siteMetadata: Maybe; + readonly trailingSlash: Maybe; + }; + + type Site_buildTimeArgs = { + difference: InputMaybe; + formatString: InputMaybe; + fromNow: InputMaybe; + locale: InputMaybe; + }; + + type SiteBuildMetadata = Node & { + readonly buildTime: Maybe; + readonly children: ReadonlyArray; + readonly id: Scalars['ID']; + readonly internal: Internal; + readonly parent: Maybe; + }; + + type SiteBuildMetadata_buildTimeArgs = { + difference: InputMaybe; + formatString: InputMaybe; + fromNow: InputMaybe; + locale: InputMaybe; + }; + + type SiteBuildMetadataConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type SiteBuildMetadataConnection_distinctArgs = { + field: SiteBuildMetadataFieldSelector; + }; + + type SiteBuildMetadataConnection_groupArgs = { + field: SiteBuildMetadataFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type SiteBuildMetadataConnection_maxArgs = { + field: SiteBuildMetadataFieldSelector; + }; + + type SiteBuildMetadataConnection_minArgs = { + field: SiteBuildMetadataFieldSelector; + }; + + type SiteBuildMetadataConnection_sumArgs = { + field: SiteBuildMetadataFieldSelector; + }; + + type SiteBuildMetadataEdge = { + readonly next: Maybe; + readonly node: SiteBuildMetadata; + readonly previous: Maybe; + }; + + type SiteBuildMetadataFieldSelector = { + readonly buildTime: InputMaybe; + readonly children: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + }; + + type SiteBuildMetadataFilterInput = { + readonly buildTime: InputMaybe; + readonly children: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + }; + + type SiteBuildMetadataGroupConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly field: Scalars['String']; + readonly fieldValue: Maybe; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type SiteBuildMetadataGroupConnection_distinctArgs = { + field: SiteBuildMetadataFieldSelector; + }; + + type SiteBuildMetadataGroupConnection_groupArgs = { + field: SiteBuildMetadataFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type SiteBuildMetadataGroupConnection_maxArgs = { + field: SiteBuildMetadataFieldSelector; + }; + + type SiteBuildMetadataGroupConnection_minArgs = { + field: SiteBuildMetadataFieldSelector; + }; + + type SiteBuildMetadataGroupConnection_sumArgs = { + field: SiteBuildMetadataFieldSelector; + }; + + type SiteBuildMetadataSortInput = { + readonly buildTime: InputMaybe; + readonly children: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; + }; + + type SiteConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type SiteConnection_distinctArgs = { + field: SiteFieldSelector; + }; + + type SiteConnection_groupArgs = { + field: SiteFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type SiteConnection_maxArgs = { + field: SiteFieldSelector; + }; + + type SiteConnection_minArgs = { + field: SiteFieldSelector; + }; + + type SiteConnection_sumArgs = { + field: SiteFieldSelector; + }; + + type SiteEdge = { + readonly next: Maybe; + readonly node: Site; + readonly previous: Maybe; + }; + + type SiteFieldSelector = { + readonly buildTime: InputMaybe; + readonly children: InputMaybe; + readonly graphqlTypegen: InputMaybe; + readonly host: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly jsxRuntime: InputMaybe; + readonly parent: InputMaybe; + readonly pathPrefix: InputMaybe; + readonly polyfill: InputMaybe; + readonly port: InputMaybe; + readonly siteMetadata: InputMaybe; + readonly trailingSlash: InputMaybe; + }; + + type SiteFilterInput = { + readonly buildTime: InputMaybe; + readonly children: InputMaybe; + readonly graphqlTypegen: InputMaybe; + readonly host: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly jsxRuntime: InputMaybe; + readonly parent: InputMaybe; + readonly pathPrefix: InputMaybe; + readonly polyfill: InputMaybe; + readonly port: InputMaybe; + readonly siteMetadata: InputMaybe; + readonly trailingSlash: InputMaybe; + }; + + type SiteFunction = Node & { + readonly absoluteCompiledFilePath: Scalars['String']; + readonly children: ReadonlyArray; + readonly functionRoute: Scalars['String']; + readonly id: Scalars['ID']; + readonly internal: Internal; + readonly matchPath: Maybe; + readonly originalAbsoluteFilePath: Scalars['String']; + readonly originalRelativeFilePath: Scalars['String']; + readonly parent: Maybe; + readonly pluginName: Scalars['String']; + readonly relativeCompiledFilePath: Scalars['String']; + }; + + type SiteFunctionConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type SiteFunctionConnection_distinctArgs = { + field: SiteFunctionFieldSelector; + }; + + type SiteFunctionConnection_groupArgs = { + field: SiteFunctionFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type SiteFunctionConnection_maxArgs = { + field: SiteFunctionFieldSelector; + }; + + type SiteFunctionConnection_minArgs = { + field: SiteFunctionFieldSelector; + }; + + type SiteFunctionConnection_sumArgs = { + field: SiteFunctionFieldSelector; + }; + + type SiteFunctionEdge = { + readonly next: Maybe; + readonly node: SiteFunction; + readonly previous: Maybe; + }; + + type SiteFunctionFieldSelector = { + readonly absoluteCompiledFilePath: InputMaybe; + readonly children: InputMaybe; + readonly functionRoute: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly matchPath: InputMaybe; + readonly originalAbsoluteFilePath: InputMaybe; + readonly originalRelativeFilePath: InputMaybe; + readonly parent: InputMaybe; + readonly pluginName: InputMaybe; + readonly relativeCompiledFilePath: InputMaybe; + }; + + type SiteFunctionFilterInput = { + readonly absoluteCompiledFilePath: InputMaybe; + readonly children: InputMaybe; + readonly functionRoute: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly matchPath: InputMaybe; + readonly originalAbsoluteFilePath: InputMaybe; + readonly originalRelativeFilePath: InputMaybe; + readonly parent: InputMaybe; + readonly pluginName: InputMaybe; + readonly relativeCompiledFilePath: InputMaybe; + }; + + type SiteFunctionGroupConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly field: Scalars['String']; + readonly fieldValue: Maybe; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type SiteFunctionGroupConnection_distinctArgs = { + field: SiteFunctionFieldSelector; + }; + + type SiteFunctionGroupConnection_groupArgs = { + field: SiteFunctionFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type SiteFunctionGroupConnection_maxArgs = { + field: SiteFunctionFieldSelector; + }; + + type SiteFunctionGroupConnection_minArgs = { + field: SiteFunctionFieldSelector; + }; + + type SiteFunctionGroupConnection_sumArgs = { + field: SiteFunctionFieldSelector; + }; + + type SiteFunctionSortInput = { + readonly absoluteCompiledFilePath: InputMaybe; + readonly children: InputMaybe; + readonly functionRoute: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly matchPath: InputMaybe; + readonly originalAbsoluteFilePath: InputMaybe; + readonly originalRelativeFilePath: InputMaybe; + readonly parent: InputMaybe; + readonly pluginName: InputMaybe; + readonly relativeCompiledFilePath: InputMaybe; + }; + + type SiteGraphqlTypegen = { + readonly documentSearchPaths: Maybe< + ReadonlyArray> + >; + readonly generateOnBuild: Maybe; + readonly typesOutputPath: Maybe; + }; + + type SiteGraphqlTypegenFieldSelector = { + readonly documentSearchPaths: InputMaybe; + readonly generateOnBuild: InputMaybe; + readonly typesOutputPath: InputMaybe; + }; + + type SiteGraphqlTypegenFilterInput = { + readonly documentSearchPaths: InputMaybe; + readonly generateOnBuild: InputMaybe; + readonly typesOutputPath: InputMaybe; + }; + + type SiteGraphqlTypegenSortInput = { + readonly documentSearchPaths: InputMaybe; + readonly generateOnBuild: InputMaybe; + readonly typesOutputPath: InputMaybe; + }; + + type SiteGroupConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly field: Scalars['String']; + readonly fieldValue: Maybe; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type SiteGroupConnection_distinctArgs = { + field: SiteFieldSelector; + }; + + type SiteGroupConnection_groupArgs = { + field: SiteFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type SiteGroupConnection_maxArgs = { + field: SiteFieldSelector; + }; + + type SiteGroupConnection_minArgs = { + field: SiteFieldSelector; + }; + + type SiteGroupConnection_sumArgs = { + field: SiteFieldSelector; + }; + + type SitePage = Node & { + readonly children: ReadonlyArray; + readonly component: Scalars['String']; + readonly componentChunkName: Scalars['String']; + readonly id: Scalars['ID']; + readonly internal: Internal; + readonly internalComponentName: Scalars['String']; + readonly matchPath: Maybe; + readonly pageContext: Maybe; + readonly parent: Maybe; + readonly path: Scalars['String']; + readonly pluginCreator: Maybe; + }; + + type SitePageConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type SitePageConnection_distinctArgs = { + field: SitePageFieldSelector; + }; + + type SitePageConnection_groupArgs = { + field: SitePageFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type SitePageConnection_maxArgs = { + field: SitePageFieldSelector; + }; + + type SitePageConnection_minArgs = { + field: SitePageFieldSelector; + }; + + type SitePageConnection_sumArgs = { + field: SitePageFieldSelector; + }; + + type SitePageEdge = { + readonly next: Maybe; + readonly node: SitePage; + readonly previous: Maybe; + }; + + type SitePageFieldSelector = { + readonly children: InputMaybe; + readonly component: InputMaybe; + readonly componentChunkName: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly internalComponentName: InputMaybe; + readonly matchPath: InputMaybe; + readonly pageContext: InputMaybe; + readonly parent: InputMaybe; + readonly path: InputMaybe; + readonly pluginCreator: InputMaybe; + }; + + type SitePageFilterInput = { + readonly children: InputMaybe; + readonly component: InputMaybe; + readonly componentChunkName: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly internalComponentName: InputMaybe; + readonly matchPath: InputMaybe; + readonly pageContext: InputMaybe; + readonly parent: InputMaybe; + readonly path: InputMaybe; + readonly pluginCreator: InputMaybe; + }; + + type SitePageGroupConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly field: Scalars['String']; + readonly fieldValue: Maybe; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type SitePageGroupConnection_distinctArgs = { + field: SitePageFieldSelector; + }; + + type SitePageGroupConnection_groupArgs = { + field: SitePageFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type SitePageGroupConnection_maxArgs = { + field: SitePageFieldSelector; + }; + + type SitePageGroupConnection_minArgs = { + field: SitePageFieldSelector; + }; + + type SitePageGroupConnection_sumArgs = { + field: SitePageFieldSelector; + }; + + type SitePageSortInput = { + readonly children: InputMaybe; + readonly component: InputMaybe; + readonly componentChunkName: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly internalComponentName: InputMaybe; + readonly matchPath: InputMaybe; + readonly pageContext: InputMaybe; + readonly parent: InputMaybe; + readonly path: InputMaybe; + readonly pluginCreator: InputMaybe; + }; + + type SitePlugin = Node & { + readonly browserAPIs: Maybe>>; + readonly children: ReadonlyArray; + readonly id: Scalars['ID']; + readonly internal: Internal; + readonly name: Maybe; + readonly nodeAPIs: Maybe>>; + readonly packageJson: Maybe; + readonly parent: Maybe; + readonly pluginFilepath: Maybe; + readonly pluginOptions: Maybe; + readonly resolve: Maybe; + readonly ssrAPIs: Maybe>>; + readonly version: Maybe; + }; + + type SitePluginConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type SitePluginConnection_distinctArgs = { + field: SitePluginFieldSelector; + }; + + type SitePluginConnection_groupArgs = { + field: SitePluginFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type SitePluginConnection_maxArgs = { + field: SitePluginFieldSelector; + }; + + type SitePluginConnection_minArgs = { + field: SitePluginFieldSelector; + }; + + type SitePluginConnection_sumArgs = { + field: SitePluginFieldSelector; + }; + + type SitePluginEdge = { + readonly next: Maybe; + readonly node: SitePlugin; + readonly previous: Maybe; + }; + + type SitePluginFieldSelector = { + readonly browserAPIs: InputMaybe; + readonly children: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly name: InputMaybe; + readonly nodeAPIs: InputMaybe; + readonly packageJson: InputMaybe; + readonly parent: InputMaybe; + readonly pluginFilepath: InputMaybe; + readonly pluginOptions: InputMaybe; + readonly resolve: InputMaybe; + readonly ssrAPIs: InputMaybe; + readonly version: InputMaybe; + }; + + type SitePluginFilterInput = { + readonly browserAPIs: InputMaybe; + readonly children: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly name: InputMaybe; + readonly nodeAPIs: InputMaybe; + readonly packageJson: InputMaybe; + readonly parent: InputMaybe; + readonly pluginFilepath: InputMaybe; + readonly pluginOptions: InputMaybe; + readonly resolve: InputMaybe; + readonly ssrAPIs: InputMaybe; + readonly version: InputMaybe; + }; + + type SitePluginGroupConnection = { + readonly distinct: ReadonlyArray; + readonly edges: ReadonlyArray; + readonly field: Scalars['String']; + readonly fieldValue: Maybe; + readonly group: ReadonlyArray; + readonly max: Maybe; + readonly min: Maybe; + readonly nodes: ReadonlyArray; + readonly pageInfo: PageInfo; + readonly sum: Maybe; + readonly totalCount: Scalars['Int']; + }; + + type SitePluginGroupConnection_distinctArgs = { + field: SitePluginFieldSelector; + }; + + type SitePluginGroupConnection_groupArgs = { + field: SitePluginFieldSelector; + limit: InputMaybe; + skip: InputMaybe; + }; + + type SitePluginGroupConnection_maxArgs = { + field: SitePluginFieldSelector; + }; + + type SitePluginGroupConnection_minArgs = { + field: SitePluginFieldSelector; + }; + + type SitePluginGroupConnection_sumArgs = { + field: SitePluginFieldSelector; + }; + + type SitePluginSortInput = { + readonly browserAPIs: InputMaybe; + readonly children: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly name: InputMaybe; + readonly nodeAPIs: InputMaybe; + readonly packageJson: InputMaybe; + readonly parent: InputMaybe; + readonly pluginFilepath: InputMaybe; + readonly pluginOptions: InputMaybe; + readonly resolve: InputMaybe; + readonly ssrAPIs: InputMaybe; + readonly version: InputMaybe; + }; + + type SiteSiteMetadata = { + readonly description: Maybe; + readonly siteUrl: Maybe; + readonly title: Maybe; + }; + + type SiteSiteMetadataFieldSelector = { + readonly description: InputMaybe; + readonly siteUrl: InputMaybe; + readonly title: InputMaybe; + }; + + type SiteSiteMetadataFilterInput = { + readonly description: InputMaybe; + readonly siteUrl: InputMaybe; + readonly title: InputMaybe; + }; + + type SiteSiteMetadataSortInput = { + readonly description: InputMaybe; + readonly siteUrl: InputMaybe; + readonly title: InputMaybe; + }; + + type SiteSortInput = { + readonly buildTime: InputMaybe; + readonly children: InputMaybe; + readonly graphqlTypegen: InputMaybe; + readonly host: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly jsxRuntime: InputMaybe; + readonly parent: InputMaybe; + readonly pathPrefix: InputMaybe; + readonly polyfill: InputMaybe; + readonly port: InputMaybe; + readonly siteMetadata: InputMaybe; + readonly trailingSlash: InputMaybe; + }; + + type SortOrderEnum = 'ASC' | 'DESC'; + + type StringQueryOperatorInput = { + readonly eq: InputMaybe; + readonly glob: InputMaybe; + readonly in: InputMaybe>>; + readonly ne: InputMaybe; + readonly nin: InputMaybe>>; + readonly regex: InputMaybe; + }; + + type TransformOptions = { + readonly cropFocus: InputMaybe; + readonly duotone: InputMaybe; + readonly fit: InputMaybe; + readonly grayscale: InputMaybe; + readonly rotate: InputMaybe; + readonly trim: InputMaybe; + }; + + type WebPOptions = { + readonly quality: InputMaybe; + }; + + type ExampleDetailsQueryVariables = Exact<{ + id: Scalars['String']; + }>; + + type ExampleDetailsQuery = { + readonly example: { + readonly title: string | null; + readonly shortDescription: string | null; + readonly period: string | null; + readonly countryState: string | null; + readonly commune: string | null; + readonly spatialStructure: string | null; + readonly centrality: string | null; + readonly subcategory: string | null; + readonly population: string | null; + readonly costs: string | null; + readonly slug: string | null; + readonly description: { + readonly data: { + readonly childMarkdownRemark: { readonly html: string | null } | null; + } | null; + } | null; + readonly stakeholders: { + readonly data: { + readonly childMarkdownRemark: { readonly html: string | null } | null; + } | null; + } | null; + readonly links: ReadonlyArray<{ + readonly url: string | null; + readonly display: string | null; + } | null> | null; + readonly relatedOffice: { + readonly data: { + readonly childMarkdownRemark: { readonly html: string | null } | null; + } | null; + } | null; + readonly awards: ReadonlyArray<{ + readonly award: { + readonly name: string | null; + readonly logo: { + readonly copyright: string | null; + readonly image: { readonly url: string | null } | null; + } | null; + } | null; + readonly description: { + readonly data: { + readonly id: string; + readonly childMarkdownRemark: { + readonly html: string | null; + } | null; + } | null; + } | null; + } | null> | null; + readonly localChallenges: { + readonly data: { + readonly childMarkdownRemark: { readonly html: string | null } | null; + } | null; + } | null; + readonly communication: { + readonly data: { + readonly childMarkdownRemark: { readonly html: string | null } | null; + } | null; + } | null; + readonly funding: { + readonly data: { + readonly childMarkdownRemark: { readonly html: string | null } | null; + } | null; + } | null; + readonly personnelExpenses: { + readonly data: { + readonly childMarkdownRemark: { readonly html: string | null } | null; + } | null; + } | null; + readonly challenges: { + readonly data: { + readonly childMarkdownRemark: { readonly html: string | null } | null; + } | null; + } | null; + readonly authorities: { + readonly data: { + readonly childMarkdownRemark: { readonly html: string | null } | null; + } | null; + } | null; + readonly goals: { + readonly data: { + readonly goals: string | null; + readonly childMarkdownRemark: { readonly html: string | null } | null; + } | null; + } | null; + readonly results: { + readonly data: { + readonly results: string | null; + readonly childMarkdownRemark: { readonly html: string | null } | null; + } | null; + } | null; + readonly sources: { + readonly data: { + readonly sources: string | null; + readonly childMarkdownRemark: { readonly html: string | null } | null; + } | null; + } | null; + readonly particularities: { + readonly data: { + readonly particularities: string | null; + readonly childMarkdownRemark: { readonly html: string | null } | null; + } | null; + } | null; + readonly notes: { + readonly data: { + readonly notes: string | null; + readonly childMarkdownRemark: { readonly html: string | null } | null; + } | null; + } | null; + readonly image: { + readonly copyright: string | null; + readonly image: { + readonly localFile: { + readonly childImageSharp: { + readonly gatsbyImageData: import('gatsby-plugin-image').IGatsbyImageData; + } | null; + } | null; + } | null; + } | null; + readonly measure: { + readonly name: string | null; + readonly topic: { readonly name: string | null } | null; + readonly examples: ReadonlyArray<{ + readonly slug: string | null; + readonly position: number | null; + } | null> | null; + readonly communityEntries: ReadonlyArray<{ + readonly title: string | null; + readonly author: string | null; + readonly contact: string | null; + readonly subcategory: string | null; + readonly countryState: string | null; + readonly commune: string | null; + readonly description: { + readonly data: { + readonly childMarkdownRemark: { + readonly html: string | null; + } | null; + } | null; + } | null; + readonly image: { + readonly copyright: string | null; + readonly image: { + readonly localFile: { + readonly childImageSharp: { + readonly gatsbyImageData: import('gatsby-plugin-image').IGatsbyImageData; + } | null; + } | null; + } | null; + } | null; + readonly website: { + readonly url: string | null; + readonly display: string | null; + } | null; + } | null> | null; + } | null; + readonly relatedTopic: { readonly name: string | null } | null; + } | null; + }; + + type GatsbyImageSharpFixedFragment = { + readonly base64: string | null; + readonly width: number; + readonly height: number; + readonly src: string; + readonly srcSet: string; + }; + + type GatsbyImageSharpFixed_noBase64Fragment = { + readonly width: number; + readonly height: number; + readonly src: string; + readonly srcSet: string; + }; + + type GatsbyImageSharpFixed_tracedSVGFragment = { + readonly tracedSVG: string | null; + readonly width: number; + readonly height: number; + readonly src: string; + readonly srcSet: string; + }; + + type GatsbyImageSharpFixed_withWebpFragment = { + readonly base64: string | null; + readonly width: number; + readonly height: number; + readonly src: string; + readonly srcSet: string; + readonly srcWebp: string | null; + readonly srcSetWebp: string | null; + }; + + type GatsbyImageSharpFixed_withWebp_noBase64Fragment = { + readonly width: number; + readonly height: number; + readonly src: string; + readonly srcSet: string; + readonly srcWebp: string | null; + readonly srcSetWebp: string | null; + }; + + type GatsbyImageSharpFixed_withWebp_tracedSVGFragment = { + readonly tracedSVG: string | null; + readonly width: number; + readonly height: number; + readonly src: string; + readonly srcSet: string; + readonly srcWebp: string | null; + readonly srcSetWebp: string | null; + }; + + type GatsbyImageSharpFluidFragment = { + readonly base64: string | null; + readonly aspectRatio: number; + readonly src: string; + readonly srcSet: string; + readonly sizes: string; + }; + + type GatsbyImageSharpFluid_noBase64Fragment = { + readonly aspectRatio: number; + readonly src: string; + readonly srcSet: string; + readonly sizes: string; + }; + + type GatsbyImageSharpFluid_tracedSVGFragment = { + readonly tracedSVG: string | null; + readonly aspectRatio: number; + readonly src: string; + readonly srcSet: string; + readonly sizes: string; + }; + + type GatsbyImageSharpFluid_withWebpFragment = { + readonly base64: string | null; + readonly aspectRatio: number; + readonly src: string; + readonly srcSet: string; + readonly srcWebp: string | null; + readonly srcSetWebp: string | null; + readonly sizes: string; + }; + + type GatsbyImageSharpFluid_withWebp_noBase64Fragment = { + readonly aspectRatio: number; + readonly src: string; + readonly srcSet: string; + readonly srcWebp: string | null; + readonly srcSetWebp: string | null; + readonly sizes: string; + }; + + type GatsbyImageSharpFluid_withWebp_tracedSVGFragment = { + readonly tracedSVG: string | null; + readonly aspectRatio: number; + readonly src: string; + readonly srcSet: string; + readonly srcWebp: string | null; + readonly srcSetWebp: string | null; + readonly sizes: string; + }; + + type GatsbyImageSharpFluidLimitPresentationSizeFragment = { + readonly maxHeight: number; + readonly maxWidth: number; + }; + + type MeasureDetailsQueryVariables = Exact<{ + id: Scalars['String']; + }>; + + type MeasureDetailsQuery = { + readonly measure: { + readonly name: string | null; + readonly description: { + readonly data: { + readonly childMarkdownRemark: { readonly html: string | null } | null; + } | null; + } | null; + readonly additionalResources: ReadonlyArray<{ + readonly url: string | null; + readonly display: string | null; + } | null> | null; + readonly guidelines: ReadonlyArray<{ + readonly display: string | null; + readonly url: string | null; + } | null> | null; + readonly fundings: ReadonlyArray<{ + readonly display: string | null; + readonly url: string | null; + } | null> | null; + readonly topic: { readonly name: string | null } | null; + readonly examples: ReadonlyArray<{ + readonly title: string | null; + readonly slug: string | null; + readonly shortDescription: string | null; + readonly position: number | null; + readonly image: { + readonly copyright: string | null; + readonly image: { + readonly localFile: { + readonly childImageSharp: { + readonly gatsbyImageData: import('gatsby-plugin-image').IGatsbyImageData; + } | null; + } | null; + } | null; + } | null; + } | null> | null; + readonly communityEntries: ReadonlyArray<{ + readonly title: string | null; + readonly author: string | null; + readonly contact: string | null; + readonly subcategory: string | null; + readonly countryState: string | null; + readonly commune: string | null; + readonly description: { + readonly data: { + readonly childMarkdownRemark: { + readonly html: string | null; + } | null; + } | null; + } | null; + readonly image: { + readonly copyright: string | null; + readonly image: { + readonly localFile: { + readonly childImageSharp: { + readonly gatsbyImageData: import('gatsby-plugin-image').IGatsbyImageData; + } | null; + } | null; + } | null; + } | null; + readonly website: { + readonly url: string | null; + readonly display: string | null; + } | null; + } | null> | null; + } | null; + }; + + type TopicDetailsQueryVariables = Exact<{ + id: Scalars['String']; + }>; + + type TopicDetailsQuery = { + readonly topic: { + readonly name: string | null; + readonly fundings: ReadonlyArray<{ + readonly display: string | null; + readonly url: string | null; + } | null> | null; + readonly image: { readonly url: string | null } | null; + readonly additionalResources: ReadonlyArray<{ + readonly display: string | null; + readonly url: string | null; + } | null> | null; + readonly description: { + readonly data: { + readonly childMarkdownRemark: { readonly html: string | null } | null; + } | null; + } | null; + readonly guidelines: ReadonlyArray<{ + readonly display: string | null; + readonly url: string | null; + } | null> | null; + readonly measures: ReadonlyArray<{ + readonly name: string | null; + readonly slug: string | null; + readonly position: number | null; + readonly shortDescription: string | null; + } | null> | null; + } | null; + }; + + type TopicMeasureTreeQueryVariables = Exact<{ [key: string]: never }>; + + type TopicMeasureTreeQuery = { + readonly allStrapiTopic: { + readonly nodes: ReadonlyArray<{ + readonly position: number | null; + readonly name: string | null; + readonly slug: string | null; + readonly measures: ReadonlyArray<{ + readonly position: number | null; + readonly name: string | null; + readonly slug: string | null; + } | null> | null; + }>; + }; + }; + + type TopicOverviewQueryVariables = Exact<{ [key: string]: never }>; + + type TopicOverviewQuery = { + readonly topics: { + readonly nodes: ReadonlyArray<{ + readonly slug: string | null; + readonly name: string | null; + readonly image: { readonly url: string | null } | null; + }>; + }; + readonly measures: { + readonly nodes: ReadonlyArray<{ + readonly slug: string | null; + readonly topic: { readonly slug: string | null } | null; + readonly examples: ReadonlyArray<{ + readonly slug: string | null; + readonly title: string | null; + readonly shortDescription: string | null; + readonly image: { + readonly image: { + readonly localFile: { + readonly childImageSharp: { + readonly gatsbyImageData: import('gatsby-plugin-image').IGatsbyImageData; + } | null; + } | null; + } | null; + } | null; + } | null> | null; + }>; + }; + }; + + type TopicTeasersQueryVariables = Exact<{ [key: string]: never }>; + + type TopicTeasersQuery = { + readonly topics: { + readonly nodes: ReadonlyArray<{ + readonly slug: string | null; + readonly name: string | null; + readonly shortDescription: string | null; + readonly image: { readonly url: string | null } | null; + }>; + }; + }; } diff --git a/src/pages/award/plan-f-award-2022.tsx b/src/pages/award/plan-f-award-2022.tsx index e7718c8..db6883b 100644 --- a/src/pages/award/plan-f-award-2022.tsx +++ b/src/pages/award/plan-f-award-2022.tsx @@ -671,7 +671,7 @@ const AwardPage: React.FC = () => { {foldOut} ); - } + }, )} ))}