diff --git a/src/components/Map/DynamicMap.tsx b/src/components/Map/DynamicMap.tsx index 95c7947..bfd4715 100644 --- a/src/components/Map/DynamicMap.tsx +++ b/src/components/Map/DynamicMap.tsx @@ -8,7 +8,7 @@ import { import maplibregl from 'maplibre-gl'; import 'maplibre-gl/dist/maplibre-gl.css'; import React, { useEffect, useState } from 'react'; -import Map, { FullscreenControl } from 'react-map-gl'; +import Map, { FullscreenControl, NavigationControl } from 'react-map-gl'; import { maptilerBaseUrl, maptilerKey } from '~/utils'; import { RSVPopup, RSVSegment } from '.'; @@ -97,6 +97,7 @@ export const DynamicMap: React.FC< ) )} + ); }; diff --git a/src/gatsby-types.d.ts b/src/gatsby-types.d.ts index 6d9986b..aab38bc 100644 --- a/src/gatsby-types.d.ts +++ b/src/gatsby-types.d.ts @@ -3,4699 +3,4631 @@ /* 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: DirectoryFieldsEnum; - }; - - type DirectoryConnection_groupArgs = { - field: DirectoryFieldsEnum; - limit: InputMaybe; - skip: InputMaybe; - }; - - type DirectoryConnection_maxArgs = { - field: DirectoryFieldsEnum; - }; - - type DirectoryConnection_minArgs = { - field: DirectoryFieldsEnum; - }; - - type DirectoryConnection_sumArgs = { - field: DirectoryFieldsEnum; - }; - - type DirectoryEdge = { - readonly next: Maybe; - readonly node: Directory; - readonly previous: Maybe; - }; - - type DirectoryFieldsEnum = - | 'absolutePath' - | 'accessTime' - | 'atime' - | 'atimeMs' - | 'base' - | 'birthTime' - | 'birthtime' - | 'birthtimeMs' - | 'changeTime' - | 'children' - | 'children.children' - | 'children.children.children' - | 'children.children.children.children' - | 'children.children.children.id' - | 'children.children.id' - | 'children.children.internal.content' - | 'children.children.internal.contentDigest' - | 'children.children.internal.contentFilePath' - | 'children.children.internal.description' - | 'children.children.internal.fieldOwners' - | 'children.children.internal.ignoreType' - | 'children.children.internal.mediaType' - | 'children.children.internal.owner' - | 'children.children.internal.type' - | 'children.children.parent.children' - | 'children.children.parent.id' - | 'children.id' - | 'children.internal.content' - | 'children.internal.contentDigest' - | 'children.internal.contentFilePath' - | 'children.internal.description' - | 'children.internal.fieldOwners' - | 'children.internal.ignoreType' - | 'children.internal.mediaType' - | 'children.internal.owner' - | 'children.internal.type' - | 'children.parent.children' - | 'children.parent.children.children' - | 'children.parent.children.id' - | 'children.parent.id' - | 'children.parent.internal.content' - | 'children.parent.internal.contentDigest' - | 'children.parent.internal.contentFilePath' - | 'children.parent.internal.description' - | 'children.parent.internal.fieldOwners' - | 'children.parent.internal.ignoreType' - | 'children.parent.internal.mediaType' - | 'children.parent.internal.owner' - | 'children.parent.internal.type' - | 'children.parent.parent.children' - | 'children.parent.parent.id' - | 'ctime' - | 'ctimeMs' - | 'dev' - | 'dir' - | 'ext' - | 'extension' - | 'gid' - | 'id' - | 'ino' - | 'internal.content' - | 'internal.contentDigest' - | 'internal.contentFilePath' - | 'internal.description' - | 'internal.fieldOwners' - | 'internal.ignoreType' - | 'internal.mediaType' - | 'internal.owner' - | 'internal.type' - | 'mode' - | 'modifiedTime' - | 'mtime' - | 'mtimeMs' - | 'name' - | 'nlink' - | 'parent.children' - | 'parent.children.children' - | 'parent.children.children.children' - | 'parent.children.children.id' - | 'parent.children.id' - | 'parent.children.internal.content' - | 'parent.children.internal.contentDigest' - | 'parent.children.internal.contentFilePath' - | 'parent.children.internal.description' - | 'parent.children.internal.fieldOwners' - | 'parent.children.internal.ignoreType' - | 'parent.children.internal.mediaType' - | 'parent.children.internal.owner' - | 'parent.children.internal.type' - | 'parent.children.parent.children' - | 'parent.children.parent.id' - | 'parent.id' - | 'parent.internal.content' - | 'parent.internal.contentDigest' - | 'parent.internal.contentFilePath' - | 'parent.internal.description' - | 'parent.internal.fieldOwners' - | 'parent.internal.ignoreType' - | 'parent.internal.mediaType' - | 'parent.internal.owner' - | 'parent.internal.type' - | 'parent.parent.children' - | 'parent.parent.children.children' - | 'parent.parent.children.id' - | 'parent.parent.id' - | 'parent.parent.internal.content' - | 'parent.parent.internal.contentDigest' - | 'parent.parent.internal.contentFilePath' - | 'parent.parent.internal.description' - | 'parent.parent.internal.fieldOwners' - | 'parent.parent.internal.ignoreType' - | 'parent.parent.internal.mediaType' - | 'parent.parent.internal.owner' - | 'parent.parent.internal.type' - | 'parent.parent.parent.children' - | 'parent.parent.parent.id' - | 'prettySize' - | 'rdev' - | 'relativeDirectory' - | 'relativePath' - | 'root' - | 'size' - | 'sourceInstanceName' - | 'uid'; - - 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: DirectoryFieldsEnum; - }; - - type DirectoryGroupConnection_groupArgs = { - field: DirectoryFieldsEnum; - limit: InputMaybe; - skip: InputMaybe; - }; - - type DirectoryGroupConnection_maxArgs = { - field: DirectoryFieldsEnum; - }; - - type DirectoryGroupConnection_minArgs = { - field: DirectoryFieldsEnum; - }; - - type DirectoryGroupConnection_sumArgs = { - field: DirectoryFieldsEnum; - }; - - type DirectorySortInput = { - readonly fields: InputMaybe>>; - readonly order: InputMaybe>>; - }; - - type DuotoneGradient = { - readonly highlight: Scalars['String']; - readonly opacity: InputMaybe; - readonly shadow: Scalars['String']; - }; - - 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 GeometryJson or null if there are no children of given type on this node */ - readonly childGeometryJson: Maybe; - /** Returns the first child node of type ImageSharp or null if there are no children of given type on this node */ - readonly childImageSharp: Maybe; - /** Returns the first child node of type MetaJson or null if there are no children of given type on this node */ - readonly childMetaJson: Maybe; - readonly children: ReadonlyArray; - /** Returns all children nodes filtered by type GeometryJson */ - readonly childrenGeometryJson: Maybe>>; - /** Returns all children nodes filtered by type ImageSharp */ - readonly childrenImageSharp: Maybe>>; - /** Returns all children nodes filtered by type MetaJson */ - readonly childrenMetaJson: 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 hash: Maybe; - 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']; - /** Copy file to static directory and return public url to it */ - readonly publicURL: Maybe; - 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 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: FileFieldsEnum; - }; - - type FileConnection_groupArgs = { - field: FileFieldsEnum; - limit: InputMaybe; - skip: InputMaybe; - }; - - type FileConnection_maxArgs = { - field: FileFieldsEnum; - }; - - type FileConnection_minArgs = { - field: FileFieldsEnum; - }; - - type FileConnection_sumArgs = { - field: FileFieldsEnum; - }; - - type FileEdge = { - readonly next: Maybe; - readonly node: File; - readonly previous: Maybe; - }; - - type FileFieldsEnum = - | 'absolutePath' - | 'accessTime' - | 'atime' - | 'atimeMs' - | 'base' - | 'birthTime' - | 'birthtime' - | 'birthtimeMs' - | 'blksize' - | 'blocks' - | 'changeTime' - | 'childGeometryJson.bbox' - | 'childGeometryJson.children' - | 'childGeometryJson.children.children' - | 'childGeometryJson.children.children.children' - | 'childGeometryJson.children.children.id' - | 'childGeometryJson.children.id' - | 'childGeometryJson.children.internal.content' - | 'childGeometryJson.children.internal.contentDigest' - | 'childGeometryJson.children.internal.contentFilePath' - | 'childGeometryJson.children.internal.description' - | 'childGeometryJson.children.internal.fieldOwners' - | 'childGeometryJson.children.internal.ignoreType' - | 'childGeometryJson.children.internal.mediaType' - | 'childGeometryJson.children.internal.owner' - | 'childGeometryJson.children.internal.type' - | 'childGeometryJson.children.parent.children' - | 'childGeometryJson.children.parent.id' - | 'childGeometryJson.crs.properties.name' - | 'childGeometryJson.crs.type' - | 'childGeometryJson.features' - | 'childGeometryJson.features.bbox' - | 'childGeometryJson.features.geometry.coordinates' - | 'childGeometryJson.features.geometry.type' - | 'childGeometryJson.features.properties.description_planning_phase' - | 'childGeometryJson.features.properties.detail_level' - | 'childGeometryJson.features.properties.discarded' - | 'childGeometryJson.features.properties.id' - | 'childGeometryJson.features.properties.id_rsv' - | 'childGeometryJson.features.properties.length' - | 'childGeometryJson.features.properties.planning_phase' - | 'childGeometryJson.features.properties.state' - | 'childGeometryJson.features.properties.variant' - | 'childGeometryJson.features.type' - | 'childGeometryJson.id' - | 'childGeometryJson.internal.content' - | 'childGeometryJson.internal.contentDigest' - | 'childGeometryJson.internal.contentFilePath' - | 'childGeometryJson.internal.description' - | 'childGeometryJson.internal.fieldOwners' - | 'childGeometryJson.internal.ignoreType' - | 'childGeometryJson.internal.mediaType' - | 'childGeometryJson.internal.owner' - | 'childGeometryJson.internal.type' - | 'childGeometryJson.jsonId' - | 'childGeometryJson.parent.children' - | 'childGeometryJson.parent.children.children' - | 'childGeometryJson.parent.children.id' - | 'childGeometryJson.parent.id' - | 'childGeometryJson.parent.internal.content' - | 'childGeometryJson.parent.internal.contentDigest' - | 'childGeometryJson.parent.internal.contentFilePath' - | 'childGeometryJson.parent.internal.description' - | 'childGeometryJson.parent.internal.fieldOwners' - | 'childGeometryJson.parent.internal.ignoreType' - | 'childGeometryJson.parent.internal.mediaType' - | 'childGeometryJson.parent.internal.owner' - | 'childGeometryJson.parent.internal.type' - | 'childGeometryJson.parent.parent.children' - | 'childGeometryJson.parent.parent.id' - | 'childGeometryJson.type' - | 'childImageSharp.children' - | 'childImageSharp.children.children' - | 'childImageSharp.children.children.children' - | 'childImageSharp.children.children.id' - | 'childImageSharp.children.id' - | 'childImageSharp.children.internal.content' - | 'childImageSharp.children.internal.contentDigest' - | 'childImageSharp.children.internal.contentFilePath' - | 'childImageSharp.children.internal.description' - | 'childImageSharp.children.internal.fieldOwners' - | 'childImageSharp.children.internal.ignoreType' - | 'childImageSharp.children.internal.mediaType' - | 'childImageSharp.children.internal.owner' - | 'childImageSharp.children.internal.type' - | 'childImageSharp.children.parent.children' - | 'childImageSharp.children.parent.id' - | 'childImageSharp.fixed.aspectRatio' - | 'childImageSharp.fixed.base64' - | 'childImageSharp.fixed.height' - | 'childImageSharp.fixed.originalName' - | 'childImageSharp.fixed.src' - | 'childImageSharp.fixed.srcSet' - | 'childImageSharp.fixed.srcSetWebp' - | 'childImageSharp.fixed.srcWebp' - | 'childImageSharp.fixed.tracedSVG' - | 'childImageSharp.fixed.width' - | 'childImageSharp.fluid.aspectRatio' - | 'childImageSharp.fluid.base64' - | 'childImageSharp.fluid.originalImg' - | 'childImageSharp.fluid.originalName' - | 'childImageSharp.fluid.presentationHeight' - | 'childImageSharp.fluid.presentationWidth' - | 'childImageSharp.fluid.sizes' - | 'childImageSharp.fluid.src' - | 'childImageSharp.fluid.srcSet' - | 'childImageSharp.fluid.srcSetWebp' - | 'childImageSharp.fluid.srcWebp' - | 'childImageSharp.fluid.tracedSVG' - | 'childImageSharp.gatsbyImageData' - | 'childImageSharp.id' - | 'childImageSharp.internal.content' - | 'childImageSharp.internal.contentDigest' - | 'childImageSharp.internal.contentFilePath' - | 'childImageSharp.internal.description' - | 'childImageSharp.internal.fieldOwners' - | 'childImageSharp.internal.ignoreType' - | 'childImageSharp.internal.mediaType' - | 'childImageSharp.internal.owner' - | 'childImageSharp.internal.type' - | 'childImageSharp.original.height' - | 'childImageSharp.original.src' - | 'childImageSharp.original.width' - | 'childImageSharp.parent.children' - | 'childImageSharp.parent.children.children' - | 'childImageSharp.parent.children.id' - | 'childImageSharp.parent.id' - | 'childImageSharp.parent.internal.content' - | 'childImageSharp.parent.internal.contentDigest' - | 'childImageSharp.parent.internal.contentFilePath' - | 'childImageSharp.parent.internal.description' - | 'childImageSharp.parent.internal.fieldOwners' - | 'childImageSharp.parent.internal.ignoreType' - | 'childImageSharp.parent.internal.mediaType' - | 'childImageSharp.parent.internal.owner' - | 'childImageSharp.parent.internal.type' - | 'childImageSharp.parent.parent.children' - | 'childImageSharp.parent.parent.id' - | 'childImageSharp.resize.aspectRatio' - | 'childImageSharp.resize.height' - | 'childImageSharp.resize.originalName' - | 'childImageSharp.resize.src' - | 'childImageSharp.resize.tracedSVG' - | 'childImageSharp.resize.width' - | 'childMetaJson.children' - | 'childMetaJson.children.children' - | 'childMetaJson.children.children.children' - | 'childMetaJson.children.children.id' - | 'childMetaJson.children.id' - | 'childMetaJson.children.internal.content' - | 'childMetaJson.children.internal.contentDigest' - | 'childMetaJson.children.internal.contentFilePath' - | 'childMetaJson.children.internal.description' - | 'childMetaJson.children.internal.fieldOwners' - | 'childMetaJson.children.internal.ignoreType' - | 'childMetaJson.children.internal.mediaType' - | 'childMetaJson.children.internal.owner' - | 'childMetaJson.children.internal.type' - | 'childMetaJson.children.parent.children' - | 'childMetaJson.children.parent.id' - | 'childMetaJson.cost' - | 'childMetaJson.gatsbyPath' - | 'childMetaJson.general.description' - | 'childMetaJson.general.from.city' - | 'childMetaJson.general.from.federalState' - | 'childMetaJson.general.length' - | 'childMetaJson.general.name' - | 'childMetaJson.general.ref' - | 'childMetaJson.general.source' - | 'childMetaJson.general.stand' - | 'childMetaJson.general.to.city' - | 'childMetaJson.general.to.federalState' - | 'childMetaJson.geoJson.bbox' - | 'childMetaJson.geoJson.children' - | 'childMetaJson.geoJson.children.children' - | 'childMetaJson.geoJson.children.id' - | 'childMetaJson.geoJson.crs.type' - | 'childMetaJson.geoJson.features' - | 'childMetaJson.geoJson.features.bbox' - | 'childMetaJson.geoJson.features.type' - | 'childMetaJson.geoJson.id' - | 'childMetaJson.geoJson.internal.content' - | 'childMetaJson.geoJson.internal.contentDigest' - | 'childMetaJson.geoJson.internal.contentFilePath' - | 'childMetaJson.geoJson.internal.description' - | 'childMetaJson.geoJson.internal.fieldOwners' - | 'childMetaJson.geoJson.internal.ignoreType' - | 'childMetaJson.geoJson.internal.mediaType' - | 'childMetaJson.geoJson.internal.owner' - | 'childMetaJson.geoJson.internal.type' - | 'childMetaJson.geoJson.jsonId' - | 'childMetaJson.geoJson.parent.children' - | 'childMetaJson.geoJson.parent.id' - | 'childMetaJson.geoJson.type' - | 'childMetaJson.id' - | 'childMetaJson.internal.content' - | 'childMetaJson.internal.contentDigest' - | 'childMetaJson.internal.contentFilePath' - | 'childMetaJson.internal.description' - | 'childMetaJson.internal.fieldOwners' - | 'childMetaJson.internal.ignoreType' - | 'childMetaJson.internal.mediaType' - | 'childMetaJson.internal.owner' - | 'childMetaJson.internal.type' - | 'childMetaJson.jsonId' - | 'childMetaJson.parent.children' - | 'childMetaJson.parent.children.children' - | 'childMetaJson.parent.children.id' - | 'childMetaJson.parent.id' - | 'childMetaJson.parent.internal.content' - | 'childMetaJson.parent.internal.contentDigest' - | 'childMetaJson.parent.internal.contentFilePath' - | 'childMetaJson.parent.internal.description' - | 'childMetaJson.parent.internal.fieldOwners' - | 'childMetaJson.parent.internal.ignoreType' - | 'childMetaJson.parent.internal.mediaType' - | 'childMetaJson.parent.internal.owner' - | 'childMetaJson.parent.internal.type' - | 'childMetaJson.parent.parent.children' - | 'childMetaJson.parent.parent.id' - | 'childMetaJson.references.website' - | 'childMetaJson.stakeholders' - | 'childMetaJson.stakeholders.name' - | 'childMetaJson.stakeholders.roles' - | 'childMetaJson.state' - | 'childMetaJson.staticMap.absolutePath' - | 'childMetaJson.staticMap.accessTime' - | 'childMetaJson.staticMap.atime' - | 'childMetaJson.staticMap.atimeMs' - | 'childMetaJson.staticMap.base' - | 'childMetaJson.staticMap.birthTime' - | 'childMetaJson.staticMap.birthtime' - | 'childMetaJson.staticMap.birthtimeMs' - | 'childMetaJson.staticMap.blksize' - | 'childMetaJson.staticMap.blocks' - | 'childMetaJson.staticMap.changeTime' - | 'childMetaJson.staticMap.childGeometryJson.bbox' - | 'childMetaJson.staticMap.childGeometryJson.children' - | 'childMetaJson.staticMap.childGeometryJson.features' - | 'childMetaJson.staticMap.childGeometryJson.id' - | 'childMetaJson.staticMap.childGeometryJson.jsonId' - | 'childMetaJson.staticMap.childGeometryJson.type' - | 'childMetaJson.staticMap.childImageSharp.children' - | 'childMetaJson.staticMap.childImageSharp.gatsbyImageData' - | 'childMetaJson.staticMap.childImageSharp.id' - | 'childMetaJson.staticMap.childMetaJson.children' - | 'childMetaJson.staticMap.childMetaJson.cost' - | 'childMetaJson.staticMap.childMetaJson.gatsbyPath' - | 'childMetaJson.staticMap.childMetaJson.id' - | 'childMetaJson.staticMap.childMetaJson.jsonId' - | 'childMetaJson.staticMap.childMetaJson.stakeholders' - | 'childMetaJson.staticMap.childMetaJson.state' - | 'childMetaJson.staticMap.children' - | 'childMetaJson.staticMap.childrenGeometryJson' - | 'childMetaJson.staticMap.childrenGeometryJson.bbox' - | 'childMetaJson.staticMap.childrenGeometryJson.children' - | 'childMetaJson.staticMap.childrenGeometryJson.features' - | 'childMetaJson.staticMap.childrenGeometryJson.id' - | 'childMetaJson.staticMap.childrenGeometryJson.jsonId' - | 'childMetaJson.staticMap.childrenGeometryJson.type' - | 'childMetaJson.staticMap.childrenImageSharp' - | 'childMetaJson.staticMap.childrenImageSharp.children' - | 'childMetaJson.staticMap.childrenImageSharp.gatsbyImageData' - | 'childMetaJson.staticMap.childrenImageSharp.id' - | 'childMetaJson.staticMap.childrenMetaJson' - | 'childMetaJson.staticMap.childrenMetaJson.children' - | 'childMetaJson.staticMap.childrenMetaJson.cost' - | 'childMetaJson.staticMap.childrenMetaJson.gatsbyPath' - | 'childMetaJson.staticMap.childrenMetaJson.id' - | 'childMetaJson.staticMap.childrenMetaJson.jsonId' - | 'childMetaJson.staticMap.childrenMetaJson.stakeholders' - | 'childMetaJson.staticMap.childrenMetaJson.state' - | 'childMetaJson.staticMap.children.children' - | 'childMetaJson.staticMap.children.id' - | 'childMetaJson.staticMap.ctime' - | 'childMetaJson.staticMap.ctimeMs' - | 'childMetaJson.staticMap.dev' - | 'childMetaJson.staticMap.dir' - | 'childMetaJson.staticMap.ext' - | 'childMetaJson.staticMap.extension' - | 'childMetaJson.staticMap.gid' - | 'childMetaJson.staticMap.hash' - | 'childMetaJson.staticMap.id' - | 'childMetaJson.staticMap.ino' - | 'childMetaJson.staticMap.internal.content' - | 'childMetaJson.staticMap.internal.contentDigest' - | 'childMetaJson.staticMap.internal.contentFilePath' - | 'childMetaJson.staticMap.internal.description' - | 'childMetaJson.staticMap.internal.fieldOwners' - | 'childMetaJson.staticMap.internal.ignoreType' - | 'childMetaJson.staticMap.internal.mediaType' - | 'childMetaJson.staticMap.internal.owner' - | 'childMetaJson.staticMap.internal.type' - | 'childMetaJson.staticMap.mode' - | 'childMetaJson.staticMap.modifiedTime' - | 'childMetaJson.staticMap.mtime' - | 'childMetaJson.staticMap.mtimeMs' - | 'childMetaJson.staticMap.name' - | 'childMetaJson.staticMap.nlink' - | 'childMetaJson.staticMap.parent.children' - | 'childMetaJson.staticMap.parent.id' - | 'childMetaJson.staticMap.prettySize' - | 'childMetaJson.staticMap.publicURL' - | 'childMetaJson.staticMap.rdev' - | 'childMetaJson.staticMap.relativeDirectory' - | 'childMetaJson.staticMap.relativePath' - | 'childMetaJson.staticMap.root' - | 'childMetaJson.staticMap.size' - | 'childMetaJson.staticMap.sourceInstanceName' - | 'childMetaJson.staticMap.uid' - | 'children' - | 'childrenGeometryJson' - | 'childrenGeometryJson.bbox' - | 'childrenGeometryJson.children' - | 'childrenGeometryJson.children.children' - | 'childrenGeometryJson.children.children.children' - | 'childrenGeometryJson.children.children.id' - | 'childrenGeometryJson.children.id' - | 'childrenGeometryJson.children.internal.content' - | 'childrenGeometryJson.children.internal.contentDigest' - | 'childrenGeometryJson.children.internal.contentFilePath' - | 'childrenGeometryJson.children.internal.description' - | 'childrenGeometryJson.children.internal.fieldOwners' - | 'childrenGeometryJson.children.internal.ignoreType' - | 'childrenGeometryJson.children.internal.mediaType' - | 'childrenGeometryJson.children.internal.owner' - | 'childrenGeometryJson.children.internal.type' - | 'childrenGeometryJson.children.parent.children' - | 'childrenGeometryJson.children.parent.id' - | 'childrenGeometryJson.crs.properties.name' - | 'childrenGeometryJson.crs.type' - | 'childrenGeometryJson.features' - | 'childrenGeometryJson.features.bbox' - | 'childrenGeometryJson.features.geometry.coordinates' - | 'childrenGeometryJson.features.geometry.type' - | 'childrenGeometryJson.features.properties.description_planning_phase' - | 'childrenGeometryJson.features.properties.detail_level' - | 'childrenGeometryJson.features.properties.discarded' - | 'childrenGeometryJson.features.properties.id' - | 'childrenGeometryJson.features.properties.id_rsv' - | 'childrenGeometryJson.features.properties.length' - | 'childrenGeometryJson.features.properties.planning_phase' - | 'childrenGeometryJson.features.properties.state' - | 'childrenGeometryJson.features.properties.variant' - | 'childrenGeometryJson.features.type' - | 'childrenGeometryJson.id' - | 'childrenGeometryJson.internal.content' - | 'childrenGeometryJson.internal.contentDigest' - | 'childrenGeometryJson.internal.contentFilePath' - | 'childrenGeometryJson.internal.description' - | 'childrenGeometryJson.internal.fieldOwners' - | 'childrenGeometryJson.internal.ignoreType' - | 'childrenGeometryJson.internal.mediaType' - | 'childrenGeometryJson.internal.owner' - | 'childrenGeometryJson.internal.type' - | 'childrenGeometryJson.jsonId' - | 'childrenGeometryJson.parent.children' - | 'childrenGeometryJson.parent.children.children' - | 'childrenGeometryJson.parent.children.id' - | 'childrenGeometryJson.parent.id' - | 'childrenGeometryJson.parent.internal.content' - | 'childrenGeometryJson.parent.internal.contentDigest' - | 'childrenGeometryJson.parent.internal.contentFilePath' - | 'childrenGeometryJson.parent.internal.description' - | 'childrenGeometryJson.parent.internal.fieldOwners' - | 'childrenGeometryJson.parent.internal.ignoreType' - | 'childrenGeometryJson.parent.internal.mediaType' - | 'childrenGeometryJson.parent.internal.owner' - | 'childrenGeometryJson.parent.internal.type' - | 'childrenGeometryJson.parent.parent.children' - | 'childrenGeometryJson.parent.parent.id' - | 'childrenGeometryJson.type' - | 'childrenImageSharp' - | 'childrenImageSharp.children' - | 'childrenImageSharp.children.children' - | 'childrenImageSharp.children.children.children' - | 'childrenImageSharp.children.children.id' - | 'childrenImageSharp.children.id' - | 'childrenImageSharp.children.internal.content' - | 'childrenImageSharp.children.internal.contentDigest' - | 'childrenImageSharp.children.internal.contentFilePath' - | 'childrenImageSharp.children.internal.description' - | 'childrenImageSharp.children.internal.fieldOwners' - | 'childrenImageSharp.children.internal.ignoreType' - | 'childrenImageSharp.children.internal.mediaType' - | 'childrenImageSharp.children.internal.owner' - | 'childrenImageSharp.children.internal.type' - | 'childrenImageSharp.children.parent.children' - | 'childrenImageSharp.children.parent.id' - | 'childrenImageSharp.fixed.aspectRatio' - | 'childrenImageSharp.fixed.base64' - | 'childrenImageSharp.fixed.height' - | 'childrenImageSharp.fixed.originalName' - | 'childrenImageSharp.fixed.src' - | 'childrenImageSharp.fixed.srcSet' - | 'childrenImageSharp.fixed.srcSetWebp' - | 'childrenImageSharp.fixed.srcWebp' - | 'childrenImageSharp.fixed.tracedSVG' - | 'childrenImageSharp.fixed.width' - | 'childrenImageSharp.fluid.aspectRatio' - | 'childrenImageSharp.fluid.base64' - | 'childrenImageSharp.fluid.originalImg' - | 'childrenImageSharp.fluid.originalName' - | 'childrenImageSharp.fluid.presentationHeight' - | 'childrenImageSharp.fluid.presentationWidth' - | 'childrenImageSharp.fluid.sizes' - | 'childrenImageSharp.fluid.src' - | 'childrenImageSharp.fluid.srcSet' - | 'childrenImageSharp.fluid.srcSetWebp' - | 'childrenImageSharp.fluid.srcWebp' - | 'childrenImageSharp.fluid.tracedSVG' - | 'childrenImageSharp.gatsbyImageData' - | 'childrenImageSharp.id' - | 'childrenImageSharp.internal.content' - | 'childrenImageSharp.internal.contentDigest' - | 'childrenImageSharp.internal.contentFilePath' - | 'childrenImageSharp.internal.description' - | 'childrenImageSharp.internal.fieldOwners' - | 'childrenImageSharp.internal.ignoreType' - | 'childrenImageSharp.internal.mediaType' - | 'childrenImageSharp.internal.owner' - | 'childrenImageSharp.internal.type' - | 'childrenImageSharp.original.height' - | 'childrenImageSharp.original.src' - | 'childrenImageSharp.original.width' - | 'childrenImageSharp.parent.children' - | 'childrenImageSharp.parent.children.children' - | 'childrenImageSharp.parent.children.id' - | 'childrenImageSharp.parent.id' - | 'childrenImageSharp.parent.internal.content' - | 'childrenImageSharp.parent.internal.contentDigest' - | 'childrenImageSharp.parent.internal.contentFilePath' - | 'childrenImageSharp.parent.internal.description' - | 'childrenImageSharp.parent.internal.fieldOwners' - | 'childrenImageSharp.parent.internal.ignoreType' - | 'childrenImageSharp.parent.internal.mediaType' - | 'childrenImageSharp.parent.internal.owner' - | 'childrenImageSharp.parent.internal.type' - | 'childrenImageSharp.parent.parent.children' - | 'childrenImageSharp.parent.parent.id' - | 'childrenImageSharp.resize.aspectRatio' - | 'childrenImageSharp.resize.height' - | 'childrenImageSharp.resize.originalName' - | 'childrenImageSharp.resize.src' - | 'childrenImageSharp.resize.tracedSVG' - | 'childrenImageSharp.resize.width' - | 'childrenMetaJson' - | 'childrenMetaJson.children' - | 'childrenMetaJson.children.children' - | 'childrenMetaJson.children.children.children' - | 'childrenMetaJson.children.children.id' - | 'childrenMetaJson.children.id' - | 'childrenMetaJson.children.internal.content' - | 'childrenMetaJson.children.internal.contentDigest' - | 'childrenMetaJson.children.internal.contentFilePath' - | 'childrenMetaJson.children.internal.description' - | 'childrenMetaJson.children.internal.fieldOwners' - | 'childrenMetaJson.children.internal.ignoreType' - | 'childrenMetaJson.children.internal.mediaType' - | 'childrenMetaJson.children.internal.owner' - | 'childrenMetaJson.children.internal.type' - | 'childrenMetaJson.children.parent.children' - | 'childrenMetaJson.children.parent.id' - | 'childrenMetaJson.cost' - | 'childrenMetaJson.gatsbyPath' - | 'childrenMetaJson.general.description' - | 'childrenMetaJson.general.from.city' - | 'childrenMetaJson.general.from.federalState' - | 'childrenMetaJson.general.length' - | 'childrenMetaJson.general.name' - | 'childrenMetaJson.general.ref' - | 'childrenMetaJson.general.source' - | 'childrenMetaJson.general.stand' - | 'childrenMetaJson.general.to.city' - | 'childrenMetaJson.general.to.federalState' - | 'childrenMetaJson.geoJson.bbox' - | 'childrenMetaJson.geoJson.children' - | 'childrenMetaJson.geoJson.children.children' - | 'childrenMetaJson.geoJson.children.id' - | 'childrenMetaJson.geoJson.crs.type' - | 'childrenMetaJson.geoJson.features' - | 'childrenMetaJson.geoJson.features.bbox' - | 'childrenMetaJson.geoJson.features.type' - | 'childrenMetaJson.geoJson.id' - | 'childrenMetaJson.geoJson.internal.content' - | 'childrenMetaJson.geoJson.internal.contentDigest' - | 'childrenMetaJson.geoJson.internal.contentFilePath' - | 'childrenMetaJson.geoJson.internal.description' - | 'childrenMetaJson.geoJson.internal.fieldOwners' - | 'childrenMetaJson.geoJson.internal.ignoreType' - | 'childrenMetaJson.geoJson.internal.mediaType' - | 'childrenMetaJson.geoJson.internal.owner' - | 'childrenMetaJson.geoJson.internal.type' - | 'childrenMetaJson.geoJson.jsonId' - | 'childrenMetaJson.geoJson.parent.children' - | 'childrenMetaJson.geoJson.parent.id' - | 'childrenMetaJson.geoJson.type' - | 'childrenMetaJson.id' - | 'childrenMetaJson.internal.content' - | 'childrenMetaJson.internal.contentDigest' - | 'childrenMetaJson.internal.contentFilePath' - | 'childrenMetaJson.internal.description' - | 'childrenMetaJson.internal.fieldOwners' - | 'childrenMetaJson.internal.ignoreType' - | 'childrenMetaJson.internal.mediaType' - | 'childrenMetaJson.internal.owner' - | 'childrenMetaJson.internal.type' - | 'childrenMetaJson.jsonId' - | 'childrenMetaJson.parent.children' - | 'childrenMetaJson.parent.children.children' - | 'childrenMetaJson.parent.children.id' - | 'childrenMetaJson.parent.id' - | 'childrenMetaJson.parent.internal.content' - | 'childrenMetaJson.parent.internal.contentDigest' - | 'childrenMetaJson.parent.internal.contentFilePath' - | 'childrenMetaJson.parent.internal.description' - | 'childrenMetaJson.parent.internal.fieldOwners' - | 'childrenMetaJson.parent.internal.ignoreType' - | 'childrenMetaJson.parent.internal.mediaType' - | 'childrenMetaJson.parent.internal.owner' - | 'childrenMetaJson.parent.internal.type' - | 'childrenMetaJson.parent.parent.children' - | 'childrenMetaJson.parent.parent.id' - | 'childrenMetaJson.references.website' - | 'childrenMetaJson.stakeholders' - | 'childrenMetaJson.stakeholders.name' - | 'childrenMetaJson.stakeholders.roles' - | 'childrenMetaJson.state' - | 'childrenMetaJson.staticMap.absolutePath' - | 'childrenMetaJson.staticMap.accessTime' - | 'childrenMetaJson.staticMap.atime' - | 'childrenMetaJson.staticMap.atimeMs' - | 'childrenMetaJson.staticMap.base' - | 'childrenMetaJson.staticMap.birthTime' - | 'childrenMetaJson.staticMap.birthtime' - | 'childrenMetaJson.staticMap.birthtimeMs' - | 'childrenMetaJson.staticMap.blksize' - | 'childrenMetaJson.staticMap.blocks' - | 'childrenMetaJson.staticMap.changeTime' - | 'childrenMetaJson.staticMap.childGeometryJson.bbox' - | 'childrenMetaJson.staticMap.childGeometryJson.children' - | 'childrenMetaJson.staticMap.childGeometryJson.features' - | 'childrenMetaJson.staticMap.childGeometryJson.id' - | 'childrenMetaJson.staticMap.childGeometryJson.jsonId' - | 'childrenMetaJson.staticMap.childGeometryJson.type' - | 'childrenMetaJson.staticMap.childImageSharp.children' - | 'childrenMetaJson.staticMap.childImageSharp.gatsbyImageData' - | 'childrenMetaJson.staticMap.childImageSharp.id' - | 'childrenMetaJson.staticMap.childMetaJson.children' - | 'childrenMetaJson.staticMap.childMetaJson.cost' - | 'childrenMetaJson.staticMap.childMetaJson.gatsbyPath' - | 'childrenMetaJson.staticMap.childMetaJson.id' - | 'childrenMetaJson.staticMap.childMetaJson.jsonId' - | 'childrenMetaJson.staticMap.childMetaJson.stakeholders' - | 'childrenMetaJson.staticMap.childMetaJson.state' - | 'childrenMetaJson.staticMap.children' - | 'childrenMetaJson.staticMap.childrenGeometryJson' - | 'childrenMetaJson.staticMap.childrenGeometryJson.bbox' - | 'childrenMetaJson.staticMap.childrenGeometryJson.children' - | 'childrenMetaJson.staticMap.childrenGeometryJson.features' - | 'childrenMetaJson.staticMap.childrenGeometryJson.id' - | 'childrenMetaJson.staticMap.childrenGeometryJson.jsonId' - | 'childrenMetaJson.staticMap.childrenGeometryJson.type' - | 'childrenMetaJson.staticMap.childrenImageSharp' - | 'childrenMetaJson.staticMap.childrenImageSharp.children' - | 'childrenMetaJson.staticMap.childrenImageSharp.gatsbyImageData' - | 'childrenMetaJson.staticMap.childrenImageSharp.id' - | 'childrenMetaJson.staticMap.childrenMetaJson' - | 'childrenMetaJson.staticMap.childrenMetaJson.children' - | 'childrenMetaJson.staticMap.childrenMetaJson.cost' - | 'childrenMetaJson.staticMap.childrenMetaJson.gatsbyPath' - | 'childrenMetaJson.staticMap.childrenMetaJson.id' - | 'childrenMetaJson.staticMap.childrenMetaJson.jsonId' - | 'childrenMetaJson.staticMap.childrenMetaJson.stakeholders' - | 'childrenMetaJson.staticMap.childrenMetaJson.state' - | 'childrenMetaJson.staticMap.children.children' - | 'childrenMetaJson.staticMap.children.id' - | 'childrenMetaJson.staticMap.ctime' - | 'childrenMetaJson.staticMap.ctimeMs' - | 'childrenMetaJson.staticMap.dev' - | 'childrenMetaJson.staticMap.dir' - | 'childrenMetaJson.staticMap.ext' - | 'childrenMetaJson.staticMap.extension' - | 'childrenMetaJson.staticMap.gid' - | 'childrenMetaJson.staticMap.hash' - | 'childrenMetaJson.staticMap.id' - | 'childrenMetaJson.staticMap.ino' - | 'childrenMetaJson.staticMap.internal.content' - | 'childrenMetaJson.staticMap.internal.contentDigest' - | 'childrenMetaJson.staticMap.internal.contentFilePath' - | 'childrenMetaJson.staticMap.internal.description' - | 'childrenMetaJson.staticMap.internal.fieldOwners' - | 'childrenMetaJson.staticMap.internal.ignoreType' - | 'childrenMetaJson.staticMap.internal.mediaType' - | 'childrenMetaJson.staticMap.internal.owner' - | 'childrenMetaJson.staticMap.internal.type' - | 'childrenMetaJson.staticMap.mode' - | 'childrenMetaJson.staticMap.modifiedTime' - | 'childrenMetaJson.staticMap.mtime' - | 'childrenMetaJson.staticMap.mtimeMs' - | 'childrenMetaJson.staticMap.name' - | 'childrenMetaJson.staticMap.nlink' - | 'childrenMetaJson.staticMap.parent.children' - | 'childrenMetaJson.staticMap.parent.id' - | 'childrenMetaJson.staticMap.prettySize' - | 'childrenMetaJson.staticMap.publicURL' - | 'childrenMetaJson.staticMap.rdev' - | 'childrenMetaJson.staticMap.relativeDirectory' - | 'childrenMetaJson.staticMap.relativePath' - | 'childrenMetaJson.staticMap.root' - | 'childrenMetaJson.staticMap.size' - | 'childrenMetaJson.staticMap.sourceInstanceName' - | 'childrenMetaJson.staticMap.uid' - | 'children.children' - | 'children.children.children' - | 'children.children.children.children' - | 'children.children.children.id' - | 'children.children.id' - | 'children.children.internal.content' - | 'children.children.internal.contentDigest' - | 'children.children.internal.contentFilePath' - | 'children.children.internal.description' - | 'children.children.internal.fieldOwners' - | 'children.children.internal.ignoreType' - | 'children.children.internal.mediaType' - | 'children.children.internal.owner' - | 'children.children.internal.type' - | 'children.children.parent.children' - | 'children.children.parent.id' - | 'children.id' - | 'children.internal.content' - | 'children.internal.contentDigest' - | 'children.internal.contentFilePath' - | 'children.internal.description' - | 'children.internal.fieldOwners' - | 'children.internal.ignoreType' - | 'children.internal.mediaType' - | 'children.internal.owner' - | 'children.internal.type' - | 'children.parent.children' - | 'children.parent.children.children' - | 'children.parent.children.id' - | 'children.parent.id' - | 'children.parent.internal.content' - | 'children.parent.internal.contentDigest' - | 'children.parent.internal.contentFilePath' - | 'children.parent.internal.description' - | 'children.parent.internal.fieldOwners' - | 'children.parent.internal.ignoreType' - | 'children.parent.internal.mediaType' - | 'children.parent.internal.owner' - | 'children.parent.internal.type' - | 'children.parent.parent.children' - | 'children.parent.parent.id' - | 'ctime' - | 'ctimeMs' - | 'dev' - | 'dir' - | 'ext' - | 'extension' - | 'gid' - | 'hash' - | 'id' - | 'ino' - | 'internal.content' - | 'internal.contentDigest' - | 'internal.contentFilePath' - | 'internal.description' - | 'internal.fieldOwners' - | 'internal.ignoreType' - | 'internal.mediaType' - | 'internal.owner' - | 'internal.type' - | 'mode' - | 'modifiedTime' - | 'mtime' - | 'mtimeMs' - | 'name' - | 'nlink' - | 'parent.children' - | 'parent.children.children' - | 'parent.children.children.children' - | 'parent.children.children.id' - | 'parent.children.id' - | 'parent.children.internal.content' - | 'parent.children.internal.contentDigest' - | 'parent.children.internal.contentFilePath' - | 'parent.children.internal.description' - | 'parent.children.internal.fieldOwners' - | 'parent.children.internal.ignoreType' - | 'parent.children.internal.mediaType' - | 'parent.children.internal.owner' - | 'parent.children.internal.type' - | 'parent.children.parent.children' - | 'parent.children.parent.id' - | 'parent.id' - | 'parent.internal.content' - | 'parent.internal.contentDigest' - | 'parent.internal.contentFilePath' - | 'parent.internal.description' - | 'parent.internal.fieldOwners' - | 'parent.internal.ignoreType' - | 'parent.internal.mediaType' - | 'parent.internal.owner' - | 'parent.internal.type' - | 'parent.parent.children' - | 'parent.parent.children.children' - | 'parent.parent.children.id' - | 'parent.parent.id' - | 'parent.parent.internal.content' - | 'parent.parent.internal.contentDigest' - | 'parent.parent.internal.contentFilePath' - | 'parent.parent.internal.description' - | 'parent.parent.internal.fieldOwners' - | 'parent.parent.internal.ignoreType' - | 'parent.parent.internal.mediaType' - | 'parent.parent.internal.owner' - | 'parent.parent.internal.type' - | 'parent.parent.parent.children' - | 'parent.parent.parent.id' - | 'prettySize' - | 'publicURL' - | 'rdev' - | 'relativeDirectory' - | 'relativePath' - | 'root' - | 'size' - | 'sourceInstanceName' - | 'uid'; - - 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 childGeometryJson: InputMaybe; - readonly childImageSharp: InputMaybe; - readonly childMetaJson: InputMaybe; - readonly children: InputMaybe; - readonly childrenGeometryJson: InputMaybe; - readonly childrenImageSharp: InputMaybe; - readonly childrenMetaJson: InputMaybe; - readonly ctime: InputMaybe; - readonly ctimeMs: InputMaybe; - readonly dev: InputMaybe; - readonly dir: InputMaybe; - readonly ext: InputMaybe; - readonly extension: InputMaybe; - readonly gid: InputMaybe; - readonly hash: 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 publicURL: InputMaybe; - readonly rdev: InputMaybe; - readonly relativeDirectory: InputMaybe; - readonly relativePath: InputMaybe; - readonly root: InputMaybe; - readonly size: InputMaybe; - readonly sourceInstanceName: InputMaybe; - readonly uid: 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: FileFieldsEnum; - }; - - type FileGroupConnection_groupArgs = { - field: FileFieldsEnum; - limit: InputMaybe; - skip: InputMaybe; - }; - - type FileGroupConnection_maxArgs = { - field: FileFieldsEnum; - }; - - type FileGroupConnection_minArgs = { - field: FileFieldsEnum; - }; - - type FileGroupConnection_sumArgs = { - field: FileFieldsEnum; - }; - - type FileSortInput = { - readonly fields: InputMaybe>>; - readonly order: 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 GeometryJson = Node & { - readonly bbox: Maybe>>; - readonly children: ReadonlyArray; - readonly crs: Maybe; - readonly features: Maybe>>; - readonly id: Scalars['ID']; - readonly internal: Internal; - readonly jsonId: Maybe; - readonly parent: Maybe; - readonly type: Maybe; - }; - - type GeometryJsonConnection = { - 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 GeometryJsonConnection_distinctArgs = { - field: GeometryJsonFieldsEnum; - }; - - type GeometryJsonConnection_groupArgs = { - field: GeometryJsonFieldsEnum; - limit: InputMaybe; - skip: InputMaybe; - }; - - type GeometryJsonConnection_maxArgs = { - field: GeometryJsonFieldsEnum; - }; - - type GeometryJsonConnection_minArgs = { - field: GeometryJsonFieldsEnum; - }; - - type GeometryJsonConnection_sumArgs = { - field: GeometryJsonFieldsEnum; - }; - - type GeometryJsonCrs = { - readonly properties: Maybe; - readonly type: Maybe; - }; - - type GeometryJsonCrsFilterInput = { - readonly properties: InputMaybe; - readonly type: InputMaybe; - }; - - type GeometryJsonCrsProperties = { - readonly name: Maybe; - }; - - type GeometryJsonCrsPropertiesFilterInput = { - readonly name: InputMaybe; - }; - - type GeometryJsonEdge = { - readonly next: Maybe; - readonly node: GeometryJson; - readonly previous: Maybe; - }; - - type GeometryJsonFeatures = { - readonly bbox: Maybe>>; - readonly geometry: Maybe; - readonly properties: Maybe; - readonly type: Maybe; - }; - - type GeometryJsonFeaturesFilterInput = { - readonly bbox: InputMaybe; - readonly geometry: InputMaybe; - readonly properties: InputMaybe; - readonly type: InputMaybe; - }; - - type GeometryJsonFeaturesFilterListInput = { - readonly elemMatch: InputMaybe; - }; - - type GeometryJsonFeaturesGeometry = { - readonly coordinates: Maybe< - ReadonlyArray< - Maybe>>>> - > - >; - readonly type: Maybe; - }; - - type GeometryJsonFeaturesGeometryFilterInput = { - readonly coordinates: InputMaybe; - readonly type: InputMaybe; - }; - - type GeometryJsonFeaturesProperties = { - readonly description_planning_phase: Maybe; - readonly detail_level: Maybe; - readonly discarded: Maybe; - readonly id: Maybe; - readonly id_rsv: Maybe; - readonly length: Maybe; - readonly planning_phase: Maybe; - readonly state: Maybe; - readonly variant: Maybe; - }; - - type GeometryJsonFeaturesPropertiesFilterInput = { - readonly description_planning_phase: InputMaybe; - readonly detail_level: InputMaybe; - readonly discarded: InputMaybe; - readonly id: InputMaybe; - readonly id_rsv: InputMaybe; - readonly length: InputMaybe; - readonly planning_phase: InputMaybe; - readonly state: InputMaybe; - readonly variant: InputMaybe; - }; - - type GeometryJsonFieldsEnum = - | 'bbox' - | 'children' - | 'children.children' - | 'children.children.children' - | 'children.children.children.children' - | 'children.children.children.id' - | 'children.children.id' - | 'children.children.internal.content' - | 'children.children.internal.contentDigest' - | 'children.children.internal.contentFilePath' - | 'children.children.internal.description' - | 'children.children.internal.fieldOwners' - | 'children.children.internal.ignoreType' - | 'children.children.internal.mediaType' - | 'children.children.internal.owner' - | 'children.children.internal.type' - | 'children.children.parent.children' - | 'children.children.parent.id' - | 'children.id' - | 'children.internal.content' - | 'children.internal.contentDigest' - | 'children.internal.contentFilePath' - | 'children.internal.description' - | 'children.internal.fieldOwners' - | 'children.internal.ignoreType' - | 'children.internal.mediaType' - | 'children.internal.owner' - | 'children.internal.type' - | 'children.parent.children' - | 'children.parent.children.children' - | 'children.parent.children.id' - | 'children.parent.id' - | 'children.parent.internal.content' - | 'children.parent.internal.contentDigest' - | 'children.parent.internal.contentFilePath' - | 'children.parent.internal.description' - | 'children.parent.internal.fieldOwners' - | 'children.parent.internal.ignoreType' - | 'children.parent.internal.mediaType' - | 'children.parent.internal.owner' - | 'children.parent.internal.type' - | 'children.parent.parent.children' - | 'children.parent.parent.id' - | 'crs.properties.name' - | 'crs.type' - | 'features' - | 'features.bbox' - | 'features.geometry.coordinates' - | 'features.geometry.type' - | 'features.properties.description_planning_phase' - | 'features.properties.detail_level' - | 'features.properties.discarded' - | 'features.properties.id' - | 'features.properties.id_rsv' - | 'features.properties.length' - | 'features.properties.planning_phase' - | 'features.properties.state' - | 'features.properties.variant' - | 'features.type' - | 'id' - | 'internal.content' - | 'internal.contentDigest' - | 'internal.contentFilePath' - | 'internal.description' - | 'internal.fieldOwners' - | 'internal.ignoreType' - | 'internal.mediaType' - | 'internal.owner' - | 'internal.type' - | 'jsonId' - | 'parent.children' - | 'parent.children.children' - | 'parent.children.children.children' - | 'parent.children.children.id' - | 'parent.children.id' - | 'parent.children.internal.content' - | 'parent.children.internal.contentDigest' - | 'parent.children.internal.contentFilePath' - | 'parent.children.internal.description' - | 'parent.children.internal.fieldOwners' - | 'parent.children.internal.ignoreType' - | 'parent.children.internal.mediaType' - | 'parent.children.internal.owner' - | 'parent.children.internal.type' - | 'parent.children.parent.children' - | 'parent.children.parent.id' - | 'parent.id' - | 'parent.internal.content' - | 'parent.internal.contentDigest' - | 'parent.internal.contentFilePath' - | 'parent.internal.description' - | 'parent.internal.fieldOwners' - | 'parent.internal.ignoreType' - | 'parent.internal.mediaType' - | 'parent.internal.owner' - | 'parent.internal.type' - | 'parent.parent.children' - | 'parent.parent.children.children' - | 'parent.parent.children.id' - | 'parent.parent.id' - | 'parent.parent.internal.content' - | 'parent.parent.internal.contentDigest' - | 'parent.parent.internal.contentFilePath' - | 'parent.parent.internal.description' - | 'parent.parent.internal.fieldOwners' - | 'parent.parent.internal.ignoreType' - | 'parent.parent.internal.mediaType' - | 'parent.parent.internal.owner' - | 'parent.parent.internal.type' - | 'parent.parent.parent.children' - | 'parent.parent.parent.id' - | 'type'; - - type GeometryJsonFilterInput = { - readonly bbox: InputMaybe; - readonly children: InputMaybe; - readonly crs: InputMaybe; - readonly features: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly jsonId: InputMaybe; - readonly parent: InputMaybe; - readonly type: InputMaybe; - }; - - type GeometryJsonFilterListInput = { - readonly elemMatch: InputMaybe; - }; - - type GeometryJsonGroupConnection = { - 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 GeometryJsonGroupConnection_distinctArgs = { - field: GeometryJsonFieldsEnum; - }; - - type GeometryJsonGroupConnection_groupArgs = { - field: GeometryJsonFieldsEnum; - limit: InputMaybe; - skip: InputMaybe; - }; - - type GeometryJsonGroupConnection_maxArgs = { - field: GeometryJsonFieldsEnum; - }; - - type GeometryJsonGroupConnection_minArgs = { - field: GeometryJsonFieldsEnum; - }; - - type GeometryJsonGroupConnection_sumArgs = { - field: GeometryJsonFieldsEnum; - }; - - type GeometryJsonSortInput = { - readonly fields: InputMaybe< - ReadonlyArray> - >; - readonly order: InputMaybe>>; - }; - - 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: ImageSharpFieldsEnum; - }; - - type ImageSharpConnection_groupArgs = { - field: ImageSharpFieldsEnum; - limit: InputMaybe; - skip: InputMaybe; - }; - - type ImageSharpConnection_maxArgs = { - field: ImageSharpFieldsEnum; - }; - - type ImageSharpConnection_minArgs = { - field: ImageSharpFieldsEnum; - }; - - type ImageSharpConnection_sumArgs = { - field: ImageSharpFieldsEnum; - }; - - type ImageSharpEdge = { - readonly next: Maybe; - readonly node: ImageSharp; - readonly previous: Maybe; - }; - - type ImageSharpFieldsEnum = - | 'children' - | 'children.children' - | 'children.children.children' - | 'children.children.children.children' - | 'children.children.children.id' - | 'children.children.id' - | 'children.children.internal.content' - | 'children.children.internal.contentDigest' - | 'children.children.internal.contentFilePath' - | 'children.children.internal.description' - | 'children.children.internal.fieldOwners' - | 'children.children.internal.ignoreType' - | 'children.children.internal.mediaType' - | 'children.children.internal.owner' - | 'children.children.internal.type' - | 'children.children.parent.children' - | 'children.children.parent.id' - | 'children.id' - | 'children.internal.content' - | 'children.internal.contentDigest' - | 'children.internal.contentFilePath' - | 'children.internal.description' - | 'children.internal.fieldOwners' - | 'children.internal.ignoreType' - | 'children.internal.mediaType' - | 'children.internal.owner' - | 'children.internal.type' - | 'children.parent.children' - | 'children.parent.children.children' - | 'children.parent.children.id' - | 'children.parent.id' - | 'children.parent.internal.content' - | 'children.parent.internal.contentDigest' - | 'children.parent.internal.contentFilePath' - | 'children.parent.internal.description' - | 'children.parent.internal.fieldOwners' - | 'children.parent.internal.ignoreType' - | 'children.parent.internal.mediaType' - | 'children.parent.internal.owner' - | 'children.parent.internal.type' - | 'children.parent.parent.children' - | 'children.parent.parent.id' - | 'fixed.aspectRatio' - | 'fixed.base64' - | 'fixed.height' - | 'fixed.originalName' - | 'fixed.src' - | 'fixed.srcSet' - | 'fixed.srcSetWebp' - | 'fixed.srcWebp' - | 'fixed.tracedSVG' - | 'fixed.width' - | 'fluid.aspectRatio' - | 'fluid.base64' - | 'fluid.originalImg' - | 'fluid.originalName' - | 'fluid.presentationHeight' - | 'fluid.presentationWidth' - | 'fluid.sizes' - | 'fluid.src' - | 'fluid.srcSet' - | 'fluid.srcSetWebp' - | 'fluid.srcWebp' - | 'fluid.tracedSVG' - | 'gatsbyImageData' - | 'id' - | 'internal.content' - | 'internal.contentDigest' - | 'internal.contentFilePath' - | 'internal.description' - | 'internal.fieldOwners' - | 'internal.ignoreType' - | 'internal.mediaType' - | 'internal.owner' - | 'internal.type' - | 'original.height' - | 'original.src' - | 'original.width' - | 'parent.children' - | 'parent.children.children' - | 'parent.children.children.children' - | 'parent.children.children.id' - | 'parent.children.id' - | 'parent.children.internal.content' - | 'parent.children.internal.contentDigest' - | 'parent.children.internal.contentFilePath' - | 'parent.children.internal.description' - | 'parent.children.internal.fieldOwners' - | 'parent.children.internal.ignoreType' - | 'parent.children.internal.mediaType' - | 'parent.children.internal.owner' - | 'parent.children.internal.type' - | 'parent.children.parent.children' - | 'parent.children.parent.id' - | 'parent.id' - | 'parent.internal.content' - | 'parent.internal.contentDigest' - | 'parent.internal.contentFilePath' - | 'parent.internal.description' - | 'parent.internal.fieldOwners' - | 'parent.internal.ignoreType' - | 'parent.internal.mediaType' - | 'parent.internal.owner' - | 'parent.internal.type' - | 'parent.parent.children' - | 'parent.parent.children.children' - | 'parent.parent.children.id' - | 'parent.parent.id' - | 'parent.parent.internal.content' - | 'parent.parent.internal.contentDigest' - | 'parent.parent.internal.contentFilePath' - | 'parent.parent.internal.description' - | 'parent.parent.internal.fieldOwners' - | 'parent.parent.internal.ignoreType' - | 'parent.parent.internal.mediaType' - | 'parent.parent.internal.owner' - | 'parent.parent.internal.type' - | 'parent.parent.parent.children' - | 'parent.parent.parent.id' - | 'resize.aspectRatio' - | 'resize.height' - | 'resize.originalName' - | 'resize.src' - | 'resize.tracedSVG' - | 'resize.width'; - - 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 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 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 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 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: ImageSharpFieldsEnum; - }; - - type ImageSharpGroupConnection_groupArgs = { - field: ImageSharpFieldsEnum; - limit: InputMaybe; - skip: InputMaybe; - }; - - type ImageSharpGroupConnection_maxArgs = { - field: ImageSharpFieldsEnum; - }; - - type ImageSharpGroupConnection_minArgs = { - field: ImageSharpFieldsEnum; - }; - - type ImageSharpGroupConnection_sumArgs = { - field: ImageSharpFieldsEnum; - }; - - type ImageSharpOriginal = { - readonly height: Maybe; - readonly src: Maybe; - readonly width: Maybe; - }; - - type ImageSharpOriginalFilterInput = { - 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 ImageSharpResizeFilterInput = { - readonly aspectRatio: InputMaybe; - readonly height: InputMaybe; - readonly originalName: InputMaybe; - readonly src: InputMaybe; - readonly tracedSVG: InputMaybe; - readonly width: InputMaybe; - }; - - type ImageSharpSortInput = { - readonly fields: InputMaybe< - ReadonlyArray> - >; - readonly order: 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 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 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 MetaJson = Node & { - readonly children: ReadonlyArray; - readonly cost: Maybe; - readonly gatsbyPath: Maybe; - readonly general: Maybe; - readonly geoJson: GeometryJson; - readonly id: Scalars['ID']; - readonly internal: Internal; - readonly jsonId: Maybe; - readonly parent: Maybe; - readonly references: Maybe; - readonly stakeholders: Maybe>>; - readonly state: Maybe; - readonly staticMap: File; - }; - - type MetaJson_gatsbyPathArgs = { - filePath: InputMaybe; - }; - - type MetaJsonConnection = { - 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 MetaJsonConnection_distinctArgs = { - field: MetaJsonFieldsEnum; - }; - - type MetaJsonConnection_groupArgs = { - field: MetaJsonFieldsEnum; - limit: InputMaybe; - skip: InputMaybe; - }; - - type MetaJsonConnection_maxArgs = { - field: MetaJsonFieldsEnum; - }; - - type MetaJsonConnection_minArgs = { - field: MetaJsonFieldsEnum; - }; - - type MetaJsonConnection_sumArgs = { - field: MetaJsonFieldsEnum; - }; - - type MetaJsonEdge = { - readonly next: Maybe; - readonly node: MetaJson; - readonly previous: Maybe; - }; - - type MetaJsonFieldsEnum = - | 'children' - | 'children.children' - | 'children.children.children' - | 'children.children.children.children' - | 'children.children.children.id' - | 'children.children.id' - | 'children.children.internal.content' - | 'children.children.internal.contentDigest' - | 'children.children.internal.contentFilePath' - | 'children.children.internal.description' - | 'children.children.internal.fieldOwners' - | 'children.children.internal.ignoreType' - | 'children.children.internal.mediaType' - | 'children.children.internal.owner' - | 'children.children.internal.type' - | 'children.children.parent.children' - | 'children.children.parent.id' - | 'children.id' - | 'children.internal.content' - | 'children.internal.contentDigest' - | 'children.internal.contentFilePath' - | 'children.internal.description' - | 'children.internal.fieldOwners' - | 'children.internal.ignoreType' - | 'children.internal.mediaType' - | 'children.internal.owner' - | 'children.internal.type' - | 'children.parent.children' - | 'children.parent.children.children' - | 'children.parent.children.id' - | 'children.parent.id' - | 'children.parent.internal.content' - | 'children.parent.internal.contentDigest' - | 'children.parent.internal.contentFilePath' - | 'children.parent.internal.description' - | 'children.parent.internal.fieldOwners' - | 'children.parent.internal.ignoreType' - | 'children.parent.internal.mediaType' - | 'children.parent.internal.owner' - | 'children.parent.internal.type' - | 'children.parent.parent.children' - | 'children.parent.parent.id' - | 'cost' - | 'gatsbyPath' - | 'general.description' - | 'general.from.city' - | 'general.from.federalState' - | 'general.length' - | 'general.name' - | 'general.ref' - | 'general.source' - | 'general.stand' - | 'general.to.city' - | 'general.to.federalState' - | 'geoJson.bbox' - | 'geoJson.children' - | 'geoJson.children.children' - | 'geoJson.children.children.children' - | 'geoJson.children.children.id' - | 'geoJson.children.id' - | 'geoJson.children.internal.content' - | 'geoJson.children.internal.contentDigest' - | 'geoJson.children.internal.contentFilePath' - | 'geoJson.children.internal.description' - | 'geoJson.children.internal.fieldOwners' - | 'geoJson.children.internal.ignoreType' - | 'geoJson.children.internal.mediaType' - | 'geoJson.children.internal.owner' - | 'geoJson.children.internal.type' - | 'geoJson.children.parent.children' - | 'geoJson.children.parent.id' - | 'geoJson.crs.properties.name' - | 'geoJson.crs.type' - | 'geoJson.features' - | 'geoJson.features.bbox' - | 'geoJson.features.geometry.coordinates' - | 'geoJson.features.geometry.type' - | 'geoJson.features.properties.description_planning_phase' - | 'geoJson.features.properties.detail_level' - | 'geoJson.features.properties.discarded' - | 'geoJson.features.properties.id' - | 'geoJson.features.properties.id_rsv' - | 'geoJson.features.properties.length' - | 'geoJson.features.properties.planning_phase' - | 'geoJson.features.properties.state' - | 'geoJson.features.properties.variant' - | 'geoJson.features.type' - | 'geoJson.id' - | 'geoJson.internal.content' - | 'geoJson.internal.contentDigest' - | 'geoJson.internal.contentFilePath' - | 'geoJson.internal.description' - | 'geoJson.internal.fieldOwners' - | 'geoJson.internal.ignoreType' - | 'geoJson.internal.mediaType' - | 'geoJson.internal.owner' - | 'geoJson.internal.type' - | 'geoJson.jsonId' - | 'geoJson.parent.children' - | 'geoJson.parent.children.children' - | 'geoJson.parent.children.id' - | 'geoJson.parent.id' - | 'geoJson.parent.internal.content' - | 'geoJson.parent.internal.contentDigest' - | 'geoJson.parent.internal.contentFilePath' - | 'geoJson.parent.internal.description' - | 'geoJson.parent.internal.fieldOwners' - | 'geoJson.parent.internal.ignoreType' - | 'geoJson.parent.internal.mediaType' - | 'geoJson.parent.internal.owner' - | 'geoJson.parent.internal.type' - | 'geoJson.parent.parent.children' - | 'geoJson.parent.parent.id' - | 'geoJson.type' - | 'id' - | 'internal.content' - | 'internal.contentDigest' - | 'internal.contentFilePath' - | 'internal.description' - | 'internal.fieldOwners' - | 'internal.ignoreType' - | 'internal.mediaType' - | 'internal.owner' - | 'internal.type' - | 'jsonId' - | 'parent.children' - | 'parent.children.children' - | 'parent.children.children.children' - | 'parent.children.children.id' - | 'parent.children.id' - | 'parent.children.internal.content' - | 'parent.children.internal.contentDigest' - | 'parent.children.internal.contentFilePath' - | 'parent.children.internal.description' - | 'parent.children.internal.fieldOwners' - | 'parent.children.internal.ignoreType' - | 'parent.children.internal.mediaType' - | 'parent.children.internal.owner' - | 'parent.children.internal.type' - | 'parent.children.parent.children' - | 'parent.children.parent.id' - | 'parent.id' - | 'parent.internal.content' - | 'parent.internal.contentDigest' - | 'parent.internal.contentFilePath' - | 'parent.internal.description' - | 'parent.internal.fieldOwners' - | 'parent.internal.ignoreType' - | 'parent.internal.mediaType' - | 'parent.internal.owner' - | 'parent.internal.type' - | 'parent.parent.children' - | 'parent.parent.children.children' - | 'parent.parent.children.id' - | 'parent.parent.id' - | 'parent.parent.internal.content' - | 'parent.parent.internal.contentDigest' - | 'parent.parent.internal.contentFilePath' - | 'parent.parent.internal.description' - | 'parent.parent.internal.fieldOwners' - | 'parent.parent.internal.ignoreType' - | 'parent.parent.internal.mediaType' - | 'parent.parent.internal.owner' - | 'parent.parent.internal.type' - | 'parent.parent.parent.children' - | 'parent.parent.parent.id' - | 'references.website' - | 'stakeholders' - | 'stakeholders.name' - | 'stakeholders.roles' - | 'state' - | 'staticMap.absolutePath' - | 'staticMap.accessTime' - | 'staticMap.atime' - | 'staticMap.atimeMs' - | 'staticMap.base' - | 'staticMap.birthTime' - | 'staticMap.birthtime' - | 'staticMap.birthtimeMs' - | 'staticMap.blksize' - | 'staticMap.blocks' - | 'staticMap.changeTime' - | 'staticMap.childGeometryJson.bbox' - | 'staticMap.childGeometryJson.children' - | 'staticMap.childGeometryJson.children.children' - | 'staticMap.childGeometryJson.children.id' - | 'staticMap.childGeometryJson.crs.type' - | 'staticMap.childGeometryJson.features' - | 'staticMap.childGeometryJson.features.bbox' - | 'staticMap.childGeometryJson.features.type' - | 'staticMap.childGeometryJson.id' - | 'staticMap.childGeometryJson.internal.content' - | 'staticMap.childGeometryJson.internal.contentDigest' - | 'staticMap.childGeometryJson.internal.contentFilePath' - | 'staticMap.childGeometryJson.internal.description' - | 'staticMap.childGeometryJson.internal.fieldOwners' - | 'staticMap.childGeometryJson.internal.ignoreType' - | 'staticMap.childGeometryJson.internal.mediaType' - | 'staticMap.childGeometryJson.internal.owner' - | 'staticMap.childGeometryJson.internal.type' - | 'staticMap.childGeometryJson.jsonId' - | 'staticMap.childGeometryJson.parent.children' - | 'staticMap.childGeometryJson.parent.id' - | 'staticMap.childGeometryJson.type' - | 'staticMap.childImageSharp.children' - | 'staticMap.childImageSharp.children.children' - | 'staticMap.childImageSharp.children.id' - | 'staticMap.childImageSharp.fixed.aspectRatio' - | 'staticMap.childImageSharp.fixed.base64' - | 'staticMap.childImageSharp.fixed.height' - | 'staticMap.childImageSharp.fixed.originalName' - | 'staticMap.childImageSharp.fixed.src' - | 'staticMap.childImageSharp.fixed.srcSet' - | 'staticMap.childImageSharp.fixed.srcSetWebp' - | 'staticMap.childImageSharp.fixed.srcWebp' - | 'staticMap.childImageSharp.fixed.tracedSVG' - | 'staticMap.childImageSharp.fixed.width' - | 'staticMap.childImageSharp.fluid.aspectRatio' - | 'staticMap.childImageSharp.fluid.base64' - | 'staticMap.childImageSharp.fluid.originalImg' - | 'staticMap.childImageSharp.fluid.originalName' - | 'staticMap.childImageSharp.fluid.presentationHeight' - | 'staticMap.childImageSharp.fluid.presentationWidth' - | 'staticMap.childImageSharp.fluid.sizes' - | 'staticMap.childImageSharp.fluid.src' - | 'staticMap.childImageSharp.fluid.srcSet' - | 'staticMap.childImageSharp.fluid.srcSetWebp' - | 'staticMap.childImageSharp.fluid.srcWebp' - | 'staticMap.childImageSharp.fluid.tracedSVG' - | 'staticMap.childImageSharp.gatsbyImageData' - | 'staticMap.childImageSharp.id' - | 'staticMap.childImageSharp.internal.content' - | 'staticMap.childImageSharp.internal.contentDigest' - | 'staticMap.childImageSharp.internal.contentFilePath' - | 'staticMap.childImageSharp.internal.description' - | 'staticMap.childImageSharp.internal.fieldOwners' - | 'staticMap.childImageSharp.internal.ignoreType' - | 'staticMap.childImageSharp.internal.mediaType' - | 'staticMap.childImageSharp.internal.owner' - | 'staticMap.childImageSharp.internal.type' - | 'staticMap.childImageSharp.original.height' - | 'staticMap.childImageSharp.original.src' - | 'staticMap.childImageSharp.original.width' - | 'staticMap.childImageSharp.parent.children' - | 'staticMap.childImageSharp.parent.id' - | 'staticMap.childImageSharp.resize.aspectRatio' - | 'staticMap.childImageSharp.resize.height' - | 'staticMap.childImageSharp.resize.originalName' - | 'staticMap.childImageSharp.resize.src' - | 'staticMap.childImageSharp.resize.tracedSVG' - | 'staticMap.childImageSharp.resize.width' - | 'staticMap.childMetaJson.children' - | 'staticMap.childMetaJson.children.children' - | 'staticMap.childMetaJson.children.id' - | 'staticMap.childMetaJson.cost' - | 'staticMap.childMetaJson.gatsbyPath' - | 'staticMap.childMetaJson.general.description' - | 'staticMap.childMetaJson.general.length' - | 'staticMap.childMetaJson.general.name' - | 'staticMap.childMetaJson.general.ref' - | 'staticMap.childMetaJson.general.source' - | 'staticMap.childMetaJson.general.stand' - | 'staticMap.childMetaJson.geoJson.bbox' - | 'staticMap.childMetaJson.geoJson.children' - | 'staticMap.childMetaJson.geoJson.features' - | 'staticMap.childMetaJson.geoJson.id' - | 'staticMap.childMetaJson.geoJson.jsonId' - | 'staticMap.childMetaJson.geoJson.type' - | 'staticMap.childMetaJson.id' - | 'staticMap.childMetaJson.internal.content' - | 'staticMap.childMetaJson.internal.contentDigest' - | 'staticMap.childMetaJson.internal.contentFilePath' - | 'staticMap.childMetaJson.internal.description' - | 'staticMap.childMetaJson.internal.fieldOwners' - | 'staticMap.childMetaJson.internal.ignoreType' - | 'staticMap.childMetaJson.internal.mediaType' - | 'staticMap.childMetaJson.internal.owner' - | 'staticMap.childMetaJson.internal.type' - | 'staticMap.childMetaJson.jsonId' - | 'staticMap.childMetaJson.parent.children' - | 'staticMap.childMetaJson.parent.id' - | 'staticMap.childMetaJson.references.website' - | 'staticMap.childMetaJson.stakeholders' - | 'staticMap.childMetaJson.stakeholders.name' - | 'staticMap.childMetaJson.stakeholders.roles' - | 'staticMap.childMetaJson.state' - | 'staticMap.childMetaJson.staticMap.absolutePath' - | 'staticMap.childMetaJson.staticMap.accessTime' - | 'staticMap.childMetaJson.staticMap.atime' - | 'staticMap.childMetaJson.staticMap.atimeMs' - | 'staticMap.childMetaJson.staticMap.base' - | 'staticMap.childMetaJson.staticMap.birthTime' - | 'staticMap.childMetaJson.staticMap.birthtime' - | 'staticMap.childMetaJson.staticMap.birthtimeMs' - | 'staticMap.childMetaJson.staticMap.blksize' - | 'staticMap.childMetaJson.staticMap.blocks' - | 'staticMap.childMetaJson.staticMap.changeTime' - | 'staticMap.childMetaJson.staticMap.children' - | 'staticMap.childMetaJson.staticMap.childrenGeometryJson' - | 'staticMap.childMetaJson.staticMap.childrenImageSharp' - | 'staticMap.childMetaJson.staticMap.childrenMetaJson' - | 'staticMap.childMetaJson.staticMap.ctime' - | 'staticMap.childMetaJson.staticMap.ctimeMs' - | 'staticMap.childMetaJson.staticMap.dev' - | 'staticMap.childMetaJson.staticMap.dir' - | 'staticMap.childMetaJson.staticMap.ext' - | 'staticMap.childMetaJson.staticMap.extension' - | 'staticMap.childMetaJson.staticMap.gid' - | 'staticMap.childMetaJson.staticMap.hash' - | 'staticMap.childMetaJson.staticMap.id' - | 'staticMap.childMetaJson.staticMap.ino' - | 'staticMap.childMetaJson.staticMap.mode' - | 'staticMap.childMetaJson.staticMap.modifiedTime' - | 'staticMap.childMetaJson.staticMap.mtime' - | 'staticMap.childMetaJson.staticMap.mtimeMs' - | 'staticMap.childMetaJson.staticMap.name' - | 'staticMap.childMetaJson.staticMap.nlink' - | 'staticMap.childMetaJson.staticMap.prettySize' - | 'staticMap.childMetaJson.staticMap.publicURL' - | 'staticMap.childMetaJson.staticMap.rdev' - | 'staticMap.childMetaJson.staticMap.relativeDirectory' - | 'staticMap.childMetaJson.staticMap.relativePath' - | 'staticMap.childMetaJson.staticMap.root' - | 'staticMap.childMetaJson.staticMap.size' - | 'staticMap.childMetaJson.staticMap.sourceInstanceName' - | 'staticMap.childMetaJson.staticMap.uid' - | 'staticMap.children' - | 'staticMap.childrenGeometryJson' - | 'staticMap.childrenGeometryJson.bbox' - | 'staticMap.childrenGeometryJson.children' - | 'staticMap.childrenGeometryJson.children.children' - | 'staticMap.childrenGeometryJson.children.id' - | 'staticMap.childrenGeometryJson.crs.type' - | 'staticMap.childrenGeometryJson.features' - | 'staticMap.childrenGeometryJson.features.bbox' - | 'staticMap.childrenGeometryJson.features.type' - | 'staticMap.childrenGeometryJson.id' - | 'staticMap.childrenGeometryJson.internal.content' - | 'staticMap.childrenGeometryJson.internal.contentDigest' - | 'staticMap.childrenGeometryJson.internal.contentFilePath' - | 'staticMap.childrenGeometryJson.internal.description' - | 'staticMap.childrenGeometryJson.internal.fieldOwners' - | 'staticMap.childrenGeometryJson.internal.ignoreType' - | 'staticMap.childrenGeometryJson.internal.mediaType' - | 'staticMap.childrenGeometryJson.internal.owner' - | 'staticMap.childrenGeometryJson.internal.type' - | 'staticMap.childrenGeometryJson.jsonId' - | 'staticMap.childrenGeometryJson.parent.children' - | 'staticMap.childrenGeometryJson.parent.id' - | 'staticMap.childrenGeometryJson.type' - | 'staticMap.childrenImageSharp' - | 'staticMap.childrenImageSharp.children' - | 'staticMap.childrenImageSharp.children.children' - | 'staticMap.childrenImageSharp.children.id' - | 'staticMap.childrenImageSharp.fixed.aspectRatio' - | 'staticMap.childrenImageSharp.fixed.base64' - | 'staticMap.childrenImageSharp.fixed.height' - | 'staticMap.childrenImageSharp.fixed.originalName' - | 'staticMap.childrenImageSharp.fixed.src' - | 'staticMap.childrenImageSharp.fixed.srcSet' - | 'staticMap.childrenImageSharp.fixed.srcSetWebp' - | 'staticMap.childrenImageSharp.fixed.srcWebp' - | 'staticMap.childrenImageSharp.fixed.tracedSVG' - | 'staticMap.childrenImageSharp.fixed.width' - | 'staticMap.childrenImageSharp.fluid.aspectRatio' - | 'staticMap.childrenImageSharp.fluid.base64' - | 'staticMap.childrenImageSharp.fluid.originalImg' - | 'staticMap.childrenImageSharp.fluid.originalName' - | 'staticMap.childrenImageSharp.fluid.presentationHeight' - | 'staticMap.childrenImageSharp.fluid.presentationWidth' - | 'staticMap.childrenImageSharp.fluid.sizes' - | 'staticMap.childrenImageSharp.fluid.src' - | 'staticMap.childrenImageSharp.fluid.srcSet' - | 'staticMap.childrenImageSharp.fluid.srcSetWebp' - | 'staticMap.childrenImageSharp.fluid.srcWebp' - | 'staticMap.childrenImageSharp.fluid.tracedSVG' - | 'staticMap.childrenImageSharp.gatsbyImageData' - | 'staticMap.childrenImageSharp.id' - | 'staticMap.childrenImageSharp.internal.content' - | 'staticMap.childrenImageSharp.internal.contentDigest' - | 'staticMap.childrenImageSharp.internal.contentFilePath' - | 'staticMap.childrenImageSharp.internal.description' - | 'staticMap.childrenImageSharp.internal.fieldOwners' - | 'staticMap.childrenImageSharp.internal.ignoreType' - | 'staticMap.childrenImageSharp.internal.mediaType' - | 'staticMap.childrenImageSharp.internal.owner' - | 'staticMap.childrenImageSharp.internal.type' - | 'staticMap.childrenImageSharp.original.height' - | 'staticMap.childrenImageSharp.original.src' - | 'staticMap.childrenImageSharp.original.width' - | 'staticMap.childrenImageSharp.parent.children' - | 'staticMap.childrenImageSharp.parent.id' - | 'staticMap.childrenImageSharp.resize.aspectRatio' - | 'staticMap.childrenImageSharp.resize.height' - | 'staticMap.childrenImageSharp.resize.originalName' - | 'staticMap.childrenImageSharp.resize.src' - | 'staticMap.childrenImageSharp.resize.tracedSVG' - | 'staticMap.childrenImageSharp.resize.width' - | 'staticMap.childrenMetaJson' - | 'staticMap.childrenMetaJson.children' - | 'staticMap.childrenMetaJson.children.children' - | 'staticMap.childrenMetaJson.children.id' - | 'staticMap.childrenMetaJson.cost' - | 'staticMap.childrenMetaJson.gatsbyPath' - | 'staticMap.childrenMetaJson.general.description' - | 'staticMap.childrenMetaJson.general.length' - | 'staticMap.childrenMetaJson.general.name' - | 'staticMap.childrenMetaJson.general.ref' - | 'staticMap.childrenMetaJson.general.source' - | 'staticMap.childrenMetaJson.general.stand' - | 'staticMap.childrenMetaJson.geoJson.bbox' - | 'staticMap.childrenMetaJson.geoJson.children' - | 'staticMap.childrenMetaJson.geoJson.features' - | 'staticMap.childrenMetaJson.geoJson.id' - | 'staticMap.childrenMetaJson.geoJson.jsonId' - | 'staticMap.childrenMetaJson.geoJson.type' - | 'staticMap.childrenMetaJson.id' - | 'staticMap.childrenMetaJson.internal.content' - | 'staticMap.childrenMetaJson.internal.contentDigest' - | 'staticMap.childrenMetaJson.internal.contentFilePath' - | 'staticMap.childrenMetaJson.internal.description' - | 'staticMap.childrenMetaJson.internal.fieldOwners' - | 'staticMap.childrenMetaJson.internal.ignoreType' - | 'staticMap.childrenMetaJson.internal.mediaType' - | 'staticMap.childrenMetaJson.internal.owner' - | 'staticMap.childrenMetaJson.internal.type' - | 'staticMap.childrenMetaJson.jsonId' - | 'staticMap.childrenMetaJson.parent.children' - | 'staticMap.childrenMetaJson.parent.id' - | 'staticMap.childrenMetaJson.references.website' - | 'staticMap.childrenMetaJson.stakeholders' - | 'staticMap.childrenMetaJson.stakeholders.name' - | 'staticMap.childrenMetaJson.stakeholders.roles' - | 'staticMap.childrenMetaJson.state' - | 'staticMap.childrenMetaJson.staticMap.absolutePath' - | 'staticMap.childrenMetaJson.staticMap.accessTime' - | 'staticMap.childrenMetaJson.staticMap.atime' - | 'staticMap.childrenMetaJson.staticMap.atimeMs' - | 'staticMap.childrenMetaJson.staticMap.base' - | 'staticMap.childrenMetaJson.staticMap.birthTime' - | 'staticMap.childrenMetaJson.staticMap.birthtime' - | 'staticMap.childrenMetaJson.staticMap.birthtimeMs' - | 'staticMap.childrenMetaJson.staticMap.blksize' - | 'staticMap.childrenMetaJson.staticMap.blocks' - | 'staticMap.childrenMetaJson.staticMap.changeTime' - | 'staticMap.childrenMetaJson.staticMap.children' - | 'staticMap.childrenMetaJson.staticMap.childrenGeometryJson' - | 'staticMap.childrenMetaJson.staticMap.childrenImageSharp' - | 'staticMap.childrenMetaJson.staticMap.childrenMetaJson' - | 'staticMap.childrenMetaJson.staticMap.ctime' - | 'staticMap.childrenMetaJson.staticMap.ctimeMs' - | 'staticMap.childrenMetaJson.staticMap.dev' - | 'staticMap.childrenMetaJson.staticMap.dir' - | 'staticMap.childrenMetaJson.staticMap.ext' - | 'staticMap.childrenMetaJson.staticMap.extension' - | 'staticMap.childrenMetaJson.staticMap.gid' - | 'staticMap.childrenMetaJson.staticMap.hash' - | 'staticMap.childrenMetaJson.staticMap.id' - | 'staticMap.childrenMetaJson.staticMap.ino' - | 'staticMap.childrenMetaJson.staticMap.mode' - | 'staticMap.childrenMetaJson.staticMap.modifiedTime' - | 'staticMap.childrenMetaJson.staticMap.mtime' - | 'staticMap.childrenMetaJson.staticMap.mtimeMs' - | 'staticMap.childrenMetaJson.staticMap.name' - | 'staticMap.childrenMetaJson.staticMap.nlink' - | 'staticMap.childrenMetaJson.staticMap.prettySize' - | 'staticMap.childrenMetaJson.staticMap.publicURL' - | 'staticMap.childrenMetaJson.staticMap.rdev' - | 'staticMap.childrenMetaJson.staticMap.relativeDirectory' - | 'staticMap.childrenMetaJson.staticMap.relativePath' - | 'staticMap.childrenMetaJson.staticMap.root' - | 'staticMap.childrenMetaJson.staticMap.size' - | 'staticMap.childrenMetaJson.staticMap.sourceInstanceName' - | 'staticMap.childrenMetaJson.staticMap.uid' - | 'staticMap.children.children' - | 'staticMap.children.children.children' - | 'staticMap.children.children.id' - | 'staticMap.children.id' - | 'staticMap.children.internal.content' - | 'staticMap.children.internal.contentDigest' - | 'staticMap.children.internal.contentFilePath' - | 'staticMap.children.internal.description' - | 'staticMap.children.internal.fieldOwners' - | 'staticMap.children.internal.ignoreType' - | 'staticMap.children.internal.mediaType' - | 'staticMap.children.internal.owner' - | 'staticMap.children.internal.type' - | 'staticMap.children.parent.children' - | 'staticMap.children.parent.id' - | 'staticMap.ctime' - | 'staticMap.ctimeMs' - | 'staticMap.dev' - | 'staticMap.dir' - | 'staticMap.ext' - | 'staticMap.extension' - | 'staticMap.gid' - | 'staticMap.hash' - | 'staticMap.id' - | 'staticMap.ino' - | 'staticMap.internal.content' - | 'staticMap.internal.contentDigest' - | 'staticMap.internal.contentFilePath' - | 'staticMap.internal.description' - | 'staticMap.internal.fieldOwners' - | 'staticMap.internal.ignoreType' - | 'staticMap.internal.mediaType' - | 'staticMap.internal.owner' - | 'staticMap.internal.type' - | 'staticMap.mode' - | 'staticMap.modifiedTime' - | 'staticMap.mtime' - | 'staticMap.mtimeMs' - | 'staticMap.name' - | 'staticMap.nlink' - | 'staticMap.parent.children' - | 'staticMap.parent.children.children' - | 'staticMap.parent.children.id' - | 'staticMap.parent.id' - | 'staticMap.parent.internal.content' - | 'staticMap.parent.internal.contentDigest' - | 'staticMap.parent.internal.contentFilePath' - | 'staticMap.parent.internal.description' - | 'staticMap.parent.internal.fieldOwners' - | 'staticMap.parent.internal.ignoreType' - | 'staticMap.parent.internal.mediaType' - | 'staticMap.parent.internal.owner' - | 'staticMap.parent.internal.type' - | 'staticMap.parent.parent.children' - | 'staticMap.parent.parent.id' - | 'staticMap.prettySize' - | 'staticMap.publicURL' - | 'staticMap.rdev' - | 'staticMap.relativeDirectory' - | 'staticMap.relativePath' - | 'staticMap.root' - | 'staticMap.size' - | 'staticMap.sourceInstanceName' - | 'staticMap.uid'; - - type MetaJsonFilterInput = { - readonly children: InputMaybe; - readonly cost: InputMaybe; - readonly gatsbyPath: InputMaybe; - readonly general: InputMaybe; - readonly geoJson: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly jsonId: InputMaybe; - readonly parent: InputMaybe; - readonly references: InputMaybe; - readonly stakeholders: InputMaybe; - readonly state: InputMaybe; - readonly staticMap: InputMaybe; - }; - - type MetaJsonFilterListInput = { - readonly elemMatch: InputMaybe; - }; - - type MetaJsonGeneral = { - readonly description: Maybe; - readonly from: Maybe; - readonly length: Maybe; - readonly name: Maybe; - readonly ref: Maybe; - readonly source: Maybe; - readonly stand: Maybe; - readonly to: Maybe; - }; - - type MetaJsonGeneral_standArgs = { - difference: InputMaybe; - formatString: InputMaybe; - fromNow: InputMaybe; - locale: InputMaybe; - }; - - type MetaJsonGeneralFilterInput = { - readonly description: InputMaybe; - readonly from: InputMaybe; - readonly length: InputMaybe; - readonly name: InputMaybe; - readonly ref: InputMaybe; - readonly source: InputMaybe; - readonly stand: InputMaybe; - readonly to: InputMaybe; - }; - - type MetaJsonGeneralFrom = { - readonly city: Maybe; - readonly federalState: Maybe; - }; - - type MetaJsonGeneralFromFilterInput = { - readonly city: InputMaybe; - readonly federalState: InputMaybe; - }; - - type MetaJsonGeneralTo = { - readonly city: Maybe; - readonly federalState: Maybe; - }; - - type MetaJsonGeneralToFilterInput = { - readonly city: InputMaybe; - readonly federalState: InputMaybe; - }; - - type MetaJsonGroupConnection = { - 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 MetaJsonGroupConnection_distinctArgs = { - field: MetaJsonFieldsEnum; - }; - - type MetaJsonGroupConnection_groupArgs = { - field: MetaJsonFieldsEnum; - limit: InputMaybe; - skip: InputMaybe; - }; - - type MetaJsonGroupConnection_maxArgs = { - field: MetaJsonFieldsEnum; - }; - - type MetaJsonGroupConnection_minArgs = { - field: MetaJsonFieldsEnum; - }; - - type MetaJsonGroupConnection_sumArgs = { - field: MetaJsonFieldsEnum; - }; - - type MetaJsonReferences = { - readonly website: Maybe; - }; - - type MetaJsonReferencesFilterInput = { - readonly website: InputMaybe; - }; - - type MetaJsonSortInput = { - readonly fields: InputMaybe>>; - readonly order: InputMaybe>>; - }; - - type MetaJsonStakeholders = { - readonly name: Maybe; - readonly roles: Maybe>>; - }; - - type MetaJsonStakeholdersFilterInput = { - readonly name: InputMaybe; - readonly roles: InputMaybe; - }; - - type MetaJsonStakeholdersFilterListInput = { - readonly elemMatch: InputMaybe; - }; - - /** Node Interface */ - type Node = { - readonly children: ReadonlyArray; - readonly id: Scalars['ID']; - readonly internal: Internal; - readonly parent: Maybe; - }; - - type NodeFilterInput = { - readonly children: InputMaybe; - readonly id: InputMaybe; - readonly internal: InputMaybe; - readonly parent: InputMaybe; - }; - - type NodeFilterListInput = { - readonly elemMatch: 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 allGeometryJson: GeometryJsonConnection; - readonly allImageSharp: ImageSharpConnection; - readonly allMetaJson: MetaJsonConnection; - readonly allSite: SiteConnection; - readonly allSiteBuildMetadata: SiteBuildMetadataConnection; - readonly allSiteFunction: SiteFunctionConnection; - readonly allSitePage: SitePageConnection; - readonly allSitePlugin: SitePluginConnection; - readonly directory: Maybe; - readonly file: Maybe; - readonly geometryJson: Maybe; - readonly imageSharp: Maybe; - readonly metaJson: Maybe; - readonly site: Maybe; - readonly siteBuildMetadata: Maybe; - readonly siteFunction: Maybe; - readonly sitePage: Maybe; - readonly sitePlugin: 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_allGeometryJsonArgs = { - filter: InputMaybe; - limit: InputMaybe; - skip: InputMaybe; - sort: InputMaybe; - }; - - type Query_allImageSharpArgs = { - filter: InputMaybe; - limit: InputMaybe; - skip: InputMaybe; - sort: InputMaybe; - }; - - type Query_allMetaJsonArgs = { - 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_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; - childGeometryJson: InputMaybe; - childImageSharp: InputMaybe; - childMetaJson: InputMaybe; - children: InputMaybe; - childrenGeometryJson: InputMaybe; - childrenImageSharp: InputMaybe; - childrenMetaJson: InputMaybe; - ctime: InputMaybe; - ctimeMs: InputMaybe; - dev: InputMaybe; - dir: InputMaybe; - ext: InputMaybe; - extension: InputMaybe; - gid: InputMaybe; - hash: InputMaybe; - id: InputMaybe; - ino: InputMaybe; - internal: InputMaybe; - mode: InputMaybe; - modifiedTime: InputMaybe; - mtime: InputMaybe; - mtimeMs: InputMaybe; - name: InputMaybe; - nlink: InputMaybe; - parent: InputMaybe; - prettySize: InputMaybe; - publicURL: InputMaybe; - rdev: InputMaybe; - relativeDirectory: InputMaybe; - relativePath: InputMaybe; - root: InputMaybe; - size: InputMaybe; - sourceInstanceName: InputMaybe; - uid: InputMaybe; - }; - - type Query_geometryJsonArgs = { - bbox: InputMaybe; - children: InputMaybe; - crs: InputMaybe; - features: InputMaybe; - id: InputMaybe; - internal: InputMaybe; - jsonId: InputMaybe; - parent: InputMaybe; - type: InputMaybe; - }; - - type Query_imageSharpArgs = { - children: InputMaybe; - fixed: InputMaybe; - fluid: InputMaybe; - gatsbyImageData: InputMaybe; - id: InputMaybe; - internal: InputMaybe; - original: InputMaybe; - parent: InputMaybe; - resize: InputMaybe; - }; - - type Query_metaJsonArgs = { - children: InputMaybe; - cost: InputMaybe; - gatsbyPath: InputMaybe; - general: InputMaybe; - geoJson: InputMaybe; - id: InputMaybe; - internal: InputMaybe; - jsonId: InputMaybe; - parent: InputMaybe; - references: InputMaybe; - stakeholders: InputMaybe; - state: InputMaybe; - staticMap: 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 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: SiteBuildMetadataFieldsEnum; - }; - - type SiteBuildMetadataConnection_groupArgs = { - field: SiteBuildMetadataFieldsEnum; - limit: InputMaybe; - skip: InputMaybe; - }; - - type SiteBuildMetadataConnection_maxArgs = { - field: SiteBuildMetadataFieldsEnum; - }; - - type SiteBuildMetadataConnection_minArgs = { - field: SiteBuildMetadataFieldsEnum; - }; - - type SiteBuildMetadataConnection_sumArgs = { - field: SiteBuildMetadataFieldsEnum; - }; - - type SiteBuildMetadataEdge = { - readonly next: Maybe; - readonly node: SiteBuildMetadata; - readonly previous: Maybe; - }; - - type SiteBuildMetadataFieldsEnum = - | 'buildTime' - | 'children' - | 'children.children' - | 'children.children.children' - | 'children.children.children.children' - | 'children.children.children.id' - | 'children.children.id' - | 'children.children.internal.content' - | 'children.children.internal.contentDigest' - | 'children.children.internal.contentFilePath' - | 'children.children.internal.description' - | 'children.children.internal.fieldOwners' - | 'children.children.internal.ignoreType' - | 'children.children.internal.mediaType' - | 'children.children.internal.owner' - | 'children.children.internal.type' - | 'children.children.parent.children' - | 'children.children.parent.id' - | 'children.id' - | 'children.internal.content' - | 'children.internal.contentDigest' - | 'children.internal.contentFilePath' - | 'children.internal.description' - | 'children.internal.fieldOwners' - | 'children.internal.ignoreType' - | 'children.internal.mediaType' - | 'children.internal.owner' - | 'children.internal.type' - | 'children.parent.children' - | 'children.parent.children.children' - | 'children.parent.children.id' - | 'children.parent.id' - | 'children.parent.internal.content' - | 'children.parent.internal.contentDigest' - | 'children.parent.internal.contentFilePath' - | 'children.parent.internal.description' - | 'children.parent.internal.fieldOwners' - | 'children.parent.internal.ignoreType' - | 'children.parent.internal.mediaType' - | 'children.parent.internal.owner' - | 'children.parent.internal.type' - | 'children.parent.parent.children' - | 'children.parent.parent.id' - | 'id' - | 'internal.content' - | 'internal.contentDigest' - | 'internal.contentFilePath' - | 'internal.description' - | 'internal.fieldOwners' - | 'internal.ignoreType' - | 'internal.mediaType' - | 'internal.owner' - | 'internal.type' - | 'parent.children' - | 'parent.children.children' - | 'parent.children.children.children' - | 'parent.children.children.id' - | 'parent.children.id' - | 'parent.children.internal.content' - | 'parent.children.internal.contentDigest' - | 'parent.children.internal.contentFilePath' - | 'parent.children.internal.description' - | 'parent.children.internal.fieldOwners' - | 'parent.children.internal.ignoreType' - | 'parent.children.internal.mediaType' - | 'parent.children.internal.owner' - | 'parent.children.internal.type' - | 'parent.children.parent.children' - | 'parent.children.parent.id' - | 'parent.id' - | 'parent.internal.content' - | 'parent.internal.contentDigest' - | 'parent.internal.contentFilePath' - | 'parent.internal.description' - | 'parent.internal.fieldOwners' - | 'parent.internal.ignoreType' - | 'parent.internal.mediaType' - | 'parent.internal.owner' - | 'parent.internal.type' - | 'parent.parent.children' - | 'parent.parent.children.children' - | 'parent.parent.children.id' - | 'parent.parent.id' - | 'parent.parent.internal.content' - | 'parent.parent.internal.contentDigest' - | 'parent.parent.internal.contentFilePath' - | 'parent.parent.internal.description' - | 'parent.parent.internal.fieldOwners' - | 'parent.parent.internal.ignoreType' - | 'parent.parent.internal.mediaType' - | 'parent.parent.internal.owner' - | 'parent.parent.internal.type' - | 'parent.parent.parent.children' - | 'parent.parent.parent.id'; - - 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: SiteBuildMetadataFieldsEnum; - }; - - type SiteBuildMetadataGroupConnection_groupArgs = { - field: SiteBuildMetadataFieldsEnum; - limit: InputMaybe; - skip: InputMaybe; - }; - - type SiteBuildMetadataGroupConnection_maxArgs = { - field: SiteBuildMetadataFieldsEnum; - }; - - type SiteBuildMetadataGroupConnection_minArgs = { - field: SiteBuildMetadataFieldsEnum; - }; - - type SiteBuildMetadataGroupConnection_sumArgs = { - field: SiteBuildMetadataFieldsEnum; - }; - - type SiteBuildMetadataSortInput = { - readonly fields: InputMaybe< - ReadonlyArray> - >; - readonly order: 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: SiteFieldsEnum; - }; - - type SiteConnection_groupArgs = { - field: SiteFieldsEnum; - limit: InputMaybe; - skip: InputMaybe; - }; - - type SiteConnection_maxArgs = { - field: SiteFieldsEnum; - }; - - type SiteConnection_minArgs = { - field: SiteFieldsEnum; - }; - - type SiteConnection_sumArgs = { - field: SiteFieldsEnum; - }; - - type SiteEdge = { - readonly next: Maybe; - readonly node: Site; - readonly previous: Maybe; - }; - - type SiteFieldsEnum = - | 'buildTime' - | 'children' - | 'children.children' - | 'children.children.children' - | 'children.children.children.children' - | 'children.children.children.id' - | 'children.children.id' - | 'children.children.internal.content' - | 'children.children.internal.contentDigest' - | 'children.children.internal.contentFilePath' - | 'children.children.internal.description' - | 'children.children.internal.fieldOwners' - | 'children.children.internal.ignoreType' - | 'children.children.internal.mediaType' - | 'children.children.internal.owner' - | 'children.children.internal.type' - | 'children.children.parent.children' - | 'children.children.parent.id' - | 'children.id' - | 'children.internal.content' - | 'children.internal.contentDigest' - | 'children.internal.contentFilePath' - | 'children.internal.description' - | 'children.internal.fieldOwners' - | 'children.internal.ignoreType' - | 'children.internal.mediaType' - | 'children.internal.owner' - | 'children.internal.type' - | 'children.parent.children' - | 'children.parent.children.children' - | 'children.parent.children.id' - | 'children.parent.id' - | 'children.parent.internal.content' - | 'children.parent.internal.contentDigest' - | 'children.parent.internal.contentFilePath' - | 'children.parent.internal.description' - | 'children.parent.internal.fieldOwners' - | 'children.parent.internal.ignoreType' - | 'children.parent.internal.mediaType' - | 'children.parent.internal.owner' - | 'children.parent.internal.type' - | 'children.parent.parent.children' - | 'children.parent.parent.id' - | 'graphqlTypegen.generateOnBuild' - | 'graphqlTypegen.typesOutputPath' - | 'host' - | 'id' - | 'internal.content' - | 'internal.contentDigest' - | 'internal.contentFilePath' - | 'internal.description' - | 'internal.fieldOwners' - | 'internal.ignoreType' - | 'internal.mediaType' - | 'internal.owner' - | 'internal.type' - | 'jsxRuntime' - | 'parent.children' - | 'parent.children.children' - | 'parent.children.children.children' - | 'parent.children.children.id' - | 'parent.children.id' - | 'parent.children.internal.content' - | 'parent.children.internal.contentDigest' - | 'parent.children.internal.contentFilePath' - | 'parent.children.internal.description' - | 'parent.children.internal.fieldOwners' - | 'parent.children.internal.ignoreType' - | 'parent.children.internal.mediaType' - | 'parent.children.internal.owner' - | 'parent.children.internal.type' - | 'parent.children.parent.children' - | 'parent.children.parent.id' - | 'parent.id' - | 'parent.internal.content' - | 'parent.internal.contentDigest' - | 'parent.internal.contentFilePath' - | 'parent.internal.description' - | 'parent.internal.fieldOwners' - | 'parent.internal.ignoreType' - | 'parent.internal.mediaType' - | 'parent.internal.owner' - | 'parent.internal.type' - | 'parent.parent.children' - | 'parent.parent.children.children' - | 'parent.parent.children.id' - | 'parent.parent.id' - | 'parent.parent.internal.content' - | 'parent.parent.internal.contentDigest' - | 'parent.parent.internal.contentFilePath' - | 'parent.parent.internal.description' - | 'parent.parent.internal.fieldOwners' - | 'parent.parent.internal.ignoreType' - | 'parent.parent.internal.mediaType' - | 'parent.parent.internal.owner' - | 'parent.parent.internal.type' - | 'parent.parent.parent.children' - | 'parent.parent.parent.id' - | 'pathPrefix' - | 'polyfill' - | 'port' - | 'siteMetadata.description' - | 'siteMetadata.siteUrl' - | 'siteMetadata.title' - | 'trailingSlash'; - - 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: SiteFunctionFieldsEnum; - }; - - type SiteFunctionConnection_groupArgs = { - field: SiteFunctionFieldsEnum; - limit: InputMaybe; - skip: InputMaybe; - }; - - type SiteFunctionConnection_maxArgs = { - field: SiteFunctionFieldsEnum; - }; - - type SiteFunctionConnection_minArgs = { - field: SiteFunctionFieldsEnum; - }; - - type SiteFunctionConnection_sumArgs = { - field: SiteFunctionFieldsEnum; - }; - - type SiteFunctionEdge = { - readonly next: Maybe; - readonly node: SiteFunction; - readonly previous: Maybe; - }; - - type SiteFunctionFieldsEnum = - | 'absoluteCompiledFilePath' - | 'children' - | 'children.children' - | 'children.children.children' - | 'children.children.children.children' - | 'children.children.children.id' - | 'children.children.id' - | 'children.children.internal.content' - | 'children.children.internal.contentDigest' - | 'children.children.internal.contentFilePath' - | 'children.children.internal.description' - | 'children.children.internal.fieldOwners' - | 'children.children.internal.ignoreType' - | 'children.children.internal.mediaType' - | 'children.children.internal.owner' - | 'children.children.internal.type' - | 'children.children.parent.children' - | 'children.children.parent.id' - | 'children.id' - | 'children.internal.content' - | 'children.internal.contentDigest' - | 'children.internal.contentFilePath' - | 'children.internal.description' - | 'children.internal.fieldOwners' - | 'children.internal.ignoreType' - | 'children.internal.mediaType' - | 'children.internal.owner' - | 'children.internal.type' - | 'children.parent.children' - | 'children.parent.children.children' - | 'children.parent.children.id' - | 'children.parent.id' - | 'children.parent.internal.content' - | 'children.parent.internal.contentDigest' - | 'children.parent.internal.contentFilePath' - | 'children.parent.internal.description' - | 'children.parent.internal.fieldOwners' - | 'children.parent.internal.ignoreType' - | 'children.parent.internal.mediaType' - | 'children.parent.internal.owner' - | 'children.parent.internal.type' - | 'children.parent.parent.children' - | 'children.parent.parent.id' - | 'functionRoute' - | 'id' - | 'internal.content' - | 'internal.contentDigest' - | 'internal.contentFilePath' - | 'internal.description' - | 'internal.fieldOwners' - | 'internal.ignoreType' - | 'internal.mediaType' - | 'internal.owner' - | 'internal.type' - | 'matchPath' - | 'originalAbsoluteFilePath' - | 'originalRelativeFilePath' - | 'parent.children' - | 'parent.children.children' - | 'parent.children.children.children' - | 'parent.children.children.id' - | 'parent.children.id' - | 'parent.children.internal.content' - | 'parent.children.internal.contentDigest' - | 'parent.children.internal.contentFilePath' - | 'parent.children.internal.description' - | 'parent.children.internal.fieldOwners' - | 'parent.children.internal.ignoreType' - | 'parent.children.internal.mediaType' - | 'parent.children.internal.owner' - | 'parent.children.internal.type' - | 'parent.children.parent.children' - | 'parent.children.parent.id' - | 'parent.id' - | 'parent.internal.content' - | 'parent.internal.contentDigest' - | 'parent.internal.contentFilePath' - | 'parent.internal.description' - | 'parent.internal.fieldOwners' - | 'parent.internal.ignoreType' - | 'parent.internal.mediaType' - | 'parent.internal.owner' - | 'parent.internal.type' - | 'parent.parent.children' - | 'parent.parent.children.children' - | 'parent.parent.children.id' - | 'parent.parent.id' - | 'parent.parent.internal.content' - | 'parent.parent.internal.contentDigest' - | 'parent.parent.internal.contentFilePath' - | 'parent.parent.internal.description' - | 'parent.parent.internal.fieldOwners' - | 'parent.parent.internal.ignoreType' - | 'parent.parent.internal.mediaType' - | 'parent.parent.internal.owner' - | 'parent.parent.internal.type' - | 'parent.parent.parent.children' - | 'parent.parent.parent.id' - | 'pluginName' - | 'relativeCompiledFilePath'; - - 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: SiteFunctionFieldsEnum; - }; - - type SiteFunctionGroupConnection_groupArgs = { - field: SiteFunctionFieldsEnum; - limit: InputMaybe; - skip: InputMaybe; - }; - - type SiteFunctionGroupConnection_maxArgs = { - field: SiteFunctionFieldsEnum; - }; - - type SiteFunctionGroupConnection_minArgs = { - field: SiteFunctionFieldsEnum; - }; - - type SiteFunctionGroupConnection_sumArgs = { - field: SiteFunctionFieldsEnum; - }; - - type SiteFunctionSortInput = { - readonly fields: InputMaybe< - ReadonlyArray> - >; - readonly order: InputMaybe>>; - }; - - type SiteGraphqlTypegen = { - readonly generateOnBuild: Maybe; - readonly typesOutputPath: Maybe; - }; - - type SiteGraphqlTypegenFilterInput = { - 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: SiteFieldsEnum; - }; - - type SiteGroupConnection_groupArgs = { - field: SiteFieldsEnum; - limit: InputMaybe; - skip: InputMaybe; - }; - - type SiteGroupConnection_maxArgs = { - field: SiteFieldsEnum; - }; - - type SiteGroupConnection_minArgs = { - field: SiteFieldsEnum; - }; - - type SiteGroupConnection_sumArgs = { - field: SiteFieldsEnum; - }; - - 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: SitePageFieldsEnum; - }; - - type SitePageConnection_groupArgs = { - field: SitePageFieldsEnum; - limit: InputMaybe; - skip: InputMaybe; - }; - - type SitePageConnection_maxArgs = { - field: SitePageFieldsEnum; - }; - - type SitePageConnection_minArgs = { - field: SitePageFieldsEnum; - }; - - type SitePageConnection_sumArgs = { - field: SitePageFieldsEnum; - }; - - type SitePageEdge = { - readonly next: Maybe; - readonly node: SitePage; - readonly previous: Maybe; - }; - - type SitePageFieldsEnum = - | 'children' - | 'children.children' - | 'children.children.children' - | 'children.children.children.children' - | 'children.children.children.id' - | 'children.children.id' - | 'children.children.internal.content' - | 'children.children.internal.contentDigest' - | 'children.children.internal.contentFilePath' - | 'children.children.internal.description' - | 'children.children.internal.fieldOwners' - | 'children.children.internal.ignoreType' - | 'children.children.internal.mediaType' - | 'children.children.internal.owner' - | 'children.children.internal.type' - | 'children.children.parent.children' - | 'children.children.parent.id' - | 'children.id' - | 'children.internal.content' - | 'children.internal.contentDigest' - | 'children.internal.contentFilePath' - | 'children.internal.description' - | 'children.internal.fieldOwners' - | 'children.internal.ignoreType' - | 'children.internal.mediaType' - | 'children.internal.owner' - | 'children.internal.type' - | 'children.parent.children' - | 'children.parent.children.children' - | 'children.parent.children.id' - | 'children.parent.id' - | 'children.parent.internal.content' - | 'children.parent.internal.contentDigest' - | 'children.parent.internal.contentFilePath' - | 'children.parent.internal.description' - | 'children.parent.internal.fieldOwners' - | 'children.parent.internal.ignoreType' - | 'children.parent.internal.mediaType' - | 'children.parent.internal.owner' - | 'children.parent.internal.type' - | 'children.parent.parent.children' - | 'children.parent.parent.id' - | 'component' - | 'componentChunkName' - | 'id' - | 'internalComponentName' - | 'internal.content' - | 'internal.contentDigest' - | 'internal.contentFilePath' - | 'internal.description' - | 'internal.fieldOwners' - | 'internal.ignoreType' - | 'internal.mediaType' - | 'internal.owner' - | 'internal.type' - | 'matchPath' - | 'pageContext' - | 'parent.children' - | 'parent.children.children' - | 'parent.children.children.children' - | 'parent.children.children.id' - | 'parent.children.id' - | 'parent.children.internal.content' - | 'parent.children.internal.contentDigest' - | 'parent.children.internal.contentFilePath' - | 'parent.children.internal.description' - | 'parent.children.internal.fieldOwners' - | 'parent.children.internal.ignoreType' - | 'parent.children.internal.mediaType' - | 'parent.children.internal.owner' - | 'parent.children.internal.type' - | 'parent.children.parent.children' - | 'parent.children.parent.id' - | 'parent.id' - | 'parent.internal.content' - | 'parent.internal.contentDigest' - | 'parent.internal.contentFilePath' - | 'parent.internal.description' - | 'parent.internal.fieldOwners' - | 'parent.internal.ignoreType' - | 'parent.internal.mediaType' - | 'parent.internal.owner' - | 'parent.internal.type' - | 'parent.parent.children' - | 'parent.parent.children.children' - | 'parent.parent.children.id' - | 'parent.parent.id' - | 'parent.parent.internal.content' - | 'parent.parent.internal.contentDigest' - | 'parent.parent.internal.contentFilePath' - | 'parent.parent.internal.description' - | 'parent.parent.internal.fieldOwners' - | 'parent.parent.internal.ignoreType' - | 'parent.parent.internal.mediaType' - | 'parent.parent.internal.owner' - | 'parent.parent.internal.type' - | 'parent.parent.parent.children' - | 'parent.parent.parent.id' - | 'path' - | 'pluginCreator.browserAPIs' - | 'pluginCreator.children' - | 'pluginCreator.children.children' - | 'pluginCreator.children.children.children' - | 'pluginCreator.children.children.id' - | 'pluginCreator.children.id' - | 'pluginCreator.children.internal.content' - | 'pluginCreator.children.internal.contentDigest' - | 'pluginCreator.children.internal.contentFilePath' - | 'pluginCreator.children.internal.description' - | 'pluginCreator.children.internal.fieldOwners' - | 'pluginCreator.children.internal.ignoreType' - | 'pluginCreator.children.internal.mediaType' - | 'pluginCreator.children.internal.owner' - | 'pluginCreator.children.internal.type' - | 'pluginCreator.children.parent.children' - | 'pluginCreator.children.parent.id' - | 'pluginCreator.id' - | 'pluginCreator.internal.content' - | 'pluginCreator.internal.contentDigest' - | 'pluginCreator.internal.contentFilePath' - | 'pluginCreator.internal.description' - | 'pluginCreator.internal.fieldOwners' - | 'pluginCreator.internal.ignoreType' - | 'pluginCreator.internal.mediaType' - | 'pluginCreator.internal.owner' - | 'pluginCreator.internal.type' - | 'pluginCreator.name' - | 'pluginCreator.nodeAPIs' - | 'pluginCreator.packageJson' - | 'pluginCreator.parent.children' - | 'pluginCreator.parent.children.children' - | 'pluginCreator.parent.children.id' - | 'pluginCreator.parent.id' - | 'pluginCreator.parent.internal.content' - | 'pluginCreator.parent.internal.contentDigest' - | 'pluginCreator.parent.internal.contentFilePath' - | 'pluginCreator.parent.internal.description' - | 'pluginCreator.parent.internal.fieldOwners' - | 'pluginCreator.parent.internal.ignoreType' - | 'pluginCreator.parent.internal.mediaType' - | 'pluginCreator.parent.internal.owner' - | 'pluginCreator.parent.internal.type' - | 'pluginCreator.parent.parent.children' - | 'pluginCreator.parent.parent.id' - | 'pluginCreator.pluginFilepath' - | 'pluginCreator.pluginOptions' - | 'pluginCreator.resolve' - | 'pluginCreator.ssrAPIs' - | 'pluginCreator.version'; - - 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: SitePageFieldsEnum; - }; - - type SitePageGroupConnection_groupArgs = { - field: SitePageFieldsEnum; - limit: InputMaybe; - skip: InputMaybe; - }; - - type SitePageGroupConnection_maxArgs = { - field: SitePageFieldsEnum; - }; - - type SitePageGroupConnection_minArgs = { - field: SitePageFieldsEnum; - }; - - type SitePageGroupConnection_sumArgs = { - field: SitePageFieldsEnum; - }; - - type SitePageSortInput = { - readonly fields: InputMaybe>>; - readonly order: 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: SitePluginFieldsEnum; - }; - - type SitePluginConnection_groupArgs = { - field: SitePluginFieldsEnum; - limit: InputMaybe; - skip: InputMaybe; - }; - - type SitePluginConnection_maxArgs = { - field: SitePluginFieldsEnum; - }; - - type SitePluginConnection_minArgs = { - field: SitePluginFieldsEnum; - }; - - type SitePluginConnection_sumArgs = { - field: SitePluginFieldsEnum; - }; - - type SitePluginEdge = { - readonly next: Maybe; - readonly node: SitePlugin; - readonly previous: Maybe; - }; - - type SitePluginFieldsEnum = - | 'browserAPIs' - | 'children' - | 'children.children' - | 'children.children.children' - | 'children.children.children.children' - | 'children.children.children.id' - | 'children.children.id' - | 'children.children.internal.content' - | 'children.children.internal.contentDigest' - | 'children.children.internal.contentFilePath' - | 'children.children.internal.description' - | 'children.children.internal.fieldOwners' - | 'children.children.internal.ignoreType' - | 'children.children.internal.mediaType' - | 'children.children.internal.owner' - | 'children.children.internal.type' - | 'children.children.parent.children' - | 'children.children.parent.id' - | 'children.id' - | 'children.internal.content' - | 'children.internal.contentDigest' - | 'children.internal.contentFilePath' - | 'children.internal.description' - | 'children.internal.fieldOwners' - | 'children.internal.ignoreType' - | 'children.internal.mediaType' - | 'children.internal.owner' - | 'children.internal.type' - | 'children.parent.children' - | 'children.parent.children.children' - | 'children.parent.children.id' - | 'children.parent.id' - | 'children.parent.internal.content' - | 'children.parent.internal.contentDigest' - | 'children.parent.internal.contentFilePath' - | 'children.parent.internal.description' - | 'children.parent.internal.fieldOwners' - | 'children.parent.internal.ignoreType' - | 'children.parent.internal.mediaType' - | 'children.parent.internal.owner' - | 'children.parent.internal.type' - | 'children.parent.parent.children' - | 'children.parent.parent.id' - | 'id' - | 'internal.content' - | 'internal.contentDigest' - | 'internal.contentFilePath' - | 'internal.description' - | 'internal.fieldOwners' - | 'internal.ignoreType' - | 'internal.mediaType' - | 'internal.owner' - | 'internal.type' - | 'name' - | 'nodeAPIs' - | 'packageJson' - | 'parent.children' - | 'parent.children.children' - | 'parent.children.children.children' - | 'parent.children.children.id' - | 'parent.children.id' - | 'parent.children.internal.content' - | 'parent.children.internal.contentDigest' - | 'parent.children.internal.contentFilePath' - | 'parent.children.internal.description' - | 'parent.children.internal.fieldOwners' - | 'parent.children.internal.ignoreType' - | 'parent.children.internal.mediaType' - | 'parent.children.internal.owner' - | 'parent.children.internal.type' - | 'parent.children.parent.children' - | 'parent.children.parent.id' - | 'parent.id' - | 'parent.internal.content' - | 'parent.internal.contentDigest' - | 'parent.internal.contentFilePath' - | 'parent.internal.description' - | 'parent.internal.fieldOwners' - | 'parent.internal.ignoreType' - | 'parent.internal.mediaType' - | 'parent.internal.owner' - | 'parent.internal.type' - | 'parent.parent.children' - | 'parent.parent.children.children' - | 'parent.parent.children.id' - | 'parent.parent.id' - | 'parent.parent.internal.content' - | 'parent.parent.internal.contentDigest' - | 'parent.parent.internal.contentFilePath' - | 'parent.parent.internal.description' - | 'parent.parent.internal.fieldOwners' - | 'parent.parent.internal.ignoreType' - | 'parent.parent.internal.mediaType' - | 'parent.parent.internal.owner' - | 'parent.parent.internal.type' - | 'parent.parent.parent.children' - | 'parent.parent.parent.id' - | 'pluginFilepath' - | 'pluginOptions' - | 'resolve' - | 'ssrAPIs' - | 'version'; - - 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: SitePluginFieldsEnum; - }; - - type SitePluginGroupConnection_groupArgs = { - field: SitePluginFieldsEnum; - limit: InputMaybe; - skip: InputMaybe; - }; - - type SitePluginGroupConnection_maxArgs = { - field: SitePluginFieldsEnum; - }; - - type SitePluginGroupConnection_minArgs = { - field: SitePluginFieldsEnum; - }; - - type SitePluginGroupConnection_sumArgs = { - field: SitePluginFieldsEnum; - }; - - type SitePluginSortInput = { - readonly fields: InputMaybe< - ReadonlyArray> - >; - readonly order: InputMaybe>>; - }; - - type SiteSiteMetadata = { - readonly description: Maybe; - readonly siteUrl: Maybe; - readonly title: Maybe; - }; - - type SiteSiteMetadataFilterInput = { - readonly description: InputMaybe; - readonly siteUrl: InputMaybe; - readonly title: InputMaybe; - }; - - type SiteSortInput = { - readonly fields: InputMaybe>>; - readonly order: 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 FederalStateFromIndexQueryVariables = Exact<{ - general__from__federalState: Scalars['String']; - }>; - - type FederalStateFromIndexQuery = { - readonly from: { - readonly nodes: ReadonlyArray<{ - readonly state: string | null; - readonly jsonId: string | null; - readonly general: { - readonly ref: string | null; - readonly name: string | null; - readonly description: string | null; - } | null; - readonly staticMap: { - readonly childImageSharp: { - readonly gatsbyImageData: import('gatsby-plugin-image').IGatsbyImageData; - } | null; - }; - }>; - }; - readonly to: { - readonly nodes: ReadonlyArray<{ - readonly state: string | null; - readonly jsonId: string | null; - readonly general: { - readonly ref: string | null; - readonly name: string | null; - readonly description: string | null; - } | null; - readonly staticMap: { - readonly childImageSharp: { - readonly gatsbyImageData: import('gatsby-plugin-image').IGatsbyImageData; - } | null; - }; - }>; - }; - }; - - type FederalStatesQueryVariables = Exact<{ [key: string]: never }>; - - type FederalStatesQuery = { - readonly radschnellwege: { - readonly nodes: ReadonlyArray<{ - readonly fromPath: string | null; - readonly toPath: string | null; - readonly general: { - readonly from: { readonly federalState: string | null } | null; - readonly to: { readonly federalState: string | null } | null; - } | null; - }>; - }; - }; - - type FederalStateToIndexQueryVariables = Exact<{ - general__to__federalState: Scalars['String']; - }>; - - type FederalStateToIndexQuery = { - readonly from: { - readonly nodes: ReadonlyArray<{ - readonly state: string | null; - readonly jsonId: string | null; - readonly general: { - readonly ref: string | null; - readonly name: string | null; - readonly description: string | null; - } | null; - readonly staticMap: { - readonly childImageSharp: { - readonly gatsbyImageData: import('gatsby-plugin-image').IGatsbyImageData; - } | null; - }; - }>; - }; - readonly to: { - readonly nodes: ReadonlyArray<{ - readonly state: string | null; - readonly jsonId: string | null; - readonly general: { - readonly ref: string | null; - readonly name: string | null; - readonly description: string | null; - } | null; - readonly staticMap: { - readonly childImageSharp: { - readonly gatsbyImageData: import('gatsby-plugin-image').IGatsbyImageData; - } | 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 SteckbriefQueryVariables = Exact<{ - jsonId: Scalars['String']; - }>; - - type SteckbriefQuery = { - readonly geometry: { - readonly type: string | null; - readonly bbox: ReadonlyArray | null; - readonly id: string | null; - readonly features: ReadonlyArray<{ - readonly type: string | null; - readonly bbox: ReadonlyArray | null; - readonly geometry: { - readonly coordinates: ReadonlyArray | null> | null> | null; - readonly type: string | null; - } | null; - readonly properties: { - readonly variant: string | null; - readonly state: string | null; - readonly planning_phase: string | null; - readonly length: number | null; - readonly id_rsv: string | null; - readonly id: string | null; - readonly detail_level: string | null; - readonly discarded: boolean | null; - } | null; - } | null> | null; - } | null; - readonly meta: { - readonly cost: string | null; - readonly state: string | null; - readonly general: { - readonly stand: string | null; - readonly description: string | null; - readonly name: string | null; - readonly ref: string | null; - readonly source: string | null; - readonly length: number | null; - readonly from: { - readonly city: string | null; - readonly federalState: string | null; - } | null; - readonly to: { - readonly city: string | null; - readonly federalState: string | null; - } | null; - } | null; - readonly references: { readonly website: string | null } | null; - readonly stakeholders: ReadonlyArray<{ - readonly name: string | null; - readonly roles: ReadonlyArray | null; - } | null> | null; - readonly staticMap: { - readonly publicURL: string | null; - readonly childImageSharp: { - readonly gatsbyImageData: import('gatsby-plugin-image').IGatsbyImageData; - } | null; - }; - } | null; - }; - - type SteckbriefeIndexQueryVariables = Exact<{ [key: string]: never }>; - - type SteckbriefeIndexQuery = { - readonly allMetaJson: { - readonly radschnellwege: ReadonlyArray<{ - readonly state: string | null; - readonly jsonId: string | null; - readonly general: { - readonly ref: string | null; - readonly name: string | null; - readonly description: string | null; - } | null; - readonly staticMap: { - readonly childImageSharp: { - readonly gatsbyImageData: import('gatsby-plugin-image').IGatsbyImageData; - } | 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: DirectoryFieldsEnum; +}; + + +type DirectoryConnection_groupArgs = { + field: DirectoryFieldsEnum; + limit: InputMaybe; + skip: InputMaybe; +}; + + +type DirectoryConnection_maxArgs = { + field: DirectoryFieldsEnum; +}; + + +type DirectoryConnection_minArgs = { + field: DirectoryFieldsEnum; +}; + + +type DirectoryConnection_sumArgs = { + field: DirectoryFieldsEnum; +}; + +type DirectoryEdge = { + readonly next: Maybe; + readonly node: Directory; + readonly previous: Maybe; +}; + +type DirectoryFieldsEnum = + | 'absolutePath' + | 'accessTime' + | 'atime' + | 'atimeMs' + | 'base' + | 'birthTime' + | 'birthtime' + | 'birthtimeMs' + | 'changeTime' + | 'children' + | 'children.children' + | 'children.children.children' + | 'children.children.children.children' + | 'children.children.children.id' + | 'children.children.id' + | 'children.children.internal.content' + | 'children.children.internal.contentDigest' + | 'children.children.internal.contentFilePath' + | 'children.children.internal.description' + | 'children.children.internal.fieldOwners' + | 'children.children.internal.ignoreType' + | 'children.children.internal.mediaType' + | 'children.children.internal.owner' + | 'children.children.internal.type' + | 'children.children.parent.children' + | 'children.children.parent.id' + | 'children.id' + | 'children.internal.content' + | 'children.internal.contentDigest' + | 'children.internal.contentFilePath' + | 'children.internal.description' + | 'children.internal.fieldOwners' + | 'children.internal.ignoreType' + | 'children.internal.mediaType' + | 'children.internal.owner' + | 'children.internal.type' + | 'children.parent.children' + | 'children.parent.children.children' + | 'children.parent.children.id' + | 'children.parent.id' + | 'children.parent.internal.content' + | 'children.parent.internal.contentDigest' + | 'children.parent.internal.contentFilePath' + | 'children.parent.internal.description' + | 'children.parent.internal.fieldOwners' + | 'children.parent.internal.ignoreType' + | 'children.parent.internal.mediaType' + | 'children.parent.internal.owner' + | 'children.parent.internal.type' + | 'children.parent.parent.children' + | 'children.parent.parent.id' + | 'ctime' + | 'ctimeMs' + | 'dev' + | 'dir' + | 'ext' + | 'extension' + | 'gid' + | 'id' + | 'ino' + | 'internal.content' + | 'internal.contentDigest' + | 'internal.contentFilePath' + | 'internal.description' + | 'internal.fieldOwners' + | 'internal.ignoreType' + | 'internal.mediaType' + | 'internal.owner' + | 'internal.type' + | 'mode' + | 'modifiedTime' + | 'mtime' + | 'mtimeMs' + | 'name' + | 'nlink' + | 'parent.children' + | 'parent.children.children' + | 'parent.children.children.children' + | 'parent.children.children.id' + | 'parent.children.id' + | 'parent.children.internal.content' + | 'parent.children.internal.contentDigest' + | 'parent.children.internal.contentFilePath' + | 'parent.children.internal.description' + | 'parent.children.internal.fieldOwners' + | 'parent.children.internal.ignoreType' + | 'parent.children.internal.mediaType' + | 'parent.children.internal.owner' + | 'parent.children.internal.type' + | 'parent.children.parent.children' + | 'parent.children.parent.id' + | 'parent.id' + | 'parent.internal.content' + | 'parent.internal.contentDigest' + | 'parent.internal.contentFilePath' + | 'parent.internal.description' + | 'parent.internal.fieldOwners' + | 'parent.internal.ignoreType' + | 'parent.internal.mediaType' + | 'parent.internal.owner' + | 'parent.internal.type' + | 'parent.parent.children' + | 'parent.parent.children.children' + | 'parent.parent.children.id' + | 'parent.parent.id' + | 'parent.parent.internal.content' + | 'parent.parent.internal.contentDigest' + | 'parent.parent.internal.contentFilePath' + | 'parent.parent.internal.description' + | 'parent.parent.internal.fieldOwners' + | 'parent.parent.internal.ignoreType' + | 'parent.parent.internal.mediaType' + | 'parent.parent.internal.owner' + | 'parent.parent.internal.type' + | 'parent.parent.parent.children' + | 'parent.parent.parent.id' + | 'prettySize' + | 'rdev' + | 'relativeDirectory' + | 'relativePath' + | 'root' + | 'size' + | 'sourceInstanceName' + | 'uid'; + +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: DirectoryFieldsEnum; +}; + + +type DirectoryGroupConnection_groupArgs = { + field: DirectoryFieldsEnum; + limit: InputMaybe; + skip: InputMaybe; +}; + + +type DirectoryGroupConnection_maxArgs = { + field: DirectoryFieldsEnum; +}; + + +type DirectoryGroupConnection_minArgs = { + field: DirectoryFieldsEnum; +}; + + +type DirectoryGroupConnection_sumArgs = { + field: DirectoryFieldsEnum; +}; + +type DirectorySortInput = { + readonly fields: InputMaybe>>; + readonly order: InputMaybe>>; +}; + +type DuotoneGradient = { + readonly highlight: Scalars['String']; + readonly opacity: InputMaybe; + readonly shadow: Scalars['String']; +}; + +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 GeometryJson or null if there are no children of given type on this node */ + readonly childGeometryJson: Maybe; + /** Returns the first child node of type ImageSharp or null if there are no children of given type on this node */ + readonly childImageSharp: Maybe; + /** Returns the first child node of type MetaJson or null if there are no children of given type on this node */ + readonly childMetaJson: Maybe; + readonly children: ReadonlyArray; + /** Returns all children nodes filtered by type GeometryJson */ + readonly childrenGeometryJson: Maybe>>; + /** Returns all children nodes filtered by type ImageSharp */ + readonly childrenImageSharp: Maybe>>; + /** Returns all children nodes filtered by type MetaJson */ + readonly childrenMetaJson: 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 hash: Maybe; + 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']; + /** Copy file to static directory and return public url to it */ + readonly publicURL: Maybe; + 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 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: FileFieldsEnum; +}; + + +type FileConnection_groupArgs = { + field: FileFieldsEnum; + limit: InputMaybe; + skip: InputMaybe; +}; + + +type FileConnection_maxArgs = { + field: FileFieldsEnum; +}; + + +type FileConnection_minArgs = { + field: FileFieldsEnum; +}; + + +type FileConnection_sumArgs = { + field: FileFieldsEnum; +}; + +type FileEdge = { + readonly next: Maybe; + readonly node: File; + readonly previous: Maybe; +}; + +type FileFieldsEnum = + | 'absolutePath' + | 'accessTime' + | 'atime' + | 'atimeMs' + | 'base' + | 'birthTime' + | 'birthtime' + | 'birthtimeMs' + | 'blksize' + | 'blocks' + | 'changeTime' + | 'childGeometryJson.bbox' + | 'childGeometryJson.children' + | 'childGeometryJson.children.children' + | 'childGeometryJson.children.children.children' + | 'childGeometryJson.children.children.id' + | 'childGeometryJson.children.id' + | 'childGeometryJson.children.internal.content' + | 'childGeometryJson.children.internal.contentDigest' + | 'childGeometryJson.children.internal.contentFilePath' + | 'childGeometryJson.children.internal.description' + | 'childGeometryJson.children.internal.fieldOwners' + | 'childGeometryJson.children.internal.ignoreType' + | 'childGeometryJson.children.internal.mediaType' + | 'childGeometryJson.children.internal.owner' + | 'childGeometryJson.children.internal.type' + | 'childGeometryJson.children.parent.children' + | 'childGeometryJson.children.parent.id' + | 'childGeometryJson.crs.properties.name' + | 'childGeometryJson.crs.type' + | 'childGeometryJson.features' + | 'childGeometryJson.features.bbox' + | 'childGeometryJson.features.geometry.coordinates' + | 'childGeometryJson.features.geometry.type' + | 'childGeometryJson.features.properties.description_planning_phase' + | 'childGeometryJson.features.properties.detail_level' + | 'childGeometryJson.features.properties.discarded' + | 'childGeometryJson.features.properties.id' + | 'childGeometryJson.features.properties.id_rsv' + | 'childGeometryJson.features.properties.length' + | 'childGeometryJson.features.properties.planning_phase' + | 'childGeometryJson.features.properties.state' + | 'childGeometryJson.features.properties.variant' + | 'childGeometryJson.features.type' + | 'childGeometryJson.id' + | 'childGeometryJson.internal.content' + | 'childGeometryJson.internal.contentDigest' + | 'childGeometryJson.internal.contentFilePath' + | 'childGeometryJson.internal.description' + | 'childGeometryJson.internal.fieldOwners' + | 'childGeometryJson.internal.ignoreType' + | 'childGeometryJson.internal.mediaType' + | 'childGeometryJson.internal.owner' + | 'childGeometryJson.internal.type' + | 'childGeometryJson.jsonId' + | 'childGeometryJson.parent.children' + | 'childGeometryJson.parent.children.children' + | 'childGeometryJson.parent.children.id' + | 'childGeometryJson.parent.id' + | 'childGeometryJson.parent.internal.content' + | 'childGeometryJson.parent.internal.contentDigest' + | 'childGeometryJson.parent.internal.contentFilePath' + | 'childGeometryJson.parent.internal.description' + | 'childGeometryJson.parent.internal.fieldOwners' + | 'childGeometryJson.parent.internal.ignoreType' + | 'childGeometryJson.parent.internal.mediaType' + | 'childGeometryJson.parent.internal.owner' + | 'childGeometryJson.parent.internal.type' + | 'childGeometryJson.parent.parent.children' + | 'childGeometryJson.parent.parent.id' + | 'childGeometryJson.type' + | 'childImageSharp.children' + | 'childImageSharp.children.children' + | 'childImageSharp.children.children.children' + | 'childImageSharp.children.children.id' + | 'childImageSharp.children.id' + | 'childImageSharp.children.internal.content' + | 'childImageSharp.children.internal.contentDigest' + | 'childImageSharp.children.internal.contentFilePath' + | 'childImageSharp.children.internal.description' + | 'childImageSharp.children.internal.fieldOwners' + | 'childImageSharp.children.internal.ignoreType' + | 'childImageSharp.children.internal.mediaType' + | 'childImageSharp.children.internal.owner' + | 'childImageSharp.children.internal.type' + | 'childImageSharp.children.parent.children' + | 'childImageSharp.children.parent.id' + | 'childImageSharp.fixed.aspectRatio' + | 'childImageSharp.fixed.base64' + | 'childImageSharp.fixed.height' + | 'childImageSharp.fixed.originalName' + | 'childImageSharp.fixed.src' + | 'childImageSharp.fixed.srcSet' + | 'childImageSharp.fixed.srcSetWebp' + | 'childImageSharp.fixed.srcWebp' + | 'childImageSharp.fixed.tracedSVG' + | 'childImageSharp.fixed.width' + | 'childImageSharp.fluid.aspectRatio' + | 'childImageSharp.fluid.base64' + | 'childImageSharp.fluid.originalImg' + | 'childImageSharp.fluid.originalName' + | 'childImageSharp.fluid.presentationHeight' + | 'childImageSharp.fluid.presentationWidth' + | 'childImageSharp.fluid.sizes' + | 'childImageSharp.fluid.src' + | 'childImageSharp.fluid.srcSet' + | 'childImageSharp.fluid.srcSetWebp' + | 'childImageSharp.fluid.srcWebp' + | 'childImageSharp.fluid.tracedSVG' + | 'childImageSharp.gatsbyImageData' + | 'childImageSharp.id' + | 'childImageSharp.internal.content' + | 'childImageSharp.internal.contentDigest' + | 'childImageSharp.internal.contentFilePath' + | 'childImageSharp.internal.description' + | 'childImageSharp.internal.fieldOwners' + | 'childImageSharp.internal.ignoreType' + | 'childImageSharp.internal.mediaType' + | 'childImageSharp.internal.owner' + | 'childImageSharp.internal.type' + | 'childImageSharp.original.height' + | 'childImageSharp.original.src' + | 'childImageSharp.original.width' + | 'childImageSharp.parent.children' + | 'childImageSharp.parent.children.children' + | 'childImageSharp.parent.children.id' + | 'childImageSharp.parent.id' + | 'childImageSharp.parent.internal.content' + | 'childImageSharp.parent.internal.contentDigest' + | 'childImageSharp.parent.internal.contentFilePath' + | 'childImageSharp.parent.internal.description' + | 'childImageSharp.parent.internal.fieldOwners' + | 'childImageSharp.parent.internal.ignoreType' + | 'childImageSharp.parent.internal.mediaType' + | 'childImageSharp.parent.internal.owner' + | 'childImageSharp.parent.internal.type' + | 'childImageSharp.parent.parent.children' + | 'childImageSharp.parent.parent.id' + | 'childImageSharp.resize.aspectRatio' + | 'childImageSharp.resize.height' + | 'childImageSharp.resize.originalName' + | 'childImageSharp.resize.src' + | 'childImageSharp.resize.tracedSVG' + | 'childImageSharp.resize.width' + | 'childMetaJson.children' + | 'childMetaJson.children.children' + | 'childMetaJson.children.children.children' + | 'childMetaJson.children.children.id' + | 'childMetaJson.children.id' + | 'childMetaJson.children.internal.content' + | 'childMetaJson.children.internal.contentDigest' + | 'childMetaJson.children.internal.contentFilePath' + | 'childMetaJson.children.internal.description' + | 'childMetaJson.children.internal.fieldOwners' + | 'childMetaJson.children.internal.ignoreType' + | 'childMetaJson.children.internal.mediaType' + | 'childMetaJson.children.internal.owner' + | 'childMetaJson.children.internal.type' + | 'childMetaJson.children.parent.children' + | 'childMetaJson.children.parent.id' + | 'childMetaJson.cost' + | 'childMetaJson.gatsbyPath' + | 'childMetaJson.general.description' + | 'childMetaJson.general.from.city' + | 'childMetaJson.general.from.federalState' + | 'childMetaJson.general.length' + | 'childMetaJson.general.name' + | 'childMetaJson.general.ref' + | 'childMetaJson.general.source' + | 'childMetaJson.general.stand' + | 'childMetaJson.general.to.city' + | 'childMetaJson.general.to.federalState' + | 'childMetaJson.geoJson.bbox' + | 'childMetaJson.geoJson.children' + | 'childMetaJson.geoJson.children.children' + | 'childMetaJson.geoJson.children.id' + | 'childMetaJson.geoJson.crs.type' + | 'childMetaJson.geoJson.features' + | 'childMetaJson.geoJson.features.bbox' + | 'childMetaJson.geoJson.features.type' + | 'childMetaJson.geoJson.id' + | 'childMetaJson.geoJson.internal.content' + | 'childMetaJson.geoJson.internal.contentDigest' + | 'childMetaJson.geoJson.internal.contentFilePath' + | 'childMetaJson.geoJson.internal.description' + | 'childMetaJson.geoJson.internal.fieldOwners' + | 'childMetaJson.geoJson.internal.ignoreType' + | 'childMetaJson.geoJson.internal.mediaType' + | 'childMetaJson.geoJson.internal.owner' + | 'childMetaJson.geoJson.internal.type' + | 'childMetaJson.geoJson.jsonId' + | 'childMetaJson.geoJson.parent.children' + | 'childMetaJson.geoJson.parent.id' + | 'childMetaJson.geoJson.type' + | 'childMetaJson.id' + | 'childMetaJson.internal.content' + | 'childMetaJson.internal.contentDigest' + | 'childMetaJson.internal.contentFilePath' + | 'childMetaJson.internal.description' + | 'childMetaJson.internal.fieldOwners' + | 'childMetaJson.internal.ignoreType' + | 'childMetaJson.internal.mediaType' + | 'childMetaJson.internal.owner' + | 'childMetaJson.internal.type' + | 'childMetaJson.jsonId' + | 'childMetaJson.parent.children' + | 'childMetaJson.parent.children.children' + | 'childMetaJson.parent.children.id' + | 'childMetaJson.parent.id' + | 'childMetaJson.parent.internal.content' + | 'childMetaJson.parent.internal.contentDigest' + | 'childMetaJson.parent.internal.contentFilePath' + | 'childMetaJson.parent.internal.description' + | 'childMetaJson.parent.internal.fieldOwners' + | 'childMetaJson.parent.internal.ignoreType' + | 'childMetaJson.parent.internal.mediaType' + | 'childMetaJson.parent.internal.owner' + | 'childMetaJson.parent.internal.type' + | 'childMetaJson.parent.parent.children' + | 'childMetaJson.parent.parent.id' + | 'childMetaJson.references.website' + | 'childMetaJson.stakeholders' + | 'childMetaJson.stakeholders.name' + | 'childMetaJson.stakeholders.roles' + | 'childMetaJson.state' + | 'childMetaJson.staticMap.absolutePath' + | 'childMetaJson.staticMap.accessTime' + | 'childMetaJson.staticMap.atime' + | 'childMetaJson.staticMap.atimeMs' + | 'childMetaJson.staticMap.base' + | 'childMetaJson.staticMap.birthTime' + | 'childMetaJson.staticMap.birthtime' + | 'childMetaJson.staticMap.birthtimeMs' + | 'childMetaJson.staticMap.blksize' + | 'childMetaJson.staticMap.blocks' + | 'childMetaJson.staticMap.changeTime' + | 'childMetaJson.staticMap.childGeometryJson.bbox' + | 'childMetaJson.staticMap.childGeometryJson.children' + | 'childMetaJson.staticMap.childGeometryJson.features' + | 'childMetaJson.staticMap.childGeometryJson.id' + | 'childMetaJson.staticMap.childGeometryJson.jsonId' + | 'childMetaJson.staticMap.childGeometryJson.type' + | 'childMetaJson.staticMap.childImageSharp.children' + | 'childMetaJson.staticMap.childImageSharp.gatsbyImageData' + | 'childMetaJson.staticMap.childImageSharp.id' + | 'childMetaJson.staticMap.childMetaJson.children' + | 'childMetaJson.staticMap.childMetaJson.cost' + | 'childMetaJson.staticMap.childMetaJson.gatsbyPath' + | 'childMetaJson.staticMap.childMetaJson.id' + | 'childMetaJson.staticMap.childMetaJson.jsonId' + | 'childMetaJson.staticMap.childMetaJson.stakeholders' + | 'childMetaJson.staticMap.childMetaJson.state' + | 'childMetaJson.staticMap.children' + | 'childMetaJson.staticMap.childrenGeometryJson' + | 'childMetaJson.staticMap.childrenGeometryJson.bbox' + | 'childMetaJson.staticMap.childrenGeometryJson.children' + | 'childMetaJson.staticMap.childrenGeometryJson.features' + | 'childMetaJson.staticMap.childrenGeometryJson.id' + | 'childMetaJson.staticMap.childrenGeometryJson.jsonId' + | 'childMetaJson.staticMap.childrenGeometryJson.type' + | 'childMetaJson.staticMap.childrenImageSharp' + | 'childMetaJson.staticMap.childrenImageSharp.children' + | 'childMetaJson.staticMap.childrenImageSharp.gatsbyImageData' + | 'childMetaJson.staticMap.childrenImageSharp.id' + | 'childMetaJson.staticMap.childrenMetaJson' + | 'childMetaJson.staticMap.childrenMetaJson.children' + | 'childMetaJson.staticMap.childrenMetaJson.cost' + | 'childMetaJson.staticMap.childrenMetaJson.gatsbyPath' + | 'childMetaJson.staticMap.childrenMetaJson.id' + | 'childMetaJson.staticMap.childrenMetaJson.jsonId' + | 'childMetaJson.staticMap.childrenMetaJson.stakeholders' + | 'childMetaJson.staticMap.childrenMetaJson.state' + | 'childMetaJson.staticMap.children.children' + | 'childMetaJson.staticMap.children.id' + | 'childMetaJson.staticMap.ctime' + | 'childMetaJson.staticMap.ctimeMs' + | 'childMetaJson.staticMap.dev' + | 'childMetaJson.staticMap.dir' + | 'childMetaJson.staticMap.ext' + | 'childMetaJson.staticMap.extension' + | 'childMetaJson.staticMap.gid' + | 'childMetaJson.staticMap.hash' + | 'childMetaJson.staticMap.id' + | 'childMetaJson.staticMap.ino' + | 'childMetaJson.staticMap.internal.content' + | 'childMetaJson.staticMap.internal.contentDigest' + | 'childMetaJson.staticMap.internal.contentFilePath' + | 'childMetaJson.staticMap.internal.description' + | 'childMetaJson.staticMap.internal.fieldOwners' + | 'childMetaJson.staticMap.internal.ignoreType' + | 'childMetaJson.staticMap.internal.mediaType' + | 'childMetaJson.staticMap.internal.owner' + | 'childMetaJson.staticMap.internal.type' + | 'childMetaJson.staticMap.mode' + | 'childMetaJson.staticMap.modifiedTime' + | 'childMetaJson.staticMap.mtime' + | 'childMetaJson.staticMap.mtimeMs' + | 'childMetaJson.staticMap.name' + | 'childMetaJson.staticMap.nlink' + | 'childMetaJson.staticMap.parent.children' + | 'childMetaJson.staticMap.parent.id' + | 'childMetaJson.staticMap.prettySize' + | 'childMetaJson.staticMap.publicURL' + | 'childMetaJson.staticMap.rdev' + | 'childMetaJson.staticMap.relativeDirectory' + | 'childMetaJson.staticMap.relativePath' + | 'childMetaJson.staticMap.root' + | 'childMetaJson.staticMap.size' + | 'childMetaJson.staticMap.sourceInstanceName' + | 'childMetaJson.staticMap.uid' + | 'children' + | 'childrenGeometryJson' + | 'childrenGeometryJson.bbox' + | 'childrenGeometryJson.children' + | 'childrenGeometryJson.children.children' + | 'childrenGeometryJson.children.children.children' + | 'childrenGeometryJson.children.children.id' + | 'childrenGeometryJson.children.id' + | 'childrenGeometryJson.children.internal.content' + | 'childrenGeometryJson.children.internal.contentDigest' + | 'childrenGeometryJson.children.internal.contentFilePath' + | 'childrenGeometryJson.children.internal.description' + | 'childrenGeometryJson.children.internal.fieldOwners' + | 'childrenGeometryJson.children.internal.ignoreType' + | 'childrenGeometryJson.children.internal.mediaType' + | 'childrenGeometryJson.children.internal.owner' + | 'childrenGeometryJson.children.internal.type' + | 'childrenGeometryJson.children.parent.children' + | 'childrenGeometryJson.children.parent.id' + | 'childrenGeometryJson.crs.properties.name' + | 'childrenGeometryJson.crs.type' + | 'childrenGeometryJson.features' + | 'childrenGeometryJson.features.bbox' + | 'childrenGeometryJson.features.geometry.coordinates' + | 'childrenGeometryJson.features.geometry.type' + | 'childrenGeometryJson.features.properties.description_planning_phase' + | 'childrenGeometryJson.features.properties.detail_level' + | 'childrenGeometryJson.features.properties.discarded' + | 'childrenGeometryJson.features.properties.id' + | 'childrenGeometryJson.features.properties.id_rsv' + | 'childrenGeometryJson.features.properties.length' + | 'childrenGeometryJson.features.properties.planning_phase' + | 'childrenGeometryJson.features.properties.state' + | 'childrenGeometryJson.features.properties.variant' + | 'childrenGeometryJson.features.type' + | 'childrenGeometryJson.id' + | 'childrenGeometryJson.internal.content' + | 'childrenGeometryJson.internal.contentDigest' + | 'childrenGeometryJson.internal.contentFilePath' + | 'childrenGeometryJson.internal.description' + | 'childrenGeometryJson.internal.fieldOwners' + | 'childrenGeometryJson.internal.ignoreType' + | 'childrenGeometryJson.internal.mediaType' + | 'childrenGeometryJson.internal.owner' + | 'childrenGeometryJson.internal.type' + | 'childrenGeometryJson.jsonId' + | 'childrenGeometryJson.parent.children' + | 'childrenGeometryJson.parent.children.children' + | 'childrenGeometryJson.parent.children.id' + | 'childrenGeometryJson.parent.id' + | 'childrenGeometryJson.parent.internal.content' + | 'childrenGeometryJson.parent.internal.contentDigest' + | 'childrenGeometryJson.parent.internal.contentFilePath' + | 'childrenGeometryJson.parent.internal.description' + | 'childrenGeometryJson.parent.internal.fieldOwners' + | 'childrenGeometryJson.parent.internal.ignoreType' + | 'childrenGeometryJson.parent.internal.mediaType' + | 'childrenGeometryJson.parent.internal.owner' + | 'childrenGeometryJson.parent.internal.type' + | 'childrenGeometryJson.parent.parent.children' + | 'childrenGeometryJson.parent.parent.id' + | 'childrenGeometryJson.type' + | 'childrenImageSharp' + | 'childrenImageSharp.children' + | 'childrenImageSharp.children.children' + | 'childrenImageSharp.children.children.children' + | 'childrenImageSharp.children.children.id' + | 'childrenImageSharp.children.id' + | 'childrenImageSharp.children.internal.content' + | 'childrenImageSharp.children.internal.contentDigest' + | 'childrenImageSharp.children.internal.contentFilePath' + | 'childrenImageSharp.children.internal.description' + | 'childrenImageSharp.children.internal.fieldOwners' + | 'childrenImageSharp.children.internal.ignoreType' + | 'childrenImageSharp.children.internal.mediaType' + | 'childrenImageSharp.children.internal.owner' + | 'childrenImageSharp.children.internal.type' + | 'childrenImageSharp.children.parent.children' + | 'childrenImageSharp.children.parent.id' + | 'childrenImageSharp.fixed.aspectRatio' + | 'childrenImageSharp.fixed.base64' + | 'childrenImageSharp.fixed.height' + | 'childrenImageSharp.fixed.originalName' + | 'childrenImageSharp.fixed.src' + | 'childrenImageSharp.fixed.srcSet' + | 'childrenImageSharp.fixed.srcSetWebp' + | 'childrenImageSharp.fixed.srcWebp' + | 'childrenImageSharp.fixed.tracedSVG' + | 'childrenImageSharp.fixed.width' + | 'childrenImageSharp.fluid.aspectRatio' + | 'childrenImageSharp.fluid.base64' + | 'childrenImageSharp.fluid.originalImg' + | 'childrenImageSharp.fluid.originalName' + | 'childrenImageSharp.fluid.presentationHeight' + | 'childrenImageSharp.fluid.presentationWidth' + | 'childrenImageSharp.fluid.sizes' + | 'childrenImageSharp.fluid.src' + | 'childrenImageSharp.fluid.srcSet' + | 'childrenImageSharp.fluid.srcSetWebp' + | 'childrenImageSharp.fluid.srcWebp' + | 'childrenImageSharp.fluid.tracedSVG' + | 'childrenImageSharp.gatsbyImageData' + | 'childrenImageSharp.id' + | 'childrenImageSharp.internal.content' + | 'childrenImageSharp.internal.contentDigest' + | 'childrenImageSharp.internal.contentFilePath' + | 'childrenImageSharp.internal.description' + | 'childrenImageSharp.internal.fieldOwners' + | 'childrenImageSharp.internal.ignoreType' + | 'childrenImageSharp.internal.mediaType' + | 'childrenImageSharp.internal.owner' + | 'childrenImageSharp.internal.type' + | 'childrenImageSharp.original.height' + | 'childrenImageSharp.original.src' + | 'childrenImageSharp.original.width' + | 'childrenImageSharp.parent.children' + | 'childrenImageSharp.parent.children.children' + | 'childrenImageSharp.parent.children.id' + | 'childrenImageSharp.parent.id' + | 'childrenImageSharp.parent.internal.content' + | 'childrenImageSharp.parent.internal.contentDigest' + | 'childrenImageSharp.parent.internal.contentFilePath' + | 'childrenImageSharp.parent.internal.description' + | 'childrenImageSharp.parent.internal.fieldOwners' + | 'childrenImageSharp.parent.internal.ignoreType' + | 'childrenImageSharp.parent.internal.mediaType' + | 'childrenImageSharp.parent.internal.owner' + | 'childrenImageSharp.parent.internal.type' + | 'childrenImageSharp.parent.parent.children' + | 'childrenImageSharp.parent.parent.id' + | 'childrenImageSharp.resize.aspectRatio' + | 'childrenImageSharp.resize.height' + | 'childrenImageSharp.resize.originalName' + | 'childrenImageSharp.resize.src' + | 'childrenImageSharp.resize.tracedSVG' + | 'childrenImageSharp.resize.width' + | 'childrenMetaJson' + | 'childrenMetaJson.children' + | 'childrenMetaJson.children.children' + | 'childrenMetaJson.children.children.children' + | 'childrenMetaJson.children.children.id' + | 'childrenMetaJson.children.id' + | 'childrenMetaJson.children.internal.content' + | 'childrenMetaJson.children.internal.contentDigest' + | 'childrenMetaJson.children.internal.contentFilePath' + | 'childrenMetaJson.children.internal.description' + | 'childrenMetaJson.children.internal.fieldOwners' + | 'childrenMetaJson.children.internal.ignoreType' + | 'childrenMetaJson.children.internal.mediaType' + | 'childrenMetaJson.children.internal.owner' + | 'childrenMetaJson.children.internal.type' + | 'childrenMetaJson.children.parent.children' + | 'childrenMetaJson.children.parent.id' + | 'childrenMetaJson.cost' + | 'childrenMetaJson.gatsbyPath' + | 'childrenMetaJson.general.description' + | 'childrenMetaJson.general.from.city' + | 'childrenMetaJson.general.from.federalState' + | 'childrenMetaJson.general.length' + | 'childrenMetaJson.general.name' + | 'childrenMetaJson.general.ref' + | 'childrenMetaJson.general.source' + | 'childrenMetaJson.general.stand' + | 'childrenMetaJson.general.to.city' + | 'childrenMetaJson.general.to.federalState' + | 'childrenMetaJson.geoJson.bbox' + | 'childrenMetaJson.geoJson.children' + | 'childrenMetaJson.geoJson.children.children' + | 'childrenMetaJson.geoJson.children.id' + | 'childrenMetaJson.geoJson.crs.type' + | 'childrenMetaJson.geoJson.features' + | 'childrenMetaJson.geoJson.features.bbox' + | 'childrenMetaJson.geoJson.features.type' + | 'childrenMetaJson.geoJson.id' + | 'childrenMetaJson.geoJson.internal.content' + | 'childrenMetaJson.geoJson.internal.contentDigest' + | 'childrenMetaJson.geoJson.internal.contentFilePath' + | 'childrenMetaJson.geoJson.internal.description' + | 'childrenMetaJson.geoJson.internal.fieldOwners' + | 'childrenMetaJson.geoJson.internal.ignoreType' + | 'childrenMetaJson.geoJson.internal.mediaType' + | 'childrenMetaJson.geoJson.internal.owner' + | 'childrenMetaJson.geoJson.internal.type' + | 'childrenMetaJson.geoJson.jsonId' + | 'childrenMetaJson.geoJson.parent.children' + | 'childrenMetaJson.geoJson.parent.id' + | 'childrenMetaJson.geoJson.type' + | 'childrenMetaJson.id' + | 'childrenMetaJson.internal.content' + | 'childrenMetaJson.internal.contentDigest' + | 'childrenMetaJson.internal.contentFilePath' + | 'childrenMetaJson.internal.description' + | 'childrenMetaJson.internal.fieldOwners' + | 'childrenMetaJson.internal.ignoreType' + | 'childrenMetaJson.internal.mediaType' + | 'childrenMetaJson.internal.owner' + | 'childrenMetaJson.internal.type' + | 'childrenMetaJson.jsonId' + | 'childrenMetaJson.parent.children' + | 'childrenMetaJson.parent.children.children' + | 'childrenMetaJson.parent.children.id' + | 'childrenMetaJson.parent.id' + | 'childrenMetaJson.parent.internal.content' + | 'childrenMetaJson.parent.internal.contentDigest' + | 'childrenMetaJson.parent.internal.contentFilePath' + | 'childrenMetaJson.parent.internal.description' + | 'childrenMetaJson.parent.internal.fieldOwners' + | 'childrenMetaJson.parent.internal.ignoreType' + | 'childrenMetaJson.parent.internal.mediaType' + | 'childrenMetaJson.parent.internal.owner' + | 'childrenMetaJson.parent.internal.type' + | 'childrenMetaJson.parent.parent.children' + | 'childrenMetaJson.parent.parent.id' + | 'childrenMetaJson.references.website' + | 'childrenMetaJson.stakeholders' + | 'childrenMetaJson.stakeholders.name' + | 'childrenMetaJson.stakeholders.roles' + | 'childrenMetaJson.state' + | 'childrenMetaJson.staticMap.absolutePath' + | 'childrenMetaJson.staticMap.accessTime' + | 'childrenMetaJson.staticMap.atime' + | 'childrenMetaJson.staticMap.atimeMs' + | 'childrenMetaJson.staticMap.base' + | 'childrenMetaJson.staticMap.birthTime' + | 'childrenMetaJson.staticMap.birthtime' + | 'childrenMetaJson.staticMap.birthtimeMs' + | 'childrenMetaJson.staticMap.blksize' + | 'childrenMetaJson.staticMap.blocks' + | 'childrenMetaJson.staticMap.changeTime' + | 'childrenMetaJson.staticMap.childGeometryJson.bbox' + | 'childrenMetaJson.staticMap.childGeometryJson.children' + | 'childrenMetaJson.staticMap.childGeometryJson.features' + | 'childrenMetaJson.staticMap.childGeometryJson.id' + | 'childrenMetaJson.staticMap.childGeometryJson.jsonId' + | 'childrenMetaJson.staticMap.childGeometryJson.type' + | 'childrenMetaJson.staticMap.childImageSharp.children' + | 'childrenMetaJson.staticMap.childImageSharp.gatsbyImageData' + | 'childrenMetaJson.staticMap.childImageSharp.id' + | 'childrenMetaJson.staticMap.childMetaJson.children' + | 'childrenMetaJson.staticMap.childMetaJson.cost' + | 'childrenMetaJson.staticMap.childMetaJson.gatsbyPath' + | 'childrenMetaJson.staticMap.childMetaJson.id' + | 'childrenMetaJson.staticMap.childMetaJson.jsonId' + | 'childrenMetaJson.staticMap.childMetaJson.stakeholders' + | 'childrenMetaJson.staticMap.childMetaJson.state' + | 'childrenMetaJson.staticMap.children' + | 'childrenMetaJson.staticMap.childrenGeometryJson' + | 'childrenMetaJson.staticMap.childrenGeometryJson.bbox' + | 'childrenMetaJson.staticMap.childrenGeometryJson.children' + | 'childrenMetaJson.staticMap.childrenGeometryJson.features' + | 'childrenMetaJson.staticMap.childrenGeometryJson.id' + | 'childrenMetaJson.staticMap.childrenGeometryJson.jsonId' + | 'childrenMetaJson.staticMap.childrenGeometryJson.type' + | 'childrenMetaJson.staticMap.childrenImageSharp' + | 'childrenMetaJson.staticMap.childrenImageSharp.children' + | 'childrenMetaJson.staticMap.childrenImageSharp.gatsbyImageData' + | 'childrenMetaJson.staticMap.childrenImageSharp.id' + | 'childrenMetaJson.staticMap.childrenMetaJson' + | 'childrenMetaJson.staticMap.childrenMetaJson.children' + | 'childrenMetaJson.staticMap.childrenMetaJson.cost' + | 'childrenMetaJson.staticMap.childrenMetaJson.gatsbyPath' + | 'childrenMetaJson.staticMap.childrenMetaJson.id' + | 'childrenMetaJson.staticMap.childrenMetaJson.jsonId' + | 'childrenMetaJson.staticMap.childrenMetaJson.stakeholders' + | 'childrenMetaJson.staticMap.childrenMetaJson.state' + | 'childrenMetaJson.staticMap.children.children' + | 'childrenMetaJson.staticMap.children.id' + | 'childrenMetaJson.staticMap.ctime' + | 'childrenMetaJson.staticMap.ctimeMs' + | 'childrenMetaJson.staticMap.dev' + | 'childrenMetaJson.staticMap.dir' + | 'childrenMetaJson.staticMap.ext' + | 'childrenMetaJson.staticMap.extension' + | 'childrenMetaJson.staticMap.gid' + | 'childrenMetaJson.staticMap.hash' + | 'childrenMetaJson.staticMap.id' + | 'childrenMetaJson.staticMap.ino' + | 'childrenMetaJson.staticMap.internal.content' + | 'childrenMetaJson.staticMap.internal.contentDigest' + | 'childrenMetaJson.staticMap.internal.contentFilePath' + | 'childrenMetaJson.staticMap.internal.description' + | 'childrenMetaJson.staticMap.internal.fieldOwners' + | 'childrenMetaJson.staticMap.internal.ignoreType' + | 'childrenMetaJson.staticMap.internal.mediaType' + | 'childrenMetaJson.staticMap.internal.owner' + | 'childrenMetaJson.staticMap.internal.type' + | 'childrenMetaJson.staticMap.mode' + | 'childrenMetaJson.staticMap.modifiedTime' + | 'childrenMetaJson.staticMap.mtime' + | 'childrenMetaJson.staticMap.mtimeMs' + | 'childrenMetaJson.staticMap.name' + | 'childrenMetaJson.staticMap.nlink' + | 'childrenMetaJson.staticMap.parent.children' + | 'childrenMetaJson.staticMap.parent.id' + | 'childrenMetaJson.staticMap.prettySize' + | 'childrenMetaJson.staticMap.publicURL' + | 'childrenMetaJson.staticMap.rdev' + | 'childrenMetaJson.staticMap.relativeDirectory' + | 'childrenMetaJson.staticMap.relativePath' + | 'childrenMetaJson.staticMap.root' + | 'childrenMetaJson.staticMap.size' + | 'childrenMetaJson.staticMap.sourceInstanceName' + | 'childrenMetaJson.staticMap.uid' + | 'children.children' + | 'children.children.children' + | 'children.children.children.children' + | 'children.children.children.id' + | 'children.children.id' + | 'children.children.internal.content' + | 'children.children.internal.contentDigest' + | 'children.children.internal.contentFilePath' + | 'children.children.internal.description' + | 'children.children.internal.fieldOwners' + | 'children.children.internal.ignoreType' + | 'children.children.internal.mediaType' + | 'children.children.internal.owner' + | 'children.children.internal.type' + | 'children.children.parent.children' + | 'children.children.parent.id' + | 'children.id' + | 'children.internal.content' + | 'children.internal.contentDigest' + | 'children.internal.contentFilePath' + | 'children.internal.description' + | 'children.internal.fieldOwners' + | 'children.internal.ignoreType' + | 'children.internal.mediaType' + | 'children.internal.owner' + | 'children.internal.type' + | 'children.parent.children' + | 'children.parent.children.children' + | 'children.parent.children.id' + | 'children.parent.id' + | 'children.parent.internal.content' + | 'children.parent.internal.contentDigest' + | 'children.parent.internal.contentFilePath' + | 'children.parent.internal.description' + | 'children.parent.internal.fieldOwners' + | 'children.parent.internal.ignoreType' + | 'children.parent.internal.mediaType' + | 'children.parent.internal.owner' + | 'children.parent.internal.type' + | 'children.parent.parent.children' + | 'children.parent.parent.id' + | 'ctime' + | 'ctimeMs' + | 'dev' + | 'dir' + | 'ext' + | 'extension' + | 'gid' + | 'hash' + | 'id' + | 'ino' + | 'internal.content' + | 'internal.contentDigest' + | 'internal.contentFilePath' + | 'internal.description' + | 'internal.fieldOwners' + | 'internal.ignoreType' + | 'internal.mediaType' + | 'internal.owner' + | 'internal.type' + | 'mode' + | 'modifiedTime' + | 'mtime' + | 'mtimeMs' + | 'name' + | 'nlink' + | 'parent.children' + | 'parent.children.children' + | 'parent.children.children.children' + | 'parent.children.children.id' + | 'parent.children.id' + | 'parent.children.internal.content' + | 'parent.children.internal.contentDigest' + | 'parent.children.internal.contentFilePath' + | 'parent.children.internal.description' + | 'parent.children.internal.fieldOwners' + | 'parent.children.internal.ignoreType' + | 'parent.children.internal.mediaType' + | 'parent.children.internal.owner' + | 'parent.children.internal.type' + | 'parent.children.parent.children' + | 'parent.children.parent.id' + | 'parent.id' + | 'parent.internal.content' + | 'parent.internal.contentDigest' + | 'parent.internal.contentFilePath' + | 'parent.internal.description' + | 'parent.internal.fieldOwners' + | 'parent.internal.ignoreType' + | 'parent.internal.mediaType' + | 'parent.internal.owner' + | 'parent.internal.type' + | 'parent.parent.children' + | 'parent.parent.children.children' + | 'parent.parent.children.id' + | 'parent.parent.id' + | 'parent.parent.internal.content' + | 'parent.parent.internal.contentDigest' + | 'parent.parent.internal.contentFilePath' + | 'parent.parent.internal.description' + | 'parent.parent.internal.fieldOwners' + | 'parent.parent.internal.ignoreType' + | 'parent.parent.internal.mediaType' + | 'parent.parent.internal.owner' + | 'parent.parent.internal.type' + | 'parent.parent.parent.children' + | 'parent.parent.parent.id' + | 'prettySize' + | 'publicURL' + | 'rdev' + | 'relativeDirectory' + | 'relativePath' + | 'root' + | 'size' + | 'sourceInstanceName' + | 'uid'; + +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 childGeometryJson: InputMaybe; + readonly childImageSharp: InputMaybe; + readonly childMetaJson: InputMaybe; + readonly children: InputMaybe; + readonly childrenGeometryJson: InputMaybe; + readonly childrenImageSharp: InputMaybe; + readonly childrenMetaJson: InputMaybe; + readonly ctime: InputMaybe; + readonly ctimeMs: InputMaybe; + readonly dev: InputMaybe; + readonly dir: InputMaybe; + readonly ext: InputMaybe; + readonly extension: InputMaybe; + readonly gid: InputMaybe; + readonly hash: 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 publicURL: InputMaybe; + readonly rdev: InputMaybe; + readonly relativeDirectory: InputMaybe; + readonly relativePath: InputMaybe; + readonly root: InputMaybe; + readonly size: InputMaybe; + readonly sourceInstanceName: InputMaybe; + readonly uid: 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: FileFieldsEnum; +}; + + +type FileGroupConnection_groupArgs = { + field: FileFieldsEnum; + limit: InputMaybe; + skip: InputMaybe; +}; + + +type FileGroupConnection_maxArgs = { + field: FileFieldsEnum; +}; + + +type FileGroupConnection_minArgs = { + field: FileFieldsEnum; +}; + + +type FileGroupConnection_sumArgs = { + field: FileFieldsEnum; +}; + +type FileSortInput = { + readonly fields: InputMaybe>>; + readonly order: 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 GeometryJson = Node & { + readonly bbox: Maybe>>; + readonly children: ReadonlyArray; + readonly crs: Maybe; + readonly features: Maybe>>; + readonly id: Scalars['ID']; + readonly internal: Internal; + readonly jsonId: Maybe; + readonly parent: Maybe; + readonly type: Maybe; +}; + +type GeometryJsonConnection = { + 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 GeometryJsonConnection_distinctArgs = { + field: GeometryJsonFieldsEnum; +}; + + +type GeometryJsonConnection_groupArgs = { + field: GeometryJsonFieldsEnum; + limit: InputMaybe; + skip: InputMaybe; +}; + + +type GeometryJsonConnection_maxArgs = { + field: GeometryJsonFieldsEnum; +}; + + +type GeometryJsonConnection_minArgs = { + field: GeometryJsonFieldsEnum; +}; + + +type GeometryJsonConnection_sumArgs = { + field: GeometryJsonFieldsEnum; +}; + +type GeometryJsonCrs = { + readonly properties: Maybe; + readonly type: Maybe; +}; + +type GeometryJsonCrsFilterInput = { + readonly properties: InputMaybe; + readonly type: InputMaybe; +}; + +type GeometryJsonCrsProperties = { + readonly name: Maybe; +}; + +type GeometryJsonCrsPropertiesFilterInput = { + readonly name: InputMaybe; +}; + +type GeometryJsonEdge = { + readonly next: Maybe; + readonly node: GeometryJson; + readonly previous: Maybe; +}; + +type GeometryJsonFeatures = { + readonly bbox: Maybe>>; + readonly geometry: Maybe; + readonly properties: Maybe; + readonly type: Maybe; +}; + +type GeometryJsonFeaturesFilterInput = { + readonly bbox: InputMaybe; + readonly geometry: InputMaybe; + readonly properties: InputMaybe; + readonly type: InputMaybe; +}; + +type GeometryJsonFeaturesFilterListInput = { + readonly elemMatch: InputMaybe; +}; + +type GeometryJsonFeaturesGeometry = { + readonly coordinates: Maybe>>>>>>; + readonly type: Maybe; +}; + +type GeometryJsonFeaturesGeometryFilterInput = { + readonly coordinates: InputMaybe; + readonly type: InputMaybe; +}; + +type GeometryJsonFeaturesProperties = { + readonly description_planning_phase: Maybe; + readonly detail_level: Maybe; + readonly discarded: Maybe; + readonly id: Maybe; + readonly id_rsv: Maybe; + readonly length: Maybe; + readonly planning_phase: Maybe; + readonly state: Maybe; + readonly variant: Maybe; +}; + +type GeometryJsonFeaturesPropertiesFilterInput = { + readonly description_planning_phase: InputMaybe; + readonly detail_level: InputMaybe; + readonly discarded: InputMaybe; + readonly id: InputMaybe; + readonly id_rsv: InputMaybe; + readonly length: InputMaybe; + readonly planning_phase: InputMaybe; + readonly state: InputMaybe; + readonly variant: InputMaybe; +}; + +type GeometryJsonFieldsEnum = + | 'bbox' + | 'children' + | 'children.children' + | 'children.children.children' + | 'children.children.children.children' + | 'children.children.children.id' + | 'children.children.id' + | 'children.children.internal.content' + | 'children.children.internal.contentDigest' + | 'children.children.internal.contentFilePath' + | 'children.children.internal.description' + | 'children.children.internal.fieldOwners' + | 'children.children.internal.ignoreType' + | 'children.children.internal.mediaType' + | 'children.children.internal.owner' + | 'children.children.internal.type' + | 'children.children.parent.children' + | 'children.children.parent.id' + | 'children.id' + | 'children.internal.content' + | 'children.internal.contentDigest' + | 'children.internal.contentFilePath' + | 'children.internal.description' + | 'children.internal.fieldOwners' + | 'children.internal.ignoreType' + | 'children.internal.mediaType' + | 'children.internal.owner' + | 'children.internal.type' + | 'children.parent.children' + | 'children.parent.children.children' + | 'children.parent.children.id' + | 'children.parent.id' + | 'children.parent.internal.content' + | 'children.parent.internal.contentDigest' + | 'children.parent.internal.contentFilePath' + | 'children.parent.internal.description' + | 'children.parent.internal.fieldOwners' + | 'children.parent.internal.ignoreType' + | 'children.parent.internal.mediaType' + | 'children.parent.internal.owner' + | 'children.parent.internal.type' + | 'children.parent.parent.children' + | 'children.parent.parent.id' + | 'crs.properties.name' + | 'crs.type' + | 'features' + | 'features.bbox' + | 'features.geometry.coordinates' + | 'features.geometry.type' + | 'features.properties.description_planning_phase' + | 'features.properties.detail_level' + | 'features.properties.discarded' + | 'features.properties.id' + | 'features.properties.id_rsv' + | 'features.properties.length' + | 'features.properties.planning_phase' + | 'features.properties.state' + | 'features.properties.variant' + | 'features.type' + | 'id' + | 'internal.content' + | 'internal.contentDigest' + | 'internal.contentFilePath' + | 'internal.description' + | 'internal.fieldOwners' + | 'internal.ignoreType' + | 'internal.mediaType' + | 'internal.owner' + | 'internal.type' + | 'jsonId' + | 'parent.children' + | 'parent.children.children' + | 'parent.children.children.children' + | 'parent.children.children.id' + | 'parent.children.id' + | 'parent.children.internal.content' + | 'parent.children.internal.contentDigest' + | 'parent.children.internal.contentFilePath' + | 'parent.children.internal.description' + | 'parent.children.internal.fieldOwners' + | 'parent.children.internal.ignoreType' + | 'parent.children.internal.mediaType' + | 'parent.children.internal.owner' + | 'parent.children.internal.type' + | 'parent.children.parent.children' + | 'parent.children.parent.id' + | 'parent.id' + | 'parent.internal.content' + | 'parent.internal.contentDigest' + | 'parent.internal.contentFilePath' + | 'parent.internal.description' + | 'parent.internal.fieldOwners' + | 'parent.internal.ignoreType' + | 'parent.internal.mediaType' + | 'parent.internal.owner' + | 'parent.internal.type' + | 'parent.parent.children' + | 'parent.parent.children.children' + | 'parent.parent.children.id' + | 'parent.parent.id' + | 'parent.parent.internal.content' + | 'parent.parent.internal.contentDigest' + | 'parent.parent.internal.contentFilePath' + | 'parent.parent.internal.description' + | 'parent.parent.internal.fieldOwners' + | 'parent.parent.internal.ignoreType' + | 'parent.parent.internal.mediaType' + | 'parent.parent.internal.owner' + | 'parent.parent.internal.type' + | 'parent.parent.parent.children' + | 'parent.parent.parent.id' + | 'type'; + +type GeometryJsonFilterInput = { + readonly bbox: InputMaybe; + readonly children: InputMaybe; + readonly crs: InputMaybe; + readonly features: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly jsonId: InputMaybe; + readonly parent: InputMaybe; + readonly type: InputMaybe; +}; + +type GeometryJsonFilterListInput = { + readonly elemMatch: InputMaybe; +}; + +type GeometryJsonGroupConnection = { + 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 GeometryJsonGroupConnection_distinctArgs = { + field: GeometryJsonFieldsEnum; +}; + + +type GeometryJsonGroupConnection_groupArgs = { + field: GeometryJsonFieldsEnum; + limit: InputMaybe; + skip: InputMaybe; +}; + + +type GeometryJsonGroupConnection_maxArgs = { + field: GeometryJsonFieldsEnum; +}; + + +type GeometryJsonGroupConnection_minArgs = { + field: GeometryJsonFieldsEnum; +}; + + +type GeometryJsonGroupConnection_sumArgs = { + field: GeometryJsonFieldsEnum; +}; + +type GeometryJsonSortInput = { + readonly fields: InputMaybe>>; + readonly order: InputMaybe>>; +}; + +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: ImageSharpFieldsEnum; +}; + + +type ImageSharpConnection_groupArgs = { + field: ImageSharpFieldsEnum; + limit: InputMaybe; + skip: InputMaybe; +}; + + +type ImageSharpConnection_maxArgs = { + field: ImageSharpFieldsEnum; +}; + + +type ImageSharpConnection_minArgs = { + field: ImageSharpFieldsEnum; +}; + + +type ImageSharpConnection_sumArgs = { + field: ImageSharpFieldsEnum; +}; + +type ImageSharpEdge = { + readonly next: Maybe; + readonly node: ImageSharp; + readonly previous: Maybe; +}; + +type ImageSharpFieldsEnum = + | 'children' + | 'children.children' + | 'children.children.children' + | 'children.children.children.children' + | 'children.children.children.id' + | 'children.children.id' + | 'children.children.internal.content' + | 'children.children.internal.contentDigest' + | 'children.children.internal.contentFilePath' + | 'children.children.internal.description' + | 'children.children.internal.fieldOwners' + | 'children.children.internal.ignoreType' + | 'children.children.internal.mediaType' + | 'children.children.internal.owner' + | 'children.children.internal.type' + | 'children.children.parent.children' + | 'children.children.parent.id' + | 'children.id' + | 'children.internal.content' + | 'children.internal.contentDigest' + | 'children.internal.contentFilePath' + | 'children.internal.description' + | 'children.internal.fieldOwners' + | 'children.internal.ignoreType' + | 'children.internal.mediaType' + | 'children.internal.owner' + | 'children.internal.type' + | 'children.parent.children' + | 'children.parent.children.children' + | 'children.parent.children.id' + | 'children.parent.id' + | 'children.parent.internal.content' + | 'children.parent.internal.contentDigest' + | 'children.parent.internal.contentFilePath' + | 'children.parent.internal.description' + | 'children.parent.internal.fieldOwners' + | 'children.parent.internal.ignoreType' + | 'children.parent.internal.mediaType' + | 'children.parent.internal.owner' + | 'children.parent.internal.type' + | 'children.parent.parent.children' + | 'children.parent.parent.id' + | 'fixed.aspectRatio' + | 'fixed.base64' + | 'fixed.height' + | 'fixed.originalName' + | 'fixed.src' + | 'fixed.srcSet' + | 'fixed.srcSetWebp' + | 'fixed.srcWebp' + | 'fixed.tracedSVG' + | 'fixed.width' + | 'fluid.aspectRatio' + | 'fluid.base64' + | 'fluid.originalImg' + | 'fluid.originalName' + | 'fluid.presentationHeight' + | 'fluid.presentationWidth' + | 'fluid.sizes' + | 'fluid.src' + | 'fluid.srcSet' + | 'fluid.srcSetWebp' + | 'fluid.srcWebp' + | 'fluid.tracedSVG' + | 'gatsbyImageData' + | 'id' + | 'internal.content' + | 'internal.contentDigest' + | 'internal.contentFilePath' + | 'internal.description' + | 'internal.fieldOwners' + | 'internal.ignoreType' + | 'internal.mediaType' + | 'internal.owner' + | 'internal.type' + | 'original.height' + | 'original.src' + | 'original.width' + | 'parent.children' + | 'parent.children.children' + | 'parent.children.children.children' + | 'parent.children.children.id' + | 'parent.children.id' + | 'parent.children.internal.content' + | 'parent.children.internal.contentDigest' + | 'parent.children.internal.contentFilePath' + | 'parent.children.internal.description' + | 'parent.children.internal.fieldOwners' + | 'parent.children.internal.ignoreType' + | 'parent.children.internal.mediaType' + | 'parent.children.internal.owner' + | 'parent.children.internal.type' + | 'parent.children.parent.children' + | 'parent.children.parent.id' + | 'parent.id' + | 'parent.internal.content' + | 'parent.internal.contentDigest' + | 'parent.internal.contentFilePath' + | 'parent.internal.description' + | 'parent.internal.fieldOwners' + | 'parent.internal.ignoreType' + | 'parent.internal.mediaType' + | 'parent.internal.owner' + | 'parent.internal.type' + | 'parent.parent.children' + | 'parent.parent.children.children' + | 'parent.parent.children.id' + | 'parent.parent.id' + | 'parent.parent.internal.content' + | 'parent.parent.internal.contentDigest' + | 'parent.parent.internal.contentFilePath' + | 'parent.parent.internal.description' + | 'parent.parent.internal.fieldOwners' + | 'parent.parent.internal.ignoreType' + | 'parent.parent.internal.mediaType' + | 'parent.parent.internal.owner' + | 'parent.parent.internal.type' + | 'parent.parent.parent.children' + | 'parent.parent.parent.id' + | 'resize.aspectRatio' + | 'resize.height' + | 'resize.originalName' + | 'resize.src' + | 'resize.tracedSVG' + | 'resize.width'; + +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 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 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 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 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: ImageSharpFieldsEnum; +}; + + +type ImageSharpGroupConnection_groupArgs = { + field: ImageSharpFieldsEnum; + limit: InputMaybe; + skip: InputMaybe; +}; + + +type ImageSharpGroupConnection_maxArgs = { + field: ImageSharpFieldsEnum; +}; + + +type ImageSharpGroupConnection_minArgs = { + field: ImageSharpFieldsEnum; +}; + + +type ImageSharpGroupConnection_sumArgs = { + field: ImageSharpFieldsEnum; +}; + +type ImageSharpOriginal = { + readonly height: Maybe; + readonly src: Maybe; + readonly width: Maybe; +}; + +type ImageSharpOriginalFilterInput = { + 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 ImageSharpResizeFilterInput = { + readonly aspectRatio: InputMaybe; + readonly height: InputMaybe; + readonly originalName: InputMaybe; + readonly src: InputMaybe; + readonly tracedSVG: InputMaybe; + readonly width: InputMaybe; +}; + +type ImageSharpSortInput = { + readonly fields: InputMaybe>>; + readonly order: 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 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 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 MetaJson = Node & { + readonly children: ReadonlyArray; + readonly cost: Maybe; + readonly gatsbyPath: Maybe; + readonly general: Maybe; + readonly geoJson: GeometryJson; + readonly id: Scalars['ID']; + readonly internal: Internal; + readonly jsonId: Maybe; + readonly parent: Maybe; + readonly references: Maybe; + readonly stakeholders: Maybe>>; + readonly state: Maybe; + readonly staticMap: File; +}; + + +type MetaJson_gatsbyPathArgs = { + filePath: InputMaybe; +}; + +type MetaJsonConnection = { + 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 MetaJsonConnection_distinctArgs = { + field: MetaJsonFieldsEnum; +}; + + +type MetaJsonConnection_groupArgs = { + field: MetaJsonFieldsEnum; + limit: InputMaybe; + skip: InputMaybe; +}; + + +type MetaJsonConnection_maxArgs = { + field: MetaJsonFieldsEnum; +}; + + +type MetaJsonConnection_minArgs = { + field: MetaJsonFieldsEnum; +}; + + +type MetaJsonConnection_sumArgs = { + field: MetaJsonFieldsEnum; +}; + +type MetaJsonEdge = { + readonly next: Maybe; + readonly node: MetaJson; + readonly previous: Maybe; +}; + +type MetaJsonFieldsEnum = + | 'children' + | 'children.children' + | 'children.children.children' + | 'children.children.children.children' + | 'children.children.children.id' + | 'children.children.id' + | 'children.children.internal.content' + | 'children.children.internal.contentDigest' + | 'children.children.internal.contentFilePath' + | 'children.children.internal.description' + | 'children.children.internal.fieldOwners' + | 'children.children.internal.ignoreType' + | 'children.children.internal.mediaType' + | 'children.children.internal.owner' + | 'children.children.internal.type' + | 'children.children.parent.children' + | 'children.children.parent.id' + | 'children.id' + | 'children.internal.content' + | 'children.internal.contentDigest' + | 'children.internal.contentFilePath' + | 'children.internal.description' + | 'children.internal.fieldOwners' + | 'children.internal.ignoreType' + | 'children.internal.mediaType' + | 'children.internal.owner' + | 'children.internal.type' + | 'children.parent.children' + | 'children.parent.children.children' + | 'children.parent.children.id' + | 'children.parent.id' + | 'children.parent.internal.content' + | 'children.parent.internal.contentDigest' + | 'children.parent.internal.contentFilePath' + | 'children.parent.internal.description' + | 'children.parent.internal.fieldOwners' + | 'children.parent.internal.ignoreType' + | 'children.parent.internal.mediaType' + | 'children.parent.internal.owner' + | 'children.parent.internal.type' + | 'children.parent.parent.children' + | 'children.parent.parent.id' + | 'cost' + | 'gatsbyPath' + | 'general.description' + | 'general.from.city' + | 'general.from.federalState' + | 'general.length' + | 'general.name' + | 'general.ref' + | 'general.source' + | 'general.stand' + | 'general.to.city' + | 'general.to.federalState' + | 'geoJson.bbox' + | 'geoJson.children' + | 'geoJson.children.children' + | 'geoJson.children.children.children' + | 'geoJson.children.children.id' + | 'geoJson.children.id' + | 'geoJson.children.internal.content' + | 'geoJson.children.internal.contentDigest' + | 'geoJson.children.internal.contentFilePath' + | 'geoJson.children.internal.description' + | 'geoJson.children.internal.fieldOwners' + | 'geoJson.children.internal.ignoreType' + | 'geoJson.children.internal.mediaType' + | 'geoJson.children.internal.owner' + | 'geoJson.children.internal.type' + | 'geoJson.children.parent.children' + | 'geoJson.children.parent.id' + | 'geoJson.crs.properties.name' + | 'geoJson.crs.type' + | 'geoJson.features' + | 'geoJson.features.bbox' + | 'geoJson.features.geometry.coordinates' + | 'geoJson.features.geometry.type' + | 'geoJson.features.properties.description_planning_phase' + | 'geoJson.features.properties.detail_level' + | 'geoJson.features.properties.discarded' + | 'geoJson.features.properties.id' + | 'geoJson.features.properties.id_rsv' + | 'geoJson.features.properties.length' + | 'geoJson.features.properties.planning_phase' + | 'geoJson.features.properties.state' + | 'geoJson.features.properties.variant' + | 'geoJson.features.type' + | 'geoJson.id' + | 'geoJson.internal.content' + | 'geoJson.internal.contentDigest' + | 'geoJson.internal.contentFilePath' + | 'geoJson.internal.description' + | 'geoJson.internal.fieldOwners' + | 'geoJson.internal.ignoreType' + | 'geoJson.internal.mediaType' + | 'geoJson.internal.owner' + | 'geoJson.internal.type' + | 'geoJson.jsonId' + | 'geoJson.parent.children' + | 'geoJson.parent.children.children' + | 'geoJson.parent.children.id' + | 'geoJson.parent.id' + | 'geoJson.parent.internal.content' + | 'geoJson.parent.internal.contentDigest' + | 'geoJson.parent.internal.contentFilePath' + | 'geoJson.parent.internal.description' + | 'geoJson.parent.internal.fieldOwners' + | 'geoJson.parent.internal.ignoreType' + | 'geoJson.parent.internal.mediaType' + | 'geoJson.parent.internal.owner' + | 'geoJson.parent.internal.type' + | 'geoJson.parent.parent.children' + | 'geoJson.parent.parent.id' + | 'geoJson.type' + | 'id' + | 'internal.content' + | 'internal.contentDigest' + | 'internal.contentFilePath' + | 'internal.description' + | 'internal.fieldOwners' + | 'internal.ignoreType' + | 'internal.mediaType' + | 'internal.owner' + | 'internal.type' + | 'jsonId' + | 'parent.children' + | 'parent.children.children' + | 'parent.children.children.children' + | 'parent.children.children.id' + | 'parent.children.id' + | 'parent.children.internal.content' + | 'parent.children.internal.contentDigest' + | 'parent.children.internal.contentFilePath' + | 'parent.children.internal.description' + | 'parent.children.internal.fieldOwners' + | 'parent.children.internal.ignoreType' + | 'parent.children.internal.mediaType' + | 'parent.children.internal.owner' + | 'parent.children.internal.type' + | 'parent.children.parent.children' + | 'parent.children.parent.id' + | 'parent.id' + | 'parent.internal.content' + | 'parent.internal.contentDigest' + | 'parent.internal.contentFilePath' + | 'parent.internal.description' + | 'parent.internal.fieldOwners' + | 'parent.internal.ignoreType' + | 'parent.internal.mediaType' + | 'parent.internal.owner' + | 'parent.internal.type' + | 'parent.parent.children' + | 'parent.parent.children.children' + | 'parent.parent.children.id' + | 'parent.parent.id' + | 'parent.parent.internal.content' + | 'parent.parent.internal.contentDigest' + | 'parent.parent.internal.contentFilePath' + | 'parent.parent.internal.description' + | 'parent.parent.internal.fieldOwners' + | 'parent.parent.internal.ignoreType' + | 'parent.parent.internal.mediaType' + | 'parent.parent.internal.owner' + | 'parent.parent.internal.type' + | 'parent.parent.parent.children' + | 'parent.parent.parent.id' + | 'references.website' + | 'stakeholders' + | 'stakeholders.name' + | 'stakeholders.roles' + | 'state' + | 'staticMap.absolutePath' + | 'staticMap.accessTime' + | 'staticMap.atime' + | 'staticMap.atimeMs' + | 'staticMap.base' + | 'staticMap.birthTime' + | 'staticMap.birthtime' + | 'staticMap.birthtimeMs' + | 'staticMap.blksize' + | 'staticMap.blocks' + | 'staticMap.changeTime' + | 'staticMap.childGeometryJson.bbox' + | 'staticMap.childGeometryJson.children' + | 'staticMap.childGeometryJson.children.children' + | 'staticMap.childGeometryJson.children.id' + | 'staticMap.childGeometryJson.crs.type' + | 'staticMap.childGeometryJson.features' + | 'staticMap.childGeometryJson.features.bbox' + | 'staticMap.childGeometryJson.features.type' + | 'staticMap.childGeometryJson.id' + | 'staticMap.childGeometryJson.internal.content' + | 'staticMap.childGeometryJson.internal.contentDigest' + | 'staticMap.childGeometryJson.internal.contentFilePath' + | 'staticMap.childGeometryJson.internal.description' + | 'staticMap.childGeometryJson.internal.fieldOwners' + | 'staticMap.childGeometryJson.internal.ignoreType' + | 'staticMap.childGeometryJson.internal.mediaType' + | 'staticMap.childGeometryJson.internal.owner' + | 'staticMap.childGeometryJson.internal.type' + | 'staticMap.childGeometryJson.jsonId' + | 'staticMap.childGeometryJson.parent.children' + | 'staticMap.childGeometryJson.parent.id' + | 'staticMap.childGeometryJson.type' + | 'staticMap.childImageSharp.children' + | 'staticMap.childImageSharp.children.children' + | 'staticMap.childImageSharp.children.id' + | 'staticMap.childImageSharp.fixed.aspectRatio' + | 'staticMap.childImageSharp.fixed.base64' + | 'staticMap.childImageSharp.fixed.height' + | 'staticMap.childImageSharp.fixed.originalName' + | 'staticMap.childImageSharp.fixed.src' + | 'staticMap.childImageSharp.fixed.srcSet' + | 'staticMap.childImageSharp.fixed.srcSetWebp' + | 'staticMap.childImageSharp.fixed.srcWebp' + | 'staticMap.childImageSharp.fixed.tracedSVG' + | 'staticMap.childImageSharp.fixed.width' + | 'staticMap.childImageSharp.fluid.aspectRatio' + | 'staticMap.childImageSharp.fluid.base64' + | 'staticMap.childImageSharp.fluid.originalImg' + | 'staticMap.childImageSharp.fluid.originalName' + | 'staticMap.childImageSharp.fluid.presentationHeight' + | 'staticMap.childImageSharp.fluid.presentationWidth' + | 'staticMap.childImageSharp.fluid.sizes' + | 'staticMap.childImageSharp.fluid.src' + | 'staticMap.childImageSharp.fluid.srcSet' + | 'staticMap.childImageSharp.fluid.srcSetWebp' + | 'staticMap.childImageSharp.fluid.srcWebp' + | 'staticMap.childImageSharp.fluid.tracedSVG' + | 'staticMap.childImageSharp.gatsbyImageData' + | 'staticMap.childImageSharp.id' + | 'staticMap.childImageSharp.internal.content' + | 'staticMap.childImageSharp.internal.contentDigest' + | 'staticMap.childImageSharp.internal.contentFilePath' + | 'staticMap.childImageSharp.internal.description' + | 'staticMap.childImageSharp.internal.fieldOwners' + | 'staticMap.childImageSharp.internal.ignoreType' + | 'staticMap.childImageSharp.internal.mediaType' + | 'staticMap.childImageSharp.internal.owner' + | 'staticMap.childImageSharp.internal.type' + | 'staticMap.childImageSharp.original.height' + | 'staticMap.childImageSharp.original.src' + | 'staticMap.childImageSharp.original.width' + | 'staticMap.childImageSharp.parent.children' + | 'staticMap.childImageSharp.parent.id' + | 'staticMap.childImageSharp.resize.aspectRatio' + | 'staticMap.childImageSharp.resize.height' + | 'staticMap.childImageSharp.resize.originalName' + | 'staticMap.childImageSharp.resize.src' + | 'staticMap.childImageSharp.resize.tracedSVG' + | 'staticMap.childImageSharp.resize.width' + | 'staticMap.childMetaJson.children' + | 'staticMap.childMetaJson.children.children' + | 'staticMap.childMetaJson.children.id' + | 'staticMap.childMetaJson.cost' + | 'staticMap.childMetaJson.gatsbyPath' + | 'staticMap.childMetaJson.general.description' + | 'staticMap.childMetaJson.general.length' + | 'staticMap.childMetaJson.general.name' + | 'staticMap.childMetaJson.general.ref' + | 'staticMap.childMetaJson.general.source' + | 'staticMap.childMetaJson.general.stand' + | 'staticMap.childMetaJson.geoJson.bbox' + | 'staticMap.childMetaJson.geoJson.children' + | 'staticMap.childMetaJson.geoJson.features' + | 'staticMap.childMetaJson.geoJson.id' + | 'staticMap.childMetaJson.geoJson.jsonId' + | 'staticMap.childMetaJson.geoJson.type' + | 'staticMap.childMetaJson.id' + | 'staticMap.childMetaJson.internal.content' + | 'staticMap.childMetaJson.internal.contentDigest' + | 'staticMap.childMetaJson.internal.contentFilePath' + | 'staticMap.childMetaJson.internal.description' + | 'staticMap.childMetaJson.internal.fieldOwners' + | 'staticMap.childMetaJson.internal.ignoreType' + | 'staticMap.childMetaJson.internal.mediaType' + | 'staticMap.childMetaJson.internal.owner' + | 'staticMap.childMetaJson.internal.type' + | 'staticMap.childMetaJson.jsonId' + | 'staticMap.childMetaJson.parent.children' + | 'staticMap.childMetaJson.parent.id' + | 'staticMap.childMetaJson.references.website' + | 'staticMap.childMetaJson.stakeholders' + | 'staticMap.childMetaJson.stakeholders.name' + | 'staticMap.childMetaJson.stakeholders.roles' + | 'staticMap.childMetaJson.state' + | 'staticMap.childMetaJson.staticMap.absolutePath' + | 'staticMap.childMetaJson.staticMap.accessTime' + | 'staticMap.childMetaJson.staticMap.atime' + | 'staticMap.childMetaJson.staticMap.atimeMs' + | 'staticMap.childMetaJson.staticMap.base' + | 'staticMap.childMetaJson.staticMap.birthTime' + | 'staticMap.childMetaJson.staticMap.birthtime' + | 'staticMap.childMetaJson.staticMap.birthtimeMs' + | 'staticMap.childMetaJson.staticMap.blksize' + | 'staticMap.childMetaJson.staticMap.blocks' + | 'staticMap.childMetaJson.staticMap.changeTime' + | 'staticMap.childMetaJson.staticMap.children' + | 'staticMap.childMetaJson.staticMap.childrenGeometryJson' + | 'staticMap.childMetaJson.staticMap.childrenImageSharp' + | 'staticMap.childMetaJson.staticMap.childrenMetaJson' + | 'staticMap.childMetaJson.staticMap.ctime' + | 'staticMap.childMetaJson.staticMap.ctimeMs' + | 'staticMap.childMetaJson.staticMap.dev' + | 'staticMap.childMetaJson.staticMap.dir' + | 'staticMap.childMetaJson.staticMap.ext' + | 'staticMap.childMetaJson.staticMap.extension' + | 'staticMap.childMetaJson.staticMap.gid' + | 'staticMap.childMetaJson.staticMap.hash' + | 'staticMap.childMetaJson.staticMap.id' + | 'staticMap.childMetaJson.staticMap.ino' + | 'staticMap.childMetaJson.staticMap.mode' + | 'staticMap.childMetaJson.staticMap.modifiedTime' + | 'staticMap.childMetaJson.staticMap.mtime' + | 'staticMap.childMetaJson.staticMap.mtimeMs' + | 'staticMap.childMetaJson.staticMap.name' + | 'staticMap.childMetaJson.staticMap.nlink' + | 'staticMap.childMetaJson.staticMap.prettySize' + | 'staticMap.childMetaJson.staticMap.publicURL' + | 'staticMap.childMetaJson.staticMap.rdev' + | 'staticMap.childMetaJson.staticMap.relativeDirectory' + | 'staticMap.childMetaJson.staticMap.relativePath' + | 'staticMap.childMetaJson.staticMap.root' + | 'staticMap.childMetaJson.staticMap.size' + | 'staticMap.childMetaJson.staticMap.sourceInstanceName' + | 'staticMap.childMetaJson.staticMap.uid' + | 'staticMap.children' + | 'staticMap.childrenGeometryJson' + | 'staticMap.childrenGeometryJson.bbox' + | 'staticMap.childrenGeometryJson.children' + | 'staticMap.childrenGeometryJson.children.children' + | 'staticMap.childrenGeometryJson.children.id' + | 'staticMap.childrenGeometryJson.crs.type' + | 'staticMap.childrenGeometryJson.features' + | 'staticMap.childrenGeometryJson.features.bbox' + | 'staticMap.childrenGeometryJson.features.type' + | 'staticMap.childrenGeometryJson.id' + | 'staticMap.childrenGeometryJson.internal.content' + | 'staticMap.childrenGeometryJson.internal.contentDigest' + | 'staticMap.childrenGeometryJson.internal.contentFilePath' + | 'staticMap.childrenGeometryJson.internal.description' + | 'staticMap.childrenGeometryJson.internal.fieldOwners' + | 'staticMap.childrenGeometryJson.internal.ignoreType' + | 'staticMap.childrenGeometryJson.internal.mediaType' + | 'staticMap.childrenGeometryJson.internal.owner' + | 'staticMap.childrenGeometryJson.internal.type' + | 'staticMap.childrenGeometryJson.jsonId' + | 'staticMap.childrenGeometryJson.parent.children' + | 'staticMap.childrenGeometryJson.parent.id' + | 'staticMap.childrenGeometryJson.type' + | 'staticMap.childrenImageSharp' + | 'staticMap.childrenImageSharp.children' + | 'staticMap.childrenImageSharp.children.children' + | 'staticMap.childrenImageSharp.children.id' + | 'staticMap.childrenImageSharp.fixed.aspectRatio' + | 'staticMap.childrenImageSharp.fixed.base64' + | 'staticMap.childrenImageSharp.fixed.height' + | 'staticMap.childrenImageSharp.fixed.originalName' + | 'staticMap.childrenImageSharp.fixed.src' + | 'staticMap.childrenImageSharp.fixed.srcSet' + | 'staticMap.childrenImageSharp.fixed.srcSetWebp' + | 'staticMap.childrenImageSharp.fixed.srcWebp' + | 'staticMap.childrenImageSharp.fixed.tracedSVG' + | 'staticMap.childrenImageSharp.fixed.width' + | 'staticMap.childrenImageSharp.fluid.aspectRatio' + | 'staticMap.childrenImageSharp.fluid.base64' + | 'staticMap.childrenImageSharp.fluid.originalImg' + | 'staticMap.childrenImageSharp.fluid.originalName' + | 'staticMap.childrenImageSharp.fluid.presentationHeight' + | 'staticMap.childrenImageSharp.fluid.presentationWidth' + | 'staticMap.childrenImageSharp.fluid.sizes' + | 'staticMap.childrenImageSharp.fluid.src' + | 'staticMap.childrenImageSharp.fluid.srcSet' + | 'staticMap.childrenImageSharp.fluid.srcSetWebp' + | 'staticMap.childrenImageSharp.fluid.srcWebp' + | 'staticMap.childrenImageSharp.fluid.tracedSVG' + | 'staticMap.childrenImageSharp.gatsbyImageData' + | 'staticMap.childrenImageSharp.id' + | 'staticMap.childrenImageSharp.internal.content' + | 'staticMap.childrenImageSharp.internal.contentDigest' + | 'staticMap.childrenImageSharp.internal.contentFilePath' + | 'staticMap.childrenImageSharp.internal.description' + | 'staticMap.childrenImageSharp.internal.fieldOwners' + | 'staticMap.childrenImageSharp.internal.ignoreType' + | 'staticMap.childrenImageSharp.internal.mediaType' + | 'staticMap.childrenImageSharp.internal.owner' + | 'staticMap.childrenImageSharp.internal.type' + | 'staticMap.childrenImageSharp.original.height' + | 'staticMap.childrenImageSharp.original.src' + | 'staticMap.childrenImageSharp.original.width' + | 'staticMap.childrenImageSharp.parent.children' + | 'staticMap.childrenImageSharp.parent.id' + | 'staticMap.childrenImageSharp.resize.aspectRatio' + | 'staticMap.childrenImageSharp.resize.height' + | 'staticMap.childrenImageSharp.resize.originalName' + | 'staticMap.childrenImageSharp.resize.src' + | 'staticMap.childrenImageSharp.resize.tracedSVG' + | 'staticMap.childrenImageSharp.resize.width' + | 'staticMap.childrenMetaJson' + | 'staticMap.childrenMetaJson.children' + | 'staticMap.childrenMetaJson.children.children' + | 'staticMap.childrenMetaJson.children.id' + | 'staticMap.childrenMetaJson.cost' + | 'staticMap.childrenMetaJson.gatsbyPath' + | 'staticMap.childrenMetaJson.general.description' + | 'staticMap.childrenMetaJson.general.length' + | 'staticMap.childrenMetaJson.general.name' + | 'staticMap.childrenMetaJson.general.ref' + | 'staticMap.childrenMetaJson.general.source' + | 'staticMap.childrenMetaJson.general.stand' + | 'staticMap.childrenMetaJson.geoJson.bbox' + | 'staticMap.childrenMetaJson.geoJson.children' + | 'staticMap.childrenMetaJson.geoJson.features' + | 'staticMap.childrenMetaJson.geoJson.id' + | 'staticMap.childrenMetaJson.geoJson.jsonId' + | 'staticMap.childrenMetaJson.geoJson.type' + | 'staticMap.childrenMetaJson.id' + | 'staticMap.childrenMetaJson.internal.content' + | 'staticMap.childrenMetaJson.internal.contentDigest' + | 'staticMap.childrenMetaJson.internal.contentFilePath' + | 'staticMap.childrenMetaJson.internal.description' + | 'staticMap.childrenMetaJson.internal.fieldOwners' + | 'staticMap.childrenMetaJson.internal.ignoreType' + | 'staticMap.childrenMetaJson.internal.mediaType' + | 'staticMap.childrenMetaJson.internal.owner' + | 'staticMap.childrenMetaJson.internal.type' + | 'staticMap.childrenMetaJson.jsonId' + | 'staticMap.childrenMetaJson.parent.children' + | 'staticMap.childrenMetaJson.parent.id' + | 'staticMap.childrenMetaJson.references.website' + | 'staticMap.childrenMetaJson.stakeholders' + | 'staticMap.childrenMetaJson.stakeholders.name' + | 'staticMap.childrenMetaJson.stakeholders.roles' + | 'staticMap.childrenMetaJson.state' + | 'staticMap.childrenMetaJson.staticMap.absolutePath' + | 'staticMap.childrenMetaJson.staticMap.accessTime' + | 'staticMap.childrenMetaJson.staticMap.atime' + | 'staticMap.childrenMetaJson.staticMap.atimeMs' + | 'staticMap.childrenMetaJson.staticMap.base' + | 'staticMap.childrenMetaJson.staticMap.birthTime' + | 'staticMap.childrenMetaJson.staticMap.birthtime' + | 'staticMap.childrenMetaJson.staticMap.birthtimeMs' + | 'staticMap.childrenMetaJson.staticMap.blksize' + | 'staticMap.childrenMetaJson.staticMap.blocks' + | 'staticMap.childrenMetaJson.staticMap.changeTime' + | 'staticMap.childrenMetaJson.staticMap.children' + | 'staticMap.childrenMetaJson.staticMap.childrenGeometryJson' + | 'staticMap.childrenMetaJson.staticMap.childrenImageSharp' + | 'staticMap.childrenMetaJson.staticMap.childrenMetaJson' + | 'staticMap.childrenMetaJson.staticMap.ctime' + | 'staticMap.childrenMetaJson.staticMap.ctimeMs' + | 'staticMap.childrenMetaJson.staticMap.dev' + | 'staticMap.childrenMetaJson.staticMap.dir' + | 'staticMap.childrenMetaJson.staticMap.ext' + | 'staticMap.childrenMetaJson.staticMap.extension' + | 'staticMap.childrenMetaJson.staticMap.gid' + | 'staticMap.childrenMetaJson.staticMap.hash' + | 'staticMap.childrenMetaJson.staticMap.id' + | 'staticMap.childrenMetaJson.staticMap.ino' + | 'staticMap.childrenMetaJson.staticMap.mode' + | 'staticMap.childrenMetaJson.staticMap.modifiedTime' + | 'staticMap.childrenMetaJson.staticMap.mtime' + | 'staticMap.childrenMetaJson.staticMap.mtimeMs' + | 'staticMap.childrenMetaJson.staticMap.name' + | 'staticMap.childrenMetaJson.staticMap.nlink' + | 'staticMap.childrenMetaJson.staticMap.prettySize' + | 'staticMap.childrenMetaJson.staticMap.publicURL' + | 'staticMap.childrenMetaJson.staticMap.rdev' + | 'staticMap.childrenMetaJson.staticMap.relativeDirectory' + | 'staticMap.childrenMetaJson.staticMap.relativePath' + | 'staticMap.childrenMetaJson.staticMap.root' + | 'staticMap.childrenMetaJson.staticMap.size' + | 'staticMap.childrenMetaJson.staticMap.sourceInstanceName' + | 'staticMap.childrenMetaJson.staticMap.uid' + | 'staticMap.children.children' + | 'staticMap.children.children.children' + | 'staticMap.children.children.id' + | 'staticMap.children.id' + | 'staticMap.children.internal.content' + | 'staticMap.children.internal.contentDigest' + | 'staticMap.children.internal.contentFilePath' + | 'staticMap.children.internal.description' + | 'staticMap.children.internal.fieldOwners' + | 'staticMap.children.internal.ignoreType' + | 'staticMap.children.internal.mediaType' + | 'staticMap.children.internal.owner' + | 'staticMap.children.internal.type' + | 'staticMap.children.parent.children' + | 'staticMap.children.parent.id' + | 'staticMap.ctime' + | 'staticMap.ctimeMs' + | 'staticMap.dev' + | 'staticMap.dir' + | 'staticMap.ext' + | 'staticMap.extension' + | 'staticMap.gid' + | 'staticMap.hash' + | 'staticMap.id' + | 'staticMap.ino' + | 'staticMap.internal.content' + | 'staticMap.internal.contentDigest' + | 'staticMap.internal.contentFilePath' + | 'staticMap.internal.description' + | 'staticMap.internal.fieldOwners' + | 'staticMap.internal.ignoreType' + | 'staticMap.internal.mediaType' + | 'staticMap.internal.owner' + | 'staticMap.internal.type' + | 'staticMap.mode' + | 'staticMap.modifiedTime' + | 'staticMap.mtime' + | 'staticMap.mtimeMs' + | 'staticMap.name' + | 'staticMap.nlink' + | 'staticMap.parent.children' + | 'staticMap.parent.children.children' + | 'staticMap.parent.children.id' + | 'staticMap.parent.id' + | 'staticMap.parent.internal.content' + | 'staticMap.parent.internal.contentDigest' + | 'staticMap.parent.internal.contentFilePath' + | 'staticMap.parent.internal.description' + | 'staticMap.parent.internal.fieldOwners' + | 'staticMap.parent.internal.ignoreType' + | 'staticMap.parent.internal.mediaType' + | 'staticMap.parent.internal.owner' + | 'staticMap.parent.internal.type' + | 'staticMap.parent.parent.children' + | 'staticMap.parent.parent.id' + | 'staticMap.prettySize' + | 'staticMap.publicURL' + | 'staticMap.rdev' + | 'staticMap.relativeDirectory' + | 'staticMap.relativePath' + | 'staticMap.root' + | 'staticMap.size' + | 'staticMap.sourceInstanceName' + | 'staticMap.uid'; + +type MetaJsonFilterInput = { + readonly children: InputMaybe; + readonly cost: InputMaybe; + readonly gatsbyPath: InputMaybe; + readonly general: InputMaybe; + readonly geoJson: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly jsonId: InputMaybe; + readonly parent: InputMaybe; + readonly references: InputMaybe; + readonly stakeholders: InputMaybe; + readonly state: InputMaybe; + readonly staticMap: InputMaybe; +}; + +type MetaJsonFilterListInput = { + readonly elemMatch: InputMaybe; +}; + +type MetaJsonGeneral = { + readonly description: Maybe; + readonly from: Maybe; + readonly length: Maybe; + readonly name: Maybe; + readonly ref: Maybe; + readonly source: Maybe; + readonly stand: Maybe; + readonly to: Maybe; +}; + + +type MetaJsonGeneral_standArgs = { + difference: InputMaybe; + formatString: InputMaybe; + fromNow: InputMaybe; + locale: InputMaybe; +}; + +type MetaJsonGeneralFilterInput = { + readonly description: InputMaybe; + readonly from: InputMaybe; + readonly length: InputMaybe; + readonly name: InputMaybe; + readonly ref: InputMaybe; + readonly source: InputMaybe; + readonly stand: InputMaybe; + readonly to: InputMaybe; +}; + +type MetaJsonGeneralFrom = { + readonly city: Maybe; + readonly federalState: Maybe; +}; + +type MetaJsonGeneralFromFilterInput = { + readonly city: InputMaybe; + readonly federalState: InputMaybe; +}; + +type MetaJsonGeneralTo = { + readonly city: Maybe; + readonly federalState: Maybe; +}; + +type MetaJsonGeneralToFilterInput = { + readonly city: InputMaybe; + readonly federalState: InputMaybe; +}; + +type MetaJsonGroupConnection = { + 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 MetaJsonGroupConnection_distinctArgs = { + field: MetaJsonFieldsEnum; +}; + + +type MetaJsonGroupConnection_groupArgs = { + field: MetaJsonFieldsEnum; + limit: InputMaybe; + skip: InputMaybe; +}; + + +type MetaJsonGroupConnection_maxArgs = { + field: MetaJsonFieldsEnum; +}; + + +type MetaJsonGroupConnection_minArgs = { + field: MetaJsonFieldsEnum; +}; + + +type MetaJsonGroupConnection_sumArgs = { + field: MetaJsonFieldsEnum; +}; + +type MetaJsonReferences = { + readonly website: Maybe; +}; + +type MetaJsonReferencesFilterInput = { + readonly website: InputMaybe; +}; + +type MetaJsonSortInput = { + readonly fields: InputMaybe>>; + readonly order: InputMaybe>>; +}; + +type MetaJsonStakeholders = { + readonly name: Maybe; + readonly roles: Maybe>>; +}; + +type MetaJsonStakeholdersFilterInput = { + readonly name: InputMaybe; + readonly roles: InputMaybe; +}; + +type MetaJsonStakeholdersFilterListInput = { + readonly elemMatch: InputMaybe; +}; + +/** Node Interface */ +type Node = { + readonly children: ReadonlyArray; + readonly id: Scalars['ID']; + readonly internal: Internal; + readonly parent: Maybe; +}; + +type NodeFilterInput = { + readonly children: InputMaybe; + readonly id: InputMaybe; + readonly internal: InputMaybe; + readonly parent: InputMaybe; +}; + +type NodeFilterListInput = { + readonly elemMatch: 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 allGeometryJson: GeometryJsonConnection; + readonly allImageSharp: ImageSharpConnection; + readonly allMetaJson: MetaJsonConnection; + readonly allSite: SiteConnection; + readonly allSiteBuildMetadata: SiteBuildMetadataConnection; + readonly allSiteFunction: SiteFunctionConnection; + readonly allSitePage: SitePageConnection; + readonly allSitePlugin: SitePluginConnection; + readonly directory: Maybe; + readonly file: Maybe; + readonly geometryJson: Maybe; + readonly imageSharp: Maybe; + readonly metaJson: Maybe; + readonly site: Maybe; + readonly siteBuildMetadata: Maybe; + readonly siteFunction: Maybe; + readonly sitePage: Maybe; + readonly sitePlugin: 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_allGeometryJsonArgs = { + filter: InputMaybe; + limit: InputMaybe; + skip: InputMaybe; + sort: InputMaybe; +}; + + +type Query_allImageSharpArgs = { + filter: InputMaybe; + limit: InputMaybe; + skip: InputMaybe; + sort: InputMaybe; +}; + + +type Query_allMetaJsonArgs = { + 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_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; + childGeometryJson: InputMaybe; + childImageSharp: InputMaybe; + childMetaJson: InputMaybe; + children: InputMaybe; + childrenGeometryJson: InputMaybe; + childrenImageSharp: InputMaybe; + childrenMetaJson: InputMaybe; + ctime: InputMaybe; + ctimeMs: InputMaybe; + dev: InputMaybe; + dir: InputMaybe; + ext: InputMaybe; + extension: InputMaybe; + gid: InputMaybe; + hash: InputMaybe; + id: InputMaybe; + ino: InputMaybe; + internal: InputMaybe; + mode: InputMaybe; + modifiedTime: InputMaybe; + mtime: InputMaybe; + mtimeMs: InputMaybe; + name: InputMaybe; + nlink: InputMaybe; + parent: InputMaybe; + prettySize: InputMaybe; + publicURL: InputMaybe; + rdev: InputMaybe; + relativeDirectory: InputMaybe; + relativePath: InputMaybe; + root: InputMaybe; + size: InputMaybe; + sourceInstanceName: InputMaybe; + uid: InputMaybe; +}; + + +type Query_geometryJsonArgs = { + bbox: InputMaybe; + children: InputMaybe; + crs: InputMaybe; + features: InputMaybe; + id: InputMaybe; + internal: InputMaybe; + jsonId: InputMaybe; + parent: InputMaybe; + type: InputMaybe; +}; + + +type Query_imageSharpArgs = { + children: InputMaybe; + fixed: InputMaybe; + fluid: InputMaybe; + gatsbyImageData: InputMaybe; + id: InputMaybe; + internal: InputMaybe; + original: InputMaybe; + parent: InputMaybe; + resize: InputMaybe; +}; + + +type Query_metaJsonArgs = { + children: InputMaybe; + cost: InputMaybe; + gatsbyPath: InputMaybe; + general: InputMaybe; + geoJson: InputMaybe; + id: InputMaybe; + internal: InputMaybe; + jsonId: InputMaybe; + parent: InputMaybe; + references: InputMaybe; + stakeholders: InputMaybe; + state: InputMaybe; + staticMap: 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 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: SiteBuildMetadataFieldsEnum; +}; + + +type SiteBuildMetadataConnection_groupArgs = { + field: SiteBuildMetadataFieldsEnum; + limit: InputMaybe; + skip: InputMaybe; +}; + + +type SiteBuildMetadataConnection_maxArgs = { + field: SiteBuildMetadataFieldsEnum; +}; + + +type SiteBuildMetadataConnection_minArgs = { + field: SiteBuildMetadataFieldsEnum; +}; + + +type SiteBuildMetadataConnection_sumArgs = { + field: SiteBuildMetadataFieldsEnum; +}; + +type SiteBuildMetadataEdge = { + readonly next: Maybe; + readonly node: SiteBuildMetadata; + readonly previous: Maybe; +}; + +type SiteBuildMetadataFieldsEnum = + | 'buildTime' + | 'children' + | 'children.children' + | 'children.children.children' + | 'children.children.children.children' + | 'children.children.children.id' + | 'children.children.id' + | 'children.children.internal.content' + | 'children.children.internal.contentDigest' + | 'children.children.internal.contentFilePath' + | 'children.children.internal.description' + | 'children.children.internal.fieldOwners' + | 'children.children.internal.ignoreType' + | 'children.children.internal.mediaType' + | 'children.children.internal.owner' + | 'children.children.internal.type' + | 'children.children.parent.children' + | 'children.children.parent.id' + | 'children.id' + | 'children.internal.content' + | 'children.internal.contentDigest' + | 'children.internal.contentFilePath' + | 'children.internal.description' + | 'children.internal.fieldOwners' + | 'children.internal.ignoreType' + | 'children.internal.mediaType' + | 'children.internal.owner' + | 'children.internal.type' + | 'children.parent.children' + | 'children.parent.children.children' + | 'children.parent.children.id' + | 'children.parent.id' + | 'children.parent.internal.content' + | 'children.parent.internal.contentDigest' + | 'children.parent.internal.contentFilePath' + | 'children.parent.internal.description' + | 'children.parent.internal.fieldOwners' + | 'children.parent.internal.ignoreType' + | 'children.parent.internal.mediaType' + | 'children.parent.internal.owner' + | 'children.parent.internal.type' + | 'children.parent.parent.children' + | 'children.parent.parent.id' + | 'id' + | 'internal.content' + | 'internal.contentDigest' + | 'internal.contentFilePath' + | 'internal.description' + | 'internal.fieldOwners' + | 'internal.ignoreType' + | 'internal.mediaType' + | 'internal.owner' + | 'internal.type' + | 'parent.children' + | 'parent.children.children' + | 'parent.children.children.children' + | 'parent.children.children.id' + | 'parent.children.id' + | 'parent.children.internal.content' + | 'parent.children.internal.contentDigest' + | 'parent.children.internal.contentFilePath' + | 'parent.children.internal.description' + | 'parent.children.internal.fieldOwners' + | 'parent.children.internal.ignoreType' + | 'parent.children.internal.mediaType' + | 'parent.children.internal.owner' + | 'parent.children.internal.type' + | 'parent.children.parent.children' + | 'parent.children.parent.id' + | 'parent.id' + | 'parent.internal.content' + | 'parent.internal.contentDigest' + | 'parent.internal.contentFilePath' + | 'parent.internal.description' + | 'parent.internal.fieldOwners' + | 'parent.internal.ignoreType' + | 'parent.internal.mediaType' + | 'parent.internal.owner' + | 'parent.internal.type' + | 'parent.parent.children' + | 'parent.parent.children.children' + | 'parent.parent.children.id' + | 'parent.parent.id' + | 'parent.parent.internal.content' + | 'parent.parent.internal.contentDigest' + | 'parent.parent.internal.contentFilePath' + | 'parent.parent.internal.description' + | 'parent.parent.internal.fieldOwners' + | 'parent.parent.internal.ignoreType' + | 'parent.parent.internal.mediaType' + | 'parent.parent.internal.owner' + | 'parent.parent.internal.type' + | 'parent.parent.parent.children' + | 'parent.parent.parent.id'; + +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: SiteBuildMetadataFieldsEnum; +}; + + +type SiteBuildMetadataGroupConnection_groupArgs = { + field: SiteBuildMetadataFieldsEnum; + limit: InputMaybe; + skip: InputMaybe; +}; + + +type SiteBuildMetadataGroupConnection_maxArgs = { + field: SiteBuildMetadataFieldsEnum; +}; + + +type SiteBuildMetadataGroupConnection_minArgs = { + field: SiteBuildMetadataFieldsEnum; +}; + + +type SiteBuildMetadataGroupConnection_sumArgs = { + field: SiteBuildMetadataFieldsEnum; +}; + +type SiteBuildMetadataSortInput = { + readonly fields: InputMaybe>>; + readonly order: 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: SiteFieldsEnum; +}; + + +type SiteConnection_groupArgs = { + field: SiteFieldsEnum; + limit: InputMaybe; + skip: InputMaybe; +}; + + +type SiteConnection_maxArgs = { + field: SiteFieldsEnum; +}; + + +type SiteConnection_minArgs = { + field: SiteFieldsEnum; +}; + + +type SiteConnection_sumArgs = { + field: SiteFieldsEnum; +}; + +type SiteEdge = { + readonly next: Maybe; + readonly node: Site; + readonly previous: Maybe; +}; + +type SiteFieldsEnum = + | 'buildTime' + | 'children' + | 'children.children' + | 'children.children.children' + | 'children.children.children.children' + | 'children.children.children.id' + | 'children.children.id' + | 'children.children.internal.content' + | 'children.children.internal.contentDigest' + | 'children.children.internal.contentFilePath' + | 'children.children.internal.description' + | 'children.children.internal.fieldOwners' + | 'children.children.internal.ignoreType' + | 'children.children.internal.mediaType' + | 'children.children.internal.owner' + | 'children.children.internal.type' + | 'children.children.parent.children' + | 'children.children.parent.id' + | 'children.id' + | 'children.internal.content' + | 'children.internal.contentDigest' + | 'children.internal.contentFilePath' + | 'children.internal.description' + | 'children.internal.fieldOwners' + | 'children.internal.ignoreType' + | 'children.internal.mediaType' + | 'children.internal.owner' + | 'children.internal.type' + | 'children.parent.children' + | 'children.parent.children.children' + | 'children.parent.children.id' + | 'children.parent.id' + | 'children.parent.internal.content' + | 'children.parent.internal.contentDigest' + | 'children.parent.internal.contentFilePath' + | 'children.parent.internal.description' + | 'children.parent.internal.fieldOwners' + | 'children.parent.internal.ignoreType' + | 'children.parent.internal.mediaType' + | 'children.parent.internal.owner' + | 'children.parent.internal.type' + | 'children.parent.parent.children' + | 'children.parent.parent.id' + | 'graphqlTypegen.generateOnBuild' + | 'graphqlTypegen.typesOutputPath' + | 'host' + | 'id' + | 'internal.content' + | 'internal.contentDigest' + | 'internal.contentFilePath' + | 'internal.description' + | 'internal.fieldOwners' + | 'internal.ignoreType' + | 'internal.mediaType' + | 'internal.owner' + | 'internal.type' + | 'jsxRuntime' + | 'parent.children' + | 'parent.children.children' + | 'parent.children.children.children' + | 'parent.children.children.id' + | 'parent.children.id' + | 'parent.children.internal.content' + | 'parent.children.internal.contentDigest' + | 'parent.children.internal.contentFilePath' + | 'parent.children.internal.description' + | 'parent.children.internal.fieldOwners' + | 'parent.children.internal.ignoreType' + | 'parent.children.internal.mediaType' + | 'parent.children.internal.owner' + | 'parent.children.internal.type' + | 'parent.children.parent.children' + | 'parent.children.parent.id' + | 'parent.id' + | 'parent.internal.content' + | 'parent.internal.contentDigest' + | 'parent.internal.contentFilePath' + | 'parent.internal.description' + | 'parent.internal.fieldOwners' + | 'parent.internal.ignoreType' + | 'parent.internal.mediaType' + | 'parent.internal.owner' + | 'parent.internal.type' + | 'parent.parent.children' + | 'parent.parent.children.children' + | 'parent.parent.children.id' + | 'parent.parent.id' + | 'parent.parent.internal.content' + | 'parent.parent.internal.contentDigest' + | 'parent.parent.internal.contentFilePath' + | 'parent.parent.internal.description' + | 'parent.parent.internal.fieldOwners' + | 'parent.parent.internal.ignoreType' + | 'parent.parent.internal.mediaType' + | 'parent.parent.internal.owner' + | 'parent.parent.internal.type' + | 'parent.parent.parent.children' + | 'parent.parent.parent.id' + | 'pathPrefix' + | 'polyfill' + | 'port' + | 'siteMetadata.description' + | 'siteMetadata.siteUrl' + | 'siteMetadata.title' + | 'trailingSlash'; + +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: SiteFunctionFieldsEnum; +}; + + +type SiteFunctionConnection_groupArgs = { + field: SiteFunctionFieldsEnum; + limit: InputMaybe; + skip: InputMaybe; +}; + + +type SiteFunctionConnection_maxArgs = { + field: SiteFunctionFieldsEnum; +}; + + +type SiteFunctionConnection_minArgs = { + field: SiteFunctionFieldsEnum; +}; + + +type SiteFunctionConnection_sumArgs = { + field: SiteFunctionFieldsEnum; +}; + +type SiteFunctionEdge = { + readonly next: Maybe; + readonly node: SiteFunction; + readonly previous: Maybe; +}; + +type SiteFunctionFieldsEnum = + | 'absoluteCompiledFilePath' + | 'children' + | 'children.children' + | 'children.children.children' + | 'children.children.children.children' + | 'children.children.children.id' + | 'children.children.id' + | 'children.children.internal.content' + | 'children.children.internal.contentDigest' + | 'children.children.internal.contentFilePath' + | 'children.children.internal.description' + | 'children.children.internal.fieldOwners' + | 'children.children.internal.ignoreType' + | 'children.children.internal.mediaType' + | 'children.children.internal.owner' + | 'children.children.internal.type' + | 'children.children.parent.children' + | 'children.children.parent.id' + | 'children.id' + | 'children.internal.content' + | 'children.internal.contentDigest' + | 'children.internal.contentFilePath' + | 'children.internal.description' + | 'children.internal.fieldOwners' + | 'children.internal.ignoreType' + | 'children.internal.mediaType' + | 'children.internal.owner' + | 'children.internal.type' + | 'children.parent.children' + | 'children.parent.children.children' + | 'children.parent.children.id' + | 'children.parent.id' + | 'children.parent.internal.content' + | 'children.parent.internal.contentDigest' + | 'children.parent.internal.contentFilePath' + | 'children.parent.internal.description' + | 'children.parent.internal.fieldOwners' + | 'children.parent.internal.ignoreType' + | 'children.parent.internal.mediaType' + | 'children.parent.internal.owner' + | 'children.parent.internal.type' + | 'children.parent.parent.children' + | 'children.parent.parent.id' + | 'functionRoute' + | 'id' + | 'internal.content' + | 'internal.contentDigest' + | 'internal.contentFilePath' + | 'internal.description' + | 'internal.fieldOwners' + | 'internal.ignoreType' + | 'internal.mediaType' + | 'internal.owner' + | 'internal.type' + | 'matchPath' + | 'originalAbsoluteFilePath' + | 'originalRelativeFilePath' + | 'parent.children' + | 'parent.children.children' + | 'parent.children.children.children' + | 'parent.children.children.id' + | 'parent.children.id' + | 'parent.children.internal.content' + | 'parent.children.internal.contentDigest' + | 'parent.children.internal.contentFilePath' + | 'parent.children.internal.description' + | 'parent.children.internal.fieldOwners' + | 'parent.children.internal.ignoreType' + | 'parent.children.internal.mediaType' + | 'parent.children.internal.owner' + | 'parent.children.internal.type' + | 'parent.children.parent.children' + | 'parent.children.parent.id' + | 'parent.id' + | 'parent.internal.content' + | 'parent.internal.contentDigest' + | 'parent.internal.contentFilePath' + | 'parent.internal.description' + | 'parent.internal.fieldOwners' + | 'parent.internal.ignoreType' + | 'parent.internal.mediaType' + | 'parent.internal.owner' + | 'parent.internal.type' + | 'parent.parent.children' + | 'parent.parent.children.children' + | 'parent.parent.children.id' + | 'parent.parent.id' + | 'parent.parent.internal.content' + | 'parent.parent.internal.contentDigest' + | 'parent.parent.internal.contentFilePath' + | 'parent.parent.internal.description' + | 'parent.parent.internal.fieldOwners' + | 'parent.parent.internal.ignoreType' + | 'parent.parent.internal.mediaType' + | 'parent.parent.internal.owner' + | 'parent.parent.internal.type' + | 'parent.parent.parent.children' + | 'parent.parent.parent.id' + | 'pluginName' + | 'relativeCompiledFilePath'; + +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: SiteFunctionFieldsEnum; +}; + + +type SiteFunctionGroupConnection_groupArgs = { + field: SiteFunctionFieldsEnum; + limit: InputMaybe; + skip: InputMaybe; +}; + + +type SiteFunctionGroupConnection_maxArgs = { + field: SiteFunctionFieldsEnum; +}; + + +type SiteFunctionGroupConnection_minArgs = { + field: SiteFunctionFieldsEnum; +}; + + +type SiteFunctionGroupConnection_sumArgs = { + field: SiteFunctionFieldsEnum; +}; + +type SiteFunctionSortInput = { + readonly fields: InputMaybe>>; + readonly order: InputMaybe>>; +}; + +type SiteGraphqlTypegen = { + readonly generateOnBuild: Maybe; + readonly typesOutputPath: Maybe; +}; + +type SiteGraphqlTypegenFilterInput = { + 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: SiteFieldsEnum; +}; + + +type SiteGroupConnection_groupArgs = { + field: SiteFieldsEnum; + limit: InputMaybe; + skip: InputMaybe; +}; + + +type SiteGroupConnection_maxArgs = { + field: SiteFieldsEnum; +}; + + +type SiteGroupConnection_minArgs = { + field: SiteFieldsEnum; +}; + + +type SiteGroupConnection_sumArgs = { + field: SiteFieldsEnum; +}; + +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: SitePageFieldsEnum; +}; + + +type SitePageConnection_groupArgs = { + field: SitePageFieldsEnum; + limit: InputMaybe; + skip: InputMaybe; +}; + + +type SitePageConnection_maxArgs = { + field: SitePageFieldsEnum; +}; + + +type SitePageConnection_minArgs = { + field: SitePageFieldsEnum; +}; + + +type SitePageConnection_sumArgs = { + field: SitePageFieldsEnum; +}; + +type SitePageEdge = { + readonly next: Maybe; + readonly node: SitePage; + readonly previous: Maybe; +}; + +type SitePageFieldsEnum = + | 'children' + | 'children.children' + | 'children.children.children' + | 'children.children.children.children' + | 'children.children.children.id' + | 'children.children.id' + | 'children.children.internal.content' + | 'children.children.internal.contentDigest' + | 'children.children.internal.contentFilePath' + | 'children.children.internal.description' + | 'children.children.internal.fieldOwners' + | 'children.children.internal.ignoreType' + | 'children.children.internal.mediaType' + | 'children.children.internal.owner' + | 'children.children.internal.type' + | 'children.children.parent.children' + | 'children.children.parent.id' + | 'children.id' + | 'children.internal.content' + | 'children.internal.contentDigest' + | 'children.internal.contentFilePath' + | 'children.internal.description' + | 'children.internal.fieldOwners' + | 'children.internal.ignoreType' + | 'children.internal.mediaType' + | 'children.internal.owner' + | 'children.internal.type' + | 'children.parent.children' + | 'children.parent.children.children' + | 'children.parent.children.id' + | 'children.parent.id' + | 'children.parent.internal.content' + | 'children.parent.internal.contentDigest' + | 'children.parent.internal.contentFilePath' + | 'children.parent.internal.description' + | 'children.parent.internal.fieldOwners' + | 'children.parent.internal.ignoreType' + | 'children.parent.internal.mediaType' + | 'children.parent.internal.owner' + | 'children.parent.internal.type' + | 'children.parent.parent.children' + | 'children.parent.parent.id' + | 'component' + | 'componentChunkName' + | 'id' + | 'internalComponentName' + | 'internal.content' + | 'internal.contentDigest' + | 'internal.contentFilePath' + | 'internal.description' + | 'internal.fieldOwners' + | 'internal.ignoreType' + | 'internal.mediaType' + | 'internal.owner' + | 'internal.type' + | 'matchPath' + | 'pageContext' + | 'parent.children' + | 'parent.children.children' + | 'parent.children.children.children' + | 'parent.children.children.id' + | 'parent.children.id' + | 'parent.children.internal.content' + | 'parent.children.internal.contentDigest' + | 'parent.children.internal.contentFilePath' + | 'parent.children.internal.description' + | 'parent.children.internal.fieldOwners' + | 'parent.children.internal.ignoreType' + | 'parent.children.internal.mediaType' + | 'parent.children.internal.owner' + | 'parent.children.internal.type' + | 'parent.children.parent.children' + | 'parent.children.parent.id' + | 'parent.id' + | 'parent.internal.content' + | 'parent.internal.contentDigest' + | 'parent.internal.contentFilePath' + | 'parent.internal.description' + | 'parent.internal.fieldOwners' + | 'parent.internal.ignoreType' + | 'parent.internal.mediaType' + | 'parent.internal.owner' + | 'parent.internal.type' + | 'parent.parent.children' + | 'parent.parent.children.children' + | 'parent.parent.children.id' + | 'parent.parent.id' + | 'parent.parent.internal.content' + | 'parent.parent.internal.contentDigest' + | 'parent.parent.internal.contentFilePath' + | 'parent.parent.internal.description' + | 'parent.parent.internal.fieldOwners' + | 'parent.parent.internal.ignoreType' + | 'parent.parent.internal.mediaType' + | 'parent.parent.internal.owner' + | 'parent.parent.internal.type' + | 'parent.parent.parent.children' + | 'parent.parent.parent.id' + | 'path' + | 'pluginCreator.browserAPIs' + | 'pluginCreator.children' + | 'pluginCreator.children.children' + | 'pluginCreator.children.children.children' + | 'pluginCreator.children.children.id' + | 'pluginCreator.children.id' + | 'pluginCreator.children.internal.content' + | 'pluginCreator.children.internal.contentDigest' + | 'pluginCreator.children.internal.contentFilePath' + | 'pluginCreator.children.internal.description' + | 'pluginCreator.children.internal.fieldOwners' + | 'pluginCreator.children.internal.ignoreType' + | 'pluginCreator.children.internal.mediaType' + | 'pluginCreator.children.internal.owner' + | 'pluginCreator.children.internal.type' + | 'pluginCreator.children.parent.children' + | 'pluginCreator.children.parent.id' + | 'pluginCreator.id' + | 'pluginCreator.internal.content' + | 'pluginCreator.internal.contentDigest' + | 'pluginCreator.internal.contentFilePath' + | 'pluginCreator.internal.description' + | 'pluginCreator.internal.fieldOwners' + | 'pluginCreator.internal.ignoreType' + | 'pluginCreator.internal.mediaType' + | 'pluginCreator.internal.owner' + | 'pluginCreator.internal.type' + | 'pluginCreator.name' + | 'pluginCreator.nodeAPIs' + | 'pluginCreator.packageJson' + | 'pluginCreator.parent.children' + | 'pluginCreator.parent.children.children' + | 'pluginCreator.parent.children.id' + | 'pluginCreator.parent.id' + | 'pluginCreator.parent.internal.content' + | 'pluginCreator.parent.internal.contentDigest' + | 'pluginCreator.parent.internal.contentFilePath' + | 'pluginCreator.parent.internal.description' + | 'pluginCreator.parent.internal.fieldOwners' + | 'pluginCreator.parent.internal.ignoreType' + | 'pluginCreator.parent.internal.mediaType' + | 'pluginCreator.parent.internal.owner' + | 'pluginCreator.parent.internal.type' + | 'pluginCreator.parent.parent.children' + | 'pluginCreator.parent.parent.id' + | 'pluginCreator.pluginFilepath' + | 'pluginCreator.pluginOptions' + | 'pluginCreator.resolve' + | 'pluginCreator.ssrAPIs' + | 'pluginCreator.version'; + +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: SitePageFieldsEnum; +}; + + +type SitePageGroupConnection_groupArgs = { + field: SitePageFieldsEnum; + limit: InputMaybe; + skip: InputMaybe; +}; + + +type SitePageGroupConnection_maxArgs = { + field: SitePageFieldsEnum; +}; + + +type SitePageGroupConnection_minArgs = { + field: SitePageFieldsEnum; +}; + + +type SitePageGroupConnection_sumArgs = { + field: SitePageFieldsEnum; +}; + +type SitePageSortInput = { + readonly fields: InputMaybe>>; + readonly order: 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: SitePluginFieldsEnum; +}; + + +type SitePluginConnection_groupArgs = { + field: SitePluginFieldsEnum; + limit: InputMaybe; + skip: InputMaybe; +}; + + +type SitePluginConnection_maxArgs = { + field: SitePluginFieldsEnum; +}; + + +type SitePluginConnection_minArgs = { + field: SitePluginFieldsEnum; +}; + + +type SitePluginConnection_sumArgs = { + field: SitePluginFieldsEnum; +}; + +type SitePluginEdge = { + readonly next: Maybe; + readonly node: SitePlugin; + readonly previous: Maybe; +}; + +type SitePluginFieldsEnum = + | 'browserAPIs' + | 'children' + | 'children.children' + | 'children.children.children' + | 'children.children.children.children' + | 'children.children.children.id' + | 'children.children.id' + | 'children.children.internal.content' + | 'children.children.internal.contentDigest' + | 'children.children.internal.contentFilePath' + | 'children.children.internal.description' + | 'children.children.internal.fieldOwners' + | 'children.children.internal.ignoreType' + | 'children.children.internal.mediaType' + | 'children.children.internal.owner' + | 'children.children.internal.type' + | 'children.children.parent.children' + | 'children.children.parent.id' + | 'children.id' + | 'children.internal.content' + | 'children.internal.contentDigest' + | 'children.internal.contentFilePath' + | 'children.internal.description' + | 'children.internal.fieldOwners' + | 'children.internal.ignoreType' + | 'children.internal.mediaType' + | 'children.internal.owner' + | 'children.internal.type' + | 'children.parent.children' + | 'children.parent.children.children' + | 'children.parent.children.id' + | 'children.parent.id' + | 'children.parent.internal.content' + | 'children.parent.internal.contentDigest' + | 'children.parent.internal.contentFilePath' + | 'children.parent.internal.description' + | 'children.parent.internal.fieldOwners' + | 'children.parent.internal.ignoreType' + | 'children.parent.internal.mediaType' + | 'children.parent.internal.owner' + | 'children.parent.internal.type' + | 'children.parent.parent.children' + | 'children.parent.parent.id' + | 'id' + | 'internal.content' + | 'internal.contentDigest' + | 'internal.contentFilePath' + | 'internal.description' + | 'internal.fieldOwners' + | 'internal.ignoreType' + | 'internal.mediaType' + | 'internal.owner' + | 'internal.type' + | 'name' + | 'nodeAPIs' + | 'packageJson' + | 'parent.children' + | 'parent.children.children' + | 'parent.children.children.children' + | 'parent.children.children.id' + | 'parent.children.id' + | 'parent.children.internal.content' + | 'parent.children.internal.contentDigest' + | 'parent.children.internal.contentFilePath' + | 'parent.children.internal.description' + | 'parent.children.internal.fieldOwners' + | 'parent.children.internal.ignoreType' + | 'parent.children.internal.mediaType' + | 'parent.children.internal.owner' + | 'parent.children.internal.type' + | 'parent.children.parent.children' + | 'parent.children.parent.id' + | 'parent.id' + | 'parent.internal.content' + | 'parent.internal.contentDigest' + | 'parent.internal.contentFilePath' + | 'parent.internal.description' + | 'parent.internal.fieldOwners' + | 'parent.internal.ignoreType' + | 'parent.internal.mediaType' + | 'parent.internal.owner' + | 'parent.internal.type' + | 'parent.parent.children' + | 'parent.parent.children.children' + | 'parent.parent.children.id' + | 'parent.parent.id' + | 'parent.parent.internal.content' + | 'parent.parent.internal.contentDigest' + | 'parent.parent.internal.contentFilePath' + | 'parent.parent.internal.description' + | 'parent.parent.internal.fieldOwners' + | 'parent.parent.internal.ignoreType' + | 'parent.parent.internal.mediaType' + | 'parent.parent.internal.owner' + | 'parent.parent.internal.type' + | 'parent.parent.parent.children' + | 'parent.parent.parent.id' + | 'pluginFilepath' + | 'pluginOptions' + | 'resolve' + | 'ssrAPIs' + | 'version'; + +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: SitePluginFieldsEnum; +}; + + +type SitePluginGroupConnection_groupArgs = { + field: SitePluginFieldsEnum; + limit: InputMaybe; + skip: InputMaybe; +}; + + +type SitePluginGroupConnection_maxArgs = { + field: SitePluginFieldsEnum; +}; + + +type SitePluginGroupConnection_minArgs = { + field: SitePluginFieldsEnum; +}; + + +type SitePluginGroupConnection_sumArgs = { + field: SitePluginFieldsEnum; +}; + +type SitePluginSortInput = { + readonly fields: InputMaybe>>; + readonly order: InputMaybe>>; +}; + +type SiteSiteMetadata = { + readonly description: Maybe; + readonly siteUrl: Maybe; + readonly title: Maybe; +}; + +type SiteSiteMetadataFilterInput = { + readonly description: InputMaybe; + readonly siteUrl: InputMaybe; + readonly title: InputMaybe; +}; + +type SiteSortInput = { + readonly fields: InputMaybe>>; + readonly order: 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 FederalStateFromIndexQueryVariables = Exact<{ + general__from__federalState: Scalars['String']; +}>; + + +type FederalStateFromIndexQuery = { readonly from: { readonly nodes: ReadonlyArray<{ readonly state: string | null, readonly jsonId: string | null, readonly general: { readonly ref: string | null, readonly name: string | null, readonly description: string | null } | null, readonly staticMap: { readonly childImageSharp: { readonly gatsbyImageData: import('gatsby-plugin-image').IGatsbyImageData } | null } }> }, readonly to: { readonly nodes: ReadonlyArray<{ readonly state: string | null, readonly jsonId: string | null, readonly general: { readonly ref: string | null, readonly name: string | null, readonly description: string | null } | null, readonly staticMap: { readonly childImageSharp: { readonly gatsbyImageData: import('gatsby-plugin-image').IGatsbyImageData } | null } }> } }; + +type FederalStatesQueryVariables = Exact<{ [key: string]: never; }>; + + +type FederalStatesQuery = { readonly radschnellwege: { readonly nodes: ReadonlyArray<{ readonly fromPath: string | null, readonly toPath: string | null, readonly general: { readonly from: { readonly federalState: string | null } | null, readonly to: { readonly federalState: string | null } | null } | null }> } }; + +type FederalStateToIndexQueryVariables = Exact<{ + general__to__federalState: Scalars['String']; +}>; + + +type FederalStateToIndexQuery = { readonly from: { readonly nodes: ReadonlyArray<{ readonly state: string | null, readonly jsonId: string | null, readonly general: { readonly ref: string | null, readonly name: string | null, readonly description: string | null } | null, readonly staticMap: { readonly childImageSharp: { readonly gatsbyImageData: import('gatsby-plugin-image').IGatsbyImageData } | null } }> }, readonly to: { readonly nodes: ReadonlyArray<{ readonly state: string | null, readonly jsonId: string | null, readonly general: { readonly ref: string | null, readonly name: string | null, readonly description: string | null } | null, readonly staticMap: { readonly childImageSharp: { readonly gatsbyImageData: import('gatsby-plugin-image').IGatsbyImageData } | 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 SteckbriefQueryVariables = Exact<{ + jsonId: Scalars['String']; +}>; + + +type SteckbriefQuery = { readonly geometry: { readonly type: string | null, readonly bbox: ReadonlyArray | null, readonly id: string | null, readonly features: ReadonlyArray<{ readonly type: string | null, readonly bbox: ReadonlyArray | null, readonly geometry: { readonly coordinates: ReadonlyArray | null> | null> | null, readonly type: string | null } | null, readonly properties: { readonly variant: string | null, readonly state: string | null, readonly planning_phase: string | null, readonly length: number | null, readonly id_rsv: string | null, readonly id: string | null, readonly detail_level: string | null, readonly discarded: boolean | null } | null } | null> | null } | null, readonly meta: { readonly cost: string | null, readonly state: string | null, readonly general: { readonly stand: string | null, readonly description: string | null, readonly name: string | null, readonly ref: string | null, readonly source: string | null, readonly length: number | null, readonly from: { readonly city: string | null, readonly federalState: string | null } | null, readonly to: { readonly city: string | null, readonly federalState: string | null } | null } | null, readonly references: { readonly website: string | null } | null, readonly stakeholders: ReadonlyArray<{ readonly name: string | null, readonly roles: ReadonlyArray | null } | null> | null, readonly staticMap: { readonly publicURL: string | null, readonly childImageSharp: { readonly gatsbyImageData: import('gatsby-plugin-image').IGatsbyImageData } | null } } | null }; + +type SteckbriefeIndexQueryVariables = Exact<{ [key: string]: never; }>; + + +type SteckbriefeIndexQuery = { readonly allMetaJson: { readonly radschnellwege: ReadonlyArray<{ readonly state: string | null, readonly jsonId: string | null, readonly general: { readonly ref: string | null, readonly name: string | null, readonly description: string | null } | null, readonly staticMap: { readonly childImageSharp: { readonly gatsbyImageData: import('gatsby-plugin-image').IGatsbyImageData } | null } }> } }; + + }