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