Created
October 30, 2019 17:53
-
-
Save bsgreenb/e464b434474ab22bc7177b1d9abe2c06 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| export type Maybe<T> = T | null; | |
| /** All built-in and custom scalars, mapped to their actual values */ | |
| export type Scalars = { | |
| ID: string, | |
| String: string, | |
| Boolean: boolean, | |
| Int: number, | |
| 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: any, | |
| /** 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: any, | |
| }; | |
| export type BooleanQueryOperatorInput = { | |
| eq?: Maybe<Scalars['Boolean']>, | |
| ne?: Maybe<Scalars['Boolean']>, | |
| in?: Maybe<Array<Maybe<Scalars['Boolean']>>>, | |
| nin?: Maybe<Array<Maybe<Scalars['Boolean']>>>, | |
| }; | |
| export type ContentfulAsset = Node & { | |
| __typename?: 'ContentfulAsset', | |
| id: Scalars['ID'], | |
| parent?: Maybe<Node>, | |
| children: Array<Node>, | |
| internal: Internal, | |
| contentful_id?: Maybe<Scalars['String']>, | |
| file?: Maybe<ContentfulAssetFile>, | |
| title?: Maybe<Scalars['String']>, | |
| description?: Maybe<Scalars['String']>, | |
| node_locale?: Maybe<Scalars['String']>, | |
| fixed?: Maybe<ContentfulFixed>, | |
| resolutions?: Maybe<ContentfulResolutions>, | |
| fluid?: Maybe<ContentfulFluid>, | |
| sizes?: Maybe<ContentfulSizes>, | |
| resize?: Maybe<ContentfulResize>, | |
| }; | |
| export type ContentfulAssetFixedArgs = { | |
| width?: Maybe<Scalars['Int']>, | |
| height?: Maybe<Scalars['Int']>, | |
| quality?: Maybe<Scalars['Int']>, | |
| toFormat?: Maybe<ContentfulImageFormat>, | |
| resizingBehavior?: Maybe<ImageResizingBehavior>, | |
| cropFocus?: Maybe<ContentfulImageCropFocus>, | |
| background?: Maybe<Scalars['String']> | |
| }; | |
| export type ContentfulAssetResolutionsArgs = { | |
| width?: Maybe<Scalars['Int']>, | |
| height?: Maybe<Scalars['Int']>, | |
| quality?: Maybe<Scalars['Int']>, | |
| toFormat?: Maybe<ContentfulImageFormat>, | |
| resizingBehavior?: Maybe<ImageResizingBehavior>, | |
| cropFocus?: Maybe<ContentfulImageCropFocus>, | |
| background?: Maybe<Scalars['String']> | |
| }; | |
| export type ContentfulAssetFluidArgs = { | |
| maxWidth?: Maybe<Scalars['Int']>, | |
| maxHeight?: Maybe<Scalars['Int']>, | |
| quality?: Maybe<Scalars['Int']>, | |
| toFormat?: Maybe<ContentfulImageFormat>, | |
| resizingBehavior?: Maybe<ImageResizingBehavior>, | |
| cropFocus?: Maybe<ContentfulImageCropFocus>, | |
| background?: Maybe<Scalars['String']>, | |
| sizes?: Maybe<Scalars['String']> | |
| }; | |
| export type ContentfulAssetSizesArgs = { | |
| maxWidth?: Maybe<Scalars['Int']>, | |
| maxHeight?: Maybe<Scalars['Int']>, | |
| quality?: Maybe<Scalars['Int']>, | |
| toFormat?: Maybe<ContentfulImageFormat>, | |
| resizingBehavior?: Maybe<ImageResizingBehavior>, | |
| cropFocus?: Maybe<ContentfulImageCropFocus>, | |
| background?: Maybe<Scalars['String']>, | |
| sizes?: Maybe<Scalars['String']> | |
| }; | |
| export type ContentfulAssetResizeArgs = { | |
| width?: Maybe<Scalars['Int']>, | |
| height?: Maybe<Scalars['Int']>, | |
| quality?: Maybe<Scalars['Int']>, | |
| jpegProgressive?: Maybe<Scalars['Boolean']>, | |
| resizingBehavior?: Maybe<ImageResizingBehavior>, | |
| toFormat?: Maybe<ContentfulImageFormat>, | |
| cropFocus?: Maybe<ContentfulImageCropFocus>, | |
| background?: Maybe<Scalars['String']> | |
| }; | |
| export type ContentfulAssetConnection = { | |
| __typename?: 'ContentfulAssetConnection', | |
| totalCount: Scalars['Int'], | |
| edges: Array<ContentfulAssetEdge>, | |
| nodes: Array<ContentfulAsset>, | |
| pageInfo: PageInfo, | |
| distinct: Array<Scalars['String']>, | |
| group: Array<ContentfulAssetGroupConnection>, | |
| }; | |
| export type ContentfulAssetConnectionDistinctArgs = { | |
| field: ContentfulAssetFieldsEnum | |
| }; | |
| export type ContentfulAssetConnectionGroupArgs = { | |
| skip?: Maybe<Scalars['Int']>, | |
| limit?: Maybe<Scalars['Int']>, | |
| field: ContentfulAssetFieldsEnum | |
| }; | |
| export type ContentfulAssetEdge = { | |
| __typename?: 'ContentfulAssetEdge', | |
| next?: Maybe<ContentfulAsset>, | |
| node: ContentfulAsset, | |
| previous?: Maybe<ContentfulAsset>, | |
| }; | |
| export enum ContentfulAssetFieldsEnum { | |
| Id = 'id', | |
| ParentId = 'parent___id', | |
| ParentParentId = 'parent___parent___id', | |
| ParentParentParentId = 'parent___parent___parent___id', | |
| ParentParentParentChildren = 'parent___parent___parent___children', | |
| ParentParentChildren = 'parent___parent___children', | |
| ParentParentChildrenId = 'parent___parent___children___id', | |
| ParentParentChildrenChildren = 'parent___parent___children___children', | |
| ParentParentInternalContent = 'parent___parent___internal___content', | |
| ParentParentInternalContentDigest = 'parent___parent___internal___contentDigest', | |
| ParentParentInternalDescription = 'parent___parent___internal___description', | |
| ParentParentInternalFieldOwners = 'parent___parent___internal___fieldOwners', | |
| ParentParentInternalIgnoreType = 'parent___parent___internal___ignoreType', | |
| ParentParentInternalMediaType = 'parent___parent___internal___mediaType', | |
| ParentParentInternalOwner = 'parent___parent___internal___owner', | |
| ParentParentInternalType = 'parent___parent___internal___type', | |
| ParentChildren = 'parent___children', | |
| ParentChildrenId = 'parent___children___id', | |
| ParentChildrenParentId = 'parent___children___parent___id', | |
| ParentChildrenParentChildren = 'parent___children___parent___children', | |
| ParentChildrenChildren = 'parent___children___children', | |
| ParentChildrenChildrenId = 'parent___children___children___id', | |
| ParentChildrenChildrenChildren = 'parent___children___children___children', | |
| ParentChildrenInternalContent = 'parent___children___internal___content', | |
| ParentChildrenInternalContentDigest = 'parent___children___internal___contentDigest', | |
| ParentChildrenInternalDescription = 'parent___children___internal___description', | |
| ParentChildrenInternalFieldOwners = 'parent___children___internal___fieldOwners', | |
| ParentChildrenInternalIgnoreType = 'parent___children___internal___ignoreType', | |
| ParentChildrenInternalMediaType = 'parent___children___internal___mediaType', | |
| ParentChildrenInternalOwner = 'parent___children___internal___owner', | |
| ParentChildrenInternalType = 'parent___children___internal___type', | |
| ParentInternalContent = 'parent___internal___content', | |
| ParentInternalContentDigest = 'parent___internal___contentDigest', | |
| ParentInternalDescription = 'parent___internal___description', | |
| ParentInternalFieldOwners = 'parent___internal___fieldOwners', | |
| ParentInternalIgnoreType = 'parent___internal___ignoreType', | |
| ParentInternalMediaType = 'parent___internal___mediaType', | |
| ParentInternalOwner = 'parent___internal___owner', | |
| ParentInternalType = 'parent___internal___type', | |
| Children = 'children', | |
| ChildrenId = 'children___id', | |
| ChildrenParentId = 'children___parent___id', | |
| ChildrenParentParentId = 'children___parent___parent___id', | |
| ChildrenParentParentChildren = 'children___parent___parent___children', | |
| ChildrenParentChildren = 'children___parent___children', | |
| ChildrenParentChildrenId = 'children___parent___children___id', | |
| ChildrenParentChildrenChildren = 'children___parent___children___children', | |
| ChildrenParentInternalContent = 'children___parent___internal___content', | |
| ChildrenParentInternalContentDigest = 'children___parent___internal___contentDigest', | |
| ChildrenParentInternalDescription = 'children___parent___internal___description', | |
| ChildrenParentInternalFieldOwners = 'children___parent___internal___fieldOwners', | |
| ChildrenParentInternalIgnoreType = 'children___parent___internal___ignoreType', | |
| ChildrenParentInternalMediaType = 'children___parent___internal___mediaType', | |
| ChildrenParentInternalOwner = 'children___parent___internal___owner', | |
| ChildrenParentInternalType = 'children___parent___internal___type', | |
| ChildrenChildren = 'children___children', | |
| ChildrenChildrenId = 'children___children___id', | |
| ChildrenChildrenParentId = 'children___children___parent___id', | |
| ChildrenChildrenParentChildren = 'children___children___parent___children', | |
| ChildrenChildrenChildren = 'children___children___children', | |
| ChildrenChildrenChildrenId = 'children___children___children___id', | |
| ChildrenChildrenChildrenChildren = 'children___children___children___children', | |
| ChildrenChildrenInternalContent = 'children___children___internal___content', | |
| ChildrenChildrenInternalContentDigest = 'children___children___internal___contentDigest', | |
| ChildrenChildrenInternalDescription = 'children___children___internal___description', | |
| ChildrenChildrenInternalFieldOwners = 'children___children___internal___fieldOwners', | |
| ChildrenChildrenInternalIgnoreType = 'children___children___internal___ignoreType', | |
| ChildrenChildrenInternalMediaType = 'children___children___internal___mediaType', | |
| ChildrenChildrenInternalOwner = 'children___children___internal___owner', | |
| ChildrenChildrenInternalType = 'children___children___internal___type', | |
| ChildrenInternalContent = 'children___internal___content', | |
| ChildrenInternalContentDigest = 'children___internal___contentDigest', | |
| ChildrenInternalDescription = 'children___internal___description', | |
| ChildrenInternalFieldOwners = 'children___internal___fieldOwners', | |
| ChildrenInternalIgnoreType = 'children___internal___ignoreType', | |
| ChildrenInternalMediaType = 'children___internal___mediaType', | |
| ChildrenInternalOwner = 'children___internal___owner', | |
| ChildrenInternalType = 'children___internal___type', | |
| InternalContent = 'internal___content', | |
| InternalContentDigest = 'internal___contentDigest', | |
| InternalDescription = 'internal___description', | |
| InternalFieldOwners = 'internal___fieldOwners', | |
| InternalIgnoreType = 'internal___ignoreType', | |
| InternalMediaType = 'internal___mediaType', | |
| InternalOwner = 'internal___owner', | |
| InternalType = 'internal___type', | |
| ContentfulId = 'contentful_id', | |
| FileUrl = 'file___url', | |
| FileDetailsSize = 'file___details___size', | |
| FileDetailsImageWidth = 'file___details___image___width', | |
| FileDetailsImageHeight = 'file___details___image___height', | |
| FileFileName = 'file___fileName', | |
| FileContentType = 'file___contentType', | |
| Title = 'title', | |
| Description = 'description', | |
| NodeLocale = 'node_locale', | |
| FixedBase64 = 'fixed___base64', | |
| FixedTracedSvg = 'fixed___tracedSVG', | |
| FixedAspectRatio = 'fixed___aspectRatio', | |
| FixedWidth = 'fixed___width', | |
| FixedHeight = 'fixed___height', | |
| FixedSrc = 'fixed___src', | |
| FixedSrcSet = 'fixed___srcSet', | |
| FixedSrcWebp = 'fixed___srcWebp', | |
| FixedSrcSetWebp = 'fixed___srcSetWebp', | |
| ResolutionsBase64 = 'resolutions___base64', | |
| ResolutionsTracedSvg = 'resolutions___tracedSVG', | |
| ResolutionsAspectRatio = 'resolutions___aspectRatio', | |
| ResolutionsWidth = 'resolutions___width', | |
| ResolutionsHeight = 'resolutions___height', | |
| ResolutionsSrc = 'resolutions___src', | |
| ResolutionsSrcSet = 'resolutions___srcSet', | |
| ResolutionsSrcWebp = 'resolutions___srcWebp', | |
| ResolutionsSrcSetWebp = 'resolutions___srcSetWebp', | |
| FluidBase64 = 'fluid___base64', | |
| FluidTracedSvg = 'fluid___tracedSVG', | |
| FluidAspectRatio = 'fluid___aspectRatio', | |
| FluidSrc = 'fluid___src', | |
| FluidSrcSet = 'fluid___srcSet', | |
| FluidSrcWebp = 'fluid___srcWebp', | |
| FluidSrcSetWebp = 'fluid___srcSetWebp', | |
| FluidSizes = 'fluid___sizes', | |
| SizesBase64 = 'sizes___base64', | |
| SizesTracedSvg = 'sizes___tracedSVG', | |
| SizesAspectRatio = 'sizes___aspectRatio', | |
| SizesSrc = 'sizes___src', | |
| SizesSrcSet = 'sizes___srcSet', | |
| SizesSrcWebp = 'sizes___srcWebp', | |
| SizesSrcSetWebp = 'sizes___srcSetWebp', | |
| SizesSizes = 'sizes___sizes', | |
| ResizeBase64 = 'resize___base64', | |
| ResizeTracedSvg = 'resize___tracedSVG', | |
| ResizeSrc = 'resize___src', | |
| ResizeWidth = 'resize___width', | |
| ResizeHeight = 'resize___height', | |
| ResizeAspectRatio = 'resize___aspectRatio' | |
| } | |
| export type ContentfulAssetFile = { | |
| __typename?: 'ContentfulAssetFile', | |
| url?: Maybe<Scalars['String']>, | |
| details?: Maybe<ContentfulAssetFileDetails>, | |
| fileName?: Maybe<Scalars['String']>, | |
| contentType?: Maybe<Scalars['String']>, | |
| }; | |
| export type ContentfulAssetFileDetails = { | |
| __typename?: 'ContentfulAssetFileDetails', | |
| size?: Maybe<Scalars['Int']>, | |
| image?: Maybe<ContentfulAssetFileDetailsImage>, | |
| }; | |
| export type ContentfulAssetFileDetailsFilterInput = { | |
| size?: Maybe<IntQueryOperatorInput>, | |
| image?: Maybe<ContentfulAssetFileDetailsImageFilterInput>, | |
| }; | |
| export type ContentfulAssetFileDetailsImage = { | |
| __typename?: 'ContentfulAssetFileDetailsImage', | |
| width?: Maybe<Scalars['Int']>, | |
| height?: Maybe<Scalars['Int']>, | |
| }; | |
| export type ContentfulAssetFileDetailsImageFilterInput = { | |
| width?: Maybe<IntQueryOperatorInput>, | |
| height?: Maybe<IntQueryOperatorInput>, | |
| }; | |
| export type ContentfulAssetFileFilterInput = { | |
| url?: Maybe<StringQueryOperatorInput>, | |
| details?: Maybe<ContentfulAssetFileDetailsFilterInput>, | |
| fileName?: Maybe<StringQueryOperatorInput>, | |
| contentType?: Maybe<StringQueryOperatorInput>, | |
| }; | |
| export type ContentfulAssetFilterInput = { | |
| id?: Maybe<StringQueryOperatorInput>, | |
| parent?: Maybe<NodeFilterInput>, | |
| children?: Maybe<NodeFilterListInput>, | |
| internal?: Maybe<InternalFilterInput>, | |
| contentful_id?: Maybe<StringQueryOperatorInput>, | |
| file?: Maybe<ContentfulAssetFileFilterInput>, | |
| title?: Maybe<StringQueryOperatorInput>, | |
| description?: Maybe<StringQueryOperatorInput>, | |
| node_locale?: Maybe<StringQueryOperatorInput>, | |
| fixed?: Maybe<ContentfulFixedFilterInput>, | |
| resolutions?: Maybe<ContentfulResolutionsFilterInput>, | |
| fluid?: Maybe<ContentfulFluidFilterInput>, | |
| sizes?: Maybe<ContentfulSizesFilterInput>, | |
| resize?: Maybe<ContentfulResizeFilterInput>, | |
| }; | |
| export type ContentfulAssetGroupConnection = { | |
| __typename?: 'ContentfulAssetGroupConnection', | |
| totalCount: Scalars['Int'], | |
| edges: Array<ContentfulAssetEdge>, | |
| nodes: Array<ContentfulAsset>, | |
| pageInfo: PageInfo, | |
| field: Scalars['String'], | |
| fieldValue?: Maybe<Scalars['String']>, | |
| }; | |
| export type ContentfulAssetSortInput = { | |
| fields?: Maybe<Array<Maybe<ContentfulAssetFieldsEnum>>>, | |
| order?: Maybe<Array<Maybe<SortOrderEnum>>>, | |
| }; | |
| export type ContentfulBlogPost = Node & { | |
| __typename?: 'ContentfulBlogPost', | |
| id: Scalars['ID'], | |
| parent?: Maybe<Node>, | |
| children: Array<Node>, | |
| internal: Internal, | |
| title?: Maybe<Scalars['String']>, | |
| slug?: Maybe<Scalars['String']>, | |
| publishDate?: Maybe<Scalars['Date']>, | |
| featuredImage?: Maybe<ContentfulAsset>, | |
| categories?: Maybe<Array<Maybe<ContentfulCategory>>>, | |
| page?: Maybe<Array<Maybe<ContentfulPage>>>, | |
| body?: Maybe<ContentfulBlogPostBodyRichTextNode>, | |
| spaceId?: Maybe<Scalars['String']>, | |
| contentful_id?: Maybe<Scalars['String']>, | |
| createdAt?: Maybe<Scalars['Date']>, | |
| updatedAt?: Maybe<Scalars['Date']>, | |
| node_locale?: Maybe<Scalars['String']>, | |
| author?: Maybe<ContentfulPerson>, | |
| childContentfulBlogPostBodyRichTextNode?: Maybe<ContentfulBlogPostBodyRichTextNode>, | |
| }; | |
| export type ContentfulBlogPostPublishDateArgs = { | |
| formatString?: Maybe<Scalars['String']>, | |
| fromNow?: Maybe<Scalars['Boolean']>, | |
| difference?: Maybe<Scalars['String']>, | |
| locale?: Maybe<Scalars['String']> | |
| }; | |
| export type ContentfulBlogPostCreatedAtArgs = { | |
| formatString?: Maybe<Scalars['String']>, | |
| fromNow?: Maybe<Scalars['Boolean']>, | |
| difference?: Maybe<Scalars['String']>, | |
| locale?: Maybe<Scalars['String']> | |
| }; | |
| export type ContentfulBlogPostUpdatedAtArgs = { | |
| formatString?: Maybe<Scalars['String']>, | |
| fromNow?: Maybe<Scalars['Boolean']>, | |
| difference?: Maybe<Scalars['String']>, | |
| locale?: Maybe<Scalars['String']> | |
| }; | |
| export type ContentfulBlogPostBodyRichTextNode = Node & { | |
| __typename?: 'contentfulBlogPostBodyRichTextNode', | |
| id: Scalars['ID'], | |
| parent?: Maybe<Node>, | |
| children: Array<Node>, | |
| internal: Internal, | |
| content?: Maybe<Array<Maybe<ContentfulBlogPostBodyRichTextNodeContent>>>, | |
| nodeType?: Maybe<Scalars['String']>, | |
| body?: Maybe<Scalars['String']>, | |
| json?: Maybe<Scalars['JSON']>, | |
| childContentfulRichText?: Maybe<ContentfulRichText>, | |
| }; | |
| export type ContentfulBlogPostBodyRichTextNodeConnection = { | |
| __typename?: 'contentfulBlogPostBodyRichTextNodeConnection', | |
| totalCount: Scalars['Int'], | |
| edges: Array<ContentfulBlogPostBodyRichTextNodeEdge>, | |
| nodes: Array<ContentfulBlogPostBodyRichTextNode>, | |
| pageInfo: PageInfo, | |
| distinct: Array<Scalars['String']>, | |
| group: Array<ContentfulBlogPostBodyRichTextNodeGroupConnection>, | |
| }; | |
| export type ContentfulBlogPostBodyRichTextNodeConnectionDistinctArgs = { | |
| field: ContentfulBlogPostBodyRichTextNodeFieldsEnum | |
| }; | |
| export type ContentfulBlogPostBodyRichTextNodeConnectionGroupArgs = { | |
| skip?: Maybe<Scalars['Int']>, | |
| limit?: Maybe<Scalars['Int']>, | |
| field: ContentfulBlogPostBodyRichTextNodeFieldsEnum | |
| }; | |
| export type ContentfulBlogPostBodyRichTextNodeContent = { | |
| __typename?: 'contentfulBlogPostBodyRichTextNodeContent', | |
| content?: Maybe<Array<Maybe<ContentfulBlogPostBodyRichTextNodeContentContent>>>, | |
| nodeType?: Maybe<Scalars['String']>, | |
| }; | |
| export type ContentfulBlogPostBodyRichTextNodeContentContent = { | |
| __typename?: 'contentfulBlogPostBodyRichTextNodeContentContent', | |
| data?: Maybe<ContentfulBlogPostBodyRichTextNodeContentContentData>, | |
| marks?: Maybe<Array<Maybe<ContentfulBlogPostBodyRichTextNodeContentContentMarks>>>, | |
| value?: Maybe<Scalars['String']>, | |
| nodeType?: Maybe<Scalars['String']>, | |
| content?: Maybe<Array<Maybe<ContentfulBlogPostBodyRichTextNodeContentContentContent>>>, | |
| }; | |
| export type ContentfulBlogPostBodyRichTextNodeContentContentContent = { | |
| __typename?: 'contentfulBlogPostBodyRichTextNodeContentContentContent', | |
| marks?: Maybe<Array<Maybe<ContentfulBlogPostBodyRichTextNodeContentContentContentMarks>>>, | |
| value?: Maybe<Scalars['String']>, | |
| nodeType?: Maybe<Scalars['String']>, | |
| content?: Maybe<Array<Maybe<ContentfulBlogPostBodyRichTextNodeContentContentContentContent>>>, | |
| }; | |
| export type ContentfulBlogPostBodyRichTextNodeContentContentContentContent = { | |
| __typename?: 'contentfulBlogPostBodyRichTextNodeContentContentContentContent', | |
| data?: Maybe<ContentfulBlogPostBodyRichTextNodeContentContentContentContentData>, | |
| value?: Maybe<Scalars['String']>, | |
| nodeType?: Maybe<Scalars['String']>, | |
| content?: Maybe<Array<Maybe<ContentfulBlogPostBodyRichTextNodeContentContentContentContentContent>>>, | |
| }; | |
| export type ContentfulBlogPostBodyRichTextNodeContentContentContentContentContent = { | |
| __typename?: 'contentfulBlogPostBodyRichTextNodeContentContentContentContentContent', | |
| marks?: Maybe<Array<Maybe<ContentfulBlogPostBodyRichTextNodeContentContentContentContentContentMarks>>>, | |
| value?: Maybe<Scalars['String']>, | |
| nodeType?: Maybe<Scalars['String']>, | |
| }; | |
| export type ContentfulBlogPostBodyRichTextNodeContentContentContentContentContentFilterInput = { | |
| marks?: Maybe<ContentfulBlogPostBodyRichTextNodeContentContentContentContentContentMarksFilterListInput>, | |
| value?: Maybe<StringQueryOperatorInput>, | |
| nodeType?: Maybe<StringQueryOperatorInput>, | |
| }; | |
| export type ContentfulBlogPostBodyRichTextNodeContentContentContentContentContentFilterListInput = { | |
| elemMatch?: Maybe<ContentfulBlogPostBodyRichTextNodeContentContentContentContentContentFilterInput>, | |
| }; | |
| export type ContentfulBlogPostBodyRichTextNodeContentContentContentContentContentMarks = { | |
| __typename?: 'contentfulBlogPostBodyRichTextNodeContentContentContentContentContentMarks', | |
| type?: Maybe<Scalars['String']>, | |
| }; | |
| export type ContentfulBlogPostBodyRichTextNodeContentContentContentContentContentMarksFilterInput = { | |
| type?: Maybe<StringQueryOperatorInput>, | |
| }; | |
| export type ContentfulBlogPostBodyRichTextNodeContentContentContentContentContentMarksFilterListInput = { | |
| elemMatch?: Maybe<ContentfulBlogPostBodyRichTextNodeContentContentContentContentContentMarksFilterInput>, | |
| }; | |
| export type ContentfulBlogPostBodyRichTextNodeContentContentContentContentData = { | |
| __typename?: 'contentfulBlogPostBodyRichTextNodeContentContentContentContentData', | |
| uri?: Maybe<Scalars['String']>, | |
| }; | |
| export type ContentfulBlogPostBodyRichTextNodeContentContentContentContentDataFilterInput = { | |
| uri?: Maybe<StringQueryOperatorInput>, | |
| }; | |
| export type ContentfulBlogPostBodyRichTextNodeContentContentContentContentFilterInput = { | |
| data?: Maybe<ContentfulBlogPostBodyRichTextNodeContentContentContentContentDataFilterInput>, | |
| value?: Maybe<StringQueryOperatorInput>, | |
| nodeType?: Maybe<StringQueryOperatorInput>, | |
| content?: Maybe<ContentfulBlogPostBodyRichTextNodeContentContentContentContentContentFilterListInput>, | |
| }; | |
| export type ContentfulBlogPostBodyRichTextNodeContentContentContentContentFilterListInput = { | |
| elemMatch?: Maybe<ContentfulBlogPostBodyRichTextNodeContentContentContentContentFilterInput>, | |
| }; | |
| export type ContentfulBlogPostBodyRichTextNodeContentContentContentFilterInput = { | |
| marks?: Maybe<ContentfulBlogPostBodyRichTextNodeContentContentContentMarksFilterListInput>, | |
| value?: Maybe<StringQueryOperatorInput>, | |
| nodeType?: Maybe<StringQueryOperatorInput>, | |
| content?: Maybe<ContentfulBlogPostBodyRichTextNodeContentContentContentContentFilterListInput>, | |
| }; | |
| export type ContentfulBlogPostBodyRichTextNodeContentContentContentFilterListInput = { | |
| elemMatch?: Maybe<ContentfulBlogPostBodyRichTextNodeContentContentContentFilterInput>, | |
| }; | |
| export type ContentfulBlogPostBodyRichTextNodeContentContentContentMarks = { | |
| __typename?: 'contentfulBlogPostBodyRichTextNodeContentContentContentMarks', | |
| type?: Maybe<Scalars['String']>, | |
| }; | |
| export type ContentfulBlogPostBodyRichTextNodeContentContentContentMarksFilterInput = { | |
| type?: Maybe<StringQueryOperatorInput>, | |
| }; | |
| export type ContentfulBlogPostBodyRichTextNodeContentContentContentMarksFilterListInput = { | |
| elemMatch?: Maybe<ContentfulBlogPostBodyRichTextNodeContentContentContentMarksFilterInput>, | |
| }; | |
| export type ContentfulBlogPostBodyRichTextNodeContentContentData = { | |
| __typename?: 'contentfulBlogPostBodyRichTextNodeContentContentData', | |
| uri?: Maybe<Scalars['String']>, | |
| }; | |
| export type ContentfulBlogPostBodyRichTextNodeContentContentDataFilterInput = { | |
| uri?: Maybe<StringQueryOperatorInput>, | |
| }; | |
| export type ContentfulBlogPostBodyRichTextNodeContentContentFilterInput = { | |
| data?: Maybe<ContentfulBlogPostBodyRichTextNodeContentContentDataFilterInput>, | |
| marks?: Maybe<ContentfulBlogPostBodyRichTextNodeContentContentMarksFilterListInput>, | |
| value?: Maybe<StringQueryOperatorInput>, | |
| nodeType?: Maybe<StringQueryOperatorInput>, | |
| content?: Maybe<ContentfulBlogPostBodyRichTextNodeContentContentContentFilterListInput>, | |
| }; | |
| export type ContentfulBlogPostBodyRichTextNodeContentContentFilterListInput = { | |
| elemMatch?: Maybe<ContentfulBlogPostBodyRichTextNodeContentContentFilterInput>, | |
| }; | |
| export type ContentfulBlogPostBodyRichTextNodeContentContentMarks = { | |
| __typename?: 'contentfulBlogPostBodyRichTextNodeContentContentMarks', | |
| type?: Maybe<Scalars['String']>, | |
| }; | |
| export type ContentfulBlogPostBodyRichTextNodeContentContentMarksFilterInput = { | |
| type?: Maybe<StringQueryOperatorInput>, | |
| }; | |
| export type ContentfulBlogPostBodyRichTextNodeContentContentMarksFilterListInput = { | |
| elemMatch?: Maybe<ContentfulBlogPostBodyRichTextNodeContentContentMarksFilterInput>, | |
| }; | |
| export type ContentfulBlogPostBodyRichTextNodeContentFilterInput = { | |
| content?: Maybe<ContentfulBlogPostBodyRichTextNodeContentContentFilterListInput>, | |
| nodeType?: Maybe<StringQueryOperatorInput>, | |
| }; | |
| export type ContentfulBlogPostBodyRichTextNodeContentFilterListInput = { | |
| elemMatch?: Maybe<ContentfulBlogPostBodyRichTextNodeContentFilterInput>, | |
| }; | |
| export type ContentfulBlogPostBodyRichTextNodeEdge = { | |
| __typename?: 'contentfulBlogPostBodyRichTextNodeEdge', | |
| next?: Maybe<ContentfulBlogPostBodyRichTextNode>, | |
| node: ContentfulBlogPostBodyRichTextNode, | |
| previous?: Maybe<ContentfulBlogPostBodyRichTextNode>, | |
| }; | |
| export enum ContentfulBlogPostBodyRichTextNodeFieldsEnum { | |
| Id = 'id', | |
| ParentId = 'parent___id', | |
| ParentParentId = 'parent___parent___id', | |
| ParentParentParentId = 'parent___parent___parent___id', | |
| ParentParentParentChildren = 'parent___parent___parent___children', | |
| ParentParentChildren = 'parent___parent___children', | |
| ParentParentChildrenId = 'parent___parent___children___id', | |
| ParentParentChildrenChildren = 'parent___parent___children___children', | |
| ParentParentInternalContent = 'parent___parent___internal___content', | |
| ParentParentInternalContentDigest = 'parent___parent___internal___contentDigest', | |
| ParentParentInternalDescription = 'parent___parent___internal___description', | |
| ParentParentInternalFieldOwners = 'parent___parent___internal___fieldOwners', | |
| ParentParentInternalIgnoreType = 'parent___parent___internal___ignoreType', | |
| ParentParentInternalMediaType = 'parent___parent___internal___mediaType', | |
| ParentParentInternalOwner = 'parent___parent___internal___owner', | |
| ParentParentInternalType = 'parent___parent___internal___type', | |
| ParentChildren = 'parent___children', | |
| ParentChildrenId = 'parent___children___id', | |
| ParentChildrenParentId = 'parent___children___parent___id', | |
| ParentChildrenParentChildren = 'parent___children___parent___children', | |
| ParentChildrenChildren = 'parent___children___children', | |
| ParentChildrenChildrenId = 'parent___children___children___id', | |
| ParentChildrenChildrenChildren = 'parent___children___children___children', | |
| ParentChildrenInternalContent = 'parent___children___internal___content', | |
| ParentChildrenInternalContentDigest = 'parent___children___internal___contentDigest', | |
| ParentChildrenInternalDescription = 'parent___children___internal___description', | |
| ParentChildrenInternalFieldOwners = 'parent___children___internal___fieldOwners', | |
| ParentChildrenInternalIgnoreType = 'parent___children___internal___ignoreType', | |
| ParentChildrenInternalMediaType = 'parent___children___internal___mediaType', | |
| ParentChildrenInternalOwner = 'parent___children___internal___owner', | |
| ParentChildrenInternalType = 'parent___children___internal___type', | |
| ParentInternalContent = 'parent___internal___content', | |
| ParentInternalContentDigest = 'parent___internal___contentDigest', | |
| ParentInternalDescription = 'parent___internal___description', | |
| ParentInternalFieldOwners = 'parent___internal___fieldOwners', | |
| ParentInternalIgnoreType = 'parent___internal___ignoreType', | |
| ParentInternalMediaType = 'parent___internal___mediaType', | |
| ParentInternalOwner = 'parent___internal___owner', | |
| ParentInternalType = 'parent___internal___type', | |
| Children = 'children', | |
| ChildrenId = 'children___id', | |
| ChildrenParentId = 'children___parent___id', | |
| ChildrenParentParentId = 'children___parent___parent___id', | |
| ChildrenParentParentChildren = 'children___parent___parent___children', | |
| ChildrenParentChildren = 'children___parent___children', | |
| ChildrenParentChildrenId = 'children___parent___children___id', | |
| ChildrenParentChildrenChildren = 'children___parent___children___children', | |
| ChildrenParentInternalContent = 'children___parent___internal___content', | |
| ChildrenParentInternalContentDigest = 'children___parent___internal___contentDigest', | |
| ChildrenParentInternalDescription = 'children___parent___internal___description', | |
| ChildrenParentInternalFieldOwners = 'children___parent___internal___fieldOwners', | |
| ChildrenParentInternalIgnoreType = 'children___parent___internal___ignoreType', | |
| ChildrenParentInternalMediaType = 'children___parent___internal___mediaType', | |
| ChildrenParentInternalOwner = 'children___parent___internal___owner', | |
| ChildrenParentInternalType = 'children___parent___internal___type', | |
| ChildrenChildren = 'children___children', | |
| ChildrenChildrenId = 'children___children___id', | |
| ChildrenChildrenParentId = 'children___children___parent___id', | |
| ChildrenChildrenParentChildren = 'children___children___parent___children', | |
| ChildrenChildrenChildren = 'children___children___children', | |
| ChildrenChildrenChildrenId = 'children___children___children___id', | |
| ChildrenChildrenChildrenChildren = 'children___children___children___children', | |
| ChildrenChildrenInternalContent = 'children___children___internal___content', | |
| ChildrenChildrenInternalContentDigest = 'children___children___internal___contentDigest', | |
| ChildrenChildrenInternalDescription = 'children___children___internal___description', | |
| ChildrenChildrenInternalFieldOwners = 'children___children___internal___fieldOwners', | |
| ChildrenChildrenInternalIgnoreType = 'children___children___internal___ignoreType', | |
| ChildrenChildrenInternalMediaType = 'children___children___internal___mediaType', | |
| ChildrenChildrenInternalOwner = 'children___children___internal___owner', | |
| ChildrenChildrenInternalType = 'children___children___internal___type', | |
| ChildrenInternalContent = 'children___internal___content', | |
| ChildrenInternalContentDigest = 'children___internal___contentDigest', | |
| ChildrenInternalDescription = 'children___internal___description', | |
| ChildrenInternalFieldOwners = 'children___internal___fieldOwners', | |
| ChildrenInternalIgnoreType = 'children___internal___ignoreType', | |
| ChildrenInternalMediaType = 'children___internal___mediaType', | |
| ChildrenInternalOwner = 'children___internal___owner', | |
| ChildrenInternalType = 'children___internal___type', | |
| InternalContent = 'internal___content', | |
| InternalContentDigest = 'internal___contentDigest', | |
| InternalDescription = 'internal___description', | |
| InternalFieldOwners = 'internal___fieldOwners', | |
| InternalIgnoreType = 'internal___ignoreType', | |
| InternalMediaType = 'internal___mediaType', | |
| InternalOwner = 'internal___owner', | |
| InternalType = 'internal___type', | |
| Content = 'content', | |
| ContentContent = 'content___content', | |
| ContentContentDataUri = 'content___content___data___uri', | |
| ContentContentMarks = 'content___content___marks', | |
| ContentContentMarksType = 'content___content___marks___type', | |
| ContentContentValue = 'content___content___value', | |
| ContentContentNodeType = 'content___content___nodeType', | |
| ContentContentContent = 'content___content___content', | |
| ContentContentContentMarks = 'content___content___content___marks', | |
| ContentContentContentValue = 'content___content___content___value', | |
| ContentContentContentNodeType = 'content___content___content___nodeType', | |
| ContentContentContentContent = 'content___content___content___content', | |
| ContentNodeType = 'content___nodeType', | |
| NodeType = 'nodeType', | |
| Body = 'body', | |
| Json = 'json', | |
| ChildContentfulRichTextId = 'childContentfulRichText___id', | |
| ChildContentfulRichTextParentId = 'childContentfulRichText___parent___id', | |
| ChildContentfulRichTextParentParentId = 'childContentfulRichText___parent___parent___id', | |
| ChildContentfulRichTextParentParentChildren = 'childContentfulRichText___parent___parent___children', | |
| ChildContentfulRichTextParentChildren = 'childContentfulRichText___parent___children', | |
| ChildContentfulRichTextParentChildrenId = 'childContentfulRichText___parent___children___id', | |
| ChildContentfulRichTextParentChildrenChildren = 'childContentfulRichText___parent___children___children', | |
| ChildContentfulRichTextParentInternalContent = 'childContentfulRichText___parent___internal___content', | |
| ChildContentfulRichTextParentInternalContentDigest = 'childContentfulRichText___parent___internal___contentDigest', | |
| ChildContentfulRichTextParentInternalDescription = 'childContentfulRichText___parent___internal___description', | |
| ChildContentfulRichTextParentInternalFieldOwners = 'childContentfulRichText___parent___internal___fieldOwners', | |
| ChildContentfulRichTextParentInternalIgnoreType = 'childContentfulRichText___parent___internal___ignoreType', | |
| ChildContentfulRichTextParentInternalMediaType = 'childContentfulRichText___parent___internal___mediaType', | |
| ChildContentfulRichTextParentInternalOwner = 'childContentfulRichText___parent___internal___owner', | |
| ChildContentfulRichTextParentInternalType = 'childContentfulRichText___parent___internal___type', | |
| ChildContentfulRichTextChildren = 'childContentfulRichText___children', | |
| ChildContentfulRichTextChildrenId = 'childContentfulRichText___children___id', | |
| ChildContentfulRichTextChildrenParentId = 'childContentfulRichText___children___parent___id', | |
| ChildContentfulRichTextChildrenParentChildren = 'childContentfulRichText___children___parent___children', | |
| ChildContentfulRichTextChildrenChildren = 'childContentfulRichText___children___children', | |
| ChildContentfulRichTextChildrenChildrenId = 'childContentfulRichText___children___children___id', | |
| ChildContentfulRichTextChildrenChildrenChildren = 'childContentfulRichText___children___children___children', | |
| ChildContentfulRichTextChildrenInternalContent = 'childContentfulRichText___children___internal___content', | |
| ChildContentfulRichTextChildrenInternalContentDigest = 'childContentfulRichText___children___internal___contentDigest', | |
| ChildContentfulRichTextChildrenInternalDescription = 'childContentfulRichText___children___internal___description', | |
| ChildContentfulRichTextChildrenInternalFieldOwners = 'childContentfulRichText___children___internal___fieldOwners', | |
| ChildContentfulRichTextChildrenInternalIgnoreType = 'childContentfulRichText___children___internal___ignoreType', | |
| ChildContentfulRichTextChildrenInternalMediaType = 'childContentfulRichText___children___internal___mediaType', | |
| ChildContentfulRichTextChildrenInternalOwner = 'childContentfulRichText___children___internal___owner', | |
| ChildContentfulRichTextChildrenInternalType = 'childContentfulRichText___children___internal___type', | |
| ChildContentfulRichTextInternalContent = 'childContentfulRichText___internal___content', | |
| ChildContentfulRichTextInternalContentDigest = 'childContentfulRichText___internal___contentDigest', | |
| ChildContentfulRichTextInternalDescription = 'childContentfulRichText___internal___description', | |
| ChildContentfulRichTextInternalFieldOwners = 'childContentfulRichText___internal___fieldOwners', | |
| ChildContentfulRichTextInternalIgnoreType = 'childContentfulRichText___internal___ignoreType', | |
| ChildContentfulRichTextInternalMediaType = 'childContentfulRichText___internal___mediaType', | |
| ChildContentfulRichTextInternalOwner = 'childContentfulRichText___internal___owner', | |
| ChildContentfulRichTextInternalType = 'childContentfulRichText___internal___type', | |
| ChildContentfulRichTextHtml = 'childContentfulRichText___html', | |
| ChildContentfulRichTextTimeToRead = 'childContentfulRichText___timeToRead' | |
| } | |
| export type ContentfulBlogPostBodyRichTextNodeFilterInput = { | |
| id?: Maybe<StringQueryOperatorInput>, | |
| parent?: Maybe<NodeFilterInput>, | |
| children?: Maybe<NodeFilterListInput>, | |
| internal?: Maybe<InternalFilterInput>, | |
| content?: Maybe<ContentfulBlogPostBodyRichTextNodeContentFilterListInput>, | |
| nodeType?: Maybe<StringQueryOperatorInput>, | |
| body?: Maybe<StringQueryOperatorInput>, | |
| json?: Maybe<JsonQueryOperatorInput>, | |
| childContentfulRichText?: Maybe<ContentfulRichTextFilterInput>, | |
| }; | |
| export type ContentfulBlogPostBodyRichTextNodeGroupConnection = { | |
| __typename?: 'contentfulBlogPostBodyRichTextNodeGroupConnection', | |
| totalCount: Scalars['Int'], | |
| edges: Array<ContentfulBlogPostBodyRichTextNodeEdge>, | |
| nodes: Array<ContentfulBlogPostBodyRichTextNode>, | |
| pageInfo: PageInfo, | |
| field: Scalars['String'], | |
| fieldValue?: Maybe<Scalars['String']>, | |
| }; | |
| export type ContentfulBlogPostBodyRichTextNodeSortInput = { | |
| fields?: Maybe<Array<Maybe<ContentfulBlogPostBodyRichTextNodeFieldsEnum>>>, | |
| order?: Maybe<Array<Maybe<SortOrderEnum>>>, | |
| }; | |
| export type ContentfulBlogPostConnection = { | |
| __typename?: 'ContentfulBlogPostConnection', | |
| totalCount: Scalars['Int'], | |
| edges: Array<ContentfulBlogPostEdge>, | |
| nodes: Array<ContentfulBlogPost>, | |
| pageInfo: PageInfo, | |
| distinct: Array<Scalars['String']>, | |
| group: Array<ContentfulBlogPostGroupConnection>, | |
| }; | |
| export type ContentfulBlogPostConnectionDistinctArgs = { | |
| field: ContentfulBlogPostFieldsEnum | |
| }; | |
| export type ContentfulBlogPostConnectionGroupArgs = { | |
| skip?: Maybe<Scalars['Int']>, | |
| limit?: Maybe<Scalars['Int']>, | |
| field: ContentfulBlogPostFieldsEnum | |
| }; | |
| export type ContentfulBlogPostEdge = { | |
| __typename?: 'ContentfulBlogPostEdge', | |
| next?: Maybe<ContentfulBlogPost>, | |
| node: ContentfulBlogPost, | |
| previous?: Maybe<ContentfulBlogPost>, | |
| }; | |
| export enum ContentfulBlogPostFieldsEnum { | |
| Id = 'id', | |
| ParentId = 'parent___id', | |
| ParentParentId = 'parent___parent___id', | |
| ParentParentParentId = 'parent___parent___parent___id', | |
| ParentParentParentChildren = 'parent___parent___parent___children', | |
| ParentParentChildren = 'parent___parent___children', | |
| ParentParentChildrenId = 'parent___parent___children___id', | |
| ParentParentChildrenChildren = 'parent___parent___children___children', | |
| ParentParentInternalContent = 'parent___parent___internal___content', | |
| ParentParentInternalContentDigest = 'parent___parent___internal___contentDigest', | |
| ParentParentInternalDescription = 'parent___parent___internal___description', | |
| ParentParentInternalFieldOwners = 'parent___parent___internal___fieldOwners', | |
| ParentParentInternalIgnoreType = 'parent___parent___internal___ignoreType', | |
| ParentParentInternalMediaType = 'parent___parent___internal___mediaType', | |
| ParentParentInternalOwner = 'parent___parent___internal___owner', | |
| ParentParentInternalType = 'parent___parent___internal___type', | |
| ParentChildren = 'parent___children', | |
| ParentChildrenId = 'parent___children___id', | |
| ParentChildrenParentId = 'parent___children___parent___id', | |
| ParentChildrenParentChildren = 'parent___children___parent___children', | |
| ParentChildrenChildren = 'parent___children___children', | |
| ParentChildrenChildrenId = 'parent___children___children___id', | |
| ParentChildrenChildrenChildren = 'parent___children___children___children', | |
| ParentChildrenInternalContent = 'parent___children___internal___content', | |
| ParentChildrenInternalContentDigest = 'parent___children___internal___contentDigest', | |
| ParentChildrenInternalDescription = 'parent___children___internal___description', | |
| ParentChildrenInternalFieldOwners = 'parent___children___internal___fieldOwners', | |
| ParentChildrenInternalIgnoreType = 'parent___children___internal___ignoreType', | |
| ParentChildrenInternalMediaType = 'parent___children___internal___mediaType', | |
| ParentChildrenInternalOwner = 'parent___children___internal___owner', | |
| ParentChildrenInternalType = 'parent___children___internal___type', | |
| ParentInternalContent = 'parent___internal___content', | |
| ParentInternalContentDigest = 'parent___internal___contentDigest', | |
| ParentInternalDescription = 'parent___internal___description', | |
| ParentInternalFieldOwners = 'parent___internal___fieldOwners', | |
| ParentInternalIgnoreType = 'parent___internal___ignoreType', | |
| ParentInternalMediaType = 'parent___internal___mediaType', | |
| ParentInternalOwner = 'parent___internal___owner', | |
| ParentInternalType = 'parent___internal___type', | |
| Children = 'children', | |
| ChildrenId = 'children___id', | |
| ChildrenParentId = 'children___parent___id', | |
| ChildrenParentParentId = 'children___parent___parent___id', | |
| ChildrenParentParentChildren = 'children___parent___parent___children', | |
| ChildrenParentChildren = 'children___parent___children', | |
| ChildrenParentChildrenId = 'children___parent___children___id', | |
| ChildrenParentChildrenChildren = 'children___parent___children___children', | |
| ChildrenParentInternalContent = 'children___parent___internal___content', | |
| ChildrenParentInternalContentDigest = 'children___parent___internal___contentDigest', | |
| ChildrenParentInternalDescription = 'children___parent___internal___description', | |
| ChildrenParentInternalFieldOwners = 'children___parent___internal___fieldOwners', | |
| ChildrenParentInternalIgnoreType = 'children___parent___internal___ignoreType', | |
| ChildrenParentInternalMediaType = 'children___parent___internal___mediaType', | |
| ChildrenParentInternalOwner = 'children___parent___internal___owner', | |
| ChildrenParentInternalType = 'children___parent___internal___type', | |
| ChildrenChildren = 'children___children', | |
| ChildrenChildrenId = 'children___children___id', | |
| ChildrenChildrenParentId = 'children___children___parent___id', | |
| ChildrenChildrenParentChildren = 'children___children___parent___children', | |
| ChildrenChildrenChildren = 'children___children___children', | |
| ChildrenChildrenChildrenId = 'children___children___children___id', | |
| ChildrenChildrenChildrenChildren = 'children___children___children___children', | |
| ChildrenChildrenInternalContent = 'children___children___internal___content', | |
| ChildrenChildrenInternalContentDigest = 'children___children___internal___contentDigest', | |
| ChildrenChildrenInternalDescription = 'children___children___internal___description', | |
| ChildrenChildrenInternalFieldOwners = 'children___children___internal___fieldOwners', | |
| ChildrenChildrenInternalIgnoreType = 'children___children___internal___ignoreType', | |
| ChildrenChildrenInternalMediaType = 'children___children___internal___mediaType', | |
| ChildrenChildrenInternalOwner = 'children___children___internal___owner', | |
| ChildrenChildrenInternalType = 'children___children___internal___type', | |
| ChildrenInternalContent = 'children___internal___content', | |
| ChildrenInternalContentDigest = 'children___internal___contentDigest', | |
| ChildrenInternalDescription = 'children___internal___description', | |
| ChildrenInternalFieldOwners = 'children___internal___fieldOwners', | |
| ChildrenInternalIgnoreType = 'children___internal___ignoreType', | |
| ChildrenInternalMediaType = 'children___internal___mediaType', | |
| ChildrenInternalOwner = 'children___internal___owner', | |
| ChildrenInternalType = 'children___internal___type', | |
| InternalContent = 'internal___content', | |
| InternalContentDigest = 'internal___contentDigest', | |
| InternalDescription = 'internal___description', | |
| InternalFieldOwners = 'internal___fieldOwners', | |
| InternalIgnoreType = 'internal___ignoreType', | |
| InternalMediaType = 'internal___mediaType', | |
| InternalOwner = 'internal___owner', | |
| InternalType = 'internal___type', | |
| Title = 'title', | |
| Slug = 'slug', | |
| PublishDate = 'publishDate', | |
| FeaturedImageId = 'featuredImage___id', | |
| FeaturedImageParentId = 'featuredImage___parent___id', | |
| FeaturedImageParentParentId = 'featuredImage___parent___parent___id', | |
| FeaturedImageParentParentChildren = 'featuredImage___parent___parent___children', | |
| FeaturedImageParentChildren = 'featuredImage___parent___children', | |
| FeaturedImageParentChildrenId = 'featuredImage___parent___children___id', | |
| FeaturedImageParentChildrenChildren = 'featuredImage___parent___children___children', | |
| FeaturedImageParentInternalContent = 'featuredImage___parent___internal___content', | |
| FeaturedImageParentInternalContentDigest = 'featuredImage___parent___internal___contentDigest', | |
| FeaturedImageParentInternalDescription = 'featuredImage___parent___internal___description', | |
| FeaturedImageParentInternalFieldOwners = 'featuredImage___parent___internal___fieldOwners', | |
| FeaturedImageParentInternalIgnoreType = 'featuredImage___parent___internal___ignoreType', | |
| FeaturedImageParentInternalMediaType = 'featuredImage___parent___internal___mediaType', | |
| FeaturedImageParentInternalOwner = 'featuredImage___parent___internal___owner', | |
| FeaturedImageParentInternalType = 'featuredImage___parent___internal___type', | |
| FeaturedImageChildren = 'featuredImage___children', | |
| FeaturedImageChildrenId = 'featuredImage___children___id', | |
| FeaturedImageChildrenParentId = 'featuredImage___children___parent___id', | |
| FeaturedImageChildrenParentChildren = 'featuredImage___children___parent___children', | |
| FeaturedImageChildrenChildren = 'featuredImage___children___children', | |
| FeaturedImageChildrenChildrenId = 'featuredImage___children___children___id', | |
| FeaturedImageChildrenChildrenChildren = 'featuredImage___children___children___children', | |
| FeaturedImageChildrenInternalContent = 'featuredImage___children___internal___content', | |
| FeaturedImageChildrenInternalContentDigest = 'featuredImage___children___internal___contentDigest', | |
| FeaturedImageChildrenInternalDescription = 'featuredImage___children___internal___description', | |
| FeaturedImageChildrenInternalFieldOwners = 'featuredImage___children___internal___fieldOwners', | |
| FeaturedImageChildrenInternalIgnoreType = 'featuredImage___children___internal___ignoreType', | |
| FeaturedImageChildrenInternalMediaType = 'featuredImage___children___internal___mediaType', | |
| FeaturedImageChildrenInternalOwner = 'featuredImage___children___internal___owner', | |
| FeaturedImageChildrenInternalType = 'featuredImage___children___internal___type', | |
| FeaturedImageInternalContent = 'featuredImage___internal___content', | |
| FeaturedImageInternalContentDigest = 'featuredImage___internal___contentDigest', | |
| FeaturedImageInternalDescription = 'featuredImage___internal___description', | |
| FeaturedImageInternalFieldOwners = 'featuredImage___internal___fieldOwners', | |
| FeaturedImageInternalIgnoreType = 'featuredImage___internal___ignoreType', | |
| FeaturedImageInternalMediaType = 'featuredImage___internal___mediaType', | |
| FeaturedImageInternalOwner = 'featuredImage___internal___owner', | |
| FeaturedImageInternalType = 'featuredImage___internal___type', | |
| FeaturedImageContentfulId = 'featuredImage___contentful_id', | |
| FeaturedImageFileUrl = 'featuredImage___file___url', | |
| FeaturedImageFileDetailsSize = 'featuredImage___file___details___size', | |
| FeaturedImageFileFileName = 'featuredImage___file___fileName', | |
| FeaturedImageFileContentType = 'featuredImage___file___contentType', | |
| FeaturedImageTitle = 'featuredImage___title', | |
| FeaturedImageDescription = 'featuredImage___description', | |
| FeaturedImageNodeLocale = 'featuredImage___node_locale', | |
| FeaturedImageFixedBase64 = 'featuredImage___fixed___base64', | |
| FeaturedImageFixedTracedSvg = 'featuredImage___fixed___tracedSVG', | |
| FeaturedImageFixedAspectRatio = 'featuredImage___fixed___aspectRatio', | |
| FeaturedImageFixedWidth = 'featuredImage___fixed___width', | |
| FeaturedImageFixedHeight = 'featuredImage___fixed___height', | |
| FeaturedImageFixedSrc = 'featuredImage___fixed___src', | |
| FeaturedImageFixedSrcSet = 'featuredImage___fixed___srcSet', | |
| FeaturedImageFixedSrcWebp = 'featuredImage___fixed___srcWebp', | |
| FeaturedImageFixedSrcSetWebp = 'featuredImage___fixed___srcSetWebp', | |
| FeaturedImageResolutionsBase64 = 'featuredImage___resolutions___base64', | |
| FeaturedImageResolutionsTracedSvg = 'featuredImage___resolutions___tracedSVG', | |
| FeaturedImageResolutionsAspectRatio = 'featuredImage___resolutions___aspectRatio', | |
| FeaturedImageResolutionsWidth = 'featuredImage___resolutions___width', | |
| FeaturedImageResolutionsHeight = 'featuredImage___resolutions___height', | |
| FeaturedImageResolutionsSrc = 'featuredImage___resolutions___src', | |
| FeaturedImageResolutionsSrcSet = 'featuredImage___resolutions___srcSet', | |
| FeaturedImageResolutionsSrcWebp = 'featuredImage___resolutions___srcWebp', | |
| FeaturedImageResolutionsSrcSetWebp = 'featuredImage___resolutions___srcSetWebp', | |
| FeaturedImageFluidBase64 = 'featuredImage___fluid___base64', | |
| FeaturedImageFluidTracedSvg = 'featuredImage___fluid___tracedSVG', | |
| FeaturedImageFluidAspectRatio = 'featuredImage___fluid___aspectRatio', | |
| FeaturedImageFluidSrc = 'featuredImage___fluid___src', | |
| FeaturedImageFluidSrcSet = 'featuredImage___fluid___srcSet', | |
| FeaturedImageFluidSrcWebp = 'featuredImage___fluid___srcWebp', | |
| FeaturedImageFluidSrcSetWebp = 'featuredImage___fluid___srcSetWebp', | |
| FeaturedImageFluidSizes = 'featuredImage___fluid___sizes', | |
| FeaturedImageSizesBase64 = 'featuredImage___sizes___base64', | |
| FeaturedImageSizesTracedSvg = 'featuredImage___sizes___tracedSVG', | |
| FeaturedImageSizesAspectRatio = 'featuredImage___sizes___aspectRatio', | |
| FeaturedImageSizesSrc = 'featuredImage___sizes___src', | |
| FeaturedImageSizesSrcSet = 'featuredImage___sizes___srcSet', | |
| FeaturedImageSizesSrcWebp = 'featuredImage___sizes___srcWebp', | |
| FeaturedImageSizesSrcSetWebp = 'featuredImage___sizes___srcSetWebp', | |
| FeaturedImageSizesSizes = 'featuredImage___sizes___sizes', | |
| FeaturedImageResizeBase64 = 'featuredImage___resize___base64', | |
| FeaturedImageResizeTracedSvg = 'featuredImage___resize___tracedSVG', | |
| FeaturedImageResizeSrc = 'featuredImage___resize___src', | |
| FeaturedImageResizeWidth = 'featuredImage___resize___width', | |
| FeaturedImageResizeHeight = 'featuredImage___resize___height', | |
| FeaturedImageResizeAspectRatio = 'featuredImage___resize___aspectRatio', | |
| Categories = 'categories', | |
| CategoriesId = 'categories___id', | |
| CategoriesParentId = 'categories___parent___id', | |
| CategoriesParentParentId = 'categories___parent___parent___id', | |
| CategoriesParentParentChildren = 'categories___parent___parent___children', | |
| CategoriesParentChildren = 'categories___parent___children', | |
| CategoriesParentChildrenId = 'categories___parent___children___id', | |
| CategoriesParentChildrenChildren = 'categories___parent___children___children', | |
| CategoriesParentInternalContent = 'categories___parent___internal___content', | |
| CategoriesParentInternalContentDigest = 'categories___parent___internal___contentDigest', | |
| CategoriesParentInternalDescription = 'categories___parent___internal___description', | |
| CategoriesParentInternalFieldOwners = 'categories___parent___internal___fieldOwners', | |
| CategoriesParentInternalIgnoreType = 'categories___parent___internal___ignoreType', | |
| CategoriesParentInternalMediaType = 'categories___parent___internal___mediaType', | |
| CategoriesParentInternalOwner = 'categories___parent___internal___owner', | |
| CategoriesParentInternalType = 'categories___parent___internal___type', | |
| CategoriesChildren = 'categories___children', | |
| CategoriesChildrenId = 'categories___children___id', | |
| CategoriesChildrenParentId = 'categories___children___parent___id', | |
| CategoriesChildrenParentChildren = 'categories___children___parent___children', | |
| CategoriesChildrenChildren = 'categories___children___children', | |
| CategoriesChildrenChildrenId = 'categories___children___children___id', | |
| CategoriesChildrenChildrenChildren = 'categories___children___children___children', | |
| CategoriesChildrenInternalContent = 'categories___children___internal___content', | |
| CategoriesChildrenInternalContentDigest = 'categories___children___internal___contentDigest', | |
| CategoriesChildrenInternalDescription = 'categories___children___internal___description', | |
| CategoriesChildrenInternalFieldOwners = 'categories___children___internal___fieldOwners', | |
| CategoriesChildrenInternalIgnoreType = 'categories___children___internal___ignoreType', | |
| CategoriesChildrenInternalMediaType = 'categories___children___internal___mediaType', | |
| CategoriesChildrenInternalOwner = 'categories___children___internal___owner', | |
| CategoriesChildrenInternalType = 'categories___children___internal___type', | |
| CategoriesInternalContent = 'categories___internal___content', | |
| CategoriesInternalContentDigest = 'categories___internal___contentDigest', | |
| CategoriesInternalDescription = 'categories___internal___description', | |
| CategoriesInternalFieldOwners = 'categories___internal___fieldOwners', | |
| CategoriesInternalIgnoreType = 'categories___internal___ignoreType', | |
| CategoriesInternalMediaType = 'categories___internal___mediaType', | |
| CategoriesInternalOwner = 'categories___internal___owner', | |
| CategoriesInternalType = 'categories___internal___type', | |
| CategoriesTitle = 'categories___title', | |
| CategoriesSlug = 'categories___slug', | |
| CategoriesFeaturedImageId = 'categories___featuredImage___id', | |
| CategoriesFeaturedImageParentId = 'categories___featuredImage___parent___id', | |
| CategoriesFeaturedImageParentChildren = 'categories___featuredImage___parent___children', | |
| CategoriesFeaturedImageChildren = 'categories___featuredImage___children', | |
| CategoriesFeaturedImageChildrenId = 'categories___featuredImage___children___id', | |
| CategoriesFeaturedImageChildrenChildren = 'categories___featuredImage___children___children', | |
| CategoriesFeaturedImageInternalContent = 'categories___featuredImage___internal___content', | |
| CategoriesFeaturedImageInternalContentDigest = 'categories___featuredImage___internal___contentDigest', | |
| CategoriesFeaturedImageInternalDescription = 'categories___featuredImage___internal___description', | |
| CategoriesFeaturedImageInternalFieldOwners = 'categories___featuredImage___internal___fieldOwners', | |
| CategoriesFeaturedImageInternalIgnoreType = 'categories___featuredImage___internal___ignoreType', | |
| CategoriesFeaturedImageInternalMediaType = 'categories___featuredImage___internal___mediaType', | |
| CategoriesFeaturedImageInternalOwner = 'categories___featuredImage___internal___owner', | |
| CategoriesFeaturedImageInternalType = 'categories___featuredImage___internal___type', | |
| CategoriesFeaturedImageContentfulId = 'categories___featuredImage___contentful_id', | |
| CategoriesFeaturedImageFileUrl = 'categories___featuredImage___file___url', | |
| CategoriesFeaturedImageFileFileName = 'categories___featuredImage___file___fileName', | |
| CategoriesFeaturedImageFileContentType = 'categories___featuredImage___file___contentType', | |
| CategoriesFeaturedImageTitle = 'categories___featuredImage___title', | |
| CategoriesFeaturedImageDescription = 'categories___featuredImage___description', | |
| CategoriesFeaturedImageNodeLocale = 'categories___featuredImage___node_locale', | |
| CategoriesFeaturedImageFixedBase64 = 'categories___featuredImage___fixed___base64', | |
| CategoriesFeaturedImageFixedTracedSvg = 'categories___featuredImage___fixed___tracedSVG', | |
| CategoriesFeaturedImageFixedAspectRatio = 'categories___featuredImage___fixed___aspectRatio', | |
| CategoriesFeaturedImageFixedWidth = 'categories___featuredImage___fixed___width', | |
| CategoriesFeaturedImageFixedHeight = 'categories___featuredImage___fixed___height', | |
| CategoriesFeaturedImageFixedSrc = 'categories___featuredImage___fixed___src', | |
| CategoriesFeaturedImageFixedSrcSet = 'categories___featuredImage___fixed___srcSet', | |
| CategoriesFeaturedImageFixedSrcWebp = 'categories___featuredImage___fixed___srcWebp', | |
| CategoriesFeaturedImageFixedSrcSetWebp = 'categories___featuredImage___fixed___srcSetWebp', | |
| CategoriesFeaturedImageResolutionsBase64 = 'categories___featuredImage___resolutions___base64', | |
| CategoriesFeaturedImageResolutionsTracedSvg = 'categories___featuredImage___resolutions___tracedSVG', | |
| CategoriesFeaturedImageResolutionsAspectRatio = 'categories___featuredImage___resolutions___aspectRatio', | |
| CategoriesFeaturedImageResolutionsWidth = 'categories___featuredImage___resolutions___width', | |
| CategoriesFeaturedImageResolutionsHeight = 'categories___featuredImage___resolutions___height', | |
| CategoriesFeaturedImageResolutionsSrc = 'categories___featuredImage___resolutions___src', | |
| CategoriesFeaturedImageResolutionsSrcSet = 'categories___featuredImage___resolutions___srcSet', | |
| CategoriesFeaturedImageResolutionsSrcWebp = 'categories___featuredImage___resolutions___srcWebp', | |
| CategoriesFeaturedImageResolutionsSrcSetWebp = 'categories___featuredImage___resolutions___srcSetWebp', | |
| CategoriesFeaturedImageFluidBase64 = 'categories___featuredImage___fluid___base64', | |
| CategoriesFeaturedImageFluidTracedSvg = 'categories___featuredImage___fluid___tracedSVG', | |
| CategoriesFeaturedImageFluidAspectRatio = 'categories___featuredImage___fluid___aspectRatio', | |
| CategoriesFeaturedImageFluidSrc = 'categories___featuredImage___fluid___src', | |
| CategoriesFeaturedImageFluidSrcSet = 'categories___featuredImage___fluid___srcSet', | |
| CategoriesFeaturedImageFluidSrcWebp = 'categories___featuredImage___fluid___srcWebp', | |
| CategoriesFeaturedImageFluidSrcSetWebp = 'categories___featuredImage___fluid___srcSetWebp', | |
| CategoriesFeaturedImageFluidSizes = 'categories___featuredImage___fluid___sizes', | |
| CategoriesFeaturedImageSizesBase64 = 'categories___featuredImage___sizes___base64', | |
| CategoriesFeaturedImageSizesTracedSvg = 'categories___featuredImage___sizes___tracedSVG', | |
| CategoriesFeaturedImageSizesAspectRatio = 'categories___featuredImage___sizes___aspectRatio', | |
| CategoriesFeaturedImageSizesSrc = 'categories___featuredImage___sizes___src', | |
| CategoriesFeaturedImageSizesSrcSet = 'categories___featuredImage___sizes___srcSet', | |
| CategoriesFeaturedImageSizesSrcWebp = 'categories___featuredImage___sizes___srcWebp', | |
| CategoriesFeaturedImageSizesSrcSetWebp = 'categories___featuredImage___sizes___srcSetWebp', | |
| CategoriesFeaturedImageSizesSizes = 'categories___featuredImage___sizes___sizes', | |
| CategoriesFeaturedImageResizeBase64 = 'categories___featuredImage___resize___base64', | |
| CategoriesFeaturedImageResizeTracedSvg = 'categories___featuredImage___resize___tracedSVG', | |
| CategoriesFeaturedImageResizeSrc = 'categories___featuredImage___resize___src', | |
| CategoriesFeaturedImageResizeWidth = 'categories___featuredImage___resize___width', | |
| CategoriesFeaturedImageResizeHeight = 'categories___featuredImage___resize___height', | |
| CategoriesFeaturedImageResizeAspectRatio = 'categories___featuredImage___resize___aspectRatio', | |
| CategoriesBlogpost = 'categories___blogpost', | |
| CategoriesBlogpostId = 'categories___blogpost___id', | |
| CategoriesBlogpostParentId = 'categories___blogpost___parent___id', | |
| CategoriesBlogpostParentChildren = 'categories___blogpost___parent___children', | |
| CategoriesBlogpostChildren = 'categories___blogpost___children', | |
| CategoriesBlogpostChildrenId = 'categories___blogpost___children___id', | |
| CategoriesBlogpostChildrenChildren = 'categories___blogpost___children___children', | |
| CategoriesBlogpostInternalContent = 'categories___blogpost___internal___content', | |
| CategoriesBlogpostInternalContentDigest = 'categories___blogpost___internal___contentDigest', | |
| CategoriesBlogpostInternalDescription = 'categories___blogpost___internal___description', | |
| CategoriesBlogpostInternalFieldOwners = 'categories___blogpost___internal___fieldOwners', | |
| CategoriesBlogpostInternalIgnoreType = 'categories___blogpost___internal___ignoreType', | |
| CategoriesBlogpostInternalMediaType = 'categories___blogpost___internal___mediaType', | |
| CategoriesBlogpostInternalOwner = 'categories___blogpost___internal___owner', | |
| CategoriesBlogpostInternalType = 'categories___blogpost___internal___type', | |
| CategoriesBlogpostTitle = 'categories___blogpost___title', | |
| CategoriesBlogpostSlug = 'categories___blogpost___slug', | |
| CategoriesBlogpostPublishDate = 'categories___blogpost___publishDate', | |
| CategoriesBlogpostFeaturedImageId = 'categories___blogpost___featuredImage___id', | |
| CategoriesBlogpostFeaturedImageChildren = 'categories___blogpost___featuredImage___children', | |
| CategoriesBlogpostFeaturedImageContentfulId = 'categories___blogpost___featuredImage___contentful_id', | |
| CategoriesBlogpostFeaturedImageTitle = 'categories___blogpost___featuredImage___title', | |
| CategoriesBlogpostFeaturedImageDescription = 'categories___blogpost___featuredImage___description', | |
| CategoriesBlogpostFeaturedImageNodeLocale = 'categories___blogpost___featuredImage___node_locale', | |
| CategoriesBlogpostCategories = 'categories___blogpost___categories', | |
| CategoriesBlogpostCategoriesId = 'categories___blogpost___categories___id', | |
| CategoriesBlogpostCategoriesChildren = 'categories___blogpost___categories___children', | |
| CategoriesBlogpostCategoriesTitle = 'categories___blogpost___categories___title', | |
| CategoriesBlogpostCategoriesSlug = 'categories___blogpost___categories___slug', | |
| CategoriesBlogpostCategoriesBlogpost = 'categories___blogpost___categories___blogpost', | |
| CategoriesBlogpostCategoriesSpaceId = 'categories___blogpost___categories___spaceId', | |
| CategoriesBlogpostCategoriesContentfulId = 'categories___blogpost___categories___contentful_id', | |
| CategoriesBlogpostCategoriesCreatedAt = 'categories___blogpost___categories___createdAt', | |
| CategoriesBlogpostCategoriesUpdatedAt = 'categories___blogpost___categories___updatedAt', | |
| CategoriesBlogpostCategoriesNodeLocale = 'categories___blogpost___categories___node_locale', | |
| CategoriesBlogpostCategoriesMenu = 'categories___blogpost___categories___menu', | |
| CategoriesBlogpostCategoriesProduct = 'categories___blogpost___categories___product', | |
| CategoriesBlogpostPage = 'categories___blogpost___page', | |
| CategoriesBlogpostPageId = 'categories___blogpost___page___id', | |
| CategoriesBlogpostPageChildren = 'categories___blogpost___page___children', | |
| CategoriesBlogpostPageTitle = 'categories___blogpost___page___title', | |
| CategoriesBlogpostPageSlug = 'categories___blogpost___page___slug', | |
| CategoriesBlogpostPageIsHomePage = 'categories___blogpost___page___isHomePage', | |
| CategoriesBlogpostPageFeaturedPosts = 'categories___blogpost___page___featuredPosts', | |
| CategoriesBlogpostPageSpaceId = 'categories___blogpost___page___spaceId', | |
| CategoriesBlogpostPageContentfulId = 'categories___blogpost___page___contentful_id', | |
| CategoriesBlogpostPageCreatedAt = 'categories___blogpost___page___createdAt', | |
| CategoriesBlogpostPageUpdatedAt = 'categories___blogpost___page___updatedAt', | |
| CategoriesBlogpostPageNodeLocale = 'categories___blogpost___page___node_locale', | |
| CategoriesBlogpostBodyId = 'categories___blogpost___body___id', | |
| CategoriesBlogpostBodyChildren = 'categories___blogpost___body___children', | |
| CategoriesBlogpostBodyContent = 'categories___blogpost___body___content', | |
| CategoriesBlogpostBodyNodeType = 'categories___blogpost___body___nodeType', | |
| CategoriesBlogpostBodyBody = 'categories___blogpost___body___body', | |
| CategoriesBlogpostBodyJson = 'categories___blogpost___body___json', | |
| CategoriesBlogpostSpaceId = 'categories___blogpost___spaceId', | |
| CategoriesBlogpostContentfulId = 'categories___blogpost___contentful_id', | |
| CategoriesBlogpostCreatedAt = 'categories___blogpost___createdAt', | |
| CategoriesBlogpostUpdatedAt = 'categories___blogpost___updatedAt', | |
| CategoriesBlogpostNodeLocale = 'categories___blogpost___node_locale', | |
| CategoriesBlogpostAuthorId = 'categories___blogpost___author___id', | |
| CategoriesBlogpostAuthorChildren = 'categories___blogpost___author___children', | |
| CategoriesBlogpostAuthorName = 'categories___blogpost___author___name', | |
| CategoriesBlogpostAuthorTitle = 'categories___blogpost___author___title', | |
| CategoriesBlogpostAuthorCompany = 'categories___blogpost___author___company', | |
| CategoriesBlogpostAuthorEmail = 'categories___blogpost___author___email', | |
| CategoriesBlogpostAuthorPhone = 'categories___blogpost___author___phone', | |
| CategoriesBlogpostAuthorFacebook = 'categories___blogpost___author___facebook', | |
| CategoriesBlogpostAuthorTwitter = 'categories___blogpost___author___twitter', | |
| CategoriesBlogpostAuthorGithub = 'categories___blogpost___author___github', | |
| CategoriesBlogpostAuthorBlogpost = 'categories___blogpost___author___blogpost', | |
| CategoriesBlogpostAuthorSpaceId = 'categories___blogpost___author___spaceId', | |
| CategoriesBlogpostAuthorContentfulId = 'categories___blogpost___author___contentful_id', | |
| CategoriesBlogpostAuthorCreatedAt = 'categories___blogpost___author___createdAt', | |
| CategoriesBlogpostAuthorUpdatedAt = 'categories___blogpost___author___updatedAt', | |
| CategoriesBlogpostAuthorNodeLocale = 'categories___blogpost___author___node_locale', | |
| CategoriesBlogpostChildContentfulBlogPostBodyRichTextNodeId = 'categories___blogpost___childContentfulBlogPostBodyRichTextNode___id', | |
| CategoriesBlogpostChildContentfulBlogPostBodyRichTextNodeChildren = 'categories___blogpost___childContentfulBlogPostBodyRichTextNode___children', | |
| CategoriesBlogpostChildContentfulBlogPostBodyRichTextNodeContent = 'categories___blogpost___childContentfulBlogPostBodyRichTextNode___content', | |
| CategoriesBlogpostChildContentfulBlogPostBodyRichTextNodeNodeType = 'categories___blogpost___childContentfulBlogPostBodyRichTextNode___nodeType', | |
| CategoriesBlogpostChildContentfulBlogPostBodyRichTextNodeBody = 'categories___blogpost___childContentfulBlogPostBodyRichTextNode___body', | |
| CategoriesBlogpostChildContentfulBlogPostBodyRichTextNodeJson = 'categories___blogpost___childContentfulBlogPostBodyRichTextNode___json', | |
| CategoriesSpaceId = 'categories___spaceId', | |
| CategoriesContentfulId = 'categories___contentful_id', | |
| CategoriesCreatedAt = 'categories___createdAt', | |
| CategoriesUpdatedAt = 'categories___updatedAt', | |
| CategoriesNodeLocale = 'categories___node_locale', | |
| CategoriesMenu = 'categories___menu', | |
| CategoriesMenuId = 'categories___menu___id', | |
| CategoriesMenuParentId = 'categories___menu___parent___id', | |
| CategoriesMenuParentChildren = 'categories___menu___parent___children', | |
| CategoriesMenuChildren = 'categories___menu___children', | |
| CategoriesMenuChildrenId = 'categories___menu___children___id', | |
| CategoriesMenuChildrenChildren = 'categories___menu___children___children', | |
| CategoriesMenuInternalContent = 'categories___menu___internal___content', | |
| CategoriesMenuInternalContentDigest = 'categories___menu___internal___contentDigest', | |
| CategoriesMenuInternalDescription = 'categories___menu___internal___description', | |
| CategoriesMenuInternalFieldOwners = 'categories___menu___internal___fieldOwners', | |
| CategoriesMenuInternalIgnoreType = 'categories___menu___internal___ignoreType', | |
| CategoriesMenuInternalMediaType = 'categories___menu___internal___mediaType', | |
| CategoriesMenuInternalOwner = 'categories___menu___internal___owner', | |
| CategoriesMenuInternalType = 'categories___menu___internal___type', | |
| CategoriesMenuName = 'categories___menu___name', | |
| CategoriesMenuMenuItems = 'categories___menu___menuItems', | |
| CategoriesMenuMenuItemsId = 'categories___menu___menuItems___id', | |
| CategoriesMenuMenuItemsChildren = 'categories___menu___menuItems___children', | |
| CategoriesMenuMenuItemsTitle = 'categories___menu___menuItems___title', | |
| CategoriesMenuMenuItemsSlug = 'categories___menu___menuItems___slug', | |
| CategoriesMenuMenuItemsBlogpost = 'categories___menu___menuItems___blogpost', | |
| CategoriesMenuMenuItemsSpaceId = 'categories___menu___menuItems___spaceId', | |
| CategoriesMenuMenuItemsContentfulId = 'categories___menu___menuItems___contentful_id', | |
| CategoriesMenuMenuItemsCreatedAt = 'categories___menu___menuItems___createdAt', | |
| CategoriesMenuMenuItemsUpdatedAt = 'categories___menu___menuItems___updatedAt', | |
| CategoriesMenuMenuItemsNodeLocale = 'categories___menu___menuItems___node_locale', | |
| CategoriesMenuMenuItemsMenu = 'categories___menu___menuItems___menu', | |
| CategoriesMenuMenuItemsProduct = 'categories___menu___menuItems___product', | |
| CategoriesMenuSpaceId = 'categories___menu___spaceId', | |
| CategoriesMenuContentfulId = 'categories___menu___contentful_id', | |
| CategoriesMenuCreatedAt = 'categories___menu___createdAt', | |
| CategoriesMenuUpdatedAt = 'categories___menu___updatedAt', | |
| CategoriesMenuNodeLocale = 'categories___menu___node_locale', | |
| CategoriesProduct = 'categories___product', | |
| CategoriesProductId = 'categories___product___id', | |
| CategoriesProductParentId = 'categories___product___parent___id', | |
| CategoriesProductParentChildren = 'categories___product___parent___children', | |
| CategoriesProductChildren = 'categories___product___children', | |
| CategoriesProductChildrenId = 'categories___product___children___id', | |
| CategoriesProductChildrenChildren = 'categories___product___children___children', | |
| CategoriesProductInternalContent = 'categories___product___internal___content', | |
| CategoriesProductInternalContentDigest = 'categories___product___internal___contentDigest', | |
| CategoriesProductInternalDescription = 'categories___product___internal___description', | |
| CategoriesProductInternalFieldOwners = 'categories___product___internal___fieldOwners', | |
| CategoriesProductInternalIgnoreType = 'categories___product___internal___ignoreType', | |
| CategoriesProductInternalMediaType = 'categories___product___internal___mediaType', | |
| CategoriesProductInternalOwner = 'categories___product___internal___owner', | |
| CategoriesProductInternalType = 'categories___product___internal___type', | |
| CategoriesProductTitle = 'categories___product___title', | |
| CategoriesProductSlug = 'categories___product___slug', | |
| CategoriesProductPrice = 'categories___product___price', | |
| CategoriesProductFeaturedImageId = 'categories___product___featuredImage___id', | |
| CategoriesProductFeaturedImageChildren = 'categories___product___featuredImage___children', | |
| CategoriesProductFeaturedImageContentfulId = 'categories___product___featuredImage___contentful_id', | |
| CategoriesProductFeaturedImageTitle = 'categories___product___featuredImage___title', | |
| CategoriesProductFeaturedImageDescription = 'categories___product___featuredImage___description', | |
| CategoriesProductFeaturedImageNodeLocale = 'categories___product___featuredImage___node_locale', | |
| CategoriesProductCategories = 'categories___product___categories', | |
| CategoriesProductCategoriesId = 'categories___product___categories___id', | |
| CategoriesProductCategoriesChildren = 'categories___product___categories___children', | |
| CategoriesProductCategoriesTitle = 'categories___product___categories___title', | |
| CategoriesProductCategoriesSlug = 'categories___product___categories___slug', | |
| CategoriesProductCategoriesBlogpost = 'categories___product___categories___blogpost', | |
| CategoriesProductCategoriesSpaceId = 'categories___product___categories___spaceId', | |
| CategoriesProductCategoriesContentfulId = 'categories___product___categories___contentful_id', | |
| CategoriesProductCategoriesCreatedAt = 'categories___product___categories___createdAt', | |
| CategoriesProductCategoriesUpdatedAt = 'categories___product___categories___updatedAt', | |
| CategoriesProductCategoriesNodeLocale = 'categories___product___categories___node_locale', | |
| CategoriesProductCategoriesMenu = 'categories___product___categories___menu', | |
| CategoriesProductCategoriesProduct = 'categories___product___categories___product', | |
| CategoriesProductBodyId = 'categories___product___body___id', | |
| CategoriesProductBodyChildren = 'categories___product___body___children', | |
| CategoriesProductBodyContent = 'categories___product___body___content', | |
| CategoriesProductBodyNodeType = 'categories___product___body___nodeType', | |
| CategoriesProductBodyBody = 'categories___product___body___body', | |
| CategoriesProductBodyJson = 'categories___product___body___json', | |
| CategoriesProductSpaceId = 'categories___product___spaceId', | |
| CategoriesProductContentfulId = 'categories___product___contentful_id', | |
| CategoriesProductCreatedAt = 'categories___product___createdAt', | |
| CategoriesProductUpdatedAt = 'categories___product___updatedAt', | |
| CategoriesProductNodeLocale = 'categories___product___node_locale', | |
| CategoriesProductChildContentfulProductBodyRichTextNodeId = 'categories___product___childContentfulProductBodyRichTextNode___id', | |
| CategoriesProductChildContentfulProductBodyRichTextNodeChildren = 'categories___product___childContentfulProductBodyRichTextNode___children', | |
| CategoriesProductChildContentfulProductBodyRichTextNodeContent = 'categories___product___childContentfulProductBodyRichTextNode___content', | |
| CategoriesProductChildContentfulProductBodyRichTextNodeNodeType = 'categories___product___childContentfulProductBodyRichTextNode___nodeType', | |
| CategoriesProductChildContentfulProductBodyRichTextNodeBody = 'categories___product___childContentfulProductBodyRichTextNode___body', | |
| CategoriesProductChildContentfulProductBodyRichTextNodeJson = 'categories___product___childContentfulProductBodyRichTextNode___json', | |
| CategoriesBodyId = 'categories___body___id', | |
| CategoriesBodyParentId = 'categories___body___parent___id', | |
| CategoriesBodyParentChildren = 'categories___body___parent___children', | |
| CategoriesBodyChildren = 'categories___body___children', | |
| CategoriesBodyChildrenId = 'categories___body___children___id', | |
| CategoriesBodyChildrenChildren = 'categories___body___children___children', | |
| CategoriesBodyInternalContent = 'categories___body___internal___content', | |
| CategoriesBodyInternalContentDigest = 'categories___body___internal___contentDigest', | |
| CategoriesBodyInternalDescription = 'categories___body___internal___description', | |
| CategoriesBodyInternalFieldOwners = 'categories___body___internal___fieldOwners', | |
| CategoriesBodyInternalIgnoreType = 'categories___body___internal___ignoreType', | |
| CategoriesBodyInternalMediaType = 'categories___body___internal___mediaType', | |
| CategoriesBodyInternalOwner = 'categories___body___internal___owner', | |
| CategoriesBodyInternalType = 'categories___body___internal___type', | |
| CategoriesBodyContent = 'categories___body___content', | |
| CategoriesBodyContentContent = 'categories___body___content___content', | |
| CategoriesBodyContentNodeType = 'categories___body___content___nodeType', | |
| CategoriesBodyNodeType = 'categories___body___nodeType', | |
| CategoriesBodyBody = 'categories___body___body', | |
| CategoriesBodyJson = 'categories___body___json', | |
| CategoriesBodyChildContentfulRichTextId = 'categories___body___childContentfulRichText___id', | |
| CategoriesBodyChildContentfulRichTextChildren = 'categories___body___childContentfulRichText___children', | |
| CategoriesBodyChildContentfulRichTextHtml = 'categories___body___childContentfulRichText___html', | |
| CategoriesBodyChildContentfulRichTextTimeToRead = 'categories___body___childContentfulRichText___timeToRead', | |
| CategoriesChildContentfulCategoryBodyRichTextNodeId = 'categories___childContentfulCategoryBodyRichTextNode___id', | |
| CategoriesChildContentfulCategoryBodyRichTextNodeParentId = 'categories___childContentfulCategoryBodyRichTextNode___parent___id', | |
| CategoriesChildContentfulCategoryBodyRichTextNodeParentChildren = 'categories___childContentfulCategoryBodyRichTextNode___parent___children', | |
| CategoriesChildContentfulCategoryBodyRichTextNodeChildren = 'categories___childContentfulCategoryBodyRichTextNode___children', | |
| CategoriesChildContentfulCategoryBodyRichTextNodeChildrenId = 'categories___childContentfulCategoryBodyRichTextNode___children___id', | |
| CategoriesChildContentfulCategoryBodyRichTextNodeChildrenChildren = 'categories___childContentfulCategoryBodyRichTextNode___children___children', | |
| CategoriesChildContentfulCategoryBodyRichTextNodeInternalContent = 'categories___childContentfulCategoryBodyRichTextNode___internal___content', | |
| CategoriesChildContentfulCategoryBodyRichTextNodeInternalContentDigest = 'categories___childContentfulCategoryBodyRichTextNode___internal___contentDigest', | |
| CategoriesChildContentfulCategoryBodyRichTextNodeInternalDescription = 'categories___childContentfulCategoryBodyRichTextNode___internal___description', | |
| CategoriesChildContentfulCategoryBodyRichTextNodeInternalFieldOwners = 'categories___childContentfulCategoryBodyRichTextNode___internal___fieldOwners', | |
| CategoriesChildContentfulCategoryBodyRichTextNodeInternalIgnoreType = 'categories___childContentfulCategoryBodyRichTextNode___internal___ignoreType', | |
| CategoriesChildContentfulCategoryBodyRichTextNodeInternalMediaType = 'categories___childContentfulCategoryBodyRichTextNode___internal___mediaType', | |
| CategoriesChildContentfulCategoryBodyRichTextNodeInternalOwner = 'categories___childContentfulCategoryBodyRichTextNode___internal___owner', | |
| CategoriesChildContentfulCategoryBodyRichTextNodeInternalType = 'categories___childContentfulCategoryBodyRichTextNode___internal___type', | |
| CategoriesChildContentfulCategoryBodyRichTextNodeContent = 'categories___childContentfulCategoryBodyRichTextNode___content', | |
| CategoriesChildContentfulCategoryBodyRichTextNodeContentContent = 'categories___childContentfulCategoryBodyRichTextNode___content___content', | |
| CategoriesChildContentfulCategoryBodyRichTextNodeContentNodeType = 'categories___childContentfulCategoryBodyRichTextNode___content___nodeType', | |
| CategoriesChildContentfulCategoryBodyRichTextNodeNodeType = 'categories___childContentfulCategoryBodyRichTextNode___nodeType', | |
| CategoriesChildContentfulCategoryBodyRichTextNodeBody = 'categories___childContentfulCategoryBodyRichTextNode___body', | |
| CategoriesChildContentfulCategoryBodyRichTextNodeJson = 'categories___childContentfulCategoryBodyRichTextNode___json', | |
| CategoriesChildContentfulCategoryBodyRichTextNodeChildContentfulRichTextId = 'categories___childContentfulCategoryBodyRichTextNode___childContentfulRichText___id', | |
| CategoriesChildContentfulCategoryBodyRichTextNodeChildContentfulRichTextChildren = 'categories___childContentfulCategoryBodyRichTextNode___childContentfulRichText___children', | |
| CategoriesChildContentfulCategoryBodyRichTextNodeChildContentfulRichTextHtml = 'categories___childContentfulCategoryBodyRichTextNode___childContentfulRichText___html', | |
| CategoriesChildContentfulCategoryBodyRichTextNodeChildContentfulRichTextTimeToRead = 'categories___childContentfulCategoryBodyRichTextNode___childContentfulRichText___timeToRead', | |
| Page = 'page', | |
| PageId = 'page___id', | |
| PageParentId = 'page___parent___id', | |
| PageParentParentId = 'page___parent___parent___id', | |
| PageParentParentChildren = 'page___parent___parent___children', | |
| PageParentChildren = 'page___parent___children', | |
| PageParentChildrenId = 'page___parent___children___id', | |
| PageParentChildrenChildren = 'page___parent___children___children', | |
| PageParentInternalContent = 'page___parent___internal___content', | |
| PageParentInternalContentDigest = 'page___parent___internal___contentDigest', | |
| PageParentInternalDescription = 'page___parent___internal___description', | |
| PageParentInternalFieldOwners = 'page___parent___internal___fieldOwners', | |
| PageParentInternalIgnoreType = 'page___parent___internal___ignoreType', | |
| PageParentInternalMediaType = 'page___parent___internal___mediaType', | |
| PageParentInternalOwner = 'page___parent___internal___owner', | |
| PageParentInternalType = 'page___parent___internal___type', | |
| PageChildren = 'page___children', | |
| PageChildrenId = 'page___children___id', | |
| PageChildrenParentId = 'page___children___parent___id', | |
| PageChildrenParentChildren = 'page___children___parent___children', | |
| PageChildrenChildren = 'page___children___children', | |
| PageChildrenChildrenId = 'page___children___children___id', | |
| PageChildrenChildrenChildren = 'page___children___children___children', | |
| PageChildrenInternalContent = 'page___children___internal___content', | |
| PageChildrenInternalContentDigest = 'page___children___internal___contentDigest', | |
| PageChildrenInternalDescription = 'page___children___internal___description', | |
| PageChildrenInternalFieldOwners = 'page___children___internal___fieldOwners', | |
| PageChildrenInternalIgnoreType = 'page___children___internal___ignoreType', | |
| PageChildrenInternalMediaType = 'page___children___internal___mediaType', | |
| PageChildrenInternalOwner = 'page___children___internal___owner', | |
| PageChildrenInternalType = 'page___children___internal___type', | |
| PageInternalContent = 'page___internal___content', | |
| PageInternalContentDigest = 'page___internal___contentDigest', | |
| PageInternalDescription = 'page___internal___description', | |
| PageInternalFieldOwners = 'page___internal___fieldOwners', | |
| PageInternalIgnoreType = 'page___internal___ignoreType', | |
| PageInternalMediaType = 'page___internal___mediaType', | |
| PageInternalOwner = 'page___internal___owner', | |
| PageInternalType = 'page___internal___type', | |
| PageTitle = 'page___title', | |
| PageSlug = 'page___slug', | |
| PageIsHomePage = 'page___isHomePage', | |
| PageFeaturedPosts = 'page___featuredPosts', | |
| PageFeaturedPostsId = 'page___featuredPosts___id', | |
| PageFeaturedPostsParentId = 'page___featuredPosts___parent___id', | |
| PageFeaturedPostsParentChildren = 'page___featuredPosts___parent___children', | |
| PageFeaturedPostsChildren = 'page___featuredPosts___children', | |
| PageFeaturedPostsChildrenId = 'page___featuredPosts___children___id', | |
| PageFeaturedPostsChildrenChildren = 'page___featuredPosts___children___children', | |
| PageFeaturedPostsInternalContent = 'page___featuredPosts___internal___content', | |
| PageFeaturedPostsInternalContentDigest = 'page___featuredPosts___internal___contentDigest', | |
| PageFeaturedPostsInternalDescription = 'page___featuredPosts___internal___description', | |
| PageFeaturedPostsInternalFieldOwners = 'page___featuredPosts___internal___fieldOwners', | |
| PageFeaturedPostsInternalIgnoreType = 'page___featuredPosts___internal___ignoreType', | |
| PageFeaturedPostsInternalMediaType = 'page___featuredPosts___internal___mediaType', | |
| PageFeaturedPostsInternalOwner = 'page___featuredPosts___internal___owner', | |
| PageFeaturedPostsInternalType = 'page___featuredPosts___internal___type', | |
| PageFeaturedPostsTitle = 'page___featuredPosts___title', | |
| PageFeaturedPostsSlug = 'page___featuredPosts___slug', | |
| PageFeaturedPostsPublishDate = 'page___featuredPosts___publishDate', | |
| PageFeaturedPostsFeaturedImageId = 'page___featuredPosts___featuredImage___id', | |
| PageFeaturedPostsFeaturedImageChildren = 'page___featuredPosts___featuredImage___children', | |
| PageFeaturedPostsFeaturedImageContentfulId = 'page___featuredPosts___featuredImage___contentful_id', | |
| PageFeaturedPostsFeaturedImageTitle = 'page___featuredPosts___featuredImage___title', | |
| PageFeaturedPostsFeaturedImageDescription = 'page___featuredPosts___featuredImage___description', | |
| PageFeaturedPostsFeaturedImageNodeLocale = 'page___featuredPosts___featuredImage___node_locale', | |
| PageFeaturedPostsCategories = 'page___featuredPosts___categories', | |
| PageFeaturedPostsCategoriesId = 'page___featuredPosts___categories___id', | |
| PageFeaturedPostsCategoriesChildren = 'page___featuredPosts___categories___children', | |
| PageFeaturedPostsCategoriesTitle = 'page___featuredPosts___categories___title', | |
| PageFeaturedPostsCategoriesSlug = 'page___featuredPosts___categories___slug', | |
| PageFeaturedPostsCategoriesBlogpost = 'page___featuredPosts___categories___blogpost', | |
| PageFeaturedPostsCategoriesSpaceId = 'page___featuredPosts___categories___spaceId', | |
| PageFeaturedPostsCategoriesContentfulId = 'page___featuredPosts___categories___contentful_id', | |
| PageFeaturedPostsCategoriesCreatedAt = 'page___featuredPosts___categories___createdAt', | |
| PageFeaturedPostsCategoriesUpdatedAt = 'page___featuredPosts___categories___updatedAt', | |
| PageFeaturedPostsCategoriesNodeLocale = 'page___featuredPosts___categories___node_locale', | |
| PageFeaturedPostsCategoriesMenu = 'page___featuredPosts___categories___menu', | |
| PageFeaturedPostsCategoriesProduct = 'page___featuredPosts___categories___product', | |
| PageFeaturedPostsPage = 'page___featuredPosts___page', | |
| PageFeaturedPostsPageId = 'page___featuredPosts___page___id', | |
| PageFeaturedPostsPageChildren = 'page___featuredPosts___page___children', | |
| PageFeaturedPostsPageTitle = 'page___featuredPosts___page___title', | |
| PageFeaturedPostsPageSlug = 'page___featuredPosts___page___slug', | |
| PageFeaturedPostsPageIsHomePage = 'page___featuredPosts___page___isHomePage', | |
| PageFeaturedPostsPageFeaturedPosts = 'page___featuredPosts___page___featuredPosts', | |
| PageFeaturedPostsPageSpaceId = 'page___featuredPosts___page___spaceId', | |
| PageFeaturedPostsPageContentfulId = 'page___featuredPosts___page___contentful_id', | |
| PageFeaturedPostsPageCreatedAt = 'page___featuredPosts___page___createdAt', | |
| PageFeaturedPostsPageUpdatedAt = 'page___featuredPosts___page___updatedAt', | |
| PageFeaturedPostsPageNodeLocale = 'page___featuredPosts___page___node_locale', | |
| PageFeaturedPostsBodyId = 'page___featuredPosts___body___id', | |
| PageFeaturedPostsBodyChildren = 'page___featuredPosts___body___children', | |
| PageFeaturedPostsBodyContent = 'page___featuredPosts___body___content', | |
| PageFeaturedPostsBodyNodeType = 'page___featuredPosts___body___nodeType', | |
| PageFeaturedPostsBodyBody = 'page___featuredPosts___body___body', | |
| PageFeaturedPostsBodyJson = 'page___featuredPosts___body___json', | |
| PageFeaturedPostsSpaceId = 'page___featuredPosts___spaceId', | |
| PageFeaturedPostsContentfulId = 'page___featuredPosts___contentful_id', | |
| PageFeaturedPostsCreatedAt = 'page___featuredPosts___createdAt', | |
| PageFeaturedPostsUpdatedAt = 'page___featuredPosts___updatedAt', | |
| PageFeaturedPostsNodeLocale = 'page___featuredPosts___node_locale', | |
| PageFeaturedPostsAuthorId = 'page___featuredPosts___author___id', | |
| PageFeaturedPostsAuthorChildren = 'page___featuredPosts___author___children', | |
| PageFeaturedPostsAuthorName = 'page___featuredPosts___author___name', | |
| PageFeaturedPostsAuthorTitle = 'page___featuredPosts___author___title', | |
| PageFeaturedPostsAuthorCompany = 'page___featuredPosts___author___company', | |
| PageFeaturedPostsAuthorEmail = 'page___featuredPosts___author___email', | |
| PageFeaturedPostsAuthorPhone = 'page___featuredPosts___author___phone', | |
| PageFeaturedPostsAuthorFacebook = 'page___featuredPosts___author___facebook', | |
| PageFeaturedPostsAuthorTwitter = 'page___featuredPosts___author___twitter', | |
| PageFeaturedPostsAuthorGithub = 'page___featuredPosts___author___github', | |
| PageFeaturedPostsAuthorBlogpost = 'page___featuredPosts___author___blogpost', | |
| PageFeaturedPostsAuthorSpaceId = 'page___featuredPosts___author___spaceId', | |
| PageFeaturedPostsAuthorContentfulId = 'page___featuredPosts___author___contentful_id', | |
| PageFeaturedPostsAuthorCreatedAt = 'page___featuredPosts___author___createdAt', | |
| PageFeaturedPostsAuthorUpdatedAt = 'page___featuredPosts___author___updatedAt', | |
| PageFeaturedPostsAuthorNodeLocale = 'page___featuredPosts___author___node_locale', | |
| PageFeaturedPostsChildContentfulBlogPostBodyRichTextNodeId = 'page___featuredPosts___childContentfulBlogPostBodyRichTextNode___id', | |
| PageFeaturedPostsChildContentfulBlogPostBodyRichTextNodeChildren = 'page___featuredPosts___childContentfulBlogPostBodyRichTextNode___children', | |
| PageFeaturedPostsChildContentfulBlogPostBodyRichTextNodeContent = 'page___featuredPosts___childContentfulBlogPostBodyRichTextNode___content', | |
| PageFeaturedPostsChildContentfulBlogPostBodyRichTextNodeNodeType = 'page___featuredPosts___childContentfulBlogPostBodyRichTextNode___nodeType', | |
| PageFeaturedPostsChildContentfulBlogPostBodyRichTextNodeBody = 'page___featuredPosts___childContentfulBlogPostBodyRichTextNode___body', | |
| PageFeaturedPostsChildContentfulBlogPostBodyRichTextNodeJson = 'page___featuredPosts___childContentfulBlogPostBodyRichTextNode___json', | |
| PageSpaceId = 'page___spaceId', | |
| PageContentfulId = 'page___contentful_id', | |
| PageCreatedAt = 'page___createdAt', | |
| PageUpdatedAt = 'page___updatedAt', | |
| PageNodeLocale = 'page___node_locale', | |
| PageBodyId = 'page___body___id', | |
| PageBodyParentId = 'page___body___parent___id', | |
| PageBodyParentChildren = 'page___body___parent___children', | |
| PageBodyChildren = 'page___body___children', | |
| PageBodyChildrenId = 'page___body___children___id', | |
| PageBodyChildrenChildren = 'page___body___children___children', | |
| PageBodyInternalContent = 'page___body___internal___content', | |
| PageBodyInternalContentDigest = 'page___body___internal___contentDigest', | |
| PageBodyInternalDescription = 'page___body___internal___description', | |
| PageBodyInternalFieldOwners = 'page___body___internal___fieldOwners', | |
| PageBodyInternalIgnoreType = 'page___body___internal___ignoreType', | |
| PageBodyInternalMediaType = 'page___body___internal___mediaType', | |
| PageBodyInternalOwner = 'page___body___internal___owner', | |
| PageBodyInternalType = 'page___body___internal___type', | |
| PageBodyContent = 'page___body___content', | |
| PageBodyContentContent = 'page___body___content___content', | |
| PageBodyContentNodeType = 'page___body___content___nodeType', | |
| PageBodyNodeType = 'page___body___nodeType', | |
| PageBodyBody = 'page___body___body', | |
| PageBodyJson = 'page___body___json', | |
| PageBodyChildContentfulRichTextId = 'page___body___childContentfulRichText___id', | |
| PageBodyChildContentfulRichTextChildren = 'page___body___childContentfulRichText___children', | |
| PageBodyChildContentfulRichTextHtml = 'page___body___childContentfulRichText___html', | |
| PageBodyChildContentfulRichTextTimeToRead = 'page___body___childContentfulRichText___timeToRead', | |
| PageChildContentfulPageBodyRichTextNodeId = 'page___childContentfulPageBodyRichTextNode___id', | |
| PageChildContentfulPageBodyRichTextNodeParentId = 'page___childContentfulPageBodyRichTextNode___parent___id', | |
| PageChildContentfulPageBodyRichTextNodeParentChildren = 'page___childContentfulPageBodyRichTextNode___parent___children', | |
| PageChildContentfulPageBodyRichTextNodeChildren = 'page___childContentfulPageBodyRichTextNode___children', | |
| PageChildContentfulPageBodyRichTextNodeChildrenId = 'page___childContentfulPageBodyRichTextNode___children___id', | |
| PageChildContentfulPageBodyRichTextNodeChildrenChildren = 'page___childContentfulPageBodyRichTextNode___children___children', | |
| PageChildContentfulPageBodyRichTextNodeInternalContent = 'page___childContentfulPageBodyRichTextNode___internal___content', | |
| PageChildContentfulPageBodyRichTextNodeInternalContentDigest = 'page___childContentfulPageBodyRichTextNode___internal___contentDigest', | |
| PageChildContentfulPageBodyRichTextNodeInternalDescription = 'page___childContentfulPageBodyRichTextNode___internal___description', | |
| PageChildContentfulPageBodyRichTextNodeInternalFieldOwners = 'page___childContentfulPageBodyRichTextNode___internal___fieldOwners', | |
| PageChildContentfulPageBodyRichTextNodeInternalIgnoreType = 'page___childContentfulPageBodyRichTextNode___internal___ignoreType', | |
| PageChildContentfulPageBodyRichTextNodeInternalMediaType = 'page___childContentfulPageBodyRichTextNode___internal___mediaType', | |
| PageChildContentfulPageBodyRichTextNodeInternalOwner = 'page___childContentfulPageBodyRichTextNode___internal___owner', | |
| PageChildContentfulPageBodyRichTextNodeInternalType = 'page___childContentfulPageBodyRichTextNode___internal___type', | |
| PageChildContentfulPageBodyRichTextNodeContent = 'page___childContentfulPageBodyRichTextNode___content', | |
| PageChildContentfulPageBodyRichTextNodeContentContent = 'page___childContentfulPageBodyRichTextNode___content___content', | |
| PageChildContentfulPageBodyRichTextNodeContentNodeType = 'page___childContentfulPageBodyRichTextNode___content___nodeType', | |
| PageChildContentfulPageBodyRichTextNodeNodeType = 'page___childContentfulPageBodyRichTextNode___nodeType', | |
| PageChildContentfulPageBodyRichTextNodeBody = 'page___childContentfulPageBodyRichTextNode___body', | |
| PageChildContentfulPageBodyRichTextNodeJson = 'page___childContentfulPageBodyRichTextNode___json', | |
| PageChildContentfulPageBodyRichTextNodeChildContentfulRichTextId = 'page___childContentfulPageBodyRichTextNode___childContentfulRichText___id', | |
| PageChildContentfulPageBodyRichTextNodeChildContentfulRichTextChildren = 'page___childContentfulPageBodyRichTextNode___childContentfulRichText___children', | |
| PageChildContentfulPageBodyRichTextNodeChildContentfulRichTextHtml = 'page___childContentfulPageBodyRichTextNode___childContentfulRichText___html', | |
| PageChildContentfulPageBodyRichTextNodeChildContentfulRichTextTimeToRead = 'page___childContentfulPageBodyRichTextNode___childContentfulRichText___timeToRead', | |
| BodyId = 'body___id', | |
| BodyParentId = 'body___parent___id', | |
| BodyParentParentId = 'body___parent___parent___id', | |
| BodyParentParentChildren = 'body___parent___parent___children', | |
| BodyParentChildren = 'body___parent___children', | |
| BodyParentChildrenId = 'body___parent___children___id', | |
| BodyParentChildrenChildren = 'body___parent___children___children', | |
| BodyParentInternalContent = 'body___parent___internal___content', | |
| BodyParentInternalContentDigest = 'body___parent___internal___contentDigest', | |
| BodyParentInternalDescription = 'body___parent___internal___description', | |
| BodyParentInternalFieldOwners = 'body___parent___internal___fieldOwners', | |
| BodyParentInternalIgnoreType = 'body___parent___internal___ignoreType', | |
| BodyParentInternalMediaType = 'body___parent___internal___mediaType', | |
| BodyParentInternalOwner = 'body___parent___internal___owner', | |
| BodyParentInternalType = 'body___parent___internal___type', | |
| BodyChildren = 'body___children', | |
| BodyChildrenId = 'body___children___id', | |
| BodyChildrenParentId = 'body___children___parent___id', | |
| BodyChildrenParentChildren = 'body___children___parent___children', | |
| BodyChildrenChildren = 'body___children___children', | |
| BodyChildrenChildrenId = 'body___children___children___id', | |
| BodyChildrenChildrenChildren = 'body___children___children___children', | |
| BodyChildrenInternalContent = 'body___children___internal___content', | |
| BodyChildrenInternalContentDigest = 'body___children___internal___contentDigest', | |
| BodyChildrenInternalDescription = 'body___children___internal___description', | |
| BodyChildrenInternalFieldOwners = 'body___children___internal___fieldOwners', | |
| BodyChildrenInternalIgnoreType = 'body___children___internal___ignoreType', | |
| BodyChildrenInternalMediaType = 'body___children___internal___mediaType', | |
| BodyChildrenInternalOwner = 'body___children___internal___owner', | |
| BodyChildrenInternalType = 'body___children___internal___type', | |
| BodyInternalContent = 'body___internal___content', | |
| BodyInternalContentDigest = 'body___internal___contentDigest', | |
| BodyInternalDescription = 'body___internal___description', | |
| BodyInternalFieldOwners = 'body___internal___fieldOwners', | |
| BodyInternalIgnoreType = 'body___internal___ignoreType', | |
| BodyInternalMediaType = 'body___internal___mediaType', | |
| BodyInternalOwner = 'body___internal___owner', | |
| BodyInternalType = 'body___internal___type', | |
| BodyContent = 'body___content', | |
| BodyContentContent = 'body___content___content', | |
| BodyContentContentMarks = 'body___content___content___marks', | |
| BodyContentContentValue = 'body___content___content___value', | |
| BodyContentContentNodeType = 'body___content___content___nodeType', | |
| BodyContentContentContent = 'body___content___content___content', | |
| BodyContentNodeType = 'body___content___nodeType', | |
| BodyNodeType = 'body___nodeType', | |
| BodyBody = 'body___body', | |
| BodyJson = 'body___json', | |
| BodyChildContentfulRichTextId = 'body___childContentfulRichText___id', | |
| BodyChildContentfulRichTextParentId = 'body___childContentfulRichText___parent___id', | |
| BodyChildContentfulRichTextParentChildren = 'body___childContentfulRichText___parent___children', | |
| BodyChildContentfulRichTextChildren = 'body___childContentfulRichText___children', | |
| BodyChildContentfulRichTextChildrenId = 'body___childContentfulRichText___children___id', | |
| BodyChildContentfulRichTextChildrenChildren = 'body___childContentfulRichText___children___children', | |
| BodyChildContentfulRichTextInternalContent = 'body___childContentfulRichText___internal___content', | |
| BodyChildContentfulRichTextInternalContentDigest = 'body___childContentfulRichText___internal___contentDigest', | |
| BodyChildContentfulRichTextInternalDescription = 'body___childContentfulRichText___internal___description', | |
| BodyChildContentfulRichTextInternalFieldOwners = 'body___childContentfulRichText___internal___fieldOwners', | |
| BodyChildContentfulRichTextInternalIgnoreType = 'body___childContentfulRichText___internal___ignoreType', | |
| BodyChildContentfulRichTextInternalMediaType = 'body___childContentfulRichText___internal___mediaType', | |
| BodyChildContentfulRichTextInternalOwner = 'body___childContentfulRichText___internal___owner', | |
| BodyChildContentfulRichTextInternalType = 'body___childContentfulRichText___internal___type', | |
| BodyChildContentfulRichTextHtml = 'body___childContentfulRichText___html', | |
| BodyChildContentfulRichTextTimeToRead = 'body___childContentfulRichText___timeToRead', | |
| SpaceId = 'spaceId', | |
| ContentfulId = 'contentful_id', | |
| CreatedAt = 'createdAt', | |
| UpdatedAt = 'updatedAt', | |
| NodeLocale = 'node_locale', | |
| AuthorId = 'author___id', | |
| AuthorParentId = 'author___parent___id', | |
| AuthorParentParentId = 'author___parent___parent___id', | |
| AuthorParentParentChildren = 'author___parent___parent___children', | |
| AuthorParentChildren = 'author___parent___children', | |
| AuthorParentChildrenId = 'author___parent___children___id', | |
| AuthorParentChildrenChildren = 'author___parent___children___children', | |
| AuthorParentInternalContent = 'author___parent___internal___content', | |
| AuthorParentInternalContentDigest = 'author___parent___internal___contentDigest', | |
| AuthorParentInternalDescription = 'author___parent___internal___description', | |
| AuthorParentInternalFieldOwners = 'author___parent___internal___fieldOwners', | |
| AuthorParentInternalIgnoreType = 'author___parent___internal___ignoreType', | |
| AuthorParentInternalMediaType = 'author___parent___internal___mediaType', | |
| AuthorParentInternalOwner = 'author___parent___internal___owner', | |
| AuthorParentInternalType = 'author___parent___internal___type', | |
| AuthorChildren = 'author___children', | |
| AuthorChildrenId = 'author___children___id', | |
| AuthorChildrenParentId = 'author___children___parent___id', | |
| AuthorChildrenParentChildren = 'author___children___parent___children', | |
| AuthorChildrenChildren = 'author___children___children', | |
| AuthorChildrenChildrenId = 'author___children___children___id', | |
| AuthorChildrenChildrenChildren = 'author___children___children___children', | |
| AuthorChildrenInternalContent = 'author___children___internal___content', | |
| AuthorChildrenInternalContentDigest = 'author___children___internal___contentDigest', | |
| AuthorChildrenInternalDescription = 'author___children___internal___description', | |
| AuthorChildrenInternalFieldOwners = 'author___children___internal___fieldOwners', | |
| AuthorChildrenInternalIgnoreType = 'author___children___internal___ignoreType', | |
| AuthorChildrenInternalMediaType = 'author___children___internal___mediaType', | |
| AuthorChildrenInternalOwner = 'author___children___internal___owner', | |
| AuthorChildrenInternalType = 'author___children___internal___type', | |
| AuthorInternalContent = 'author___internal___content', | |
| AuthorInternalContentDigest = 'author___internal___contentDigest', | |
| AuthorInternalDescription = 'author___internal___description', | |
| AuthorInternalFieldOwners = 'author___internal___fieldOwners', | |
| AuthorInternalIgnoreType = 'author___internal___ignoreType', | |
| AuthorInternalMediaType = 'author___internal___mediaType', | |
| AuthorInternalOwner = 'author___internal___owner', | |
| AuthorInternalType = 'author___internal___type', | |
| AuthorName = 'author___name', | |
| AuthorTitle = 'author___title', | |
| AuthorCompany = 'author___company', | |
| AuthorEmail = 'author___email', | |
| AuthorPhone = 'author___phone', | |
| AuthorFacebook = 'author___facebook', | |
| AuthorTwitter = 'author___twitter', | |
| AuthorGithub = 'author___github', | |
| AuthorImageId = 'author___image___id', | |
| AuthorImageParentId = 'author___image___parent___id', | |
| AuthorImageParentChildren = 'author___image___parent___children', | |
| AuthorImageChildren = 'author___image___children', | |
| AuthorImageChildrenId = 'author___image___children___id', | |
| AuthorImageChildrenChildren = 'author___image___children___children', | |
| AuthorImageInternalContent = 'author___image___internal___content', | |
| AuthorImageInternalContentDigest = 'author___image___internal___contentDigest', | |
| AuthorImageInternalDescription = 'author___image___internal___description', | |
| AuthorImageInternalFieldOwners = 'author___image___internal___fieldOwners', | |
| AuthorImageInternalIgnoreType = 'author___image___internal___ignoreType', | |
| AuthorImageInternalMediaType = 'author___image___internal___mediaType', | |
| AuthorImageInternalOwner = 'author___image___internal___owner', | |
| AuthorImageInternalType = 'author___image___internal___type', | |
| AuthorImageContentfulId = 'author___image___contentful_id', | |
| AuthorImageFileUrl = 'author___image___file___url', | |
| AuthorImageFileFileName = 'author___image___file___fileName', | |
| AuthorImageFileContentType = 'author___image___file___contentType', | |
| AuthorImageTitle = 'author___image___title', | |
| AuthorImageDescription = 'author___image___description', | |
| AuthorImageNodeLocale = 'author___image___node_locale', | |
| AuthorImageFixedBase64 = 'author___image___fixed___base64', | |
| AuthorImageFixedTracedSvg = 'author___image___fixed___tracedSVG', | |
| AuthorImageFixedAspectRatio = 'author___image___fixed___aspectRatio', | |
| AuthorImageFixedWidth = 'author___image___fixed___width', | |
| AuthorImageFixedHeight = 'author___image___fixed___height', | |
| AuthorImageFixedSrc = 'author___image___fixed___src', | |
| AuthorImageFixedSrcSet = 'author___image___fixed___srcSet', | |
| AuthorImageFixedSrcWebp = 'author___image___fixed___srcWebp', | |
| AuthorImageFixedSrcSetWebp = 'author___image___fixed___srcSetWebp', | |
| AuthorImageResolutionsBase64 = 'author___image___resolutions___base64', | |
| AuthorImageResolutionsTracedSvg = 'author___image___resolutions___tracedSVG', | |
| AuthorImageResolutionsAspectRatio = 'author___image___resolutions___aspectRatio', | |
| AuthorImageResolutionsWidth = 'author___image___resolutions___width', | |
| AuthorImageResolutionsHeight = 'author___image___resolutions___height', | |
| AuthorImageResolutionsSrc = 'author___image___resolutions___src', | |
| AuthorImageResolutionsSrcSet = 'author___image___resolutions___srcSet', | |
| AuthorImageResolutionsSrcWebp = 'author___image___resolutions___srcWebp', | |
| AuthorImageResolutionsSrcSetWebp = 'author___image___resolutions___srcSetWebp', | |
| AuthorImageFluidBase64 = 'author___image___fluid___base64', | |
| AuthorImageFluidTracedSvg = 'author___image___fluid___tracedSVG', | |
| AuthorImageFluidAspectRatio = 'author___image___fluid___aspectRatio', | |
| AuthorImageFluidSrc = 'author___image___fluid___src', | |
| AuthorImageFluidSrcSet = 'author___image___fluid___srcSet', | |
| AuthorImageFluidSrcWebp = 'author___image___fluid___srcWebp', | |
| AuthorImageFluidSrcSetWebp = 'author___image___fluid___srcSetWebp', | |
| AuthorImageFluidSizes = 'author___image___fluid___sizes', | |
| AuthorImageSizesBase64 = 'author___image___sizes___base64', | |
| AuthorImageSizesTracedSvg = 'author___image___sizes___tracedSVG', | |
| AuthorImageSizesAspectRatio = 'author___image___sizes___aspectRatio', | |
| AuthorImageSizesSrc = 'author___image___sizes___src', | |
| AuthorImageSizesSrcSet = 'author___image___sizes___srcSet', | |
| AuthorImageSizesSrcWebp = 'author___image___sizes___srcWebp', | |
| AuthorImageSizesSrcSetWebp = 'author___image___sizes___srcSetWebp', | |
| AuthorImageSizesSizes = 'author___image___sizes___sizes', | |
| AuthorImageResizeBase64 = 'author___image___resize___base64', | |
| AuthorImageResizeTracedSvg = 'author___image___resize___tracedSVG', | |
| AuthorImageResizeSrc = 'author___image___resize___src', | |
| AuthorImageResizeWidth = 'author___image___resize___width', | |
| AuthorImageResizeHeight = 'author___image___resize___height', | |
| AuthorImageResizeAspectRatio = 'author___image___resize___aspectRatio', | |
| AuthorBlogpost = 'author___blogpost', | |
| AuthorBlogpostId = 'author___blogpost___id', | |
| AuthorBlogpostParentId = 'author___blogpost___parent___id', | |
| AuthorBlogpostParentChildren = 'author___blogpost___parent___children', | |
| AuthorBlogpostChildren = 'author___blogpost___children', | |
| AuthorBlogpostChildrenId = 'author___blogpost___children___id', | |
| AuthorBlogpostChildrenChildren = 'author___blogpost___children___children', | |
| AuthorBlogpostInternalContent = 'author___blogpost___internal___content', | |
| AuthorBlogpostInternalContentDigest = 'author___blogpost___internal___contentDigest', | |
| AuthorBlogpostInternalDescription = 'author___blogpost___internal___description', | |
| AuthorBlogpostInternalFieldOwners = 'author___blogpost___internal___fieldOwners', | |
| AuthorBlogpostInternalIgnoreType = 'author___blogpost___internal___ignoreType', | |
| AuthorBlogpostInternalMediaType = 'author___blogpost___internal___mediaType', | |
| AuthorBlogpostInternalOwner = 'author___blogpost___internal___owner', | |
| AuthorBlogpostInternalType = 'author___blogpost___internal___type', | |
| AuthorBlogpostTitle = 'author___blogpost___title', | |
| AuthorBlogpostSlug = 'author___blogpost___slug', | |
| AuthorBlogpostPublishDate = 'author___blogpost___publishDate', | |
| AuthorBlogpostFeaturedImageId = 'author___blogpost___featuredImage___id', | |
| AuthorBlogpostFeaturedImageChildren = 'author___blogpost___featuredImage___children', | |
| AuthorBlogpostFeaturedImageContentfulId = 'author___blogpost___featuredImage___contentful_id', | |
| AuthorBlogpostFeaturedImageTitle = 'author___blogpost___featuredImage___title', | |
| AuthorBlogpostFeaturedImageDescription = 'author___blogpost___featuredImage___description', | |
| AuthorBlogpostFeaturedImageNodeLocale = 'author___blogpost___featuredImage___node_locale', | |
| AuthorBlogpostCategories = 'author___blogpost___categories', | |
| AuthorBlogpostCategoriesId = 'author___blogpost___categories___id', | |
| AuthorBlogpostCategoriesChildren = 'author___blogpost___categories___children', | |
| AuthorBlogpostCategoriesTitle = 'author___blogpost___categories___title', | |
| AuthorBlogpostCategoriesSlug = 'author___blogpost___categories___slug', | |
| AuthorBlogpostCategoriesBlogpost = 'author___blogpost___categories___blogpost', | |
| AuthorBlogpostCategoriesSpaceId = 'author___blogpost___categories___spaceId', | |
| AuthorBlogpostCategoriesContentfulId = 'author___blogpost___categories___contentful_id', | |
| AuthorBlogpostCategoriesCreatedAt = 'author___blogpost___categories___createdAt', | |
| AuthorBlogpostCategoriesUpdatedAt = 'author___blogpost___categories___updatedAt', | |
| AuthorBlogpostCategoriesNodeLocale = 'author___blogpost___categories___node_locale', | |
| AuthorBlogpostCategoriesMenu = 'author___blogpost___categories___menu', | |
| AuthorBlogpostCategoriesProduct = 'author___blogpost___categories___product', | |
| AuthorBlogpostPage = 'author___blogpost___page', | |
| AuthorBlogpostPageId = 'author___blogpost___page___id', | |
| AuthorBlogpostPageChildren = 'author___blogpost___page___children', | |
| AuthorBlogpostPageTitle = 'author___blogpost___page___title', | |
| AuthorBlogpostPageSlug = 'author___blogpost___page___slug', | |
| AuthorBlogpostPageIsHomePage = 'author___blogpost___page___isHomePage', | |
| AuthorBlogpostPageFeaturedPosts = 'author___blogpost___page___featuredPosts', | |
| AuthorBlogpostPageSpaceId = 'author___blogpost___page___spaceId', | |
| AuthorBlogpostPageContentfulId = 'author___blogpost___page___contentful_id', | |
| AuthorBlogpostPageCreatedAt = 'author___blogpost___page___createdAt', | |
| AuthorBlogpostPageUpdatedAt = 'author___blogpost___page___updatedAt', | |
| AuthorBlogpostPageNodeLocale = 'author___blogpost___page___node_locale', | |
| AuthorBlogpostBodyId = 'author___blogpost___body___id', | |
| AuthorBlogpostBodyChildren = 'author___blogpost___body___children', | |
| AuthorBlogpostBodyContent = 'author___blogpost___body___content', | |
| AuthorBlogpostBodyNodeType = 'author___blogpost___body___nodeType', | |
| AuthorBlogpostBodyBody = 'author___blogpost___body___body', | |
| AuthorBlogpostBodyJson = 'author___blogpost___body___json', | |
| AuthorBlogpostSpaceId = 'author___blogpost___spaceId', | |
| AuthorBlogpostContentfulId = 'author___blogpost___contentful_id', | |
| AuthorBlogpostCreatedAt = 'author___blogpost___createdAt', | |
| AuthorBlogpostUpdatedAt = 'author___blogpost___updatedAt', | |
| AuthorBlogpostNodeLocale = 'author___blogpost___node_locale', | |
| AuthorBlogpostAuthorId = 'author___blogpost___author___id', | |
| AuthorBlogpostAuthorChildren = 'author___blogpost___author___children', | |
| AuthorBlogpostAuthorName = 'author___blogpost___author___name', | |
| AuthorBlogpostAuthorTitle = 'author___blogpost___author___title', | |
| AuthorBlogpostAuthorCompany = 'author___blogpost___author___company', | |
| AuthorBlogpostAuthorEmail = 'author___blogpost___author___email', | |
| AuthorBlogpostAuthorPhone = 'author___blogpost___author___phone', | |
| AuthorBlogpostAuthorFacebook = 'author___blogpost___author___facebook', | |
| AuthorBlogpostAuthorTwitter = 'author___blogpost___author___twitter', | |
| AuthorBlogpostAuthorGithub = 'author___blogpost___author___github', | |
| AuthorBlogpostAuthorBlogpost = 'author___blogpost___author___blogpost', | |
| AuthorBlogpostAuthorSpaceId = 'author___blogpost___author___spaceId', | |
| AuthorBlogpostAuthorContentfulId = 'author___blogpost___author___contentful_id', | |
| AuthorBlogpostAuthorCreatedAt = 'author___blogpost___author___createdAt', | |
| AuthorBlogpostAuthorUpdatedAt = 'author___blogpost___author___updatedAt', | |
| AuthorBlogpostAuthorNodeLocale = 'author___blogpost___author___node_locale', | |
| AuthorBlogpostChildContentfulBlogPostBodyRichTextNodeId = 'author___blogpost___childContentfulBlogPostBodyRichTextNode___id', | |
| AuthorBlogpostChildContentfulBlogPostBodyRichTextNodeChildren = 'author___blogpost___childContentfulBlogPostBodyRichTextNode___children', | |
| AuthorBlogpostChildContentfulBlogPostBodyRichTextNodeContent = 'author___blogpost___childContentfulBlogPostBodyRichTextNode___content', | |
| AuthorBlogpostChildContentfulBlogPostBodyRichTextNodeNodeType = 'author___blogpost___childContentfulBlogPostBodyRichTextNode___nodeType', | |
| AuthorBlogpostChildContentfulBlogPostBodyRichTextNodeBody = 'author___blogpost___childContentfulBlogPostBodyRichTextNode___body', | |
| AuthorBlogpostChildContentfulBlogPostBodyRichTextNodeJson = 'author___blogpost___childContentfulBlogPostBodyRichTextNode___json', | |
| AuthorShortBioId = 'author___shortBio___id', | |
| AuthorShortBioParentId = 'author___shortBio___parent___id', | |
| AuthorShortBioParentChildren = 'author___shortBio___parent___children', | |
| AuthorShortBioChildren = 'author___shortBio___children', | |
| AuthorShortBioChildrenId = 'author___shortBio___children___id', | |
| AuthorShortBioChildrenChildren = 'author___shortBio___children___children', | |
| AuthorShortBioInternalContent = 'author___shortBio___internal___content', | |
| AuthorShortBioInternalContentDigest = 'author___shortBio___internal___contentDigest', | |
| AuthorShortBioInternalDescription = 'author___shortBio___internal___description', | |
| AuthorShortBioInternalFieldOwners = 'author___shortBio___internal___fieldOwners', | |
| AuthorShortBioInternalIgnoreType = 'author___shortBio___internal___ignoreType', | |
| AuthorShortBioInternalMediaType = 'author___shortBio___internal___mediaType', | |
| AuthorShortBioInternalOwner = 'author___shortBio___internal___owner', | |
| AuthorShortBioInternalType = 'author___shortBio___internal___type', | |
| AuthorShortBioShortBio = 'author___shortBio___shortBio', | |
| AuthorSpaceId = 'author___spaceId', | |
| AuthorContentfulId = 'author___contentful_id', | |
| AuthorCreatedAt = 'author___createdAt', | |
| AuthorUpdatedAt = 'author___updatedAt', | |
| AuthorNodeLocale = 'author___node_locale', | |
| AuthorChildContentfulPersonShortBioTextNodeId = 'author___childContentfulPersonShortBioTextNode___id', | |
| AuthorChildContentfulPersonShortBioTextNodeParentId = 'author___childContentfulPersonShortBioTextNode___parent___id', | |
| AuthorChildContentfulPersonShortBioTextNodeParentChildren = 'author___childContentfulPersonShortBioTextNode___parent___children', | |
| AuthorChildContentfulPersonShortBioTextNodeChildren = 'author___childContentfulPersonShortBioTextNode___children', | |
| AuthorChildContentfulPersonShortBioTextNodeChildrenId = 'author___childContentfulPersonShortBioTextNode___children___id', | |
| AuthorChildContentfulPersonShortBioTextNodeChildrenChildren = 'author___childContentfulPersonShortBioTextNode___children___children', | |
| AuthorChildContentfulPersonShortBioTextNodeInternalContent = 'author___childContentfulPersonShortBioTextNode___internal___content', | |
| AuthorChildContentfulPersonShortBioTextNodeInternalContentDigest = 'author___childContentfulPersonShortBioTextNode___internal___contentDigest', | |
| AuthorChildContentfulPersonShortBioTextNodeInternalDescription = 'author___childContentfulPersonShortBioTextNode___internal___description', | |
| AuthorChildContentfulPersonShortBioTextNodeInternalFieldOwners = 'author___childContentfulPersonShortBioTextNode___internal___fieldOwners', | |
| AuthorChildContentfulPersonShortBioTextNodeInternalIgnoreType = 'author___childContentfulPersonShortBioTextNode___internal___ignoreType', | |
| AuthorChildContentfulPersonShortBioTextNodeInternalMediaType = 'author___childContentfulPersonShortBioTextNode___internal___mediaType', | |
| AuthorChildContentfulPersonShortBioTextNodeInternalOwner = 'author___childContentfulPersonShortBioTextNode___internal___owner', | |
| AuthorChildContentfulPersonShortBioTextNodeInternalType = 'author___childContentfulPersonShortBioTextNode___internal___type', | |
| AuthorChildContentfulPersonShortBioTextNodeShortBio = 'author___childContentfulPersonShortBioTextNode___shortBio', | |
| ChildContentfulBlogPostBodyRichTextNodeId = 'childContentfulBlogPostBodyRichTextNode___id', | |
| ChildContentfulBlogPostBodyRichTextNodeParentId = 'childContentfulBlogPostBodyRichTextNode___parent___id', | |
| ChildContentfulBlogPostBodyRichTextNodeParentParentId = 'childContentfulBlogPostBodyRichTextNode___parent___parent___id', | |
| ChildContentfulBlogPostBodyRichTextNodeParentParentChildren = 'childContentfulBlogPostBodyRichTextNode___parent___parent___children', | |
| ChildContentfulBlogPostBodyRichTextNodeParentChildren = 'childContentfulBlogPostBodyRichTextNode___parent___children', | |
| ChildContentfulBlogPostBodyRichTextNodeParentChildrenId = 'childContentfulBlogPostBodyRichTextNode___parent___children___id', | |
| ChildContentfulBlogPostBodyRichTextNodeParentChildrenChildren = 'childContentfulBlogPostBodyRichTextNode___parent___children___children', | |
| ChildContentfulBlogPostBodyRichTextNodeParentInternalContent = 'childContentfulBlogPostBodyRichTextNode___parent___internal___content', | |
| ChildContentfulBlogPostBodyRichTextNodeParentInternalContentDigest = 'childContentfulBlogPostBodyRichTextNode___parent___internal___contentDigest', | |
| ChildContentfulBlogPostBodyRichTextNodeParentInternalDescription = 'childContentfulBlogPostBodyRichTextNode___parent___internal___description', | |
| ChildContentfulBlogPostBodyRichTextNodeParentInternalFieldOwners = 'childContentfulBlogPostBodyRichTextNode___parent___internal___fieldOwners', | |
| ChildContentfulBlogPostBodyRichTextNodeParentInternalIgnoreType = 'childContentfulBlogPostBodyRichTextNode___parent___internal___ignoreType', | |
| ChildContentfulBlogPostBodyRichTextNodeParentInternalMediaType = 'childContentfulBlogPostBodyRichTextNode___parent___internal___mediaType', | |
| ChildContentfulBlogPostBodyRichTextNodeParentInternalOwner = 'childContentfulBlogPostBodyRichTextNode___parent___internal___owner', | |
| ChildContentfulBlogPostBodyRichTextNodeParentInternalType = 'childContentfulBlogPostBodyRichTextNode___parent___internal___type', | |
| ChildContentfulBlogPostBodyRichTextNodeChildren = 'childContentfulBlogPostBodyRichTextNode___children', | |
| ChildContentfulBlogPostBodyRichTextNodeChildrenId = 'childContentfulBlogPostBodyRichTextNode___children___id', | |
| ChildContentfulBlogPostBodyRichTextNodeChildrenParentId = 'childContentfulBlogPostBodyRichTextNode___children___parent___id', | |
| ChildContentfulBlogPostBodyRichTextNodeChildrenParentChildren = 'childContentfulBlogPostBodyRichTextNode___children___parent___children', | |
| ChildContentfulBlogPostBodyRichTextNodeChildrenChildren = 'childContentfulBlogPostBodyRichTextNode___children___children', | |
| ChildContentfulBlogPostBodyRichTextNodeChildrenChildrenId = 'childContentfulBlogPostBodyRichTextNode___children___children___id', | |
| ChildContentfulBlogPostBodyRichTextNodeChildrenChildrenChildren = 'childContentfulBlogPostBodyRichTextNode___children___children___children', | |
| ChildContentfulBlogPostBodyRichTextNodeChildrenInternalContent = 'childContentfulBlogPostBodyRichTextNode___children___internal___content', | |
| ChildContentfulBlogPostBodyRichTextNodeChildrenInternalContentDigest = 'childContentfulBlogPostBodyRichTextNode___children___internal___contentDigest', | |
| ChildContentfulBlogPostBodyRichTextNodeChildrenInternalDescription = 'childContentfulBlogPostBodyRichTextNode___children___internal___description', | |
| ChildContentfulBlogPostBodyRichTextNodeChildrenInternalFieldOwners = 'childContentfulBlogPostBodyRichTextNode___children___internal___fieldOwners', | |
| ChildContentfulBlogPostBodyRichTextNodeChildrenInternalIgnoreType = 'childContentfulBlogPostBodyRichTextNode___children___internal___ignoreType', | |
| ChildContentfulBlogPostBodyRichTextNodeChildrenInternalMediaType = 'childContentfulBlogPostBodyRichTextNode___children___internal___mediaType', | |
| ChildContentfulBlogPostBodyRichTextNodeChildrenInternalOwner = 'childContentfulBlogPostBodyRichTextNode___children___internal___owner', | |
| ChildContentfulBlogPostBodyRichTextNodeChildrenInternalType = 'childContentfulBlogPostBodyRichTextNode___children___internal___type', | |
| ChildContentfulBlogPostBodyRichTextNodeInternalContent = 'childContentfulBlogPostBodyRichTextNode___internal___content', | |
| ChildContentfulBlogPostBodyRichTextNodeInternalContentDigest = 'childContentfulBlogPostBodyRichTextNode___internal___contentDigest', | |
| ChildContentfulBlogPostBodyRichTextNodeInternalDescription = 'childContentfulBlogPostBodyRichTextNode___internal___description', | |
| ChildContentfulBlogPostBodyRichTextNodeInternalFieldOwners = 'childContentfulBlogPostBodyRichTextNode___internal___fieldOwners', | |
| ChildContentfulBlogPostBodyRichTextNodeInternalIgnoreType = 'childContentfulBlogPostBodyRichTextNode___internal___ignoreType', | |
| ChildContentfulBlogPostBodyRichTextNodeInternalMediaType = 'childContentfulBlogPostBodyRichTextNode___internal___mediaType', | |
| ChildContentfulBlogPostBodyRichTextNodeInternalOwner = 'childContentfulBlogPostBodyRichTextNode___internal___owner', | |
| ChildContentfulBlogPostBodyRichTextNodeInternalType = 'childContentfulBlogPostBodyRichTextNode___internal___type', | |
| ChildContentfulBlogPostBodyRichTextNodeContent = 'childContentfulBlogPostBodyRichTextNode___content', | |
| ChildContentfulBlogPostBodyRichTextNodeContentContent = 'childContentfulBlogPostBodyRichTextNode___content___content', | |
| ChildContentfulBlogPostBodyRichTextNodeContentContentMarks = 'childContentfulBlogPostBodyRichTextNode___content___content___marks', | |
| ChildContentfulBlogPostBodyRichTextNodeContentContentValue = 'childContentfulBlogPostBodyRichTextNode___content___content___value', | |
| ChildContentfulBlogPostBodyRichTextNodeContentContentNodeType = 'childContentfulBlogPostBodyRichTextNode___content___content___nodeType', | |
| ChildContentfulBlogPostBodyRichTextNodeContentContentContent = 'childContentfulBlogPostBodyRichTextNode___content___content___content', | |
| ChildContentfulBlogPostBodyRichTextNodeContentNodeType = 'childContentfulBlogPostBodyRichTextNode___content___nodeType', | |
| ChildContentfulBlogPostBodyRichTextNodeNodeType = 'childContentfulBlogPostBodyRichTextNode___nodeType', | |
| ChildContentfulBlogPostBodyRichTextNodeBody = 'childContentfulBlogPostBodyRichTextNode___body', | |
| ChildContentfulBlogPostBodyRichTextNodeJson = 'childContentfulBlogPostBodyRichTextNode___json', | |
| ChildContentfulBlogPostBodyRichTextNodeChildContentfulRichTextId = 'childContentfulBlogPostBodyRichTextNode___childContentfulRichText___id', | |
| ChildContentfulBlogPostBodyRichTextNodeChildContentfulRichTextParentId = 'childContentfulBlogPostBodyRichTextNode___childContentfulRichText___parent___id', | |
| ChildContentfulBlogPostBodyRichTextNodeChildContentfulRichTextParentChildren = 'childContentfulBlogPostBodyRichTextNode___childContentfulRichText___parent___children', | |
| ChildContentfulBlogPostBodyRichTextNodeChildContentfulRichTextChildren = 'childContentfulBlogPostBodyRichTextNode___childContentfulRichText___children', | |
| ChildContentfulBlogPostBodyRichTextNodeChildContentfulRichTextChildrenId = 'childContentfulBlogPostBodyRichTextNode___childContentfulRichText___children___id', | |
| ChildContentfulBlogPostBodyRichTextNodeChildContentfulRichTextChildrenChildren = 'childContentfulBlogPostBodyRichTextNode___childContentfulRichText___children___children', | |
| ChildContentfulBlogPostBodyRichTextNodeChildContentfulRichTextInternalContent = 'childContentfulBlogPostBodyRichTextNode___childContentfulRichText___internal___content', | |
| ChildContentfulBlogPostBodyRichTextNodeChildContentfulRichTextInternalContentDigest = 'childContentfulBlogPostBodyRichTextNode___childContentfulRichText___internal___contentDigest', | |
| ChildContentfulBlogPostBodyRichTextNodeChildContentfulRichTextInternalDescription = 'childContentfulBlogPostBodyRichTextNode___childContentfulRichText___internal___description', | |
| ChildContentfulBlogPostBodyRichTextNodeChildContentfulRichTextInternalFieldOwners = 'childContentfulBlogPostBodyRichTextNode___childContentfulRichText___internal___fieldOwners', | |
| ChildContentfulBlogPostBodyRichTextNodeChildContentfulRichTextInternalIgnoreType = 'childContentfulBlogPostBodyRichTextNode___childContentfulRichText___internal___ignoreType', | |
| ChildContentfulBlogPostBodyRichTextNodeChildContentfulRichTextInternalMediaType = 'childContentfulBlogPostBodyRichTextNode___childContentfulRichText___internal___mediaType', | |
| ChildContentfulBlogPostBodyRichTextNodeChildContentfulRichTextInternalOwner = 'childContentfulBlogPostBodyRichTextNode___childContentfulRichText___internal___owner', | |
| ChildContentfulBlogPostBodyRichTextNodeChildContentfulRichTextInternalType = 'childContentfulBlogPostBodyRichTextNode___childContentfulRichText___internal___type', | |
| ChildContentfulBlogPostBodyRichTextNodeChildContentfulRichTextHtml = 'childContentfulBlogPostBodyRichTextNode___childContentfulRichText___html', | |
| ChildContentfulBlogPostBodyRichTextNodeChildContentfulRichTextTimeToRead = 'childContentfulBlogPostBodyRichTextNode___childContentfulRichText___timeToRead' | |
| } | |
| export type ContentfulBlogPostFilterInput = { | |
| id?: Maybe<StringQueryOperatorInput>, | |
| parent?: Maybe<NodeFilterInput>, | |
| children?: Maybe<NodeFilterListInput>, | |
| internal?: Maybe<InternalFilterInput>, | |
| title?: Maybe<StringQueryOperatorInput>, | |
| slug?: Maybe<StringQueryOperatorInput>, | |
| publishDate?: Maybe<DateQueryOperatorInput>, | |
| featuredImage?: Maybe<ContentfulAssetFilterInput>, | |
| categories?: Maybe<ContentfulCategoryFilterListInput>, | |
| page?: Maybe<ContentfulPageFilterListInput>, | |
| body?: Maybe<ContentfulBlogPostBodyRichTextNodeFilterInput>, | |
| spaceId?: Maybe<StringQueryOperatorInput>, | |
| contentful_id?: Maybe<StringQueryOperatorInput>, | |
| createdAt?: Maybe<DateQueryOperatorInput>, | |
| updatedAt?: Maybe<DateQueryOperatorInput>, | |
| node_locale?: Maybe<StringQueryOperatorInput>, | |
| author?: Maybe<ContentfulPersonFilterInput>, | |
| childContentfulBlogPostBodyRichTextNode?: Maybe<ContentfulBlogPostBodyRichTextNodeFilterInput>, | |
| }; | |
| export type ContentfulBlogPostFilterListInput = { | |
| elemMatch?: Maybe<ContentfulBlogPostFilterInput>, | |
| }; | |
| export type ContentfulBlogPostGroupConnection = { | |
| __typename?: 'ContentfulBlogPostGroupConnection', | |
| totalCount: Scalars['Int'], | |
| edges: Array<ContentfulBlogPostEdge>, | |
| nodes: Array<ContentfulBlogPost>, | |
| pageInfo: PageInfo, | |
| field: Scalars['String'], | |
| fieldValue?: Maybe<Scalars['String']>, | |
| }; | |
| export type ContentfulBlogPostSortInput = { | |
| fields?: Maybe<Array<Maybe<ContentfulBlogPostFieldsEnum>>>, | |
| order?: Maybe<Array<Maybe<SortOrderEnum>>>, | |
| }; | |
| export type ContentfulCategory = Node & { | |
| __typename?: 'ContentfulCategory', | |
| id: Scalars['ID'], | |
| parent?: Maybe<Node>, | |
| children: Array<Node>, | |
| internal: Internal, | |
| title?: Maybe<Scalars['String']>, | |
| slug?: Maybe<Scalars['String']>, | |
| featuredImage?: Maybe<ContentfulAsset>, | |
| blogpost?: Maybe<Array<Maybe<ContentfulBlogPost>>>, | |
| spaceId?: Maybe<Scalars['String']>, | |
| contentful_id?: Maybe<Scalars['String']>, | |
| createdAt?: Maybe<Scalars['Date']>, | |
| updatedAt?: Maybe<Scalars['Date']>, | |
| node_locale?: Maybe<Scalars['String']>, | |
| menu?: Maybe<Array<Maybe<ContentfulMenu>>>, | |
| product?: Maybe<Array<Maybe<ContentfulProduct>>>, | |
| body?: Maybe<ContentfulCategoryBodyRichTextNode>, | |
| childContentfulCategoryBodyRichTextNode?: Maybe<ContentfulCategoryBodyRichTextNode>, | |
| }; | |
| export type ContentfulCategoryCreatedAtArgs = { | |
| formatString?: Maybe<Scalars['String']>, | |
| fromNow?: Maybe<Scalars['Boolean']>, | |
| difference?: Maybe<Scalars['String']>, | |
| locale?: Maybe<Scalars['String']> | |
| }; | |
| export type ContentfulCategoryUpdatedAtArgs = { | |
| formatString?: Maybe<Scalars['String']>, | |
| fromNow?: Maybe<Scalars['Boolean']>, | |
| difference?: Maybe<Scalars['String']>, | |
| locale?: Maybe<Scalars['String']> | |
| }; | |
| export type ContentfulCategoryBodyRichTextNode = Node & { | |
| __typename?: 'contentfulCategoryBodyRichTextNode', | |
| id: Scalars['ID'], | |
| parent?: Maybe<Node>, | |
| children: Array<Node>, | |
| internal: Internal, | |
| content?: Maybe<Array<Maybe<ContentfulCategoryBodyRichTextNodeContent>>>, | |
| nodeType?: Maybe<Scalars['String']>, | |
| body?: Maybe<Scalars['String']>, | |
| json?: Maybe<Scalars['JSON']>, | |
| childContentfulRichText?: Maybe<ContentfulRichText>, | |
| }; | |
| export type ContentfulCategoryBodyRichTextNodeConnection = { | |
| __typename?: 'contentfulCategoryBodyRichTextNodeConnection', | |
| totalCount: Scalars['Int'], | |
| edges: Array<ContentfulCategoryBodyRichTextNodeEdge>, | |
| nodes: Array<ContentfulCategoryBodyRichTextNode>, | |
| pageInfo: PageInfo, | |
| distinct: Array<Scalars['String']>, | |
| group: Array<ContentfulCategoryBodyRichTextNodeGroupConnection>, | |
| }; | |
| export type ContentfulCategoryBodyRichTextNodeConnectionDistinctArgs = { | |
| field: ContentfulCategoryBodyRichTextNodeFieldsEnum | |
| }; | |
| export type ContentfulCategoryBodyRichTextNodeConnectionGroupArgs = { | |
| skip?: Maybe<Scalars['Int']>, | |
| limit?: Maybe<Scalars['Int']>, | |
| field: ContentfulCategoryBodyRichTextNodeFieldsEnum | |
| }; | |
| export type ContentfulCategoryBodyRichTextNodeContent = { | |
| __typename?: 'contentfulCategoryBodyRichTextNodeContent', | |
| content?: Maybe<Array<Maybe<ContentfulCategoryBodyRichTextNodeContentContent>>>, | |
| nodeType?: Maybe<Scalars['String']>, | |
| }; | |
| export type ContentfulCategoryBodyRichTextNodeContentContent = { | |
| __typename?: 'contentfulCategoryBodyRichTextNodeContentContent', | |
| value?: Maybe<Scalars['String']>, | |
| nodeType?: Maybe<Scalars['String']>, | |
| }; | |
| export type ContentfulCategoryBodyRichTextNodeContentContentFilterInput = { | |
| value?: Maybe<StringQueryOperatorInput>, | |
| nodeType?: Maybe<StringQueryOperatorInput>, | |
| }; | |
| export type ContentfulCategoryBodyRichTextNodeContentContentFilterListInput = { | |
| elemMatch?: Maybe<ContentfulCategoryBodyRichTextNodeContentContentFilterInput>, | |
| }; | |
| export type ContentfulCategoryBodyRichTextNodeContentFilterInput = { | |
| content?: Maybe<ContentfulCategoryBodyRichTextNodeContentContentFilterListInput>, | |
| nodeType?: Maybe<StringQueryOperatorInput>, | |
| }; | |
| export type ContentfulCategoryBodyRichTextNodeContentFilterListInput = { | |
| elemMatch?: Maybe<ContentfulCategoryBodyRichTextNodeContentFilterInput>, | |
| }; | |
| export type ContentfulCategoryBodyRichTextNodeEdge = { | |
| __typename?: 'contentfulCategoryBodyRichTextNodeEdge', | |
| next?: Maybe<ContentfulCategoryBodyRichTextNode>, | |
| node: ContentfulCategoryBodyRichTextNode, | |
| previous?: Maybe<ContentfulCategoryBodyRichTextNode>, | |
| }; | |
| export enum ContentfulCategoryBodyRichTextNodeFieldsEnum { | |
| Id = 'id', | |
| ParentId = 'parent___id', | |
| ParentParentId = 'parent___parent___id', | |
| ParentParentParentId = 'parent___parent___parent___id', | |
| ParentParentParentChildren = 'parent___parent___parent___children', | |
| ParentParentChildren = 'parent___parent___children', | |
| ParentParentChildrenId = 'parent___parent___children___id', | |
| ParentParentChildrenChildren = 'parent___parent___children___children', | |
| ParentParentInternalContent = 'parent___parent___internal___content', | |
| ParentParentInternalContentDigest = 'parent___parent___internal___contentDigest', | |
| ParentParentInternalDescription = 'parent___parent___internal___description', | |
| ParentParentInternalFieldOwners = 'parent___parent___internal___fieldOwners', | |
| ParentParentInternalIgnoreType = 'parent___parent___internal___ignoreType', | |
| ParentParentInternalMediaType = 'parent___parent___internal___mediaType', | |
| ParentParentInternalOwner = 'parent___parent___internal___owner', | |
| ParentParentInternalType = 'parent___parent___internal___type', | |
| ParentChildren = 'parent___children', | |
| ParentChildrenId = 'parent___children___id', | |
| ParentChildrenParentId = 'parent___children___parent___id', | |
| ParentChildrenParentChildren = 'parent___children___parent___children', | |
| ParentChildrenChildren = 'parent___children___children', | |
| ParentChildrenChildrenId = 'parent___children___children___id', | |
| ParentChildrenChildrenChildren = 'parent___children___children___children', | |
| ParentChildrenInternalContent = 'parent___children___internal___content', | |
| ParentChildrenInternalContentDigest = 'parent___children___internal___contentDigest', | |
| ParentChildrenInternalDescription = 'parent___children___internal___description', | |
| ParentChildrenInternalFieldOwners = 'parent___children___internal___fieldOwners', | |
| ParentChildrenInternalIgnoreType = 'parent___children___internal___ignoreType', | |
| ParentChildrenInternalMediaType = 'parent___children___internal___mediaType', | |
| ParentChildrenInternalOwner = 'parent___children___internal___owner', | |
| ParentChildrenInternalType = 'parent___children___internal___type', | |
| ParentInternalContent = 'parent___internal___content', | |
| ParentInternalContentDigest = 'parent___internal___contentDigest', | |
| ParentInternalDescription = 'parent___internal___description', | |
| ParentInternalFieldOwners = 'parent___internal___fieldOwners', | |
| ParentInternalIgnoreType = 'parent___internal___ignoreType', | |
| ParentInternalMediaType = 'parent___internal___mediaType', | |
| ParentInternalOwner = 'parent___internal___owner', | |
| ParentInternalType = 'parent___internal___type', | |
| Children = 'children', | |
| ChildrenId = 'children___id', | |
| ChildrenParentId = 'children___parent___id', | |
| ChildrenParentParentId = 'children___parent___parent___id', | |
| ChildrenParentParentChildren = 'children___parent___parent___children', | |
| ChildrenParentChildren = 'children___parent___children', | |
| ChildrenParentChildrenId = 'children___parent___children___id', | |
| ChildrenParentChildrenChildren = 'children___parent___children___children', | |
| ChildrenParentInternalContent = 'children___parent___internal___content', | |
| ChildrenParentInternalContentDigest = 'children___parent___internal___contentDigest', | |
| ChildrenParentInternalDescription = 'children___parent___internal___description', | |
| ChildrenParentInternalFieldOwners = 'children___parent___internal___fieldOwners', | |
| ChildrenParentInternalIgnoreType = 'children___parent___internal___ignoreType', | |
| ChildrenParentInternalMediaType = 'children___parent___internal___mediaType', | |
| ChildrenParentInternalOwner = 'children___parent___internal___owner', | |
| ChildrenParentInternalType = 'children___parent___internal___type', | |
| ChildrenChildren = 'children___children', | |
| ChildrenChildrenId = 'children___children___id', | |
| ChildrenChildrenParentId = 'children___children___parent___id', | |
| ChildrenChildrenParentChildren = 'children___children___parent___children', | |
| ChildrenChildrenChildren = 'children___children___children', | |
| ChildrenChildrenChildrenId = 'children___children___children___id', | |
| ChildrenChildrenChildrenChildren = 'children___children___children___children', | |
| ChildrenChildrenInternalContent = 'children___children___internal___content', | |
| ChildrenChildrenInternalContentDigest = 'children___children___internal___contentDigest', | |
| ChildrenChildrenInternalDescription = 'children___children___internal___description', | |
| ChildrenChildrenInternalFieldOwners = 'children___children___internal___fieldOwners', | |
| ChildrenChildrenInternalIgnoreType = 'children___children___internal___ignoreType', | |
| ChildrenChildrenInternalMediaType = 'children___children___internal___mediaType', | |
| ChildrenChildrenInternalOwner = 'children___children___internal___owner', | |
| ChildrenChildrenInternalType = 'children___children___internal___type', | |
| ChildrenInternalContent = 'children___internal___content', | |
| ChildrenInternalContentDigest = 'children___internal___contentDigest', | |
| ChildrenInternalDescription = 'children___internal___description', | |
| ChildrenInternalFieldOwners = 'children___internal___fieldOwners', | |
| ChildrenInternalIgnoreType = 'children___internal___ignoreType', | |
| ChildrenInternalMediaType = 'children___internal___mediaType', | |
| ChildrenInternalOwner = 'children___internal___owner', | |
| ChildrenInternalType = 'children___internal___type', | |
| InternalContent = 'internal___content', | |
| InternalContentDigest = 'internal___contentDigest', | |
| InternalDescription = 'internal___description', | |
| InternalFieldOwners = 'internal___fieldOwners', | |
| InternalIgnoreType = 'internal___ignoreType', | |
| InternalMediaType = 'internal___mediaType', | |
| InternalOwner = 'internal___owner', | |
| InternalType = 'internal___type', | |
| Content = 'content', | |
| ContentContent = 'content___content', | |
| ContentContentValue = 'content___content___value', | |
| ContentContentNodeType = 'content___content___nodeType', | |
| ContentNodeType = 'content___nodeType', | |
| NodeType = 'nodeType', | |
| Body = 'body', | |
| Json = 'json', | |
| ChildContentfulRichTextId = 'childContentfulRichText___id', | |
| ChildContentfulRichTextParentId = 'childContentfulRichText___parent___id', | |
| ChildContentfulRichTextParentParentId = 'childContentfulRichText___parent___parent___id', | |
| ChildContentfulRichTextParentParentChildren = 'childContentfulRichText___parent___parent___children', | |
| ChildContentfulRichTextParentChildren = 'childContentfulRichText___parent___children', | |
| ChildContentfulRichTextParentChildrenId = 'childContentfulRichText___parent___children___id', | |
| ChildContentfulRichTextParentChildrenChildren = 'childContentfulRichText___parent___children___children', | |
| ChildContentfulRichTextParentInternalContent = 'childContentfulRichText___parent___internal___content', | |
| ChildContentfulRichTextParentInternalContentDigest = 'childContentfulRichText___parent___internal___contentDigest', | |
| ChildContentfulRichTextParentInternalDescription = 'childContentfulRichText___parent___internal___description', | |
| ChildContentfulRichTextParentInternalFieldOwners = 'childContentfulRichText___parent___internal___fieldOwners', | |
| ChildContentfulRichTextParentInternalIgnoreType = 'childContentfulRichText___parent___internal___ignoreType', | |
| ChildContentfulRichTextParentInternalMediaType = 'childContentfulRichText___parent___internal___mediaType', | |
| ChildContentfulRichTextParentInternalOwner = 'childContentfulRichText___parent___internal___owner', | |
| ChildContentfulRichTextParentInternalType = 'childContentfulRichText___parent___internal___type', | |
| ChildContentfulRichTextChildren = 'childContentfulRichText___children', | |
| ChildContentfulRichTextChildrenId = 'childContentfulRichText___children___id', | |
| ChildContentfulRichTextChildrenParentId = 'childContentfulRichText___children___parent___id', | |
| ChildContentfulRichTextChildrenParentChildren = 'childContentfulRichText___children___parent___children', | |
| ChildContentfulRichTextChildrenChildren = 'childContentfulRichText___children___children', | |
| ChildContentfulRichTextChildrenChildrenId = 'childContentfulRichText___children___children___id', | |
| ChildContentfulRichTextChildrenChildrenChildren = 'childContentfulRichText___children___children___children', | |
| ChildContentfulRichTextChildrenInternalContent = 'childContentfulRichText___children___internal___content', | |
| ChildContentfulRichTextChildrenInternalContentDigest = 'childContentfulRichText___children___internal___contentDigest', | |
| ChildContentfulRichTextChildrenInternalDescription = 'childContentfulRichText___children___internal___description', | |
| ChildContentfulRichTextChildrenInternalFieldOwners = 'childContentfulRichText___children___internal___fieldOwners', | |
| ChildContentfulRichTextChildrenInternalIgnoreType = 'childContentfulRichText___children___internal___ignoreType', | |
| ChildContentfulRichTextChildrenInternalMediaType = 'childContentfulRichText___children___internal___mediaType', | |
| ChildContentfulRichTextChildrenInternalOwner = 'childContentfulRichText___children___internal___owner', | |
| ChildContentfulRichTextChildrenInternalType = 'childContentfulRichText___children___internal___type', | |
| ChildContentfulRichTextInternalContent = 'childContentfulRichText___internal___content', | |
| ChildContentfulRichTextInternalContentDigest = 'childContentfulRichText___internal___contentDigest', | |
| ChildContentfulRichTextInternalDescription = 'childContentfulRichText___internal___description', | |
| ChildContentfulRichTextInternalFieldOwners = 'childContentfulRichText___internal___fieldOwners', | |
| ChildContentfulRichTextInternalIgnoreType = 'childContentfulRichText___internal___ignoreType', | |
| ChildContentfulRichTextInternalMediaType = 'childContentfulRichText___internal___mediaType', | |
| ChildContentfulRichTextInternalOwner = 'childContentfulRichText___internal___owner', | |
| ChildContentfulRichTextInternalType = 'childContentfulRichText___internal___type', | |
| ChildContentfulRichTextHtml = 'childContentfulRichText___html', | |
| ChildContentfulRichTextTimeToRead = 'childContentfulRichText___timeToRead' | |
| } | |
| export type ContentfulCategoryBodyRichTextNodeFilterInput = { | |
| id?: Maybe<StringQueryOperatorInput>, | |
| parent?: Maybe<NodeFilterInput>, | |
| children?: Maybe<NodeFilterListInput>, | |
| internal?: Maybe<InternalFilterInput>, | |
| content?: Maybe<ContentfulCategoryBodyRichTextNodeContentFilterListInput>, | |
| nodeType?: Maybe<StringQueryOperatorInput>, | |
| body?: Maybe<StringQueryOperatorInput>, | |
| json?: Maybe<JsonQueryOperatorInput>, | |
| childContentfulRichText?: Maybe<ContentfulRichTextFilterInput>, | |
| }; | |
| export type ContentfulCategoryBodyRichTextNodeGroupConnection = { | |
| __typename?: 'contentfulCategoryBodyRichTextNodeGroupConnection', | |
| totalCount: Scalars['Int'], | |
| edges: Array<ContentfulCategoryBodyRichTextNodeEdge>, | |
| nodes: Array<ContentfulCategoryBodyRichTextNode>, | |
| pageInfo: PageInfo, | |
| field: Scalars['String'], | |
| fieldValue?: Maybe<Scalars['String']>, | |
| }; | |
| export type ContentfulCategoryBodyRichTextNodeSortInput = { | |
| fields?: Maybe<Array<Maybe<ContentfulCategoryBodyRichTextNodeFieldsEnum>>>, | |
| order?: Maybe<Array<Maybe<SortOrderEnum>>>, | |
| }; | |
| export type ContentfulCategoryConnection = { | |
| __typename?: 'ContentfulCategoryConnection', | |
| totalCount: Scalars['Int'], | |
| edges: Array<ContentfulCategoryEdge>, | |
| nodes: Array<ContentfulCategory>, | |
| pageInfo: PageInfo, | |
| distinct: Array<Scalars['String']>, | |
| group: Array<ContentfulCategoryGroupConnection>, | |
| }; | |
| export type ContentfulCategoryConnectionDistinctArgs = { | |
| field: ContentfulCategoryFieldsEnum | |
| }; | |
| export type ContentfulCategoryConnectionGroupArgs = { | |
| skip?: Maybe<Scalars['Int']>, | |
| limit?: Maybe<Scalars['Int']>, | |
| field: ContentfulCategoryFieldsEnum | |
| }; | |
| export type ContentfulCategoryEdge = { | |
| __typename?: 'ContentfulCategoryEdge', | |
| next?: Maybe<ContentfulCategory>, | |
| node: ContentfulCategory, | |
| previous?: Maybe<ContentfulCategory>, | |
| }; | |
| export enum ContentfulCategoryFieldsEnum { | |
| Id = 'id', | |
| ParentId = 'parent___id', | |
| ParentParentId = 'parent___parent___id', | |
| ParentParentParentId = 'parent___parent___parent___id', | |
| ParentParentParentChildren = 'parent___parent___parent___children', | |
| ParentParentChildren = 'parent___parent___children', | |
| ParentParentChildrenId = 'parent___parent___children___id', | |
| ParentParentChildrenChildren = 'parent___parent___children___children', | |
| ParentParentInternalContent = 'parent___parent___internal___content', | |
| ParentParentInternalContentDigest = 'parent___parent___internal___contentDigest', | |
| ParentParentInternalDescription = 'parent___parent___internal___description', | |
| ParentParentInternalFieldOwners = 'parent___parent___internal___fieldOwners', | |
| ParentParentInternalIgnoreType = 'parent___parent___internal___ignoreType', | |
| ParentParentInternalMediaType = 'parent___parent___internal___mediaType', | |
| ParentParentInternalOwner = 'parent___parent___internal___owner', | |
| ParentParentInternalType = 'parent___parent___internal___type', | |
| ParentChildren = 'parent___children', | |
| ParentChildrenId = 'parent___children___id', | |
| ParentChildrenParentId = 'parent___children___parent___id', | |
| ParentChildrenParentChildren = 'parent___children___parent___children', | |
| ParentChildrenChildren = 'parent___children___children', | |
| ParentChildrenChildrenId = 'parent___children___children___id', | |
| ParentChildrenChildrenChildren = 'parent___children___children___children', | |
| ParentChildrenInternalContent = 'parent___children___internal___content', | |
| ParentChildrenInternalContentDigest = 'parent___children___internal___contentDigest', | |
| ParentChildrenInternalDescription = 'parent___children___internal___description', | |
| ParentChildrenInternalFieldOwners = 'parent___children___internal___fieldOwners', | |
| ParentChildrenInternalIgnoreType = 'parent___children___internal___ignoreType', | |
| ParentChildrenInternalMediaType = 'parent___children___internal___mediaType', | |
| ParentChildrenInternalOwner = 'parent___children___internal___owner', | |
| ParentChildrenInternalType = 'parent___children___internal___type', | |
| ParentInternalContent = 'parent___internal___content', | |
| ParentInternalContentDigest = 'parent___internal___contentDigest', | |
| ParentInternalDescription = 'parent___internal___description', | |
| ParentInternalFieldOwners = 'parent___internal___fieldOwners', | |
| ParentInternalIgnoreType = 'parent___internal___ignoreType', | |
| ParentInternalMediaType = 'parent___internal___mediaType', | |
| ParentInternalOwner = 'parent___internal___owner', | |
| ParentInternalType = 'parent___internal___type', | |
| Children = 'children', | |
| ChildrenId = 'children___id', | |
| ChildrenParentId = 'children___parent___id', | |
| ChildrenParentParentId = 'children___parent___parent___id', | |
| ChildrenParentParentChildren = 'children___parent___parent___children', | |
| ChildrenParentChildren = 'children___parent___children', | |
| ChildrenParentChildrenId = 'children___parent___children___id', | |
| ChildrenParentChildrenChildren = 'children___parent___children___children', | |
| ChildrenParentInternalContent = 'children___parent___internal___content', | |
| ChildrenParentInternalContentDigest = 'children___parent___internal___contentDigest', | |
| ChildrenParentInternalDescription = 'children___parent___internal___description', | |
| ChildrenParentInternalFieldOwners = 'children___parent___internal___fieldOwners', | |
| ChildrenParentInternalIgnoreType = 'children___parent___internal___ignoreType', | |
| ChildrenParentInternalMediaType = 'children___parent___internal___mediaType', | |
| ChildrenParentInternalOwner = 'children___parent___internal___owner', | |
| ChildrenParentInternalType = 'children___parent___internal___type', | |
| ChildrenChildren = 'children___children', | |
| ChildrenChildrenId = 'children___children___id', | |
| ChildrenChildrenParentId = 'children___children___parent___id', | |
| ChildrenChildrenParentChildren = 'children___children___parent___children', | |
| ChildrenChildrenChildren = 'children___children___children', | |
| ChildrenChildrenChildrenId = 'children___children___children___id', | |
| ChildrenChildrenChildrenChildren = 'children___children___children___children', | |
| ChildrenChildrenInternalContent = 'children___children___internal___content', | |
| ChildrenChildrenInternalContentDigest = 'children___children___internal___contentDigest', | |
| ChildrenChildrenInternalDescription = 'children___children___internal___description', | |
| ChildrenChildrenInternalFieldOwners = 'children___children___internal___fieldOwners', | |
| ChildrenChildrenInternalIgnoreType = 'children___children___internal___ignoreType', | |
| ChildrenChildrenInternalMediaType = 'children___children___internal___mediaType', | |
| ChildrenChildrenInternalOwner = 'children___children___internal___owner', | |
| ChildrenChildrenInternalType = 'children___children___internal___type', | |
| ChildrenInternalContent = 'children___internal___content', | |
| ChildrenInternalContentDigest = 'children___internal___contentDigest', | |
| ChildrenInternalDescription = 'children___internal___description', | |
| ChildrenInternalFieldOwners = 'children___internal___fieldOwners', | |
| ChildrenInternalIgnoreType = 'children___internal___ignoreType', | |
| ChildrenInternalMediaType = 'children___internal___mediaType', | |
| ChildrenInternalOwner = 'children___internal___owner', | |
| ChildrenInternalType = 'children___internal___type', | |
| InternalContent = 'internal___content', | |
| InternalContentDigest = 'internal___contentDigest', | |
| InternalDescription = 'internal___description', | |
| InternalFieldOwners = 'internal___fieldOwners', | |
| InternalIgnoreType = 'internal___ignoreType', | |
| InternalMediaType = 'internal___mediaType', | |
| InternalOwner = 'internal___owner', | |
| InternalType = 'internal___type', | |
| Title = 'title', | |
| Slug = 'slug', | |
| FeaturedImageId = 'featuredImage___id', | |
| FeaturedImageParentId = 'featuredImage___parent___id', | |
| FeaturedImageParentParentId = 'featuredImage___parent___parent___id', | |
| FeaturedImageParentParentChildren = 'featuredImage___parent___parent___children', | |
| FeaturedImageParentChildren = 'featuredImage___parent___children', | |
| FeaturedImageParentChildrenId = 'featuredImage___parent___children___id', | |
| FeaturedImageParentChildrenChildren = 'featuredImage___parent___children___children', | |
| FeaturedImageParentInternalContent = 'featuredImage___parent___internal___content', | |
| FeaturedImageParentInternalContentDigest = 'featuredImage___parent___internal___contentDigest', | |
| FeaturedImageParentInternalDescription = 'featuredImage___parent___internal___description', | |
| FeaturedImageParentInternalFieldOwners = 'featuredImage___parent___internal___fieldOwners', | |
| FeaturedImageParentInternalIgnoreType = 'featuredImage___parent___internal___ignoreType', | |
| FeaturedImageParentInternalMediaType = 'featuredImage___parent___internal___mediaType', | |
| FeaturedImageParentInternalOwner = 'featuredImage___parent___internal___owner', | |
| FeaturedImageParentInternalType = 'featuredImage___parent___internal___type', | |
| FeaturedImageChildren = 'featuredImage___children', | |
| FeaturedImageChildrenId = 'featuredImage___children___id', | |
| FeaturedImageChildrenParentId = 'featuredImage___children___parent___id', | |
| FeaturedImageChildrenParentChildren = 'featuredImage___children___parent___children', | |
| FeaturedImageChildrenChildren = 'featuredImage___children___children', | |
| FeaturedImageChildrenChildrenId = 'featuredImage___children___children___id', | |
| FeaturedImageChildrenChildrenChildren = 'featuredImage___children___children___children', | |
| FeaturedImageChildrenInternalContent = 'featuredImage___children___internal___content', | |
| FeaturedImageChildrenInternalContentDigest = 'featuredImage___children___internal___contentDigest', | |
| FeaturedImageChildrenInternalDescription = 'featuredImage___children___internal___description', | |
| FeaturedImageChildrenInternalFieldOwners = 'featuredImage___children___internal___fieldOwners', | |
| FeaturedImageChildrenInternalIgnoreType = 'featuredImage___children___internal___ignoreType', | |
| FeaturedImageChildrenInternalMediaType = 'featuredImage___children___internal___mediaType', | |
| FeaturedImageChildrenInternalOwner = 'featuredImage___children___internal___owner', | |
| FeaturedImageChildrenInternalType = 'featuredImage___children___internal___type', | |
| FeaturedImageInternalContent = 'featuredImage___internal___content', | |
| FeaturedImageInternalContentDigest = 'featuredImage___internal___contentDigest', | |
| FeaturedImageInternalDescription = 'featuredImage___internal___description', | |
| FeaturedImageInternalFieldOwners = 'featuredImage___internal___fieldOwners', | |
| FeaturedImageInternalIgnoreType = 'featuredImage___internal___ignoreType', | |
| FeaturedImageInternalMediaType = 'featuredImage___internal___mediaType', | |
| FeaturedImageInternalOwner = 'featuredImage___internal___owner', | |
| FeaturedImageInternalType = 'featuredImage___internal___type', | |
| FeaturedImageContentfulId = 'featuredImage___contentful_id', | |
| FeaturedImageFileUrl = 'featuredImage___file___url', | |
| FeaturedImageFileDetailsSize = 'featuredImage___file___details___size', | |
| FeaturedImageFileFileName = 'featuredImage___file___fileName', | |
| FeaturedImageFileContentType = 'featuredImage___file___contentType', | |
| FeaturedImageTitle = 'featuredImage___title', | |
| FeaturedImageDescription = 'featuredImage___description', | |
| FeaturedImageNodeLocale = 'featuredImage___node_locale', | |
| FeaturedImageFixedBase64 = 'featuredImage___fixed___base64', | |
| FeaturedImageFixedTracedSvg = 'featuredImage___fixed___tracedSVG', | |
| FeaturedImageFixedAspectRatio = 'featuredImage___fixed___aspectRatio', | |
| FeaturedImageFixedWidth = 'featuredImage___fixed___width', | |
| FeaturedImageFixedHeight = 'featuredImage___fixed___height', | |
| FeaturedImageFixedSrc = 'featuredImage___fixed___src', | |
| FeaturedImageFixedSrcSet = 'featuredImage___fixed___srcSet', | |
| FeaturedImageFixedSrcWebp = 'featuredImage___fixed___srcWebp', | |
| FeaturedImageFixedSrcSetWebp = 'featuredImage___fixed___srcSetWebp', | |
| FeaturedImageResolutionsBase64 = 'featuredImage___resolutions___base64', | |
| FeaturedImageResolutionsTracedSvg = 'featuredImage___resolutions___tracedSVG', | |
| FeaturedImageResolutionsAspectRatio = 'featuredImage___resolutions___aspectRatio', | |
| FeaturedImageResolutionsWidth = 'featuredImage___resolutions___width', | |
| FeaturedImageResolutionsHeight = 'featuredImage___resolutions___height', | |
| FeaturedImageResolutionsSrc = 'featuredImage___resolutions___src', | |
| FeaturedImageResolutionsSrcSet = 'featuredImage___resolutions___srcSet', | |
| FeaturedImageResolutionsSrcWebp = 'featuredImage___resolutions___srcWebp', | |
| FeaturedImageResolutionsSrcSetWebp = 'featuredImage___resolutions___srcSetWebp', | |
| FeaturedImageFluidBase64 = 'featuredImage___fluid___base64', | |
| FeaturedImageFluidTracedSvg = 'featuredImage___fluid___tracedSVG', | |
| FeaturedImageFluidAspectRatio = 'featuredImage___fluid___aspectRatio', | |
| FeaturedImageFluidSrc = 'featuredImage___fluid___src', | |
| FeaturedImageFluidSrcSet = 'featuredImage___fluid___srcSet', | |
| FeaturedImageFluidSrcWebp = 'featuredImage___fluid___srcWebp', | |
| FeaturedImageFluidSrcSetWebp = 'featuredImage___fluid___srcSetWebp', | |
| FeaturedImageFluidSizes = 'featuredImage___fluid___sizes', | |
| FeaturedImageSizesBase64 = 'featuredImage___sizes___base64', | |
| FeaturedImageSizesTracedSvg = 'featuredImage___sizes___tracedSVG', | |
| FeaturedImageSizesAspectRatio = 'featuredImage___sizes___aspectRatio', | |
| FeaturedImageSizesSrc = 'featuredImage___sizes___src', | |
| FeaturedImageSizesSrcSet = 'featuredImage___sizes___srcSet', | |
| FeaturedImageSizesSrcWebp = 'featuredImage___sizes___srcWebp', | |
| FeaturedImageSizesSrcSetWebp = 'featuredImage___sizes___srcSetWebp', | |
| FeaturedImageSizesSizes = 'featuredImage___sizes___sizes', | |
| FeaturedImageResizeBase64 = 'featuredImage___resize___base64', | |
| FeaturedImageResizeTracedSvg = 'featuredImage___resize___tracedSVG', | |
| FeaturedImageResizeSrc = 'featuredImage___resize___src', | |
| FeaturedImageResizeWidth = 'featuredImage___resize___width', | |
| FeaturedImageResizeHeight = 'featuredImage___resize___height', | |
| FeaturedImageResizeAspectRatio = 'featuredImage___resize___aspectRatio', | |
| Blogpost = 'blogpost', | |
| BlogpostId = 'blogpost___id', | |
| BlogpostParentId = 'blogpost___parent___id', | |
| BlogpostParentParentId = 'blogpost___parent___parent___id', | |
| BlogpostParentParentChildren = 'blogpost___parent___parent___children', | |
| BlogpostParentChildren = 'blogpost___parent___children', | |
| BlogpostParentChildrenId = 'blogpost___parent___children___id', | |
| BlogpostParentChildrenChildren = 'blogpost___parent___children___children', | |
| BlogpostParentInternalContent = 'blogpost___parent___internal___content', | |
| BlogpostParentInternalContentDigest = 'blogpost___parent___internal___contentDigest', | |
| BlogpostParentInternalDescription = 'blogpost___parent___internal___description', | |
| BlogpostParentInternalFieldOwners = 'blogpost___parent___internal___fieldOwners', | |
| BlogpostParentInternalIgnoreType = 'blogpost___parent___internal___ignoreType', | |
| BlogpostParentInternalMediaType = 'blogpost___parent___internal___mediaType', | |
| BlogpostParentInternalOwner = 'blogpost___parent___internal___owner', | |
| BlogpostParentInternalType = 'blogpost___parent___internal___type', | |
| BlogpostChildren = 'blogpost___children', | |
| BlogpostChildrenId = 'blogpost___children___id', | |
| BlogpostChildrenParentId = 'blogpost___children___parent___id', | |
| BlogpostChildrenParentChildren = 'blogpost___children___parent___children', | |
| BlogpostChildrenChildren = 'blogpost___children___children', | |
| BlogpostChildrenChildrenId = 'blogpost___children___children___id', | |
| BlogpostChildrenChildrenChildren = 'blogpost___children___children___children', | |
| BlogpostChildrenInternalContent = 'blogpost___children___internal___content', | |
| BlogpostChildrenInternalContentDigest = 'blogpost___children___internal___contentDigest', | |
| BlogpostChildrenInternalDescription = 'blogpost___children___internal___description', | |
| BlogpostChildrenInternalFieldOwners = 'blogpost___children___internal___fieldOwners', | |
| BlogpostChildrenInternalIgnoreType = 'blogpost___children___internal___ignoreType', | |
| BlogpostChildrenInternalMediaType = 'blogpost___children___internal___mediaType', | |
| BlogpostChildrenInternalOwner = 'blogpost___children___internal___owner', | |
| BlogpostChildrenInternalType = 'blogpost___children___internal___type', | |
| BlogpostInternalContent = 'blogpost___internal___content', | |
| BlogpostInternalContentDigest = 'blogpost___internal___contentDigest', | |
| BlogpostInternalDescription = 'blogpost___internal___description', | |
| BlogpostInternalFieldOwners = 'blogpost___internal___fieldOwners', | |
| BlogpostInternalIgnoreType = 'blogpost___internal___ignoreType', | |
| BlogpostInternalMediaType = 'blogpost___internal___mediaType', | |
| BlogpostInternalOwner = 'blogpost___internal___owner', | |
| BlogpostInternalType = 'blogpost___internal___type', | |
| BlogpostTitle = 'blogpost___title', | |
| BlogpostSlug = 'blogpost___slug', | |
| BlogpostPublishDate = 'blogpost___publishDate', | |
| BlogpostFeaturedImageId = 'blogpost___featuredImage___id', | |
| BlogpostFeaturedImageParentId = 'blogpost___featuredImage___parent___id', | |
| BlogpostFeaturedImageParentChildren = 'blogpost___featuredImage___parent___children', | |
| BlogpostFeaturedImageChildren = 'blogpost___featuredImage___children', | |
| BlogpostFeaturedImageChildrenId = 'blogpost___featuredImage___children___id', | |
| BlogpostFeaturedImageChildrenChildren = 'blogpost___featuredImage___children___children', | |
| BlogpostFeaturedImageInternalContent = 'blogpost___featuredImage___internal___content', | |
| BlogpostFeaturedImageInternalContentDigest = 'blogpost___featuredImage___internal___contentDigest', | |
| BlogpostFeaturedImageInternalDescription = 'blogpost___featuredImage___internal___description', | |
| BlogpostFeaturedImageInternalFieldOwners = 'blogpost___featuredImage___internal___fieldOwners', | |
| BlogpostFeaturedImageInternalIgnoreType = 'blogpost___featuredImage___internal___ignoreType', | |
| BlogpostFeaturedImageInternalMediaType = 'blogpost___featuredImage___internal___mediaType', | |
| BlogpostFeaturedImageInternalOwner = 'blogpost___featuredImage___internal___owner', | |
| BlogpostFeaturedImageInternalType = 'blogpost___featuredImage___internal___type', | |
| BlogpostFeaturedImageContentfulId = 'blogpost___featuredImage___contentful_id', | |
| BlogpostFeaturedImageFileUrl = 'blogpost___featuredImage___file___url', | |
| BlogpostFeaturedImageFileFileName = 'blogpost___featuredImage___file___fileName', | |
| BlogpostFeaturedImageFileContentType = 'blogpost___featuredImage___file___contentType', | |
| BlogpostFeaturedImageTitle = 'blogpost___featuredImage___title', | |
| BlogpostFeaturedImageDescription = 'blogpost___featuredImage___description', | |
| BlogpostFeaturedImageNodeLocale = 'blogpost___featuredImage___node_locale', | |
| BlogpostFeaturedImageFixedBase64 = 'blogpost___featuredImage___fixed___base64', | |
| BlogpostFeaturedImageFixedTracedSvg = 'blogpost___featuredImage___fixed___tracedSVG', | |
| BlogpostFeaturedImageFixedAspectRatio = 'blogpost___featuredImage___fixed___aspectRatio', | |
| BlogpostFeaturedImageFixedWidth = 'blogpost___featuredImage___fixed___width', | |
| BlogpostFeaturedImageFixedHeight = 'blogpost___featuredImage___fixed___height', | |
| BlogpostFeaturedImageFixedSrc = 'blogpost___featuredImage___fixed___src', | |
| BlogpostFeaturedImageFixedSrcSet = 'blogpost___featuredImage___fixed___srcSet', | |
| BlogpostFeaturedImageFixedSrcWebp = 'blogpost___featuredImage___fixed___srcWebp', | |
| BlogpostFeaturedImageFixedSrcSetWebp = 'blogpost___featuredImage___fixed___srcSetWebp', | |
| BlogpostFeaturedImageResolutionsBase64 = 'blogpost___featuredImage___resolutions___base64', | |
| BlogpostFeaturedImageResolutionsTracedSvg = 'blogpost___featuredImage___resolutions___tracedSVG', | |
| BlogpostFeaturedImageResolutionsAspectRatio = 'blogpost___featuredImage___resolutions___aspectRatio', | |
| BlogpostFeaturedImageResolutionsWidth = 'blogpost___featuredImage___resolutions___width', | |
| BlogpostFeaturedImageResolutionsHeight = 'blogpost___featuredImage___resolutions___height', | |
| BlogpostFeaturedImageResolutionsSrc = 'blogpost___featuredImage___resolutions___src', | |
| BlogpostFeaturedImageResolutionsSrcSet = 'blogpost___featuredImage___resolutions___srcSet', | |
| BlogpostFeaturedImageResolutionsSrcWebp = 'blogpost___featuredImage___resolutions___srcWebp', | |
| BlogpostFeaturedImageResolutionsSrcSetWebp = 'blogpost___featuredImage___resolutions___srcSetWebp', | |
| BlogpostFeaturedImageFluidBase64 = 'blogpost___featuredImage___fluid___base64', | |
| BlogpostFeaturedImageFluidTracedSvg = 'blogpost___featuredImage___fluid___tracedSVG', | |
| BlogpostFeaturedImageFluidAspectRatio = 'blogpost___featuredImage___fluid___aspectRatio', | |
| BlogpostFeaturedImageFluidSrc = 'blogpost___featuredImage___fluid___src', | |
| BlogpostFeaturedImageFluidSrcSet = 'blogpost___featuredImage___fluid___srcSet', | |
| BlogpostFeaturedImageFluidSrcWebp = 'blogpost___featuredImage___fluid___srcWebp', | |
| BlogpostFeaturedImageFluidSrcSetWebp = 'blogpost___featuredImage___fluid___srcSetWebp', | |
| BlogpostFeaturedImageFluidSizes = 'blogpost___featuredImage___fluid___sizes', | |
| BlogpostFeaturedImageSizesBase64 = 'blogpost___featuredImage___sizes___base64', | |
| BlogpostFeaturedImageSizesTracedSvg = 'blogpost___featuredImage___sizes___tracedSVG', | |
| BlogpostFeaturedImageSizesAspectRatio = 'blogpost___featuredImage___sizes___aspectRatio', | |
| BlogpostFeaturedImageSizesSrc = 'blogpost___featuredImage___sizes___src', | |
| BlogpostFeaturedImageSizesSrcSet = 'blogpost___featuredImage___sizes___srcSet', | |
| BlogpostFeaturedImageSizesSrcWebp = 'blogpost___featuredImage___sizes___srcWebp', | |
| BlogpostFeaturedImageSizesSrcSetWebp = 'blogpost___featuredImage___sizes___srcSetWebp', | |
| BlogpostFeaturedImageSizesSizes = 'blogpost___featuredImage___sizes___sizes', | |
| BlogpostFeaturedImageResizeBase64 = 'blogpost___featuredImage___resize___base64', | |
| BlogpostFeaturedImageResizeTracedSvg = 'blogpost___featuredImage___resize___tracedSVG', | |
| BlogpostFeaturedImageResizeSrc = 'blogpost___featuredImage___resize___src', | |
| BlogpostFeaturedImageResizeWidth = 'blogpost___featuredImage___resize___width', | |
| BlogpostFeaturedImageResizeHeight = 'blogpost___featuredImage___resize___height', | |
| BlogpostFeaturedImageResizeAspectRatio = 'blogpost___featuredImage___resize___aspectRatio', | |
| BlogpostCategories = 'blogpost___categories', | |
| BlogpostCategoriesId = 'blogpost___categories___id', | |
| BlogpostCategoriesParentId = 'blogpost___categories___parent___id', | |
| BlogpostCategoriesParentChildren = 'blogpost___categories___parent___children', | |
| BlogpostCategoriesChildren = 'blogpost___categories___children', | |
| BlogpostCategoriesChildrenId = 'blogpost___categories___children___id', | |
| BlogpostCategoriesChildrenChildren = 'blogpost___categories___children___children', | |
| BlogpostCategoriesInternalContent = 'blogpost___categories___internal___content', | |
| BlogpostCategoriesInternalContentDigest = 'blogpost___categories___internal___contentDigest', | |
| BlogpostCategoriesInternalDescription = 'blogpost___categories___internal___description', | |
| BlogpostCategoriesInternalFieldOwners = 'blogpost___categories___internal___fieldOwners', | |
| BlogpostCategoriesInternalIgnoreType = 'blogpost___categories___internal___ignoreType', | |
| BlogpostCategoriesInternalMediaType = 'blogpost___categories___internal___mediaType', | |
| BlogpostCategoriesInternalOwner = 'blogpost___categories___internal___owner', | |
| BlogpostCategoriesInternalType = 'blogpost___categories___internal___type', | |
| BlogpostCategoriesTitle = 'blogpost___categories___title', | |
| BlogpostCategoriesSlug = 'blogpost___categories___slug', | |
| BlogpostCategoriesFeaturedImageId = 'blogpost___categories___featuredImage___id', | |
| BlogpostCategoriesFeaturedImageChildren = 'blogpost___categories___featuredImage___children', | |
| BlogpostCategoriesFeaturedImageContentfulId = 'blogpost___categories___featuredImage___contentful_id', | |
| BlogpostCategoriesFeaturedImageTitle = 'blogpost___categories___featuredImage___title', | |
| BlogpostCategoriesFeaturedImageDescription = 'blogpost___categories___featuredImage___description', | |
| BlogpostCategoriesFeaturedImageNodeLocale = 'blogpost___categories___featuredImage___node_locale', | |
| BlogpostCategoriesBlogpost = 'blogpost___categories___blogpost', | |
| BlogpostCategoriesBlogpostId = 'blogpost___categories___blogpost___id', | |
| BlogpostCategoriesBlogpostChildren = 'blogpost___categories___blogpost___children', | |
| BlogpostCategoriesBlogpostTitle = 'blogpost___categories___blogpost___title', | |
| BlogpostCategoriesBlogpostSlug = 'blogpost___categories___blogpost___slug', | |
| BlogpostCategoriesBlogpostPublishDate = 'blogpost___categories___blogpost___publishDate', | |
| BlogpostCategoriesBlogpostCategories = 'blogpost___categories___blogpost___categories', | |
| BlogpostCategoriesBlogpostPage = 'blogpost___categories___blogpost___page', | |
| BlogpostCategoriesBlogpostSpaceId = 'blogpost___categories___blogpost___spaceId', | |
| BlogpostCategoriesBlogpostContentfulId = 'blogpost___categories___blogpost___contentful_id', | |
| BlogpostCategoriesBlogpostCreatedAt = 'blogpost___categories___blogpost___createdAt', | |
| BlogpostCategoriesBlogpostUpdatedAt = 'blogpost___categories___blogpost___updatedAt', | |
| BlogpostCategoriesBlogpostNodeLocale = 'blogpost___categories___blogpost___node_locale', | |
| BlogpostCategoriesSpaceId = 'blogpost___categories___spaceId', | |
| BlogpostCategoriesContentfulId = 'blogpost___categories___contentful_id', | |
| BlogpostCategoriesCreatedAt = 'blogpost___categories___createdAt', | |
| BlogpostCategoriesUpdatedAt = 'blogpost___categories___updatedAt', | |
| BlogpostCategoriesNodeLocale = 'blogpost___categories___node_locale', | |
| BlogpostCategoriesMenu = 'blogpost___categories___menu', | |
| BlogpostCategoriesMenuId = 'blogpost___categories___menu___id', | |
| BlogpostCategoriesMenuChildren = 'blogpost___categories___menu___children', | |
| BlogpostCategoriesMenuName = 'blogpost___categories___menu___name', | |
| BlogpostCategoriesMenuMenuItems = 'blogpost___categories___menu___menuItems', | |
| BlogpostCategoriesMenuSpaceId = 'blogpost___categories___menu___spaceId', | |
| BlogpostCategoriesMenuContentfulId = 'blogpost___categories___menu___contentful_id', | |
| BlogpostCategoriesMenuCreatedAt = 'blogpost___categories___menu___createdAt', | |
| BlogpostCategoriesMenuUpdatedAt = 'blogpost___categories___menu___updatedAt', | |
| BlogpostCategoriesMenuNodeLocale = 'blogpost___categories___menu___node_locale', | |
| BlogpostCategoriesProduct = 'blogpost___categories___product', | |
| BlogpostCategoriesProductId = 'blogpost___categories___product___id', | |
| BlogpostCategoriesProductChildren = 'blogpost___categories___product___children', | |
| BlogpostCategoriesProductTitle = 'blogpost___categories___product___title', | |
| BlogpostCategoriesProductSlug = 'blogpost___categories___product___slug', | |
| BlogpostCategoriesProductPrice = 'blogpost___categories___product___price', | |
| BlogpostCategoriesProductCategories = 'blogpost___categories___product___categories', | |
| BlogpostCategoriesProductSpaceId = 'blogpost___categories___product___spaceId', | |
| BlogpostCategoriesProductContentfulId = 'blogpost___categories___product___contentful_id', | |
| BlogpostCategoriesProductCreatedAt = 'blogpost___categories___product___createdAt', | |
| BlogpostCategoriesProductUpdatedAt = 'blogpost___categories___product___updatedAt', | |
| BlogpostCategoriesProductNodeLocale = 'blogpost___categories___product___node_locale', | |
| BlogpostCategoriesBodyId = 'blogpost___categories___body___id', | |
| BlogpostCategoriesBodyChildren = 'blogpost___categories___body___children', | |
| BlogpostCategoriesBodyContent = 'blogpost___categories___body___content', | |
| BlogpostCategoriesBodyNodeType = 'blogpost___categories___body___nodeType', | |
| BlogpostCategoriesBodyBody = 'blogpost___categories___body___body', | |
| BlogpostCategoriesBodyJson = 'blogpost___categories___body___json', | |
| BlogpostCategoriesChildContentfulCategoryBodyRichTextNodeId = 'blogpost___categories___childContentfulCategoryBodyRichTextNode___id', | |
| BlogpostCategoriesChildContentfulCategoryBodyRichTextNodeChildren = 'blogpost___categories___childContentfulCategoryBodyRichTextNode___children', | |
| BlogpostCategoriesChildContentfulCategoryBodyRichTextNodeContent = 'blogpost___categories___childContentfulCategoryBodyRichTextNode___content', | |
| BlogpostCategoriesChildContentfulCategoryBodyRichTextNodeNodeType = 'blogpost___categories___childContentfulCategoryBodyRichTextNode___nodeType', | |
| BlogpostCategoriesChildContentfulCategoryBodyRichTextNodeBody = 'blogpost___categories___childContentfulCategoryBodyRichTextNode___body', | |
| BlogpostCategoriesChildContentfulCategoryBodyRichTextNodeJson = 'blogpost___categories___childContentfulCategoryBodyRichTextNode___json', | |
| BlogpostPage = 'blogpost___page', | |
| BlogpostPageId = 'blogpost___page___id', | |
| BlogpostPageParentId = 'blogpost___page___parent___id', | |
| BlogpostPageParentChildren = 'blogpost___page___parent___children', | |
| BlogpostPageChildren = 'blogpost___page___children', | |
| BlogpostPageChildrenId = 'blogpost___page___children___id', | |
| BlogpostPageChildrenChildren = 'blogpost___page___children___children', | |
| BlogpostPageInternalContent = 'blogpost___page___internal___content', | |
| BlogpostPageInternalContentDigest = 'blogpost___page___internal___contentDigest', | |
| BlogpostPageInternalDescription = 'blogpost___page___internal___description', | |
| BlogpostPageInternalFieldOwners = 'blogpost___page___internal___fieldOwners', | |
| BlogpostPageInternalIgnoreType = 'blogpost___page___internal___ignoreType', | |
| BlogpostPageInternalMediaType = 'blogpost___page___internal___mediaType', | |
| BlogpostPageInternalOwner = 'blogpost___page___internal___owner', | |
| BlogpostPageInternalType = 'blogpost___page___internal___type', | |
| BlogpostPageTitle = 'blogpost___page___title', | |
| BlogpostPageSlug = 'blogpost___page___slug', | |
| BlogpostPageIsHomePage = 'blogpost___page___isHomePage', | |
| BlogpostPageFeaturedPosts = 'blogpost___page___featuredPosts', | |
| BlogpostPageFeaturedPostsId = 'blogpost___page___featuredPosts___id', | |
| BlogpostPageFeaturedPostsChildren = 'blogpost___page___featuredPosts___children', | |
| BlogpostPageFeaturedPostsTitle = 'blogpost___page___featuredPosts___title', | |
| BlogpostPageFeaturedPostsSlug = 'blogpost___page___featuredPosts___slug', | |
| BlogpostPageFeaturedPostsPublishDate = 'blogpost___page___featuredPosts___publishDate', | |
| BlogpostPageFeaturedPostsCategories = 'blogpost___page___featuredPosts___categories', | |
| BlogpostPageFeaturedPostsPage = 'blogpost___page___featuredPosts___page', | |
| BlogpostPageFeaturedPostsSpaceId = 'blogpost___page___featuredPosts___spaceId', | |
| BlogpostPageFeaturedPostsContentfulId = 'blogpost___page___featuredPosts___contentful_id', | |
| BlogpostPageFeaturedPostsCreatedAt = 'blogpost___page___featuredPosts___createdAt', | |
| BlogpostPageFeaturedPostsUpdatedAt = 'blogpost___page___featuredPosts___updatedAt', | |
| BlogpostPageFeaturedPostsNodeLocale = 'blogpost___page___featuredPosts___node_locale', | |
| BlogpostPageSpaceId = 'blogpost___page___spaceId', | |
| BlogpostPageContentfulId = 'blogpost___page___contentful_id', | |
| BlogpostPageCreatedAt = 'blogpost___page___createdAt', | |
| BlogpostPageUpdatedAt = 'blogpost___page___updatedAt', | |
| BlogpostPageNodeLocale = 'blogpost___page___node_locale', | |
| BlogpostPageBodyId = 'blogpost___page___body___id', | |
| BlogpostPageBodyChildren = 'blogpost___page___body___children', | |
| BlogpostPageBodyContent = 'blogpost___page___body___content', | |
| BlogpostPageBodyNodeType = 'blogpost___page___body___nodeType', | |
| BlogpostPageBodyBody = 'blogpost___page___body___body', | |
| BlogpostPageBodyJson = 'blogpost___page___body___json', | |
| BlogpostPageChildContentfulPageBodyRichTextNodeId = 'blogpost___page___childContentfulPageBodyRichTextNode___id', | |
| BlogpostPageChildContentfulPageBodyRichTextNodeChildren = 'blogpost___page___childContentfulPageBodyRichTextNode___children', | |
| BlogpostPageChildContentfulPageBodyRichTextNodeContent = 'blogpost___page___childContentfulPageBodyRichTextNode___content', | |
| BlogpostPageChildContentfulPageBodyRichTextNodeNodeType = 'blogpost___page___childContentfulPageBodyRichTextNode___nodeType', | |
| BlogpostPageChildContentfulPageBodyRichTextNodeBody = 'blogpost___page___childContentfulPageBodyRichTextNode___body', | |
| BlogpostPageChildContentfulPageBodyRichTextNodeJson = 'blogpost___page___childContentfulPageBodyRichTextNode___json', | |
| BlogpostBodyId = 'blogpost___body___id', | |
| BlogpostBodyParentId = 'blogpost___body___parent___id', | |
| BlogpostBodyParentChildren = 'blogpost___body___parent___children', | |
| BlogpostBodyChildren = 'blogpost___body___children', | |
| BlogpostBodyChildrenId = 'blogpost___body___children___id', | |
| BlogpostBodyChildrenChildren = 'blogpost___body___children___children', | |
| BlogpostBodyInternalContent = 'blogpost___body___internal___content', | |
| BlogpostBodyInternalContentDigest = 'blogpost___body___internal___contentDigest', | |
| BlogpostBodyInternalDescription = 'blogpost___body___internal___description', | |
| BlogpostBodyInternalFieldOwners = 'blogpost___body___internal___fieldOwners', | |
| BlogpostBodyInternalIgnoreType = 'blogpost___body___internal___ignoreType', | |
| BlogpostBodyInternalMediaType = 'blogpost___body___internal___mediaType', | |
| BlogpostBodyInternalOwner = 'blogpost___body___internal___owner', | |
| BlogpostBodyInternalType = 'blogpost___body___internal___type', | |
| BlogpostBodyContent = 'blogpost___body___content', | |
| BlogpostBodyContentContent = 'blogpost___body___content___content', | |
| BlogpostBodyContentNodeType = 'blogpost___body___content___nodeType', | |
| BlogpostBodyNodeType = 'blogpost___body___nodeType', | |
| BlogpostBodyBody = 'blogpost___body___body', | |
| BlogpostBodyJson = 'blogpost___body___json', | |
| BlogpostBodyChildContentfulRichTextId = 'blogpost___body___childContentfulRichText___id', | |
| BlogpostBodyChildContentfulRichTextChildren = 'blogpost___body___childContentfulRichText___children', | |
| BlogpostBodyChildContentfulRichTextHtml = 'blogpost___body___childContentfulRichText___html', | |
| BlogpostBodyChildContentfulRichTextTimeToRead = 'blogpost___body___childContentfulRichText___timeToRead', | |
| BlogpostSpaceId = 'blogpost___spaceId', | |
| BlogpostContentfulId = 'blogpost___contentful_id', | |
| BlogpostCreatedAt = 'blogpost___createdAt', | |
| BlogpostUpdatedAt = 'blogpost___updatedAt', | |
| BlogpostNodeLocale = 'blogpost___node_locale', | |
| BlogpostAuthorId = 'blogpost___author___id', | |
| BlogpostAuthorParentId = 'blogpost___author___parent___id', | |
| BlogpostAuthorParentChildren = 'blogpost___author___parent___children', | |
| BlogpostAuthorChildren = 'blogpost___author___children', | |
| BlogpostAuthorChildrenId = 'blogpost___author___children___id', | |
| BlogpostAuthorChildrenChildren = 'blogpost___author___children___children', | |
| BlogpostAuthorInternalContent = 'blogpost___author___internal___content', | |
| BlogpostAuthorInternalContentDigest = 'blogpost___author___internal___contentDigest', | |
| BlogpostAuthorInternalDescription = 'blogpost___author___internal___description', | |
| BlogpostAuthorInternalFieldOwners = 'blogpost___author___internal___fieldOwners', | |
| BlogpostAuthorInternalIgnoreType = 'blogpost___author___internal___ignoreType', | |
| BlogpostAuthorInternalMediaType = 'blogpost___author___internal___mediaType', | |
| BlogpostAuthorInternalOwner = 'blogpost___author___internal___owner', | |
| BlogpostAuthorInternalType = 'blogpost___author___internal___type', | |
| BlogpostAuthorName = 'blogpost___author___name', | |
| BlogpostAuthorTitle = 'blogpost___author___title', | |
| BlogpostAuthorCompany = 'blogpost___author___company', | |
| BlogpostAuthorEmail = 'blogpost___author___email', | |
| BlogpostAuthorPhone = 'blogpost___author___phone', | |
| BlogpostAuthorFacebook = 'blogpost___author___facebook', | |
| BlogpostAuthorTwitter = 'blogpost___author___twitter', | |
| BlogpostAuthorGithub = 'blogpost___author___github', | |
| BlogpostAuthorImageId = 'blogpost___author___image___id', | |
| BlogpostAuthorImageChildren = 'blogpost___author___image___children', | |
| BlogpostAuthorImageContentfulId = 'blogpost___author___image___contentful_id', | |
| BlogpostAuthorImageTitle = 'blogpost___author___image___title', | |
| BlogpostAuthorImageDescription = 'blogpost___author___image___description', | |
| BlogpostAuthorImageNodeLocale = 'blogpost___author___image___node_locale', | |
| BlogpostAuthorBlogpost = 'blogpost___author___blogpost', | |
| BlogpostAuthorBlogpostId = 'blogpost___author___blogpost___id', | |
| BlogpostAuthorBlogpostChildren = 'blogpost___author___blogpost___children', | |
| BlogpostAuthorBlogpostTitle = 'blogpost___author___blogpost___title', | |
| BlogpostAuthorBlogpostSlug = 'blogpost___author___blogpost___slug', | |
| BlogpostAuthorBlogpostPublishDate = 'blogpost___author___blogpost___publishDate', | |
| BlogpostAuthorBlogpostCategories = 'blogpost___author___blogpost___categories', | |
| BlogpostAuthorBlogpostPage = 'blogpost___author___blogpost___page', | |
| BlogpostAuthorBlogpostSpaceId = 'blogpost___author___blogpost___spaceId', | |
| BlogpostAuthorBlogpostContentfulId = 'blogpost___author___blogpost___contentful_id', | |
| BlogpostAuthorBlogpostCreatedAt = 'blogpost___author___blogpost___createdAt', | |
| BlogpostAuthorBlogpostUpdatedAt = 'blogpost___author___blogpost___updatedAt', | |
| BlogpostAuthorBlogpostNodeLocale = 'blogpost___author___blogpost___node_locale', | |
| BlogpostAuthorShortBioId = 'blogpost___author___shortBio___id', | |
| BlogpostAuthorShortBioChildren = 'blogpost___author___shortBio___children', | |
| BlogpostAuthorShortBioShortBio = 'blogpost___author___shortBio___shortBio', | |
| BlogpostAuthorSpaceId = 'blogpost___author___spaceId', | |
| BlogpostAuthorContentfulId = 'blogpost___author___contentful_id', | |
| BlogpostAuthorCreatedAt = 'blogpost___author___createdAt', | |
| BlogpostAuthorUpdatedAt = 'blogpost___author___updatedAt', | |
| BlogpostAuthorNodeLocale = 'blogpost___author___node_locale', | |
| BlogpostAuthorChildContentfulPersonShortBioTextNodeId = 'blogpost___author___childContentfulPersonShortBioTextNode___id', | |
| BlogpostAuthorChildContentfulPersonShortBioTextNodeChildren = 'blogpost___author___childContentfulPersonShortBioTextNode___children', | |
| BlogpostAuthorChildContentfulPersonShortBioTextNodeShortBio = 'blogpost___author___childContentfulPersonShortBioTextNode___shortBio', | |
| BlogpostChildContentfulBlogPostBodyRichTextNodeId = 'blogpost___childContentfulBlogPostBodyRichTextNode___id', | |
| BlogpostChildContentfulBlogPostBodyRichTextNodeParentId = 'blogpost___childContentfulBlogPostBodyRichTextNode___parent___id', | |
| BlogpostChildContentfulBlogPostBodyRichTextNodeParentChildren = 'blogpost___childContentfulBlogPostBodyRichTextNode___parent___children', | |
| BlogpostChildContentfulBlogPostBodyRichTextNodeChildren = 'blogpost___childContentfulBlogPostBodyRichTextNode___children', | |
| BlogpostChildContentfulBlogPostBodyRichTextNodeChildrenId = 'blogpost___childContentfulBlogPostBodyRichTextNode___children___id', | |
| BlogpostChildContentfulBlogPostBodyRichTextNodeChildrenChildren = 'blogpost___childContentfulBlogPostBodyRichTextNode___children___children', | |
| BlogpostChildContentfulBlogPostBodyRichTextNodeInternalContent = 'blogpost___childContentfulBlogPostBodyRichTextNode___internal___content', | |
| BlogpostChildContentfulBlogPostBodyRichTextNodeInternalContentDigest = 'blogpost___childContentfulBlogPostBodyRichTextNode___internal___contentDigest', | |
| BlogpostChildContentfulBlogPostBodyRichTextNodeInternalDescription = 'blogpost___childContentfulBlogPostBodyRichTextNode___internal___description', | |
| BlogpostChildContentfulBlogPostBodyRichTextNodeInternalFieldOwners = 'blogpost___childContentfulBlogPostBodyRichTextNode___internal___fieldOwners', | |
| BlogpostChildContentfulBlogPostBodyRichTextNodeInternalIgnoreType = 'blogpost___childContentfulBlogPostBodyRichTextNode___internal___ignoreType', | |
| BlogpostChildContentfulBlogPostBodyRichTextNodeInternalMediaType = 'blogpost___childContentfulBlogPostBodyRichTextNode___internal___mediaType', | |
| BlogpostChildContentfulBlogPostBodyRichTextNodeInternalOwner = 'blogpost___childContentfulBlogPostBodyRichTextNode___internal___owner', | |
| BlogpostChildContentfulBlogPostBodyRichTextNodeInternalType = 'blogpost___childContentfulBlogPostBodyRichTextNode___internal___type', | |
| BlogpostChildContentfulBlogPostBodyRichTextNodeContent = 'blogpost___childContentfulBlogPostBodyRichTextNode___content', | |
| BlogpostChildContentfulBlogPostBodyRichTextNodeContentContent = 'blogpost___childContentfulBlogPostBodyRichTextNode___content___content', | |
| BlogpostChildContentfulBlogPostBodyRichTextNodeContentNodeType = 'blogpost___childContentfulBlogPostBodyRichTextNode___content___nodeType', | |
| BlogpostChildContentfulBlogPostBodyRichTextNodeNodeType = 'blogpost___childContentfulBlogPostBodyRichTextNode___nodeType', | |
| BlogpostChildContentfulBlogPostBodyRichTextNodeBody = 'blogpost___childContentfulBlogPostBodyRichTextNode___body', | |
| BlogpostChildContentfulBlogPostBodyRichTextNodeJson = 'blogpost___childContentfulBlogPostBodyRichTextNode___json', | |
| BlogpostChildContentfulBlogPostBodyRichTextNodeChildContentfulRichTextId = 'blogpost___childContentfulBlogPostBodyRichTextNode___childContentfulRichText___id', | |
| BlogpostChildContentfulBlogPostBodyRichTextNodeChildContentfulRichTextChildren = 'blogpost___childContentfulBlogPostBodyRichTextNode___childContentfulRichText___children', | |
| BlogpostChildContentfulBlogPostBodyRichTextNodeChildContentfulRichTextHtml = 'blogpost___childContentfulBlogPostBodyRichTextNode___childContentfulRichText___html', | |
| BlogpostChildContentfulBlogPostBodyRichTextNodeChildContentfulRichTextTimeToRead = 'blogpost___childContentfulBlogPostBodyRichTextNode___childContentfulRichText___timeToRead', | |
| SpaceId = 'spaceId', | |
| ContentfulId = 'contentful_id', | |
| CreatedAt = 'createdAt', | |
| UpdatedAt = 'updatedAt', | |
| NodeLocale = 'node_locale', | |
| Menu = 'menu', | |
| MenuId = 'menu___id', | |
| MenuParentId = 'menu___parent___id', | |
| MenuParentParentId = 'menu___parent___parent___id', | |
| MenuParentParentChildren = 'menu___parent___parent___children', | |
| MenuParentChildren = 'menu___parent___children', | |
| MenuParentChildrenId = 'menu___parent___children___id', | |
| MenuParentChildrenChildren = 'menu___parent___children___children', | |
| MenuParentInternalContent = 'menu___parent___internal___content', | |
| MenuParentInternalContentDigest = 'menu___parent___internal___contentDigest', | |
| MenuParentInternalDescription = 'menu___parent___internal___description', | |
| MenuParentInternalFieldOwners = 'menu___parent___internal___fieldOwners', | |
| MenuParentInternalIgnoreType = 'menu___parent___internal___ignoreType', | |
| MenuParentInternalMediaType = 'menu___parent___internal___mediaType', | |
| MenuParentInternalOwner = 'menu___parent___internal___owner', | |
| MenuParentInternalType = 'menu___parent___internal___type', | |
| MenuChildren = 'menu___children', | |
| MenuChildrenId = 'menu___children___id', | |
| MenuChildrenParentId = 'menu___children___parent___id', | |
| MenuChildrenParentChildren = 'menu___children___parent___children', | |
| MenuChildrenChildren = 'menu___children___children', | |
| MenuChildrenChildrenId = 'menu___children___children___id', | |
| MenuChildrenChildrenChildren = 'menu___children___children___children', | |
| MenuChildrenInternalContent = 'menu___children___internal___content', | |
| MenuChildrenInternalContentDigest = 'menu___children___internal___contentDigest', | |
| MenuChildrenInternalDescription = 'menu___children___internal___description', | |
| MenuChildrenInternalFieldOwners = 'menu___children___internal___fieldOwners', | |
| MenuChildrenInternalIgnoreType = 'menu___children___internal___ignoreType', | |
| MenuChildrenInternalMediaType = 'menu___children___internal___mediaType', | |
| MenuChildrenInternalOwner = 'menu___children___internal___owner', | |
| MenuChildrenInternalType = 'menu___children___internal___type', | |
| MenuInternalContent = 'menu___internal___content', | |
| MenuInternalContentDigest = 'menu___internal___contentDigest', | |
| MenuInternalDescription = 'menu___internal___description', | |
| MenuInternalFieldOwners = 'menu___internal___fieldOwners', | |
| MenuInternalIgnoreType = 'menu___internal___ignoreType', | |
| MenuInternalMediaType = 'menu___internal___mediaType', | |
| MenuInternalOwner = 'menu___internal___owner', | |
| MenuInternalType = 'menu___internal___type', | |
| MenuName = 'menu___name', | |
| MenuMenuItems = 'menu___menuItems', | |
| MenuMenuItemsId = 'menu___menuItems___id', | |
| MenuMenuItemsParentId = 'menu___menuItems___parent___id', | |
| MenuMenuItemsParentChildren = 'menu___menuItems___parent___children', | |
| MenuMenuItemsChildren = 'menu___menuItems___children', | |
| MenuMenuItemsChildrenId = 'menu___menuItems___children___id', | |
| MenuMenuItemsChildrenChildren = 'menu___menuItems___children___children', | |
| MenuMenuItemsInternalContent = 'menu___menuItems___internal___content', | |
| MenuMenuItemsInternalContentDigest = 'menu___menuItems___internal___contentDigest', | |
| MenuMenuItemsInternalDescription = 'menu___menuItems___internal___description', | |
| MenuMenuItemsInternalFieldOwners = 'menu___menuItems___internal___fieldOwners', | |
| MenuMenuItemsInternalIgnoreType = 'menu___menuItems___internal___ignoreType', | |
| MenuMenuItemsInternalMediaType = 'menu___menuItems___internal___mediaType', | |
| MenuMenuItemsInternalOwner = 'menu___menuItems___internal___owner', | |
| MenuMenuItemsInternalType = 'menu___menuItems___internal___type', | |
| MenuMenuItemsTitle = 'menu___menuItems___title', | |
| MenuMenuItemsSlug = 'menu___menuItems___slug', | |
| MenuMenuItemsFeaturedImageId = 'menu___menuItems___featuredImage___id', | |
| MenuMenuItemsFeaturedImageChildren = 'menu___menuItems___featuredImage___children', | |
| MenuMenuItemsFeaturedImageContentfulId = 'menu___menuItems___featuredImage___contentful_id', | |
| MenuMenuItemsFeaturedImageTitle = 'menu___menuItems___featuredImage___title', | |
| MenuMenuItemsFeaturedImageDescription = 'menu___menuItems___featuredImage___description', | |
| MenuMenuItemsFeaturedImageNodeLocale = 'menu___menuItems___featuredImage___node_locale', | |
| MenuMenuItemsBlogpost = 'menu___menuItems___blogpost', | |
| MenuMenuItemsBlogpostId = 'menu___menuItems___blogpost___id', | |
| MenuMenuItemsBlogpostChildren = 'menu___menuItems___blogpost___children', | |
| MenuMenuItemsBlogpostTitle = 'menu___menuItems___blogpost___title', | |
| MenuMenuItemsBlogpostSlug = 'menu___menuItems___blogpost___slug', | |
| MenuMenuItemsBlogpostPublishDate = 'menu___menuItems___blogpost___publishDate', | |
| MenuMenuItemsBlogpostCategories = 'menu___menuItems___blogpost___categories', | |
| MenuMenuItemsBlogpostPage = 'menu___menuItems___blogpost___page', | |
| MenuMenuItemsBlogpostSpaceId = 'menu___menuItems___blogpost___spaceId', | |
| MenuMenuItemsBlogpostContentfulId = 'menu___menuItems___blogpost___contentful_id', | |
| MenuMenuItemsBlogpostCreatedAt = 'menu___menuItems___blogpost___createdAt', | |
| MenuMenuItemsBlogpostUpdatedAt = 'menu___menuItems___blogpost___updatedAt', | |
| MenuMenuItemsBlogpostNodeLocale = 'menu___menuItems___blogpost___node_locale', | |
| MenuMenuItemsSpaceId = 'menu___menuItems___spaceId', | |
| MenuMenuItemsContentfulId = 'menu___menuItems___contentful_id', | |
| MenuMenuItemsCreatedAt = 'menu___menuItems___createdAt', | |
| MenuMenuItemsUpdatedAt = 'menu___menuItems___updatedAt', | |
| MenuMenuItemsNodeLocale = 'menu___menuItems___node_locale', | |
| MenuMenuItemsMenu = 'menu___menuItems___menu', | |
| MenuMenuItemsMenuId = 'menu___menuItems___menu___id', | |
| MenuMenuItemsMenuChildren = 'menu___menuItems___menu___children', | |
| MenuMenuItemsMenuName = 'menu___menuItems___menu___name', | |
| MenuMenuItemsMenuMenuItems = 'menu___menuItems___menu___menuItems', | |
| MenuMenuItemsMenuSpaceId = 'menu___menuItems___menu___spaceId', | |
| MenuMenuItemsMenuContentfulId = 'menu___menuItems___menu___contentful_id', | |
| MenuMenuItemsMenuCreatedAt = 'menu___menuItems___menu___createdAt', | |
| MenuMenuItemsMenuUpdatedAt = 'menu___menuItems___menu___updatedAt', | |
| MenuMenuItemsMenuNodeLocale = 'menu___menuItems___menu___node_locale', | |
| MenuMenuItemsProduct = 'menu___menuItems___product', | |
| MenuMenuItemsProductId = 'menu___menuItems___product___id', | |
| MenuMenuItemsProductChildren = 'menu___menuItems___product___children', | |
| MenuMenuItemsProductTitle = 'menu___menuItems___product___title', | |
| MenuMenuItemsProductSlug = 'menu___menuItems___product___slug', | |
| MenuMenuItemsProductPrice = 'menu___menuItems___product___price', | |
| MenuMenuItemsProductCategories = 'menu___menuItems___product___categories', | |
| MenuMenuItemsProductSpaceId = 'menu___menuItems___product___spaceId', | |
| MenuMenuItemsProductContentfulId = 'menu___menuItems___product___contentful_id', | |
| MenuMenuItemsProductCreatedAt = 'menu___menuItems___product___createdAt', | |
| MenuMenuItemsProductUpdatedAt = 'menu___menuItems___product___updatedAt', | |
| MenuMenuItemsProductNodeLocale = 'menu___menuItems___product___node_locale', | |
| MenuMenuItemsBodyId = 'menu___menuItems___body___id', | |
| MenuMenuItemsBodyChildren = 'menu___menuItems___body___children', | |
| MenuMenuItemsBodyContent = 'menu___menuItems___body___content', | |
| MenuMenuItemsBodyNodeType = 'menu___menuItems___body___nodeType', | |
| MenuMenuItemsBodyBody = 'menu___menuItems___body___body', | |
| MenuMenuItemsBodyJson = 'menu___menuItems___body___json', | |
| MenuMenuItemsChildContentfulCategoryBodyRichTextNodeId = 'menu___menuItems___childContentfulCategoryBodyRichTextNode___id', | |
| MenuMenuItemsChildContentfulCategoryBodyRichTextNodeChildren = 'menu___menuItems___childContentfulCategoryBodyRichTextNode___children', | |
| MenuMenuItemsChildContentfulCategoryBodyRichTextNodeContent = 'menu___menuItems___childContentfulCategoryBodyRichTextNode___content', | |
| MenuMenuItemsChildContentfulCategoryBodyRichTextNodeNodeType = 'menu___menuItems___childContentfulCategoryBodyRichTextNode___nodeType', | |
| MenuMenuItemsChildContentfulCategoryBodyRichTextNodeBody = 'menu___menuItems___childContentfulCategoryBodyRichTextNode___body', | |
| MenuMenuItemsChildContentfulCategoryBodyRichTextNodeJson = 'menu___menuItems___childContentfulCategoryBodyRichTextNode___json', | |
| MenuSpaceId = 'menu___spaceId', | |
| MenuContentfulId = 'menu___contentful_id', | |
| MenuCreatedAt = 'menu___createdAt', | |
| MenuUpdatedAt = 'menu___updatedAt', | |
| MenuNodeLocale = 'menu___node_locale', | |
| Product = 'product', | |
| ProductId = 'product___id', | |
| ProductParentId = 'product___parent___id', | |
| ProductParentParentId = 'product___parent___parent___id', | |
| ProductParentParentChildren = 'product___parent___parent___children', | |
| ProductParentChildren = 'product___parent___children', | |
| ProductParentChildrenId = 'product___parent___children___id', | |
| ProductParentChildrenChildren = 'product___parent___children___children', | |
| ProductParentInternalContent = 'product___parent___internal___content', | |
| ProductParentInternalContentDigest = 'product___parent___internal___contentDigest', | |
| ProductParentInternalDescription = 'product___parent___internal___description', | |
| ProductParentInternalFieldOwners = 'product___parent___internal___fieldOwners', | |
| ProductParentInternalIgnoreType = 'product___parent___internal___ignoreType', | |
| ProductParentInternalMediaType = 'product___parent___internal___mediaType', | |
| ProductParentInternalOwner = 'product___parent___internal___owner', | |
| ProductParentInternalType = 'product___parent___internal___type', | |
| ProductChildren = 'product___children', | |
| ProductChildrenId = 'product___children___id', | |
| ProductChildrenParentId = 'product___children___parent___id', | |
| ProductChildrenParentChildren = 'product___children___parent___children', | |
| ProductChildrenChildren = 'product___children___children', | |
| ProductChildrenChildrenId = 'product___children___children___id', | |
| ProductChildrenChildrenChildren = 'product___children___children___children', | |
| ProductChildrenInternalContent = 'product___children___internal___content', | |
| ProductChildrenInternalContentDigest = 'product___children___internal___contentDigest', | |
| ProductChildrenInternalDescription = 'product___children___internal___description', | |
| ProductChildrenInternalFieldOwners = 'product___children___internal___fieldOwners', | |
| ProductChildrenInternalIgnoreType = 'product___children___internal___ignoreType', | |
| ProductChildrenInternalMediaType = 'product___children___internal___mediaType', | |
| ProductChildrenInternalOwner = 'product___children___internal___owner', | |
| ProductChildrenInternalType = 'product___children___internal___type', | |
| ProductInternalContent = 'product___internal___content', | |
| ProductInternalContentDigest = 'product___internal___contentDigest', | |
| ProductInternalDescription = 'product___internal___description', | |
| ProductInternalFieldOwners = 'product___internal___fieldOwners', | |
| ProductInternalIgnoreType = 'product___internal___ignoreType', | |
| ProductInternalMediaType = 'product___internal___mediaType', | |
| ProductInternalOwner = 'product___internal___owner', | |
| ProductInternalType = 'product___internal___type', | |
| ProductTitle = 'product___title', | |
| ProductSlug = 'product___slug', | |
| ProductPrice = 'product___price', | |
| ProductFeaturedImageId = 'product___featuredImage___id', | |
| ProductFeaturedImageParentId = 'product___featuredImage___parent___id', | |
| ProductFeaturedImageParentChildren = 'product___featuredImage___parent___children', | |
| ProductFeaturedImageChildren = 'product___featuredImage___children', | |
| ProductFeaturedImageChildrenId = 'product___featuredImage___children___id', | |
| ProductFeaturedImageChildrenChildren = 'product___featuredImage___children___children', | |
| ProductFeaturedImageInternalContent = 'product___featuredImage___internal___content', | |
| ProductFeaturedImageInternalContentDigest = 'product___featuredImage___internal___contentDigest', | |
| ProductFeaturedImageInternalDescription = 'product___featuredImage___internal___description', | |
| ProductFeaturedImageInternalFieldOwners = 'product___featuredImage___internal___fieldOwners', | |
| ProductFeaturedImageInternalIgnoreType = 'product___featuredImage___internal___ignoreType', | |
| ProductFeaturedImageInternalMediaType = 'product___featuredImage___internal___mediaType', | |
| ProductFeaturedImageInternalOwner = 'product___featuredImage___internal___owner', | |
| ProductFeaturedImageInternalType = 'product___featuredImage___internal___type', | |
| ProductFeaturedImageContentfulId = 'product___featuredImage___contentful_id', | |
| ProductFeaturedImageFileUrl = 'product___featuredImage___file___url', | |
| ProductFeaturedImageFileFileName = 'product___featuredImage___file___fileName', | |
| ProductFeaturedImageFileContentType = 'product___featuredImage___file___contentType', | |
| ProductFeaturedImageTitle = 'product___featuredImage___title', | |
| ProductFeaturedImageDescription = 'product___featuredImage___description', | |
| ProductFeaturedImageNodeLocale = 'product___featuredImage___node_locale', | |
| ProductFeaturedImageFixedBase64 = 'product___featuredImage___fixed___base64', | |
| ProductFeaturedImageFixedTracedSvg = 'product___featuredImage___fixed___tracedSVG', | |
| ProductFeaturedImageFixedAspectRatio = 'product___featuredImage___fixed___aspectRatio', | |
| ProductFeaturedImageFixedWidth = 'product___featuredImage___fixed___width', | |
| ProductFeaturedImageFixedHeight = 'product___featuredImage___fixed___height', | |
| ProductFeaturedImageFixedSrc = 'product___featuredImage___fixed___src', | |
| ProductFeaturedImageFixedSrcSet = 'product___featuredImage___fixed___srcSet', | |
| ProductFeaturedImageFixedSrcWebp = 'product___featuredImage___fixed___srcWebp', | |
| ProductFeaturedImageFixedSrcSetWebp = 'product___featuredImage___fixed___srcSetWebp', | |
| ProductFeaturedImageResolutionsBase64 = 'product___featuredImage___resolutions___base64', | |
| ProductFeaturedImageResolutionsTracedSvg = 'product___featuredImage___resolutions___tracedSVG', | |
| ProductFeaturedImageResolutionsAspectRatio = 'product___featuredImage___resolutions___aspectRatio', | |
| ProductFeaturedImageResolutionsWidth = 'product___featuredImage___resolutions___width', | |
| ProductFeaturedImageResolutionsHeight = 'product___featuredImage___resolutions___height', | |
| ProductFeaturedImageResolutionsSrc = 'product___featuredImage___resolutions___src', | |
| ProductFeaturedImageResolutionsSrcSet = 'product___featuredImage___resolutions___srcSet', | |
| ProductFeaturedImageResolutionsSrcWebp = 'product___featuredImage___resolutions___srcWebp', | |
| ProductFeaturedImageResolutionsSrcSetWebp = 'product___featuredImage___resolutions___srcSetWebp', | |
| ProductFeaturedImageFluidBase64 = 'product___featuredImage___fluid___base64', | |
| ProductFeaturedImageFluidTracedSvg = 'product___featuredImage___fluid___tracedSVG', | |
| ProductFeaturedImageFluidAspectRatio = 'product___featuredImage___fluid___aspectRatio', | |
| ProductFeaturedImageFluidSrc = 'product___featuredImage___fluid___src', | |
| ProductFeaturedImageFluidSrcSet = 'product___featuredImage___fluid___srcSet', | |
| ProductFeaturedImageFluidSrcWebp = 'product___featuredImage___fluid___srcWebp', | |
| ProductFeaturedImageFluidSrcSetWebp = 'product___featuredImage___fluid___srcSetWebp', | |
| ProductFeaturedImageFluidSizes = 'product___featuredImage___fluid___sizes', | |
| ProductFeaturedImageSizesBase64 = 'product___featuredImage___sizes___base64', | |
| ProductFeaturedImageSizesTracedSvg = 'product___featuredImage___sizes___tracedSVG', | |
| ProductFeaturedImageSizesAspectRatio = 'product___featuredImage___sizes___aspectRatio', | |
| ProductFeaturedImageSizesSrc = 'product___featuredImage___sizes___src', | |
| ProductFeaturedImageSizesSrcSet = 'product___featuredImage___sizes___srcSet', | |
| ProductFeaturedImageSizesSrcWebp = 'product___featuredImage___sizes___srcWebp', | |
| ProductFeaturedImageSizesSrcSetWebp = 'product___featuredImage___sizes___srcSetWebp', | |
| ProductFeaturedImageSizesSizes = 'product___featuredImage___sizes___sizes', | |
| ProductFeaturedImageResizeBase64 = 'product___featuredImage___resize___base64', | |
| ProductFeaturedImageResizeTracedSvg = 'product___featuredImage___resize___tracedSVG', | |
| ProductFeaturedImageResizeSrc = 'product___featuredImage___resize___src', | |
| ProductFeaturedImageResizeWidth = 'product___featuredImage___resize___width', | |
| ProductFeaturedImageResizeHeight = 'product___featuredImage___resize___height', | |
| ProductFeaturedImageResizeAspectRatio = 'product___featuredImage___resize___aspectRatio', | |
| ProductCategories = 'product___categories', | |
| ProductCategoriesId = 'product___categories___id', | |
| ProductCategoriesParentId = 'product___categories___parent___id', | |
| ProductCategoriesParentChildren = 'product___categories___parent___children', | |
| ProductCategoriesChildren = 'product___categories___children', | |
| ProductCategoriesChildrenId = 'product___categories___children___id', | |
| ProductCategoriesChildrenChildren = 'product___categories___children___children', | |
| ProductCategoriesInternalContent = 'product___categories___internal___content', | |
| ProductCategoriesInternalContentDigest = 'product___categories___internal___contentDigest', | |
| ProductCategoriesInternalDescription = 'product___categories___internal___description', | |
| ProductCategoriesInternalFieldOwners = 'product___categories___internal___fieldOwners', | |
| ProductCategoriesInternalIgnoreType = 'product___categories___internal___ignoreType', | |
| ProductCategoriesInternalMediaType = 'product___categories___internal___mediaType', | |
| ProductCategoriesInternalOwner = 'product___categories___internal___owner', | |
| ProductCategoriesInternalType = 'product___categories___internal___type', | |
| ProductCategoriesTitle = 'product___categories___title', | |
| ProductCategoriesSlug = 'product___categories___slug', | |
| ProductCategoriesFeaturedImageId = 'product___categories___featuredImage___id', | |
| ProductCategoriesFeaturedImageChildren = 'product___categories___featuredImage___children', | |
| ProductCategoriesFeaturedImageContentfulId = 'product___categories___featuredImage___contentful_id', | |
| ProductCategoriesFeaturedImageTitle = 'product___categories___featuredImage___title', | |
| ProductCategoriesFeaturedImageDescription = 'product___categories___featuredImage___description', | |
| ProductCategoriesFeaturedImageNodeLocale = 'product___categories___featuredImage___node_locale', | |
| ProductCategoriesBlogpost = 'product___categories___blogpost', | |
| ProductCategoriesBlogpostId = 'product___categories___blogpost___id', | |
| ProductCategoriesBlogpostChildren = 'product___categories___blogpost___children', | |
| ProductCategoriesBlogpostTitle = 'product___categories___blogpost___title', | |
| ProductCategoriesBlogpostSlug = 'product___categories___blogpost___slug', | |
| ProductCategoriesBlogpostPublishDate = 'product___categories___blogpost___publishDate', | |
| ProductCategoriesBlogpostCategories = 'product___categories___blogpost___categories', | |
| ProductCategoriesBlogpostPage = 'product___categories___blogpost___page', | |
| ProductCategoriesBlogpostSpaceId = 'product___categories___blogpost___spaceId', | |
| ProductCategoriesBlogpostContentfulId = 'product___categories___blogpost___contentful_id', | |
| ProductCategoriesBlogpostCreatedAt = 'product___categories___blogpost___createdAt', | |
| ProductCategoriesBlogpostUpdatedAt = 'product___categories___blogpost___updatedAt', | |
| ProductCategoriesBlogpostNodeLocale = 'product___categories___blogpost___node_locale', | |
| ProductCategoriesSpaceId = 'product___categories___spaceId', | |
| ProductCategoriesContentfulId = 'product___categories___contentful_id', | |
| ProductCategoriesCreatedAt = 'product___categories___createdAt', | |
| ProductCategoriesUpdatedAt = 'product___categories___updatedAt', | |
| ProductCategoriesNodeLocale = 'product___categories___node_locale', | |
| ProductCategoriesMenu = 'product___categories___menu', | |
| ProductCategoriesMenuId = 'product___categories___menu___id', | |
| ProductCategoriesMenuChildren = 'product___categories___menu___children', | |
| ProductCategoriesMenuName = 'product___categories___menu___name', | |
| ProductCategoriesMenuMenuItems = 'product___categories___menu___menuItems', | |
| ProductCategoriesMenuSpaceId = 'product___categories___menu___spaceId', | |
| ProductCategoriesMenuContentfulId = 'product___categories___menu___contentful_id', | |
| ProductCategoriesMenuCreatedAt = 'product___categories___menu___createdAt', | |
| ProductCategoriesMenuUpdatedAt = 'product___categories___menu___updatedAt', | |
| ProductCategoriesMenuNodeLocale = 'product___categories___menu___node_locale', | |
| ProductCategoriesProduct = 'product___categories___product', | |
| ProductCategoriesProductId = 'product___categories___product___id', | |
| ProductCategoriesProductChildren = 'product___categories___product___children', | |
| ProductCategoriesProductTitle = 'product___categories___product___title', | |
| ProductCategoriesProductSlug = 'product___categories___product___slug', | |
| ProductCategoriesProductPrice = 'product___categories___product___price', | |
| ProductCategoriesProductCategories = 'product___categories___product___categories', | |
| ProductCategoriesProductSpaceId = 'product___categories___product___spaceId', | |
| ProductCategoriesProductContentfulId = 'product___categories___product___contentful_id', | |
| ProductCategoriesProductCreatedAt = 'product___categories___product___createdAt', | |
| ProductCategoriesProductUpdatedAt = 'product___categories___product___updatedAt', | |
| ProductCategoriesProductNodeLocale = 'product___categories___product___node_locale', | |
| ProductCategoriesBodyId = 'product___categories___body___id', | |
| ProductCategoriesBodyChildren = 'product___categories___body___children', | |
| ProductCategoriesBodyContent = 'product___categories___body___content', | |
| ProductCategoriesBodyNodeType = 'product___categories___body___nodeType', | |
| ProductCategoriesBodyBody = 'product___categories___body___body', | |
| ProductCategoriesBodyJson = 'product___categories___body___json', | |
| ProductCategoriesChildContentfulCategoryBodyRichTextNodeId = 'product___categories___childContentfulCategoryBodyRichTextNode___id', | |
| ProductCategoriesChildContentfulCategoryBodyRichTextNodeChildren = 'product___categories___childContentfulCategoryBodyRichTextNode___children', | |
| ProductCategoriesChildContentfulCategoryBodyRichTextNodeContent = 'product___categories___childContentfulCategoryBodyRichTextNode___content', | |
| ProductCategoriesChildContentfulCategoryBodyRichTextNodeNodeType = 'product___categories___childContentfulCategoryBodyRichTextNode___nodeType', | |
| ProductCategoriesChildContentfulCategoryBodyRichTextNodeBody = 'product___categories___childContentfulCategoryBodyRichTextNode___body', | |
| ProductCategoriesChildContentfulCategoryBodyRichTextNodeJson = 'product___categories___childContentfulCategoryBodyRichTextNode___json', | |
| ProductBodyId = 'product___body___id', | |
| ProductBodyParentId = 'product___body___parent___id', | |
| ProductBodyParentChildren = 'product___body___parent___children', | |
| ProductBodyChildren = 'product___body___children', | |
| ProductBodyChildrenId = 'product___body___children___id', | |
| ProductBodyChildrenChildren = 'product___body___children___children', | |
| ProductBodyInternalContent = 'product___body___internal___content', | |
| ProductBodyInternalContentDigest = 'product___body___internal___contentDigest', | |
| ProductBodyInternalDescription = 'product___body___internal___description', | |
| ProductBodyInternalFieldOwners = 'product___body___internal___fieldOwners', | |
| ProductBodyInternalIgnoreType = 'product___body___internal___ignoreType', | |
| ProductBodyInternalMediaType = 'product___body___internal___mediaType', | |
| ProductBodyInternalOwner = 'product___body___internal___owner', | |
| ProductBodyInternalType = 'product___body___internal___type', | |
| ProductBodyContent = 'product___body___content', | |
| ProductBodyContentContent = 'product___body___content___content', | |
| ProductBodyContentNodeType = 'product___body___content___nodeType', | |
| ProductBodyNodeType = 'product___body___nodeType', | |
| ProductBodyBody = 'product___body___body', | |
| ProductBodyJson = 'product___body___json', | |
| ProductBodyChildContentfulRichTextId = 'product___body___childContentfulRichText___id', | |
| ProductBodyChildContentfulRichTextChildren = 'product___body___childContentfulRichText___children', | |
| ProductBodyChildContentfulRichTextHtml = 'product___body___childContentfulRichText___html', | |
| ProductBodyChildContentfulRichTextTimeToRead = 'product___body___childContentfulRichText___timeToRead', | |
| ProductSpaceId = 'product___spaceId', | |
| ProductContentfulId = 'product___contentful_id', | |
| ProductCreatedAt = 'product___createdAt', | |
| ProductUpdatedAt = 'product___updatedAt', | |
| ProductNodeLocale = 'product___node_locale', | |
| ProductChildContentfulProductBodyRichTextNodeId = 'product___childContentfulProductBodyRichTextNode___id', | |
| ProductChildContentfulProductBodyRichTextNodeParentId = 'product___childContentfulProductBodyRichTextNode___parent___id', | |
| ProductChildContentfulProductBodyRichTextNodeParentChildren = 'product___childContentfulProductBodyRichTextNode___parent___children', | |
| ProductChildContentfulProductBodyRichTextNodeChildren = 'product___childContentfulProductBodyRichTextNode___children', | |
| ProductChildContentfulProductBodyRichTextNodeChildrenId = 'product___childContentfulProductBodyRichTextNode___children___id', | |
| ProductChildContentfulProductBodyRichTextNodeChildrenChildren = 'product___childContentfulProductBodyRichTextNode___children___children', | |
| ProductChildContentfulProductBodyRichTextNodeInternalContent = 'product___childContentfulProductBodyRichTextNode___internal___content', | |
| ProductChildContentfulProductBodyRichTextNodeInternalContentDigest = 'product___childContentfulProductBodyRichTextNode___internal___contentDigest', | |
| ProductChildContentfulProductBodyRichTextNodeInternalDescription = 'product___childContentfulProductBodyRichTextNode___internal___description', | |
| ProductChildContentfulProductBodyRichTextNodeInternalFieldOwners = 'product___childContentfulProductBodyRichTextNode___internal___fieldOwners', | |
| ProductChildContentfulProductBodyRichTextNodeInternalIgnoreType = 'product___childContentfulProductBodyRichTextNode___internal___ignoreType', | |
| ProductChildContentfulProductBodyRichTextNodeInternalMediaType = 'product___childContentfulProductBodyRichTextNode___internal___mediaType', | |
| ProductChildContentfulProductBodyRichTextNodeInternalOwner = 'product___childContentfulProductBodyRichTextNode___internal___owner', | |
| ProductChildContentfulProductBodyRichTextNodeInternalType = 'product___childContentfulProductBodyRichTextNode___internal___type', | |
| ProductChildContentfulProductBodyRichTextNodeContent = 'product___childContentfulProductBodyRichTextNode___content', | |
| ProductChildContentfulProductBodyRichTextNodeContentContent = 'product___childContentfulProductBodyRichTextNode___content___content', | |
| ProductChildContentfulProductBodyRichTextNodeContentNodeType = 'product___childContentfulProductBodyRichTextNode___content___nodeType', | |
| ProductChildContentfulProductBodyRichTextNodeNodeType = 'product___childContentfulProductBodyRichTextNode___nodeType', | |
| ProductChildContentfulProductBodyRichTextNodeBody = 'product___childContentfulProductBodyRichTextNode___body', | |
| ProductChildContentfulProductBodyRichTextNodeJson = 'product___childContentfulProductBodyRichTextNode___json', | |
| ProductChildContentfulProductBodyRichTextNodeChildContentfulRichTextId = 'product___childContentfulProductBodyRichTextNode___childContentfulRichText___id', | |
| ProductChildContentfulProductBodyRichTextNodeChildContentfulRichTextChildren = 'product___childContentfulProductBodyRichTextNode___childContentfulRichText___children', | |
| ProductChildContentfulProductBodyRichTextNodeChildContentfulRichTextHtml = 'product___childContentfulProductBodyRichTextNode___childContentfulRichText___html', | |
| ProductChildContentfulProductBodyRichTextNodeChildContentfulRichTextTimeToRead = 'product___childContentfulProductBodyRichTextNode___childContentfulRichText___timeToRead', | |
| BodyId = 'body___id', | |
| BodyParentId = 'body___parent___id', | |
| BodyParentParentId = 'body___parent___parent___id', | |
| BodyParentParentChildren = 'body___parent___parent___children', | |
| BodyParentChildren = 'body___parent___children', | |
| BodyParentChildrenId = 'body___parent___children___id', | |
| BodyParentChildrenChildren = 'body___parent___children___children', | |
| BodyParentInternalContent = 'body___parent___internal___content', | |
| BodyParentInternalContentDigest = 'body___parent___internal___contentDigest', | |
| BodyParentInternalDescription = 'body___parent___internal___description', | |
| BodyParentInternalFieldOwners = 'body___parent___internal___fieldOwners', | |
| BodyParentInternalIgnoreType = 'body___parent___internal___ignoreType', | |
| BodyParentInternalMediaType = 'body___parent___internal___mediaType', | |
| BodyParentInternalOwner = 'body___parent___internal___owner', | |
| BodyParentInternalType = 'body___parent___internal___type', | |
| BodyChildren = 'body___children', | |
| BodyChildrenId = 'body___children___id', | |
| BodyChildrenParentId = 'body___children___parent___id', | |
| BodyChildrenParentChildren = 'body___children___parent___children', | |
| BodyChildrenChildren = 'body___children___children', | |
| BodyChildrenChildrenId = 'body___children___children___id', | |
| BodyChildrenChildrenChildren = 'body___children___children___children', | |
| BodyChildrenInternalContent = 'body___children___internal___content', | |
| BodyChildrenInternalContentDigest = 'body___children___internal___contentDigest', | |
| BodyChildrenInternalDescription = 'body___children___internal___description', | |
| BodyChildrenInternalFieldOwners = 'body___children___internal___fieldOwners', | |
| BodyChildrenInternalIgnoreType = 'body___children___internal___ignoreType', | |
| BodyChildrenInternalMediaType = 'body___children___internal___mediaType', | |
| BodyChildrenInternalOwner = 'body___children___internal___owner', | |
| BodyChildrenInternalType = 'body___children___internal___type', | |
| BodyInternalContent = 'body___internal___content', | |
| BodyInternalContentDigest = 'body___internal___contentDigest', | |
| BodyInternalDescription = 'body___internal___description', | |
| BodyInternalFieldOwners = 'body___internal___fieldOwners', | |
| BodyInternalIgnoreType = 'body___internal___ignoreType', | |
| BodyInternalMediaType = 'body___internal___mediaType', | |
| BodyInternalOwner = 'body___internal___owner', | |
| BodyInternalType = 'body___internal___type', | |
| BodyContent = 'body___content', | |
| BodyContentContent = 'body___content___content', | |
| BodyContentContentValue = 'body___content___content___value', | |
| BodyContentContentNodeType = 'body___content___content___nodeType', | |
| BodyContentNodeType = 'body___content___nodeType', | |
| BodyNodeType = 'body___nodeType', | |
| BodyBody = 'body___body', | |
| BodyJson = 'body___json', | |
| BodyChildContentfulRichTextId = 'body___childContentfulRichText___id', | |
| BodyChildContentfulRichTextParentId = 'body___childContentfulRichText___parent___id', | |
| BodyChildContentfulRichTextParentChildren = 'body___childContentfulRichText___parent___children', | |
| BodyChildContentfulRichTextChildren = 'body___childContentfulRichText___children', | |
| BodyChildContentfulRichTextChildrenId = 'body___childContentfulRichText___children___id', | |
| BodyChildContentfulRichTextChildrenChildren = 'body___childContentfulRichText___children___children', | |
| BodyChildContentfulRichTextInternalContent = 'body___childContentfulRichText___internal___content', | |
| BodyChildContentfulRichTextInternalContentDigest = 'body___childContentfulRichText___internal___contentDigest', | |
| BodyChildContentfulRichTextInternalDescription = 'body___childContentfulRichText___internal___description', | |
| BodyChildContentfulRichTextInternalFieldOwners = 'body___childContentfulRichText___internal___fieldOwners', | |
| BodyChildContentfulRichTextInternalIgnoreType = 'body___childContentfulRichText___internal___ignoreType', | |
| BodyChildContentfulRichTextInternalMediaType = 'body___childContentfulRichText___internal___mediaType', | |
| BodyChildContentfulRichTextInternalOwner = 'body___childContentfulRichText___internal___owner', | |
| BodyChildContentfulRichTextInternalType = 'body___childContentfulRichText___internal___type', | |
| BodyChildContentfulRichTextHtml = 'body___childContentfulRichText___html', | |
| BodyChildContentfulRichTextTimeToRead = 'body___childContentfulRichText___timeToRead', | |
| ChildContentfulCategoryBodyRichTextNodeId = 'childContentfulCategoryBodyRichTextNode___id', | |
| ChildContentfulCategoryBodyRichTextNodeParentId = 'childContentfulCategoryBodyRichTextNode___parent___id', | |
| ChildContentfulCategoryBodyRichTextNodeParentParentId = 'childContentfulCategoryBodyRichTextNode___parent___parent___id', | |
| ChildContentfulCategoryBodyRichTextNodeParentParentChildren = 'childContentfulCategoryBodyRichTextNode___parent___parent___children', | |
| ChildContentfulCategoryBodyRichTextNodeParentChildren = 'childContentfulCategoryBodyRichTextNode___parent___children', | |
| ChildContentfulCategoryBodyRichTextNodeParentChildrenId = 'childContentfulCategoryBodyRichTextNode___parent___children___id', | |
| ChildContentfulCategoryBodyRichTextNodeParentChildrenChildren = 'childContentfulCategoryBodyRichTextNode___parent___children___children', | |
| ChildContentfulCategoryBodyRichTextNodeParentInternalContent = 'childContentfulCategoryBodyRichTextNode___parent___internal___content', | |
| ChildContentfulCategoryBodyRichTextNodeParentInternalContentDigest = 'childContentfulCategoryBodyRichTextNode___parent___internal___contentDigest', | |
| ChildContentfulCategoryBodyRichTextNodeParentInternalDescription = 'childContentfulCategoryBodyRichTextNode___parent___internal___description', | |
| ChildContentfulCategoryBodyRichTextNodeParentInternalFieldOwners = 'childContentfulCategoryBodyRichTextNode___parent___internal___fieldOwners', | |
| ChildContentfulCategoryBodyRichTextNodeParentInternalIgnoreType = 'childContentfulCategoryBodyRichTextNode___parent___internal___ignoreType', | |
| ChildContentfulCategoryBodyRichTextNodeParentInternalMediaType = 'childContentfulCategoryBodyRichTextNode___parent___internal___mediaType', | |
| ChildContentfulCategoryBodyRichTextNodeParentInternalOwner = 'childContentfulCategoryBodyRichTextNode___parent___internal___owner', | |
| ChildContentfulCategoryBodyRichTextNodeParentInternalType = 'childContentfulCategoryBodyRichTextNode___parent___internal___type', | |
| ChildContentfulCategoryBodyRichTextNodeChildren = 'childContentfulCategoryBodyRichTextNode___children', | |
| ChildContentfulCategoryBodyRichTextNodeChildrenId = 'childContentfulCategoryBodyRichTextNode___children___id', | |
| ChildContentfulCategoryBodyRichTextNodeChildrenParentId = 'childContentfulCategoryBodyRichTextNode___children___parent___id', | |
| ChildContentfulCategoryBodyRichTextNodeChildrenParentChildren = 'childContentfulCategoryBodyRichTextNode___children___parent___children', | |
| ChildContentfulCategoryBodyRichTextNodeChildrenChildren = 'childContentfulCategoryBodyRichTextNode___children___children', | |
| ChildContentfulCategoryBodyRichTextNodeChildrenChildrenId = 'childContentfulCategoryBodyRichTextNode___children___children___id', | |
| ChildContentfulCategoryBodyRichTextNodeChildrenChildrenChildren = 'childContentfulCategoryBodyRichTextNode___children___children___children', | |
| ChildContentfulCategoryBodyRichTextNodeChildrenInternalContent = 'childContentfulCategoryBodyRichTextNode___children___internal___content', | |
| ChildContentfulCategoryBodyRichTextNodeChildrenInternalContentDigest = 'childContentfulCategoryBodyRichTextNode___children___internal___contentDigest', | |
| ChildContentfulCategoryBodyRichTextNodeChildrenInternalDescription = 'childContentfulCategoryBodyRichTextNode___children___internal___description', | |
| ChildContentfulCategoryBodyRichTextNodeChildrenInternalFieldOwners = 'childContentfulCategoryBodyRichTextNode___children___internal___fieldOwners', | |
| ChildContentfulCategoryBodyRichTextNodeChildrenInternalIgnoreType = 'childContentfulCategoryBodyRichTextNode___children___internal___ignoreType', | |
| ChildContentfulCategoryBodyRichTextNodeChildrenInternalMediaType = 'childContentfulCategoryBodyRichTextNode___children___internal___mediaType', | |
| ChildContentfulCategoryBodyRichTextNodeChildrenInternalOwner = 'childContentfulCategoryBodyRichTextNode___children___internal___owner', | |
| ChildContentfulCategoryBodyRichTextNodeChildrenInternalType = 'childContentfulCategoryBodyRichTextNode___children___internal___type', | |
| ChildContentfulCategoryBodyRichTextNodeInternalContent = 'childContentfulCategoryBodyRichTextNode___internal___content', | |
| ChildContentfulCategoryBodyRichTextNodeInternalContentDigest = 'childContentfulCategoryBodyRichTextNode___internal___contentDigest', | |
| ChildContentfulCategoryBodyRichTextNodeInternalDescription = 'childContentfulCategoryBodyRichTextNode___internal___description', | |
| ChildContentfulCategoryBodyRichTextNodeInternalFieldOwners = 'childContentfulCategoryBodyRichTextNode___internal___fieldOwners', | |
| ChildContentfulCategoryBodyRichTextNodeInternalIgnoreType = 'childContentfulCategoryBodyRichTextNode___internal___ignoreType', | |
| ChildContentfulCategoryBodyRichTextNodeInternalMediaType = 'childContentfulCategoryBodyRichTextNode___internal___mediaType', | |
| ChildContentfulCategoryBodyRichTextNodeInternalOwner = 'childContentfulCategoryBodyRichTextNode___internal___owner', | |
| ChildContentfulCategoryBodyRichTextNodeInternalType = 'childContentfulCategoryBodyRichTextNode___internal___type', | |
| ChildContentfulCategoryBodyRichTextNodeContent = 'childContentfulCategoryBodyRichTextNode___content', | |
| ChildContentfulCategoryBodyRichTextNodeContentContent = 'childContentfulCategoryBodyRichTextNode___content___content', | |
| ChildContentfulCategoryBodyRichTextNodeContentContentValue = 'childContentfulCategoryBodyRichTextNode___content___content___value', | |
| ChildContentfulCategoryBodyRichTextNodeContentContentNodeType = 'childContentfulCategoryBodyRichTextNode___content___content___nodeType', | |
| ChildContentfulCategoryBodyRichTextNodeContentNodeType = 'childContentfulCategoryBodyRichTextNode___content___nodeType', | |
| ChildContentfulCategoryBodyRichTextNodeNodeType = 'childContentfulCategoryBodyRichTextNode___nodeType', | |
| ChildContentfulCategoryBodyRichTextNodeBody = 'childContentfulCategoryBodyRichTextNode___body', | |
| ChildContentfulCategoryBodyRichTextNodeJson = 'childContentfulCategoryBodyRichTextNode___json', | |
| ChildContentfulCategoryBodyRichTextNodeChildContentfulRichTextId = 'childContentfulCategoryBodyRichTextNode___childContentfulRichText___id', | |
| ChildContentfulCategoryBodyRichTextNodeChildContentfulRichTextParentId = 'childContentfulCategoryBodyRichTextNode___childContentfulRichText___parent___id', | |
| ChildContentfulCategoryBodyRichTextNodeChildContentfulRichTextParentChildren = 'childContentfulCategoryBodyRichTextNode___childContentfulRichText___parent___children', | |
| ChildContentfulCategoryBodyRichTextNodeChildContentfulRichTextChildren = 'childContentfulCategoryBodyRichTextNode___childContentfulRichText___children', | |
| ChildContentfulCategoryBodyRichTextNodeChildContentfulRichTextChildrenId = 'childContentfulCategoryBodyRichTextNode___childContentfulRichText___children___id', | |
| ChildContentfulCategoryBodyRichTextNodeChildContentfulRichTextChildrenChildren = 'childContentfulCategoryBodyRichTextNode___childContentfulRichText___children___children', | |
| ChildContentfulCategoryBodyRichTextNodeChildContentfulRichTextInternalContent = 'childContentfulCategoryBodyRichTextNode___childContentfulRichText___internal___content', | |
| ChildContentfulCategoryBodyRichTextNodeChildContentfulRichTextInternalContentDigest = 'childContentfulCategoryBodyRichTextNode___childContentfulRichText___internal___contentDigest', | |
| ChildContentfulCategoryBodyRichTextNodeChildContentfulRichTextInternalDescription = 'childContentfulCategoryBodyRichTextNode___childContentfulRichText___internal___description', | |
| ChildContentfulCategoryBodyRichTextNodeChildContentfulRichTextInternalFieldOwners = 'childContentfulCategoryBodyRichTextNode___childContentfulRichText___internal___fieldOwners', | |
| ChildContentfulCategoryBodyRichTextNodeChildContentfulRichTextInternalIgnoreType = 'childContentfulCategoryBodyRichTextNode___childContentfulRichText___internal___ignoreType', | |
| ChildContentfulCategoryBodyRichTextNodeChildContentfulRichTextInternalMediaType = 'childContentfulCategoryBodyRichTextNode___childContentfulRichText___internal___mediaType', | |
| ChildContentfulCategoryBodyRichTextNodeChildContentfulRichTextInternalOwner = 'childContentfulCategoryBodyRichTextNode___childContentfulRichText___internal___owner', | |
| ChildContentfulCategoryBodyRichTextNodeChildContentfulRichTextInternalType = 'childContentfulCategoryBodyRichTextNode___childContentfulRichText___internal___type', | |
| ChildContentfulCategoryBodyRichTextNodeChildContentfulRichTextHtml = 'childContentfulCategoryBodyRichTextNode___childContentfulRichText___html', | |
| ChildContentfulCategoryBodyRichTextNodeChildContentfulRichTextTimeToRead = 'childContentfulCategoryBodyRichTextNode___childContentfulRichText___timeToRead' | |
| } | |
| export type ContentfulCategoryFilterInput = { | |
| id?: Maybe<StringQueryOperatorInput>, | |
| parent?: Maybe<NodeFilterInput>, | |
| children?: Maybe<NodeFilterListInput>, | |
| internal?: Maybe<InternalFilterInput>, | |
| title?: Maybe<StringQueryOperatorInput>, | |
| slug?: Maybe<StringQueryOperatorInput>, | |
| featuredImage?: Maybe<ContentfulAssetFilterInput>, | |
| blogpost?: Maybe<ContentfulBlogPostFilterListInput>, | |
| spaceId?: Maybe<StringQueryOperatorInput>, | |
| contentful_id?: Maybe<StringQueryOperatorInput>, | |
| createdAt?: Maybe<DateQueryOperatorInput>, | |
| updatedAt?: Maybe<DateQueryOperatorInput>, | |
| node_locale?: Maybe<StringQueryOperatorInput>, | |
| menu?: Maybe<ContentfulMenuFilterListInput>, | |
| product?: Maybe<ContentfulProductFilterListInput>, | |
| body?: Maybe<ContentfulCategoryBodyRichTextNodeFilterInput>, | |
| childContentfulCategoryBodyRichTextNode?: Maybe<ContentfulCategoryBodyRichTextNodeFilterInput>, | |
| }; | |
| export type ContentfulCategoryFilterListInput = { | |
| elemMatch?: Maybe<ContentfulCategoryFilterInput>, | |
| }; | |
| export type ContentfulCategoryGroupConnection = { | |
| __typename?: 'ContentfulCategoryGroupConnection', | |
| totalCount: Scalars['Int'], | |
| edges: Array<ContentfulCategoryEdge>, | |
| nodes: Array<ContentfulCategory>, | |
| pageInfo: PageInfo, | |
| field: Scalars['String'], | |
| fieldValue?: Maybe<Scalars['String']>, | |
| }; | |
| export type ContentfulCategorySortInput = { | |
| fields?: Maybe<Array<Maybe<ContentfulCategoryFieldsEnum>>>, | |
| order?: Maybe<Array<Maybe<SortOrderEnum>>>, | |
| }; | |
| export type ContentfulContentType = Node & { | |
| __typename?: 'ContentfulContentType', | |
| id: Scalars['ID'], | |
| parent?: Maybe<Node>, | |
| children: Array<Node>, | |
| internal: Internal, | |
| name?: Maybe<Scalars['String']>, | |
| displayField?: Maybe<Scalars['String']>, | |
| description?: Maybe<Scalars['String']>, | |
| }; | |
| export type ContentfulContentTypeConnection = { | |
| __typename?: 'ContentfulContentTypeConnection', | |
| totalCount: Scalars['Int'], | |
| edges: Array<ContentfulContentTypeEdge>, | |
| nodes: Array<ContentfulContentType>, | |
| pageInfo: PageInfo, | |
| distinct: Array<Scalars['String']>, | |
| group: Array<ContentfulContentTypeGroupConnection>, | |
| }; | |
| export type ContentfulContentTypeConnectionDistinctArgs = { | |
| field: ContentfulContentTypeFieldsEnum | |
| }; | |
| export type ContentfulContentTypeConnectionGroupArgs = { | |
| skip?: Maybe<Scalars['Int']>, | |
| limit?: Maybe<Scalars['Int']>, | |
| field: ContentfulContentTypeFieldsEnum | |
| }; | |
| export type ContentfulContentTypeEdge = { | |
| __typename?: 'ContentfulContentTypeEdge', | |
| next?: Maybe<ContentfulContentType>, | |
| node: ContentfulContentType, | |
| previous?: Maybe<ContentfulContentType>, | |
| }; | |
| export enum ContentfulContentTypeFieldsEnum { | |
| Id = 'id', | |
| ParentId = 'parent___id', | |
| ParentParentId = 'parent___parent___id', | |
| ParentParentParentId = 'parent___parent___parent___id', | |
| ParentParentParentChildren = 'parent___parent___parent___children', | |
| ParentParentChildren = 'parent___parent___children', | |
| ParentParentChildrenId = 'parent___parent___children___id', | |
| ParentParentChildrenChildren = 'parent___parent___children___children', | |
| ParentParentInternalContent = 'parent___parent___internal___content', | |
| ParentParentInternalContentDigest = 'parent___parent___internal___contentDigest', | |
| ParentParentInternalDescription = 'parent___parent___internal___description', | |
| ParentParentInternalFieldOwners = 'parent___parent___internal___fieldOwners', | |
| ParentParentInternalIgnoreType = 'parent___parent___internal___ignoreType', | |
| ParentParentInternalMediaType = 'parent___parent___internal___mediaType', | |
| ParentParentInternalOwner = 'parent___parent___internal___owner', | |
| ParentParentInternalType = 'parent___parent___internal___type', | |
| ParentChildren = 'parent___children', | |
| ParentChildrenId = 'parent___children___id', | |
| ParentChildrenParentId = 'parent___children___parent___id', | |
| ParentChildrenParentChildren = 'parent___children___parent___children', | |
| ParentChildrenChildren = 'parent___children___children', | |
| ParentChildrenChildrenId = 'parent___children___children___id', | |
| ParentChildrenChildrenChildren = 'parent___children___children___children', | |
| ParentChildrenInternalContent = 'parent___children___internal___content', | |
| ParentChildrenInternalContentDigest = 'parent___children___internal___contentDigest', | |
| ParentChildrenInternalDescription = 'parent___children___internal___description', | |
| ParentChildrenInternalFieldOwners = 'parent___children___internal___fieldOwners', | |
| ParentChildrenInternalIgnoreType = 'parent___children___internal___ignoreType', | |
| ParentChildrenInternalMediaType = 'parent___children___internal___mediaType', | |
| ParentChildrenInternalOwner = 'parent___children___internal___owner', | |
| ParentChildrenInternalType = 'parent___children___internal___type', | |
| ParentInternalContent = 'parent___internal___content', | |
| ParentInternalContentDigest = 'parent___internal___contentDigest', | |
| ParentInternalDescription = 'parent___internal___description', | |
| ParentInternalFieldOwners = 'parent___internal___fieldOwners', | |
| ParentInternalIgnoreType = 'parent___internal___ignoreType', | |
| ParentInternalMediaType = 'parent___internal___mediaType', | |
| ParentInternalOwner = 'parent___internal___owner', | |
| ParentInternalType = 'parent___internal___type', | |
| Children = 'children', | |
| ChildrenId = 'children___id', | |
| ChildrenParentId = 'children___parent___id', | |
| ChildrenParentParentId = 'children___parent___parent___id', | |
| ChildrenParentParentChildren = 'children___parent___parent___children', | |
| ChildrenParentChildren = 'children___parent___children', | |
| ChildrenParentChildrenId = 'children___parent___children___id', | |
| ChildrenParentChildrenChildren = 'children___parent___children___children', | |
| ChildrenParentInternalContent = 'children___parent___internal___content', | |
| ChildrenParentInternalContentDigest = 'children___parent___internal___contentDigest', | |
| ChildrenParentInternalDescription = 'children___parent___internal___description', | |
| ChildrenParentInternalFieldOwners = 'children___parent___internal___fieldOwners', | |
| ChildrenParentInternalIgnoreType = 'children___parent___internal___ignoreType', | |
| ChildrenParentInternalMediaType = 'children___parent___internal___mediaType', | |
| ChildrenParentInternalOwner = 'children___parent___internal___owner', | |
| ChildrenParentInternalType = 'children___parent___internal___type', | |
| ChildrenChildren = 'children___children', | |
| ChildrenChildrenId = 'children___children___id', | |
| ChildrenChildrenParentId = 'children___children___parent___id', | |
| ChildrenChildrenParentChildren = 'children___children___parent___children', | |
| ChildrenChildrenChildren = 'children___children___children', | |
| ChildrenChildrenChildrenId = 'children___children___children___id', | |
| ChildrenChildrenChildrenChildren = 'children___children___children___children', | |
| ChildrenChildrenInternalContent = 'children___children___internal___content', | |
| ChildrenChildrenInternalContentDigest = 'children___children___internal___contentDigest', | |
| ChildrenChildrenInternalDescription = 'children___children___internal___description', | |
| ChildrenChildrenInternalFieldOwners = 'children___children___internal___fieldOwners', | |
| ChildrenChildrenInternalIgnoreType = 'children___children___internal___ignoreType', | |
| ChildrenChildrenInternalMediaType = 'children___children___internal___mediaType', | |
| ChildrenChildrenInternalOwner = 'children___children___internal___owner', | |
| ChildrenChildrenInternalType = 'children___children___internal___type', | |
| ChildrenInternalContent = 'children___internal___content', | |
| ChildrenInternalContentDigest = 'children___internal___contentDigest', | |
| ChildrenInternalDescription = 'children___internal___description', | |
| ChildrenInternalFieldOwners = 'children___internal___fieldOwners', | |
| ChildrenInternalIgnoreType = 'children___internal___ignoreType', | |
| ChildrenInternalMediaType = 'children___internal___mediaType', | |
| ChildrenInternalOwner = 'children___internal___owner', | |
| ChildrenInternalType = 'children___internal___type', | |
| InternalContent = 'internal___content', | |
| InternalContentDigest = 'internal___contentDigest', | |
| InternalDescription = 'internal___description', | |
| InternalFieldOwners = 'internal___fieldOwners', | |
| InternalIgnoreType = 'internal___ignoreType', | |
| InternalMediaType = 'internal___mediaType', | |
| InternalOwner = 'internal___owner', | |
| InternalType = 'internal___type', | |
| Name = 'name', | |
| DisplayField = 'displayField', | |
| Description = 'description' | |
| } | |
| export type ContentfulContentTypeFilterInput = { | |
| id?: Maybe<StringQueryOperatorInput>, | |
| parent?: Maybe<NodeFilterInput>, | |
| children?: Maybe<NodeFilterListInput>, | |
| internal?: Maybe<InternalFilterInput>, | |
| name?: Maybe<StringQueryOperatorInput>, | |
| displayField?: Maybe<StringQueryOperatorInput>, | |
| description?: Maybe<StringQueryOperatorInput>, | |
| }; | |
| export type ContentfulContentTypeGroupConnection = { | |
| __typename?: 'ContentfulContentTypeGroupConnection', | |
| totalCount: Scalars['Int'], | |
| edges: Array<ContentfulContentTypeEdge>, | |
| nodes: Array<ContentfulContentType>, | |
| pageInfo: PageInfo, | |
| field: Scalars['String'], | |
| fieldValue?: Maybe<Scalars['String']>, | |
| }; | |
| export type ContentfulContentTypeSortInput = { | |
| fields?: Maybe<Array<Maybe<ContentfulContentTypeFieldsEnum>>>, | |
| order?: Maybe<Array<Maybe<SortOrderEnum>>>, | |
| }; | |
| export type ContentfulFixed = { | |
| __typename?: 'ContentfulFixed', | |
| base64?: Maybe<Scalars['String']>, | |
| tracedSVG?: Maybe<Scalars['String']>, | |
| aspectRatio?: Maybe<Scalars['Float']>, | |
| width?: Maybe<Scalars['Float']>, | |
| height?: Maybe<Scalars['Float']>, | |
| src?: Maybe<Scalars['String']>, | |
| srcSet?: Maybe<Scalars['String']>, | |
| srcWebp?: Maybe<Scalars['String']>, | |
| srcSetWebp?: Maybe<Scalars['String']>, | |
| }; | |
| export type ContentfulFixedFilterInput = { | |
| base64?: Maybe<StringQueryOperatorInput>, | |
| tracedSVG?: Maybe<StringQueryOperatorInput>, | |
| aspectRatio?: Maybe<FloatQueryOperatorInput>, | |
| width?: Maybe<FloatQueryOperatorInput>, | |
| height?: Maybe<FloatQueryOperatorInput>, | |
| src?: Maybe<StringQueryOperatorInput>, | |
| srcSet?: Maybe<StringQueryOperatorInput>, | |
| srcWebp?: Maybe<StringQueryOperatorInput>, | |
| srcSetWebp?: Maybe<StringQueryOperatorInput>, | |
| }; | |
| export type ContentfulFluid = { | |
| __typename?: 'ContentfulFluid', | |
| base64?: Maybe<Scalars['String']>, | |
| tracedSVG?: Maybe<Scalars['String']>, | |
| aspectRatio?: Maybe<Scalars['Float']>, | |
| src?: Maybe<Scalars['String']>, | |
| srcSet?: Maybe<Scalars['String']>, | |
| srcWebp?: Maybe<Scalars['String']>, | |
| srcSetWebp?: Maybe<Scalars['String']>, | |
| sizes?: Maybe<Scalars['String']>, | |
| }; | |
| export type ContentfulFluidFilterInput = { | |
| base64?: Maybe<StringQueryOperatorInput>, | |
| tracedSVG?: Maybe<StringQueryOperatorInput>, | |
| aspectRatio?: Maybe<FloatQueryOperatorInput>, | |
| src?: Maybe<StringQueryOperatorInput>, | |
| srcSet?: Maybe<StringQueryOperatorInput>, | |
| srcWebp?: Maybe<StringQueryOperatorInput>, | |
| srcSetWebp?: Maybe<StringQueryOperatorInput>, | |
| sizes?: Maybe<StringQueryOperatorInput>, | |
| }; | |
| export enum ContentfulImageCropFocus { | |
| Top = 'TOP', | |
| TopLeft = 'TOP_LEFT', | |
| TopRight = 'TOP_RIGHT', | |
| Bottom = 'BOTTOM', | |
| BottomRight = 'BOTTOM_RIGHT', | |
| BottomLeft = 'BOTTOM_LEFT', | |
| Right = 'RIGHT', | |
| Left = 'LEFT', | |
| Face = 'FACE', | |
| Faces = 'FACES', | |
| Center = 'CENTER' | |
| } | |
| export enum ContentfulImageFormat { | |
| NoChange = 'NO_CHANGE', | |
| Jpg = 'JPG', | |
| Png = 'PNG', | |
| Webp = 'WEBP' | |
| } | |
| export type ContentfulMenu = Node & { | |
| __typename?: 'ContentfulMenu', | |
| id: Scalars['ID'], | |
| parent?: Maybe<Node>, | |
| children: Array<Node>, | |
| internal: Internal, | |
| name?: Maybe<Scalars['String']>, | |
| menuItems?: Maybe<Array<Maybe<ContentfulCategory>>>, | |
| spaceId?: Maybe<Scalars['String']>, | |
| contentful_id?: Maybe<Scalars['String']>, | |
| createdAt?: Maybe<Scalars['Date']>, | |
| updatedAt?: Maybe<Scalars['Date']>, | |
| node_locale?: Maybe<Scalars['String']>, | |
| }; | |
| export type ContentfulMenuCreatedAtArgs = { | |
| formatString?: Maybe<Scalars['String']>, | |
| fromNow?: Maybe<Scalars['Boolean']>, | |
| difference?: Maybe<Scalars['String']>, | |
| locale?: Maybe<Scalars['String']> | |
| }; | |
| export type ContentfulMenuUpdatedAtArgs = { | |
| formatString?: Maybe<Scalars['String']>, | |
| fromNow?: Maybe<Scalars['Boolean']>, | |
| difference?: Maybe<Scalars['String']>, | |
| locale?: Maybe<Scalars['String']> | |
| }; | |
| export type ContentfulMenuConnection = { | |
| __typename?: 'ContentfulMenuConnection', | |
| totalCount: Scalars['Int'], | |
| edges: Array<ContentfulMenuEdge>, | |
| nodes: Array<ContentfulMenu>, | |
| pageInfo: PageInfo, | |
| distinct: Array<Scalars['String']>, | |
| group: Array<ContentfulMenuGroupConnection>, | |
| }; | |
| export type ContentfulMenuConnectionDistinctArgs = { | |
| field: ContentfulMenuFieldsEnum | |
| }; | |
| export type ContentfulMenuConnectionGroupArgs = { | |
| skip?: Maybe<Scalars['Int']>, | |
| limit?: Maybe<Scalars['Int']>, | |
| field: ContentfulMenuFieldsEnum | |
| }; | |
| export type ContentfulMenuEdge = { | |
| __typename?: 'ContentfulMenuEdge', | |
| next?: Maybe<ContentfulMenu>, | |
| node: ContentfulMenu, | |
| previous?: Maybe<ContentfulMenu>, | |
| }; | |
| export enum ContentfulMenuFieldsEnum { | |
| Id = 'id', | |
| ParentId = 'parent___id', | |
| ParentParentId = 'parent___parent___id', | |
| ParentParentParentId = 'parent___parent___parent___id', | |
| ParentParentParentChildren = 'parent___parent___parent___children', | |
| ParentParentChildren = 'parent___parent___children', | |
| ParentParentChildrenId = 'parent___parent___children___id', | |
| ParentParentChildrenChildren = 'parent___parent___children___children', | |
| ParentParentInternalContent = 'parent___parent___internal___content', | |
| ParentParentInternalContentDigest = 'parent___parent___internal___contentDigest', | |
| ParentParentInternalDescription = 'parent___parent___internal___description', | |
| ParentParentInternalFieldOwners = 'parent___parent___internal___fieldOwners', | |
| ParentParentInternalIgnoreType = 'parent___parent___internal___ignoreType', | |
| ParentParentInternalMediaType = 'parent___parent___internal___mediaType', | |
| ParentParentInternalOwner = 'parent___parent___internal___owner', | |
| ParentParentInternalType = 'parent___parent___internal___type', | |
| ParentChildren = 'parent___children', | |
| ParentChildrenId = 'parent___children___id', | |
| ParentChildrenParentId = 'parent___children___parent___id', | |
| ParentChildrenParentChildren = 'parent___children___parent___children', | |
| ParentChildrenChildren = 'parent___children___children', | |
| ParentChildrenChildrenId = 'parent___children___children___id', | |
| ParentChildrenChildrenChildren = 'parent___children___children___children', | |
| ParentChildrenInternalContent = 'parent___children___internal___content', | |
| ParentChildrenInternalContentDigest = 'parent___children___internal___contentDigest', | |
| ParentChildrenInternalDescription = 'parent___children___internal___description', | |
| ParentChildrenInternalFieldOwners = 'parent___children___internal___fieldOwners', | |
| ParentChildrenInternalIgnoreType = 'parent___children___internal___ignoreType', | |
| ParentChildrenInternalMediaType = 'parent___children___internal___mediaType', | |
| ParentChildrenInternalOwner = 'parent___children___internal___owner', | |
| ParentChildrenInternalType = 'parent___children___internal___type', | |
| ParentInternalContent = 'parent___internal___content', | |
| ParentInternalContentDigest = 'parent___internal___contentDigest', | |
| ParentInternalDescription = 'parent___internal___description', | |
| ParentInternalFieldOwners = 'parent___internal___fieldOwners', | |
| ParentInternalIgnoreType = 'parent___internal___ignoreType', | |
| ParentInternalMediaType = 'parent___internal___mediaType', | |
| ParentInternalOwner = 'parent___internal___owner', | |
| ParentInternalType = 'parent___internal___type', | |
| Children = 'children', | |
| ChildrenId = 'children___id', | |
| ChildrenParentId = 'children___parent___id', | |
| ChildrenParentParentId = 'children___parent___parent___id', | |
| ChildrenParentParentChildren = 'children___parent___parent___children', | |
| ChildrenParentChildren = 'children___parent___children', | |
| ChildrenParentChildrenId = 'children___parent___children___id', | |
| ChildrenParentChildrenChildren = 'children___parent___children___children', | |
| ChildrenParentInternalContent = 'children___parent___internal___content', | |
| ChildrenParentInternalContentDigest = 'children___parent___internal___contentDigest', | |
| ChildrenParentInternalDescription = 'children___parent___internal___description', | |
| ChildrenParentInternalFieldOwners = 'children___parent___internal___fieldOwners', | |
| ChildrenParentInternalIgnoreType = 'children___parent___internal___ignoreType', | |
| ChildrenParentInternalMediaType = 'children___parent___internal___mediaType', | |
| ChildrenParentInternalOwner = 'children___parent___internal___owner', | |
| ChildrenParentInternalType = 'children___parent___internal___type', | |
| ChildrenChildren = 'children___children', | |
| ChildrenChildrenId = 'children___children___id', | |
| ChildrenChildrenParentId = 'children___children___parent___id', | |
| ChildrenChildrenParentChildren = 'children___children___parent___children', | |
| ChildrenChildrenChildren = 'children___children___children', | |
| ChildrenChildrenChildrenId = 'children___children___children___id', | |
| ChildrenChildrenChildrenChildren = 'children___children___children___children', | |
| ChildrenChildrenInternalContent = 'children___children___internal___content', | |
| ChildrenChildrenInternalContentDigest = 'children___children___internal___contentDigest', | |
| ChildrenChildrenInternalDescription = 'children___children___internal___description', | |
| ChildrenChildrenInternalFieldOwners = 'children___children___internal___fieldOwners', | |
| ChildrenChildrenInternalIgnoreType = 'children___children___internal___ignoreType', | |
| ChildrenChildrenInternalMediaType = 'children___children___internal___mediaType', | |
| ChildrenChildrenInternalOwner = 'children___children___internal___owner', | |
| ChildrenChildrenInternalType = 'children___children___internal___type', | |
| ChildrenInternalContent = 'children___internal___content', | |
| ChildrenInternalContentDigest = 'children___internal___contentDigest', | |
| ChildrenInternalDescription = 'children___internal___description', | |
| ChildrenInternalFieldOwners = 'children___internal___fieldOwners', | |
| ChildrenInternalIgnoreType = 'children___internal___ignoreType', | |
| ChildrenInternalMediaType = 'children___internal___mediaType', | |
| ChildrenInternalOwner = 'children___internal___owner', | |
| ChildrenInternalType = 'children___internal___type', | |
| InternalContent = 'internal___content', | |
| InternalContentDigest = 'internal___contentDigest', | |
| InternalDescription = 'internal___description', | |
| InternalFieldOwners = 'internal___fieldOwners', | |
| InternalIgnoreType = 'internal___ignoreType', | |
| InternalMediaType = 'internal___mediaType', | |
| InternalOwner = 'internal___owner', | |
| InternalType = 'internal___type', | |
| Name = 'name', | |
| MenuItems = 'menuItems', | |
| MenuItemsId = 'menuItems___id', | |
| MenuItemsParentId = 'menuItems___parent___id', | |
| MenuItemsParentParentId = 'menuItems___parent___parent___id', | |
| MenuItemsParentParentChildren = 'menuItems___parent___parent___children', | |
| MenuItemsParentChildren = 'menuItems___parent___children', | |
| MenuItemsParentChildrenId = 'menuItems___parent___children___id', | |
| MenuItemsParentChildrenChildren = 'menuItems___parent___children___children', | |
| MenuItemsParentInternalContent = 'menuItems___parent___internal___content', | |
| MenuItemsParentInternalContentDigest = 'menuItems___parent___internal___contentDigest', | |
| MenuItemsParentInternalDescription = 'menuItems___parent___internal___description', | |
| MenuItemsParentInternalFieldOwners = 'menuItems___parent___internal___fieldOwners', | |
| MenuItemsParentInternalIgnoreType = 'menuItems___parent___internal___ignoreType', | |
| MenuItemsParentInternalMediaType = 'menuItems___parent___internal___mediaType', | |
| MenuItemsParentInternalOwner = 'menuItems___parent___internal___owner', | |
| MenuItemsParentInternalType = 'menuItems___parent___internal___type', | |
| MenuItemsChildren = 'menuItems___children', | |
| MenuItemsChildrenId = 'menuItems___children___id', | |
| MenuItemsChildrenParentId = 'menuItems___children___parent___id', | |
| MenuItemsChildrenParentChildren = 'menuItems___children___parent___children', | |
| MenuItemsChildrenChildren = 'menuItems___children___children', | |
| MenuItemsChildrenChildrenId = 'menuItems___children___children___id', | |
| MenuItemsChildrenChildrenChildren = 'menuItems___children___children___children', | |
| MenuItemsChildrenInternalContent = 'menuItems___children___internal___content', | |
| MenuItemsChildrenInternalContentDigest = 'menuItems___children___internal___contentDigest', | |
| MenuItemsChildrenInternalDescription = 'menuItems___children___internal___description', | |
| MenuItemsChildrenInternalFieldOwners = 'menuItems___children___internal___fieldOwners', | |
| MenuItemsChildrenInternalIgnoreType = 'menuItems___children___internal___ignoreType', | |
| MenuItemsChildrenInternalMediaType = 'menuItems___children___internal___mediaType', | |
| MenuItemsChildrenInternalOwner = 'menuItems___children___internal___owner', | |
| MenuItemsChildrenInternalType = 'menuItems___children___internal___type', | |
| MenuItemsInternalContent = 'menuItems___internal___content', | |
| MenuItemsInternalContentDigest = 'menuItems___internal___contentDigest', | |
| MenuItemsInternalDescription = 'menuItems___internal___description', | |
| MenuItemsInternalFieldOwners = 'menuItems___internal___fieldOwners', | |
| MenuItemsInternalIgnoreType = 'menuItems___internal___ignoreType', | |
| MenuItemsInternalMediaType = 'menuItems___internal___mediaType', | |
| MenuItemsInternalOwner = 'menuItems___internal___owner', | |
| MenuItemsInternalType = 'menuItems___internal___type', | |
| MenuItemsTitle = 'menuItems___title', | |
| MenuItemsSlug = 'menuItems___slug', | |
| MenuItemsFeaturedImageId = 'menuItems___featuredImage___id', | |
| MenuItemsFeaturedImageParentId = 'menuItems___featuredImage___parent___id', | |
| MenuItemsFeaturedImageParentChildren = 'menuItems___featuredImage___parent___children', | |
| MenuItemsFeaturedImageChildren = 'menuItems___featuredImage___children', | |
| MenuItemsFeaturedImageChildrenId = 'menuItems___featuredImage___children___id', | |
| MenuItemsFeaturedImageChildrenChildren = 'menuItems___featuredImage___children___children', | |
| MenuItemsFeaturedImageInternalContent = 'menuItems___featuredImage___internal___content', | |
| MenuItemsFeaturedImageInternalContentDigest = 'menuItems___featuredImage___internal___contentDigest', | |
| MenuItemsFeaturedImageInternalDescription = 'menuItems___featuredImage___internal___description', | |
| MenuItemsFeaturedImageInternalFieldOwners = 'menuItems___featuredImage___internal___fieldOwners', | |
| MenuItemsFeaturedImageInternalIgnoreType = 'menuItems___featuredImage___internal___ignoreType', | |
| MenuItemsFeaturedImageInternalMediaType = 'menuItems___featuredImage___internal___mediaType', | |
| MenuItemsFeaturedImageInternalOwner = 'menuItems___featuredImage___internal___owner', | |
| MenuItemsFeaturedImageInternalType = 'menuItems___featuredImage___internal___type', | |
| MenuItemsFeaturedImageContentfulId = 'menuItems___featuredImage___contentful_id', | |
| MenuItemsFeaturedImageFileUrl = 'menuItems___featuredImage___file___url', | |
| MenuItemsFeaturedImageFileFileName = 'menuItems___featuredImage___file___fileName', | |
| MenuItemsFeaturedImageFileContentType = 'menuItems___featuredImage___file___contentType', | |
| MenuItemsFeaturedImageTitle = 'menuItems___featuredImage___title', | |
| MenuItemsFeaturedImageDescription = 'menuItems___featuredImage___description', | |
| MenuItemsFeaturedImageNodeLocale = 'menuItems___featuredImage___node_locale', | |
| MenuItemsFeaturedImageFixedBase64 = 'menuItems___featuredImage___fixed___base64', | |
| MenuItemsFeaturedImageFixedTracedSvg = 'menuItems___featuredImage___fixed___tracedSVG', | |
| MenuItemsFeaturedImageFixedAspectRatio = 'menuItems___featuredImage___fixed___aspectRatio', | |
| MenuItemsFeaturedImageFixedWidth = 'menuItems___featuredImage___fixed___width', | |
| MenuItemsFeaturedImageFixedHeight = 'menuItems___featuredImage___fixed___height', | |
| MenuItemsFeaturedImageFixedSrc = 'menuItems___featuredImage___fixed___src', | |
| MenuItemsFeaturedImageFixedSrcSet = 'menuItems___featuredImage___fixed___srcSet', | |
| MenuItemsFeaturedImageFixedSrcWebp = 'menuItems___featuredImage___fixed___srcWebp', | |
| MenuItemsFeaturedImageFixedSrcSetWebp = 'menuItems___featuredImage___fixed___srcSetWebp', | |
| MenuItemsFeaturedImageResolutionsBase64 = 'menuItems___featuredImage___resolutions___base64', | |
| MenuItemsFeaturedImageResolutionsTracedSvg = 'menuItems___featuredImage___resolutions___tracedSVG', | |
| MenuItemsFeaturedImageResolutionsAspectRatio = 'menuItems___featuredImage___resolutions___aspectRatio', | |
| MenuItemsFeaturedImageResolutionsWidth = 'menuItems___featuredImage___resolutions___width', | |
| MenuItemsFeaturedImageResolutionsHeight = 'menuItems___featuredImage___resolutions___height', | |
| MenuItemsFeaturedImageResolutionsSrc = 'menuItems___featuredImage___resolutions___src', | |
| MenuItemsFeaturedImageResolutionsSrcSet = 'menuItems___featuredImage___resolutions___srcSet', | |
| MenuItemsFeaturedImageResolutionsSrcWebp = 'menuItems___featuredImage___resolutions___srcWebp', | |
| MenuItemsFeaturedImageResolutionsSrcSetWebp = 'menuItems___featuredImage___resolutions___srcSetWebp', | |
| MenuItemsFeaturedImageFluidBase64 = 'menuItems___featuredImage___fluid___base64', | |
| MenuItemsFeaturedImageFluidTracedSvg = 'menuItems___featuredImage___fluid___tracedSVG', | |
| MenuItemsFeaturedImageFluidAspectRatio = 'menuItems___featuredImage___fluid___aspectRatio', | |
| MenuItemsFeaturedImageFluidSrc = 'menuItems___featuredImage___fluid___src', | |
| MenuItemsFeaturedImageFluidSrcSet = 'menuItems___featuredImage___fluid___srcSet', | |
| MenuItemsFeaturedImageFluidSrcWebp = 'menuItems___featuredImage___fluid___srcWebp', | |
| MenuItemsFeaturedImageFluidSrcSetWebp = 'menuItems___featuredImage___fluid___srcSetWebp', | |
| MenuItemsFeaturedImageFluidSizes = 'menuItems___featuredImage___fluid___sizes', | |
| MenuItemsFeaturedImageSizesBase64 = 'menuItems___featuredImage___sizes___base64', | |
| MenuItemsFeaturedImageSizesTracedSvg = 'menuItems___featuredImage___sizes___tracedSVG', | |
| MenuItemsFeaturedImageSizesAspectRatio = 'menuItems___featuredImage___sizes___aspectRatio', | |
| MenuItemsFeaturedImageSizesSrc = 'menuItems___featuredImage___sizes___src', | |
| MenuItemsFeaturedImageSizesSrcSet = 'menuItems___featuredImage___sizes___srcSet', | |
| MenuItemsFeaturedImageSizesSrcWebp = 'menuItems___featuredImage___sizes___srcWebp', | |
| MenuItemsFeaturedImageSizesSrcSetWebp = 'menuItems___featuredImage___sizes___srcSetWebp', | |
| MenuItemsFeaturedImageSizesSizes = 'menuItems___featuredImage___sizes___sizes', | |
| MenuItemsFeaturedImageResizeBase64 = 'menuItems___featuredImage___resize___base64', | |
| MenuItemsFeaturedImageResizeTracedSvg = 'menuItems___featuredImage___resize___tracedSVG', | |
| MenuItemsFeaturedImageResizeSrc = 'menuItems___featuredImage___resize___src', | |
| MenuItemsFeaturedImageResizeWidth = 'menuItems___featuredImage___resize___width', | |
| MenuItemsFeaturedImageResizeHeight = 'menuItems___featuredImage___resize___height', | |
| MenuItemsFeaturedImageResizeAspectRatio = 'menuItems___featuredImage___resize___aspectRatio', | |
| MenuItemsBlogpost = 'menuItems___blogpost', | |
| MenuItemsBlogpostId = 'menuItems___blogpost___id', | |
| MenuItemsBlogpostParentId = 'menuItems___blogpost___parent___id', | |
| MenuItemsBlogpostParentChildren = 'menuItems___blogpost___parent___children', | |
| MenuItemsBlogpostChildren = 'menuItems___blogpost___children', | |
| MenuItemsBlogpostChildrenId = 'menuItems___blogpost___children___id', | |
| MenuItemsBlogpostChildrenChildren = 'menuItems___blogpost___children___children', | |
| MenuItemsBlogpostInternalContent = 'menuItems___blogpost___internal___content', | |
| MenuItemsBlogpostInternalContentDigest = 'menuItems___blogpost___internal___contentDigest', | |
| MenuItemsBlogpostInternalDescription = 'menuItems___blogpost___internal___description', | |
| MenuItemsBlogpostInternalFieldOwners = 'menuItems___blogpost___internal___fieldOwners', | |
| MenuItemsBlogpostInternalIgnoreType = 'menuItems___blogpost___internal___ignoreType', | |
| MenuItemsBlogpostInternalMediaType = 'menuItems___blogpost___internal___mediaType', | |
| MenuItemsBlogpostInternalOwner = 'menuItems___blogpost___internal___owner', | |
| MenuItemsBlogpostInternalType = 'menuItems___blogpost___internal___type', | |
| MenuItemsBlogpostTitle = 'menuItems___blogpost___title', | |
| MenuItemsBlogpostSlug = 'menuItems___blogpost___slug', | |
| MenuItemsBlogpostPublishDate = 'menuItems___blogpost___publishDate', | |
| MenuItemsBlogpostFeaturedImageId = 'menuItems___blogpost___featuredImage___id', | |
| MenuItemsBlogpostFeaturedImageChildren = 'menuItems___blogpost___featuredImage___children', | |
| MenuItemsBlogpostFeaturedImageContentfulId = 'menuItems___blogpost___featuredImage___contentful_id', | |
| MenuItemsBlogpostFeaturedImageTitle = 'menuItems___blogpost___featuredImage___title', | |
| MenuItemsBlogpostFeaturedImageDescription = 'menuItems___blogpost___featuredImage___description', | |
| MenuItemsBlogpostFeaturedImageNodeLocale = 'menuItems___blogpost___featuredImage___node_locale', | |
| MenuItemsBlogpostCategories = 'menuItems___blogpost___categories', | |
| MenuItemsBlogpostCategoriesId = 'menuItems___blogpost___categories___id', | |
| MenuItemsBlogpostCategoriesChildren = 'menuItems___blogpost___categories___children', | |
| MenuItemsBlogpostCategoriesTitle = 'menuItems___blogpost___categories___title', | |
| MenuItemsBlogpostCategoriesSlug = 'menuItems___blogpost___categories___slug', | |
| MenuItemsBlogpostCategoriesBlogpost = 'menuItems___blogpost___categories___blogpost', | |
| MenuItemsBlogpostCategoriesSpaceId = 'menuItems___blogpost___categories___spaceId', | |
| MenuItemsBlogpostCategoriesContentfulId = 'menuItems___blogpost___categories___contentful_id', | |
| MenuItemsBlogpostCategoriesCreatedAt = 'menuItems___blogpost___categories___createdAt', | |
| MenuItemsBlogpostCategoriesUpdatedAt = 'menuItems___blogpost___categories___updatedAt', | |
| MenuItemsBlogpostCategoriesNodeLocale = 'menuItems___blogpost___categories___node_locale', | |
| MenuItemsBlogpostCategoriesMenu = 'menuItems___blogpost___categories___menu', | |
| MenuItemsBlogpostCategoriesProduct = 'menuItems___blogpost___categories___product', | |
| MenuItemsBlogpostPage = 'menuItems___blogpost___page', | |
| MenuItemsBlogpostPageId = 'menuItems___blogpost___page___id', | |
| MenuItemsBlogpostPageChildren = 'menuItems___blogpost___page___children', | |
| MenuItemsBlogpostPageTitle = 'menuItems___blogpost___page___title', | |
| MenuItemsBlogpostPageSlug = 'menuItems___blogpost___page___slug', | |
| MenuItemsBlogpostPageIsHomePage = 'menuItems___blogpost___page___isHomePage', | |
| MenuItemsBlogpostPageFeaturedPosts = 'menuItems___blogpost___page___featuredPosts', | |
| MenuItemsBlogpostPageSpaceId = 'menuItems___blogpost___page___spaceId', | |
| MenuItemsBlogpostPageContentfulId = 'menuItems___blogpost___page___contentful_id', | |
| MenuItemsBlogpostPageCreatedAt = 'menuItems___blogpost___page___createdAt', | |
| MenuItemsBlogpostPageUpdatedAt = 'menuItems___blogpost___page___updatedAt', | |
| MenuItemsBlogpostPageNodeLocale = 'menuItems___blogpost___page___node_locale', | |
| MenuItemsBlogpostBodyId = 'menuItems___blogpost___body___id', | |
| MenuItemsBlogpostBodyChildren = 'menuItems___blogpost___body___children', | |
| MenuItemsBlogpostBodyContent = 'menuItems___blogpost___body___content', | |
| MenuItemsBlogpostBodyNodeType = 'menuItems___blogpost___body___nodeType', | |
| MenuItemsBlogpostBodyBody = 'menuItems___blogpost___body___body', | |
| MenuItemsBlogpostBodyJson = 'menuItems___blogpost___body___json', | |
| MenuItemsBlogpostSpaceId = 'menuItems___blogpost___spaceId', | |
| MenuItemsBlogpostContentfulId = 'menuItems___blogpost___contentful_id', | |
| MenuItemsBlogpostCreatedAt = 'menuItems___blogpost___createdAt', | |
| MenuItemsBlogpostUpdatedAt = 'menuItems___blogpost___updatedAt', | |
| MenuItemsBlogpostNodeLocale = 'menuItems___blogpost___node_locale', | |
| MenuItemsBlogpostAuthorId = 'menuItems___blogpost___author___id', | |
| MenuItemsBlogpostAuthorChildren = 'menuItems___blogpost___author___children', | |
| MenuItemsBlogpostAuthorName = 'menuItems___blogpost___author___name', | |
| MenuItemsBlogpostAuthorTitle = 'menuItems___blogpost___author___title', | |
| MenuItemsBlogpostAuthorCompany = 'menuItems___blogpost___author___company', | |
| MenuItemsBlogpostAuthorEmail = 'menuItems___blogpost___author___email', | |
| MenuItemsBlogpostAuthorPhone = 'menuItems___blogpost___author___phone', | |
| MenuItemsBlogpostAuthorFacebook = 'menuItems___blogpost___author___facebook', | |
| MenuItemsBlogpostAuthorTwitter = 'menuItems___blogpost___author___twitter', | |
| MenuItemsBlogpostAuthorGithub = 'menuItems___blogpost___author___github', | |
| MenuItemsBlogpostAuthorBlogpost = 'menuItems___blogpost___author___blogpost', | |
| MenuItemsBlogpostAuthorSpaceId = 'menuItems___blogpost___author___spaceId', | |
| MenuItemsBlogpostAuthorContentfulId = 'menuItems___blogpost___author___contentful_id', | |
| MenuItemsBlogpostAuthorCreatedAt = 'menuItems___blogpost___author___createdAt', | |
| MenuItemsBlogpostAuthorUpdatedAt = 'menuItems___blogpost___author___updatedAt', | |
| MenuItemsBlogpostAuthorNodeLocale = 'menuItems___blogpost___author___node_locale', | |
| MenuItemsBlogpostChildContentfulBlogPostBodyRichTextNodeId = 'menuItems___blogpost___childContentfulBlogPostBodyRichTextNode___id', | |
| MenuItemsBlogpostChildContentfulBlogPostBodyRichTextNodeChildren = 'menuItems___blogpost___childContentfulBlogPostBodyRichTextNode___children', | |
| MenuItemsBlogpostChildContentfulBlogPostBodyRichTextNodeContent = 'menuItems___blogpost___childContentfulBlogPostBodyRichTextNode___content', | |
| MenuItemsBlogpostChildContentfulBlogPostBodyRichTextNodeNodeType = 'menuItems___blogpost___childContentfulBlogPostBodyRichTextNode___nodeType', | |
| MenuItemsBlogpostChildContentfulBlogPostBodyRichTextNodeBody = 'menuItems___blogpost___childContentfulBlogPostBodyRichTextNode___body', | |
| MenuItemsBlogpostChildContentfulBlogPostBodyRichTextNodeJson = 'menuItems___blogpost___childContentfulBlogPostBodyRichTextNode___json', | |
| MenuItemsSpaceId = 'menuItems___spaceId', | |
| MenuItemsContentfulId = 'menuItems___contentful_id', | |
| MenuItemsCreatedAt = 'menuItems___createdAt', | |
| MenuItemsUpdatedAt = 'menuItems___updatedAt', | |
| MenuItemsNodeLocale = 'menuItems___node_locale', | |
| MenuItemsMenu = 'menuItems___menu', | |
| MenuItemsMenuId = 'menuItems___menu___id', | |
| MenuItemsMenuParentId = 'menuItems___menu___parent___id', | |
| MenuItemsMenuParentChildren = 'menuItems___menu___parent___children', | |
| MenuItemsMenuChildren = 'menuItems___menu___children', | |
| MenuItemsMenuChildrenId = 'menuItems___menu___children___id', | |
| MenuItemsMenuChildrenChildren = 'menuItems___menu___children___children', | |
| MenuItemsMenuInternalContent = 'menuItems___menu___internal___content', | |
| MenuItemsMenuInternalContentDigest = 'menuItems___menu___internal___contentDigest', | |
| MenuItemsMenuInternalDescription = 'menuItems___menu___internal___description', | |
| MenuItemsMenuInternalFieldOwners = 'menuItems___menu___internal___fieldOwners', | |
| MenuItemsMenuInternalIgnoreType = 'menuItems___menu___internal___ignoreType', | |
| MenuItemsMenuInternalMediaType = 'menuItems___menu___internal___mediaType', | |
| MenuItemsMenuInternalOwner = 'menuItems___menu___internal___owner', | |
| MenuItemsMenuInternalType = 'menuItems___menu___internal___type', | |
| MenuItemsMenuName = 'menuItems___menu___name', | |
| MenuItemsMenuMenuItems = 'menuItems___menu___menuItems', | |
| MenuItemsMenuMenuItemsId = 'menuItems___menu___menuItems___id', | |
| MenuItemsMenuMenuItemsChildren = 'menuItems___menu___menuItems___children', | |
| MenuItemsMenuMenuItemsTitle = 'menuItems___menu___menuItems___title', | |
| MenuItemsMenuMenuItemsSlug = 'menuItems___menu___menuItems___slug', | |
| MenuItemsMenuMenuItemsBlogpost = 'menuItems___menu___menuItems___blogpost', | |
| MenuItemsMenuMenuItemsSpaceId = 'menuItems___menu___menuItems___spaceId', | |
| MenuItemsMenuMenuItemsContentfulId = 'menuItems___menu___menuItems___contentful_id', | |
| MenuItemsMenuMenuItemsCreatedAt = 'menuItems___menu___menuItems___createdAt', | |
| MenuItemsMenuMenuItemsUpdatedAt = 'menuItems___menu___menuItems___updatedAt', | |
| MenuItemsMenuMenuItemsNodeLocale = 'menuItems___menu___menuItems___node_locale', | |
| MenuItemsMenuMenuItemsMenu = 'menuItems___menu___menuItems___menu', | |
| MenuItemsMenuMenuItemsProduct = 'menuItems___menu___menuItems___product', | |
| MenuItemsMenuSpaceId = 'menuItems___menu___spaceId', | |
| MenuItemsMenuContentfulId = 'menuItems___menu___contentful_id', | |
| MenuItemsMenuCreatedAt = 'menuItems___menu___createdAt', | |
| MenuItemsMenuUpdatedAt = 'menuItems___menu___updatedAt', | |
| MenuItemsMenuNodeLocale = 'menuItems___menu___node_locale', | |
| MenuItemsProduct = 'menuItems___product', | |
| MenuItemsProductId = 'menuItems___product___id', | |
| MenuItemsProductParentId = 'menuItems___product___parent___id', | |
| MenuItemsProductParentChildren = 'menuItems___product___parent___children', | |
| MenuItemsProductChildren = 'menuItems___product___children', | |
| MenuItemsProductChildrenId = 'menuItems___product___children___id', | |
| MenuItemsProductChildrenChildren = 'menuItems___product___children___children', | |
| MenuItemsProductInternalContent = 'menuItems___product___internal___content', | |
| MenuItemsProductInternalContentDigest = 'menuItems___product___internal___contentDigest', | |
| MenuItemsProductInternalDescription = 'menuItems___product___internal___description', | |
| MenuItemsProductInternalFieldOwners = 'menuItems___product___internal___fieldOwners', | |
| MenuItemsProductInternalIgnoreType = 'menuItems___product___internal___ignoreType', | |
| MenuItemsProductInternalMediaType = 'menuItems___product___internal___mediaType', | |
| MenuItemsProductInternalOwner = 'menuItems___product___internal___owner', | |
| MenuItemsProductInternalType = 'menuItems___product___internal___type', | |
| MenuItemsProductTitle = 'menuItems___product___title', | |
| MenuItemsProductSlug = 'menuItems___product___slug', | |
| MenuItemsProductPrice = 'menuItems___product___price', | |
| MenuItemsProductFeaturedImageId = 'menuItems___product___featuredImage___id', | |
| MenuItemsProductFeaturedImageChildren = 'menuItems___product___featuredImage___children', | |
| MenuItemsProductFeaturedImageContentfulId = 'menuItems___product___featuredImage___contentful_id', | |
| MenuItemsProductFeaturedImageTitle = 'menuItems___product___featuredImage___title', | |
| MenuItemsProductFeaturedImageDescription = 'menuItems___product___featuredImage___description', | |
| MenuItemsProductFeaturedImageNodeLocale = 'menuItems___product___featuredImage___node_locale', | |
| MenuItemsProductCategories = 'menuItems___product___categories', | |
| MenuItemsProductCategoriesId = 'menuItems___product___categories___id', | |
| MenuItemsProductCategoriesChildren = 'menuItems___product___categories___children', | |
| MenuItemsProductCategoriesTitle = 'menuItems___product___categories___title', | |
| MenuItemsProductCategoriesSlug = 'menuItems___product___categories___slug', | |
| MenuItemsProductCategoriesBlogpost = 'menuItems___product___categories___blogpost', | |
| MenuItemsProductCategoriesSpaceId = 'menuItems___product___categories___spaceId', | |
| MenuItemsProductCategoriesContentfulId = 'menuItems___product___categories___contentful_id', | |
| MenuItemsProductCategoriesCreatedAt = 'menuItems___product___categories___createdAt', | |
| MenuItemsProductCategoriesUpdatedAt = 'menuItems___product___categories___updatedAt', | |
| MenuItemsProductCategoriesNodeLocale = 'menuItems___product___categories___node_locale', | |
| MenuItemsProductCategoriesMenu = 'menuItems___product___categories___menu', | |
| MenuItemsProductCategoriesProduct = 'menuItems___product___categories___product', | |
| MenuItemsProductBodyId = 'menuItems___product___body___id', | |
| MenuItemsProductBodyChildren = 'menuItems___product___body___children', | |
| MenuItemsProductBodyContent = 'menuItems___product___body___content', | |
| MenuItemsProductBodyNodeType = 'menuItems___product___body___nodeType', | |
| MenuItemsProductBodyBody = 'menuItems___product___body___body', | |
| MenuItemsProductBodyJson = 'menuItems___product___body___json', | |
| MenuItemsProductSpaceId = 'menuItems___product___spaceId', | |
| MenuItemsProductContentfulId = 'menuItems___product___contentful_id', | |
| MenuItemsProductCreatedAt = 'menuItems___product___createdAt', | |
| MenuItemsProductUpdatedAt = 'menuItems___product___updatedAt', | |
| MenuItemsProductNodeLocale = 'menuItems___product___node_locale', | |
| MenuItemsProductChildContentfulProductBodyRichTextNodeId = 'menuItems___product___childContentfulProductBodyRichTextNode___id', | |
| MenuItemsProductChildContentfulProductBodyRichTextNodeChildren = 'menuItems___product___childContentfulProductBodyRichTextNode___children', | |
| MenuItemsProductChildContentfulProductBodyRichTextNodeContent = 'menuItems___product___childContentfulProductBodyRichTextNode___content', | |
| MenuItemsProductChildContentfulProductBodyRichTextNodeNodeType = 'menuItems___product___childContentfulProductBodyRichTextNode___nodeType', | |
| MenuItemsProductChildContentfulProductBodyRichTextNodeBody = 'menuItems___product___childContentfulProductBodyRichTextNode___body', | |
| MenuItemsProductChildContentfulProductBodyRichTextNodeJson = 'menuItems___product___childContentfulProductBodyRichTextNode___json', | |
| MenuItemsBodyId = 'menuItems___body___id', | |
| MenuItemsBodyParentId = 'menuItems___body___parent___id', | |
| MenuItemsBodyParentChildren = 'menuItems___body___parent___children', | |
| MenuItemsBodyChildren = 'menuItems___body___children', | |
| MenuItemsBodyChildrenId = 'menuItems___body___children___id', | |
| MenuItemsBodyChildrenChildren = 'menuItems___body___children___children', | |
| MenuItemsBodyInternalContent = 'menuItems___body___internal___content', | |
| MenuItemsBodyInternalContentDigest = 'menuItems___body___internal___contentDigest', | |
| MenuItemsBodyInternalDescription = 'menuItems___body___internal___description', | |
| MenuItemsBodyInternalFieldOwners = 'menuItems___body___internal___fieldOwners', | |
| MenuItemsBodyInternalIgnoreType = 'menuItems___body___internal___ignoreType', | |
| MenuItemsBodyInternalMediaType = 'menuItems___body___internal___mediaType', | |
| MenuItemsBodyInternalOwner = 'menuItems___body___internal___owner', | |
| MenuItemsBodyInternalType = 'menuItems___body___internal___type', | |
| MenuItemsBodyContent = 'menuItems___body___content', | |
| MenuItemsBodyContentContent = 'menuItems___body___content___content', | |
| MenuItemsBodyContentNodeType = 'menuItems___body___content___nodeType', | |
| MenuItemsBodyNodeType = 'menuItems___body___nodeType', | |
| MenuItemsBodyBody = 'menuItems___body___body', | |
| MenuItemsBodyJson = 'menuItems___body___json', | |
| MenuItemsBodyChildContentfulRichTextId = 'menuItems___body___childContentfulRichText___id', | |
| MenuItemsBodyChildContentfulRichTextChildren = 'menuItems___body___childContentfulRichText___children', | |
| MenuItemsBodyChildContentfulRichTextHtml = 'menuItems___body___childContentfulRichText___html', | |
| MenuItemsBodyChildContentfulRichTextTimeToRead = 'menuItems___body___childContentfulRichText___timeToRead', | |
| MenuItemsChildContentfulCategoryBodyRichTextNodeId = 'menuItems___childContentfulCategoryBodyRichTextNode___id', | |
| MenuItemsChildContentfulCategoryBodyRichTextNodeParentId = 'menuItems___childContentfulCategoryBodyRichTextNode___parent___id', | |
| MenuItemsChildContentfulCategoryBodyRichTextNodeParentChildren = 'menuItems___childContentfulCategoryBodyRichTextNode___parent___children', | |
| MenuItemsChildContentfulCategoryBodyRichTextNodeChildren = 'menuItems___childContentfulCategoryBodyRichTextNode___children', | |
| MenuItemsChildContentfulCategoryBodyRichTextNodeChildrenId = 'menuItems___childContentfulCategoryBodyRichTextNode___children___id', | |
| MenuItemsChildContentfulCategoryBodyRichTextNodeChildrenChildren = 'menuItems___childContentfulCategoryBodyRichTextNode___children___children', | |
| MenuItemsChildContentfulCategoryBodyRichTextNodeInternalContent = 'menuItems___childContentfulCategoryBodyRichTextNode___internal___content', | |
| MenuItemsChildContentfulCategoryBodyRichTextNodeInternalContentDigest = 'menuItems___childContentfulCategoryBodyRichTextNode___internal___contentDigest', | |
| MenuItemsChildContentfulCategoryBodyRichTextNodeInternalDescription = 'menuItems___childContentfulCategoryBodyRichTextNode___internal___description', | |
| MenuItemsChildContentfulCategoryBodyRichTextNodeInternalFieldOwners = 'menuItems___childContentfulCategoryBodyRichTextNode___internal___fieldOwners', | |
| MenuItemsChildContentfulCategoryBodyRichTextNodeInternalIgnoreType = 'menuItems___childContentfulCategoryBodyRichTextNode___internal___ignoreType', | |
| MenuItemsChildContentfulCategoryBodyRichTextNodeInternalMediaType = 'menuItems___childContentfulCategoryBodyRichTextNode___internal___mediaType', | |
| MenuItemsChildContentfulCategoryBodyRichTextNodeInternalOwner = 'menuItems___childContentfulCategoryBodyRichTextNode___internal___owner', | |
| MenuItemsChildContentfulCategoryBodyRichTextNodeInternalType = 'menuItems___childContentfulCategoryBodyRichTextNode___internal___type', | |
| MenuItemsChildContentfulCategoryBodyRichTextNodeContent = 'menuItems___childContentfulCategoryBodyRichTextNode___content', | |
| MenuItemsChildContentfulCategoryBodyRichTextNodeContentContent = 'menuItems___childContentfulCategoryBodyRichTextNode___content___content', | |
| MenuItemsChildContentfulCategoryBodyRichTextNodeContentNodeType = 'menuItems___childContentfulCategoryBodyRichTextNode___content___nodeType', | |
| MenuItemsChildContentfulCategoryBodyRichTextNodeNodeType = 'menuItems___childContentfulCategoryBodyRichTextNode___nodeType', | |
| MenuItemsChildContentfulCategoryBodyRichTextNodeBody = 'menuItems___childContentfulCategoryBodyRichTextNode___body', | |
| MenuItemsChildContentfulCategoryBodyRichTextNodeJson = 'menuItems___childContentfulCategoryBodyRichTextNode___json', | |
| MenuItemsChildContentfulCategoryBodyRichTextNodeChildContentfulRichTextId = 'menuItems___childContentfulCategoryBodyRichTextNode___childContentfulRichText___id', | |
| MenuItemsChildContentfulCategoryBodyRichTextNodeChildContentfulRichTextChildren = 'menuItems___childContentfulCategoryBodyRichTextNode___childContentfulRichText___children', | |
| MenuItemsChildContentfulCategoryBodyRichTextNodeChildContentfulRichTextHtml = 'menuItems___childContentfulCategoryBodyRichTextNode___childContentfulRichText___html', | |
| MenuItemsChildContentfulCategoryBodyRichTextNodeChildContentfulRichTextTimeToRead = 'menuItems___childContentfulCategoryBodyRichTextNode___childContentfulRichText___timeToRead', | |
| SpaceId = 'spaceId', | |
| ContentfulId = 'contentful_id', | |
| CreatedAt = 'createdAt', | |
| UpdatedAt = 'updatedAt', | |
| NodeLocale = 'node_locale' | |
| } | |
| export type ContentfulMenuFilterInput = { | |
| id?: Maybe<StringQueryOperatorInput>, | |
| parent?: Maybe<NodeFilterInput>, | |
| children?: Maybe<NodeFilterListInput>, | |
| internal?: Maybe<InternalFilterInput>, | |
| name?: Maybe<StringQueryOperatorInput>, | |
| menuItems?: Maybe<ContentfulCategoryFilterListInput>, | |
| spaceId?: Maybe<StringQueryOperatorInput>, | |
| contentful_id?: Maybe<StringQueryOperatorInput>, | |
| createdAt?: Maybe<DateQueryOperatorInput>, | |
| updatedAt?: Maybe<DateQueryOperatorInput>, | |
| node_locale?: Maybe<StringQueryOperatorInput>, | |
| }; | |
| export type ContentfulMenuFilterListInput = { | |
| elemMatch?: Maybe<ContentfulMenuFilterInput>, | |
| }; | |
| export type ContentfulMenuGroupConnection = { | |
| __typename?: 'ContentfulMenuGroupConnection', | |
| totalCount: Scalars['Int'], | |
| edges: Array<ContentfulMenuEdge>, | |
| nodes: Array<ContentfulMenu>, | |
| pageInfo: PageInfo, | |
| field: Scalars['String'], | |
| fieldValue?: Maybe<Scalars['String']>, | |
| }; | |
| export type ContentfulMenuSortInput = { | |
| fields?: Maybe<Array<Maybe<ContentfulMenuFieldsEnum>>>, | |
| order?: Maybe<Array<Maybe<SortOrderEnum>>>, | |
| }; | |
| export type ContentfulPage = Node & { | |
| __typename?: 'ContentfulPage', | |
| id: Scalars['ID'], | |
| parent?: Maybe<Node>, | |
| children: Array<Node>, | |
| internal: Internal, | |
| title?: Maybe<Scalars['String']>, | |
| slug?: Maybe<Scalars['String']>, | |
| isHomePage?: Maybe<Scalars['Boolean']>, | |
| featuredPosts?: Maybe<Array<Maybe<ContentfulBlogPost>>>, | |
| spaceId?: Maybe<Scalars['String']>, | |
| contentful_id?: Maybe<Scalars['String']>, | |
| createdAt?: Maybe<Scalars['Date']>, | |
| updatedAt?: Maybe<Scalars['Date']>, | |
| node_locale?: Maybe<Scalars['String']>, | |
| body?: Maybe<ContentfulPageBodyRichTextNode>, | |
| childContentfulPageBodyRichTextNode?: Maybe<ContentfulPageBodyRichTextNode>, | |
| }; | |
| export type ContentfulPageCreatedAtArgs = { | |
| formatString?: Maybe<Scalars['String']>, | |
| fromNow?: Maybe<Scalars['Boolean']>, | |
| difference?: Maybe<Scalars['String']>, | |
| locale?: Maybe<Scalars['String']> | |
| }; | |
| export type ContentfulPageUpdatedAtArgs = { | |
| formatString?: Maybe<Scalars['String']>, | |
| fromNow?: Maybe<Scalars['Boolean']>, | |
| difference?: Maybe<Scalars['String']>, | |
| locale?: Maybe<Scalars['String']> | |
| }; | |
| export type ContentfulPageBodyRichTextNode = Node & { | |
| __typename?: 'contentfulPageBodyRichTextNode', | |
| id: Scalars['ID'], | |
| parent?: Maybe<Node>, | |
| children: Array<Node>, | |
| internal: Internal, | |
| content?: Maybe<Array<Maybe<ContentfulPageBodyRichTextNodeContent>>>, | |
| nodeType?: Maybe<Scalars['String']>, | |
| body?: Maybe<Scalars['String']>, | |
| json?: Maybe<Scalars['JSON']>, | |
| childContentfulRichText?: Maybe<ContentfulRichText>, | |
| }; | |
| export type ContentfulPageBodyRichTextNodeConnection = { | |
| __typename?: 'contentfulPageBodyRichTextNodeConnection', | |
| totalCount: Scalars['Int'], | |
| edges: Array<ContentfulPageBodyRichTextNodeEdge>, | |
| nodes: Array<ContentfulPageBodyRichTextNode>, | |
| pageInfo: PageInfo, | |
| distinct: Array<Scalars['String']>, | |
| group: Array<ContentfulPageBodyRichTextNodeGroupConnection>, | |
| }; | |
| export type ContentfulPageBodyRichTextNodeConnectionDistinctArgs = { | |
| field: ContentfulPageBodyRichTextNodeFieldsEnum | |
| }; | |
| export type ContentfulPageBodyRichTextNodeConnectionGroupArgs = { | |
| skip?: Maybe<Scalars['Int']>, | |
| limit?: Maybe<Scalars['Int']>, | |
| field: ContentfulPageBodyRichTextNodeFieldsEnum | |
| }; | |
| export type ContentfulPageBodyRichTextNodeContent = { | |
| __typename?: 'contentfulPageBodyRichTextNodeContent', | |
| content?: Maybe<Array<Maybe<ContentfulPageBodyRichTextNodeContentContent>>>, | |
| nodeType?: Maybe<Scalars['String']>, | |
| }; | |
| export type ContentfulPageBodyRichTextNodeContentContent = { | |
| __typename?: 'contentfulPageBodyRichTextNodeContentContent', | |
| value?: Maybe<Scalars['String']>, | |
| nodeType?: Maybe<Scalars['String']>, | |
| }; | |
| export type ContentfulPageBodyRichTextNodeContentContentFilterInput = { | |
| value?: Maybe<StringQueryOperatorInput>, | |
| nodeType?: Maybe<StringQueryOperatorInput>, | |
| }; | |
| export type ContentfulPageBodyRichTextNodeContentContentFilterListInput = { | |
| elemMatch?: Maybe<ContentfulPageBodyRichTextNodeContentContentFilterInput>, | |
| }; | |
| export type ContentfulPageBodyRichTextNodeContentFilterInput = { | |
| content?: Maybe<ContentfulPageBodyRichTextNodeContentContentFilterListInput>, | |
| nodeType?: Maybe<StringQueryOperatorInput>, | |
| }; | |
| export type ContentfulPageBodyRichTextNodeContentFilterListInput = { | |
| elemMatch?: Maybe<ContentfulPageBodyRichTextNodeContentFilterInput>, | |
| }; | |
| export type ContentfulPageBodyRichTextNodeEdge = { | |
| __typename?: 'contentfulPageBodyRichTextNodeEdge', | |
| next?: Maybe<ContentfulPageBodyRichTextNode>, | |
| node: ContentfulPageBodyRichTextNode, | |
| previous?: Maybe<ContentfulPageBodyRichTextNode>, | |
| }; | |
| export enum ContentfulPageBodyRichTextNodeFieldsEnum { | |
| Id = 'id', | |
| ParentId = 'parent___id', | |
| ParentParentId = 'parent___parent___id', | |
| ParentParentParentId = 'parent___parent___parent___id', | |
| ParentParentParentChildren = 'parent___parent___parent___children', | |
| ParentParentChildren = 'parent___parent___children', | |
| ParentParentChildrenId = 'parent___parent___children___id', | |
| ParentParentChildrenChildren = 'parent___parent___children___children', | |
| ParentParentInternalContent = 'parent___parent___internal___content', | |
| ParentParentInternalContentDigest = 'parent___parent___internal___contentDigest', | |
| ParentParentInternalDescription = 'parent___parent___internal___description', | |
| ParentParentInternalFieldOwners = 'parent___parent___internal___fieldOwners', | |
| ParentParentInternalIgnoreType = 'parent___parent___internal___ignoreType', | |
| ParentParentInternalMediaType = 'parent___parent___internal___mediaType', | |
| ParentParentInternalOwner = 'parent___parent___internal___owner', | |
| ParentParentInternalType = 'parent___parent___internal___type', | |
| ParentChildren = 'parent___children', | |
| ParentChildrenId = 'parent___children___id', | |
| ParentChildrenParentId = 'parent___children___parent___id', | |
| ParentChildrenParentChildren = 'parent___children___parent___children', | |
| ParentChildrenChildren = 'parent___children___children', | |
| ParentChildrenChildrenId = 'parent___children___children___id', | |
| ParentChildrenChildrenChildren = 'parent___children___children___children', | |
| ParentChildrenInternalContent = 'parent___children___internal___content', | |
| ParentChildrenInternalContentDigest = 'parent___children___internal___contentDigest', | |
| ParentChildrenInternalDescription = 'parent___children___internal___description', | |
| ParentChildrenInternalFieldOwners = 'parent___children___internal___fieldOwners', | |
| ParentChildrenInternalIgnoreType = 'parent___children___internal___ignoreType', | |
| ParentChildrenInternalMediaType = 'parent___children___internal___mediaType', | |
| ParentChildrenInternalOwner = 'parent___children___internal___owner', | |
| ParentChildrenInternalType = 'parent___children___internal___type', | |
| ParentInternalContent = 'parent___internal___content', | |
| ParentInternalContentDigest = 'parent___internal___contentDigest', | |
| ParentInternalDescription = 'parent___internal___description', | |
| ParentInternalFieldOwners = 'parent___internal___fieldOwners', | |
| ParentInternalIgnoreType = 'parent___internal___ignoreType', | |
| ParentInternalMediaType = 'parent___internal___mediaType', | |
| ParentInternalOwner = 'parent___internal___owner', | |
| ParentInternalType = 'parent___internal___type', | |
| Children = 'children', | |
| ChildrenId = 'children___id', | |
| ChildrenParentId = 'children___parent___id', | |
| ChildrenParentParentId = 'children___parent___parent___id', | |
| ChildrenParentParentChildren = 'children___parent___parent___children', | |
| ChildrenParentChildren = 'children___parent___children', | |
| ChildrenParentChildrenId = 'children___parent___children___id', | |
| ChildrenParentChildrenChildren = 'children___parent___children___children', | |
| ChildrenParentInternalContent = 'children___parent___internal___content', | |
| ChildrenParentInternalContentDigest = 'children___parent___internal___contentDigest', | |
| ChildrenParentInternalDescription = 'children___parent___internal___description', | |
| ChildrenParentInternalFieldOwners = 'children___parent___internal___fieldOwners', | |
| ChildrenParentInternalIgnoreType = 'children___parent___internal___ignoreType', | |
| ChildrenParentInternalMediaType = 'children___parent___internal___mediaType', | |
| ChildrenParentInternalOwner = 'children___parent___internal___owner', | |
| ChildrenParentInternalType = 'children___parent___internal___type', | |
| ChildrenChildren = 'children___children', | |
| ChildrenChildrenId = 'children___children___id', | |
| ChildrenChildrenParentId = 'children___children___parent___id', | |
| ChildrenChildrenParentChildren = 'children___children___parent___children', | |
| ChildrenChildrenChildren = 'children___children___children', | |
| ChildrenChildrenChildrenId = 'children___children___children___id', | |
| ChildrenChildrenChildrenChildren = 'children___children___children___children', | |
| ChildrenChildrenInternalContent = 'children___children___internal___content', | |
| ChildrenChildrenInternalContentDigest = 'children___children___internal___contentDigest', | |
| ChildrenChildrenInternalDescription = 'children___children___internal___description', | |
| ChildrenChildrenInternalFieldOwners = 'children___children___internal___fieldOwners', | |
| ChildrenChildrenInternalIgnoreType = 'children___children___internal___ignoreType', | |
| ChildrenChildrenInternalMediaType = 'children___children___internal___mediaType', | |
| ChildrenChildrenInternalOwner = 'children___children___internal___owner', | |
| ChildrenChildrenInternalType = 'children___children___internal___type', | |
| ChildrenInternalContent = 'children___internal___content', | |
| ChildrenInternalContentDigest = 'children___internal___contentDigest', | |
| ChildrenInternalDescription = 'children___internal___description', | |
| ChildrenInternalFieldOwners = 'children___internal___fieldOwners', | |
| ChildrenInternalIgnoreType = 'children___internal___ignoreType', | |
| ChildrenInternalMediaType = 'children___internal___mediaType', | |
| ChildrenInternalOwner = 'children___internal___owner', | |
| ChildrenInternalType = 'children___internal___type', | |
| InternalContent = 'internal___content', | |
| InternalContentDigest = 'internal___contentDigest', | |
| InternalDescription = 'internal___description', | |
| InternalFieldOwners = 'internal___fieldOwners', | |
| InternalIgnoreType = 'internal___ignoreType', | |
| InternalMediaType = 'internal___mediaType', | |
| InternalOwner = 'internal___owner', | |
| InternalType = 'internal___type', | |
| Content = 'content', | |
| ContentContent = 'content___content', | |
| ContentContentValue = 'content___content___value', | |
| ContentContentNodeType = 'content___content___nodeType', | |
| ContentNodeType = 'content___nodeType', | |
| NodeType = 'nodeType', | |
| Body = 'body', | |
| Json = 'json', | |
| ChildContentfulRichTextId = 'childContentfulRichText___id', | |
| ChildContentfulRichTextParentId = 'childContentfulRichText___parent___id', | |
| ChildContentfulRichTextParentParentId = 'childContentfulRichText___parent___parent___id', | |
| ChildContentfulRichTextParentParentChildren = 'childContentfulRichText___parent___parent___children', | |
| ChildContentfulRichTextParentChildren = 'childContentfulRichText___parent___children', | |
| ChildContentfulRichTextParentChildrenId = 'childContentfulRichText___parent___children___id', | |
| ChildContentfulRichTextParentChildrenChildren = 'childContentfulRichText___parent___children___children', | |
| ChildContentfulRichTextParentInternalContent = 'childContentfulRichText___parent___internal___content', | |
| ChildContentfulRichTextParentInternalContentDigest = 'childContentfulRichText___parent___internal___contentDigest', | |
| ChildContentfulRichTextParentInternalDescription = 'childContentfulRichText___parent___internal___description', | |
| ChildContentfulRichTextParentInternalFieldOwners = 'childContentfulRichText___parent___internal___fieldOwners', | |
| ChildContentfulRichTextParentInternalIgnoreType = 'childContentfulRichText___parent___internal___ignoreType', | |
| ChildContentfulRichTextParentInternalMediaType = 'childContentfulRichText___parent___internal___mediaType', | |
| ChildContentfulRichTextParentInternalOwner = 'childContentfulRichText___parent___internal___owner', | |
| ChildContentfulRichTextParentInternalType = 'childContentfulRichText___parent___internal___type', | |
| ChildContentfulRichTextChildren = 'childContentfulRichText___children', | |
| ChildContentfulRichTextChildrenId = 'childContentfulRichText___children___id', | |
| ChildContentfulRichTextChildrenParentId = 'childContentfulRichText___children___parent___id', | |
| ChildContentfulRichTextChildrenParentChildren = 'childContentfulRichText___children___parent___children', | |
| ChildContentfulRichTextChildrenChildren = 'childContentfulRichText___children___children', | |
| ChildContentfulRichTextChildrenChildrenId = 'childContentfulRichText___children___children___id', | |
| ChildContentfulRichTextChildrenChildrenChildren = 'childContentfulRichText___children___children___children', | |
| ChildContentfulRichTextChildrenInternalContent = 'childContentfulRichText___children___internal___content', | |
| ChildContentfulRichTextChildrenInternalContentDigest = 'childContentfulRichText___children___internal___contentDigest', | |
| ChildContentfulRichTextChildrenInternalDescription = 'childContentfulRichText___children___internal___description', | |
| ChildContentfulRichTextChildrenInternalFieldOwners = 'childContentfulRichText___children___internal___fieldOwners', | |
| ChildContentfulRichTextChildrenInternalIgnoreType = 'childContentfulRichText___children___internal___ignoreType', | |
| ChildContentfulRichTextChildrenInternalMediaType = 'childContentfulRichText___children___internal___mediaType', | |
| ChildContentfulRichTextChildrenInternalOwner = 'childContentfulRichText___children___internal___owner', | |
| ChildContentfulRichTextChildrenInternalType = 'childContentfulRichText___children___internal___type', | |
| ChildContentfulRichTextInternalContent = 'childContentfulRichText___internal___content', | |
| ChildContentfulRichTextInternalContentDigest = 'childContentfulRichText___internal___contentDigest', | |
| ChildContentfulRichTextInternalDescription = 'childContentfulRichText___internal___description', | |
| ChildContentfulRichTextInternalFieldOwners = 'childContentfulRichText___internal___fieldOwners', | |
| ChildContentfulRichTextInternalIgnoreType = 'childContentfulRichText___internal___ignoreType', | |
| ChildContentfulRichTextInternalMediaType = 'childContentfulRichText___internal___mediaType', | |
| ChildContentfulRichTextInternalOwner = 'childContentfulRichText___internal___owner', | |
| ChildContentfulRichTextInternalType = 'childContentfulRichText___internal___type', | |
| ChildContentfulRichTextHtml = 'childContentfulRichText___html', | |
| ChildContentfulRichTextTimeToRead = 'childContentfulRichText___timeToRead' | |
| } | |
| export type ContentfulPageBodyRichTextNodeFilterInput = { | |
| id?: Maybe<StringQueryOperatorInput>, | |
| parent?: Maybe<NodeFilterInput>, | |
| children?: Maybe<NodeFilterListInput>, | |
| internal?: Maybe<InternalFilterInput>, | |
| content?: Maybe<ContentfulPageBodyRichTextNodeContentFilterListInput>, | |
| nodeType?: Maybe<StringQueryOperatorInput>, | |
| body?: Maybe<StringQueryOperatorInput>, | |
| json?: Maybe<JsonQueryOperatorInput>, | |
| childContentfulRichText?: Maybe<ContentfulRichTextFilterInput>, | |
| }; | |
| export type ContentfulPageBodyRichTextNodeGroupConnection = { | |
| __typename?: 'contentfulPageBodyRichTextNodeGroupConnection', | |
| totalCount: Scalars['Int'], | |
| edges: Array<ContentfulPageBodyRichTextNodeEdge>, | |
| nodes: Array<ContentfulPageBodyRichTextNode>, | |
| pageInfo: PageInfo, | |
| field: Scalars['String'], | |
| fieldValue?: Maybe<Scalars['String']>, | |
| }; | |
| export type ContentfulPageBodyRichTextNodeSortInput = { | |
| fields?: Maybe<Array<Maybe<ContentfulPageBodyRichTextNodeFieldsEnum>>>, | |
| order?: Maybe<Array<Maybe<SortOrderEnum>>>, | |
| }; | |
| export type ContentfulPageConnection = { | |
| __typename?: 'ContentfulPageConnection', | |
| totalCount: Scalars['Int'], | |
| edges: Array<ContentfulPageEdge>, | |
| nodes: Array<ContentfulPage>, | |
| pageInfo: PageInfo, | |
| distinct: Array<Scalars['String']>, | |
| group: Array<ContentfulPageGroupConnection>, | |
| }; | |
| export type ContentfulPageConnectionDistinctArgs = { | |
| field: ContentfulPageFieldsEnum | |
| }; | |
| export type ContentfulPageConnectionGroupArgs = { | |
| skip?: Maybe<Scalars['Int']>, | |
| limit?: Maybe<Scalars['Int']>, | |
| field: ContentfulPageFieldsEnum | |
| }; | |
| export type ContentfulPageEdge = { | |
| __typename?: 'ContentfulPageEdge', | |
| next?: Maybe<ContentfulPage>, | |
| node: ContentfulPage, | |
| previous?: Maybe<ContentfulPage>, | |
| }; | |
| export enum ContentfulPageFieldsEnum { | |
| Id = 'id', | |
| ParentId = 'parent___id', | |
| ParentParentId = 'parent___parent___id', | |
| ParentParentParentId = 'parent___parent___parent___id', | |
| ParentParentParentChildren = 'parent___parent___parent___children', | |
| ParentParentChildren = 'parent___parent___children', | |
| ParentParentChildrenId = 'parent___parent___children___id', | |
| ParentParentChildrenChildren = 'parent___parent___children___children', | |
| ParentParentInternalContent = 'parent___parent___internal___content', | |
| ParentParentInternalContentDigest = 'parent___parent___internal___contentDigest', | |
| ParentParentInternalDescription = 'parent___parent___internal___description', | |
| ParentParentInternalFieldOwners = 'parent___parent___internal___fieldOwners', | |
| ParentParentInternalIgnoreType = 'parent___parent___internal___ignoreType', | |
| ParentParentInternalMediaType = 'parent___parent___internal___mediaType', | |
| ParentParentInternalOwner = 'parent___parent___internal___owner', | |
| ParentParentInternalType = 'parent___parent___internal___type', | |
| ParentChildren = 'parent___children', | |
| ParentChildrenId = 'parent___children___id', | |
| ParentChildrenParentId = 'parent___children___parent___id', | |
| ParentChildrenParentChildren = 'parent___children___parent___children', | |
| ParentChildrenChildren = 'parent___children___children', | |
| ParentChildrenChildrenId = 'parent___children___children___id', | |
| ParentChildrenChildrenChildren = 'parent___children___children___children', | |
| ParentChildrenInternalContent = 'parent___children___internal___content', | |
| ParentChildrenInternalContentDigest = 'parent___children___internal___contentDigest', | |
| ParentChildrenInternalDescription = 'parent___children___internal___description', | |
| ParentChildrenInternalFieldOwners = 'parent___children___internal___fieldOwners', | |
| ParentChildrenInternalIgnoreType = 'parent___children___internal___ignoreType', | |
| ParentChildrenInternalMediaType = 'parent___children___internal___mediaType', | |
| ParentChildrenInternalOwner = 'parent___children___internal___owner', | |
| ParentChildrenInternalType = 'parent___children___internal___type', | |
| ParentInternalContent = 'parent___internal___content', | |
| ParentInternalContentDigest = 'parent___internal___contentDigest', | |
| ParentInternalDescription = 'parent___internal___description', | |
| ParentInternalFieldOwners = 'parent___internal___fieldOwners', | |
| ParentInternalIgnoreType = 'parent___internal___ignoreType', | |
| ParentInternalMediaType = 'parent___internal___mediaType', | |
| ParentInternalOwner = 'parent___internal___owner', | |
| ParentInternalType = 'parent___internal___type', | |
| Children = 'children', | |
| ChildrenId = 'children___id', | |
| ChildrenParentId = 'children___parent___id', | |
| ChildrenParentParentId = 'children___parent___parent___id', | |
| ChildrenParentParentChildren = 'children___parent___parent___children', | |
| ChildrenParentChildren = 'children___parent___children', | |
| ChildrenParentChildrenId = 'children___parent___children___id', | |
| ChildrenParentChildrenChildren = 'children___parent___children___children', | |
| ChildrenParentInternalContent = 'children___parent___internal___content', | |
| ChildrenParentInternalContentDigest = 'children___parent___internal___contentDigest', | |
| ChildrenParentInternalDescription = 'children___parent___internal___description', | |
| ChildrenParentInternalFieldOwners = 'children___parent___internal___fieldOwners', | |
| ChildrenParentInternalIgnoreType = 'children___parent___internal___ignoreType', | |
| ChildrenParentInternalMediaType = 'children___parent___internal___mediaType', | |
| ChildrenParentInternalOwner = 'children___parent___internal___owner', | |
| ChildrenParentInternalType = 'children___parent___internal___type', | |
| ChildrenChildren = 'children___children', | |
| ChildrenChildrenId = 'children___children___id', | |
| ChildrenChildrenParentId = 'children___children___parent___id', | |
| ChildrenChildrenParentChildren = 'children___children___parent___children', | |
| ChildrenChildrenChildren = 'children___children___children', | |
| ChildrenChildrenChildrenId = 'children___children___children___id', | |
| ChildrenChildrenChildrenChildren = 'children___children___children___children', | |
| ChildrenChildrenInternalContent = 'children___children___internal___content', | |
| ChildrenChildrenInternalContentDigest = 'children___children___internal___contentDigest', | |
| ChildrenChildrenInternalDescription = 'children___children___internal___description', | |
| ChildrenChildrenInternalFieldOwners = 'children___children___internal___fieldOwners', | |
| ChildrenChildrenInternalIgnoreType = 'children___children___internal___ignoreType', | |
| ChildrenChildrenInternalMediaType = 'children___children___internal___mediaType', | |
| ChildrenChildrenInternalOwner = 'children___children___internal___owner', | |
| ChildrenChildrenInternalType = 'children___children___internal___type', | |
| ChildrenInternalContent = 'children___internal___content', | |
| ChildrenInternalContentDigest = 'children___internal___contentDigest', | |
| ChildrenInternalDescription = 'children___internal___description', | |
| ChildrenInternalFieldOwners = 'children___internal___fieldOwners', | |
| ChildrenInternalIgnoreType = 'children___internal___ignoreType', | |
| ChildrenInternalMediaType = 'children___internal___mediaType', | |
| ChildrenInternalOwner = 'children___internal___owner', | |
| ChildrenInternalType = 'children___internal___type', | |
| InternalContent = 'internal___content', | |
| InternalContentDigest = 'internal___contentDigest', | |
| InternalDescription = 'internal___description', | |
| InternalFieldOwners = 'internal___fieldOwners', | |
| InternalIgnoreType = 'internal___ignoreType', | |
| InternalMediaType = 'internal___mediaType', | |
| InternalOwner = 'internal___owner', | |
| InternalType = 'internal___type', | |
| Title = 'title', | |
| Slug = 'slug', | |
| IsHomePage = 'isHomePage', | |
| FeaturedPosts = 'featuredPosts', | |
| FeaturedPostsId = 'featuredPosts___id', | |
| FeaturedPostsParentId = 'featuredPosts___parent___id', | |
| FeaturedPostsParentParentId = 'featuredPosts___parent___parent___id', | |
| FeaturedPostsParentParentChildren = 'featuredPosts___parent___parent___children', | |
| FeaturedPostsParentChildren = 'featuredPosts___parent___children', | |
| FeaturedPostsParentChildrenId = 'featuredPosts___parent___children___id', | |
| FeaturedPostsParentChildrenChildren = 'featuredPosts___parent___children___children', | |
| FeaturedPostsParentInternalContent = 'featuredPosts___parent___internal___content', | |
| FeaturedPostsParentInternalContentDigest = 'featuredPosts___parent___internal___contentDigest', | |
| FeaturedPostsParentInternalDescription = 'featuredPosts___parent___internal___description', | |
| FeaturedPostsParentInternalFieldOwners = 'featuredPosts___parent___internal___fieldOwners', | |
| FeaturedPostsParentInternalIgnoreType = 'featuredPosts___parent___internal___ignoreType', | |
| FeaturedPostsParentInternalMediaType = 'featuredPosts___parent___internal___mediaType', | |
| FeaturedPostsParentInternalOwner = 'featuredPosts___parent___internal___owner', | |
| FeaturedPostsParentInternalType = 'featuredPosts___parent___internal___type', | |
| FeaturedPostsChildren = 'featuredPosts___children', | |
| FeaturedPostsChildrenId = 'featuredPosts___children___id', | |
| FeaturedPostsChildrenParentId = 'featuredPosts___children___parent___id', | |
| FeaturedPostsChildrenParentChildren = 'featuredPosts___children___parent___children', | |
| FeaturedPostsChildrenChildren = 'featuredPosts___children___children', | |
| FeaturedPostsChildrenChildrenId = 'featuredPosts___children___children___id', | |
| FeaturedPostsChildrenChildrenChildren = 'featuredPosts___children___children___children', | |
| FeaturedPostsChildrenInternalContent = 'featuredPosts___children___internal___content', | |
| FeaturedPostsChildrenInternalContentDigest = 'featuredPosts___children___internal___contentDigest', | |
| FeaturedPostsChildrenInternalDescription = 'featuredPosts___children___internal___description', | |
| FeaturedPostsChildrenInternalFieldOwners = 'featuredPosts___children___internal___fieldOwners', | |
| FeaturedPostsChildrenInternalIgnoreType = 'featuredPosts___children___internal___ignoreType', | |
| FeaturedPostsChildrenInternalMediaType = 'featuredPosts___children___internal___mediaType', | |
| FeaturedPostsChildrenInternalOwner = 'featuredPosts___children___internal___owner', | |
| FeaturedPostsChildrenInternalType = 'featuredPosts___children___internal___type', | |
| FeaturedPostsInternalContent = 'featuredPosts___internal___content', | |
| FeaturedPostsInternalContentDigest = 'featuredPosts___internal___contentDigest', | |
| FeaturedPostsInternalDescription = 'featuredPosts___internal___description', | |
| FeaturedPostsInternalFieldOwners = 'featuredPosts___internal___fieldOwners', | |
| FeaturedPostsInternalIgnoreType = 'featuredPosts___internal___ignoreType', | |
| FeaturedPostsInternalMediaType = 'featuredPosts___internal___mediaType', | |
| FeaturedPostsInternalOwner = 'featuredPosts___internal___owner', | |
| FeaturedPostsInternalType = 'featuredPosts___internal___type', | |
| FeaturedPostsTitle = 'featuredPosts___title', | |
| FeaturedPostsSlug = 'featuredPosts___slug', | |
| FeaturedPostsPublishDate = 'featuredPosts___publishDate', | |
| FeaturedPostsFeaturedImageId = 'featuredPosts___featuredImage___id', | |
| FeaturedPostsFeaturedImageParentId = 'featuredPosts___featuredImage___parent___id', | |
| FeaturedPostsFeaturedImageParentChildren = 'featuredPosts___featuredImage___parent___children', | |
| FeaturedPostsFeaturedImageChildren = 'featuredPosts___featuredImage___children', | |
| FeaturedPostsFeaturedImageChildrenId = 'featuredPosts___featuredImage___children___id', | |
| FeaturedPostsFeaturedImageChildrenChildren = 'featuredPosts___featuredImage___children___children', | |
| FeaturedPostsFeaturedImageInternalContent = 'featuredPosts___featuredImage___internal___content', | |
| FeaturedPostsFeaturedImageInternalContentDigest = 'featuredPosts___featuredImage___internal___contentDigest', | |
| FeaturedPostsFeaturedImageInternalDescription = 'featuredPosts___featuredImage___internal___description', | |
| FeaturedPostsFeaturedImageInternalFieldOwners = 'featuredPosts___featuredImage___internal___fieldOwners', | |
| FeaturedPostsFeaturedImageInternalIgnoreType = 'featuredPosts___featuredImage___internal___ignoreType', | |
| FeaturedPostsFeaturedImageInternalMediaType = 'featuredPosts___featuredImage___internal___mediaType', | |
| FeaturedPostsFeaturedImageInternalOwner = 'featuredPosts___featuredImage___internal___owner', | |
| FeaturedPostsFeaturedImageInternalType = 'featuredPosts___featuredImage___internal___type', | |
| FeaturedPostsFeaturedImageContentfulId = 'featuredPosts___featuredImage___contentful_id', | |
| FeaturedPostsFeaturedImageFileUrl = 'featuredPosts___featuredImage___file___url', | |
| FeaturedPostsFeaturedImageFileFileName = 'featuredPosts___featuredImage___file___fileName', | |
| FeaturedPostsFeaturedImageFileContentType = 'featuredPosts___featuredImage___file___contentType', | |
| FeaturedPostsFeaturedImageTitle = 'featuredPosts___featuredImage___title', | |
| FeaturedPostsFeaturedImageDescription = 'featuredPosts___featuredImage___description', | |
| FeaturedPostsFeaturedImageNodeLocale = 'featuredPosts___featuredImage___node_locale', | |
| FeaturedPostsFeaturedImageFixedBase64 = 'featuredPosts___featuredImage___fixed___base64', | |
| FeaturedPostsFeaturedImageFixedTracedSvg = 'featuredPosts___featuredImage___fixed___tracedSVG', | |
| FeaturedPostsFeaturedImageFixedAspectRatio = 'featuredPosts___featuredImage___fixed___aspectRatio', | |
| FeaturedPostsFeaturedImageFixedWidth = 'featuredPosts___featuredImage___fixed___width', | |
| FeaturedPostsFeaturedImageFixedHeight = 'featuredPosts___featuredImage___fixed___height', | |
| FeaturedPostsFeaturedImageFixedSrc = 'featuredPosts___featuredImage___fixed___src', | |
| FeaturedPostsFeaturedImageFixedSrcSet = 'featuredPosts___featuredImage___fixed___srcSet', | |
| FeaturedPostsFeaturedImageFixedSrcWebp = 'featuredPosts___featuredImage___fixed___srcWebp', | |
| FeaturedPostsFeaturedImageFixedSrcSetWebp = 'featuredPosts___featuredImage___fixed___srcSetWebp', | |
| FeaturedPostsFeaturedImageResolutionsBase64 = 'featuredPosts___featuredImage___resolutions___base64', | |
| FeaturedPostsFeaturedImageResolutionsTracedSvg = 'featuredPosts___featuredImage___resolutions___tracedSVG', | |
| FeaturedPostsFeaturedImageResolutionsAspectRatio = 'featuredPosts___featuredImage___resolutions___aspectRatio', | |
| FeaturedPostsFeaturedImageResolutionsWidth = 'featuredPosts___featuredImage___resolutions___width', | |
| FeaturedPostsFeaturedImageResolutionsHeight = 'featuredPosts___featuredImage___resolutions___height', | |
| FeaturedPostsFeaturedImageResolutionsSrc = 'featuredPosts___featuredImage___resolutions___src', | |
| FeaturedPostsFeaturedImageResolutionsSrcSet = 'featuredPosts___featuredImage___resolutions___srcSet', | |
| FeaturedPostsFeaturedImageResolutionsSrcWebp = 'featuredPosts___featuredImage___resolutions___srcWebp', | |
| FeaturedPostsFeaturedImageResolutionsSrcSetWebp = 'featuredPosts___featuredImage___resolutions___srcSetWebp', | |
| FeaturedPostsFeaturedImageFluidBase64 = 'featuredPosts___featuredImage___fluid___base64', | |
| FeaturedPostsFeaturedImageFluidTracedSvg = 'featuredPosts___featuredImage___fluid___tracedSVG', | |
| FeaturedPostsFeaturedImageFluidAspectRatio = 'featuredPosts___featuredImage___fluid___aspectRatio', | |
| FeaturedPostsFeaturedImageFluidSrc = 'featuredPosts___featuredImage___fluid___src', | |
| FeaturedPostsFeaturedImageFluidSrcSet = 'featuredPosts___featuredImage___fluid___srcSet', | |
| FeaturedPostsFeaturedImageFluidSrcWebp = 'featuredPosts___featuredImage___fluid___srcWebp', | |
| FeaturedPostsFeaturedImageFluidSrcSetWebp = 'featuredPosts___featuredImage___fluid___srcSetWebp', | |
| FeaturedPostsFeaturedImageFluidSizes = 'featuredPosts___featuredImage___fluid___sizes', | |
| FeaturedPostsFeaturedImageSizesBase64 = 'featuredPosts___featuredImage___sizes___base64', | |
| FeaturedPostsFeaturedImageSizesTracedSvg = 'featuredPosts___featuredImage___sizes___tracedSVG', | |
| FeaturedPostsFeaturedImageSizesAspectRatio = 'featuredPosts___featuredImage___sizes___aspectRatio', | |
| FeaturedPostsFeaturedImageSizesSrc = 'featuredPosts___featuredImage___sizes___src', | |
| FeaturedPostsFeaturedImageSizesSrcSet = 'featuredPosts___featuredImage___sizes___srcSet', | |
| FeaturedPostsFeaturedImageSizesSrcWebp = 'featuredPosts___featuredImage___sizes___srcWebp', | |
| FeaturedPostsFeaturedImageSizesSrcSetWebp = 'featuredPosts___featuredImage___sizes___srcSetWebp', | |
| FeaturedPostsFeaturedImageSizesSizes = 'featuredPosts___featuredImage___sizes___sizes', | |
| FeaturedPostsFeaturedImageResizeBase64 = 'featuredPosts___featuredImage___resize___base64', | |
| FeaturedPostsFeaturedImageResizeTracedSvg = 'featuredPosts___featuredImage___resize___tracedSVG', | |
| FeaturedPostsFeaturedImageResizeSrc = 'featuredPosts___featuredImage___resize___src', | |
| FeaturedPostsFeaturedImageResizeWidth = 'featuredPosts___featuredImage___resize___width', | |
| FeaturedPostsFeaturedImageResizeHeight = 'featuredPosts___featuredImage___resize___height', | |
| FeaturedPostsFeaturedImageResizeAspectRatio = 'featuredPosts___featuredImage___resize___aspectRatio', | |
| FeaturedPostsCategories = 'featuredPosts___categories', | |
| FeaturedPostsCategoriesId = 'featuredPosts___categories___id', | |
| FeaturedPostsCategoriesParentId = 'featuredPosts___categories___parent___id', | |
| FeaturedPostsCategoriesParentChildren = 'featuredPosts___categories___parent___children', | |
| FeaturedPostsCategoriesChildren = 'featuredPosts___categories___children', | |
| FeaturedPostsCategoriesChildrenId = 'featuredPosts___categories___children___id', | |
| FeaturedPostsCategoriesChildrenChildren = 'featuredPosts___categories___children___children', | |
| FeaturedPostsCategoriesInternalContent = 'featuredPosts___categories___internal___content', | |
| FeaturedPostsCategoriesInternalContentDigest = 'featuredPosts___categories___internal___contentDigest', | |
| FeaturedPostsCategoriesInternalDescription = 'featuredPosts___categories___internal___description', | |
| FeaturedPostsCategoriesInternalFieldOwners = 'featuredPosts___categories___internal___fieldOwners', | |
| FeaturedPostsCategoriesInternalIgnoreType = 'featuredPosts___categories___internal___ignoreType', | |
| FeaturedPostsCategoriesInternalMediaType = 'featuredPosts___categories___internal___mediaType', | |
| FeaturedPostsCategoriesInternalOwner = 'featuredPosts___categories___internal___owner', | |
| FeaturedPostsCategoriesInternalType = 'featuredPosts___categories___internal___type', | |
| FeaturedPostsCategoriesTitle = 'featuredPosts___categories___title', | |
| FeaturedPostsCategoriesSlug = 'featuredPosts___categories___slug', | |
| FeaturedPostsCategoriesFeaturedImageId = 'featuredPosts___categories___featuredImage___id', | |
| FeaturedPostsCategoriesFeaturedImageChildren = 'featuredPosts___categories___featuredImage___children', | |
| FeaturedPostsCategoriesFeaturedImageContentfulId = 'featuredPosts___categories___featuredImage___contentful_id', | |
| FeaturedPostsCategoriesFeaturedImageTitle = 'featuredPosts___categories___featuredImage___title', | |
| FeaturedPostsCategoriesFeaturedImageDescription = 'featuredPosts___categories___featuredImage___description', | |
| FeaturedPostsCategoriesFeaturedImageNodeLocale = 'featuredPosts___categories___featuredImage___node_locale', | |
| FeaturedPostsCategoriesBlogpost = 'featuredPosts___categories___blogpost', | |
| FeaturedPostsCategoriesBlogpostId = 'featuredPosts___categories___blogpost___id', | |
| FeaturedPostsCategoriesBlogpostChildren = 'featuredPosts___categories___blogpost___children', | |
| FeaturedPostsCategoriesBlogpostTitle = 'featuredPosts___categories___blogpost___title', | |
| FeaturedPostsCategoriesBlogpostSlug = 'featuredPosts___categories___blogpost___slug', | |
| FeaturedPostsCategoriesBlogpostPublishDate = 'featuredPosts___categories___blogpost___publishDate', | |
| FeaturedPostsCategoriesBlogpostCategories = 'featuredPosts___categories___blogpost___categories', | |
| FeaturedPostsCategoriesBlogpostPage = 'featuredPosts___categories___blogpost___page', | |
| FeaturedPostsCategoriesBlogpostSpaceId = 'featuredPosts___categories___blogpost___spaceId', | |
| FeaturedPostsCategoriesBlogpostContentfulId = 'featuredPosts___categories___blogpost___contentful_id', | |
| FeaturedPostsCategoriesBlogpostCreatedAt = 'featuredPosts___categories___blogpost___createdAt', | |
| FeaturedPostsCategoriesBlogpostUpdatedAt = 'featuredPosts___categories___blogpost___updatedAt', | |
| FeaturedPostsCategoriesBlogpostNodeLocale = 'featuredPosts___categories___blogpost___node_locale', | |
| FeaturedPostsCategoriesSpaceId = 'featuredPosts___categories___spaceId', | |
| FeaturedPostsCategoriesContentfulId = 'featuredPosts___categories___contentful_id', | |
| FeaturedPostsCategoriesCreatedAt = 'featuredPosts___categories___createdAt', | |
| FeaturedPostsCategoriesUpdatedAt = 'featuredPosts___categories___updatedAt', | |
| FeaturedPostsCategoriesNodeLocale = 'featuredPosts___categories___node_locale', | |
| FeaturedPostsCategoriesMenu = 'featuredPosts___categories___menu', | |
| FeaturedPostsCategoriesMenuId = 'featuredPosts___categories___menu___id', | |
| FeaturedPostsCategoriesMenuChildren = 'featuredPosts___categories___menu___children', | |
| FeaturedPostsCategoriesMenuName = 'featuredPosts___categories___menu___name', | |
| FeaturedPostsCategoriesMenuMenuItems = 'featuredPosts___categories___menu___menuItems', | |
| FeaturedPostsCategoriesMenuSpaceId = 'featuredPosts___categories___menu___spaceId', | |
| FeaturedPostsCategoriesMenuContentfulId = 'featuredPosts___categories___menu___contentful_id', | |
| FeaturedPostsCategoriesMenuCreatedAt = 'featuredPosts___categories___menu___createdAt', | |
| FeaturedPostsCategoriesMenuUpdatedAt = 'featuredPosts___categories___menu___updatedAt', | |
| FeaturedPostsCategoriesMenuNodeLocale = 'featuredPosts___categories___menu___node_locale', | |
| FeaturedPostsCategoriesProduct = 'featuredPosts___categories___product', | |
| FeaturedPostsCategoriesProductId = 'featuredPosts___categories___product___id', | |
| FeaturedPostsCategoriesProductChildren = 'featuredPosts___categories___product___children', | |
| FeaturedPostsCategoriesProductTitle = 'featuredPosts___categories___product___title', | |
| FeaturedPostsCategoriesProductSlug = 'featuredPosts___categories___product___slug', | |
| FeaturedPostsCategoriesProductPrice = 'featuredPosts___categories___product___price', | |
| FeaturedPostsCategoriesProductCategories = 'featuredPosts___categories___product___categories', | |
| FeaturedPostsCategoriesProductSpaceId = 'featuredPosts___categories___product___spaceId', | |
| FeaturedPostsCategoriesProductContentfulId = 'featuredPosts___categories___product___contentful_id', | |
| FeaturedPostsCategoriesProductCreatedAt = 'featuredPosts___categories___product___createdAt', | |
| FeaturedPostsCategoriesProductUpdatedAt = 'featuredPosts___categories___product___updatedAt', | |
| FeaturedPostsCategoriesProductNodeLocale = 'featuredPosts___categories___product___node_locale', | |
| FeaturedPostsCategoriesBodyId = 'featuredPosts___categories___body___id', | |
| FeaturedPostsCategoriesBodyChildren = 'featuredPosts___categories___body___children', | |
| FeaturedPostsCategoriesBodyContent = 'featuredPosts___categories___body___content', | |
| FeaturedPostsCategoriesBodyNodeType = 'featuredPosts___categories___body___nodeType', | |
| FeaturedPostsCategoriesBodyBody = 'featuredPosts___categories___body___body', | |
| FeaturedPostsCategoriesBodyJson = 'featuredPosts___categories___body___json', | |
| FeaturedPostsCategoriesChildContentfulCategoryBodyRichTextNodeId = 'featuredPosts___categories___childContentfulCategoryBodyRichTextNode___id', | |
| FeaturedPostsCategoriesChildContentfulCategoryBodyRichTextNodeChildren = 'featuredPosts___categories___childContentfulCategoryBodyRichTextNode___children', | |
| FeaturedPostsCategoriesChildContentfulCategoryBodyRichTextNodeContent = 'featuredPosts___categories___childContentfulCategoryBodyRichTextNode___content', | |
| FeaturedPostsCategoriesChildContentfulCategoryBodyRichTextNodeNodeType = 'featuredPosts___categories___childContentfulCategoryBodyRichTextNode___nodeType', | |
| FeaturedPostsCategoriesChildContentfulCategoryBodyRichTextNodeBody = 'featuredPosts___categories___childContentfulCategoryBodyRichTextNode___body', | |
| FeaturedPostsCategoriesChildContentfulCategoryBodyRichTextNodeJson = 'featuredPosts___categories___childContentfulCategoryBodyRichTextNode___json', | |
| FeaturedPostsPage = 'featuredPosts___page', | |
| FeaturedPostsPageId = 'featuredPosts___page___id', | |
| FeaturedPostsPageParentId = 'featuredPosts___page___parent___id', | |
| FeaturedPostsPageParentChildren = 'featuredPosts___page___parent___children', | |
| FeaturedPostsPageChildren = 'featuredPosts___page___children', | |
| FeaturedPostsPageChildrenId = 'featuredPosts___page___children___id', | |
| FeaturedPostsPageChildrenChildren = 'featuredPosts___page___children___children', | |
| FeaturedPostsPageInternalContent = 'featuredPosts___page___internal___content', | |
| FeaturedPostsPageInternalContentDigest = 'featuredPosts___page___internal___contentDigest', | |
| FeaturedPostsPageInternalDescription = 'featuredPosts___page___internal___description', | |
| FeaturedPostsPageInternalFieldOwners = 'featuredPosts___page___internal___fieldOwners', | |
| FeaturedPostsPageInternalIgnoreType = 'featuredPosts___page___internal___ignoreType', | |
| FeaturedPostsPageInternalMediaType = 'featuredPosts___page___internal___mediaType', | |
| FeaturedPostsPageInternalOwner = 'featuredPosts___page___internal___owner', | |
| FeaturedPostsPageInternalType = 'featuredPosts___page___internal___type', | |
| FeaturedPostsPageTitle = 'featuredPosts___page___title', | |
| FeaturedPostsPageSlug = 'featuredPosts___page___slug', | |
| FeaturedPostsPageIsHomePage = 'featuredPosts___page___isHomePage', | |
| FeaturedPostsPageFeaturedPosts = 'featuredPosts___page___featuredPosts', | |
| FeaturedPostsPageFeaturedPostsId = 'featuredPosts___page___featuredPosts___id', | |
| FeaturedPostsPageFeaturedPostsChildren = 'featuredPosts___page___featuredPosts___children', | |
| FeaturedPostsPageFeaturedPostsTitle = 'featuredPosts___page___featuredPosts___title', | |
| FeaturedPostsPageFeaturedPostsSlug = 'featuredPosts___page___featuredPosts___slug', | |
| FeaturedPostsPageFeaturedPostsPublishDate = 'featuredPosts___page___featuredPosts___publishDate', | |
| FeaturedPostsPageFeaturedPostsCategories = 'featuredPosts___page___featuredPosts___categories', | |
| FeaturedPostsPageFeaturedPostsPage = 'featuredPosts___page___featuredPosts___page', | |
| FeaturedPostsPageFeaturedPostsSpaceId = 'featuredPosts___page___featuredPosts___spaceId', | |
| FeaturedPostsPageFeaturedPostsContentfulId = 'featuredPosts___page___featuredPosts___contentful_id', | |
| FeaturedPostsPageFeaturedPostsCreatedAt = 'featuredPosts___page___featuredPosts___createdAt', | |
| FeaturedPostsPageFeaturedPostsUpdatedAt = 'featuredPosts___page___featuredPosts___updatedAt', | |
| FeaturedPostsPageFeaturedPostsNodeLocale = 'featuredPosts___page___featuredPosts___node_locale', | |
| FeaturedPostsPageSpaceId = 'featuredPosts___page___spaceId', | |
| FeaturedPostsPageContentfulId = 'featuredPosts___page___contentful_id', | |
| FeaturedPostsPageCreatedAt = 'featuredPosts___page___createdAt', | |
| FeaturedPostsPageUpdatedAt = 'featuredPosts___page___updatedAt', | |
| FeaturedPostsPageNodeLocale = 'featuredPosts___page___node_locale', | |
| FeaturedPostsPageBodyId = 'featuredPosts___page___body___id', | |
| FeaturedPostsPageBodyChildren = 'featuredPosts___page___body___children', | |
| FeaturedPostsPageBodyContent = 'featuredPosts___page___body___content', | |
| FeaturedPostsPageBodyNodeType = 'featuredPosts___page___body___nodeType', | |
| FeaturedPostsPageBodyBody = 'featuredPosts___page___body___body', | |
| FeaturedPostsPageBodyJson = 'featuredPosts___page___body___json', | |
| FeaturedPostsPageChildContentfulPageBodyRichTextNodeId = 'featuredPosts___page___childContentfulPageBodyRichTextNode___id', | |
| FeaturedPostsPageChildContentfulPageBodyRichTextNodeChildren = 'featuredPosts___page___childContentfulPageBodyRichTextNode___children', | |
| FeaturedPostsPageChildContentfulPageBodyRichTextNodeContent = 'featuredPosts___page___childContentfulPageBodyRichTextNode___content', | |
| FeaturedPostsPageChildContentfulPageBodyRichTextNodeNodeType = 'featuredPosts___page___childContentfulPageBodyRichTextNode___nodeType', | |
| FeaturedPostsPageChildContentfulPageBodyRichTextNodeBody = 'featuredPosts___page___childContentfulPageBodyRichTextNode___body', | |
| FeaturedPostsPageChildContentfulPageBodyRichTextNodeJson = 'featuredPosts___page___childContentfulPageBodyRichTextNode___json', | |
| FeaturedPostsBodyId = 'featuredPosts___body___id', | |
| FeaturedPostsBodyParentId = 'featuredPosts___body___parent___id', | |
| FeaturedPostsBodyParentChildren = 'featuredPosts___body___parent___children', | |
| FeaturedPostsBodyChildren = 'featuredPosts___body___children', | |
| FeaturedPostsBodyChildrenId = 'featuredPosts___body___children___id', | |
| FeaturedPostsBodyChildrenChildren = 'featuredPosts___body___children___children', | |
| FeaturedPostsBodyInternalContent = 'featuredPosts___body___internal___content', | |
| FeaturedPostsBodyInternalContentDigest = 'featuredPosts___body___internal___contentDigest', | |
| FeaturedPostsBodyInternalDescription = 'featuredPosts___body___internal___description', | |
| FeaturedPostsBodyInternalFieldOwners = 'featuredPosts___body___internal___fieldOwners', | |
| FeaturedPostsBodyInternalIgnoreType = 'featuredPosts___body___internal___ignoreType', | |
| FeaturedPostsBodyInternalMediaType = 'featuredPosts___body___internal___mediaType', | |
| FeaturedPostsBodyInternalOwner = 'featuredPosts___body___internal___owner', | |
| FeaturedPostsBodyInternalType = 'featuredPosts___body___internal___type', | |
| FeaturedPostsBodyContent = 'featuredPosts___body___content', | |
| FeaturedPostsBodyContentContent = 'featuredPosts___body___content___content', | |
| FeaturedPostsBodyContentNodeType = 'featuredPosts___body___content___nodeType', | |
| FeaturedPostsBodyNodeType = 'featuredPosts___body___nodeType', | |
| FeaturedPostsBodyBody = 'featuredPosts___body___body', | |
| FeaturedPostsBodyJson = 'featuredPosts___body___json', | |
| FeaturedPostsBodyChildContentfulRichTextId = 'featuredPosts___body___childContentfulRichText___id', | |
| FeaturedPostsBodyChildContentfulRichTextChildren = 'featuredPosts___body___childContentfulRichText___children', | |
| FeaturedPostsBodyChildContentfulRichTextHtml = 'featuredPosts___body___childContentfulRichText___html', | |
| FeaturedPostsBodyChildContentfulRichTextTimeToRead = 'featuredPosts___body___childContentfulRichText___timeToRead', | |
| FeaturedPostsSpaceId = 'featuredPosts___spaceId', | |
| FeaturedPostsContentfulId = 'featuredPosts___contentful_id', | |
| FeaturedPostsCreatedAt = 'featuredPosts___createdAt', | |
| FeaturedPostsUpdatedAt = 'featuredPosts___updatedAt', | |
| FeaturedPostsNodeLocale = 'featuredPosts___node_locale', | |
| FeaturedPostsAuthorId = 'featuredPosts___author___id', | |
| FeaturedPostsAuthorParentId = 'featuredPosts___author___parent___id', | |
| FeaturedPostsAuthorParentChildren = 'featuredPosts___author___parent___children', | |
| FeaturedPostsAuthorChildren = 'featuredPosts___author___children', | |
| FeaturedPostsAuthorChildrenId = 'featuredPosts___author___children___id', | |
| FeaturedPostsAuthorChildrenChildren = 'featuredPosts___author___children___children', | |
| FeaturedPostsAuthorInternalContent = 'featuredPosts___author___internal___content', | |
| FeaturedPostsAuthorInternalContentDigest = 'featuredPosts___author___internal___contentDigest', | |
| FeaturedPostsAuthorInternalDescription = 'featuredPosts___author___internal___description', | |
| FeaturedPostsAuthorInternalFieldOwners = 'featuredPosts___author___internal___fieldOwners', | |
| FeaturedPostsAuthorInternalIgnoreType = 'featuredPosts___author___internal___ignoreType', | |
| FeaturedPostsAuthorInternalMediaType = 'featuredPosts___author___internal___mediaType', | |
| FeaturedPostsAuthorInternalOwner = 'featuredPosts___author___internal___owner', | |
| FeaturedPostsAuthorInternalType = 'featuredPosts___author___internal___type', | |
| FeaturedPostsAuthorName = 'featuredPosts___author___name', | |
| FeaturedPostsAuthorTitle = 'featuredPosts___author___title', | |
| FeaturedPostsAuthorCompany = 'featuredPosts___author___company', | |
| FeaturedPostsAuthorEmail = 'featuredPosts___author___email', | |
| FeaturedPostsAuthorPhone = 'featuredPosts___author___phone', | |
| FeaturedPostsAuthorFacebook = 'featuredPosts___author___facebook', | |
| FeaturedPostsAuthorTwitter = 'featuredPosts___author___twitter', | |
| FeaturedPostsAuthorGithub = 'featuredPosts___author___github', | |
| FeaturedPostsAuthorImageId = 'featuredPosts___author___image___id', | |
| FeaturedPostsAuthorImageChildren = 'featuredPosts___author___image___children', | |
| FeaturedPostsAuthorImageContentfulId = 'featuredPosts___author___image___contentful_id', | |
| FeaturedPostsAuthorImageTitle = 'featuredPosts___author___image___title', | |
| FeaturedPostsAuthorImageDescription = 'featuredPosts___author___image___description', | |
| FeaturedPostsAuthorImageNodeLocale = 'featuredPosts___author___image___node_locale', | |
| FeaturedPostsAuthorBlogpost = 'featuredPosts___author___blogpost', | |
| FeaturedPostsAuthorBlogpostId = 'featuredPosts___author___blogpost___id', | |
| FeaturedPostsAuthorBlogpostChildren = 'featuredPosts___author___blogpost___children', | |
| FeaturedPostsAuthorBlogpostTitle = 'featuredPosts___author___blogpost___title', | |
| FeaturedPostsAuthorBlogpostSlug = 'featuredPosts___author___blogpost___slug', | |
| FeaturedPostsAuthorBlogpostPublishDate = 'featuredPosts___author___blogpost___publishDate', | |
| FeaturedPostsAuthorBlogpostCategories = 'featuredPosts___author___blogpost___categories', | |
| FeaturedPostsAuthorBlogpostPage = 'featuredPosts___author___blogpost___page', | |
| FeaturedPostsAuthorBlogpostSpaceId = 'featuredPosts___author___blogpost___spaceId', | |
| FeaturedPostsAuthorBlogpostContentfulId = 'featuredPosts___author___blogpost___contentful_id', | |
| FeaturedPostsAuthorBlogpostCreatedAt = 'featuredPosts___author___blogpost___createdAt', | |
| FeaturedPostsAuthorBlogpostUpdatedAt = 'featuredPosts___author___blogpost___updatedAt', | |
| FeaturedPostsAuthorBlogpostNodeLocale = 'featuredPosts___author___blogpost___node_locale', | |
| FeaturedPostsAuthorShortBioId = 'featuredPosts___author___shortBio___id', | |
| FeaturedPostsAuthorShortBioChildren = 'featuredPosts___author___shortBio___children', | |
| FeaturedPostsAuthorShortBioShortBio = 'featuredPosts___author___shortBio___shortBio', | |
| FeaturedPostsAuthorSpaceId = 'featuredPosts___author___spaceId', | |
| FeaturedPostsAuthorContentfulId = 'featuredPosts___author___contentful_id', | |
| FeaturedPostsAuthorCreatedAt = 'featuredPosts___author___createdAt', | |
| FeaturedPostsAuthorUpdatedAt = 'featuredPosts___author___updatedAt', | |
| FeaturedPostsAuthorNodeLocale = 'featuredPosts___author___node_locale', | |
| FeaturedPostsAuthorChildContentfulPersonShortBioTextNodeId = 'featuredPosts___author___childContentfulPersonShortBioTextNode___id', | |
| FeaturedPostsAuthorChildContentfulPersonShortBioTextNodeChildren = 'featuredPosts___author___childContentfulPersonShortBioTextNode___children', | |
| FeaturedPostsAuthorChildContentfulPersonShortBioTextNodeShortBio = 'featuredPosts___author___childContentfulPersonShortBioTextNode___shortBio', | |
| FeaturedPostsChildContentfulBlogPostBodyRichTextNodeId = 'featuredPosts___childContentfulBlogPostBodyRichTextNode___id', | |
| FeaturedPostsChildContentfulBlogPostBodyRichTextNodeParentId = 'featuredPosts___childContentfulBlogPostBodyRichTextNode___parent___id', | |
| FeaturedPostsChildContentfulBlogPostBodyRichTextNodeParentChildren = 'featuredPosts___childContentfulBlogPostBodyRichTextNode___parent___children', | |
| FeaturedPostsChildContentfulBlogPostBodyRichTextNodeChildren = 'featuredPosts___childContentfulBlogPostBodyRichTextNode___children', | |
| FeaturedPostsChildContentfulBlogPostBodyRichTextNodeChildrenId = 'featuredPosts___childContentfulBlogPostBodyRichTextNode___children___id', | |
| FeaturedPostsChildContentfulBlogPostBodyRichTextNodeChildrenChildren = 'featuredPosts___childContentfulBlogPostBodyRichTextNode___children___children', | |
| FeaturedPostsChildContentfulBlogPostBodyRichTextNodeInternalContent = 'featuredPosts___childContentfulBlogPostBodyRichTextNode___internal___content', | |
| FeaturedPostsChildContentfulBlogPostBodyRichTextNodeInternalContentDigest = 'featuredPosts___childContentfulBlogPostBodyRichTextNode___internal___contentDigest', | |
| FeaturedPostsChildContentfulBlogPostBodyRichTextNodeInternalDescription = 'featuredPosts___childContentfulBlogPostBodyRichTextNode___internal___description', | |
| FeaturedPostsChildContentfulBlogPostBodyRichTextNodeInternalFieldOwners = 'featuredPosts___childContentfulBlogPostBodyRichTextNode___internal___fieldOwners', | |
| FeaturedPostsChildContentfulBlogPostBodyRichTextNodeInternalIgnoreType = 'featuredPosts___childContentfulBlogPostBodyRichTextNode___internal___ignoreType', | |
| FeaturedPostsChildContentfulBlogPostBodyRichTextNodeInternalMediaType = 'featuredPosts___childContentfulBlogPostBodyRichTextNode___internal___mediaType', | |
| FeaturedPostsChildContentfulBlogPostBodyRichTextNodeInternalOwner = 'featuredPosts___childContentfulBlogPostBodyRichTextNode___internal___owner', | |
| FeaturedPostsChildContentfulBlogPostBodyRichTextNodeInternalType = 'featuredPosts___childContentfulBlogPostBodyRichTextNode___internal___type', | |
| FeaturedPostsChildContentfulBlogPostBodyRichTextNodeContent = 'featuredPosts___childContentfulBlogPostBodyRichTextNode___content', | |
| FeaturedPostsChildContentfulBlogPostBodyRichTextNodeContentContent = 'featuredPosts___childContentfulBlogPostBodyRichTextNode___content___content', | |
| FeaturedPostsChildContentfulBlogPostBodyRichTextNodeContentNodeType = 'featuredPosts___childContentfulBlogPostBodyRichTextNode___content___nodeType', | |
| FeaturedPostsChildContentfulBlogPostBodyRichTextNodeNodeType = 'featuredPosts___childContentfulBlogPostBodyRichTextNode___nodeType', | |
| FeaturedPostsChildContentfulBlogPostBodyRichTextNodeBody = 'featuredPosts___childContentfulBlogPostBodyRichTextNode___body', | |
| FeaturedPostsChildContentfulBlogPostBodyRichTextNodeJson = 'featuredPosts___childContentfulBlogPostBodyRichTextNode___json', | |
| FeaturedPostsChildContentfulBlogPostBodyRichTextNodeChildContentfulRichTextId = 'featuredPosts___childContentfulBlogPostBodyRichTextNode___childContentfulRichText___id', | |
| FeaturedPostsChildContentfulBlogPostBodyRichTextNodeChildContentfulRichTextChildren = 'featuredPosts___childContentfulBlogPostBodyRichTextNode___childContentfulRichText___children', | |
| FeaturedPostsChildContentfulBlogPostBodyRichTextNodeChildContentfulRichTextHtml = 'featuredPosts___childContentfulBlogPostBodyRichTextNode___childContentfulRichText___html', | |
| FeaturedPostsChildContentfulBlogPostBodyRichTextNodeChildContentfulRichTextTimeToRead = 'featuredPosts___childContentfulBlogPostBodyRichTextNode___childContentfulRichText___timeToRead', | |
| SpaceId = 'spaceId', | |
| ContentfulId = 'contentful_id', | |
| CreatedAt = 'createdAt', | |
| UpdatedAt = 'updatedAt', | |
| NodeLocale = 'node_locale', | |
| BodyId = 'body___id', | |
| BodyParentId = 'body___parent___id', | |
| BodyParentParentId = 'body___parent___parent___id', | |
| BodyParentParentChildren = 'body___parent___parent___children', | |
| BodyParentChildren = 'body___parent___children', | |
| BodyParentChildrenId = 'body___parent___children___id', | |
| BodyParentChildrenChildren = 'body___parent___children___children', | |
| BodyParentInternalContent = 'body___parent___internal___content', | |
| BodyParentInternalContentDigest = 'body___parent___internal___contentDigest', | |
| BodyParentInternalDescription = 'body___parent___internal___description', | |
| BodyParentInternalFieldOwners = 'body___parent___internal___fieldOwners', | |
| BodyParentInternalIgnoreType = 'body___parent___internal___ignoreType', | |
| BodyParentInternalMediaType = 'body___parent___internal___mediaType', | |
| BodyParentInternalOwner = 'body___parent___internal___owner', | |
| BodyParentInternalType = 'body___parent___internal___type', | |
| BodyChildren = 'body___children', | |
| BodyChildrenId = 'body___children___id', | |
| BodyChildrenParentId = 'body___children___parent___id', | |
| BodyChildrenParentChildren = 'body___children___parent___children', | |
| BodyChildrenChildren = 'body___children___children', | |
| BodyChildrenChildrenId = 'body___children___children___id', | |
| BodyChildrenChildrenChildren = 'body___children___children___children', | |
| BodyChildrenInternalContent = 'body___children___internal___content', | |
| BodyChildrenInternalContentDigest = 'body___children___internal___contentDigest', | |
| BodyChildrenInternalDescription = 'body___children___internal___description', | |
| BodyChildrenInternalFieldOwners = 'body___children___internal___fieldOwners', | |
| BodyChildrenInternalIgnoreType = 'body___children___internal___ignoreType', | |
| BodyChildrenInternalMediaType = 'body___children___internal___mediaType', | |
| BodyChildrenInternalOwner = 'body___children___internal___owner', | |
| BodyChildrenInternalType = 'body___children___internal___type', | |
| BodyInternalContent = 'body___internal___content', | |
| BodyInternalContentDigest = 'body___internal___contentDigest', | |
| BodyInternalDescription = 'body___internal___description', | |
| BodyInternalFieldOwners = 'body___internal___fieldOwners', | |
| BodyInternalIgnoreType = 'body___internal___ignoreType', | |
| BodyInternalMediaType = 'body___internal___mediaType', | |
| BodyInternalOwner = 'body___internal___owner', | |
| BodyInternalType = 'body___internal___type', | |
| BodyContent = 'body___content', | |
| BodyContentContent = 'body___content___content', | |
| BodyContentContentValue = 'body___content___content___value', | |
| BodyContentContentNodeType = 'body___content___content___nodeType', | |
| BodyContentNodeType = 'body___content___nodeType', | |
| BodyNodeType = 'body___nodeType', | |
| BodyBody = 'body___body', | |
| BodyJson = 'body___json', | |
| BodyChildContentfulRichTextId = 'body___childContentfulRichText___id', | |
| BodyChildContentfulRichTextParentId = 'body___childContentfulRichText___parent___id', | |
| BodyChildContentfulRichTextParentChildren = 'body___childContentfulRichText___parent___children', | |
| BodyChildContentfulRichTextChildren = 'body___childContentfulRichText___children', | |
| BodyChildContentfulRichTextChildrenId = 'body___childContentfulRichText___children___id', | |
| BodyChildContentfulRichTextChildrenChildren = 'body___childContentfulRichText___children___children', | |
| BodyChildContentfulRichTextInternalContent = 'body___childContentfulRichText___internal___content', | |
| BodyChildContentfulRichTextInternalContentDigest = 'body___childContentfulRichText___internal___contentDigest', | |
| BodyChildContentfulRichTextInternalDescription = 'body___childContentfulRichText___internal___description', | |
| BodyChildContentfulRichTextInternalFieldOwners = 'body___childContentfulRichText___internal___fieldOwners', | |
| BodyChildContentfulRichTextInternalIgnoreType = 'body___childContentfulRichText___internal___ignoreType', | |
| BodyChildContentfulRichTextInternalMediaType = 'body___childContentfulRichText___internal___mediaType', | |
| BodyChildContentfulRichTextInternalOwner = 'body___childContentfulRichText___internal___owner', | |
| BodyChildContentfulRichTextInternalType = 'body___childContentfulRichText___internal___type', | |
| BodyChildContentfulRichTextHtml = 'body___childContentfulRichText___html', | |
| BodyChildContentfulRichTextTimeToRead = 'body___childContentfulRichText___timeToRead', | |
| ChildContentfulPageBodyRichTextNodeId = 'childContentfulPageBodyRichTextNode___id', | |
| ChildContentfulPageBodyRichTextNodeParentId = 'childContentfulPageBodyRichTextNode___parent___id', | |
| ChildContentfulPageBodyRichTextNodeParentParentId = 'childContentfulPageBodyRichTextNode___parent___parent___id', | |
| ChildContentfulPageBodyRichTextNodeParentParentChildren = 'childContentfulPageBodyRichTextNode___parent___parent___children', | |
| ChildContentfulPageBodyRichTextNodeParentChildren = 'childContentfulPageBodyRichTextNode___parent___children', | |
| ChildContentfulPageBodyRichTextNodeParentChildrenId = 'childContentfulPageBodyRichTextNode___parent___children___id', | |
| ChildContentfulPageBodyRichTextNodeParentChildrenChildren = 'childContentfulPageBodyRichTextNode___parent___children___children', | |
| ChildContentfulPageBodyRichTextNodeParentInternalContent = 'childContentfulPageBodyRichTextNode___parent___internal___content', | |
| ChildContentfulPageBodyRichTextNodeParentInternalContentDigest = 'childContentfulPageBodyRichTextNode___parent___internal___contentDigest', | |
| ChildContentfulPageBodyRichTextNodeParentInternalDescription = 'childContentfulPageBodyRichTextNode___parent___internal___description', | |
| ChildContentfulPageBodyRichTextNodeParentInternalFieldOwners = 'childContentfulPageBodyRichTextNode___parent___internal___fieldOwners', | |
| ChildContentfulPageBodyRichTextNodeParentInternalIgnoreType = 'childContentfulPageBodyRichTextNode___parent___internal___ignoreType', | |
| ChildContentfulPageBodyRichTextNodeParentInternalMediaType = 'childContentfulPageBodyRichTextNode___parent___internal___mediaType', | |
| ChildContentfulPageBodyRichTextNodeParentInternalOwner = 'childContentfulPageBodyRichTextNode___parent___internal___owner', | |
| ChildContentfulPageBodyRichTextNodeParentInternalType = 'childContentfulPageBodyRichTextNode___parent___internal___type', | |
| ChildContentfulPageBodyRichTextNodeChildren = 'childContentfulPageBodyRichTextNode___children', | |
| ChildContentfulPageBodyRichTextNodeChildrenId = 'childContentfulPageBodyRichTextNode___children___id', | |
| ChildContentfulPageBodyRichTextNodeChildrenParentId = 'childContentfulPageBodyRichTextNode___children___parent___id', | |
| ChildContentfulPageBodyRichTextNodeChildrenParentChildren = 'childContentfulPageBodyRichTextNode___children___parent___children', | |
| ChildContentfulPageBodyRichTextNodeChildrenChildren = 'childContentfulPageBodyRichTextNode___children___children', | |
| ChildContentfulPageBodyRichTextNodeChildrenChildrenId = 'childContentfulPageBodyRichTextNode___children___children___id', | |
| ChildContentfulPageBodyRichTextNodeChildrenChildrenChildren = 'childContentfulPageBodyRichTextNode___children___children___children', | |
| ChildContentfulPageBodyRichTextNodeChildrenInternalContent = 'childContentfulPageBodyRichTextNode___children___internal___content', | |
| ChildContentfulPageBodyRichTextNodeChildrenInternalContentDigest = 'childContentfulPageBodyRichTextNode___children___internal___contentDigest', | |
| ChildContentfulPageBodyRichTextNodeChildrenInternalDescription = 'childContentfulPageBodyRichTextNode___children___internal___description', | |
| ChildContentfulPageBodyRichTextNodeChildrenInternalFieldOwners = 'childContentfulPageBodyRichTextNode___children___internal___fieldOwners', | |
| ChildContentfulPageBodyRichTextNodeChildrenInternalIgnoreType = 'childContentfulPageBodyRichTextNode___children___internal___ignoreType', | |
| ChildContentfulPageBodyRichTextNodeChildrenInternalMediaType = 'childContentfulPageBodyRichTextNode___children___internal___mediaType', | |
| ChildContentfulPageBodyRichTextNodeChildrenInternalOwner = 'childContentfulPageBodyRichTextNode___children___internal___owner', | |
| ChildContentfulPageBodyRichTextNodeChildrenInternalType = 'childContentfulPageBodyRichTextNode___children___internal___type', | |
| ChildContentfulPageBodyRichTextNodeInternalContent = 'childContentfulPageBodyRichTextNode___internal___content', | |
| ChildContentfulPageBodyRichTextNodeInternalContentDigest = 'childContentfulPageBodyRichTextNode___internal___contentDigest', | |
| ChildContentfulPageBodyRichTextNodeInternalDescription = 'childContentfulPageBodyRichTextNode___internal___description', | |
| ChildContentfulPageBodyRichTextNodeInternalFieldOwners = 'childContentfulPageBodyRichTextNode___internal___fieldOwners', | |
| ChildContentfulPageBodyRichTextNodeInternalIgnoreType = 'childContentfulPageBodyRichTextNode___internal___ignoreType', | |
| ChildContentfulPageBodyRichTextNodeInternalMediaType = 'childContentfulPageBodyRichTextNode___internal___mediaType', | |
| ChildContentfulPageBodyRichTextNodeInternalOwner = 'childContentfulPageBodyRichTextNode___internal___owner', | |
| ChildContentfulPageBodyRichTextNodeInternalType = 'childContentfulPageBodyRichTextNode___internal___type', | |
| ChildContentfulPageBodyRichTextNodeContent = 'childContentfulPageBodyRichTextNode___content', | |
| ChildContentfulPageBodyRichTextNodeContentContent = 'childContentfulPageBodyRichTextNode___content___content', | |
| ChildContentfulPageBodyRichTextNodeContentContentValue = 'childContentfulPageBodyRichTextNode___content___content___value', | |
| ChildContentfulPageBodyRichTextNodeContentContentNodeType = 'childContentfulPageBodyRichTextNode___content___content___nodeType', | |
| ChildContentfulPageBodyRichTextNodeContentNodeType = 'childContentfulPageBodyRichTextNode___content___nodeType', | |
| ChildContentfulPageBodyRichTextNodeNodeType = 'childContentfulPageBodyRichTextNode___nodeType', | |
| ChildContentfulPageBodyRichTextNodeBody = 'childContentfulPageBodyRichTextNode___body', | |
| ChildContentfulPageBodyRichTextNodeJson = 'childContentfulPageBodyRichTextNode___json', | |
| ChildContentfulPageBodyRichTextNodeChildContentfulRichTextId = 'childContentfulPageBodyRichTextNode___childContentfulRichText___id', | |
| ChildContentfulPageBodyRichTextNodeChildContentfulRichTextParentId = 'childContentfulPageBodyRichTextNode___childContentfulRichText___parent___id', | |
| ChildContentfulPageBodyRichTextNodeChildContentfulRichTextParentChildren = 'childContentfulPageBodyRichTextNode___childContentfulRichText___parent___children', | |
| ChildContentfulPageBodyRichTextNodeChildContentfulRichTextChildren = 'childContentfulPageBodyRichTextNode___childContentfulRichText___children', | |
| ChildContentfulPageBodyRichTextNodeChildContentfulRichTextChildrenId = 'childContentfulPageBodyRichTextNode___childContentfulRichText___children___id', | |
| ChildContentfulPageBodyRichTextNodeChildContentfulRichTextChildrenChildren = 'childContentfulPageBodyRichTextNode___childContentfulRichText___children___children', | |
| ChildContentfulPageBodyRichTextNodeChildContentfulRichTextInternalContent = 'childContentfulPageBodyRichTextNode___childContentfulRichText___internal___content', | |
| ChildContentfulPageBodyRichTextNodeChildContentfulRichTextInternalContentDigest = 'childContentfulPageBodyRichTextNode___childContentfulRichText___internal___contentDigest', | |
| ChildContentfulPageBodyRichTextNodeChildContentfulRichTextInternalDescription = 'childContentfulPageBodyRichTextNode___childContentfulRichText___internal___description', | |
| ChildContentfulPageBodyRichTextNodeChildContentfulRichTextInternalFieldOwners = 'childContentfulPageBodyRichTextNode___childContentfulRichText___internal___fieldOwners', | |
| ChildContentfulPageBodyRichTextNodeChildContentfulRichTextInternalIgnoreType = 'childContentfulPageBodyRichTextNode___childContentfulRichText___internal___ignoreType', | |
| ChildContentfulPageBodyRichTextNodeChildContentfulRichTextInternalMediaType = 'childContentfulPageBodyRichTextNode___childContentfulRichText___internal___mediaType', | |
| ChildContentfulPageBodyRichTextNodeChildContentfulRichTextInternalOwner = 'childContentfulPageBodyRichTextNode___childContentfulRichText___internal___owner', | |
| ChildContentfulPageBodyRichTextNodeChildContentfulRichTextInternalType = 'childContentfulPageBodyRichTextNode___childContentfulRichText___internal___type', | |
| ChildContentfulPageBodyRichTextNodeChildContentfulRichTextHtml = 'childContentfulPageBodyRichTextNode___childContentfulRichText___html', | |
| ChildContentfulPageBodyRichTextNodeChildContentfulRichTextTimeToRead = 'childContentfulPageBodyRichTextNode___childContentfulRichText___timeToRead' | |
| } | |
| export type ContentfulPageFilterInput = { | |
| id?: Maybe<StringQueryOperatorInput>, | |
| parent?: Maybe<NodeFilterInput>, | |
| children?: Maybe<NodeFilterListInput>, | |
| internal?: Maybe<InternalFilterInput>, | |
| title?: Maybe<StringQueryOperatorInput>, | |
| slug?: Maybe<StringQueryOperatorInput>, | |
| isHomePage?: Maybe<BooleanQueryOperatorInput>, | |
| featuredPosts?: Maybe<ContentfulBlogPostFilterListInput>, | |
| spaceId?: Maybe<StringQueryOperatorInput>, | |
| contentful_id?: Maybe<StringQueryOperatorInput>, | |
| createdAt?: Maybe<DateQueryOperatorInput>, | |
| updatedAt?: Maybe<DateQueryOperatorInput>, | |
| node_locale?: Maybe<StringQueryOperatorInput>, | |
| body?: Maybe<ContentfulPageBodyRichTextNodeFilterInput>, | |
| childContentfulPageBodyRichTextNode?: Maybe<ContentfulPageBodyRichTextNodeFilterInput>, | |
| }; | |
| export type ContentfulPageFilterListInput = { | |
| elemMatch?: Maybe<ContentfulPageFilterInput>, | |
| }; | |
| export type ContentfulPageGroupConnection = { | |
| __typename?: 'ContentfulPageGroupConnection', | |
| totalCount: Scalars['Int'], | |
| edges: Array<ContentfulPageEdge>, | |
| nodes: Array<ContentfulPage>, | |
| pageInfo: PageInfo, | |
| field: Scalars['String'], | |
| fieldValue?: Maybe<Scalars['String']>, | |
| }; | |
| export type ContentfulPageSortInput = { | |
| fields?: Maybe<Array<Maybe<ContentfulPageFieldsEnum>>>, | |
| order?: Maybe<Array<Maybe<SortOrderEnum>>>, | |
| }; | |
| export type ContentfulPerson = Node & { | |
| __typename?: 'ContentfulPerson', | |
| id: Scalars['ID'], | |
| parent?: Maybe<Node>, | |
| children: Array<Node>, | |
| internal: Internal, | |
| name?: Maybe<Scalars['String']>, | |
| title?: Maybe<Scalars['String']>, | |
| company?: Maybe<Scalars['String']>, | |
| email?: Maybe<Scalars['String']>, | |
| phone?: Maybe<Scalars['String']>, | |
| facebook?: Maybe<Scalars['String']>, | |
| twitter?: Maybe<Scalars['String']>, | |
| github?: Maybe<Scalars['String']>, | |
| image?: Maybe<ContentfulAsset>, | |
| blogpost?: Maybe<Array<Maybe<ContentfulBlogPost>>>, | |
| shortBio?: Maybe<ContentfulPersonShortBioTextNode>, | |
| spaceId?: Maybe<Scalars['String']>, | |
| contentful_id?: Maybe<Scalars['String']>, | |
| createdAt?: Maybe<Scalars['Date']>, | |
| updatedAt?: Maybe<Scalars['Date']>, | |
| node_locale?: Maybe<Scalars['String']>, | |
| childContentfulPersonShortBioTextNode?: Maybe<ContentfulPersonShortBioTextNode>, | |
| }; | |
| export type ContentfulPersonCreatedAtArgs = { | |
| formatString?: Maybe<Scalars['String']>, | |
| fromNow?: Maybe<Scalars['Boolean']>, | |
| difference?: Maybe<Scalars['String']>, | |
| locale?: Maybe<Scalars['String']> | |
| }; | |
| export type ContentfulPersonUpdatedAtArgs = { | |
| formatString?: Maybe<Scalars['String']>, | |
| fromNow?: Maybe<Scalars['Boolean']>, | |
| difference?: Maybe<Scalars['String']>, | |
| locale?: Maybe<Scalars['String']> | |
| }; | |
| export type ContentfulPersonConnection = { | |
| __typename?: 'ContentfulPersonConnection', | |
| totalCount: Scalars['Int'], | |
| edges: Array<ContentfulPersonEdge>, | |
| nodes: Array<ContentfulPerson>, | |
| pageInfo: PageInfo, | |
| distinct: Array<Scalars['String']>, | |
| group: Array<ContentfulPersonGroupConnection>, | |
| }; | |
| export type ContentfulPersonConnectionDistinctArgs = { | |
| field: ContentfulPersonFieldsEnum | |
| }; | |
| export type ContentfulPersonConnectionGroupArgs = { | |
| skip?: Maybe<Scalars['Int']>, | |
| limit?: Maybe<Scalars['Int']>, | |
| field: ContentfulPersonFieldsEnum | |
| }; | |
| export type ContentfulPersonEdge = { | |
| __typename?: 'ContentfulPersonEdge', | |
| next?: Maybe<ContentfulPerson>, | |
| node: ContentfulPerson, | |
| previous?: Maybe<ContentfulPerson>, | |
| }; | |
| export enum ContentfulPersonFieldsEnum { | |
| Id = 'id', | |
| ParentId = 'parent___id', | |
| ParentParentId = 'parent___parent___id', | |
| ParentParentParentId = 'parent___parent___parent___id', | |
| ParentParentParentChildren = 'parent___parent___parent___children', | |
| ParentParentChildren = 'parent___parent___children', | |
| ParentParentChildrenId = 'parent___parent___children___id', | |
| ParentParentChildrenChildren = 'parent___parent___children___children', | |
| ParentParentInternalContent = 'parent___parent___internal___content', | |
| ParentParentInternalContentDigest = 'parent___parent___internal___contentDigest', | |
| ParentParentInternalDescription = 'parent___parent___internal___description', | |
| ParentParentInternalFieldOwners = 'parent___parent___internal___fieldOwners', | |
| ParentParentInternalIgnoreType = 'parent___parent___internal___ignoreType', | |
| ParentParentInternalMediaType = 'parent___parent___internal___mediaType', | |
| ParentParentInternalOwner = 'parent___parent___internal___owner', | |
| ParentParentInternalType = 'parent___parent___internal___type', | |
| ParentChildren = 'parent___children', | |
| ParentChildrenId = 'parent___children___id', | |
| ParentChildrenParentId = 'parent___children___parent___id', | |
| ParentChildrenParentChildren = 'parent___children___parent___children', | |
| ParentChildrenChildren = 'parent___children___children', | |
| ParentChildrenChildrenId = 'parent___children___children___id', | |
| ParentChildrenChildrenChildren = 'parent___children___children___children', | |
| ParentChildrenInternalContent = 'parent___children___internal___content', | |
| ParentChildrenInternalContentDigest = 'parent___children___internal___contentDigest', | |
| ParentChildrenInternalDescription = 'parent___children___internal___description', | |
| ParentChildrenInternalFieldOwners = 'parent___children___internal___fieldOwners', | |
| ParentChildrenInternalIgnoreType = 'parent___children___internal___ignoreType', | |
| ParentChildrenInternalMediaType = 'parent___children___internal___mediaType', | |
| ParentChildrenInternalOwner = 'parent___children___internal___owner', | |
| ParentChildrenInternalType = 'parent___children___internal___type', | |
| ParentInternalContent = 'parent___internal___content', | |
| ParentInternalContentDigest = 'parent___internal___contentDigest', | |
| ParentInternalDescription = 'parent___internal___description', | |
| ParentInternalFieldOwners = 'parent___internal___fieldOwners', | |
| ParentInternalIgnoreType = 'parent___internal___ignoreType', | |
| ParentInternalMediaType = 'parent___internal___mediaType', | |
| ParentInternalOwner = 'parent___internal___owner', | |
| ParentInternalType = 'parent___internal___type', | |
| Children = 'children', | |
| ChildrenId = 'children___id', | |
| ChildrenParentId = 'children___parent___id', | |
| ChildrenParentParentId = 'children___parent___parent___id', | |
| ChildrenParentParentChildren = 'children___parent___parent___children', | |
| ChildrenParentChildren = 'children___parent___children', | |
| ChildrenParentChildrenId = 'children___parent___children___id', | |
| ChildrenParentChildrenChildren = 'children___parent___children___children', | |
| ChildrenParentInternalContent = 'children___parent___internal___content', | |
| ChildrenParentInternalContentDigest = 'children___parent___internal___contentDigest', | |
| ChildrenParentInternalDescription = 'children___parent___internal___description', | |
| ChildrenParentInternalFieldOwners = 'children___parent___internal___fieldOwners', | |
| ChildrenParentInternalIgnoreType = 'children___parent___internal___ignoreType', | |
| ChildrenParentInternalMediaType = 'children___parent___internal___mediaType', | |
| ChildrenParentInternalOwner = 'children___parent___internal___owner', | |
| ChildrenParentInternalType = 'children___parent___internal___type', | |
| ChildrenChildren = 'children___children', | |
| ChildrenChildrenId = 'children___children___id', | |
| ChildrenChildrenParentId = 'children___children___parent___id', | |
| ChildrenChildrenParentChildren = 'children___children___parent___children', | |
| ChildrenChildrenChildren = 'children___children___children', | |
| ChildrenChildrenChildrenId = 'children___children___children___id', | |
| ChildrenChildrenChildrenChildren = 'children___children___children___children', | |
| ChildrenChildrenInternalContent = 'children___children___internal___content', | |
| ChildrenChildrenInternalContentDigest = 'children___children___internal___contentDigest', | |
| ChildrenChildrenInternalDescription = 'children___children___internal___description', | |
| ChildrenChildrenInternalFieldOwners = 'children___children___internal___fieldOwners', | |
| ChildrenChildrenInternalIgnoreType = 'children___children___internal___ignoreType', | |
| ChildrenChildrenInternalMediaType = 'children___children___internal___mediaType', | |
| ChildrenChildrenInternalOwner = 'children___children___internal___owner', | |
| ChildrenChildrenInternalType = 'children___children___internal___type', | |
| ChildrenInternalContent = 'children___internal___content', | |
| ChildrenInternalContentDigest = 'children___internal___contentDigest', | |
| ChildrenInternalDescription = 'children___internal___description', | |
| ChildrenInternalFieldOwners = 'children___internal___fieldOwners', | |
| ChildrenInternalIgnoreType = 'children___internal___ignoreType', | |
| ChildrenInternalMediaType = 'children___internal___mediaType', | |
| ChildrenInternalOwner = 'children___internal___owner', | |
| ChildrenInternalType = 'children___internal___type', | |
| InternalContent = 'internal___content', | |
| InternalContentDigest = 'internal___contentDigest', | |
| InternalDescription = 'internal___description', | |
| InternalFieldOwners = 'internal___fieldOwners', | |
| InternalIgnoreType = 'internal___ignoreType', | |
| InternalMediaType = 'internal___mediaType', | |
| InternalOwner = 'internal___owner', | |
| InternalType = 'internal___type', | |
| Name = 'name', | |
| Title = 'title', | |
| Company = 'company', | |
| Email = 'email', | |
| Phone = 'phone', | |
| Facebook = 'facebook', | |
| Twitter = 'twitter', | |
| Github = 'github', | |
| ImageId = 'image___id', | |
| ImageParentId = 'image___parent___id', | |
| ImageParentParentId = 'image___parent___parent___id', | |
| ImageParentParentChildren = 'image___parent___parent___children', | |
| ImageParentChildren = 'image___parent___children', | |
| ImageParentChildrenId = 'image___parent___children___id', | |
| ImageParentChildrenChildren = 'image___parent___children___children', | |
| ImageParentInternalContent = 'image___parent___internal___content', | |
| ImageParentInternalContentDigest = 'image___parent___internal___contentDigest', | |
| ImageParentInternalDescription = 'image___parent___internal___description', | |
| ImageParentInternalFieldOwners = 'image___parent___internal___fieldOwners', | |
| ImageParentInternalIgnoreType = 'image___parent___internal___ignoreType', | |
| ImageParentInternalMediaType = 'image___parent___internal___mediaType', | |
| ImageParentInternalOwner = 'image___parent___internal___owner', | |
| ImageParentInternalType = 'image___parent___internal___type', | |
| ImageChildren = 'image___children', | |
| ImageChildrenId = 'image___children___id', | |
| ImageChildrenParentId = 'image___children___parent___id', | |
| ImageChildrenParentChildren = 'image___children___parent___children', | |
| ImageChildrenChildren = 'image___children___children', | |
| ImageChildrenChildrenId = 'image___children___children___id', | |
| ImageChildrenChildrenChildren = 'image___children___children___children', | |
| ImageChildrenInternalContent = 'image___children___internal___content', | |
| ImageChildrenInternalContentDigest = 'image___children___internal___contentDigest', | |
| ImageChildrenInternalDescription = 'image___children___internal___description', | |
| ImageChildrenInternalFieldOwners = 'image___children___internal___fieldOwners', | |
| ImageChildrenInternalIgnoreType = 'image___children___internal___ignoreType', | |
| ImageChildrenInternalMediaType = 'image___children___internal___mediaType', | |
| ImageChildrenInternalOwner = 'image___children___internal___owner', | |
| ImageChildrenInternalType = 'image___children___internal___type', | |
| ImageInternalContent = 'image___internal___content', | |
| ImageInternalContentDigest = 'image___internal___contentDigest', | |
| ImageInternalDescription = 'image___internal___description', | |
| ImageInternalFieldOwners = 'image___internal___fieldOwners', | |
| ImageInternalIgnoreType = 'image___internal___ignoreType', | |
| ImageInternalMediaType = 'image___internal___mediaType', | |
| ImageInternalOwner = 'image___internal___owner', | |
| ImageInternalType = 'image___internal___type', | |
| ImageContentfulId = 'image___contentful_id', | |
| ImageFileUrl = 'image___file___url', | |
| ImageFileDetailsSize = 'image___file___details___size', | |
| ImageFileFileName = 'image___file___fileName', | |
| ImageFileContentType = 'image___file___contentType', | |
| ImageTitle = 'image___title', | |
| ImageDescription = 'image___description', | |
| ImageNodeLocale = 'image___node_locale', | |
| ImageFixedBase64 = 'image___fixed___base64', | |
| ImageFixedTracedSvg = 'image___fixed___tracedSVG', | |
| ImageFixedAspectRatio = 'image___fixed___aspectRatio', | |
| ImageFixedWidth = 'image___fixed___width', | |
| ImageFixedHeight = 'image___fixed___height', | |
| ImageFixedSrc = 'image___fixed___src', | |
| ImageFixedSrcSet = 'image___fixed___srcSet', | |
| ImageFixedSrcWebp = 'image___fixed___srcWebp', | |
| ImageFixedSrcSetWebp = 'image___fixed___srcSetWebp', | |
| ImageResolutionsBase64 = 'image___resolutions___base64', | |
| ImageResolutionsTracedSvg = 'image___resolutions___tracedSVG', | |
| ImageResolutionsAspectRatio = 'image___resolutions___aspectRatio', | |
| ImageResolutionsWidth = 'image___resolutions___width', | |
| ImageResolutionsHeight = 'image___resolutions___height', | |
| ImageResolutionsSrc = 'image___resolutions___src', | |
| ImageResolutionsSrcSet = 'image___resolutions___srcSet', | |
| ImageResolutionsSrcWebp = 'image___resolutions___srcWebp', | |
| ImageResolutionsSrcSetWebp = 'image___resolutions___srcSetWebp', | |
| ImageFluidBase64 = 'image___fluid___base64', | |
| ImageFluidTracedSvg = 'image___fluid___tracedSVG', | |
| ImageFluidAspectRatio = 'image___fluid___aspectRatio', | |
| ImageFluidSrc = 'image___fluid___src', | |
| ImageFluidSrcSet = 'image___fluid___srcSet', | |
| ImageFluidSrcWebp = 'image___fluid___srcWebp', | |
| ImageFluidSrcSetWebp = 'image___fluid___srcSetWebp', | |
| ImageFluidSizes = 'image___fluid___sizes', | |
| ImageSizesBase64 = 'image___sizes___base64', | |
| ImageSizesTracedSvg = 'image___sizes___tracedSVG', | |
| ImageSizesAspectRatio = 'image___sizes___aspectRatio', | |
| ImageSizesSrc = 'image___sizes___src', | |
| ImageSizesSrcSet = 'image___sizes___srcSet', | |
| ImageSizesSrcWebp = 'image___sizes___srcWebp', | |
| ImageSizesSrcSetWebp = 'image___sizes___srcSetWebp', | |
| ImageSizesSizes = 'image___sizes___sizes', | |
| ImageResizeBase64 = 'image___resize___base64', | |
| ImageResizeTracedSvg = 'image___resize___tracedSVG', | |
| ImageResizeSrc = 'image___resize___src', | |
| ImageResizeWidth = 'image___resize___width', | |
| ImageResizeHeight = 'image___resize___height', | |
| ImageResizeAspectRatio = 'image___resize___aspectRatio', | |
| Blogpost = 'blogpost', | |
| BlogpostId = 'blogpost___id', | |
| BlogpostParentId = 'blogpost___parent___id', | |
| BlogpostParentParentId = 'blogpost___parent___parent___id', | |
| BlogpostParentParentChildren = 'blogpost___parent___parent___children', | |
| BlogpostParentChildren = 'blogpost___parent___children', | |
| BlogpostParentChildrenId = 'blogpost___parent___children___id', | |
| BlogpostParentChildrenChildren = 'blogpost___parent___children___children', | |
| BlogpostParentInternalContent = 'blogpost___parent___internal___content', | |
| BlogpostParentInternalContentDigest = 'blogpost___parent___internal___contentDigest', | |
| BlogpostParentInternalDescription = 'blogpost___parent___internal___description', | |
| BlogpostParentInternalFieldOwners = 'blogpost___parent___internal___fieldOwners', | |
| BlogpostParentInternalIgnoreType = 'blogpost___parent___internal___ignoreType', | |
| BlogpostParentInternalMediaType = 'blogpost___parent___internal___mediaType', | |
| BlogpostParentInternalOwner = 'blogpost___parent___internal___owner', | |
| BlogpostParentInternalType = 'blogpost___parent___internal___type', | |
| BlogpostChildren = 'blogpost___children', | |
| BlogpostChildrenId = 'blogpost___children___id', | |
| BlogpostChildrenParentId = 'blogpost___children___parent___id', | |
| BlogpostChildrenParentChildren = 'blogpost___children___parent___children', | |
| BlogpostChildrenChildren = 'blogpost___children___children', | |
| BlogpostChildrenChildrenId = 'blogpost___children___children___id', | |
| BlogpostChildrenChildrenChildren = 'blogpost___children___children___children', | |
| BlogpostChildrenInternalContent = 'blogpost___children___internal___content', | |
| BlogpostChildrenInternalContentDigest = 'blogpost___children___internal___contentDigest', | |
| BlogpostChildrenInternalDescription = 'blogpost___children___internal___description', | |
| BlogpostChildrenInternalFieldOwners = 'blogpost___children___internal___fieldOwners', | |
| BlogpostChildrenInternalIgnoreType = 'blogpost___children___internal___ignoreType', | |
| BlogpostChildrenInternalMediaType = 'blogpost___children___internal___mediaType', | |
| BlogpostChildrenInternalOwner = 'blogpost___children___internal___owner', | |
| BlogpostChildrenInternalType = 'blogpost___children___internal___type', | |
| BlogpostInternalContent = 'blogpost___internal___content', | |
| BlogpostInternalContentDigest = 'blogpost___internal___contentDigest', | |
| BlogpostInternalDescription = 'blogpost___internal___description', | |
| BlogpostInternalFieldOwners = 'blogpost___internal___fieldOwners', | |
| BlogpostInternalIgnoreType = 'blogpost___internal___ignoreType', | |
| BlogpostInternalMediaType = 'blogpost___internal___mediaType', | |
| BlogpostInternalOwner = 'blogpost___internal___owner', | |
| BlogpostInternalType = 'blogpost___internal___type', | |
| BlogpostTitle = 'blogpost___title', | |
| BlogpostSlug = 'blogpost___slug', | |
| BlogpostPublishDate = 'blogpost___publishDate', | |
| BlogpostFeaturedImageId = 'blogpost___featuredImage___id', | |
| BlogpostFeaturedImageParentId = 'blogpost___featuredImage___parent___id', | |
| BlogpostFeaturedImageParentChildren = 'blogpost___featuredImage___parent___children', | |
| BlogpostFeaturedImageChildren = 'blogpost___featuredImage___children', | |
| BlogpostFeaturedImageChildrenId = 'blogpost___featuredImage___children___id', | |
| BlogpostFeaturedImageChildrenChildren = 'blogpost___featuredImage___children___children', | |
| BlogpostFeaturedImageInternalContent = 'blogpost___featuredImage___internal___content', | |
| BlogpostFeaturedImageInternalContentDigest = 'blogpost___featuredImage___internal___contentDigest', | |
| BlogpostFeaturedImageInternalDescription = 'blogpost___featuredImage___internal___description', | |
| BlogpostFeaturedImageInternalFieldOwners = 'blogpost___featuredImage___internal___fieldOwners', | |
| BlogpostFeaturedImageInternalIgnoreType = 'blogpost___featuredImage___internal___ignoreType', | |
| BlogpostFeaturedImageInternalMediaType = 'blogpost___featuredImage___internal___mediaType', | |
| BlogpostFeaturedImageInternalOwner = 'blogpost___featuredImage___internal___owner', | |
| BlogpostFeaturedImageInternalType = 'blogpost___featuredImage___internal___type', | |
| BlogpostFeaturedImageContentfulId = 'blogpost___featuredImage___contentful_id', | |
| BlogpostFeaturedImageFileUrl = 'blogpost___featuredImage___file___url', | |
| BlogpostFeaturedImageFileFileName = 'blogpost___featuredImage___file___fileName', | |
| BlogpostFeaturedImageFileContentType = 'blogpost___featuredImage___file___contentType', | |
| BlogpostFeaturedImageTitle = 'blogpost___featuredImage___title', | |
| BlogpostFeaturedImageDescription = 'blogpost___featuredImage___description', | |
| BlogpostFeaturedImageNodeLocale = 'blogpost___featuredImage___node_locale', | |
| BlogpostFeaturedImageFixedBase64 = 'blogpost___featuredImage___fixed___base64', | |
| BlogpostFeaturedImageFixedTracedSvg = 'blogpost___featuredImage___fixed___tracedSVG', | |
| BlogpostFeaturedImageFixedAspectRatio = 'blogpost___featuredImage___fixed___aspectRatio', | |
| BlogpostFeaturedImageFixedWidth = 'blogpost___featuredImage___fixed___width', | |
| BlogpostFeaturedImageFixedHeight = 'blogpost___featuredImage___fixed___height', | |
| BlogpostFeaturedImageFixedSrc = 'blogpost___featuredImage___fixed___src', | |
| BlogpostFeaturedImageFixedSrcSet = 'blogpost___featuredImage___fixed___srcSet', | |
| BlogpostFeaturedImageFixedSrcWebp = 'blogpost___featuredImage___fixed___srcWebp', | |
| BlogpostFeaturedImageFixedSrcSetWebp = 'blogpost___featuredImage___fixed___srcSetWebp', | |
| BlogpostFeaturedImageResolutionsBase64 = 'blogpost___featuredImage___resolutions___base64', | |
| BlogpostFeaturedImageResolutionsTracedSvg = 'blogpost___featuredImage___resolutions___tracedSVG', | |
| BlogpostFeaturedImageResolutionsAspectRatio = 'blogpost___featuredImage___resolutions___aspectRatio', | |
| BlogpostFeaturedImageResolutionsWidth = 'blogpost___featuredImage___resolutions___width', | |
| BlogpostFeaturedImageResolutionsHeight = 'blogpost___featuredImage___resolutions___height', | |
| BlogpostFeaturedImageResolutionsSrc = 'blogpost___featuredImage___resolutions___src', | |
| BlogpostFeaturedImageResolutionsSrcSet = 'blogpost___featuredImage___resolutions___srcSet', | |
| BlogpostFeaturedImageResolutionsSrcWebp = 'blogpost___featuredImage___resolutions___srcWebp', | |
| BlogpostFeaturedImageResolutionsSrcSetWebp = 'blogpost___featuredImage___resolutions___srcSetWebp', | |
| BlogpostFeaturedImageFluidBase64 = 'blogpost___featuredImage___fluid___base64', | |
| BlogpostFeaturedImageFluidTracedSvg = 'blogpost___featuredImage___fluid___tracedSVG', | |
| BlogpostFeaturedImageFluidAspectRatio = 'blogpost___featuredImage___fluid___aspectRatio', | |
| BlogpostFeaturedImageFluidSrc = 'blogpost___featuredImage___fluid___src', | |
| BlogpostFeaturedImageFluidSrcSet = 'blogpost___featuredImage___fluid___srcSet', | |
| BlogpostFeaturedImageFluidSrcWebp = 'blogpost___featuredImage___fluid___srcWebp', | |
| BlogpostFeaturedImageFluidSrcSetWebp = 'blogpost___featuredImage___fluid___srcSetWebp', | |
| BlogpostFeaturedImageFluidSizes = 'blogpost___featuredImage___fluid___sizes', | |
| BlogpostFeaturedImageSizesBase64 = 'blogpost___featuredImage___sizes___base64', | |
| BlogpostFeaturedImageSizesTracedSvg = 'blogpost___featuredImage___sizes___tracedSVG', | |
| BlogpostFeaturedImageSizesAspectRatio = 'blogpost___featuredImage___sizes___aspectRatio', | |
| BlogpostFeaturedImageSizesSrc = 'blogpost___featuredImage___sizes___src', | |
| BlogpostFeaturedImageSizesSrcSet = 'blogpost___featuredImage___sizes___srcSet', | |
| BlogpostFeaturedImageSizesSrcWebp = 'blogpost___featuredImage___sizes___srcWebp', | |
| BlogpostFeaturedImageSizesSrcSetWebp = 'blogpost___featuredImage___sizes___srcSetWebp', | |
| BlogpostFeaturedImageSizesSizes = 'blogpost___featuredImage___sizes___sizes', | |
| BlogpostFeaturedImageResizeBase64 = 'blogpost___featuredImage___resize___base64', | |
| BlogpostFeaturedImageResizeTracedSvg = 'blogpost___featuredImage___resize___tracedSVG', | |
| BlogpostFeaturedImageResizeSrc = 'blogpost___featuredImage___resize___src', | |
| BlogpostFeaturedImageResizeWidth = 'blogpost___featuredImage___resize___width', | |
| BlogpostFeaturedImageResizeHeight = 'blogpost___featuredImage___resize___height', | |
| BlogpostFeaturedImageResizeAspectRatio = 'blogpost___featuredImage___resize___aspectRatio', | |
| BlogpostCategories = 'blogpost___categories', | |
| BlogpostCategoriesId = 'blogpost___categories___id', | |
| BlogpostCategoriesParentId = 'blogpost___categories___parent___id', | |
| BlogpostCategoriesParentChildren = 'blogpost___categories___parent___children', | |
| BlogpostCategoriesChildren = 'blogpost___categories___children', | |
| BlogpostCategoriesChildrenId = 'blogpost___categories___children___id', | |
| BlogpostCategoriesChildrenChildren = 'blogpost___categories___children___children', | |
| BlogpostCategoriesInternalContent = 'blogpost___categories___internal___content', | |
| BlogpostCategoriesInternalContentDigest = 'blogpost___categories___internal___contentDigest', | |
| BlogpostCategoriesInternalDescription = 'blogpost___categories___internal___description', | |
| BlogpostCategoriesInternalFieldOwners = 'blogpost___categories___internal___fieldOwners', | |
| BlogpostCategoriesInternalIgnoreType = 'blogpost___categories___internal___ignoreType', | |
| BlogpostCategoriesInternalMediaType = 'blogpost___categories___internal___mediaType', | |
| BlogpostCategoriesInternalOwner = 'blogpost___categories___internal___owner', | |
| BlogpostCategoriesInternalType = 'blogpost___categories___internal___type', | |
| BlogpostCategoriesTitle = 'blogpost___categories___title', | |
| BlogpostCategoriesSlug = 'blogpost___categories___slug', | |
| BlogpostCategoriesFeaturedImageId = 'blogpost___categories___featuredImage___id', | |
| BlogpostCategoriesFeaturedImageChildren = 'blogpost___categories___featuredImage___children', | |
| BlogpostCategoriesFeaturedImageContentfulId = 'blogpost___categories___featuredImage___contentful_id', | |
| BlogpostCategoriesFeaturedImageTitle = 'blogpost___categories___featuredImage___title', | |
| BlogpostCategoriesFeaturedImageDescription = 'blogpost___categories___featuredImage___description', | |
| BlogpostCategoriesFeaturedImageNodeLocale = 'blogpost___categories___featuredImage___node_locale', | |
| BlogpostCategoriesBlogpost = 'blogpost___categories___blogpost', | |
| BlogpostCategoriesBlogpostId = 'blogpost___categories___blogpost___id', | |
| BlogpostCategoriesBlogpostChildren = 'blogpost___categories___blogpost___children', | |
| BlogpostCategoriesBlogpostTitle = 'blogpost___categories___blogpost___title', | |
| BlogpostCategoriesBlogpostSlug = 'blogpost___categories___blogpost___slug', | |
| BlogpostCategoriesBlogpostPublishDate = 'blogpost___categories___blogpost___publishDate', | |
| BlogpostCategoriesBlogpostCategories = 'blogpost___categories___blogpost___categories', | |
| BlogpostCategoriesBlogpostPage = 'blogpost___categories___blogpost___page', | |
| BlogpostCategoriesBlogpostSpaceId = 'blogpost___categories___blogpost___spaceId', | |
| BlogpostCategoriesBlogpostContentfulId = 'blogpost___categories___blogpost___contentful_id', | |
| BlogpostCategoriesBlogpostCreatedAt = 'blogpost___categories___blogpost___createdAt', | |
| BlogpostCategoriesBlogpostUpdatedAt = 'blogpost___categories___blogpost___updatedAt', | |
| BlogpostCategoriesBlogpostNodeLocale = 'blogpost___categories___blogpost___node_locale', | |
| BlogpostCategoriesSpaceId = 'blogpost___categories___spaceId', | |
| BlogpostCategoriesContentfulId = 'blogpost___categories___contentful_id', | |
| BlogpostCategoriesCreatedAt = 'blogpost___categories___createdAt', | |
| BlogpostCategoriesUpdatedAt = 'blogpost___categories___updatedAt', | |
| BlogpostCategoriesNodeLocale = 'blogpost___categories___node_locale', | |
| BlogpostCategoriesMenu = 'blogpost___categories___menu', | |
| BlogpostCategoriesMenuId = 'blogpost___categories___menu___id', | |
| BlogpostCategoriesMenuChildren = 'blogpost___categories___menu___children', | |
| BlogpostCategoriesMenuName = 'blogpost___categories___menu___name', | |
| BlogpostCategoriesMenuMenuItems = 'blogpost___categories___menu___menuItems', | |
| BlogpostCategoriesMenuSpaceId = 'blogpost___categories___menu___spaceId', | |
| BlogpostCategoriesMenuContentfulId = 'blogpost___categories___menu___contentful_id', | |
| BlogpostCategoriesMenuCreatedAt = 'blogpost___categories___menu___createdAt', | |
| BlogpostCategoriesMenuUpdatedAt = 'blogpost___categories___menu___updatedAt', | |
| BlogpostCategoriesMenuNodeLocale = 'blogpost___categories___menu___node_locale', | |
| BlogpostCategoriesProduct = 'blogpost___categories___product', | |
| BlogpostCategoriesProductId = 'blogpost___categories___product___id', | |
| BlogpostCategoriesProductChildren = 'blogpost___categories___product___children', | |
| BlogpostCategoriesProductTitle = 'blogpost___categories___product___title', | |
| BlogpostCategoriesProductSlug = 'blogpost___categories___product___slug', | |
| BlogpostCategoriesProductPrice = 'blogpost___categories___product___price', | |
| BlogpostCategoriesProductCategories = 'blogpost___categories___product___categories', | |
| BlogpostCategoriesProductSpaceId = 'blogpost___categories___product___spaceId', | |
| BlogpostCategoriesProductContentfulId = 'blogpost___categories___product___contentful_id', | |
| BlogpostCategoriesProductCreatedAt = 'blogpost___categories___product___createdAt', | |
| BlogpostCategoriesProductUpdatedAt = 'blogpost___categories___product___updatedAt', | |
| BlogpostCategoriesProductNodeLocale = 'blogpost___categories___product___node_locale', | |
| BlogpostCategoriesBodyId = 'blogpost___categories___body___id', | |
| BlogpostCategoriesBodyChildren = 'blogpost___categories___body___children', | |
| BlogpostCategoriesBodyContent = 'blogpost___categories___body___content', | |
| BlogpostCategoriesBodyNodeType = 'blogpost___categories___body___nodeType', | |
| BlogpostCategoriesBodyBody = 'blogpost___categories___body___body', | |
| BlogpostCategoriesBodyJson = 'blogpost___categories___body___json', | |
| BlogpostCategoriesChildContentfulCategoryBodyRichTextNodeId = 'blogpost___categories___childContentfulCategoryBodyRichTextNode___id', | |
| BlogpostCategoriesChildContentfulCategoryBodyRichTextNodeChildren = 'blogpost___categories___childContentfulCategoryBodyRichTextNode___children', | |
| BlogpostCategoriesChildContentfulCategoryBodyRichTextNodeContent = 'blogpost___categories___childContentfulCategoryBodyRichTextNode___content', | |
| BlogpostCategoriesChildContentfulCategoryBodyRichTextNodeNodeType = 'blogpost___categories___childContentfulCategoryBodyRichTextNode___nodeType', | |
| BlogpostCategoriesChildContentfulCategoryBodyRichTextNodeBody = 'blogpost___categories___childContentfulCategoryBodyRichTextNode___body', | |
| BlogpostCategoriesChildContentfulCategoryBodyRichTextNodeJson = 'blogpost___categories___childContentfulCategoryBodyRichTextNode___json', | |
| BlogpostPage = 'blogpost___page', | |
| BlogpostPageId = 'blogpost___page___id', | |
| BlogpostPageParentId = 'blogpost___page___parent___id', | |
| BlogpostPageParentChildren = 'blogpost___page___parent___children', | |
| BlogpostPageChildren = 'blogpost___page___children', | |
| BlogpostPageChildrenId = 'blogpost___page___children___id', | |
| BlogpostPageChildrenChildren = 'blogpost___page___children___children', | |
| BlogpostPageInternalContent = 'blogpost___page___internal___content', | |
| BlogpostPageInternalContentDigest = 'blogpost___page___internal___contentDigest', | |
| BlogpostPageInternalDescription = 'blogpost___page___internal___description', | |
| BlogpostPageInternalFieldOwners = 'blogpost___page___internal___fieldOwners', | |
| BlogpostPageInternalIgnoreType = 'blogpost___page___internal___ignoreType', | |
| BlogpostPageInternalMediaType = 'blogpost___page___internal___mediaType', | |
| BlogpostPageInternalOwner = 'blogpost___page___internal___owner', | |
| BlogpostPageInternalType = 'blogpost___page___internal___type', | |
| BlogpostPageTitle = 'blogpost___page___title', | |
| BlogpostPageSlug = 'blogpost___page___slug', | |
| BlogpostPageIsHomePage = 'blogpost___page___isHomePage', | |
| BlogpostPageFeaturedPosts = 'blogpost___page___featuredPosts', | |
| BlogpostPageFeaturedPostsId = 'blogpost___page___featuredPosts___id', | |
| BlogpostPageFeaturedPostsChildren = 'blogpost___page___featuredPosts___children', | |
| BlogpostPageFeaturedPostsTitle = 'blogpost___page___featuredPosts___title', | |
| BlogpostPageFeaturedPostsSlug = 'blogpost___page___featuredPosts___slug', | |
| BlogpostPageFeaturedPostsPublishDate = 'blogpost___page___featuredPosts___publishDate', | |
| BlogpostPageFeaturedPostsCategories = 'blogpost___page___featuredPosts___categories', | |
| BlogpostPageFeaturedPostsPage = 'blogpost___page___featuredPosts___page', | |
| BlogpostPageFeaturedPostsSpaceId = 'blogpost___page___featuredPosts___spaceId', | |
| BlogpostPageFeaturedPostsContentfulId = 'blogpost___page___featuredPosts___contentful_id', | |
| BlogpostPageFeaturedPostsCreatedAt = 'blogpost___page___featuredPosts___createdAt', | |
| BlogpostPageFeaturedPostsUpdatedAt = 'blogpost___page___featuredPosts___updatedAt', | |
| BlogpostPageFeaturedPostsNodeLocale = 'blogpost___page___featuredPosts___node_locale', | |
| BlogpostPageSpaceId = 'blogpost___page___spaceId', | |
| BlogpostPageContentfulId = 'blogpost___page___contentful_id', | |
| BlogpostPageCreatedAt = 'blogpost___page___createdAt', | |
| BlogpostPageUpdatedAt = 'blogpost___page___updatedAt', | |
| BlogpostPageNodeLocale = 'blogpost___page___node_locale', | |
| BlogpostPageBodyId = 'blogpost___page___body___id', | |
| BlogpostPageBodyChildren = 'blogpost___page___body___children', | |
| BlogpostPageBodyContent = 'blogpost___page___body___content', | |
| BlogpostPageBodyNodeType = 'blogpost___page___body___nodeType', | |
| BlogpostPageBodyBody = 'blogpost___page___body___body', | |
| BlogpostPageBodyJson = 'blogpost___page___body___json', | |
| BlogpostPageChildContentfulPageBodyRichTextNodeId = 'blogpost___page___childContentfulPageBodyRichTextNode___id', | |
| BlogpostPageChildContentfulPageBodyRichTextNodeChildren = 'blogpost___page___childContentfulPageBodyRichTextNode___children', | |
| BlogpostPageChildContentfulPageBodyRichTextNodeContent = 'blogpost___page___childContentfulPageBodyRichTextNode___content', | |
| BlogpostPageChildContentfulPageBodyRichTextNodeNodeType = 'blogpost___page___childContentfulPageBodyRichTextNode___nodeType', | |
| BlogpostPageChildContentfulPageBodyRichTextNodeBody = 'blogpost___page___childContentfulPageBodyRichTextNode___body', | |
| BlogpostPageChildContentfulPageBodyRichTextNodeJson = 'blogpost___page___childContentfulPageBodyRichTextNode___json', | |
| BlogpostBodyId = 'blogpost___body___id', | |
| BlogpostBodyParentId = 'blogpost___body___parent___id', | |
| BlogpostBodyParentChildren = 'blogpost___body___parent___children', | |
| BlogpostBodyChildren = 'blogpost___body___children', | |
| BlogpostBodyChildrenId = 'blogpost___body___children___id', | |
| BlogpostBodyChildrenChildren = 'blogpost___body___children___children', | |
| BlogpostBodyInternalContent = 'blogpost___body___internal___content', | |
| BlogpostBodyInternalContentDigest = 'blogpost___body___internal___contentDigest', | |
| BlogpostBodyInternalDescription = 'blogpost___body___internal___description', | |
| BlogpostBodyInternalFieldOwners = 'blogpost___body___internal___fieldOwners', | |
| BlogpostBodyInternalIgnoreType = 'blogpost___body___internal___ignoreType', | |
| BlogpostBodyInternalMediaType = 'blogpost___body___internal___mediaType', | |
| BlogpostBodyInternalOwner = 'blogpost___body___internal___owner', | |
| BlogpostBodyInternalType = 'blogpost___body___internal___type', | |
| BlogpostBodyContent = 'blogpost___body___content', | |
| BlogpostBodyContentContent = 'blogpost___body___content___content', | |
| BlogpostBodyContentNodeType = 'blogpost___body___content___nodeType', | |
| BlogpostBodyNodeType = 'blogpost___body___nodeType', | |
| BlogpostBodyBody = 'blogpost___body___body', | |
| BlogpostBodyJson = 'blogpost___body___json', | |
| BlogpostBodyChildContentfulRichTextId = 'blogpost___body___childContentfulRichText___id', | |
| BlogpostBodyChildContentfulRichTextChildren = 'blogpost___body___childContentfulRichText___children', | |
| BlogpostBodyChildContentfulRichTextHtml = 'blogpost___body___childContentfulRichText___html', | |
| BlogpostBodyChildContentfulRichTextTimeToRead = 'blogpost___body___childContentfulRichText___timeToRead', | |
| BlogpostSpaceId = 'blogpost___spaceId', | |
| BlogpostContentfulId = 'blogpost___contentful_id', | |
| BlogpostCreatedAt = 'blogpost___createdAt', | |
| BlogpostUpdatedAt = 'blogpost___updatedAt', | |
| BlogpostNodeLocale = 'blogpost___node_locale', | |
| BlogpostAuthorId = 'blogpost___author___id', | |
| BlogpostAuthorParentId = 'blogpost___author___parent___id', | |
| BlogpostAuthorParentChildren = 'blogpost___author___parent___children', | |
| BlogpostAuthorChildren = 'blogpost___author___children', | |
| BlogpostAuthorChildrenId = 'blogpost___author___children___id', | |
| BlogpostAuthorChildrenChildren = 'blogpost___author___children___children', | |
| BlogpostAuthorInternalContent = 'blogpost___author___internal___content', | |
| BlogpostAuthorInternalContentDigest = 'blogpost___author___internal___contentDigest', | |
| BlogpostAuthorInternalDescription = 'blogpost___author___internal___description', | |
| BlogpostAuthorInternalFieldOwners = 'blogpost___author___internal___fieldOwners', | |
| BlogpostAuthorInternalIgnoreType = 'blogpost___author___internal___ignoreType', | |
| BlogpostAuthorInternalMediaType = 'blogpost___author___internal___mediaType', | |
| BlogpostAuthorInternalOwner = 'blogpost___author___internal___owner', | |
| BlogpostAuthorInternalType = 'blogpost___author___internal___type', | |
| BlogpostAuthorName = 'blogpost___author___name', | |
| BlogpostAuthorTitle = 'blogpost___author___title', | |
| BlogpostAuthorCompany = 'blogpost___author___company', | |
| BlogpostAuthorEmail = 'blogpost___author___email', | |
| BlogpostAuthorPhone = 'blogpost___author___phone', | |
| BlogpostAuthorFacebook = 'blogpost___author___facebook', | |
| BlogpostAuthorTwitter = 'blogpost___author___twitter', | |
| BlogpostAuthorGithub = 'blogpost___author___github', | |
| BlogpostAuthorImageId = 'blogpost___author___image___id', | |
| BlogpostAuthorImageChildren = 'blogpost___author___image___children', | |
| BlogpostAuthorImageContentfulId = 'blogpost___author___image___contentful_id', | |
| BlogpostAuthorImageTitle = 'blogpost___author___image___title', | |
| BlogpostAuthorImageDescription = 'blogpost___author___image___description', | |
| BlogpostAuthorImageNodeLocale = 'blogpost___author___image___node_locale', | |
| BlogpostAuthorBlogpost = 'blogpost___author___blogpost', | |
| BlogpostAuthorBlogpostId = 'blogpost___author___blogpost___id', | |
| BlogpostAuthorBlogpostChildren = 'blogpost___author___blogpost___children', | |
| BlogpostAuthorBlogpostTitle = 'blogpost___author___blogpost___title', | |
| BlogpostAuthorBlogpostSlug = 'blogpost___author___blogpost___slug', | |
| BlogpostAuthorBlogpostPublishDate = 'blogpost___author___blogpost___publishDate', | |
| BlogpostAuthorBlogpostCategories = 'blogpost___author___blogpost___categories', | |
| BlogpostAuthorBlogpostPage = 'blogpost___author___blogpost___page', | |
| BlogpostAuthorBlogpostSpaceId = 'blogpost___author___blogpost___spaceId', | |
| BlogpostAuthorBlogpostContentfulId = 'blogpost___author___blogpost___contentful_id', | |
| BlogpostAuthorBlogpostCreatedAt = 'blogpost___author___blogpost___createdAt', | |
| BlogpostAuthorBlogpostUpdatedAt = 'blogpost___author___blogpost___updatedAt', | |
| BlogpostAuthorBlogpostNodeLocale = 'blogpost___author___blogpost___node_locale', | |
| BlogpostAuthorShortBioId = 'blogpost___author___shortBio___id', | |
| BlogpostAuthorShortBioChildren = 'blogpost___author___shortBio___children', | |
| BlogpostAuthorShortBioShortBio = 'blogpost___author___shortBio___shortBio', | |
| BlogpostAuthorSpaceId = 'blogpost___author___spaceId', | |
| BlogpostAuthorContentfulId = 'blogpost___author___contentful_id', | |
| BlogpostAuthorCreatedAt = 'blogpost___author___createdAt', | |
| BlogpostAuthorUpdatedAt = 'blogpost___author___updatedAt', | |
| BlogpostAuthorNodeLocale = 'blogpost___author___node_locale', | |
| BlogpostAuthorChildContentfulPersonShortBioTextNodeId = 'blogpost___author___childContentfulPersonShortBioTextNode___id', | |
| BlogpostAuthorChildContentfulPersonShortBioTextNodeChildren = 'blogpost___author___childContentfulPersonShortBioTextNode___children', | |
| BlogpostAuthorChildContentfulPersonShortBioTextNodeShortBio = 'blogpost___author___childContentfulPersonShortBioTextNode___shortBio', | |
| BlogpostChildContentfulBlogPostBodyRichTextNodeId = 'blogpost___childContentfulBlogPostBodyRichTextNode___id', | |
| BlogpostChildContentfulBlogPostBodyRichTextNodeParentId = 'blogpost___childContentfulBlogPostBodyRichTextNode___parent___id', | |
| BlogpostChildContentfulBlogPostBodyRichTextNodeParentChildren = 'blogpost___childContentfulBlogPostBodyRichTextNode___parent___children', | |
| BlogpostChildContentfulBlogPostBodyRichTextNodeChildren = 'blogpost___childContentfulBlogPostBodyRichTextNode___children', | |
| BlogpostChildContentfulBlogPostBodyRichTextNodeChildrenId = 'blogpost___childContentfulBlogPostBodyRichTextNode___children___id', | |
| BlogpostChildContentfulBlogPostBodyRichTextNodeChildrenChildren = 'blogpost___childContentfulBlogPostBodyRichTextNode___children___children', | |
| BlogpostChildContentfulBlogPostBodyRichTextNodeInternalContent = 'blogpost___childContentfulBlogPostBodyRichTextNode___internal___content', | |
| BlogpostChildContentfulBlogPostBodyRichTextNodeInternalContentDigest = 'blogpost___childContentfulBlogPostBodyRichTextNode___internal___contentDigest', | |
| BlogpostChildContentfulBlogPostBodyRichTextNodeInternalDescription = 'blogpost___childContentfulBlogPostBodyRichTextNode___internal___description', | |
| BlogpostChildContentfulBlogPostBodyRichTextNodeInternalFieldOwners = 'blogpost___childContentfulBlogPostBodyRichTextNode___internal___fieldOwners', | |
| BlogpostChildContentfulBlogPostBodyRichTextNodeInternalIgnoreType = 'blogpost___childContentfulBlogPostBodyRichTextNode___internal___ignoreType', | |
| BlogpostChildContentfulBlogPostBodyRichTextNodeInternalMediaType = 'blogpost___childContentfulBlogPostBodyRichTextNode___internal___mediaType', | |
| BlogpostChildContentfulBlogPostBodyRichTextNodeInternalOwner = 'blogpost___childContentfulBlogPostBodyRichTextNode___internal___owner', | |
| BlogpostChildContentfulBlogPostBodyRichTextNodeInternalType = 'blogpost___childContentfulBlogPostBodyRichTextNode___internal___type', | |
| BlogpostChildContentfulBlogPostBodyRichTextNodeContent = 'blogpost___childContentfulBlogPostBodyRichTextNode___content', | |
| BlogpostChildContentfulBlogPostBodyRichTextNodeContentContent = 'blogpost___childContentfulBlogPostBodyRichTextNode___content___content', | |
| BlogpostChildContentfulBlogPostBodyRichTextNodeContentNodeType = 'blogpost___childContentfulBlogPostBodyRichTextNode___content___nodeType', | |
| BlogpostChildContentfulBlogPostBodyRichTextNodeNodeType = 'blogpost___childContentfulBlogPostBodyRichTextNode___nodeType', | |
| BlogpostChildContentfulBlogPostBodyRichTextNodeBody = 'blogpost___childContentfulBlogPostBodyRichTextNode___body', | |
| BlogpostChildContentfulBlogPostBodyRichTextNodeJson = 'blogpost___childContentfulBlogPostBodyRichTextNode___json', | |
| BlogpostChildContentfulBlogPostBodyRichTextNodeChildContentfulRichTextId = 'blogpost___childContentfulBlogPostBodyRichTextNode___childContentfulRichText___id', | |
| BlogpostChildContentfulBlogPostBodyRichTextNodeChildContentfulRichTextChildren = 'blogpost___childContentfulBlogPostBodyRichTextNode___childContentfulRichText___children', | |
| BlogpostChildContentfulBlogPostBodyRichTextNodeChildContentfulRichTextHtml = 'blogpost___childContentfulBlogPostBodyRichTextNode___childContentfulRichText___html', | |
| BlogpostChildContentfulBlogPostBodyRichTextNodeChildContentfulRichTextTimeToRead = 'blogpost___childContentfulBlogPostBodyRichTextNode___childContentfulRichText___timeToRead', | |
| ShortBioId = 'shortBio___id', | |
| ShortBioParentId = 'shortBio___parent___id', | |
| ShortBioParentParentId = 'shortBio___parent___parent___id', | |
| ShortBioParentParentChildren = 'shortBio___parent___parent___children', | |
| ShortBioParentChildren = 'shortBio___parent___children', | |
| ShortBioParentChildrenId = 'shortBio___parent___children___id', | |
| ShortBioParentChildrenChildren = 'shortBio___parent___children___children', | |
| ShortBioParentInternalContent = 'shortBio___parent___internal___content', | |
| ShortBioParentInternalContentDigest = 'shortBio___parent___internal___contentDigest', | |
| ShortBioParentInternalDescription = 'shortBio___parent___internal___description', | |
| ShortBioParentInternalFieldOwners = 'shortBio___parent___internal___fieldOwners', | |
| ShortBioParentInternalIgnoreType = 'shortBio___parent___internal___ignoreType', | |
| ShortBioParentInternalMediaType = 'shortBio___parent___internal___mediaType', | |
| ShortBioParentInternalOwner = 'shortBio___parent___internal___owner', | |
| ShortBioParentInternalType = 'shortBio___parent___internal___type', | |
| ShortBioChildren = 'shortBio___children', | |
| ShortBioChildrenId = 'shortBio___children___id', | |
| ShortBioChildrenParentId = 'shortBio___children___parent___id', | |
| ShortBioChildrenParentChildren = 'shortBio___children___parent___children', | |
| ShortBioChildrenChildren = 'shortBio___children___children', | |
| ShortBioChildrenChildrenId = 'shortBio___children___children___id', | |
| ShortBioChildrenChildrenChildren = 'shortBio___children___children___children', | |
| ShortBioChildrenInternalContent = 'shortBio___children___internal___content', | |
| ShortBioChildrenInternalContentDigest = 'shortBio___children___internal___contentDigest', | |
| ShortBioChildrenInternalDescription = 'shortBio___children___internal___description', | |
| ShortBioChildrenInternalFieldOwners = 'shortBio___children___internal___fieldOwners', | |
| ShortBioChildrenInternalIgnoreType = 'shortBio___children___internal___ignoreType', | |
| ShortBioChildrenInternalMediaType = 'shortBio___children___internal___mediaType', | |
| ShortBioChildrenInternalOwner = 'shortBio___children___internal___owner', | |
| ShortBioChildrenInternalType = 'shortBio___children___internal___type', | |
| ShortBioInternalContent = 'shortBio___internal___content', | |
| ShortBioInternalContentDigest = 'shortBio___internal___contentDigest', | |
| ShortBioInternalDescription = 'shortBio___internal___description', | |
| ShortBioInternalFieldOwners = 'shortBio___internal___fieldOwners', | |
| ShortBioInternalIgnoreType = 'shortBio___internal___ignoreType', | |
| ShortBioInternalMediaType = 'shortBio___internal___mediaType', | |
| ShortBioInternalOwner = 'shortBio___internal___owner', | |
| ShortBioInternalType = 'shortBio___internal___type', | |
| ShortBioShortBio = 'shortBio___shortBio', | |
| SpaceId = 'spaceId', | |
| ContentfulId = 'contentful_id', | |
| CreatedAt = 'createdAt', | |
| UpdatedAt = 'updatedAt', | |
| NodeLocale = 'node_locale', | |
| ChildContentfulPersonShortBioTextNodeId = 'childContentfulPersonShortBioTextNode___id', | |
| ChildContentfulPersonShortBioTextNodeParentId = 'childContentfulPersonShortBioTextNode___parent___id', | |
| ChildContentfulPersonShortBioTextNodeParentParentId = 'childContentfulPersonShortBioTextNode___parent___parent___id', | |
| ChildContentfulPersonShortBioTextNodeParentParentChildren = 'childContentfulPersonShortBioTextNode___parent___parent___children', | |
| ChildContentfulPersonShortBioTextNodeParentChildren = 'childContentfulPersonShortBioTextNode___parent___children', | |
| ChildContentfulPersonShortBioTextNodeParentChildrenId = 'childContentfulPersonShortBioTextNode___parent___children___id', | |
| ChildContentfulPersonShortBioTextNodeParentChildrenChildren = 'childContentfulPersonShortBioTextNode___parent___children___children', | |
| ChildContentfulPersonShortBioTextNodeParentInternalContent = 'childContentfulPersonShortBioTextNode___parent___internal___content', | |
| ChildContentfulPersonShortBioTextNodeParentInternalContentDigest = 'childContentfulPersonShortBioTextNode___parent___internal___contentDigest', | |
| ChildContentfulPersonShortBioTextNodeParentInternalDescription = 'childContentfulPersonShortBioTextNode___parent___internal___description', | |
| ChildContentfulPersonShortBioTextNodeParentInternalFieldOwners = 'childContentfulPersonShortBioTextNode___parent___internal___fieldOwners', | |
| ChildContentfulPersonShortBioTextNodeParentInternalIgnoreType = 'childContentfulPersonShortBioTextNode___parent___internal___ignoreType', | |
| ChildContentfulPersonShortBioTextNodeParentInternalMediaType = 'childContentfulPersonShortBioTextNode___parent___internal___mediaType', | |
| ChildContentfulPersonShortBioTextNodeParentInternalOwner = 'childContentfulPersonShortBioTextNode___parent___internal___owner', | |
| ChildContentfulPersonShortBioTextNodeParentInternalType = 'childContentfulPersonShortBioTextNode___parent___internal___type', | |
| ChildContentfulPersonShortBioTextNodeChildren = 'childContentfulPersonShortBioTextNode___children', | |
| ChildContentfulPersonShortBioTextNodeChildrenId = 'childContentfulPersonShortBioTextNode___children___id', | |
| ChildContentfulPersonShortBioTextNodeChildrenParentId = 'childContentfulPersonShortBioTextNode___children___parent___id', | |
| ChildContentfulPersonShortBioTextNodeChildrenParentChildren = 'childContentfulPersonShortBioTextNode___children___parent___children', | |
| ChildContentfulPersonShortBioTextNodeChildrenChildren = 'childContentfulPersonShortBioTextNode___children___children', | |
| ChildContentfulPersonShortBioTextNodeChildrenChildrenId = 'childContentfulPersonShortBioTextNode___children___children___id', | |
| ChildContentfulPersonShortBioTextNodeChildrenChildrenChildren = 'childContentfulPersonShortBioTextNode___children___children___children', | |
| ChildContentfulPersonShortBioTextNodeChildrenInternalContent = 'childContentfulPersonShortBioTextNode___children___internal___content', | |
| ChildContentfulPersonShortBioTextNodeChildrenInternalContentDigest = 'childContentfulPersonShortBioTextNode___children___internal___contentDigest', | |
| ChildContentfulPersonShortBioTextNodeChildrenInternalDescription = 'childContentfulPersonShortBioTextNode___children___internal___description', | |
| ChildContentfulPersonShortBioTextNodeChildrenInternalFieldOwners = 'childContentfulPersonShortBioTextNode___children___internal___fieldOwners', | |
| ChildContentfulPersonShortBioTextNodeChildrenInternalIgnoreType = 'childContentfulPersonShortBioTextNode___children___internal___ignoreType', | |
| ChildContentfulPersonShortBioTextNodeChildrenInternalMediaType = 'childContentfulPersonShortBioTextNode___children___internal___mediaType', | |
| ChildContentfulPersonShortBioTextNodeChildrenInternalOwner = 'childContentfulPersonShortBioTextNode___children___internal___owner', | |
| ChildContentfulPersonShortBioTextNodeChildrenInternalType = 'childContentfulPersonShortBioTextNode___children___internal___type', | |
| ChildContentfulPersonShortBioTextNodeInternalContent = 'childContentfulPersonShortBioTextNode___internal___content', | |
| ChildContentfulPersonShortBioTextNodeInternalContentDigest = 'childContentfulPersonShortBioTextNode___internal___contentDigest', | |
| ChildContentfulPersonShortBioTextNodeInternalDescription = 'childContentfulPersonShortBioTextNode___internal___description', | |
| ChildContentfulPersonShortBioTextNodeInternalFieldOwners = 'childContentfulPersonShortBioTextNode___internal___fieldOwners', | |
| ChildContentfulPersonShortBioTextNodeInternalIgnoreType = 'childContentfulPersonShortBioTextNode___internal___ignoreType', | |
| ChildContentfulPersonShortBioTextNodeInternalMediaType = 'childContentfulPersonShortBioTextNode___internal___mediaType', | |
| ChildContentfulPersonShortBioTextNodeInternalOwner = 'childContentfulPersonShortBioTextNode___internal___owner', | |
| ChildContentfulPersonShortBioTextNodeInternalType = 'childContentfulPersonShortBioTextNode___internal___type', | |
| ChildContentfulPersonShortBioTextNodeShortBio = 'childContentfulPersonShortBioTextNode___shortBio' | |
| } | |
| export type ContentfulPersonFilterInput = { | |
| id?: Maybe<StringQueryOperatorInput>, | |
| parent?: Maybe<NodeFilterInput>, | |
| children?: Maybe<NodeFilterListInput>, | |
| internal?: Maybe<InternalFilterInput>, | |
| name?: Maybe<StringQueryOperatorInput>, | |
| title?: Maybe<StringQueryOperatorInput>, | |
| company?: Maybe<StringQueryOperatorInput>, | |
| email?: Maybe<StringQueryOperatorInput>, | |
| phone?: Maybe<StringQueryOperatorInput>, | |
| facebook?: Maybe<StringQueryOperatorInput>, | |
| twitter?: Maybe<StringQueryOperatorInput>, | |
| github?: Maybe<StringQueryOperatorInput>, | |
| image?: Maybe<ContentfulAssetFilterInput>, | |
| blogpost?: Maybe<ContentfulBlogPostFilterListInput>, | |
| shortBio?: Maybe<ContentfulPersonShortBioTextNodeFilterInput>, | |
| spaceId?: Maybe<StringQueryOperatorInput>, | |
| contentful_id?: Maybe<StringQueryOperatorInput>, | |
| createdAt?: Maybe<DateQueryOperatorInput>, | |
| updatedAt?: Maybe<DateQueryOperatorInput>, | |
| node_locale?: Maybe<StringQueryOperatorInput>, | |
| childContentfulPersonShortBioTextNode?: Maybe<ContentfulPersonShortBioTextNodeFilterInput>, | |
| }; | |
| export type ContentfulPersonGroupConnection = { | |
| __typename?: 'ContentfulPersonGroupConnection', | |
| totalCount: Scalars['Int'], | |
| edges: Array<ContentfulPersonEdge>, | |
| nodes: Array<ContentfulPerson>, | |
| pageInfo: PageInfo, | |
| field: Scalars['String'], | |
| fieldValue?: Maybe<Scalars['String']>, | |
| }; | |
| export type ContentfulPersonShortBioTextNode = Node & { | |
| __typename?: 'contentfulPersonShortBioTextNode', | |
| id: Scalars['ID'], | |
| parent?: Maybe<Node>, | |
| children: Array<Node>, | |
| internal: Internal, | |
| shortBio?: Maybe<Scalars['String']>, | |
| }; | |
| export type ContentfulPersonShortBioTextNodeConnection = { | |
| __typename?: 'contentfulPersonShortBioTextNodeConnection', | |
| totalCount: Scalars['Int'], | |
| edges: Array<ContentfulPersonShortBioTextNodeEdge>, | |
| nodes: Array<ContentfulPersonShortBioTextNode>, | |
| pageInfo: PageInfo, | |
| distinct: Array<Scalars['String']>, | |
| group: Array<ContentfulPersonShortBioTextNodeGroupConnection>, | |
| }; | |
| export type ContentfulPersonShortBioTextNodeConnectionDistinctArgs = { | |
| field: ContentfulPersonShortBioTextNodeFieldsEnum | |
| }; | |
| export type ContentfulPersonShortBioTextNodeConnectionGroupArgs = { | |
| skip?: Maybe<Scalars['Int']>, | |
| limit?: Maybe<Scalars['Int']>, | |
| field: ContentfulPersonShortBioTextNodeFieldsEnum | |
| }; | |
| export type ContentfulPersonShortBioTextNodeEdge = { | |
| __typename?: 'contentfulPersonShortBioTextNodeEdge', | |
| next?: Maybe<ContentfulPersonShortBioTextNode>, | |
| node: ContentfulPersonShortBioTextNode, | |
| previous?: Maybe<ContentfulPersonShortBioTextNode>, | |
| }; | |
| export enum ContentfulPersonShortBioTextNodeFieldsEnum { | |
| Id = 'id', | |
| ParentId = 'parent___id', | |
| ParentParentId = 'parent___parent___id', | |
| ParentParentParentId = 'parent___parent___parent___id', | |
| ParentParentParentChildren = 'parent___parent___parent___children', | |
| ParentParentChildren = 'parent___parent___children', | |
| ParentParentChildrenId = 'parent___parent___children___id', | |
| ParentParentChildrenChildren = 'parent___parent___children___children', | |
| ParentParentInternalContent = 'parent___parent___internal___content', | |
| ParentParentInternalContentDigest = 'parent___parent___internal___contentDigest', | |
| ParentParentInternalDescription = 'parent___parent___internal___description', | |
| ParentParentInternalFieldOwners = 'parent___parent___internal___fieldOwners', | |
| ParentParentInternalIgnoreType = 'parent___parent___internal___ignoreType', | |
| ParentParentInternalMediaType = 'parent___parent___internal___mediaType', | |
| ParentParentInternalOwner = 'parent___parent___internal___owner', | |
| ParentParentInternalType = 'parent___parent___internal___type', | |
| ParentChildren = 'parent___children', | |
| ParentChildrenId = 'parent___children___id', | |
| ParentChildrenParentId = 'parent___children___parent___id', | |
| ParentChildrenParentChildren = 'parent___children___parent___children', | |
| ParentChildrenChildren = 'parent___children___children', | |
| ParentChildrenChildrenId = 'parent___children___children___id', | |
| ParentChildrenChildrenChildren = 'parent___children___children___children', | |
| ParentChildrenInternalContent = 'parent___children___internal___content', | |
| ParentChildrenInternalContentDigest = 'parent___children___internal___contentDigest', | |
| ParentChildrenInternalDescription = 'parent___children___internal___description', | |
| ParentChildrenInternalFieldOwners = 'parent___children___internal___fieldOwners', | |
| ParentChildrenInternalIgnoreType = 'parent___children___internal___ignoreType', | |
| ParentChildrenInternalMediaType = 'parent___children___internal___mediaType', | |
| ParentChildrenInternalOwner = 'parent___children___internal___owner', | |
| ParentChildrenInternalType = 'parent___children___internal___type', | |
| ParentInternalContent = 'parent___internal___content', | |
| ParentInternalContentDigest = 'parent___internal___contentDigest', | |
| ParentInternalDescription = 'parent___internal___description', | |
| ParentInternalFieldOwners = 'parent___internal___fieldOwners', | |
| ParentInternalIgnoreType = 'parent___internal___ignoreType', | |
| ParentInternalMediaType = 'parent___internal___mediaType', | |
| ParentInternalOwner = 'parent___internal___owner', | |
| ParentInternalType = 'parent___internal___type', | |
| Children = 'children', | |
| ChildrenId = 'children___id', | |
| ChildrenParentId = 'children___parent___id', | |
| ChildrenParentParentId = 'children___parent___parent___id', | |
| ChildrenParentParentChildren = 'children___parent___parent___children', | |
| ChildrenParentChildren = 'children___parent___children', | |
| ChildrenParentChildrenId = 'children___parent___children___id', | |
| ChildrenParentChildrenChildren = 'children___parent___children___children', | |
| ChildrenParentInternalContent = 'children___parent___internal___content', | |
| ChildrenParentInternalContentDigest = 'children___parent___internal___contentDigest', | |
| ChildrenParentInternalDescription = 'children___parent___internal___description', | |
| ChildrenParentInternalFieldOwners = 'children___parent___internal___fieldOwners', | |
| ChildrenParentInternalIgnoreType = 'children___parent___internal___ignoreType', | |
| ChildrenParentInternalMediaType = 'children___parent___internal___mediaType', | |
| ChildrenParentInternalOwner = 'children___parent___internal___owner', | |
| ChildrenParentInternalType = 'children___parent___internal___type', | |
| ChildrenChildren = 'children___children', | |
| ChildrenChildrenId = 'children___children___id', | |
| ChildrenChildrenParentId = 'children___children___parent___id', | |
| ChildrenChildrenParentChildren = 'children___children___parent___children', | |
| ChildrenChildrenChildren = 'children___children___children', | |
| ChildrenChildrenChildrenId = 'children___children___children___id', | |
| ChildrenChildrenChildrenChildren = 'children___children___children___children', | |
| ChildrenChildrenInternalContent = 'children___children___internal___content', | |
| ChildrenChildrenInternalContentDigest = 'children___children___internal___contentDigest', | |
| ChildrenChildrenInternalDescription = 'children___children___internal___description', | |
| ChildrenChildrenInternalFieldOwners = 'children___children___internal___fieldOwners', | |
| ChildrenChildrenInternalIgnoreType = 'children___children___internal___ignoreType', | |
| ChildrenChildrenInternalMediaType = 'children___children___internal___mediaType', | |
| ChildrenChildrenInternalOwner = 'children___children___internal___owner', | |
| ChildrenChildrenInternalType = 'children___children___internal___type', | |
| ChildrenInternalContent = 'children___internal___content', | |
| ChildrenInternalContentDigest = 'children___internal___contentDigest', | |
| ChildrenInternalDescription = 'children___internal___description', | |
| ChildrenInternalFieldOwners = 'children___internal___fieldOwners', | |
| ChildrenInternalIgnoreType = 'children___internal___ignoreType', | |
| ChildrenInternalMediaType = 'children___internal___mediaType', | |
| ChildrenInternalOwner = 'children___internal___owner', | |
| ChildrenInternalType = 'children___internal___type', | |
| InternalContent = 'internal___content', | |
| InternalContentDigest = 'internal___contentDigest', | |
| InternalDescription = 'internal___description', | |
| InternalFieldOwners = 'internal___fieldOwners', | |
| InternalIgnoreType = 'internal___ignoreType', | |
| InternalMediaType = 'internal___mediaType', | |
| InternalOwner = 'internal___owner', | |
| InternalType = 'internal___type', | |
| ShortBio = 'shortBio' | |
| } | |
| export type ContentfulPersonShortBioTextNodeFilterInput = { | |
| id?: Maybe<StringQueryOperatorInput>, | |
| parent?: Maybe<NodeFilterInput>, | |
| children?: Maybe<NodeFilterListInput>, | |
| internal?: Maybe<InternalFilterInput>, | |
| shortBio?: Maybe<StringQueryOperatorInput>, | |
| }; | |
| export type ContentfulPersonShortBioTextNodeGroupConnection = { | |
| __typename?: 'contentfulPersonShortBioTextNodeGroupConnection', | |
| totalCount: Scalars['Int'], | |
| edges: Array<ContentfulPersonShortBioTextNodeEdge>, | |
| nodes: Array<ContentfulPersonShortBioTextNode>, | |
| pageInfo: PageInfo, | |
| field: Scalars['String'], | |
| fieldValue?: Maybe<Scalars['String']>, | |
| }; | |
| export type ContentfulPersonShortBioTextNodeSortInput = { | |
| fields?: Maybe<Array<Maybe<ContentfulPersonShortBioTextNodeFieldsEnum>>>, | |
| order?: Maybe<Array<Maybe<SortOrderEnum>>>, | |
| }; | |
| export type ContentfulPersonSortInput = { | |
| fields?: Maybe<Array<Maybe<ContentfulPersonFieldsEnum>>>, | |
| order?: Maybe<Array<Maybe<SortOrderEnum>>>, | |
| }; | |
| export type ContentfulProduct = Node & { | |
| __typename?: 'ContentfulProduct', | |
| id: Scalars['ID'], | |
| parent?: Maybe<Node>, | |
| children: Array<Node>, | |
| internal: Internal, | |
| title?: Maybe<Scalars['String']>, | |
| slug?: Maybe<Scalars['String']>, | |
| price?: Maybe<Scalars['Float']>, | |
| featuredImage?: Maybe<ContentfulAsset>, | |
| categories?: Maybe<Array<Maybe<ContentfulCategory>>>, | |
| body?: Maybe<ContentfulProductBodyRichTextNode>, | |
| spaceId?: Maybe<Scalars['String']>, | |
| contentful_id?: Maybe<Scalars['String']>, | |
| createdAt?: Maybe<Scalars['Date']>, | |
| updatedAt?: Maybe<Scalars['Date']>, | |
| node_locale?: Maybe<Scalars['String']>, | |
| childContentfulProductBodyRichTextNode?: Maybe<ContentfulProductBodyRichTextNode>, | |
| }; | |
| export type ContentfulProductCreatedAtArgs = { | |
| formatString?: Maybe<Scalars['String']>, | |
| fromNow?: Maybe<Scalars['Boolean']>, | |
| difference?: Maybe<Scalars['String']>, | |
| locale?: Maybe<Scalars['String']> | |
| }; | |
| export type ContentfulProductUpdatedAtArgs = { | |
| formatString?: Maybe<Scalars['String']>, | |
| fromNow?: Maybe<Scalars['Boolean']>, | |
| difference?: Maybe<Scalars['String']>, | |
| locale?: Maybe<Scalars['String']> | |
| }; | |
| export type ContentfulProductBodyRichTextNode = Node & { | |
| __typename?: 'contentfulProductBodyRichTextNode', | |
| id: Scalars['ID'], | |
| parent?: Maybe<Node>, | |
| children: Array<Node>, | |
| internal: Internal, | |
| content?: Maybe<Array<Maybe<ContentfulProductBodyRichTextNodeContent>>>, | |
| nodeType?: Maybe<Scalars['String']>, | |
| body?: Maybe<Scalars['String']>, | |
| json?: Maybe<Scalars['JSON']>, | |
| childContentfulRichText?: Maybe<ContentfulRichText>, | |
| }; | |
| export type ContentfulProductBodyRichTextNodeConnection = { | |
| __typename?: 'contentfulProductBodyRichTextNodeConnection', | |
| totalCount: Scalars['Int'], | |
| edges: Array<ContentfulProductBodyRichTextNodeEdge>, | |
| nodes: Array<ContentfulProductBodyRichTextNode>, | |
| pageInfo: PageInfo, | |
| distinct: Array<Scalars['String']>, | |
| group: Array<ContentfulProductBodyRichTextNodeGroupConnection>, | |
| }; | |
| export type ContentfulProductBodyRichTextNodeConnectionDistinctArgs = { | |
| field: ContentfulProductBodyRichTextNodeFieldsEnum | |
| }; | |
| export type ContentfulProductBodyRichTextNodeConnectionGroupArgs = { | |
| skip?: Maybe<Scalars['Int']>, | |
| limit?: Maybe<Scalars['Int']>, | |
| field: ContentfulProductBodyRichTextNodeFieldsEnum | |
| }; | |
| export type ContentfulProductBodyRichTextNodeContent = { | |
| __typename?: 'contentfulProductBodyRichTextNodeContent', | |
| content?: Maybe<Array<Maybe<ContentfulProductBodyRichTextNodeContentContent>>>, | |
| nodeType?: Maybe<Scalars['String']>, | |
| }; | |
| export type ContentfulProductBodyRichTextNodeContentContent = { | |
| __typename?: 'contentfulProductBodyRichTextNodeContentContent', | |
| value?: Maybe<Scalars['String']>, | |
| nodeType?: Maybe<Scalars['String']>, | |
| }; | |
| export type ContentfulProductBodyRichTextNodeContentContentFilterInput = { | |
| value?: Maybe<StringQueryOperatorInput>, | |
| nodeType?: Maybe<StringQueryOperatorInput>, | |
| }; | |
| export type ContentfulProductBodyRichTextNodeContentContentFilterListInput = { | |
| elemMatch?: Maybe<ContentfulProductBodyRichTextNodeContentContentFilterInput>, | |
| }; | |
| export type ContentfulProductBodyRichTextNodeContentFilterInput = { | |
| content?: Maybe<ContentfulProductBodyRichTextNodeContentContentFilterListInput>, | |
| nodeType?: Maybe<StringQueryOperatorInput>, | |
| }; | |
| export type ContentfulProductBodyRichTextNodeContentFilterListInput = { | |
| elemMatch?: Maybe<ContentfulProductBodyRichTextNodeContentFilterInput>, | |
| }; | |
| export type ContentfulProductBodyRichTextNodeEdge = { | |
| __typename?: 'contentfulProductBodyRichTextNodeEdge', | |
| next?: Maybe<ContentfulProductBodyRichTextNode>, | |
| node: ContentfulProductBodyRichTextNode, | |
| previous?: Maybe<ContentfulProductBodyRichTextNode>, | |
| }; | |
| export enum ContentfulProductBodyRichTextNodeFieldsEnum { | |
| Id = 'id', | |
| ParentId = 'parent___id', | |
| ParentParentId = 'parent___parent___id', | |
| ParentParentParentId = 'parent___parent___parent___id', | |
| ParentParentParentChildren = 'parent___parent___parent___children', | |
| ParentParentChildren = 'parent___parent___children', | |
| ParentParentChildrenId = 'parent___parent___children___id', | |
| ParentParentChildrenChildren = 'parent___parent___children___children', | |
| ParentParentInternalContent = 'parent___parent___internal___content', | |
| ParentParentInternalContentDigest = 'parent___parent___internal___contentDigest', | |
| ParentParentInternalDescription = 'parent___parent___internal___description', | |
| ParentParentInternalFieldOwners = 'parent___parent___internal___fieldOwners', | |
| ParentParentInternalIgnoreType = 'parent___parent___internal___ignoreType', | |
| ParentParentInternalMediaType = 'parent___parent___internal___mediaType', | |
| ParentParentInternalOwner = 'parent___parent___internal___owner', | |
| ParentParentInternalType = 'parent___parent___internal___type', | |
| ParentChildren = 'parent___children', | |
| ParentChildrenId = 'parent___children___id', | |
| ParentChildrenParentId = 'parent___children___parent___id', | |
| ParentChildrenParentChildren = 'parent___children___parent___children', | |
| ParentChildrenChildren = 'parent___children___children', | |
| ParentChildrenChildrenId = 'parent___children___children___id', | |
| ParentChildrenChildrenChildren = 'parent___children___children___children', | |
| ParentChildrenInternalContent = 'parent___children___internal___content', | |
| ParentChildrenInternalContentDigest = 'parent___children___internal___contentDigest', | |
| ParentChildrenInternalDescription = 'parent___children___internal___description', | |
| ParentChildrenInternalFieldOwners = 'parent___children___internal___fieldOwners', | |
| ParentChildrenInternalIgnoreType = 'parent___children___internal___ignoreType', | |
| ParentChildrenInternalMediaType = 'parent___children___internal___mediaType', | |
| ParentChildrenInternalOwner = 'parent___children___internal___owner', | |
| ParentChildrenInternalType = 'parent___children___internal___type', | |
| ParentInternalContent = 'parent___internal___content', | |
| ParentInternalContentDigest = 'parent___internal___contentDigest', | |
| ParentInternalDescription = 'parent___internal___description', | |
| ParentInternalFieldOwners = 'parent___internal___fieldOwners', | |
| ParentInternalIgnoreType = 'parent___internal___ignoreType', | |
| ParentInternalMediaType = 'parent___internal___mediaType', | |
| ParentInternalOwner = 'parent___internal___owner', | |
| ParentInternalType = 'parent___internal___type', | |
| Children = 'children', | |
| ChildrenId = 'children___id', | |
| ChildrenParentId = 'children___parent___id', | |
| ChildrenParentParentId = 'children___parent___parent___id', | |
| ChildrenParentParentChildren = 'children___parent___parent___children', | |
| ChildrenParentChildren = 'children___parent___children', | |
| ChildrenParentChildrenId = 'children___parent___children___id', | |
| ChildrenParentChildrenChildren = 'children___parent___children___children', | |
| ChildrenParentInternalContent = 'children___parent___internal___content', | |
| ChildrenParentInternalContentDigest = 'children___parent___internal___contentDigest', | |
| ChildrenParentInternalDescription = 'children___parent___internal___description', | |
| ChildrenParentInternalFieldOwners = 'children___parent___internal___fieldOwners', | |
| ChildrenParentInternalIgnoreType = 'children___parent___internal___ignoreType', | |
| ChildrenParentInternalMediaType = 'children___parent___internal___mediaType', | |
| ChildrenParentInternalOwner = 'children___parent___internal___owner', | |
| ChildrenParentInternalType = 'children___parent___internal___type', | |
| ChildrenChildren = 'children___children', | |
| ChildrenChildrenId = 'children___children___id', | |
| ChildrenChildrenParentId = 'children___children___parent___id', | |
| ChildrenChildrenParentChildren = 'children___children___parent___children', | |
| ChildrenChildrenChildren = 'children___children___children', | |
| ChildrenChildrenChildrenId = 'children___children___children___id', | |
| ChildrenChildrenChildrenChildren = 'children___children___children___children', | |
| ChildrenChildrenInternalContent = 'children___children___internal___content', | |
| ChildrenChildrenInternalContentDigest = 'children___children___internal___contentDigest', | |
| ChildrenChildrenInternalDescription = 'children___children___internal___description', | |
| ChildrenChildrenInternalFieldOwners = 'children___children___internal___fieldOwners', | |
| ChildrenChildrenInternalIgnoreType = 'children___children___internal___ignoreType', | |
| ChildrenChildrenInternalMediaType = 'children___children___internal___mediaType', | |
| ChildrenChildrenInternalOwner = 'children___children___internal___owner', | |
| ChildrenChildrenInternalType = 'children___children___internal___type', | |
| ChildrenInternalContent = 'children___internal___content', | |
| ChildrenInternalContentDigest = 'children___internal___contentDigest', | |
| ChildrenInternalDescription = 'children___internal___description', | |
| ChildrenInternalFieldOwners = 'children___internal___fieldOwners', | |
| ChildrenInternalIgnoreType = 'children___internal___ignoreType', | |
| ChildrenInternalMediaType = 'children___internal___mediaType', | |
| ChildrenInternalOwner = 'children___internal___owner', | |
| ChildrenInternalType = 'children___internal___type', | |
| InternalContent = 'internal___content', | |
| InternalContentDigest = 'internal___contentDigest', | |
| InternalDescription = 'internal___description', | |
| InternalFieldOwners = 'internal___fieldOwners', | |
| InternalIgnoreType = 'internal___ignoreType', | |
| InternalMediaType = 'internal___mediaType', | |
| InternalOwner = 'internal___owner', | |
| InternalType = 'internal___type', | |
| Content = 'content', | |
| ContentContent = 'content___content', | |
| ContentContentValue = 'content___content___value', | |
| ContentContentNodeType = 'content___content___nodeType', | |
| ContentNodeType = 'content___nodeType', | |
| NodeType = 'nodeType', | |
| Body = 'body', | |
| Json = 'json', | |
| ChildContentfulRichTextId = 'childContentfulRichText___id', | |
| ChildContentfulRichTextParentId = 'childContentfulRichText___parent___id', | |
| ChildContentfulRichTextParentParentId = 'childContentfulRichText___parent___parent___id', | |
| ChildContentfulRichTextParentParentChildren = 'childContentfulRichText___parent___parent___children', | |
| ChildContentfulRichTextParentChildren = 'childContentfulRichText___parent___children', | |
| ChildContentfulRichTextParentChildrenId = 'childContentfulRichText___parent___children___id', | |
| ChildContentfulRichTextParentChildrenChildren = 'childContentfulRichText___parent___children___children', | |
| ChildContentfulRichTextParentInternalContent = 'childContentfulRichText___parent___internal___content', | |
| ChildContentfulRichTextParentInternalContentDigest = 'childContentfulRichText___parent___internal___contentDigest', | |
| ChildContentfulRichTextParentInternalDescription = 'childContentfulRichText___parent___internal___description', | |
| ChildContentfulRichTextParentInternalFieldOwners = 'childContentfulRichText___parent___internal___fieldOwners', | |
| ChildContentfulRichTextParentInternalIgnoreType = 'childContentfulRichText___parent___internal___ignoreType', | |
| ChildContentfulRichTextParentInternalMediaType = 'childContentfulRichText___parent___internal___mediaType', | |
| ChildContentfulRichTextParentInternalOwner = 'childContentfulRichText___parent___internal___owner', | |
| ChildContentfulRichTextParentInternalType = 'childContentfulRichText___parent___internal___type', | |
| ChildContentfulRichTextChildren = 'childContentfulRichText___children', | |
| ChildContentfulRichTextChildrenId = 'childContentfulRichText___children___id', | |
| ChildContentfulRichTextChildrenParentId = 'childContentfulRichText___children___parent___id', | |
| ChildContentfulRichTextChildrenParentChildren = 'childContentfulRichText___children___parent___children', | |
| ChildContentfulRichTextChildrenChildren = 'childContentfulRichText___children___children', | |
| ChildContentfulRichTextChildrenChildrenId = 'childContentfulRichText___children___children___id', | |
| ChildContentfulRichTextChildrenChildrenChildren = 'childContentfulRichText___children___children___children', | |
| ChildContentfulRichTextChildrenInternalContent = 'childContentfulRichText___children___internal___content', | |
| ChildContentfulRichTextChildrenInternalContentDigest = 'childContentfulRichText___children___internal___contentDigest', | |
| ChildContentfulRichTextChildrenInternalDescription = 'childContentfulRichText___children___internal___description', | |
| ChildContentfulRichTextChildrenInternalFieldOwners = 'childContentfulRichText___children___internal___fieldOwners', | |
| ChildContentfulRichTextChildrenInternalIgnoreType = 'childContentfulRichText___children___internal___ignoreType', | |
| ChildContentfulRichTextChildrenInternalMediaType = 'childContentfulRichText___children___internal___mediaType', | |
| ChildContentfulRichTextChildrenInternalOwner = 'childContentfulRichText___children___internal___owner', | |
| ChildContentfulRichTextChildrenInternalType = 'childContentfulRichText___children___internal___type', | |
| ChildContentfulRichTextInternalContent = 'childContentfulRichText___internal___content', | |
| ChildContentfulRichTextInternalContentDigest = 'childContentfulRichText___internal___contentDigest', | |
| ChildContentfulRichTextInternalDescription = 'childContentfulRichText___internal___description', | |
| ChildContentfulRichTextInternalFieldOwners = 'childContentfulRichText___internal___fieldOwners', | |
| ChildContentfulRichTextInternalIgnoreType = 'childContentfulRichText___internal___ignoreType', | |
| ChildContentfulRichTextInternalMediaType = 'childContentfulRichText___internal___mediaType', | |
| ChildContentfulRichTextInternalOwner = 'childContentfulRichText___internal___owner', | |
| ChildContentfulRichTextInternalType = 'childContentfulRichText___internal___type', | |
| ChildContentfulRichTextHtml = 'childContentfulRichText___html', | |
| ChildContentfulRichTextTimeToRead = 'childContentfulRichText___timeToRead' | |
| } | |
| export type ContentfulProductBodyRichTextNodeFilterInput = { | |
| id?: Maybe<StringQueryOperatorInput>, | |
| parent?: Maybe<NodeFilterInput>, | |
| children?: Maybe<NodeFilterListInput>, | |
| internal?: Maybe<InternalFilterInput>, | |
| content?: Maybe<ContentfulProductBodyRichTextNodeContentFilterListInput>, | |
| nodeType?: Maybe<StringQueryOperatorInput>, | |
| body?: Maybe<StringQueryOperatorInput>, | |
| json?: Maybe<JsonQueryOperatorInput>, | |
| childContentfulRichText?: Maybe<ContentfulRichTextFilterInput>, | |
| }; | |
| export type ContentfulProductBodyRichTextNodeGroupConnection = { | |
| __typename?: 'contentfulProductBodyRichTextNodeGroupConnection', | |
| totalCount: Scalars['Int'], | |
| edges: Array<ContentfulProductBodyRichTextNodeEdge>, | |
| nodes: Array<ContentfulProductBodyRichTextNode>, | |
| pageInfo: PageInfo, | |
| field: Scalars['String'], | |
| fieldValue?: Maybe<Scalars['String']>, | |
| }; | |
| export type ContentfulProductBodyRichTextNodeSortInput = { | |
| fields?: Maybe<Array<Maybe<ContentfulProductBodyRichTextNodeFieldsEnum>>>, | |
| order?: Maybe<Array<Maybe<SortOrderEnum>>>, | |
| }; | |
| export type ContentfulProductConnection = { | |
| __typename?: 'ContentfulProductConnection', | |
| totalCount: Scalars['Int'], | |
| edges: Array<ContentfulProductEdge>, | |
| nodes: Array<ContentfulProduct>, | |
| pageInfo: PageInfo, | |
| distinct: Array<Scalars['String']>, | |
| group: Array<ContentfulProductGroupConnection>, | |
| }; | |
| export type ContentfulProductConnectionDistinctArgs = { | |
| field: ContentfulProductFieldsEnum | |
| }; | |
| export type ContentfulProductConnectionGroupArgs = { | |
| skip?: Maybe<Scalars['Int']>, | |
| limit?: Maybe<Scalars['Int']>, | |
| field: ContentfulProductFieldsEnum | |
| }; | |
| export type ContentfulProductEdge = { | |
| __typename?: 'ContentfulProductEdge', | |
| next?: Maybe<ContentfulProduct>, | |
| node: ContentfulProduct, | |
| previous?: Maybe<ContentfulProduct>, | |
| }; | |
| export enum ContentfulProductFieldsEnum { | |
| Id = 'id', | |
| ParentId = 'parent___id', | |
| ParentParentId = 'parent___parent___id', | |
| ParentParentParentId = 'parent___parent___parent___id', | |
| ParentParentParentChildren = 'parent___parent___parent___children', | |
| ParentParentChildren = 'parent___parent___children', | |
| ParentParentChildrenId = 'parent___parent___children___id', | |
| ParentParentChildrenChildren = 'parent___parent___children___children', | |
| ParentParentInternalContent = 'parent___parent___internal___content', | |
| ParentParentInternalContentDigest = 'parent___parent___internal___contentDigest', | |
| ParentParentInternalDescription = 'parent___parent___internal___description', | |
| ParentParentInternalFieldOwners = 'parent___parent___internal___fieldOwners', | |
| ParentParentInternalIgnoreType = 'parent___parent___internal___ignoreType', | |
| ParentParentInternalMediaType = 'parent___parent___internal___mediaType', | |
| ParentParentInternalOwner = 'parent___parent___internal___owner', | |
| ParentParentInternalType = 'parent___parent___internal___type', | |
| ParentChildren = 'parent___children', | |
| ParentChildrenId = 'parent___children___id', | |
| ParentChildrenParentId = 'parent___children___parent___id', | |
| ParentChildrenParentChildren = 'parent___children___parent___children', | |
| ParentChildrenChildren = 'parent___children___children', | |
| ParentChildrenChildrenId = 'parent___children___children___id', | |
| ParentChildrenChildrenChildren = 'parent___children___children___children', | |
| ParentChildrenInternalContent = 'parent___children___internal___content', | |
| ParentChildrenInternalContentDigest = 'parent___children___internal___contentDigest', | |
| ParentChildrenInternalDescription = 'parent___children___internal___description', | |
| ParentChildrenInternalFieldOwners = 'parent___children___internal___fieldOwners', | |
| ParentChildrenInternalIgnoreType = 'parent___children___internal___ignoreType', | |
| ParentChildrenInternalMediaType = 'parent___children___internal___mediaType', | |
| ParentChildrenInternalOwner = 'parent___children___internal___owner', | |
| ParentChildrenInternalType = 'parent___children___internal___type', | |
| ParentInternalContent = 'parent___internal___content', | |
| ParentInternalContentDigest = 'parent___internal___contentDigest', | |
| ParentInternalDescription = 'parent___internal___description', | |
| ParentInternalFieldOwners = 'parent___internal___fieldOwners', | |
| ParentInternalIgnoreType = 'parent___internal___ignoreType', | |
| ParentInternalMediaType = 'parent___internal___mediaType', | |
| ParentInternalOwner = 'parent___internal___owner', | |
| ParentInternalType = 'parent___internal___type', | |
| Children = 'children', | |
| ChildrenId = 'children___id', | |
| ChildrenParentId = 'children___parent___id', | |
| ChildrenParentParentId = 'children___parent___parent___id', | |
| ChildrenParentParentChildren = 'children___parent___parent___children', | |
| ChildrenParentChildren = 'children___parent___children', | |
| ChildrenParentChildrenId = 'children___parent___children___id', | |
| ChildrenParentChildrenChildren = 'children___parent___children___children', | |
| ChildrenParentInternalContent = 'children___parent___internal___content', | |
| ChildrenParentInternalContentDigest = 'children___parent___internal___contentDigest', | |
| ChildrenParentInternalDescription = 'children___parent___internal___description', | |
| ChildrenParentInternalFieldOwners = 'children___parent___internal___fieldOwners', | |
| ChildrenParentInternalIgnoreType = 'children___parent___internal___ignoreType', | |
| ChildrenParentInternalMediaType = 'children___parent___internal___mediaType', | |
| ChildrenParentInternalOwner = 'children___parent___internal___owner', | |
| ChildrenParentInternalType = 'children___parent___internal___type', | |
| ChildrenChildren = 'children___children', | |
| ChildrenChildrenId = 'children___children___id', | |
| ChildrenChildrenParentId = 'children___children___parent___id', | |
| ChildrenChildrenParentChildren = 'children___children___parent___children', | |
| ChildrenChildrenChildren = 'children___children___children', | |
| ChildrenChildrenChildrenId = 'children___children___children___id', | |
| ChildrenChildrenChildrenChildren = 'children___children___children___children', | |
| ChildrenChildrenInternalContent = 'children___children___internal___content', | |
| ChildrenChildrenInternalContentDigest = 'children___children___internal___contentDigest', | |
| ChildrenChildrenInternalDescription = 'children___children___internal___description', | |
| ChildrenChildrenInternalFieldOwners = 'children___children___internal___fieldOwners', | |
| ChildrenChildrenInternalIgnoreType = 'children___children___internal___ignoreType', | |
| ChildrenChildrenInternalMediaType = 'children___children___internal___mediaType', | |
| ChildrenChildrenInternalOwner = 'children___children___internal___owner', | |
| ChildrenChildrenInternalType = 'children___children___internal___type', | |
| ChildrenInternalContent = 'children___internal___content', | |
| ChildrenInternalContentDigest = 'children___internal___contentDigest', | |
| ChildrenInternalDescription = 'children___internal___description', | |
| ChildrenInternalFieldOwners = 'children___internal___fieldOwners', | |
| ChildrenInternalIgnoreType = 'children___internal___ignoreType', | |
| ChildrenInternalMediaType = 'children___internal___mediaType', | |
| ChildrenInternalOwner = 'children___internal___owner', | |
| ChildrenInternalType = 'children___internal___type', | |
| InternalContent = 'internal___content', | |
| InternalContentDigest = 'internal___contentDigest', | |
| InternalDescription = 'internal___description', | |
| InternalFieldOwners = 'internal___fieldOwners', | |
| InternalIgnoreType = 'internal___ignoreType', | |
| InternalMediaType = 'internal___mediaType', | |
| InternalOwner = 'internal___owner', | |
| InternalType = 'internal___type', | |
| Title = 'title', | |
| Slug = 'slug', | |
| Price = 'price', | |
| FeaturedImageId = 'featuredImage___id', | |
| FeaturedImageParentId = 'featuredImage___parent___id', | |
| FeaturedImageParentParentId = 'featuredImage___parent___parent___id', | |
| FeaturedImageParentParentChildren = 'featuredImage___parent___parent___children', | |
| FeaturedImageParentChildren = 'featuredImage___parent___children', | |
| FeaturedImageParentChildrenId = 'featuredImage___parent___children___id', | |
| FeaturedImageParentChildrenChildren = 'featuredImage___parent___children___children', | |
| FeaturedImageParentInternalContent = 'featuredImage___parent___internal___content', | |
| FeaturedImageParentInternalContentDigest = 'featuredImage___parent___internal___contentDigest', | |
| FeaturedImageParentInternalDescription = 'featuredImage___parent___internal___description', | |
| FeaturedImageParentInternalFieldOwners = 'featuredImage___parent___internal___fieldOwners', | |
| FeaturedImageParentInternalIgnoreType = 'featuredImage___parent___internal___ignoreType', | |
| FeaturedImageParentInternalMediaType = 'featuredImage___parent___internal___mediaType', | |
| FeaturedImageParentInternalOwner = 'featuredImage___parent___internal___owner', | |
| FeaturedImageParentInternalType = 'featuredImage___parent___internal___type', | |
| FeaturedImageChildren = 'featuredImage___children', | |
| FeaturedImageChildrenId = 'featuredImage___children___id', | |
| FeaturedImageChildrenParentId = 'featuredImage___children___parent___id', | |
| FeaturedImageChildrenParentChildren = 'featuredImage___children___parent___children', | |
| FeaturedImageChildrenChildren = 'featuredImage___children___children', | |
| FeaturedImageChildrenChildrenId = 'featuredImage___children___children___id', | |
| FeaturedImageChildrenChildrenChildren = 'featuredImage___children___children___children', | |
| FeaturedImageChildrenInternalContent = 'featuredImage___children___internal___content', | |
| FeaturedImageChildrenInternalContentDigest = 'featuredImage___children___internal___contentDigest', | |
| FeaturedImageChildrenInternalDescription = 'featuredImage___children___internal___description', | |
| FeaturedImageChildrenInternalFieldOwners = 'featuredImage___children___internal___fieldOwners', | |
| FeaturedImageChildrenInternalIgnoreType = 'featuredImage___children___internal___ignoreType', | |
| FeaturedImageChildrenInternalMediaType = 'featuredImage___children___internal___mediaType', | |
| FeaturedImageChildrenInternalOwner = 'featuredImage___children___internal___owner', | |
| FeaturedImageChildrenInternalType = 'featuredImage___children___internal___type', | |
| FeaturedImageInternalContent = 'featuredImage___internal___content', | |
| FeaturedImageInternalContentDigest = 'featuredImage___internal___contentDigest', | |
| FeaturedImageInternalDescription = 'featuredImage___internal___description', | |
| FeaturedImageInternalFieldOwners = 'featuredImage___internal___fieldOwners', | |
| FeaturedImageInternalIgnoreType = 'featuredImage___internal___ignoreType', | |
| FeaturedImageInternalMediaType = 'featuredImage___internal___mediaType', | |
| FeaturedImageInternalOwner = 'featuredImage___internal___owner', | |
| FeaturedImageInternalType = 'featuredImage___internal___type', | |
| FeaturedImageContentfulId = 'featuredImage___contentful_id', | |
| FeaturedImageFileUrl = 'featuredImage___file___url', | |
| FeaturedImageFileDetailsSize = 'featuredImage___file___details___size', | |
| FeaturedImageFileFileName = 'featuredImage___file___fileName', | |
| FeaturedImageFileContentType = 'featuredImage___file___contentType', | |
| FeaturedImageTitle = 'featuredImage___title', | |
| FeaturedImageDescription = 'featuredImage___description', | |
| FeaturedImageNodeLocale = 'featuredImage___node_locale', | |
| FeaturedImageFixedBase64 = 'featuredImage___fixed___base64', | |
| FeaturedImageFixedTracedSvg = 'featuredImage___fixed___tracedSVG', | |
| FeaturedImageFixedAspectRatio = 'featuredImage___fixed___aspectRatio', | |
| FeaturedImageFixedWidth = 'featuredImage___fixed___width', | |
| FeaturedImageFixedHeight = 'featuredImage___fixed___height', | |
| FeaturedImageFixedSrc = 'featuredImage___fixed___src', | |
| FeaturedImageFixedSrcSet = 'featuredImage___fixed___srcSet', | |
| FeaturedImageFixedSrcWebp = 'featuredImage___fixed___srcWebp', | |
| FeaturedImageFixedSrcSetWebp = 'featuredImage___fixed___srcSetWebp', | |
| FeaturedImageResolutionsBase64 = 'featuredImage___resolutions___base64', | |
| FeaturedImageResolutionsTracedSvg = 'featuredImage___resolutions___tracedSVG', | |
| FeaturedImageResolutionsAspectRatio = 'featuredImage___resolutions___aspectRatio', | |
| FeaturedImageResolutionsWidth = 'featuredImage___resolutions___width', | |
| FeaturedImageResolutionsHeight = 'featuredImage___resolutions___height', | |
| FeaturedImageResolutionsSrc = 'featuredImage___resolutions___src', | |
| FeaturedImageResolutionsSrcSet = 'featuredImage___resolutions___srcSet', | |
| FeaturedImageResolutionsSrcWebp = 'featuredImage___resolutions___srcWebp', | |
| FeaturedImageResolutionsSrcSetWebp = 'featuredImage___resolutions___srcSetWebp', | |
| FeaturedImageFluidBase64 = 'featuredImage___fluid___base64', | |
| FeaturedImageFluidTracedSvg = 'featuredImage___fluid___tracedSVG', | |
| FeaturedImageFluidAspectRatio = 'featuredImage___fluid___aspectRatio', | |
| FeaturedImageFluidSrc = 'featuredImage___fluid___src', | |
| FeaturedImageFluidSrcSet = 'featuredImage___fluid___srcSet', | |
| FeaturedImageFluidSrcWebp = 'featuredImage___fluid___srcWebp', | |
| FeaturedImageFluidSrcSetWebp = 'featuredImage___fluid___srcSetWebp', | |
| FeaturedImageFluidSizes = 'featuredImage___fluid___sizes', | |
| FeaturedImageSizesBase64 = 'featuredImage___sizes___base64', | |
| FeaturedImageSizesTracedSvg = 'featuredImage___sizes___tracedSVG', | |
| FeaturedImageSizesAspectRatio = 'featuredImage___sizes___aspectRatio', | |
| FeaturedImageSizesSrc = 'featuredImage___sizes___src', | |
| FeaturedImageSizesSrcSet = 'featuredImage___sizes___srcSet', | |
| FeaturedImageSizesSrcWebp = 'featuredImage___sizes___srcWebp', | |
| FeaturedImageSizesSrcSetWebp = 'featuredImage___sizes___srcSetWebp', | |
| FeaturedImageSizesSizes = 'featuredImage___sizes___sizes', | |
| FeaturedImageResizeBase64 = 'featuredImage___resize___base64', | |
| FeaturedImageResizeTracedSvg = 'featuredImage___resize___tracedSVG', | |
| FeaturedImageResizeSrc = 'featuredImage___resize___src', | |
| FeaturedImageResizeWidth = 'featuredImage___resize___width', | |
| FeaturedImageResizeHeight = 'featuredImage___resize___height', | |
| FeaturedImageResizeAspectRatio = 'featuredImage___resize___aspectRatio', | |
| Categories = 'categories', | |
| CategoriesId = 'categories___id', | |
| CategoriesParentId = 'categories___parent___id', | |
| CategoriesParentParentId = 'categories___parent___parent___id', | |
| CategoriesParentParentChildren = 'categories___parent___parent___children', | |
| CategoriesParentChildren = 'categories___parent___children', | |
| CategoriesParentChildrenId = 'categories___parent___children___id', | |
| CategoriesParentChildrenChildren = 'categories___parent___children___children', | |
| CategoriesParentInternalContent = 'categories___parent___internal___content', | |
| CategoriesParentInternalContentDigest = 'categories___parent___internal___contentDigest', | |
| CategoriesParentInternalDescription = 'categories___parent___internal___description', | |
| CategoriesParentInternalFieldOwners = 'categories___parent___internal___fieldOwners', | |
| CategoriesParentInternalIgnoreType = 'categories___parent___internal___ignoreType', | |
| CategoriesParentInternalMediaType = 'categories___parent___internal___mediaType', | |
| CategoriesParentInternalOwner = 'categories___parent___internal___owner', | |
| CategoriesParentInternalType = 'categories___parent___internal___type', | |
| CategoriesChildren = 'categories___children', | |
| CategoriesChildrenId = 'categories___children___id', | |
| CategoriesChildrenParentId = 'categories___children___parent___id', | |
| CategoriesChildrenParentChildren = 'categories___children___parent___children', | |
| CategoriesChildrenChildren = 'categories___children___children', | |
| CategoriesChildrenChildrenId = 'categories___children___children___id', | |
| CategoriesChildrenChildrenChildren = 'categories___children___children___children', | |
| CategoriesChildrenInternalContent = 'categories___children___internal___content', | |
| CategoriesChildrenInternalContentDigest = 'categories___children___internal___contentDigest', | |
| CategoriesChildrenInternalDescription = 'categories___children___internal___description', | |
| CategoriesChildrenInternalFieldOwners = 'categories___children___internal___fieldOwners', | |
| CategoriesChildrenInternalIgnoreType = 'categories___children___internal___ignoreType', | |
| CategoriesChildrenInternalMediaType = 'categories___children___internal___mediaType', | |
| CategoriesChildrenInternalOwner = 'categories___children___internal___owner', | |
| CategoriesChildrenInternalType = 'categories___children___internal___type', | |
| CategoriesInternalContent = 'categories___internal___content', | |
| CategoriesInternalContentDigest = 'categories___internal___contentDigest', | |
| CategoriesInternalDescription = 'categories___internal___description', | |
| CategoriesInternalFieldOwners = 'categories___internal___fieldOwners', | |
| CategoriesInternalIgnoreType = 'categories___internal___ignoreType', | |
| CategoriesInternalMediaType = 'categories___internal___mediaType', | |
| CategoriesInternalOwner = 'categories___internal___owner', | |
| CategoriesInternalType = 'categories___internal___type', | |
| CategoriesTitle = 'categories___title', | |
| CategoriesSlug = 'categories___slug', | |
| CategoriesFeaturedImageId = 'categories___featuredImage___id', | |
| CategoriesFeaturedImageParentId = 'categories___featuredImage___parent___id', | |
| CategoriesFeaturedImageParentChildren = 'categories___featuredImage___parent___children', | |
| CategoriesFeaturedImageChildren = 'categories___featuredImage___children', | |
| CategoriesFeaturedImageChildrenId = 'categories___featuredImage___children___id', | |
| CategoriesFeaturedImageChildrenChildren = 'categories___featuredImage___children___children', | |
| CategoriesFeaturedImageInternalContent = 'categories___featuredImage___internal___content', | |
| CategoriesFeaturedImageInternalContentDigest = 'categories___featuredImage___internal___contentDigest', | |
| CategoriesFeaturedImageInternalDescription = 'categories___featuredImage___internal___description', | |
| CategoriesFeaturedImageInternalFieldOwners = 'categories___featuredImage___internal___fieldOwners', | |
| CategoriesFeaturedImageInternalIgnoreType = 'categories___featuredImage___internal___ignoreType', | |
| CategoriesFeaturedImageInternalMediaType = 'categories___featuredImage___internal___mediaType', | |
| CategoriesFeaturedImageInternalOwner = 'categories___featuredImage___internal___owner', | |
| CategoriesFeaturedImageInternalType = 'categories___featuredImage___internal___type', | |
| CategoriesFeaturedImageContentfulId = 'categories___featuredImage___contentful_id', | |
| CategoriesFeaturedImageFileUrl = 'categories___featuredImage___file___url', | |
| CategoriesFeaturedImageFileFileName = 'categories___featuredImage___file___fileName', | |
| CategoriesFeaturedImageFileContentType = 'categories___featuredImage___file___contentType', | |
| CategoriesFeaturedImageTitle = 'categories___featuredImage___title', | |
| CategoriesFeaturedImageDescription = 'categories___featuredImage___description', | |
| CategoriesFeaturedImageNodeLocale = 'categories___featuredImage___node_locale', | |
| CategoriesFeaturedImageFixedBase64 = 'categories___featuredImage___fixed___base64', | |
| CategoriesFeaturedImageFixedTracedSvg = 'categories___featuredImage___fixed___tracedSVG', | |
| CategoriesFeaturedImageFixedAspectRatio = 'categories___featuredImage___fixed___aspectRatio', | |
| CategoriesFeaturedImageFixedWidth = 'categories___featuredImage___fixed___width', | |
| CategoriesFeaturedImageFixedHeight = 'categories___featuredImage___fixed___height', | |
| CategoriesFeaturedImageFixedSrc = 'categories___featuredImage___fixed___src', | |
| CategoriesFeaturedImageFixedSrcSet = 'categories___featuredImage___fixed___srcSet', | |
| CategoriesFeaturedImageFixedSrcWebp = 'categories___featuredImage___fixed___srcWebp', | |
| CategoriesFeaturedImageFixedSrcSetWebp = 'categories___featuredImage___fixed___srcSetWebp', | |
| CategoriesFeaturedImageResolutionsBase64 = 'categories___featuredImage___resolutions___base64', | |
| CategoriesFeaturedImageResolutionsTracedSvg = 'categories___featuredImage___resolutions___tracedSVG', | |
| CategoriesFeaturedImageResolutionsAspectRatio = 'categories___featuredImage___resolutions___aspectRatio', | |
| CategoriesFeaturedImageResolutionsWidth = 'categories___featuredImage___resolutions___width', | |
| CategoriesFeaturedImageResolutionsHeight = 'categories___featuredImage___resolutions___height', | |
| CategoriesFeaturedImageResolutionsSrc = 'categories___featuredImage___resolutions___src', | |
| CategoriesFeaturedImageResolutionsSrcSet = 'categories___featuredImage___resolutions___srcSet', | |
| CategoriesFeaturedImageResolutionsSrcWebp = 'categories___featuredImage___resolutions___srcWebp', | |
| CategoriesFeaturedImageResolutionsSrcSetWebp = 'categories___featuredImage___resolutions___srcSetWebp', | |
| CategoriesFeaturedImageFluidBase64 = 'categories___featuredImage___fluid___base64', | |
| CategoriesFeaturedImageFluidTracedSvg = 'categories___featuredImage___fluid___tracedSVG', | |
| CategoriesFeaturedImageFluidAspectRatio = 'categories___featuredImage___fluid___aspectRatio', | |
| CategoriesFeaturedImageFluidSrc = 'categories___featuredImage___fluid___src', | |
| CategoriesFeaturedImageFluidSrcSet = 'categories___featuredImage___fluid___srcSet', | |
| CategoriesFeaturedImageFluidSrcWebp = 'categories___featuredImage___fluid___srcWebp', | |
| CategoriesFeaturedImageFluidSrcSetWebp = 'categories___featuredImage___fluid___srcSetWebp', | |
| CategoriesFeaturedImageFluidSizes = 'categories___featuredImage___fluid___sizes', | |
| CategoriesFeaturedImageSizesBase64 = 'categories___featuredImage___sizes___base64', | |
| CategoriesFeaturedImageSizesTracedSvg = 'categories___featuredImage___sizes___tracedSVG', | |
| CategoriesFeaturedImageSizesAspectRatio = 'categories___featuredImage___sizes___aspectRatio', | |
| CategoriesFeaturedImageSizesSrc = 'categories___featuredImage___sizes___src', | |
| CategoriesFeaturedImageSizesSrcSet = 'categories___featuredImage___sizes___srcSet', | |
| CategoriesFeaturedImageSizesSrcWebp = 'categories___featuredImage___sizes___srcWebp', | |
| CategoriesFeaturedImageSizesSrcSetWebp = 'categories___featuredImage___sizes___srcSetWebp', | |
| CategoriesFeaturedImageSizesSizes = 'categories___featuredImage___sizes___sizes', | |
| CategoriesFeaturedImageResizeBase64 = 'categories___featuredImage___resize___base64', | |
| CategoriesFeaturedImageResizeTracedSvg = 'categories___featuredImage___resize___tracedSVG', | |
| CategoriesFeaturedImageResizeSrc = 'categories___featuredImage___resize___src', | |
| CategoriesFeaturedImageResizeWidth = 'categories___featuredImage___resize___width', | |
| CategoriesFeaturedImageResizeHeight = 'categories___featuredImage___resize___height', | |
| CategoriesFeaturedImageResizeAspectRatio = 'categories___featuredImage___resize___aspectRatio', | |
| CategoriesBlogpost = 'categories___blogpost', | |
| CategoriesBlogpostId = 'categories___blogpost___id', | |
| CategoriesBlogpostParentId = 'categories___blogpost___parent___id', | |
| CategoriesBlogpostParentChildren = 'categories___blogpost___parent___children', | |
| CategoriesBlogpostChildren = 'categories___blogpost___children', | |
| CategoriesBlogpostChildrenId = 'categories___blogpost___children___id', | |
| CategoriesBlogpostChildrenChildren = 'categories___blogpost___children___children', | |
| CategoriesBlogpostInternalContent = 'categories___blogpost___internal___content', | |
| CategoriesBlogpostInternalContentDigest = 'categories___blogpost___internal___contentDigest', | |
| CategoriesBlogpostInternalDescription = 'categories___blogpost___internal___description', | |
| CategoriesBlogpostInternalFieldOwners = 'categories___blogpost___internal___fieldOwners', | |
| CategoriesBlogpostInternalIgnoreType = 'categories___blogpost___internal___ignoreType', | |
| CategoriesBlogpostInternalMediaType = 'categories___blogpost___internal___mediaType', | |
| CategoriesBlogpostInternalOwner = 'categories___blogpost___internal___owner', | |
| CategoriesBlogpostInternalType = 'categories___blogpost___internal___type', | |
| CategoriesBlogpostTitle = 'categories___blogpost___title', | |
| CategoriesBlogpostSlug = 'categories___blogpost___slug', | |
| CategoriesBlogpostPublishDate = 'categories___blogpost___publishDate', | |
| CategoriesBlogpostFeaturedImageId = 'categories___blogpost___featuredImage___id', | |
| CategoriesBlogpostFeaturedImageChildren = 'categories___blogpost___featuredImage___children', | |
| CategoriesBlogpostFeaturedImageContentfulId = 'categories___blogpost___featuredImage___contentful_id', | |
| CategoriesBlogpostFeaturedImageTitle = 'categories___blogpost___featuredImage___title', | |
| CategoriesBlogpostFeaturedImageDescription = 'categories___blogpost___featuredImage___description', | |
| CategoriesBlogpostFeaturedImageNodeLocale = 'categories___blogpost___featuredImage___node_locale', | |
| CategoriesBlogpostCategories = 'categories___blogpost___categories', | |
| CategoriesBlogpostCategoriesId = 'categories___blogpost___categories___id', | |
| CategoriesBlogpostCategoriesChildren = 'categories___blogpost___categories___children', | |
| CategoriesBlogpostCategoriesTitle = 'categories___blogpost___categories___title', | |
| CategoriesBlogpostCategoriesSlug = 'categories___blogpost___categories___slug', | |
| CategoriesBlogpostCategoriesBlogpost = 'categories___blogpost___categories___blogpost', | |
| CategoriesBlogpostCategoriesSpaceId = 'categories___blogpost___categories___spaceId', | |
| CategoriesBlogpostCategoriesContentfulId = 'categories___blogpost___categories___contentful_id', | |
| CategoriesBlogpostCategoriesCreatedAt = 'categories___blogpost___categories___createdAt', | |
| CategoriesBlogpostCategoriesUpdatedAt = 'categories___blogpost___categories___updatedAt', | |
| CategoriesBlogpostCategoriesNodeLocale = 'categories___blogpost___categories___node_locale', | |
| CategoriesBlogpostCategoriesMenu = 'categories___blogpost___categories___menu', | |
| CategoriesBlogpostCategoriesProduct = 'categories___blogpost___categories___product', | |
| CategoriesBlogpostPage = 'categories___blogpost___page', | |
| CategoriesBlogpostPageId = 'categories___blogpost___page___id', | |
| CategoriesBlogpostPageChildren = 'categories___blogpost___page___children', | |
| CategoriesBlogpostPageTitle = 'categories___blogpost___page___title', | |
| CategoriesBlogpostPageSlug = 'categories___blogpost___page___slug', | |
| CategoriesBlogpostPageIsHomePage = 'categories___blogpost___page___isHomePage', | |
| CategoriesBlogpostPageFeaturedPosts = 'categories___blogpost___page___featuredPosts', | |
| CategoriesBlogpostPageSpaceId = 'categories___blogpost___page___spaceId', | |
| CategoriesBlogpostPageContentfulId = 'categories___blogpost___page___contentful_id', | |
| CategoriesBlogpostPageCreatedAt = 'categories___blogpost___page___createdAt', | |
| CategoriesBlogpostPageUpdatedAt = 'categories___blogpost___page___updatedAt', | |
| CategoriesBlogpostPageNodeLocale = 'categories___blogpost___page___node_locale', | |
| CategoriesBlogpostBodyId = 'categories___blogpost___body___id', | |
| CategoriesBlogpostBodyChildren = 'categories___blogpost___body___children', | |
| CategoriesBlogpostBodyContent = 'categories___blogpost___body___content', | |
| CategoriesBlogpostBodyNodeType = 'categories___blogpost___body___nodeType', | |
| CategoriesBlogpostBodyBody = 'categories___blogpost___body___body', | |
| CategoriesBlogpostBodyJson = 'categories___blogpost___body___json', | |
| CategoriesBlogpostSpaceId = 'categories___blogpost___spaceId', | |
| CategoriesBlogpostContentfulId = 'categories___blogpost___contentful_id', | |
| CategoriesBlogpostCreatedAt = 'categories___blogpost___createdAt', | |
| CategoriesBlogpostUpdatedAt = 'categories___blogpost___updatedAt', | |
| CategoriesBlogpostNodeLocale = 'categories___blogpost___node_locale', | |
| CategoriesBlogpostAuthorId = 'categories___blogpost___author___id', | |
| CategoriesBlogpostAuthorChildren = 'categories___blogpost___author___children', | |
| CategoriesBlogpostAuthorName = 'categories___blogpost___author___name', | |
| CategoriesBlogpostAuthorTitle = 'categories___blogpost___author___title', | |
| CategoriesBlogpostAuthorCompany = 'categories___blogpost___author___company', | |
| CategoriesBlogpostAuthorEmail = 'categories___blogpost___author___email', | |
| CategoriesBlogpostAuthorPhone = 'categories___blogpost___author___phone', | |
| CategoriesBlogpostAuthorFacebook = 'categories___blogpost___author___facebook', | |
| CategoriesBlogpostAuthorTwitter = 'categories___blogpost___author___twitter', | |
| CategoriesBlogpostAuthorGithub = 'categories___blogpost___author___github', | |
| CategoriesBlogpostAuthorBlogpost = 'categories___blogpost___author___blogpost', | |
| CategoriesBlogpostAuthorSpaceId = 'categories___blogpost___author___spaceId', | |
| CategoriesBlogpostAuthorContentfulId = 'categories___blogpost___author___contentful_id', | |
| CategoriesBlogpostAuthorCreatedAt = 'categories___blogpost___author___createdAt', | |
| CategoriesBlogpostAuthorUpdatedAt = 'categories___blogpost___author___updatedAt', | |
| CategoriesBlogpostAuthorNodeLocale = 'categories___blogpost___author___node_locale', | |
| CategoriesBlogpostChildContentfulBlogPostBodyRichTextNodeId = 'categories___blogpost___childContentfulBlogPostBodyRichTextNode___id', | |
| CategoriesBlogpostChildContentfulBlogPostBodyRichTextNodeChildren = 'categories___blogpost___childContentfulBlogPostBodyRichTextNode___children', | |
| CategoriesBlogpostChildContentfulBlogPostBodyRichTextNodeContent = 'categories___blogpost___childContentfulBlogPostBodyRichTextNode___content', | |
| CategoriesBlogpostChildContentfulBlogPostBodyRichTextNodeNodeType = 'categories___blogpost___childContentfulBlogPostBodyRichTextNode___nodeType', | |
| CategoriesBlogpostChildContentfulBlogPostBodyRichTextNodeBody = 'categories___blogpost___childContentfulBlogPostBodyRichTextNode___body', | |
| CategoriesBlogpostChildContentfulBlogPostBodyRichTextNodeJson = 'categories___blogpost___childContentfulBlogPostBodyRichTextNode___json', | |
| CategoriesSpaceId = 'categories___spaceId', | |
| CategoriesContentfulId = 'categories___contentful_id', | |
| CategoriesCreatedAt = 'categories___createdAt', | |
| CategoriesUpdatedAt = 'categories___updatedAt', | |
| CategoriesNodeLocale = 'categories___node_locale', | |
| CategoriesMenu = 'categories___menu', | |
| CategoriesMenuId = 'categories___menu___id', | |
| CategoriesMenuParentId = 'categories___menu___parent___id', | |
| CategoriesMenuParentChildren = 'categories___menu___parent___children', | |
| CategoriesMenuChildren = 'categories___menu___children', | |
| CategoriesMenuChildrenId = 'categories___menu___children___id', | |
| CategoriesMenuChildrenChildren = 'categories___menu___children___children', | |
| CategoriesMenuInternalContent = 'categories___menu___internal___content', | |
| CategoriesMenuInternalContentDigest = 'categories___menu___internal___contentDigest', | |
| CategoriesMenuInternalDescription = 'categories___menu___internal___description', | |
| CategoriesMenuInternalFieldOwners = 'categories___menu___internal___fieldOwners', | |
| CategoriesMenuInternalIgnoreType = 'categories___menu___internal___ignoreType', | |
| CategoriesMenuInternalMediaType = 'categories___menu___internal___mediaType', | |
| CategoriesMenuInternalOwner = 'categories___menu___internal___owner', | |
| CategoriesMenuInternalType = 'categories___menu___internal___type', | |
| CategoriesMenuName = 'categories___menu___name', | |
| CategoriesMenuMenuItems = 'categories___menu___menuItems', | |
| CategoriesMenuMenuItemsId = 'categories___menu___menuItems___id', | |
| CategoriesMenuMenuItemsChildren = 'categories___menu___menuItems___children', | |
| CategoriesMenuMenuItemsTitle = 'categories___menu___menuItems___title', | |
| CategoriesMenuMenuItemsSlug = 'categories___menu___menuItems___slug', | |
| CategoriesMenuMenuItemsBlogpost = 'categories___menu___menuItems___blogpost', | |
| CategoriesMenuMenuItemsSpaceId = 'categories___menu___menuItems___spaceId', | |
| CategoriesMenuMenuItemsContentfulId = 'categories___menu___menuItems___contentful_id', | |
| CategoriesMenuMenuItemsCreatedAt = 'categories___menu___menuItems___createdAt', | |
| CategoriesMenuMenuItemsUpdatedAt = 'categories___menu___menuItems___updatedAt', | |
| CategoriesMenuMenuItemsNodeLocale = 'categories___menu___menuItems___node_locale', | |
| CategoriesMenuMenuItemsMenu = 'categories___menu___menuItems___menu', | |
| CategoriesMenuMenuItemsProduct = 'categories___menu___menuItems___product', | |
| CategoriesMenuSpaceId = 'categories___menu___spaceId', | |
| CategoriesMenuContentfulId = 'categories___menu___contentful_id', | |
| CategoriesMenuCreatedAt = 'categories___menu___createdAt', | |
| CategoriesMenuUpdatedAt = 'categories___menu___updatedAt', | |
| CategoriesMenuNodeLocale = 'categories___menu___node_locale', | |
| CategoriesProduct = 'categories___product', | |
| CategoriesProductId = 'categories___product___id', | |
| CategoriesProductParentId = 'categories___product___parent___id', | |
| CategoriesProductParentChildren = 'categories___product___parent___children', | |
| CategoriesProductChildren = 'categories___product___children', | |
| CategoriesProductChildrenId = 'categories___product___children___id', | |
| CategoriesProductChildrenChildren = 'categories___product___children___children', | |
| CategoriesProductInternalContent = 'categories___product___internal___content', | |
| CategoriesProductInternalContentDigest = 'categories___product___internal___contentDigest', | |
| CategoriesProductInternalDescription = 'categories___product___internal___description', | |
| CategoriesProductInternalFieldOwners = 'categories___product___internal___fieldOwners', | |
| CategoriesProductInternalIgnoreType = 'categories___product___internal___ignoreType', | |
| CategoriesProductInternalMediaType = 'categories___product___internal___mediaType', | |
| CategoriesProductInternalOwner = 'categories___product___internal___owner', | |
| CategoriesProductInternalType = 'categories___product___internal___type', | |
| CategoriesProductTitle = 'categories___product___title', | |
| CategoriesProductSlug = 'categories___product___slug', | |
| CategoriesProductPrice = 'categories___product___price', | |
| CategoriesProductFeaturedImageId = 'categories___product___featuredImage___id', | |
| CategoriesProductFeaturedImageChildren = 'categories___product___featuredImage___children', | |
| CategoriesProductFeaturedImageContentfulId = 'categories___product___featuredImage___contentful_id', | |
| CategoriesProductFeaturedImageTitle = 'categories___product___featuredImage___title', | |
| CategoriesProductFeaturedImageDescription = 'categories___product___featuredImage___description', | |
| CategoriesProductFeaturedImageNodeLocale = 'categories___product___featuredImage___node_locale', | |
| CategoriesProductCategories = 'categories___product___categories', | |
| CategoriesProductCategoriesId = 'categories___product___categories___id', | |
| CategoriesProductCategoriesChildren = 'categories___product___categories___children', | |
| CategoriesProductCategoriesTitle = 'categories___product___categories___title', | |
| CategoriesProductCategoriesSlug = 'categories___product___categories___slug', | |
| CategoriesProductCategoriesBlogpost = 'categories___product___categories___blogpost', | |
| CategoriesProductCategoriesSpaceId = 'categories___product___categories___spaceId', | |
| CategoriesProductCategoriesContentfulId = 'categories___product___categories___contentful_id', | |
| CategoriesProductCategoriesCreatedAt = 'categories___product___categories___createdAt', | |
| CategoriesProductCategoriesUpdatedAt = 'categories___product___categories___updatedAt', | |
| CategoriesProductCategoriesNodeLocale = 'categories___product___categories___node_locale', | |
| CategoriesProductCategoriesMenu = 'categories___product___categories___menu', | |
| CategoriesProductCategoriesProduct = 'categories___product___categories___product', | |
| CategoriesProductBodyId = 'categories___product___body___id', | |
| CategoriesProductBodyChildren = 'categories___product___body___children', | |
| CategoriesProductBodyContent = 'categories___product___body___content', | |
| CategoriesProductBodyNodeType = 'categories___product___body___nodeType', | |
| CategoriesProductBodyBody = 'categories___product___body___body', | |
| CategoriesProductBodyJson = 'categories___product___body___json', | |
| CategoriesProductSpaceId = 'categories___product___spaceId', | |
| CategoriesProductContentfulId = 'categories___product___contentful_id', | |
| CategoriesProductCreatedAt = 'categories___product___createdAt', | |
| CategoriesProductUpdatedAt = 'categories___product___updatedAt', | |
| CategoriesProductNodeLocale = 'categories___product___node_locale', | |
| CategoriesProductChildContentfulProductBodyRichTextNodeId = 'categories___product___childContentfulProductBodyRichTextNode___id', | |
| CategoriesProductChildContentfulProductBodyRichTextNodeChildren = 'categories___product___childContentfulProductBodyRichTextNode___children', | |
| CategoriesProductChildContentfulProductBodyRichTextNodeContent = 'categories___product___childContentfulProductBodyRichTextNode___content', | |
| CategoriesProductChildContentfulProductBodyRichTextNodeNodeType = 'categories___product___childContentfulProductBodyRichTextNode___nodeType', | |
| CategoriesProductChildContentfulProductBodyRichTextNodeBody = 'categories___product___childContentfulProductBodyRichTextNode___body', | |
| CategoriesProductChildContentfulProductBodyRichTextNodeJson = 'categories___product___childContentfulProductBodyRichTextNode___json', | |
| CategoriesBodyId = 'categories___body___id', | |
| CategoriesBodyParentId = 'categories___body___parent___id', | |
| CategoriesBodyParentChildren = 'categories___body___parent___children', | |
| CategoriesBodyChildren = 'categories___body___children', | |
| CategoriesBodyChildrenId = 'categories___body___children___id', | |
| CategoriesBodyChildrenChildren = 'categories___body___children___children', | |
| CategoriesBodyInternalContent = 'categories___body___internal___content', | |
| CategoriesBodyInternalContentDigest = 'categories___body___internal___contentDigest', | |
| CategoriesBodyInternalDescription = 'categories___body___internal___description', | |
| CategoriesBodyInternalFieldOwners = 'categories___body___internal___fieldOwners', | |
| CategoriesBodyInternalIgnoreType = 'categories___body___internal___ignoreType', | |
| CategoriesBodyInternalMediaType = 'categories___body___internal___mediaType', | |
| CategoriesBodyInternalOwner = 'categories___body___internal___owner', | |
| CategoriesBodyInternalType = 'categories___body___internal___type', | |
| CategoriesBodyContent = 'categories___body___content', | |
| CategoriesBodyContentContent = 'categories___body___content___content', | |
| CategoriesBodyContentNodeType = 'categories___body___content___nodeType', | |
| CategoriesBodyNodeType = 'categories___body___nodeType', | |
| CategoriesBodyBody = 'categories___body___body', | |
| CategoriesBodyJson = 'categories___body___json', | |
| CategoriesBodyChildContentfulRichTextId = 'categories___body___childContentfulRichText___id', | |
| CategoriesBodyChildContentfulRichTextChildren = 'categories___body___childContentfulRichText___children', | |
| CategoriesBodyChildContentfulRichTextHtml = 'categories___body___childContentfulRichText___html', | |
| CategoriesBodyChildContentfulRichTextTimeToRead = 'categories___body___childContentfulRichText___timeToRead', | |
| CategoriesChildContentfulCategoryBodyRichTextNodeId = 'categories___childContentfulCategoryBodyRichTextNode___id', | |
| CategoriesChildContentfulCategoryBodyRichTextNodeParentId = 'categories___childContentfulCategoryBodyRichTextNode___parent___id', | |
| CategoriesChildContentfulCategoryBodyRichTextNodeParentChildren = 'categories___childContentfulCategoryBodyRichTextNode___parent___children', | |
| CategoriesChildContentfulCategoryBodyRichTextNodeChildren = 'categories___childContentfulCategoryBodyRichTextNode___children', | |
| CategoriesChildContentfulCategoryBodyRichTextNodeChildrenId = 'categories___childContentfulCategoryBodyRichTextNode___children___id', | |
| CategoriesChildContentfulCategoryBodyRichTextNodeChildrenChildren = 'categories___childContentfulCategoryBodyRichTextNode___children___children', | |
| CategoriesChildContentfulCategoryBodyRichTextNodeInternalContent = 'categories___childContentfulCategoryBodyRichTextNode___internal___content', | |
| CategoriesChildContentfulCategoryBodyRichTextNodeInternalContentDigest = 'categories___childContentfulCategoryBodyRichTextNode___internal___contentDigest', | |
| CategoriesChildContentfulCategoryBodyRichTextNodeInternalDescription = 'categories___childContentfulCategoryBodyRichTextNode___internal___description', | |
| CategoriesChildContentfulCategoryBodyRichTextNodeInternalFieldOwners = 'categories___childContentfulCategoryBodyRichTextNode___internal___fieldOwners', | |
| CategoriesChildContentfulCategoryBodyRichTextNodeInternalIgnoreType = 'categories___childContentfulCategoryBodyRichTextNode___internal___ignoreType', | |
| CategoriesChildContentfulCategoryBodyRichTextNodeInternalMediaType = 'categories___childContentfulCategoryBodyRichTextNode___internal___mediaType', | |
| CategoriesChildContentfulCategoryBodyRichTextNodeInternalOwner = 'categories___childContentfulCategoryBodyRichTextNode___internal___owner', | |
| CategoriesChildContentfulCategoryBodyRichTextNodeInternalType = 'categories___childContentfulCategoryBodyRichTextNode___internal___type', | |
| CategoriesChildContentfulCategoryBodyRichTextNodeContent = 'categories___childContentfulCategoryBodyRichTextNode___content', | |
| CategoriesChildContentfulCategoryBodyRichTextNodeContentContent = 'categories___childContentfulCategoryBodyRichTextNode___content___content', | |
| CategoriesChildContentfulCategoryBodyRichTextNodeContentNodeType = 'categories___childContentfulCategoryBodyRichTextNode___content___nodeType', | |
| CategoriesChildContentfulCategoryBodyRichTextNodeNodeType = 'categories___childContentfulCategoryBodyRichTextNode___nodeType', | |
| CategoriesChildContentfulCategoryBodyRichTextNodeBody = 'categories___childContentfulCategoryBodyRichTextNode___body', | |
| CategoriesChildContentfulCategoryBodyRichTextNodeJson = 'categories___childContentfulCategoryBodyRichTextNode___json', | |
| CategoriesChildContentfulCategoryBodyRichTextNodeChildContentfulRichTextId = 'categories___childContentfulCategoryBodyRichTextNode___childContentfulRichText___id', | |
| CategoriesChildContentfulCategoryBodyRichTextNodeChildContentfulRichTextChildren = 'categories___childContentfulCategoryBodyRichTextNode___childContentfulRichText___children', | |
| CategoriesChildContentfulCategoryBodyRichTextNodeChildContentfulRichTextHtml = 'categories___childContentfulCategoryBodyRichTextNode___childContentfulRichText___html', | |
| CategoriesChildContentfulCategoryBodyRichTextNodeChildContentfulRichTextTimeToRead = 'categories___childContentfulCategoryBodyRichTextNode___childContentfulRichText___timeToRead', | |
| BodyId = 'body___id', | |
| BodyParentId = 'body___parent___id', | |
| BodyParentParentId = 'body___parent___parent___id', | |
| BodyParentParentChildren = 'body___parent___parent___children', | |
| BodyParentChildren = 'body___parent___children', | |
| BodyParentChildrenId = 'body___parent___children___id', | |
| BodyParentChildrenChildren = 'body___parent___children___children', | |
| BodyParentInternalContent = 'body___parent___internal___content', | |
| BodyParentInternalContentDigest = 'body___parent___internal___contentDigest', | |
| BodyParentInternalDescription = 'body___parent___internal___description', | |
| BodyParentInternalFieldOwners = 'body___parent___internal___fieldOwners', | |
| BodyParentInternalIgnoreType = 'body___parent___internal___ignoreType', | |
| BodyParentInternalMediaType = 'body___parent___internal___mediaType', | |
| BodyParentInternalOwner = 'body___parent___internal___owner', | |
| BodyParentInternalType = 'body___parent___internal___type', | |
| BodyChildren = 'body___children', | |
| BodyChildrenId = 'body___children___id', | |
| BodyChildrenParentId = 'body___children___parent___id', | |
| BodyChildrenParentChildren = 'body___children___parent___children', | |
| BodyChildrenChildren = 'body___children___children', | |
| BodyChildrenChildrenId = 'body___children___children___id', | |
| BodyChildrenChildrenChildren = 'body___children___children___children', | |
| BodyChildrenInternalContent = 'body___children___internal___content', | |
| BodyChildrenInternalContentDigest = 'body___children___internal___contentDigest', | |
| BodyChildrenInternalDescription = 'body___children___internal___description', | |
| BodyChildrenInternalFieldOwners = 'body___children___internal___fieldOwners', | |
| BodyChildrenInternalIgnoreType = 'body___children___internal___ignoreType', | |
| BodyChildrenInternalMediaType = 'body___children___internal___mediaType', | |
| BodyChildrenInternalOwner = 'body___children___internal___owner', | |
| BodyChildrenInternalType = 'body___children___internal___type', | |
| BodyInternalContent = 'body___internal___content', | |
| BodyInternalContentDigest = 'body___internal___contentDigest', | |
| BodyInternalDescription = 'body___internal___description', | |
| BodyInternalFieldOwners = 'body___internal___fieldOwners', | |
| BodyInternalIgnoreType = 'body___internal___ignoreType', | |
| BodyInternalMediaType = 'body___internal___mediaType', | |
| BodyInternalOwner = 'body___internal___owner', | |
| BodyInternalType = 'body___internal___type', | |
| BodyContent = 'body___content', | |
| BodyContentContent = 'body___content___content', | |
| BodyContentContentValue = 'body___content___content___value', | |
| BodyContentContentNodeType = 'body___content___content___nodeType', | |
| BodyContentNodeType = 'body___content___nodeType', | |
| BodyNodeType = 'body___nodeType', | |
| BodyBody = 'body___body', | |
| BodyJson = 'body___json', | |
| BodyChildContentfulRichTextId = 'body___childContentfulRichText___id', | |
| BodyChildContentfulRichTextParentId = 'body___childContentfulRichText___parent___id', | |
| BodyChildContentfulRichTextParentChildren = 'body___childContentfulRichText___parent___children', | |
| BodyChildContentfulRichTextChildren = 'body___childContentfulRichText___children', | |
| BodyChildContentfulRichTextChildrenId = 'body___childContentfulRichText___children___id', | |
| BodyChildContentfulRichTextChildrenChildren = 'body___childContentfulRichText___children___children', | |
| BodyChildContentfulRichTextInternalContent = 'body___childContentfulRichText___internal___content', | |
| BodyChildContentfulRichTextInternalContentDigest = 'body___childContentfulRichText___internal___contentDigest', | |
| BodyChildContentfulRichTextInternalDescription = 'body___childContentfulRichText___internal___description', | |
| BodyChildContentfulRichTextInternalFieldOwners = 'body___childContentfulRichText___internal___fieldOwners', | |
| BodyChildContentfulRichTextInternalIgnoreType = 'body___childContentfulRichText___internal___ignoreType', | |
| BodyChildContentfulRichTextInternalMediaType = 'body___childContentfulRichText___internal___mediaType', | |
| BodyChildContentfulRichTextInternalOwner = 'body___childContentfulRichText___internal___owner', | |
| BodyChildContentfulRichTextInternalType = 'body___childContentfulRichText___internal___type', | |
| BodyChildContentfulRichTextHtml = 'body___childContentfulRichText___html', | |
| BodyChildContentfulRichTextTimeToRead = 'body___childContentfulRichText___timeToRead', | |
| SpaceId = 'spaceId', | |
| ContentfulId = 'contentful_id', | |
| CreatedAt = 'createdAt', | |
| UpdatedAt = 'updatedAt', | |
| NodeLocale = 'node_locale', | |
| ChildContentfulProductBodyRichTextNodeId = 'childContentfulProductBodyRichTextNode___id', | |
| ChildContentfulProductBodyRichTextNodeParentId = 'childContentfulProductBodyRichTextNode___parent___id', | |
| ChildContentfulProductBodyRichTextNodeParentParentId = 'childContentfulProductBodyRichTextNode___parent___parent___id', | |
| ChildContentfulProductBodyRichTextNodeParentParentChildren = 'childContentfulProductBodyRichTextNode___parent___parent___children', | |
| ChildContentfulProductBodyRichTextNodeParentChildren = 'childContentfulProductBodyRichTextNode___parent___children', | |
| ChildContentfulProductBodyRichTextNodeParentChildrenId = 'childContentfulProductBodyRichTextNode___parent___children___id', | |
| ChildContentfulProductBodyRichTextNodeParentChildrenChildren = 'childContentfulProductBodyRichTextNode___parent___children___children', | |
| ChildContentfulProductBodyRichTextNodeParentInternalContent = 'childContentfulProductBodyRichTextNode___parent___internal___content', | |
| ChildContentfulProductBodyRichTextNodeParentInternalContentDigest = 'childContentfulProductBodyRichTextNode___parent___internal___contentDigest', | |
| ChildContentfulProductBodyRichTextNodeParentInternalDescription = 'childContentfulProductBodyRichTextNode___parent___internal___description', | |
| ChildContentfulProductBodyRichTextNodeParentInternalFieldOwners = 'childContentfulProductBodyRichTextNode___parent___internal___fieldOwners', | |
| ChildContentfulProductBodyRichTextNodeParentInternalIgnoreType = 'childContentfulProductBodyRichTextNode___parent___internal___ignoreType', | |
| ChildContentfulProductBodyRichTextNodeParentInternalMediaType = 'childContentfulProductBodyRichTextNode___parent___internal___mediaType', | |
| ChildContentfulProductBodyRichTextNodeParentInternalOwner = 'childContentfulProductBodyRichTextNode___parent___internal___owner', | |
| ChildContentfulProductBodyRichTextNodeParentInternalType = 'childContentfulProductBodyRichTextNode___parent___internal___type', | |
| ChildContentfulProductBodyRichTextNodeChildren = 'childContentfulProductBodyRichTextNode___children', | |
| ChildContentfulProductBodyRichTextNodeChildrenId = 'childContentfulProductBodyRichTextNode___children___id', | |
| ChildContentfulProductBodyRichTextNodeChildrenParentId = 'childContentfulProductBodyRichTextNode___children___parent___id', | |
| ChildContentfulProductBodyRichTextNodeChildrenParentChildren = 'childContentfulProductBodyRichTextNode___children___parent___children', | |
| ChildContentfulProductBodyRichTextNodeChildrenChildren = 'childContentfulProductBodyRichTextNode___children___children', | |
| ChildContentfulProductBodyRichTextNodeChildrenChildrenId = 'childContentfulProductBodyRichTextNode___children___children___id', | |
| ChildContentfulProductBodyRichTextNodeChildrenChildrenChildren = 'childContentfulProductBodyRichTextNode___children___children___children', | |
| ChildContentfulProductBodyRichTextNodeChildrenInternalContent = 'childContentfulProductBodyRichTextNode___children___internal___content', | |
| ChildContentfulProductBodyRichTextNodeChildrenInternalContentDigest = 'childContentfulProductBodyRichTextNode___children___internal___contentDigest', | |
| ChildContentfulProductBodyRichTextNodeChildrenInternalDescription = 'childContentfulProductBodyRichTextNode___children___internal___description', | |
| ChildContentfulProductBodyRichTextNodeChildrenInternalFieldOwners = 'childContentfulProductBodyRichTextNode___children___internal___fieldOwners', | |
| ChildContentfulProductBodyRichTextNodeChildrenInternalIgnoreType = 'childContentfulProductBodyRichTextNode___children___internal___ignoreType', | |
| ChildContentfulProductBodyRichTextNodeChildrenInternalMediaType = 'childContentfulProductBodyRichTextNode___children___internal___mediaType', | |
| ChildContentfulProductBodyRichTextNodeChildrenInternalOwner = 'childContentfulProductBodyRichTextNode___children___internal___owner', | |
| ChildContentfulProductBodyRichTextNodeChildrenInternalType = 'childContentfulProductBodyRichTextNode___children___internal___type', | |
| ChildContentfulProductBodyRichTextNodeInternalContent = 'childContentfulProductBodyRichTextNode___internal___content', | |
| ChildContentfulProductBodyRichTextNodeInternalContentDigest = 'childContentfulProductBodyRichTextNode___internal___contentDigest', | |
| ChildContentfulProductBodyRichTextNodeInternalDescription = 'childContentfulProductBodyRichTextNode___internal___description', | |
| ChildContentfulProductBodyRichTextNodeInternalFieldOwners = 'childContentfulProductBodyRichTextNode___internal___fieldOwners', | |
| ChildContentfulProductBodyRichTextNodeInternalIgnoreType = 'childContentfulProductBodyRichTextNode___internal___ignoreType', | |
| ChildContentfulProductBodyRichTextNodeInternalMediaType = 'childContentfulProductBodyRichTextNode___internal___mediaType', | |
| ChildContentfulProductBodyRichTextNodeInternalOwner = 'childContentfulProductBodyRichTextNode___internal___owner', | |
| ChildContentfulProductBodyRichTextNodeInternalType = 'childContentfulProductBodyRichTextNode___internal___type', | |
| ChildContentfulProductBodyRichTextNodeContent = 'childContentfulProductBodyRichTextNode___content', | |
| ChildContentfulProductBodyRichTextNodeContentContent = 'childContentfulProductBodyRichTextNode___content___content', | |
| ChildContentfulProductBodyRichTextNodeContentContentValue = 'childContentfulProductBodyRichTextNode___content___content___value', | |
| ChildContentfulProductBodyRichTextNodeContentContentNodeType = 'childContentfulProductBodyRichTextNode___content___content___nodeType', | |
| ChildContentfulProductBodyRichTextNodeContentNodeType = 'childContentfulProductBodyRichTextNode___content___nodeType', | |
| ChildContentfulProductBodyRichTextNodeNodeType = 'childContentfulProductBodyRichTextNode___nodeType', | |
| ChildContentfulProductBodyRichTextNodeBody = 'childContentfulProductBodyRichTextNode___body', | |
| ChildContentfulProductBodyRichTextNodeJson = 'childContentfulProductBodyRichTextNode___json', | |
| ChildContentfulProductBodyRichTextNodeChildContentfulRichTextId = 'childContentfulProductBodyRichTextNode___childContentfulRichText___id', | |
| ChildContentfulProductBodyRichTextNodeChildContentfulRichTextParentId = 'childContentfulProductBodyRichTextNode___childContentfulRichText___parent___id', | |
| ChildContentfulProductBodyRichTextNodeChildContentfulRichTextParentChildren = 'childContentfulProductBodyRichTextNode___childContentfulRichText___parent___children', | |
| ChildContentfulProductBodyRichTextNodeChildContentfulRichTextChildren = 'childContentfulProductBodyRichTextNode___childContentfulRichText___children', | |
| ChildContentfulProductBodyRichTextNodeChildContentfulRichTextChildrenId = 'childContentfulProductBodyRichTextNode___childContentfulRichText___children___id', | |
| ChildContentfulProductBodyRichTextNodeChildContentfulRichTextChildrenChildren = 'childContentfulProductBodyRichTextNode___childContentfulRichText___children___children', | |
| ChildContentfulProductBodyRichTextNodeChildContentfulRichTextInternalContent = 'childContentfulProductBodyRichTextNode___childContentfulRichText___internal___content', | |
| ChildContentfulProductBodyRichTextNodeChildContentfulRichTextInternalContentDigest = 'childContentfulProductBodyRichTextNode___childContentfulRichText___internal___contentDigest', | |
| ChildContentfulProductBodyRichTextNodeChildContentfulRichTextInternalDescription = 'childContentfulProductBodyRichTextNode___childContentfulRichText___internal___description', | |
| ChildContentfulProductBodyRichTextNodeChildContentfulRichTextInternalFieldOwners = 'childContentfulProductBodyRichTextNode___childContentfulRichText___internal___fieldOwners', | |
| ChildContentfulProductBodyRichTextNodeChildContentfulRichTextInternalIgnoreType = 'childContentfulProductBodyRichTextNode___childContentfulRichText___internal___ignoreType', | |
| ChildContentfulProductBodyRichTextNodeChildContentfulRichTextInternalMediaType = 'childContentfulProductBodyRichTextNode___childContentfulRichText___internal___mediaType', | |
| ChildContentfulProductBodyRichTextNodeChildContentfulRichTextInternalOwner = 'childContentfulProductBodyRichTextNode___childContentfulRichText___internal___owner', | |
| ChildContentfulProductBodyRichTextNodeChildContentfulRichTextInternalType = 'childContentfulProductBodyRichTextNode___childContentfulRichText___internal___type', | |
| ChildContentfulProductBodyRichTextNodeChildContentfulRichTextHtml = 'childContentfulProductBodyRichTextNode___childContentfulRichText___html', | |
| ChildContentfulProductBodyRichTextNodeChildContentfulRichTextTimeToRead = 'childContentfulProductBodyRichTextNode___childContentfulRichText___timeToRead' | |
| } | |
| export type ContentfulProductFilterInput = { | |
| id?: Maybe<StringQueryOperatorInput>, | |
| parent?: Maybe<NodeFilterInput>, | |
| children?: Maybe<NodeFilterListInput>, | |
| internal?: Maybe<InternalFilterInput>, | |
| title?: Maybe<StringQueryOperatorInput>, | |
| slug?: Maybe<StringQueryOperatorInput>, | |
| price?: Maybe<FloatQueryOperatorInput>, | |
| featuredImage?: Maybe<ContentfulAssetFilterInput>, | |
| categories?: Maybe<ContentfulCategoryFilterListInput>, | |
| body?: Maybe<ContentfulProductBodyRichTextNodeFilterInput>, | |
| spaceId?: Maybe<StringQueryOperatorInput>, | |
| contentful_id?: Maybe<StringQueryOperatorInput>, | |
| createdAt?: Maybe<DateQueryOperatorInput>, | |
| updatedAt?: Maybe<DateQueryOperatorInput>, | |
| node_locale?: Maybe<StringQueryOperatorInput>, | |
| childContentfulProductBodyRichTextNode?: Maybe<ContentfulProductBodyRichTextNodeFilterInput>, | |
| }; | |
| export type ContentfulProductFilterListInput = { | |
| elemMatch?: Maybe<ContentfulProductFilterInput>, | |
| }; | |
| export type ContentfulProductGroupConnection = { | |
| __typename?: 'ContentfulProductGroupConnection', | |
| totalCount: Scalars['Int'], | |
| edges: Array<ContentfulProductEdge>, | |
| nodes: Array<ContentfulProduct>, | |
| pageInfo: PageInfo, | |
| field: Scalars['String'], | |
| fieldValue?: Maybe<Scalars['String']>, | |
| }; | |
| export type ContentfulProductSortInput = { | |
| fields?: Maybe<Array<Maybe<ContentfulProductFieldsEnum>>>, | |
| order?: Maybe<Array<Maybe<SortOrderEnum>>>, | |
| }; | |
| export type ContentfulResize = { | |
| __typename?: 'ContentfulResize', | |
| base64?: Maybe<Scalars['String']>, | |
| tracedSVG?: Maybe<Scalars['String']>, | |
| src?: Maybe<Scalars['String']>, | |
| width?: Maybe<Scalars['Int']>, | |
| height?: Maybe<Scalars['Int']>, | |
| aspectRatio?: Maybe<Scalars['Float']>, | |
| }; | |
| export type ContentfulResizeFilterInput = { | |
| base64?: Maybe<StringQueryOperatorInput>, | |
| tracedSVG?: Maybe<StringQueryOperatorInput>, | |
| src?: Maybe<StringQueryOperatorInput>, | |
| width?: Maybe<IntQueryOperatorInput>, | |
| height?: Maybe<IntQueryOperatorInput>, | |
| aspectRatio?: Maybe<FloatQueryOperatorInput>, | |
| }; | |
| export type ContentfulResolutions = { | |
| __typename?: 'ContentfulResolutions', | |
| base64?: Maybe<Scalars['String']>, | |
| tracedSVG?: Maybe<Scalars['String']>, | |
| aspectRatio?: Maybe<Scalars['Float']>, | |
| width?: Maybe<Scalars['Float']>, | |
| height?: Maybe<Scalars['Float']>, | |
| src?: Maybe<Scalars['String']>, | |
| srcSet?: Maybe<Scalars['String']>, | |
| srcWebp?: Maybe<Scalars['String']>, | |
| srcSetWebp?: Maybe<Scalars['String']>, | |
| }; | |
| export type ContentfulResolutionsFilterInput = { | |
| base64?: Maybe<StringQueryOperatorInput>, | |
| tracedSVG?: Maybe<StringQueryOperatorInput>, | |
| aspectRatio?: Maybe<FloatQueryOperatorInput>, | |
| width?: Maybe<FloatQueryOperatorInput>, | |
| height?: Maybe<FloatQueryOperatorInput>, | |
| src?: Maybe<StringQueryOperatorInput>, | |
| srcSet?: Maybe<StringQueryOperatorInput>, | |
| srcWebp?: Maybe<StringQueryOperatorInput>, | |
| srcSetWebp?: Maybe<StringQueryOperatorInput>, | |
| }; | |
| export type ContentfulRichText = Node & { | |
| __typename?: 'ContentfulRichText', | |
| id: Scalars['ID'], | |
| parent?: Maybe<Node>, | |
| children: Array<Node>, | |
| internal: Internal, | |
| html?: Maybe<Scalars['String']>, | |
| timeToRead?: Maybe<Scalars['Int']>, | |
| }; | |
| export type ContentfulRichTextConnection = { | |
| __typename?: 'ContentfulRichTextConnection', | |
| totalCount: Scalars['Int'], | |
| edges: Array<ContentfulRichTextEdge>, | |
| nodes: Array<ContentfulRichText>, | |
| pageInfo: PageInfo, | |
| distinct: Array<Scalars['String']>, | |
| group: Array<ContentfulRichTextGroupConnection>, | |
| }; | |
| export type ContentfulRichTextConnectionDistinctArgs = { | |
| field: ContentfulRichTextFieldsEnum | |
| }; | |
| export type ContentfulRichTextConnectionGroupArgs = { | |
| skip?: Maybe<Scalars['Int']>, | |
| limit?: Maybe<Scalars['Int']>, | |
| field: ContentfulRichTextFieldsEnum | |
| }; | |
| export type ContentfulRichTextEdge = { | |
| __typename?: 'ContentfulRichTextEdge', | |
| next?: Maybe<ContentfulRichText>, | |
| node: ContentfulRichText, | |
| previous?: Maybe<ContentfulRichText>, | |
| }; | |
| export enum ContentfulRichTextFieldsEnum { | |
| Id = 'id', | |
| ParentId = 'parent___id', | |
| ParentParentId = 'parent___parent___id', | |
| ParentParentParentId = 'parent___parent___parent___id', | |
| ParentParentParentChildren = 'parent___parent___parent___children', | |
| ParentParentChildren = 'parent___parent___children', | |
| ParentParentChildrenId = 'parent___parent___children___id', | |
| ParentParentChildrenChildren = 'parent___parent___children___children', | |
| ParentParentInternalContent = 'parent___parent___internal___content', | |
| ParentParentInternalContentDigest = 'parent___parent___internal___contentDigest', | |
| ParentParentInternalDescription = 'parent___parent___internal___description', | |
| ParentParentInternalFieldOwners = 'parent___parent___internal___fieldOwners', | |
| ParentParentInternalIgnoreType = 'parent___parent___internal___ignoreType', | |
| ParentParentInternalMediaType = 'parent___parent___internal___mediaType', | |
| ParentParentInternalOwner = 'parent___parent___internal___owner', | |
| ParentParentInternalType = 'parent___parent___internal___type', | |
| ParentChildren = 'parent___children', | |
| ParentChildrenId = 'parent___children___id', | |
| ParentChildrenParentId = 'parent___children___parent___id', | |
| ParentChildrenParentChildren = 'parent___children___parent___children', | |
| ParentChildrenChildren = 'parent___children___children', | |
| ParentChildrenChildrenId = 'parent___children___children___id', | |
| ParentChildrenChildrenChildren = 'parent___children___children___children', | |
| ParentChildrenInternalContent = 'parent___children___internal___content', | |
| ParentChildrenInternalContentDigest = 'parent___children___internal___contentDigest', | |
| ParentChildrenInternalDescription = 'parent___children___internal___description', | |
| ParentChildrenInternalFieldOwners = 'parent___children___internal___fieldOwners', | |
| ParentChildrenInternalIgnoreType = 'parent___children___internal___ignoreType', | |
| ParentChildrenInternalMediaType = 'parent___children___internal___mediaType', | |
| ParentChildrenInternalOwner = 'parent___children___internal___owner', | |
| ParentChildrenInternalType = 'parent___children___internal___type', | |
| ParentInternalContent = 'parent___internal___content', | |
| ParentInternalContentDigest = 'parent___internal___contentDigest', | |
| ParentInternalDescription = 'parent___internal___description', | |
| ParentInternalFieldOwners = 'parent___internal___fieldOwners', | |
| ParentInternalIgnoreType = 'parent___internal___ignoreType', | |
| ParentInternalMediaType = 'parent___internal___mediaType', | |
| ParentInternalOwner = 'parent___internal___owner', | |
| ParentInternalType = 'parent___internal___type', | |
| Children = 'children', | |
| ChildrenId = 'children___id', | |
| ChildrenParentId = 'children___parent___id', | |
| ChildrenParentParentId = 'children___parent___parent___id', | |
| ChildrenParentParentChildren = 'children___parent___parent___children', | |
| ChildrenParentChildren = 'children___parent___children', | |
| ChildrenParentChildrenId = 'children___parent___children___id', | |
| ChildrenParentChildrenChildren = 'children___parent___children___children', | |
| ChildrenParentInternalContent = 'children___parent___internal___content', | |
| ChildrenParentInternalContentDigest = 'children___parent___internal___contentDigest', | |
| ChildrenParentInternalDescription = 'children___parent___internal___description', | |
| ChildrenParentInternalFieldOwners = 'children___parent___internal___fieldOwners', | |
| ChildrenParentInternalIgnoreType = 'children___parent___internal___ignoreType', | |
| ChildrenParentInternalMediaType = 'children___parent___internal___mediaType', | |
| ChildrenParentInternalOwner = 'children___parent___internal___owner', | |
| ChildrenParentInternalType = 'children___parent___internal___type', | |
| ChildrenChildren = 'children___children', | |
| ChildrenChildrenId = 'children___children___id', | |
| ChildrenChildrenParentId = 'children___children___parent___id', | |
| ChildrenChildrenParentChildren = 'children___children___parent___children', | |
| ChildrenChildrenChildren = 'children___children___children', | |
| ChildrenChildrenChildrenId = 'children___children___children___id', | |
| ChildrenChildrenChildrenChildren = 'children___children___children___children', | |
| ChildrenChildrenInternalContent = 'children___children___internal___content', | |
| ChildrenChildrenInternalContentDigest = 'children___children___internal___contentDigest', | |
| ChildrenChildrenInternalDescription = 'children___children___internal___description', | |
| ChildrenChildrenInternalFieldOwners = 'children___children___internal___fieldOwners', | |
| ChildrenChildrenInternalIgnoreType = 'children___children___internal___ignoreType', | |
| ChildrenChildrenInternalMediaType = 'children___children___internal___mediaType', | |
| ChildrenChildrenInternalOwner = 'children___children___internal___owner', | |
| ChildrenChildrenInternalType = 'children___children___internal___type', | |
| ChildrenInternalContent = 'children___internal___content', | |
| ChildrenInternalContentDigest = 'children___internal___contentDigest', | |
| ChildrenInternalDescription = 'children___internal___description', | |
| ChildrenInternalFieldOwners = 'children___internal___fieldOwners', | |
| ChildrenInternalIgnoreType = 'children___internal___ignoreType', | |
| ChildrenInternalMediaType = 'children___internal___mediaType', | |
| ChildrenInternalOwner = 'children___internal___owner', | |
| ChildrenInternalType = 'children___internal___type', | |
| InternalContent = 'internal___content', | |
| InternalContentDigest = 'internal___contentDigest', | |
| InternalDescription = 'internal___description', | |
| InternalFieldOwners = 'internal___fieldOwners', | |
| InternalIgnoreType = 'internal___ignoreType', | |
| InternalMediaType = 'internal___mediaType', | |
| InternalOwner = 'internal___owner', | |
| InternalType = 'internal___type', | |
| Html = 'html', | |
| TimeToRead = 'timeToRead' | |
| } | |
| export type ContentfulRichTextFilterInput = { | |
| id?: Maybe<StringQueryOperatorInput>, | |
| parent?: Maybe<NodeFilterInput>, | |
| children?: Maybe<NodeFilterListInput>, | |
| internal?: Maybe<InternalFilterInput>, | |
| html?: Maybe<StringQueryOperatorInput>, | |
| timeToRead?: Maybe<IntQueryOperatorInput>, | |
| }; | |
| export type ContentfulRichTextGroupConnection = { | |
| __typename?: 'ContentfulRichTextGroupConnection', | |
| totalCount: Scalars['Int'], | |
| edges: Array<ContentfulRichTextEdge>, | |
| nodes: Array<ContentfulRichText>, | |
| pageInfo: PageInfo, | |
| field: Scalars['String'], | |
| fieldValue?: Maybe<Scalars['String']>, | |
| }; | |
| export type ContentfulRichTextSortInput = { | |
| fields?: Maybe<Array<Maybe<ContentfulRichTextFieldsEnum>>>, | |
| order?: Maybe<Array<Maybe<SortOrderEnum>>>, | |
| }; | |
| export type ContentfulSizes = { | |
| __typename?: 'ContentfulSizes', | |
| base64?: Maybe<Scalars['String']>, | |
| tracedSVG?: Maybe<Scalars['String']>, | |
| aspectRatio?: Maybe<Scalars['Float']>, | |
| src?: Maybe<Scalars['String']>, | |
| srcSet?: Maybe<Scalars['String']>, | |
| srcWebp?: Maybe<Scalars['String']>, | |
| srcSetWebp?: Maybe<Scalars['String']>, | |
| sizes?: Maybe<Scalars['String']>, | |
| }; | |
| export type ContentfulSizesFilterInput = { | |
| base64?: Maybe<StringQueryOperatorInput>, | |
| tracedSVG?: Maybe<StringQueryOperatorInput>, | |
| aspectRatio?: Maybe<FloatQueryOperatorInput>, | |
| src?: Maybe<StringQueryOperatorInput>, | |
| srcSet?: Maybe<StringQueryOperatorInput>, | |
| srcWebp?: Maybe<StringQueryOperatorInput>, | |
| srcSetWebp?: Maybe<StringQueryOperatorInput>, | |
| sizes?: Maybe<StringQueryOperatorInput>, | |
| }; | |
| export type DateQueryOperatorInput = { | |
| eq?: Maybe<Scalars['Date']>, | |
| ne?: Maybe<Scalars['Date']>, | |
| gt?: Maybe<Scalars['Date']>, | |
| gte?: Maybe<Scalars['Date']>, | |
| lt?: Maybe<Scalars['Date']>, | |
| lte?: Maybe<Scalars['Date']>, | |
| in?: Maybe<Array<Maybe<Scalars['Date']>>>, | |
| nin?: Maybe<Array<Maybe<Scalars['Date']>>>, | |
| }; | |
| export type DuotoneGradient = { | |
| highlight: Scalars['String'], | |
| shadow: Scalars['String'], | |
| opacity?: Maybe<Scalars['Int']>, | |
| }; | |
| export type FloatQueryOperatorInput = { | |
| eq?: Maybe<Scalars['Float']>, | |
| ne?: Maybe<Scalars['Float']>, | |
| gt?: Maybe<Scalars['Float']>, | |
| gte?: Maybe<Scalars['Float']>, | |
| lt?: Maybe<Scalars['Float']>, | |
| lte?: Maybe<Scalars['Float']>, | |
| in?: Maybe<Array<Maybe<Scalars['Float']>>>, | |
| nin?: Maybe<Array<Maybe<Scalars['Float']>>>, | |
| }; | |
| export enum ImageCropFocus { | |
| Center = 'CENTER', | |
| North = 'NORTH', | |
| Northeast = 'NORTHEAST', | |
| East = 'EAST', | |
| Southeast = 'SOUTHEAST', | |
| South = 'SOUTH', | |
| Southwest = 'SOUTHWEST', | |
| West = 'WEST', | |
| Northwest = 'NORTHWEST', | |
| Entropy = 'ENTROPY', | |
| Attention = 'ATTENTION' | |
| } | |
| export enum ImageFit { | |
| Cover = 'COVER', | |
| Contain = 'CONTAIN', | |
| Fill = 'FILL' | |
| } | |
| export enum ImageFormat { | |
| NoChange = 'NO_CHANGE', | |
| Jpg = 'JPG', | |
| Png = 'PNG', | |
| Webp = 'WEBP' | |
| } | |
| export enum ImageResizingBehavior { | |
| NoChange = 'NO_CHANGE', | |
| /** Same as the default resizing, but adds padding so that the generated image has the specified dimensions. */ | |
| Pad = 'PAD', | |
| /** Crop a part of the original image to match the specified size. */ | |
| Crop = 'CROP', | |
| /** | |
| * Crop the image to the specified dimensions, if the original image is smaller | |
| * than these dimensions, then the image will be upscaled. | |
| **/ | |
| Fill = 'FILL', | |
| /** When used in association with the f parameter below, creates a thumbnail from the image based on a focus area. */ | |
| Thumb = 'THUMB', | |
| /** Scale the image regardless of the original aspect ratio. */ | |
| Scale = 'SCALE' | |
| } | |
| export type ImageSharp = Node & { | |
| __typename?: 'ImageSharp', | |
| id: Scalars['ID'], | |
| fixed?: Maybe<ImageSharpFixed>, | |
| resolutions?: Maybe<ImageSharpResolutions>, | |
| fluid?: Maybe<ImageSharpFluid>, | |
| sizes?: Maybe<ImageSharpSizes>, | |
| original?: Maybe<ImageSharpOriginal>, | |
| resize?: Maybe<ImageSharpResize>, | |
| parent?: Maybe<Node>, | |
| children: Array<Node>, | |
| internal: Internal, | |
| }; | |
| export type ImageSharpFixedArgs = { | |
| width?: Maybe<Scalars['Int']>, | |
| height?: Maybe<Scalars['Int']>, | |
| base64Width?: Maybe<Scalars['Int']>, | |
| jpegProgressive?: Maybe<Scalars['Boolean']>, | |
| pngCompressionSpeed?: Maybe<Scalars['Int']>, | |
| grayscale?: Maybe<Scalars['Boolean']>, | |
| duotone?: Maybe<DuotoneGradient>, | |
| traceSVG?: Maybe<Potrace>, | |
| quality?: Maybe<Scalars['Int']>, | |
| toFormat?: Maybe<ImageFormat>, | |
| toFormatBase64?: Maybe<ImageFormat>, | |
| cropFocus?: Maybe<ImageCropFocus>, | |
| fit?: Maybe<ImageFit>, | |
| background?: Maybe<Scalars['String']>, | |
| rotate?: Maybe<Scalars['Int']>, | |
| trim?: Maybe<Scalars['Float']> | |
| }; | |
| export type ImageSharpResolutionsArgs = { | |
| width?: Maybe<Scalars['Int']>, | |
| height?: Maybe<Scalars['Int']>, | |
| base64Width?: Maybe<Scalars['Int']>, | |
| jpegProgressive?: Maybe<Scalars['Boolean']>, | |
| pngCompressionSpeed?: Maybe<Scalars['Int']>, | |
| grayscale?: Maybe<Scalars['Boolean']>, | |
| duotone?: Maybe<DuotoneGradient>, | |
| traceSVG?: Maybe<Potrace>, | |
| quality?: Maybe<Scalars['Int']>, | |
| toFormat?: Maybe<ImageFormat>, | |
| toFormatBase64?: Maybe<ImageFormat>, | |
| cropFocus?: Maybe<ImageCropFocus>, | |
| fit?: Maybe<ImageFit>, | |
| background?: Maybe<Scalars['String']>, | |
| rotate?: Maybe<Scalars['Int']>, | |
| trim?: Maybe<Scalars['Float']> | |
| }; | |
| export type ImageSharpFluidArgs = { | |
| maxWidth?: Maybe<Scalars['Int']>, | |
| maxHeight?: Maybe<Scalars['Int']>, | |
| base64Width?: Maybe<Scalars['Int']>, | |
| grayscale?: Maybe<Scalars['Boolean']>, | |
| jpegProgressive?: Maybe<Scalars['Boolean']>, | |
| pngCompressionSpeed?: Maybe<Scalars['Int']>, | |
| duotone?: Maybe<DuotoneGradient>, | |
| traceSVG?: Maybe<Potrace>, | |
| quality?: Maybe<Scalars['Int']>, | |
| toFormat?: Maybe<ImageFormat>, | |
| toFormatBase64?: Maybe<ImageFormat>, | |
| cropFocus?: Maybe<ImageCropFocus>, | |
| fit?: Maybe<ImageFit>, | |
| background?: Maybe<Scalars['String']>, | |
| rotate?: Maybe<Scalars['Int']>, | |
| trim?: Maybe<Scalars['Float']>, | |
| sizes?: Maybe<Scalars['String']>, | |
| srcSetBreakpoints?: Maybe<Array<Maybe<Scalars['Int']>>> | |
| }; | |
| export type ImageSharpSizesArgs = { | |
| maxWidth?: Maybe<Scalars['Int']>, | |
| maxHeight?: Maybe<Scalars['Int']>, | |
| base64Width?: Maybe<Scalars['Int']>, | |
| grayscale?: Maybe<Scalars['Boolean']>, | |
| jpegProgressive?: Maybe<Scalars['Boolean']>, | |
| pngCompressionSpeed?: Maybe<Scalars['Int']>, | |
| duotone?: Maybe<DuotoneGradient>, | |
| traceSVG?: Maybe<Potrace>, | |
| quality?: Maybe<Scalars['Int']>, | |
| toFormat?: Maybe<ImageFormat>, | |
| toFormatBase64?: Maybe<ImageFormat>, | |
| cropFocus?: Maybe<ImageCropFocus>, | |
| fit?: Maybe<ImageFit>, | |
| background?: Maybe<Scalars['String']>, | |
| rotate?: Maybe<Scalars['Int']>, | |
| trim?: Maybe<Scalars['Float']>, | |
| sizes?: Maybe<Scalars['String']>, | |
| srcSetBreakpoints?: Maybe<Array<Maybe<Scalars['Int']>>> | |
| }; | |
| export type ImageSharpResizeArgs = { | |
| width?: Maybe<Scalars['Int']>, | |
| height?: Maybe<Scalars['Int']>, | |
| quality?: Maybe<Scalars['Int']>, | |
| jpegProgressive?: Maybe<Scalars['Boolean']>, | |
| pngCompressionLevel?: Maybe<Scalars['Int']>, | |
| pngCompressionSpeed?: Maybe<Scalars['Int']>, | |
| grayscale?: Maybe<Scalars['Boolean']>, | |
| duotone?: Maybe<DuotoneGradient>, | |
| base64?: Maybe<Scalars['Boolean']>, | |
| traceSVG?: Maybe<Potrace>, | |
| toFormat?: Maybe<ImageFormat>, | |
| cropFocus?: Maybe<ImageCropFocus>, | |
| fit?: Maybe<ImageFit>, | |
| background?: Maybe<Scalars['String']>, | |
| rotate?: Maybe<Scalars['Int']>, | |
| trim?: Maybe<Scalars['Float']> | |
| }; | |
| export type ImageSharpConnection = { | |
| __typename?: 'ImageSharpConnection', | |
| totalCount: Scalars['Int'], | |
| edges: Array<ImageSharpEdge>, | |
| nodes: Array<ImageSharp>, | |
| pageInfo: PageInfo, | |
| distinct: Array<Scalars['String']>, | |
| group: Array<ImageSharpGroupConnection>, | |
| }; | |
| export type ImageSharpConnectionDistinctArgs = { | |
| field: ImageSharpFieldsEnum | |
| }; | |
| export type ImageSharpConnectionGroupArgs = { | |
| skip?: Maybe<Scalars['Int']>, | |
| limit?: Maybe<Scalars['Int']>, | |
| field: ImageSharpFieldsEnum | |
| }; | |
| export type ImageSharpEdge = { | |
| __typename?: 'ImageSharpEdge', | |
| next?: Maybe<ImageSharp>, | |
| node: ImageSharp, | |
| previous?: Maybe<ImageSharp>, | |
| }; | |
| export enum ImageSharpFieldsEnum { | |
| Id = 'id', | |
| FixedBase64 = 'fixed___base64', | |
| FixedTracedSvg = 'fixed___tracedSVG', | |
| FixedAspectRatio = 'fixed___aspectRatio', | |
| FixedWidth = 'fixed___width', | |
| FixedHeight = 'fixed___height', | |
| FixedSrc = 'fixed___src', | |
| FixedSrcSet = 'fixed___srcSet', | |
| FixedSrcWebp = 'fixed___srcWebp', | |
| FixedSrcSetWebp = 'fixed___srcSetWebp', | |
| FixedOriginalName = 'fixed___originalName', | |
| ResolutionsBase64 = 'resolutions___base64', | |
| ResolutionsTracedSvg = 'resolutions___tracedSVG', | |
| ResolutionsAspectRatio = 'resolutions___aspectRatio', | |
| ResolutionsWidth = 'resolutions___width', | |
| ResolutionsHeight = 'resolutions___height', | |
| ResolutionsSrc = 'resolutions___src', | |
| ResolutionsSrcSet = 'resolutions___srcSet', | |
| ResolutionsSrcWebp = 'resolutions___srcWebp', | |
| ResolutionsSrcSetWebp = 'resolutions___srcSetWebp', | |
| ResolutionsOriginalName = 'resolutions___originalName', | |
| FluidBase64 = 'fluid___base64', | |
| FluidTracedSvg = 'fluid___tracedSVG', | |
| FluidAspectRatio = 'fluid___aspectRatio', | |
| FluidSrc = 'fluid___src', | |
| FluidSrcSet = 'fluid___srcSet', | |
| FluidSrcWebp = 'fluid___srcWebp', | |
| FluidSrcSetWebp = 'fluid___srcSetWebp', | |
| FluidSizes = 'fluid___sizes', | |
| FluidOriginalImg = 'fluid___originalImg', | |
| FluidOriginalName = 'fluid___originalName', | |
| FluidPresentationWidth = 'fluid___presentationWidth', | |
| FluidPresentationHeight = 'fluid___presentationHeight', | |
| SizesBase64 = 'sizes___base64', | |
| SizesTracedSvg = 'sizes___tracedSVG', | |
| SizesAspectRatio = 'sizes___aspectRatio', | |
| SizesSrc = 'sizes___src', | |
| SizesSrcSet = 'sizes___srcSet', | |
| SizesSrcWebp = 'sizes___srcWebp', | |
| SizesSrcSetWebp = 'sizes___srcSetWebp', | |
| SizesSizes = 'sizes___sizes', | |
| SizesOriginalImg = 'sizes___originalImg', | |
| SizesOriginalName = 'sizes___originalName', | |
| SizesPresentationWidth = 'sizes___presentationWidth', | |
| SizesPresentationHeight = 'sizes___presentationHeight', | |
| OriginalWidth = 'original___width', | |
| OriginalHeight = 'original___height', | |
| OriginalSrc = 'original___src', | |
| ResizeSrc = 'resize___src', | |
| ResizeTracedSvg = 'resize___tracedSVG', | |
| ResizeWidth = 'resize___width', | |
| ResizeHeight = 'resize___height', | |
| ResizeAspectRatio = 'resize___aspectRatio', | |
| ResizeOriginalName = 'resize___originalName', | |
| ParentId = 'parent___id', | |
| ParentParentId = 'parent___parent___id', | |
| ParentParentParentId = 'parent___parent___parent___id', | |
| ParentParentParentChildren = 'parent___parent___parent___children', | |
| ParentParentChildren = 'parent___parent___children', | |
| ParentParentChildrenId = 'parent___parent___children___id', | |
| ParentParentChildrenChildren = 'parent___parent___children___children', | |
| ParentParentInternalContent = 'parent___parent___internal___content', | |
| ParentParentInternalContentDigest = 'parent___parent___internal___contentDigest', | |
| ParentParentInternalDescription = 'parent___parent___internal___description', | |
| ParentParentInternalFieldOwners = 'parent___parent___internal___fieldOwners', | |
| ParentParentInternalIgnoreType = 'parent___parent___internal___ignoreType', | |
| ParentParentInternalMediaType = 'parent___parent___internal___mediaType', | |
| ParentParentInternalOwner = 'parent___parent___internal___owner', | |
| ParentParentInternalType = 'parent___parent___internal___type', | |
| ParentChildren = 'parent___children', | |
| ParentChildrenId = 'parent___children___id', | |
| ParentChildrenParentId = 'parent___children___parent___id', | |
| ParentChildrenParentChildren = 'parent___children___parent___children', | |
| ParentChildrenChildren = 'parent___children___children', | |
| ParentChildrenChildrenId = 'parent___children___children___id', | |
| ParentChildrenChildrenChildren = 'parent___children___children___children', | |
| ParentChildrenInternalContent = 'parent___children___internal___content', | |
| ParentChildrenInternalContentDigest = 'parent___children___internal___contentDigest', | |
| ParentChildrenInternalDescription = 'parent___children___internal___description', | |
| ParentChildrenInternalFieldOwners = 'parent___children___internal___fieldOwners', | |
| ParentChildrenInternalIgnoreType = 'parent___children___internal___ignoreType', | |
| ParentChildrenInternalMediaType = 'parent___children___internal___mediaType', | |
| ParentChildrenInternalOwner = 'parent___children___internal___owner', | |
| ParentChildrenInternalType = 'parent___children___internal___type', | |
| ParentInternalContent = 'parent___internal___content', | |
| ParentInternalContentDigest = 'parent___internal___contentDigest', | |
| ParentInternalDescription = 'parent___internal___description', | |
| ParentInternalFieldOwners = 'parent___internal___fieldOwners', | |
| ParentInternalIgnoreType = 'parent___internal___ignoreType', | |
| ParentInternalMediaType = 'parent___internal___mediaType', | |
| ParentInternalOwner = 'parent___internal___owner', | |
| ParentInternalType = 'parent___internal___type', | |
| Children = 'children', | |
| ChildrenId = 'children___id', | |
| ChildrenParentId = 'children___parent___id', | |
| ChildrenParentParentId = 'children___parent___parent___id', | |
| ChildrenParentParentChildren = 'children___parent___parent___children', | |
| ChildrenParentChildren = 'children___parent___children', | |
| ChildrenParentChildrenId = 'children___parent___children___id', | |
| ChildrenParentChildrenChildren = 'children___parent___children___children', | |
| ChildrenParentInternalContent = 'children___parent___internal___content', | |
| ChildrenParentInternalContentDigest = 'children___parent___internal___contentDigest', | |
| ChildrenParentInternalDescription = 'children___parent___internal___description', | |
| ChildrenParentInternalFieldOwners = 'children___parent___internal___fieldOwners', | |
| ChildrenParentInternalIgnoreType = 'children___parent___internal___ignoreType', | |
| ChildrenParentInternalMediaType = 'children___parent___internal___mediaType', | |
| ChildrenParentInternalOwner = 'children___parent___internal___owner', | |
| ChildrenParentInternalType = 'children___parent___internal___type', | |
| ChildrenChildren = 'children___children', | |
| ChildrenChildrenId = 'children___children___id', | |
| ChildrenChildrenParentId = 'children___children___parent___id', | |
| ChildrenChildrenParentChildren = 'children___children___parent___children', | |
| ChildrenChildrenChildren = 'children___children___children', | |
| ChildrenChildrenChildrenId = 'children___children___children___id', | |
| ChildrenChildrenChildrenChildren = 'children___children___children___children', | |
| ChildrenChildrenInternalContent = 'children___children___internal___content', | |
| ChildrenChildrenInternalContentDigest = 'children___children___internal___contentDigest', | |
| ChildrenChildrenInternalDescription = 'children___children___internal___description', | |
| ChildrenChildrenInternalFieldOwners = 'children___children___internal___fieldOwners', | |
| ChildrenChildrenInternalIgnoreType = 'children___children___internal___ignoreType', | |
| ChildrenChildrenInternalMediaType = 'children___children___internal___mediaType', | |
| ChildrenChildrenInternalOwner = 'children___children___internal___owner', | |
| ChildrenChildrenInternalType = 'children___children___internal___type', | |
| ChildrenInternalContent = 'children___internal___content', | |
| ChildrenInternalContentDigest = 'children___internal___contentDigest', | |
| ChildrenInternalDescription = 'children___internal___description', | |
| ChildrenInternalFieldOwners = 'children___internal___fieldOwners', | |
| ChildrenInternalIgnoreType = 'children___internal___ignoreType', | |
| ChildrenInternalMediaType = 'children___internal___mediaType', | |
| ChildrenInternalOwner = 'children___internal___owner', | |
| ChildrenInternalType = 'children___internal___type', | |
| InternalContent = 'internal___content', | |
| InternalContentDigest = 'internal___contentDigest', | |
| InternalDescription = 'internal___description', | |
| InternalFieldOwners = 'internal___fieldOwners', | |
| InternalIgnoreType = 'internal___ignoreType', | |
| InternalMediaType = 'internal___mediaType', | |
| InternalOwner = 'internal___owner', | |
| InternalType = 'internal___type' | |
| } | |
| export type ImageSharpFilterInput = { | |
| id?: Maybe<StringQueryOperatorInput>, | |
| fixed?: Maybe<ImageSharpFixedFilterInput>, | |
| resolutions?: Maybe<ImageSharpResolutionsFilterInput>, | |
| fluid?: Maybe<ImageSharpFluidFilterInput>, | |
| sizes?: Maybe<ImageSharpSizesFilterInput>, | |
| original?: Maybe<ImageSharpOriginalFilterInput>, | |
| resize?: Maybe<ImageSharpResizeFilterInput>, | |
| parent?: Maybe<NodeFilterInput>, | |
| children?: Maybe<NodeFilterListInput>, | |
| internal?: Maybe<InternalFilterInput>, | |
| }; | |
| export type ImageSharpFixed = { | |
| __typename?: 'ImageSharpFixed', | |
| base64?: Maybe<Scalars['String']>, | |
| tracedSVG?: Maybe<Scalars['String']>, | |
| aspectRatio?: Maybe<Scalars['Float']>, | |
| width?: Maybe<Scalars['Float']>, | |
| height?: Maybe<Scalars['Float']>, | |
| src?: Maybe<Scalars['String']>, | |
| srcSet?: Maybe<Scalars['String']>, | |
| srcWebp?: Maybe<Scalars['String']>, | |
| srcSetWebp?: Maybe<Scalars['String']>, | |
| originalName?: Maybe<Scalars['String']>, | |
| }; | |
| export type ImageSharpFixedFilterInput = { | |
| base64?: Maybe<StringQueryOperatorInput>, | |
| tracedSVG?: Maybe<StringQueryOperatorInput>, | |
| aspectRatio?: Maybe<FloatQueryOperatorInput>, | |
| width?: Maybe<FloatQueryOperatorInput>, | |
| height?: Maybe<FloatQueryOperatorInput>, | |
| src?: Maybe<StringQueryOperatorInput>, | |
| srcSet?: Maybe<StringQueryOperatorInput>, | |
| srcWebp?: Maybe<StringQueryOperatorInput>, | |
| srcSetWebp?: Maybe<StringQueryOperatorInput>, | |
| originalName?: Maybe<StringQueryOperatorInput>, | |
| }; | |
| export type ImageSharpFluid = { | |
| __typename?: 'ImageSharpFluid', | |
| base64?: Maybe<Scalars['String']>, | |
| tracedSVG?: Maybe<Scalars['String']>, | |
| aspectRatio?: Maybe<Scalars['Float']>, | |
| src?: Maybe<Scalars['String']>, | |
| srcSet?: Maybe<Scalars['String']>, | |
| srcWebp?: Maybe<Scalars['String']>, | |
| srcSetWebp?: Maybe<Scalars['String']>, | |
| sizes?: Maybe<Scalars['String']>, | |
| originalImg?: Maybe<Scalars['String']>, | |
| originalName?: Maybe<Scalars['String']>, | |
| presentationWidth?: Maybe<Scalars['Int']>, | |
| presentationHeight?: Maybe<Scalars['Int']>, | |
| }; | |
| export type ImageSharpFluidFilterInput = { | |
| base64?: Maybe<StringQueryOperatorInput>, | |
| tracedSVG?: Maybe<StringQueryOperatorInput>, | |
| aspectRatio?: Maybe<FloatQueryOperatorInput>, | |
| src?: Maybe<StringQueryOperatorInput>, | |
| srcSet?: Maybe<StringQueryOperatorInput>, | |
| srcWebp?: Maybe<StringQueryOperatorInput>, | |
| srcSetWebp?: Maybe<StringQueryOperatorInput>, | |
| sizes?: Maybe<StringQueryOperatorInput>, | |
| originalImg?: Maybe<StringQueryOperatorInput>, | |
| originalName?: Maybe<StringQueryOperatorInput>, | |
| presentationWidth?: Maybe<IntQueryOperatorInput>, | |
| presentationHeight?: Maybe<IntQueryOperatorInput>, | |
| }; | |
| export type ImageSharpGroupConnection = { | |
| __typename?: 'ImageSharpGroupConnection', | |
| totalCount: Scalars['Int'], | |
| edges: Array<ImageSharpEdge>, | |
| nodes: Array<ImageSharp>, | |
| pageInfo: PageInfo, | |
| field: Scalars['String'], | |
| fieldValue?: Maybe<Scalars['String']>, | |
| }; | |
| export type ImageSharpOriginal = { | |
| __typename?: 'ImageSharpOriginal', | |
| width?: Maybe<Scalars['Float']>, | |
| height?: Maybe<Scalars['Float']>, | |
| src?: Maybe<Scalars['String']>, | |
| }; | |
| export type ImageSharpOriginalFilterInput = { | |
| width?: Maybe<FloatQueryOperatorInput>, | |
| height?: Maybe<FloatQueryOperatorInput>, | |
| src?: Maybe<StringQueryOperatorInput>, | |
| }; | |
| export type ImageSharpResize = { | |
| __typename?: 'ImageSharpResize', | |
| src?: Maybe<Scalars['String']>, | |
| tracedSVG?: Maybe<Scalars['String']>, | |
| width?: Maybe<Scalars['Int']>, | |
| height?: Maybe<Scalars['Int']>, | |
| aspectRatio?: Maybe<Scalars['Float']>, | |
| originalName?: Maybe<Scalars['String']>, | |
| }; | |
| export type ImageSharpResizeFilterInput = { | |
| src?: Maybe<StringQueryOperatorInput>, | |
| tracedSVG?: Maybe<StringQueryOperatorInput>, | |
| width?: Maybe<IntQueryOperatorInput>, | |
| height?: Maybe<IntQueryOperatorInput>, | |
| aspectRatio?: Maybe<FloatQueryOperatorInput>, | |
| originalName?: Maybe<StringQueryOperatorInput>, | |
| }; | |
| export type ImageSharpResolutions = { | |
| __typename?: 'ImageSharpResolutions', | |
| base64?: Maybe<Scalars['String']>, | |
| tracedSVG?: Maybe<Scalars['String']>, | |
| aspectRatio?: Maybe<Scalars['Float']>, | |
| width?: Maybe<Scalars['Float']>, | |
| height?: Maybe<Scalars['Float']>, | |
| src?: Maybe<Scalars['String']>, | |
| srcSet?: Maybe<Scalars['String']>, | |
| srcWebp?: Maybe<Scalars['String']>, | |
| srcSetWebp?: Maybe<Scalars['String']>, | |
| originalName?: Maybe<Scalars['String']>, | |
| }; | |
| export type ImageSharpResolutionsFilterInput = { | |
| base64?: Maybe<StringQueryOperatorInput>, | |
| tracedSVG?: Maybe<StringQueryOperatorInput>, | |
| aspectRatio?: Maybe<FloatQueryOperatorInput>, | |
| width?: Maybe<FloatQueryOperatorInput>, | |
| height?: Maybe<FloatQueryOperatorInput>, | |
| src?: Maybe<StringQueryOperatorInput>, | |
| srcSet?: Maybe<StringQueryOperatorInput>, | |
| srcWebp?: Maybe<StringQueryOperatorInput>, | |
| srcSetWebp?: Maybe<StringQueryOperatorInput>, | |
| originalName?: Maybe<StringQueryOperatorInput>, | |
| }; | |
| export type ImageSharpSizes = { | |
| __typename?: 'ImageSharpSizes', | |
| base64?: Maybe<Scalars['String']>, | |
| tracedSVG?: Maybe<Scalars['String']>, | |
| aspectRatio?: Maybe<Scalars['Float']>, | |
| src?: Maybe<Scalars['String']>, | |
| srcSet?: Maybe<Scalars['String']>, | |
| srcWebp?: Maybe<Scalars['String']>, | |
| srcSetWebp?: Maybe<Scalars['String']>, | |
| sizes?: Maybe<Scalars['String']>, | |
| originalImg?: Maybe<Scalars['String']>, | |
| originalName?: Maybe<Scalars['String']>, | |
| presentationWidth?: Maybe<Scalars['Int']>, | |
| presentationHeight?: Maybe<Scalars['Int']>, | |
| }; | |
| export type ImageSharpSizesFilterInput = { | |
| base64?: Maybe<StringQueryOperatorInput>, | |
| tracedSVG?: Maybe<StringQueryOperatorInput>, | |
| aspectRatio?: Maybe<FloatQueryOperatorInput>, | |
| src?: Maybe<StringQueryOperatorInput>, | |
| srcSet?: Maybe<StringQueryOperatorInput>, | |
| srcWebp?: Maybe<StringQueryOperatorInput>, | |
| srcSetWebp?: Maybe<StringQueryOperatorInput>, | |
| sizes?: Maybe<StringQueryOperatorInput>, | |
| originalImg?: Maybe<StringQueryOperatorInput>, | |
| originalName?: Maybe<StringQueryOperatorInput>, | |
| presentationWidth?: Maybe<IntQueryOperatorInput>, | |
| presentationHeight?: Maybe<IntQueryOperatorInput>, | |
| }; | |
| export type ImageSharpSortInput = { | |
| fields?: Maybe<Array<Maybe<ImageSharpFieldsEnum>>>, | |
| order?: Maybe<Array<Maybe<SortOrderEnum>>>, | |
| }; | |
| export type Internal = { | |
| __typename?: 'Internal', | |
| content?: Maybe<Scalars['String']>, | |
| contentDigest: Scalars['String'], | |
| description?: Maybe<Scalars['String']>, | |
| fieldOwners?: Maybe<Array<Maybe<Scalars['String']>>>, | |
| ignoreType?: Maybe<Scalars['Boolean']>, | |
| mediaType?: Maybe<Scalars['String']>, | |
| owner: Scalars['String'], | |
| type: Scalars['String'], | |
| }; | |
| export type InternalFilterInput = { | |
| content?: Maybe<StringQueryOperatorInput>, | |
| contentDigest?: Maybe<StringQueryOperatorInput>, | |
| description?: Maybe<StringQueryOperatorInput>, | |
| fieldOwners?: Maybe<StringQueryOperatorInput>, | |
| ignoreType?: Maybe<BooleanQueryOperatorInput>, | |
| mediaType?: Maybe<StringQueryOperatorInput>, | |
| owner?: Maybe<StringQueryOperatorInput>, | |
| type?: Maybe<StringQueryOperatorInput>, | |
| }; | |
| export type IntQueryOperatorInput = { | |
| eq?: Maybe<Scalars['Int']>, | |
| ne?: Maybe<Scalars['Int']>, | |
| gt?: Maybe<Scalars['Int']>, | |
| gte?: Maybe<Scalars['Int']>, | |
| lt?: Maybe<Scalars['Int']>, | |
| lte?: Maybe<Scalars['Int']>, | |
| in?: Maybe<Array<Maybe<Scalars['Int']>>>, | |
| nin?: Maybe<Array<Maybe<Scalars['Int']>>>, | |
| }; | |
| export type JsonQueryOperatorInput = { | |
| eq?: Maybe<Scalars['JSON']>, | |
| ne?: Maybe<Scalars['JSON']>, | |
| in?: Maybe<Array<Maybe<Scalars['JSON']>>>, | |
| nin?: Maybe<Array<Maybe<Scalars['JSON']>>>, | |
| regex?: Maybe<Scalars['JSON']>, | |
| glob?: Maybe<Scalars['JSON']>, | |
| }; | |
| /** Node Interface */ | |
| export type Node = { | |
| id: Scalars['ID'], | |
| parent?: Maybe<Node>, | |
| children: Array<Node>, | |
| internal: Internal, | |
| }; | |
| export type NodeFilterInput = { | |
| id?: Maybe<StringQueryOperatorInput>, | |
| parent?: Maybe<NodeFilterInput>, | |
| children?: Maybe<NodeFilterListInput>, | |
| internal?: Maybe<InternalFilterInput>, | |
| }; | |
| export type NodeFilterListInput = { | |
| elemMatch?: Maybe<NodeFilterInput>, | |
| }; | |
| export type PageInfo = { | |
| __typename?: 'PageInfo', | |
| currentPage: Scalars['Int'], | |
| hasPreviousPage: Scalars['Boolean'], | |
| hasNextPage: Scalars['Boolean'], | |
| itemCount: Scalars['Int'], | |
| pageCount: Scalars['Int'], | |
| perPage?: Maybe<Scalars['Int']>, | |
| }; | |
| export type Potrace = { | |
| turnPolicy?: Maybe<PotraceTurnPolicy>, | |
| turdSize?: Maybe<Scalars['Float']>, | |
| alphaMax?: Maybe<Scalars['Float']>, | |
| optCurve?: Maybe<Scalars['Boolean']>, | |
| optTolerance?: Maybe<Scalars['Float']>, | |
| threshold?: Maybe<Scalars['Int']>, | |
| blackOnWhite?: Maybe<Scalars['Boolean']>, | |
| color?: Maybe<Scalars['String']>, | |
| background?: Maybe<Scalars['String']>, | |
| }; | |
| export enum PotraceTurnPolicy { | |
| TurnpolicyBlack = 'TURNPOLICY_BLACK', | |
| TurnpolicyWhite = 'TURNPOLICY_WHITE', | |
| TurnpolicyLeft = 'TURNPOLICY_LEFT', | |
| TurnpolicyRight = 'TURNPOLICY_RIGHT', | |
| TurnpolicyMinority = 'TURNPOLICY_MINORITY', | |
| TurnpolicyMajority = 'TURNPOLICY_MAJORITY' | |
| } | |
| export type Query = { | |
| __typename?: 'Query', | |
| imageSharp?: Maybe<ImageSharp>, | |
| allImageSharp: ImageSharpConnection, | |
| sitePage?: Maybe<SitePage>, | |
| allSitePage: SitePageConnection, | |
| sitePlugin?: Maybe<SitePlugin>, | |
| allSitePlugin: SitePluginConnection, | |
| site?: Maybe<Site>, | |
| allSite: SiteConnection, | |
| contentfulContentType?: Maybe<ContentfulContentType>, | |
| allContentfulContentType: ContentfulContentTypeConnection, | |
| contentfulPerson?: Maybe<ContentfulPerson>, | |
| allContentfulPerson: ContentfulPersonConnection, | |
| contentfulPersonShortBioTextNode?: Maybe<ContentfulPersonShortBioTextNode>, | |
| allContentfulPersonShortBioTextNode: ContentfulPersonShortBioTextNodeConnection, | |
| contentfulBlogPost?: Maybe<ContentfulBlogPost>, | |
| allContentfulBlogPost: ContentfulBlogPostConnection, | |
| contentfulBlogPostBodyRichTextNode?: Maybe<ContentfulBlogPostBodyRichTextNode>, | |
| allContentfulBlogPostBodyRichTextNode: ContentfulBlogPostBodyRichTextNodeConnection, | |
| contentfulProduct?: Maybe<ContentfulProduct>, | |
| allContentfulProduct: ContentfulProductConnection, | |
| contentfulProductBodyRichTextNode?: Maybe<ContentfulProductBodyRichTextNode>, | |
| allContentfulProductBodyRichTextNode: ContentfulProductBodyRichTextNodeConnection, | |
| contentfulCategory?: Maybe<ContentfulCategory>, | |
| allContentfulCategory: ContentfulCategoryConnection, | |
| contentfulCategoryBodyRichTextNode?: Maybe<ContentfulCategoryBodyRichTextNode>, | |
| allContentfulCategoryBodyRichTextNode: ContentfulCategoryBodyRichTextNodeConnection, | |
| contentfulMenu?: Maybe<ContentfulMenu>, | |
| allContentfulMenu: ContentfulMenuConnection, | |
| contentfulPage?: Maybe<ContentfulPage>, | |
| allContentfulPage: ContentfulPageConnection, | |
| contentfulPageBodyRichTextNode?: Maybe<ContentfulPageBodyRichTextNode>, | |
| allContentfulPageBodyRichTextNode: ContentfulPageBodyRichTextNodeConnection, | |
| contentfulAsset?: Maybe<ContentfulAsset>, | |
| allContentfulAsset: ContentfulAssetConnection, | |
| contentfulRichText?: Maybe<ContentfulRichText>, | |
| allContentfulRichText: ContentfulRichTextConnection, | |
| }; | |
| export type QueryImageSharpArgs = { | |
| id?: Maybe<StringQueryOperatorInput>, | |
| fixed?: Maybe<ImageSharpFixedFilterInput>, | |
| resolutions?: Maybe<ImageSharpResolutionsFilterInput>, | |
| fluid?: Maybe<ImageSharpFluidFilterInput>, | |
| sizes?: Maybe<ImageSharpSizesFilterInput>, | |
| original?: Maybe<ImageSharpOriginalFilterInput>, | |
| resize?: Maybe<ImageSharpResizeFilterInput>, | |
| parent?: Maybe<NodeFilterInput>, | |
| children?: Maybe<NodeFilterListInput>, | |
| internal?: Maybe<InternalFilterInput> | |
| }; | |
| export type QueryAllImageSharpArgs = { | |
| filter?: Maybe<ImageSharpFilterInput>, | |
| sort?: Maybe<ImageSharpSortInput>, | |
| skip?: Maybe<Scalars['Int']>, | |
| limit?: Maybe<Scalars['Int']> | |
| }; | |
| export type QuerySitePageArgs = { | |
| id?: Maybe<StringQueryOperatorInput>, | |
| parent?: Maybe<NodeFilterInput>, | |
| children?: Maybe<NodeFilterListInput>, | |
| internal?: Maybe<InternalFilterInput>, | |
| path?: Maybe<StringQueryOperatorInput>, | |
| internalComponentName?: Maybe<StringQueryOperatorInput>, | |
| component?: Maybe<StringQueryOperatorInput>, | |
| componentChunkName?: Maybe<StringQueryOperatorInput>, | |
| isCreatedByStatefulCreatePages?: Maybe<BooleanQueryOperatorInput>, | |
| context?: Maybe<SitePageContextFilterInput>, | |
| pluginCreator?: Maybe<SitePluginFilterInput>, | |
| pluginCreatorId?: Maybe<StringQueryOperatorInput>, | |
| componentPath?: Maybe<StringQueryOperatorInput> | |
| }; | |
| export type QueryAllSitePageArgs = { | |
| filter?: Maybe<SitePageFilterInput>, | |
| sort?: Maybe<SitePageSortInput>, | |
| skip?: Maybe<Scalars['Int']>, | |
| limit?: Maybe<Scalars['Int']> | |
| }; | |
| export type QuerySitePluginArgs = { | |
| id?: Maybe<StringQueryOperatorInput>, | |
| parent?: Maybe<NodeFilterInput>, | |
| children?: Maybe<NodeFilterListInput>, | |
| internal?: Maybe<InternalFilterInput>, | |
| resolve?: Maybe<StringQueryOperatorInput>, | |
| name?: Maybe<StringQueryOperatorInput>, | |
| version?: Maybe<StringQueryOperatorInput>, | |
| pluginOptions?: Maybe<SitePluginPluginOptionsFilterInput>, | |
| nodeAPIs?: Maybe<StringQueryOperatorInput>, | |
| browserAPIs?: Maybe<StringQueryOperatorInput>, | |
| ssrAPIs?: Maybe<StringQueryOperatorInput>, | |
| pluginFilepath?: Maybe<StringQueryOperatorInput>, | |
| packageJson?: Maybe<SitePluginPackageJsonFilterInput> | |
| }; | |
| export type QueryAllSitePluginArgs = { | |
| filter?: Maybe<SitePluginFilterInput>, | |
| sort?: Maybe<SitePluginSortInput>, | |
| skip?: Maybe<Scalars['Int']>, | |
| limit?: Maybe<Scalars['Int']> | |
| }; | |
| export type QuerySiteArgs = { | |
| id?: Maybe<StringQueryOperatorInput>, | |
| parent?: Maybe<NodeFilterInput>, | |
| children?: Maybe<NodeFilterListInput>, | |
| internal?: Maybe<InternalFilterInput>, | |
| siteMetadata?: Maybe<SiteSiteMetadataFilterInput>, | |
| port?: Maybe<IntQueryOperatorInput>, | |
| host?: Maybe<StringQueryOperatorInput>, | |
| polyfill?: Maybe<BooleanQueryOperatorInput>, | |
| pathPrefix?: Maybe<StringQueryOperatorInput>, | |
| buildTime?: Maybe<DateQueryOperatorInput> | |
| }; | |
| export type QueryAllSiteArgs = { | |
| filter?: Maybe<SiteFilterInput>, | |
| sort?: Maybe<SiteSortInput>, | |
| skip?: Maybe<Scalars['Int']>, | |
| limit?: Maybe<Scalars['Int']> | |
| }; | |
| export type QueryContentfulContentTypeArgs = { | |
| id?: Maybe<StringQueryOperatorInput>, | |
| parent?: Maybe<NodeFilterInput>, | |
| children?: Maybe<NodeFilterListInput>, | |
| internal?: Maybe<InternalFilterInput>, | |
| name?: Maybe<StringQueryOperatorInput>, | |
| displayField?: Maybe<StringQueryOperatorInput>, | |
| description?: Maybe<StringQueryOperatorInput> | |
| }; | |
| export type QueryAllContentfulContentTypeArgs = { | |
| filter?: Maybe<ContentfulContentTypeFilterInput>, | |
| sort?: Maybe<ContentfulContentTypeSortInput>, | |
| skip?: Maybe<Scalars['Int']>, | |
| limit?: Maybe<Scalars['Int']> | |
| }; | |
| export type QueryContentfulPersonArgs = { | |
| id?: Maybe<StringQueryOperatorInput>, | |
| parent?: Maybe<NodeFilterInput>, | |
| children?: Maybe<NodeFilterListInput>, | |
| internal?: Maybe<InternalFilterInput>, | |
| name?: Maybe<StringQueryOperatorInput>, | |
| title?: Maybe<StringQueryOperatorInput>, | |
| company?: Maybe<StringQueryOperatorInput>, | |
| email?: Maybe<StringQueryOperatorInput>, | |
| phone?: Maybe<StringQueryOperatorInput>, | |
| facebook?: Maybe<StringQueryOperatorInput>, | |
| twitter?: Maybe<StringQueryOperatorInput>, | |
| github?: Maybe<StringQueryOperatorInput>, | |
| image?: Maybe<ContentfulAssetFilterInput>, | |
| blogpost?: Maybe<ContentfulBlogPostFilterListInput>, | |
| shortBio?: Maybe<ContentfulPersonShortBioTextNodeFilterInput>, | |
| spaceId?: Maybe<StringQueryOperatorInput>, | |
| contentful_id?: Maybe<StringQueryOperatorInput>, | |
| createdAt?: Maybe<DateQueryOperatorInput>, | |
| updatedAt?: Maybe<DateQueryOperatorInput>, | |
| node_locale?: Maybe<StringQueryOperatorInput>, | |
| childContentfulPersonShortBioTextNode?: Maybe<ContentfulPersonShortBioTextNodeFilterInput> | |
| }; | |
| export type QueryAllContentfulPersonArgs = { | |
| filter?: Maybe<ContentfulPersonFilterInput>, | |
| sort?: Maybe<ContentfulPersonSortInput>, | |
| skip?: Maybe<Scalars['Int']>, | |
| limit?: Maybe<Scalars['Int']> | |
| }; | |
| export type QueryContentfulPersonShortBioTextNodeArgs = { | |
| id?: Maybe<StringQueryOperatorInput>, | |
| parent?: Maybe<NodeFilterInput>, | |
| children?: Maybe<NodeFilterListInput>, | |
| internal?: Maybe<InternalFilterInput>, | |
| shortBio?: Maybe<StringQueryOperatorInput> | |
| }; | |
| export type QueryAllContentfulPersonShortBioTextNodeArgs = { | |
| filter?: Maybe<ContentfulPersonShortBioTextNodeFilterInput>, | |
| sort?: Maybe<ContentfulPersonShortBioTextNodeSortInput>, | |
| skip?: Maybe<Scalars['Int']>, | |
| limit?: Maybe<Scalars['Int']> | |
| }; | |
| export type QueryContentfulBlogPostArgs = { | |
| id?: Maybe<StringQueryOperatorInput>, | |
| parent?: Maybe<NodeFilterInput>, | |
| children?: Maybe<NodeFilterListInput>, | |
| internal?: Maybe<InternalFilterInput>, | |
| title?: Maybe<StringQueryOperatorInput>, | |
| slug?: Maybe<StringQueryOperatorInput>, | |
| publishDate?: Maybe<DateQueryOperatorInput>, | |
| featuredImage?: Maybe<ContentfulAssetFilterInput>, | |
| categories?: Maybe<ContentfulCategoryFilterListInput>, | |
| page?: Maybe<ContentfulPageFilterListInput>, | |
| body?: Maybe<ContentfulBlogPostBodyRichTextNodeFilterInput>, | |
| spaceId?: Maybe<StringQueryOperatorInput>, | |
| contentful_id?: Maybe<StringQueryOperatorInput>, | |
| createdAt?: Maybe<DateQueryOperatorInput>, | |
| updatedAt?: Maybe<DateQueryOperatorInput>, | |
| node_locale?: Maybe<StringQueryOperatorInput>, | |
| author?: Maybe<ContentfulPersonFilterInput>, | |
| childContentfulBlogPostBodyRichTextNode?: Maybe<ContentfulBlogPostBodyRichTextNodeFilterInput> | |
| }; | |
| export type QueryAllContentfulBlogPostArgs = { | |
| filter?: Maybe<ContentfulBlogPostFilterInput>, | |
| sort?: Maybe<ContentfulBlogPostSortInput>, | |
| skip?: Maybe<Scalars['Int']>, | |
| limit?: Maybe<Scalars['Int']> | |
| }; | |
| export type QueryContentfulBlogPostBodyRichTextNodeArgs = { | |
| id?: Maybe<StringQueryOperatorInput>, | |
| parent?: Maybe<NodeFilterInput>, | |
| children?: Maybe<NodeFilterListInput>, | |
| internal?: Maybe<InternalFilterInput>, | |
| content?: Maybe<ContentfulBlogPostBodyRichTextNodeContentFilterListInput>, | |
| nodeType?: Maybe<StringQueryOperatorInput>, | |
| body?: Maybe<StringQueryOperatorInput>, | |
| json?: Maybe<JsonQueryOperatorInput>, | |
| childContentfulRichText?: Maybe<ContentfulRichTextFilterInput> | |
| }; | |
| export type QueryAllContentfulBlogPostBodyRichTextNodeArgs = { | |
| filter?: Maybe<ContentfulBlogPostBodyRichTextNodeFilterInput>, | |
| sort?: Maybe<ContentfulBlogPostBodyRichTextNodeSortInput>, | |
| skip?: Maybe<Scalars['Int']>, | |
| limit?: Maybe<Scalars['Int']> | |
| }; | |
| export type QueryContentfulProductArgs = { | |
| id?: Maybe<StringQueryOperatorInput>, | |
| parent?: Maybe<NodeFilterInput>, | |
| children?: Maybe<NodeFilterListInput>, | |
| internal?: Maybe<InternalFilterInput>, | |
| title?: Maybe<StringQueryOperatorInput>, | |
| slug?: Maybe<StringQueryOperatorInput>, | |
| price?: Maybe<FloatQueryOperatorInput>, | |
| featuredImage?: Maybe<ContentfulAssetFilterInput>, | |
| categories?: Maybe<ContentfulCategoryFilterListInput>, | |
| body?: Maybe<ContentfulProductBodyRichTextNodeFilterInput>, | |
| spaceId?: Maybe<StringQueryOperatorInput>, | |
| contentful_id?: Maybe<StringQueryOperatorInput>, | |
| createdAt?: Maybe<DateQueryOperatorInput>, | |
| updatedAt?: Maybe<DateQueryOperatorInput>, | |
| node_locale?: Maybe<StringQueryOperatorInput>, | |
| childContentfulProductBodyRichTextNode?: Maybe<ContentfulProductBodyRichTextNodeFilterInput> | |
| }; | |
| export type QueryAllContentfulProductArgs = { | |
| filter?: Maybe<ContentfulProductFilterInput>, | |
| sort?: Maybe<ContentfulProductSortInput>, | |
| skip?: Maybe<Scalars['Int']>, | |
| limit?: Maybe<Scalars['Int']> | |
| }; | |
| export type QueryContentfulProductBodyRichTextNodeArgs = { | |
| id?: Maybe<StringQueryOperatorInput>, | |
| parent?: Maybe<NodeFilterInput>, | |
| children?: Maybe<NodeFilterListInput>, | |
| internal?: Maybe<InternalFilterInput>, | |
| content?: Maybe<ContentfulProductBodyRichTextNodeContentFilterListInput>, | |
| nodeType?: Maybe<StringQueryOperatorInput>, | |
| body?: Maybe<StringQueryOperatorInput>, | |
| json?: Maybe<JsonQueryOperatorInput>, | |
| childContentfulRichText?: Maybe<ContentfulRichTextFilterInput> | |
| }; | |
| export type QueryAllContentfulProductBodyRichTextNodeArgs = { | |
| filter?: Maybe<ContentfulProductBodyRichTextNodeFilterInput>, | |
| sort?: Maybe<ContentfulProductBodyRichTextNodeSortInput>, | |
| skip?: Maybe<Scalars['Int']>, | |
| limit?: Maybe<Scalars['Int']> | |
| }; | |
| export type QueryContentfulCategoryArgs = { | |
| id?: Maybe<StringQueryOperatorInput>, | |
| parent?: Maybe<NodeFilterInput>, | |
| children?: Maybe<NodeFilterListInput>, | |
| internal?: Maybe<InternalFilterInput>, | |
| title?: Maybe<StringQueryOperatorInput>, | |
| slug?: Maybe<StringQueryOperatorInput>, | |
| featuredImage?: Maybe<ContentfulAssetFilterInput>, | |
| blogpost?: Maybe<ContentfulBlogPostFilterListInput>, | |
| spaceId?: Maybe<StringQueryOperatorInput>, | |
| contentful_id?: Maybe<StringQueryOperatorInput>, | |
| createdAt?: Maybe<DateQueryOperatorInput>, | |
| updatedAt?: Maybe<DateQueryOperatorInput>, | |
| node_locale?: Maybe<StringQueryOperatorInput>, | |
| menu?: Maybe<ContentfulMenuFilterListInput>, | |
| product?: Maybe<ContentfulProductFilterListInput>, | |
| body?: Maybe<ContentfulCategoryBodyRichTextNodeFilterInput>, | |
| childContentfulCategoryBodyRichTextNode?: Maybe<ContentfulCategoryBodyRichTextNodeFilterInput> | |
| }; | |
| export type QueryAllContentfulCategoryArgs = { | |
| filter?: Maybe<ContentfulCategoryFilterInput>, | |
| sort?: Maybe<ContentfulCategorySortInput>, | |
| skip?: Maybe<Scalars['Int']>, | |
| limit?: Maybe<Scalars['Int']> | |
| }; | |
| export type QueryContentfulCategoryBodyRichTextNodeArgs = { | |
| id?: Maybe<StringQueryOperatorInput>, | |
| parent?: Maybe<NodeFilterInput>, | |
| children?: Maybe<NodeFilterListInput>, | |
| internal?: Maybe<InternalFilterInput>, | |
| content?: Maybe<ContentfulCategoryBodyRichTextNodeContentFilterListInput>, | |
| nodeType?: Maybe<StringQueryOperatorInput>, | |
| body?: Maybe<StringQueryOperatorInput>, | |
| json?: Maybe<JsonQueryOperatorInput>, | |
| childContentfulRichText?: Maybe<ContentfulRichTextFilterInput> | |
| }; | |
| export type QueryAllContentfulCategoryBodyRichTextNodeArgs = { | |
| filter?: Maybe<ContentfulCategoryBodyRichTextNodeFilterInput>, | |
| sort?: Maybe<ContentfulCategoryBodyRichTextNodeSortInput>, | |
| skip?: Maybe<Scalars['Int']>, | |
| limit?: Maybe<Scalars['Int']> | |
| }; | |
| export type QueryContentfulMenuArgs = { | |
| id?: Maybe<StringQueryOperatorInput>, | |
| parent?: Maybe<NodeFilterInput>, | |
| children?: Maybe<NodeFilterListInput>, | |
| internal?: Maybe<InternalFilterInput>, | |
| name?: Maybe<StringQueryOperatorInput>, | |
| menuItems?: Maybe<ContentfulCategoryFilterListInput>, | |
| spaceId?: Maybe<StringQueryOperatorInput>, | |
| contentful_id?: Maybe<StringQueryOperatorInput>, | |
| createdAt?: Maybe<DateQueryOperatorInput>, | |
| updatedAt?: Maybe<DateQueryOperatorInput>, | |
| node_locale?: Maybe<StringQueryOperatorInput> | |
| }; | |
| export type QueryAllContentfulMenuArgs = { | |
| filter?: Maybe<ContentfulMenuFilterInput>, | |
| sort?: Maybe<ContentfulMenuSortInput>, | |
| skip?: Maybe<Scalars['Int']>, | |
| limit?: Maybe<Scalars['Int']> | |
| }; | |
| export type QueryContentfulPageArgs = { | |
| id?: Maybe<StringQueryOperatorInput>, | |
| parent?: Maybe<NodeFilterInput>, | |
| children?: Maybe<NodeFilterListInput>, | |
| internal?: Maybe<InternalFilterInput>, | |
| title?: Maybe<StringQueryOperatorInput>, | |
| slug?: Maybe<StringQueryOperatorInput>, | |
| isHomePage?: Maybe<BooleanQueryOperatorInput>, | |
| featuredPosts?: Maybe<ContentfulBlogPostFilterListInput>, | |
| spaceId?: Maybe<StringQueryOperatorInput>, | |
| contentful_id?: Maybe<StringQueryOperatorInput>, | |
| createdAt?: Maybe<DateQueryOperatorInput>, | |
| updatedAt?: Maybe<DateQueryOperatorInput>, | |
| node_locale?: Maybe<StringQueryOperatorInput>, | |
| body?: Maybe<ContentfulPageBodyRichTextNodeFilterInput>, | |
| childContentfulPageBodyRichTextNode?: Maybe<ContentfulPageBodyRichTextNodeFilterInput> | |
| }; | |
| export type QueryAllContentfulPageArgs = { | |
| filter?: Maybe<ContentfulPageFilterInput>, | |
| sort?: Maybe<ContentfulPageSortInput>, | |
| skip?: Maybe<Scalars['Int']>, | |
| limit?: Maybe<Scalars['Int']> | |
| }; | |
| export type QueryContentfulPageBodyRichTextNodeArgs = { | |
| id?: Maybe<StringQueryOperatorInput>, | |
| parent?: Maybe<NodeFilterInput>, | |
| children?: Maybe<NodeFilterListInput>, | |
| internal?: Maybe<InternalFilterInput>, | |
| content?: Maybe<ContentfulPageBodyRichTextNodeContentFilterListInput>, | |
| nodeType?: Maybe<StringQueryOperatorInput>, | |
| body?: Maybe<StringQueryOperatorInput>, | |
| json?: Maybe<JsonQueryOperatorInput>, | |
| childContentfulRichText?: Maybe<ContentfulRichTextFilterInput> | |
| }; | |
| export type QueryAllContentfulPageBodyRichTextNodeArgs = { | |
| filter?: Maybe<ContentfulPageBodyRichTextNodeFilterInput>, | |
| sort?: Maybe<ContentfulPageBodyRichTextNodeSortInput>, | |
| skip?: Maybe<Scalars['Int']>, | |
| limit?: Maybe<Scalars['Int']> | |
| }; | |
| export type QueryContentfulAssetArgs = { | |
| id?: Maybe<StringQueryOperatorInput>, | |
| parent?: Maybe<NodeFilterInput>, | |
| children?: Maybe<NodeFilterListInput>, | |
| internal?: Maybe<InternalFilterInput>, | |
| contentful_id?: Maybe<StringQueryOperatorInput>, | |
| file?: Maybe<ContentfulAssetFileFilterInput>, | |
| title?: Maybe<StringQueryOperatorInput>, | |
| description?: Maybe<StringQueryOperatorInput>, | |
| node_locale?: Maybe<StringQueryOperatorInput>, | |
| fixed?: Maybe<ContentfulFixedFilterInput>, | |
| resolutions?: Maybe<ContentfulResolutionsFilterInput>, | |
| fluid?: Maybe<ContentfulFluidFilterInput>, | |
| sizes?: Maybe<ContentfulSizesFilterInput>, | |
| resize?: Maybe<ContentfulResizeFilterInput> | |
| }; | |
| export type QueryAllContentfulAssetArgs = { | |
| filter?: Maybe<ContentfulAssetFilterInput>, | |
| sort?: Maybe<ContentfulAssetSortInput>, | |
| skip?: Maybe<Scalars['Int']>, | |
| limit?: Maybe<Scalars['Int']> | |
| }; | |
| export type QueryContentfulRichTextArgs = { | |
| id?: Maybe<StringQueryOperatorInput>, | |
| parent?: Maybe<NodeFilterInput>, | |
| children?: Maybe<NodeFilterListInput>, | |
| internal?: Maybe<InternalFilterInput>, | |
| html?: Maybe<StringQueryOperatorInput>, | |
| timeToRead?: Maybe<IntQueryOperatorInput> | |
| }; | |
| export type QueryAllContentfulRichTextArgs = { | |
| filter?: Maybe<ContentfulRichTextFilterInput>, | |
| sort?: Maybe<ContentfulRichTextSortInput>, | |
| skip?: Maybe<Scalars['Int']>, | |
| limit?: Maybe<Scalars['Int']> | |
| }; | |
| export type Site = Node & { | |
| __typename?: 'Site', | |
| id: Scalars['ID'], | |
| parent?: Maybe<Node>, | |
| children: Array<Node>, | |
| internal: Internal, | |
| siteMetadata?: Maybe<SiteSiteMetadata>, | |
| port?: Maybe<Scalars['Int']>, | |
| host?: Maybe<Scalars['String']>, | |
| polyfill?: Maybe<Scalars['Boolean']>, | |
| pathPrefix?: Maybe<Scalars['String']>, | |
| buildTime?: Maybe<Scalars['Date']>, | |
| }; | |
| export type SiteBuildTimeArgs = { | |
| formatString?: Maybe<Scalars['String']>, | |
| fromNow?: Maybe<Scalars['Boolean']>, | |
| difference?: Maybe<Scalars['String']>, | |
| locale?: Maybe<Scalars['String']> | |
| }; | |
| export type SiteConnection = { | |
| __typename?: 'SiteConnection', | |
| totalCount: Scalars['Int'], | |
| edges: Array<SiteEdge>, | |
| nodes: Array<Site>, | |
| pageInfo: PageInfo, | |
| distinct: Array<Scalars['String']>, | |
| group: Array<SiteGroupConnection>, | |
| }; | |
| export type SiteConnectionDistinctArgs = { | |
| field: SiteFieldsEnum | |
| }; | |
| export type SiteConnectionGroupArgs = { | |
| skip?: Maybe<Scalars['Int']>, | |
| limit?: Maybe<Scalars['Int']>, | |
| field: SiteFieldsEnum | |
| }; | |
| export type SiteEdge = { | |
| __typename?: 'SiteEdge', | |
| next?: Maybe<Site>, | |
| node: Site, | |
| previous?: Maybe<Site>, | |
| }; | |
| export enum SiteFieldsEnum { | |
| Id = 'id', | |
| ParentId = 'parent___id', | |
| ParentParentId = 'parent___parent___id', | |
| ParentParentParentId = 'parent___parent___parent___id', | |
| ParentParentParentChildren = 'parent___parent___parent___children', | |
| ParentParentChildren = 'parent___parent___children', | |
| ParentParentChildrenId = 'parent___parent___children___id', | |
| ParentParentChildrenChildren = 'parent___parent___children___children', | |
| ParentParentInternalContent = 'parent___parent___internal___content', | |
| ParentParentInternalContentDigest = 'parent___parent___internal___contentDigest', | |
| ParentParentInternalDescription = 'parent___parent___internal___description', | |
| ParentParentInternalFieldOwners = 'parent___parent___internal___fieldOwners', | |
| ParentParentInternalIgnoreType = 'parent___parent___internal___ignoreType', | |
| ParentParentInternalMediaType = 'parent___parent___internal___mediaType', | |
| ParentParentInternalOwner = 'parent___parent___internal___owner', | |
| ParentParentInternalType = 'parent___parent___internal___type', | |
| ParentChildren = 'parent___children', | |
| ParentChildrenId = 'parent___children___id', | |
| ParentChildrenParentId = 'parent___children___parent___id', | |
| ParentChildrenParentChildren = 'parent___children___parent___children', | |
| ParentChildrenChildren = 'parent___children___children', | |
| ParentChildrenChildrenId = 'parent___children___children___id', | |
| ParentChildrenChildrenChildren = 'parent___children___children___children', | |
| ParentChildrenInternalContent = 'parent___children___internal___content', | |
| ParentChildrenInternalContentDigest = 'parent___children___internal___contentDigest', | |
| ParentChildrenInternalDescription = 'parent___children___internal___description', | |
| ParentChildrenInternalFieldOwners = 'parent___children___internal___fieldOwners', | |
| ParentChildrenInternalIgnoreType = 'parent___children___internal___ignoreType', | |
| ParentChildrenInternalMediaType = 'parent___children___internal___mediaType', | |
| ParentChildrenInternalOwner = 'parent___children___internal___owner', | |
| ParentChildrenInternalType = 'parent___children___internal___type', | |
| ParentInternalContent = 'parent___internal___content', | |
| ParentInternalContentDigest = 'parent___internal___contentDigest', | |
| ParentInternalDescription = 'parent___internal___description', | |
| ParentInternalFieldOwners = 'parent___internal___fieldOwners', | |
| ParentInternalIgnoreType = 'parent___internal___ignoreType', | |
| ParentInternalMediaType = 'parent___internal___mediaType', | |
| ParentInternalOwner = 'parent___internal___owner', | |
| ParentInternalType = 'parent___internal___type', | |
| Children = 'children', | |
| ChildrenId = 'children___id', | |
| ChildrenParentId = 'children___parent___id', | |
| ChildrenParentParentId = 'children___parent___parent___id', | |
| ChildrenParentParentChildren = 'children___parent___parent___children', | |
| ChildrenParentChildren = 'children___parent___children', | |
| ChildrenParentChildrenId = 'children___parent___children___id', | |
| ChildrenParentChildrenChildren = 'children___parent___children___children', | |
| ChildrenParentInternalContent = 'children___parent___internal___content', | |
| ChildrenParentInternalContentDigest = 'children___parent___internal___contentDigest', | |
| ChildrenParentInternalDescription = 'children___parent___internal___description', | |
| ChildrenParentInternalFieldOwners = 'children___parent___internal___fieldOwners', | |
| ChildrenParentInternalIgnoreType = 'children___parent___internal___ignoreType', | |
| ChildrenParentInternalMediaType = 'children___parent___internal___mediaType', | |
| ChildrenParentInternalOwner = 'children___parent___internal___owner', | |
| ChildrenParentInternalType = 'children___parent___internal___type', | |
| ChildrenChildren = 'children___children', | |
| ChildrenChildrenId = 'children___children___id', | |
| ChildrenChildrenParentId = 'children___children___parent___id', | |
| ChildrenChildrenParentChildren = 'children___children___parent___children', | |
| ChildrenChildrenChildren = 'children___children___children', | |
| ChildrenChildrenChildrenId = 'children___children___children___id', | |
| ChildrenChildrenChildrenChildren = 'children___children___children___children', | |
| ChildrenChildrenInternalContent = 'children___children___internal___content', | |
| ChildrenChildrenInternalContentDigest = 'children___children___internal___contentDigest', | |
| ChildrenChildrenInternalDescription = 'children___children___internal___description', | |
| ChildrenChildrenInternalFieldOwners = 'children___children___internal___fieldOwners', | |
| ChildrenChildrenInternalIgnoreType = 'children___children___internal___ignoreType', | |
| ChildrenChildrenInternalMediaType = 'children___children___internal___mediaType', | |
| ChildrenChildrenInternalOwner = 'children___children___internal___owner', | |
| ChildrenChildrenInternalType = 'children___children___internal___type', | |
| ChildrenInternalContent = 'children___internal___content', | |
| ChildrenInternalContentDigest = 'children___internal___contentDigest', | |
| ChildrenInternalDescription = 'children___internal___description', | |
| ChildrenInternalFieldOwners = 'children___internal___fieldOwners', | |
| ChildrenInternalIgnoreType = 'children___internal___ignoreType', | |
| ChildrenInternalMediaType = 'children___internal___mediaType', | |
| ChildrenInternalOwner = 'children___internal___owner', | |
| ChildrenInternalType = 'children___internal___type', | |
| InternalContent = 'internal___content', | |
| InternalContentDigest = 'internal___contentDigest', | |
| InternalDescription = 'internal___description', | |
| InternalFieldOwners = 'internal___fieldOwners', | |
| InternalIgnoreType = 'internal___ignoreType', | |
| InternalMediaType = 'internal___mediaType', | |
| InternalOwner = 'internal___owner', | |
| InternalType = 'internal___type', | |
| SiteMetadataTitle = 'siteMetadata___title', | |
| SiteMetadataAuthor = 'siteMetadata___author', | |
| SiteMetadataDescription = 'siteMetadata___description', | |
| SiteMetadataSiteUrl = 'siteMetadata___siteUrl', | |
| SiteMetadataSocialTwitter = 'siteMetadata___social___twitter', | |
| SiteMetadataSocialFacebook = 'siteMetadata___social___facebook', | |
| SiteMetadataSocialInstagram = 'siteMetadata___social___instagram', | |
| SiteMetadataSocialYoutubeChannelId = 'siteMetadata___social___youtubeChannelId', | |
| Port = 'port', | |
| Host = 'host', | |
| Polyfill = 'polyfill', | |
| PathPrefix = 'pathPrefix', | |
| BuildTime = 'buildTime' | |
| } | |
| export type SiteFilterInput = { | |
| id?: Maybe<StringQueryOperatorInput>, | |
| parent?: Maybe<NodeFilterInput>, | |
| children?: Maybe<NodeFilterListInput>, | |
| internal?: Maybe<InternalFilterInput>, | |
| siteMetadata?: Maybe<SiteSiteMetadataFilterInput>, | |
| port?: Maybe<IntQueryOperatorInput>, | |
| host?: Maybe<StringQueryOperatorInput>, | |
| polyfill?: Maybe<BooleanQueryOperatorInput>, | |
| pathPrefix?: Maybe<StringQueryOperatorInput>, | |
| buildTime?: Maybe<DateQueryOperatorInput>, | |
| }; | |
| export type SiteGroupConnection = { | |
| __typename?: 'SiteGroupConnection', | |
| totalCount: Scalars['Int'], | |
| edges: Array<SiteEdge>, | |
| nodes: Array<Site>, | |
| pageInfo: PageInfo, | |
| field: Scalars['String'], | |
| fieldValue?: Maybe<Scalars['String']>, | |
| }; | |
| export type SitePage = Node & { | |
| __typename?: 'SitePage', | |
| id: Scalars['ID'], | |
| parent?: Maybe<Node>, | |
| children: Array<Node>, | |
| internal: Internal, | |
| path?: Maybe<Scalars['String']>, | |
| internalComponentName?: Maybe<Scalars['String']>, | |
| component?: Maybe<Scalars['String']>, | |
| componentChunkName?: Maybe<Scalars['String']>, | |
| isCreatedByStatefulCreatePages?: Maybe<Scalars['Boolean']>, | |
| context?: Maybe<SitePageContext>, | |
| pluginCreator?: Maybe<SitePlugin>, | |
| pluginCreatorId?: Maybe<Scalars['String']>, | |
| componentPath?: Maybe<Scalars['String']>, | |
| }; | |
| export type SitePageConnection = { | |
| __typename?: 'SitePageConnection', | |
| totalCount: Scalars['Int'], | |
| edges: Array<SitePageEdge>, | |
| nodes: Array<SitePage>, | |
| pageInfo: PageInfo, | |
| distinct: Array<Scalars['String']>, | |
| group: Array<SitePageGroupConnection>, | |
| }; | |
| export type SitePageConnectionDistinctArgs = { | |
| field: SitePageFieldsEnum | |
| }; | |
| export type SitePageConnectionGroupArgs = { | |
| skip?: Maybe<Scalars['Int']>, | |
| limit?: Maybe<Scalars['Int']>, | |
| field: SitePageFieldsEnum | |
| }; | |
| export type SitePageContext = { | |
| __typename?: 'SitePageContext', | |
| slug?: Maybe<Scalars['String']>, | |
| }; | |
| export type SitePageContextFilterInput = { | |
| slug?: Maybe<StringQueryOperatorInput>, | |
| }; | |
| export type SitePageEdge = { | |
| __typename?: 'SitePageEdge', | |
| next?: Maybe<SitePage>, | |
| node: SitePage, | |
| previous?: Maybe<SitePage>, | |
| }; | |
| export enum SitePageFieldsEnum { | |
| Id = 'id', | |
| ParentId = 'parent___id', | |
| ParentParentId = 'parent___parent___id', | |
| ParentParentParentId = 'parent___parent___parent___id', | |
| ParentParentParentChildren = 'parent___parent___parent___children', | |
| ParentParentChildren = 'parent___parent___children', | |
| ParentParentChildrenId = 'parent___parent___children___id', | |
| ParentParentChildrenChildren = 'parent___parent___children___children', | |
| ParentParentInternalContent = 'parent___parent___internal___content', | |
| ParentParentInternalContentDigest = 'parent___parent___internal___contentDigest', | |
| ParentParentInternalDescription = 'parent___parent___internal___description', | |
| ParentParentInternalFieldOwners = 'parent___parent___internal___fieldOwners', | |
| ParentParentInternalIgnoreType = 'parent___parent___internal___ignoreType', | |
| ParentParentInternalMediaType = 'parent___parent___internal___mediaType', | |
| ParentParentInternalOwner = 'parent___parent___internal___owner', | |
| ParentParentInternalType = 'parent___parent___internal___type', | |
| ParentChildren = 'parent___children', | |
| ParentChildrenId = 'parent___children___id', | |
| ParentChildrenParentId = 'parent___children___parent___id', | |
| ParentChildrenParentChildren = 'parent___children___parent___children', | |
| ParentChildrenChildren = 'parent___children___children', | |
| ParentChildrenChildrenId = 'parent___children___children___id', | |
| ParentChildrenChildrenChildren = 'parent___children___children___children', | |
| ParentChildrenInternalContent = 'parent___children___internal___content', | |
| ParentChildrenInternalContentDigest = 'parent___children___internal___contentDigest', | |
| ParentChildrenInternalDescription = 'parent___children___internal___description', | |
| ParentChildrenInternalFieldOwners = 'parent___children___internal___fieldOwners', | |
| ParentChildrenInternalIgnoreType = 'parent___children___internal___ignoreType', | |
| ParentChildrenInternalMediaType = 'parent___children___internal___mediaType', | |
| ParentChildrenInternalOwner = 'parent___children___internal___owner', | |
| ParentChildrenInternalType = 'parent___children___internal___type', | |
| ParentInternalContent = 'parent___internal___content', | |
| ParentInternalContentDigest = 'parent___internal___contentDigest', | |
| ParentInternalDescription = 'parent___internal___description', | |
| ParentInternalFieldOwners = 'parent___internal___fieldOwners', | |
| ParentInternalIgnoreType = 'parent___internal___ignoreType', | |
| ParentInternalMediaType = 'parent___internal___mediaType', | |
| ParentInternalOwner = 'parent___internal___owner', | |
| ParentInternalType = 'parent___internal___type', | |
| Children = 'children', | |
| ChildrenId = 'children___id', | |
| ChildrenParentId = 'children___parent___id', | |
| ChildrenParentParentId = 'children___parent___parent___id', | |
| ChildrenParentParentChildren = 'children___parent___parent___children', | |
| ChildrenParentChildren = 'children___parent___children', | |
| ChildrenParentChildrenId = 'children___parent___children___id', | |
| ChildrenParentChildrenChildren = 'children___parent___children___children', | |
| ChildrenParentInternalContent = 'children___parent___internal___content', | |
| ChildrenParentInternalContentDigest = 'children___parent___internal___contentDigest', | |
| ChildrenParentInternalDescription = 'children___parent___internal___description', | |
| ChildrenParentInternalFieldOwners = 'children___parent___internal___fieldOwners', | |
| ChildrenParentInternalIgnoreType = 'children___parent___internal___ignoreType', | |
| ChildrenParentInternalMediaType = 'children___parent___internal___mediaType', | |
| ChildrenParentInternalOwner = 'children___parent___internal___owner', | |
| ChildrenParentInternalType = 'children___parent___internal___type', | |
| ChildrenChildren = 'children___children', | |
| ChildrenChildrenId = 'children___children___id', | |
| ChildrenChildrenParentId = 'children___children___parent___id', | |
| ChildrenChildrenParentChildren = 'children___children___parent___children', | |
| ChildrenChildrenChildren = 'children___children___children', | |
| ChildrenChildrenChildrenId = 'children___children___children___id', | |
| ChildrenChildrenChildrenChildren = 'children___children___children___children', | |
| ChildrenChildrenInternalContent = 'children___children___internal___content', | |
| ChildrenChildrenInternalContentDigest = 'children___children___internal___contentDigest', | |
| ChildrenChildrenInternalDescription = 'children___children___internal___description', | |
| ChildrenChildrenInternalFieldOwners = 'children___children___internal___fieldOwners', | |
| ChildrenChildrenInternalIgnoreType = 'children___children___internal___ignoreType', | |
| ChildrenChildrenInternalMediaType = 'children___children___internal___mediaType', | |
| ChildrenChildrenInternalOwner = 'children___children___internal___owner', | |
| ChildrenChildrenInternalType = 'children___children___internal___type', | |
| ChildrenInternalContent = 'children___internal___content', | |
| ChildrenInternalContentDigest = 'children___internal___contentDigest', | |
| ChildrenInternalDescription = 'children___internal___description', | |
| ChildrenInternalFieldOwners = 'children___internal___fieldOwners', | |
| ChildrenInternalIgnoreType = 'children___internal___ignoreType', | |
| ChildrenInternalMediaType = 'children___internal___mediaType', | |
| ChildrenInternalOwner = 'children___internal___owner', | |
| ChildrenInternalType = 'children___internal___type', | |
| InternalContent = 'internal___content', | |
| InternalContentDigest = 'internal___contentDigest', | |
| InternalDescription = 'internal___description', | |
| InternalFieldOwners = 'internal___fieldOwners', | |
| InternalIgnoreType = 'internal___ignoreType', | |
| InternalMediaType = 'internal___mediaType', | |
| InternalOwner = 'internal___owner', | |
| InternalType = 'internal___type', | |
| Path = 'path', | |
| InternalComponentName = 'internalComponentName', | |
| Component = 'component', | |
| ComponentChunkName = 'componentChunkName', | |
| IsCreatedByStatefulCreatePages = 'isCreatedByStatefulCreatePages', | |
| ContextSlug = 'context___slug', | |
| PluginCreatorId = 'pluginCreator___id', | |
| PluginCreatorParentId = 'pluginCreator___parent___id', | |
| PluginCreatorParentParentId = 'pluginCreator___parent___parent___id', | |
| PluginCreatorParentParentChildren = 'pluginCreator___parent___parent___children', | |
| PluginCreatorParentChildren = 'pluginCreator___parent___children', | |
| PluginCreatorParentChildrenId = 'pluginCreator___parent___children___id', | |
| PluginCreatorParentChildrenChildren = 'pluginCreator___parent___children___children', | |
| PluginCreatorParentInternalContent = 'pluginCreator___parent___internal___content', | |
| PluginCreatorParentInternalContentDigest = 'pluginCreator___parent___internal___contentDigest', | |
| PluginCreatorParentInternalDescription = 'pluginCreator___parent___internal___description', | |
| PluginCreatorParentInternalFieldOwners = 'pluginCreator___parent___internal___fieldOwners', | |
| PluginCreatorParentInternalIgnoreType = 'pluginCreator___parent___internal___ignoreType', | |
| PluginCreatorParentInternalMediaType = 'pluginCreator___parent___internal___mediaType', | |
| PluginCreatorParentInternalOwner = 'pluginCreator___parent___internal___owner', | |
| PluginCreatorParentInternalType = 'pluginCreator___parent___internal___type', | |
| PluginCreatorChildren = 'pluginCreator___children', | |
| PluginCreatorChildrenId = 'pluginCreator___children___id', | |
| PluginCreatorChildrenParentId = 'pluginCreator___children___parent___id', | |
| PluginCreatorChildrenParentChildren = 'pluginCreator___children___parent___children', | |
| PluginCreatorChildrenChildren = 'pluginCreator___children___children', | |
| PluginCreatorChildrenChildrenId = 'pluginCreator___children___children___id', | |
| PluginCreatorChildrenChildrenChildren = 'pluginCreator___children___children___children', | |
| PluginCreatorChildrenInternalContent = 'pluginCreator___children___internal___content', | |
| PluginCreatorChildrenInternalContentDigest = 'pluginCreator___children___internal___contentDigest', | |
| PluginCreatorChildrenInternalDescription = 'pluginCreator___children___internal___description', | |
| PluginCreatorChildrenInternalFieldOwners = 'pluginCreator___children___internal___fieldOwners', | |
| PluginCreatorChildrenInternalIgnoreType = 'pluginCreator___children___internal___ignoreType', | |
| PluginCreatorChildrenInternalMediaType = 'pluginCreator___children___internal___mediaType', | |
| PluginCreatorChildrenInternalOwner = 'pluginCreator___children___internal___owner', | |
| PluginCreatorChildrenInternalType = 'pluginCreator___children___internal___type', | |
| PluginCreatorInternalContent = 'pluginCreator___internal___content', | |
| PluginCreatorInternalContentDigest = 'pluginCreator___internal___contentDigest', | |
| PluginCreatorInternalDescription = 'pluginCreator___internal___description', | |
| PluginCreatorInternalFieldOwners = 'pluginCreator___internal___fieldOwners', | |
| PluginCreatorInternalIgnoreType = 'pluginCreator___internal___ignoreType', | |
| PluginCreatorInternalMediaType = 'pluginCreator___internal___mediaType', | |
| PluginCreatorInternalOwner = 'pluginCreator___internal___owner', | |
| PluginCreatorInternalType = 'pluginCreator___internal___type', | |
| PluginCreatorResolve = 'pluginCreator___resolve', | |
| PluginCreatorName = 'pluginCreator___name', | |
| PluginCreatorVersion = 'pluginCreator___version', | |
| PluginCreatorPluginOptionsName = 'pluginCreator___pluginOptions___name', | |
| PluginCreatorPluginOptionsShortName = 'pluginCreator___pluginOptions___short_name', | |
| PluginCreatorPluginOptionsStartUrl = 'pluginCreator___pluginOptions___start_url', | |
| PluginCreatorPluginOptionsBackgroundColor = 'pluginCreator___pluginOptions___background_color', | |
| PluginCreatorPluginOptionsThemeColor = 'pluginCreator___pluginOptions___theme_color', | |
| PluginCreatorPluginOptionsDisplay = 'pluginCreator___pluginOptions___display', | |
| PluginCreatorPluginOptionsSpaceId = 'pluginCreator___pluginOptions___spaceId', | |
| PluginCreatorPluginOptionsAccessToken = 'pluginCreator___pluginOptions___accessToken', | |
| PluginCreatorPluginOptionsEnvironment = 'pluginCreator___pluginOptions___environment', | |
| PluginCreatorPluginOptionsPath = 'pluginCreator___pluginOptions___path', | |
| PluginCreatorPluginOptionsPathCheck = 'pluginCreator___pluginOptions___pathCheck', | |
| PluginCreatorNodeApIs = 'pluginCreator___nodeAPIs', | |
| PluginCreatorBrowserApIs = 'pluginCreator___browserAPIs', | |
| PluginCreatorSsrApIs = 'pluginCreator___ssrAPIs', | |
| PluginCreatorPluginFilepath = 'pluginCreator___pluginFilepath', | |
| PluginCreatorPackageJsonName = 'pluginCreator___packageJson___name', | |
| PluginCreatorPackageJsonDescription = 'pluginCreator___packageJson___description', | |
| PluginCreatorPackageJsonVersion = 'pluginCreator___packageJson___version', | |
| PluginCreatorPackageJsonMain = 'pluginCreator___packageJson___main', | |
| PluginCreatorPackageJsonLicense = 'pluginCreator___packageJson___license', | |
| PluginCreatorPackageJsonDependencies = 'pluginCreator___packageJson___dependencies', | |
| PluginCreatorPackageJsonDependenciesName = 'pluginCreator___packageJson___dependencies___name', | |
| PluginCreatorPackageJsonDependenciesVersion = 'pluginCreator___packageJson___dependencies___version', | |
| PluginCreatorPackageJsonDevDependencies = 'pluginCreator___packageJson___devDependencies', | |
| PluginCreatorPackageJsonDevDependenciesName = 'pluginCreator___packageJson___devDependencies___name', | |
| PluginCreatorPackageJsonDevDependenciesVersion = 'pluginCreator___packageJson___devDependencies___version', | |
| PluginCreatorPackageJsonPeerDependencies = 'pluginCreator___packageJson___peerDependencies', | |
| PluginCreatorPackageJsonPeerDependenciesName = 'pluginCreator___packageJson___peerDependencies___name', | |
| PluginCreatorPackageJsonPeerDependenciesVersion = 'pluginCreator___packageJson___peerDependencies___version', | |
| PluginCreatorPackageJsonKeywords = 'pluginCreator___packageJson___keywords', | |
| PluginCreatorId = 'pluginCreatorId', | |
| ComponentPath = 'componentPath' | |
| } | |
| export type SitePageFilterInput = { | |
| id?: Maybe<StringQueryOperatorInput>, | |
| parent?: Maybe<NodeFilterInput>, | |
| children?: Maybe<NodeFilterListInput>, | |
| internal?: Maybe<InternalFilterInput>, | |
| path?: Maybe<StringQueryOperatorInput>, | |
| internalComponentName?: Maybe<StringQueryOperatorInput>, | |
| component?: Maybe<StringQueryOperatorInput>, | |
| componentChunkName?: Maybe<StringQueryOperatorInput>, | |
| isCreatedByStatefulCreatePages?: Maybe<BooleanQueryOperatorInput>, | |
| context?: Maybe<SitePageContextFilterInput>, | |
| pluginCreator?: Maybe<SitePluginFilterInput>, | |
| pluginCreatorId?: Maybe<StringQueryOperatorInput>, | |
| componentPath?: Maybe<StringQueryOperatorInput>, | |
| }; | |
| export type SitePageGroupConnection = { | |
| __typename?: 'SitePageGroupConnection', | |
| totalCount: Scalars['Int'], | |
| edges: Array<SitePageEdge>, | |
| nodes: Array<SitePage>, | |
| pageInfo: PageInfo, | |
| field: Scalars['String'], | |
| fieldValue?: Maybe<Scalars['String']>, | |
| }; | |
| export type SitePageSortInput = { | |
| fields?: Maybe<Array<Maybe<SitePageFieldsEnum>>>, | |
| order?: Maybe<Array<Maybe<SortOrderEnum>>>, | |
| }; | |
| export type SitePlugin = Node & { | |
| __typename?: 'SitePlugin', | |
| id: Scalars['ID'], | |
| parent?: Maybe<Node>, | |
| children: Array<Node>, | |
| internal: Internal, | |
| resolve?: Maybe<Scalars['String']>, | |
| name?: Maybe<Scalars['String']>, | |
| version?: Maybe<Scalars['String']>, | |
| pluginOptions?: Maybe<SitePluginPluginOptions>, | |
| nodeAPIs?: Maybe<Array<Maybe<Scalars['String']>>>, | |
| browserAPIs?: Maybe<Array<Maybe<Scalars['String']>>>, | |
| ssrAPIs?: Maybe<Array<Maybe<Scalars['String']>>>, | |
| pluginFilepath?: Maybe<Scalars['String']>, | |
| packageJson?: Maybe<SitePluginPackageJson>, | |
| }; | |
| export type SitePluginConnection = { | |
| __typename?: 'SitePluginConnection', | |
| totalCount: Scalars['Int'], | |
| edges: Array<SitePluginEdge>, | |
| nodes: Array<SitePlugin>, | |
| pageInfo: PageInfo, | |
| distinct: Array<Scalars['String']>, | |
| group: Array<SitePluginGroupConnection>, | |
| }; | |
| export type SitePluginConnectionDistinctArgs = { | |
| field: SitePluginFieldsEnum | |
| }; | |
| export type SitePluginConnectionGroupArgs = { | |
| skip?: Maybe<Scalars['Int']>, | |
| limit?: Maybe<Scalars['Int']>, | |
| field: SitePluginFieldsEnum | |
| }; | |
| export type SitePluginEdge = { | |
| __typename?: 'SitePluginEdge', | |
| next?: Maybe<SitePlugin>, | |
| node: SitePlugin, | |
| previous?: Maybe<SitePlugin>, | |
| }; | |
| export enum SitePluginFieldsEnum { | |
| Id = 'id', | |
| ParentId = 'parent___id', | |
| ParentParentId = 'parent___parent___id', | |
| ParentParentParentId = 'parent___parent___parent___id', | |
| ParentParentParentChildren = 'parent___parent___parent___children', | |
| ParentParentChildren = 'parent___parent___children', | |
| ParentParentChildrenId = 'parent___parent___children___id', | |
| ParentParentChildrenChildren = 'parent___parent___children___children', | |
| ParentParentInternalContent = 'parent___parent___internal___content', | |
| ParentParentInternalContentDigest = 'parent___parent___internal___contentDigest', | |
| ParentParentInternalDescription = 'parent___parent___internal___description', | |
| ParentParentInternalFieldOwners = 'parent___parent___internal___fieldOwners', | |
| ParentParentInternalIgnoreType = 'parent___parent___internal___ignoreType', | |
| ParentParentInternalMediaType = 'parent___parent___internal___mediaType', | |
| ParentParentInternalOwner = 'parent___parent___internal___owner', | |
| ParentParentInternalType = 'parent___parent___internal___type', | |
| ParentChildren = 'parent___children', | |
| ParentChildrenId = 'parent___children___id', | |
| ParentChildrenParentId = 'parent___children___parent___id', | |
| ParentChildrenParentChildren = 'parent___children___parent___children', | |
| ParentChildrenChildren = 'parent___children___children', | |
| ParentChildrenChildrenId = 'parent___children___children___id', | |
| ParentChildrenChildrenChildren = 'parent___children___children___children', | |
| ParentChildrenInternalContent = 'parent___children___internal___content', | |
| ParentChildrenInternalContentDigest = 'parent___children___internal___contentDigest', | |
| ParentChildrenInternalDescription = 'parent___children___internal___description', | |
| ParentChildrenInternalFieldOwners = 'parent___children___internal___fieldOwners', | |
| ParentChildrenInternalIgnoreType = 'parent___children___internal___ignoreType', | |
| ParentChildrenInternalMediaType = 'parent___children___internal___mediaType', | |
| ParentChildrenInternalOwner = 'parent___children___internal___owner', | |
| ParentChildrenInternalType = 'parent___children___internal___type', | |
| ParentInternalContent = 'parent___internal___content', | |
| ParentInternalContentDigest = 'parent___internal___contentDigest', | |
| ParentInternalDescription = 'parent___internal___description', | |
| ParentInternalFieldOwners = 'parent___internal___fieldOwners', | |
| ParentInternalIgnoreType = 'parent___internal___ignoreType', | |
| ParentInternalMediaType = 'parent___internal___mediaType', | |
| ParentInternalOwner = 'parent___internal___owner', | |
| ParentInternalType = 'parent___internal___type', | |
| Children = 'children', | |
| ChildrenId = 'children___id', | |
| ChildrenParentId = 'children___parent___id', | |
| ChildrenParentParentId = 'children___parent___parent___id', | |
| ChildrenParentParentChildren = 'children___parent___parent___children', | |
| ChildrenParentChildren = 'children___parent___children', | |
| ChildrenParentChildrenId = 'children___parent___children___id', | |
| ChildrenParentChildrenChildren = 'children___parent___children___children', | |
| ChildrenParentInternalContent = 'children___parent___internal___content', | |
| ChildrenParentInternalContentDigest = 'children___parent___internal___contentDigest', | |
| ChildrenParentInternalDescription = 'children___parent___internal___description', | |
| ChildrenParentInternalFieldOwners = 'children___parent___internal___fieldOwners', | |
| ChildrenParentInternalIgnoreType = 'children___parent___internal___ignoreType', | |
| ChildrenParentInternalMediaType = 'children___parent___internal___mediaType', | |
| ChildrenParentInternalOwner = 'children___parent___internal___owner', | |
| ChildrenParentInternalType = 'children___parent___internal___type', | |
| ChildrenChildren = 'children___children', | |
| ChildrenChildrenId = 'children___children___id', | |
| ChildrenChildrenParentId = 'children___children___parent___id', | |
| ChildrenChildrenParentChildren = 'children___children___parent___children', | |
| ChildrenChildrenChildren = 'children___children___children', | |
| ChildrenChildrenChildrenId = 'children___children___children___id', | |
| ChildrenChildrenChildrenChildren = 'children___children___children___children', | |
| ChildrenChildrenInternalContent = 'children___children___internal___content', | |
| ChildrenChildrenInternalContentDigest = 'children___children___internal___contentDigest', | |
| ChildrenChildrenInternalDescription = 'children___children___internal___description', | |
| ChildrenChildrenInternalFieldOwners = 'children___children___internal___fieldOwners', | |
| ChildrenChildrenInternalIgnoreType = 'children___children___internal___ignoreType', | |
| ChildrenChildrenInternalMediaType = 'children___children___internal___mediaType', | |
| ChildrenChildrenInternalOwner = 'children___children___internal___owner', | |
| ChildrenChildrenInternalType = 'children___children___internal___type', | |
| ChildrenInternalContent = 'children___internal___content', | |
| ChildrenInternalContentDigest = 'children___internal___contentDigest', | |
| ChildrenInternalDescription = 'children___internal___description', | |
| ChildrenInternalFieldOwners = 'children___internal___fieldOwners', | |
| ChildrenInternalIgnoreType = 'children___internal___ignoreType', | |
| ChildrenInternalMediaType = 'children___internal___mediaType', | |
| ChildrenInternalOwner = 'children___internal___owner', | |
| ChildrenInternalType = 'children___internal___type', | |
| InternalContent = 'internal___content', | |
| InternalContentDigest = 'internal___contentDigest', | |
| InternalDescription = 'internal___description', | |
| InternalFieldOwners = 'internal___fieldOwners', | |
| InternalIgnoreType = 'internal___ignoreType', | |
| InternalMediaType = 'internal___mediaType', | |
| InternalOwner = 'internal___owner', | |
| InternalType = 'internal___type', | |
| Resolve = 'resolve', | |
| Name = 'name', | |
| Version = 'version', | |
| PluginOptionsName = 'pluginOptions___name', | |
| PluginOptionsShortName = 'pluginOptions___short_name', | |
| PluginOptionsStartUrl = 'pluginOptions___start_url', | |
| PluginOptionsBackgroundColor = 'pluginOptions___background_color', | |
| PluginOptionsThemeColor = 'pluginOptions___theme_color', | |
| PluginOptionsDisplay = 'pluginOptions___display', | |
| PluginOptionsSpaceId = 'pluginOptions___spaceId', | |
| PluginOptionsAccessToken = 'pluginOptions___accessToken', | |
| PluginOptionsEnvironment = 'pluginOptions___environment', | |
| PluginOptionsPath = 'pluginOptions___path', | |
| PluginOptionsPathCheck = 'pluginOptions___pathCheck', | |
| NodeApIs = 'nodeAPIs', | |
| BrowserApIs = 'browserAPIs', | |
| SsrApIs = 'ssrAPIs', | |
| PluginFilepath = 'pluginFilepath', | |
| PackageJsonName = 'packageJson___name', | |
| PackageJsonDescription = 'packageJson___description', | |
| PackageJsonVersion = 'packageJson___version', | |
| PackageJsonMain = 'packageJson___main', | |
| PackageJsonLicense = 'packageJson___license', | |
| PackageJsonDependencies = 'packageJson___dependencies', | |
| PackageJsonDependenciesName = 'packageJson___dependencies___name', | |
| PackageJsonDependenciesVersion = 'packageJson___dependencies___version', | |
| PackageJsonDevDependencies = 'packageJson___devDependencies', | |
| PackageJsonDevDependenciesName = 'packageJson___devDependencies___name', | |
| PackageJsonDevDependenciesVersion = 'packageJson___devDependencies___version', | |
| PackageJsonPeerDependencies = 'packageJson___peerDependencies', | |
| PackageJsonPeerDependenciesName = 'packageJson___peerDependencies___name', | |
| PackageJsonPeerDependenciesVersion = 'packageJson___peerDependencies___version', | |
| PackageJsonKeywords = 'packageJson___keywords' | |
| } | |
| export type SitePluginFilterInput = { | |
| id?: Maybe<StringQueryOperatorInput>, | |
| parent?: Maybe<NodeFilterInput>, | |
| children?: Maybe<NodeFilterListInput>, | |
| internal?: Maybe<InternalFilterInput>, | |
| resolve?: Maybe<StringQueryOperatorInput>, | |
| name?: Maybe<StringQueryOperatorInput>, | |
| version?: Maybe<StringQueryOperatorInput>, | |
| pluginOptions?: Maybe<SitePluginPluginOptionsFilterInput>, | |
| nodeAPIs?: Maybe<StringQueryOperatorInput>, | |
| browserAPIs?: Maybe<StringQueryOperatorInput>, | |
| ssrAPIs?: Maybe<StringQueryOperatorInput>, | |
| pluginFilepath?: Maybe<StringQueryOperatorInput>, | |
| packageJson?: Maybe<SitePluginPackageJsonFilterInput>, | |
| }; | |
| export type SitePluginGroupConnection = { | |
| __typename?: 'SitePluginGroupConnection', | |
| totalCount: Scalars['Int'], | |
| edges: Array<SitePluginEdge>, | |
| nodes: Array<SitePlugin>, | |
| pageInfo: PageInfo, | |
| field: Scalars['String'], | |
| fieldValue?: Maybe<Scalars['String']>, | |
| }; | |
| export type SitePluginPackageJson = { | |
| __typename?: 'SitePluginPackageJson', | |
| name?: Maybe<Scalars['String']>, | |
| description?: Maybe<Scalars['String']>, | |
| version?: Maybe<Scalars['String']>, | |
| main?: Maybe<Scalars['String']>, | |
| license?: Maybe<Scalars['String']>, | |
| dependencies?: Maybe<Array<Maybe<SitePluginPackageJsonDependencies>>>, | |
| devDependencies?: Maybe<Array<Maybe<SitePluginPackageJsonDevDependencies>>>, | |
| peerDependencies?: Maybe<Array<Maybe<SitePluginPackageJsonPeerDependencies>>>, | |
| keywords?: Maybe<Array<Maybe<Scalars['String']>>>, | |
| }; | |
| export type SitePluginPackageJsonDependencies = { | |
| __typename?: 'SitePluginPackageJsonDependencies', | |
| name?: Maybe<Scalars['String']>, | |
| version?: Maybe<Scalars['String']>, | |
| }; | |
| export type SitePluginPackageJsonDependenciesFilterInput = { | |
| name?: Maybe<StringQueryOperatorInput>, | |
| version?: Maybe<StringQueryOperatorInput>, | |
| }; | |
| export type SitePluginPackageJsonDependenciesFilterListInput = { | |
| elemMatch?: Maybe<SitePluginPackageJsonDependenciesFilterInput>, | |
| }; | |
| export type SitePluginPackageJsonDevDependencies = { | |
| __typename?: 'SitePluginPackageJsonDevDependencies', | |
| name?: Maybe<Scalars['String']>, | |
| version?: Maybe<Scalars['String']>, | |
| }; | |
| export type SitePluginPackageJsonDevDependenciesFilterInput = { | |
| name?: Maybe<StringQueryOperatorInput>, | |
| version?: Maybe<StringQueryOperatorInput>, | |
| }; | |
| export type SitePluginPackageJsonDevDependenciesFilterListInput = { | |
| elemMatch?: Maybe<SitePluginPackageJsonDevDependenciesFilterInput>, | |
| }; | |
| export type SitePluginPackageJsonFilterInput = { | |
| name?: Maybe<StringQueryOperatorInput>, | |
| description?: Maybe<StringQueryOperatorInput>, | |
| version?: Maybe<StringQueryOperatorInput>, | |
| main?: Maybe<StringQueryOperatorInput>, | |
| license?: Maybe<StringQueryOperatorInput>, | |
| dependencies?: Maybe<SitePluginPackageJsonDependenciesFilterListInput>, | |
| devDependencies?: Maybe<SitePluginPackageJsonDevDependenciesFilterListInput>, | |
| peerDependencies?: Maybe<SitePluginPackageJsonPeerDependenciesFilterListInput>, | |
| keywords?: Maybe<StringQueryOperatorInput>, | |
| }; | |
| export type SitePluginPackageJsonPeerDependencies = { | |
| __typename?: 'SitePluginPackageJsonPeerDependencies', | |
| name?: Maybe<Scalars['String']>, | |
| version?: Maybe<Scalars['String']>, | |
| }; | |
| export type SitePluginPackageJsonPeerDependenciesFilterInput = { | |
| name?: Maybe<StringQueryOperatorInput>, | |
| version?: Maybe<StringQueryOperatorInput>, | |
| }; | |
| export type SitePluginPackageJsonPeerDependenciesFilterListInput = { | |
| elemMatch?: Maybe<SitePluginPackageJsonPeerDependenciesFilterInput>, | |
| }; | |
| export type SitePluginPluginOptions = { | |
| __typename?: 'SitePluginPluginOptions', | |
| name?: Maybe<Scalars['String']>, | |
| short_name?: Maybe<Scalars['String']>, | |
| start_url?: Maybe<Scalars['String']>, | |
| background_color?: Maybe<Scalars['String']>, | |
| theme_color?: Maybe<Scalars['String']>, | |
| display?: Maybe<Scalars['String']>, | |
| spaceId?: Maybe<Scalars['String']>, | |
| accessToken?: Maybe<Scalars['String']>, | |
| environment?: Maybe<Scalars['String']>, | |
| path?: Maybe<Scalars['String']>, | |
| pathCheck?: Maybe<Scalars['Boolean']>, | |
| }; | |
| export type SitePluginPluginOptionsFilterInput = { | |
| name?: Maybe<StringQueryOperatorInput>, | |
| short_name?: Maybe<StringQueryOperatorInput>, | |
| start_url?: Maybe<StringQueryOperatorInput>, | |
| background_color?: Maybe<StringQueryOperatorInput>, | |
| theme_color?: Maybe<StringQueryOperatorInput>, | |
| display?: Maybe<StringQueryOperatorInput>, | |
| spaceId?: Maybe<StringQueryOperatorInput>, | |
| accessToken?: Maybe<StringQueryOperatorInput>, | |
| environment?: Maybe<StringQueryOperatorInput>, | |
| path?: Maybe<StringQueryOperatorInput>, | |
| pathCheck?: Maybe<BooleanQueryOperatorInput>, | |
| }; | |
| export type SitePluginSortInput = { | |
| fields?: Maybe<Array<Maybe<SitePluginFieldsEnum>>>, | |
| order?: Maybe<Array<Maybe<SortOrderEnum>>>, | |
| }; | |
| export type SiteSiteMetadata = { | |
| __typename?: 'SiteSiteMetadata', | |
| title?: Maybe<Scalars['String']>, | |
| author?: Maybe<Scalars['String']>, | |
| description?: Maybe<Scalars['String']>, | |
| siteUrl?: Maybe<Scalars['String']>, | |
| social?: Maybe<SiteSiteMetadataSocial>, | |
| }; | |
| export type SiteSiteMetadataFilterInput = { | |
| title?: Maybe<StringQueryOperatorInput>, | |
| author?: Maybe<StringQueryOperatorInput>, | |
| description?: Maybe<StringQueryOperatorInput>, | |
| siteUrl?: Maybe<StringQueryOperatorInput>, | |
| social?: Maybe<SiteSiteMetadataSocialFilterInput>, | |
| }; | |
| export type SiteSiteMetadataSocial = { | |
| __typename?: 'SiteSiteMetadataSocial', | |
| twitter?: Maybe<Scalars['String']>, | |
| facebook?: Maybe<Scalars['String']>, | |
| instagram?: Maybe<Scalars['String']>, | |
| youtubeChannelId?: Maybe<Scalars['String']>, | |
| }; | |
| export type SiteSiteMetadataSocialFilterInput = { | |
| twitter?: Maybe<StringQueryOperatorInput>, | |
| facebook?: Maybe<StringQueryOperatorInput>, | |
| instagram?: Maybe<StringQueryOperatorInput>, | |
| youtubeChannelId?: Maybe<StringQueryOperatorInput>, | |
| }; | |
| export type SiteSortInput = { | |
| fields?: Maybe<Array<Maybe<SiteFieldsEnum>>>, | |
| order?: Maybe<Array<Maybe<SortOrderEnum>>>, | |
| }; | |
| export enum SortOrderEnum { | |
| Asc = 'ASC', | |
| Desc = 'DESC' | |
| } | |
| export type StringQueryOperatorInput = { | |
| eq?: Maybe<Scalars['String']>, | |
| ne?: Maybe<Scalars['String']>, | |
| in?: Maybe<Array<Maybe<Scalars['String']>>>, | |
| nin?: Maybe<Array<Maybe<Scalars['String']>>>, | |
| regex?: Maybe<Scalars['String']>, | |
| glob?: Maybe<Scalars['String']>, | |
| }; | |
| export type GatsbyContentfulFixedFragment = ( | |
| { __typename?: 'ContentfulFixed' } | |
| & Pick<ContentfulFixed, 'base64' | 'width' | 'height' | 'src' | 'srcSet'> | |
| ); | |
| export type GatsbyContentfulFixed_TracedSvgFragment = ( | |
| { __typename?: 'ContentfulFixed' } | |
| & Pick<ContentfulFixed, 'tracedSVG' | 'width' | 'height' | 'src' | 'srcSet'> | |
| ); | |
| export type GatsbyContentfulFixed_NoBase64Fragment = ( | |
| { __typename?: 'ContentfulFixed' } | |
| & Pick<ContentfulFixed, 'width' | 'height' | 'src' | 'srcSet'> | |
| ); | |
| export type GatsbyContentfulFixed_WithWebpFragment = ( | |
| { __typename?: 'ContentfulFixed' } | |
| & Pick<ContentfulFixed, 'base64' | 'width' | 'height' | 'src' | 'srcSet' | 'srcWebp' | 'srcSetWebp'> | |
| ); | |
| export type GatsbyContentfulFixed_WithWebp_NoBase64Fragment = ( | |
| { __typename?: 'ContentfulFixed' } | |
| & Pick<ContentfulFixed, 'width' | 'height' | 'src' | 'srcSet' | 'srcWebp' | 'srcSetWebp'> | |
| ); | |
| export type GatsbyContentfulFluidFragment = ( | |
| { __typename?: 'ContentfulFluid' } | |
| & Pick<ContentfulFluid, 'base64' | 'aspectRatio' | 'src' | 'srcSet' | 'sizes'> | |
| ); | |
| export type GatsbyContentfulFluid_TracedSvgFragment = ( | |
| { __typename?: 'ContentfulFluid' } | |
| & Pick<ContentfulFluid, 'tracedSVG' | 'aspectRatio' | 'src' | 'srcSet' | 'sizes'> | |
| ); | |
| export type GatsbyContentfulFluid_NoBase64Fragment = ( | |
| { __typename?: 'ContentfulFluid' } | |
| & Pick<ContentfulFluid, 'aspectRatio' | 'src' | 'srcSet' | 'sizes'> | |
| ); | |
| export type GatsbyContentfulFluid_WithWebpFragment = ( | |
| { __typename?: 'ContentfulFluid' } | |
| & Pick<ContentfulFluid, 'base64' | 'aspectRatio' | 'src' | 'srcSet' | 'srcWebp' | 'srcSetWebp' | 'sizes'> | |
| ); | |
| export type GatsbyContentfulFluid_WithWebp_NoBase64Fragment = ( | |
| { __typename?: 'ContentfulFluid' } | |
| & Pick<ContentfulFluid, 'aspectRatio' | 'src' | 'srcSet' | 'srcWebp' | 'srcSetWebp' | 'sizes'> | |
| ); | |
| export type GatsbyContentfulResolutionsFragment = ( | |
| { __typename?: 'ContentfulResolutions' } | |
| & Pick<ContentfulResolutions, 'base64' | 'width' | 'height' | 'src' | 'srcSet'> | |
| ); | |
| export type GatsbyContentfulResolutions_TracedSvgFragment = ( | |
| { __typename?: 'ContentfulResolutions' } | |
| & Pick<ContentfulResolutions, 'tracedSVG' | 'width' | 'height' | 'src' | 'srcSet'> | |
| ); | |
| export type GatsbyContentfulResolutions_NoBase64Fragment = ( | |
| { __typename?: 'ContentfulResolutions' } | |
| & Pick<ContentfulResolutions, 'width' | 'height' | 'src' | 'srcSet'> | |
| ); | |
| export type GatsbyContentfulResolutions_WithWebpFragment = ( | |
| { __typename?: 'ContentfulResolutions' } | |
| & Pick<ContentfulResolutions, 'base64' | 'width' | 'height' | 'src' | 'srcSet' | 'srcWebp' | 'srcSetWebp'> | |
| ); | |
| export type GatsbyContentfulResolutions_WithWebp_NoBase64Fragment = ( | |
| { __typename?: 'ContentfulResolutions' } | |
| & Pick<ContentfulResolutions, 'width' | 'height' | 'src' | 'srcSet' | 'srcWebp' | 'srcSetWebp'> | |
| ); | |
| export type GatsbyContentfulSizesFragment = ( | |
| { __typename?: 'ContentfulSizes' } | |
| & Pick<ContentfulSizes, 'base64' | 'aspectRatio' | 'src' | 'srcSet' | 'sizes'> | |
| ); | |
| export type GatsbyContentfulSizes_TracedSvgFragment = ( | |
| { __typename?: 'ContentfulSizes' } | |
| & Pick<ContentfulSizes, 'tracedSVG' | 'aspectRatio' | 'src' | 'srcSet' | 'sizes'> | |
| ); | |
| export type GatsbyContentfulSizes_NoBase64Fragment = ( | |
| { __typename?: 'ContentfulSizes' } | |
| & Pick<ContentfulSizes, 'aspectRatio' | 'src' | 'srcSet' | 'sizes'> | |
| ); | |
| export type GatsbyContentfulSizes_WithWebpFragment = ( | |
| { __typename?: 'ContentfulSizes' } | |
| & Pick<ContentfulSizes, 'base64' | 'aspectRatio' | 'src' | 'srcSet' | 'srcWebp' | 'srcSetWebp' | 'sizes'> | |
| ); | |
| export type GatsbyContentfulSizes_WithWebp_NoBase64Fragment = ( | |
| { __typename?: 'ContentfulSizes' } | |
| & Pick<ContentfulSizes, 'aspectRatio' | 'src' | 'srcSet' | 'srcWebp' | 'srcSetWebp' | 'sizes'> | |
| ); | |
| export type GatsbyImageSharpFixedFragment = ( | |
| { __typename?: 'ImageSharpFixed' } | |
| & Pick<ImageSharpFixed, 'base64' | 'width' | 'height' | 'src' | 'srcSet'> | |
| ); | |
| export type GatsbyImageSharpFixed_TracedSvgFragment = ( | |
| { __typename?: 'ImageSharpFixed' } | |
| & Pick<ImageSharpFixed, 'tracedSVG' | 'width' | 'height' | 'src' | 'srcSet'> | |
| ); | |
| export type GatsbyImageSharpFixed_WithWebpFragment = ( | |
| { __typename?: 'ImageSharpFixed' } | |
| & Pick<ImageSharpFixed, 'base64' | 'width' | 'height' | 'src' | 'srcSet' | 'srcWebp' | 'srcSetWebp'> | |
| ); | |
| export type GatsbyImageSharpFixed_WithWebp_TracedSvgFragment = ( | |
| { __typename?: 'ImageSharpFixed' } | |
| & Pick<ImageSharpFixed, 'tracedSVG' | 'width' | 'height' | 'src' | 'srcSet' | 'srcWebp' | 'srcSetWebp'> | |
| ); | |
| export type GatsbyImageSharpFixed_NoBase64Fragment = ( | |
| { __typename?: 'ImageSharpFixed' } | |
| & Pick<ImageSharpFixed, 'width' | 'height' | 'src' | 'srcSet'> | |
| ); | |
| export type GatsbyImageSharpFixed_WithWebp_NoBase64Fragment = ( | |
| { __typename?: 'ImageSharpFixed' } | |
| & Pick<ImageSharpFixed, 'width' | 'height' | 'src' | 'srcSet' | 'srcWebp' | 'srcSetWebp'> | |
| ); | |
| export type GatsbyImageSharpFluidFragment = ( | |
| { __typename?: 'ImageSharpFluid' } | |
| & Pick<ImageSharpFluid, 'base64' | 'aspectRatio' | 'src' | 'srcSet' | 'sizes'> | |
| ); | |
| export type GatsbyImageSharpFluid_TracedSvgFragment = ( | |
| { __typename?: 'ImageSharpFluid' } | |
| & Pick<ImageSharpFluid, 'tracedSVG' | 'aspectRatio' | 'src' | 'srcSet' | 'sizes'> | |
| ); | |
| export type GatsbyImageSharpFluid_WithWebpFragment = ( | |
| { __typename?: 'ImageSharpFluid' } | |
| & Pick<ImageSharpFluid, 'base64' | 'aspectRatio' | 'src' | 'srcSet' | 'srcWebp' | 'srcSetWebp' | 'sizes'> | |
| ); | |
| export type GatsbyImageSharpFluid_WithWebp_TracedSvgFragment = ( | |
| { __typename?: 'ImageSharpFluid' } | |
| & Pick<ImageSharpFluid, 'tracedSVG' | 'aspectRatio' | 'src' | 'srcSet' | 'srcWebp' | 'srcSetWebp' | 'sizes'> | |
| ); | |
| export type GatsbyImageSharpFluid_NoBase64Fragment = ( | |
| { __typename?: 'ImageSharpFluid' } | |
| & Pick<ImageSharpFluid, 'aspectRatio' | 'src' | 'srcSet' | 'sizes'> | |
| ); | |
| export type GatsbyImageSharpFluid_WithWebp_NoBase64Fragment = ( | |
| { __typename?: 'ImageSharpFluid' } | |
| & Pick<ImageSharpFluid, 'aspectRatio' | 'src' | 'srcSet' | 'srcWebp' | 'srcSetWebp' | 'sizes'> | |
| ); | |
| export type GatsbyImageSharpResolutionsFragment = ( | |
| { __typename?: 'ImageSharpResolutions' } | |
| & Pick<ImageSharpResolutions, 'base64' | 'width' | 'height' | 'src' | 'srcSet'> | |
| ); | |
| export type GatsbyImageSharpResolutions_TracedSvgFragment = ( | |
| { __typename?: 'ImageSharpResolutions' } | |
| & Pick<ImageSharpResolutions, 'tracedSVG' | 'width' | 'height' | 'src' | 'srcSet'> | |
| ); | |
| export type GatsbyImageSharpResolutions_WithWebpFragment = ( | |
| { __typename?: 'ImageSharpResolutions' } | |
| & Pick<ImageSharpResolutions, 'base64' | 'width' | 'height' | 'src' | 'srcSet' | 'srcWebp' | 'srcSetWebp'> | |
| ); | |
| export type GatsbyImageSharpResolutions_WithWebp_TracedSvgFragment = ( | |
| { __typename?: 'ImageSharpResolutions' } | |
| & Pick<ImageSharpResolutions, 'tracedSVG' | 'width' | 'height' | 'src' | 'srcSet' | 'srcWebp' | 'srcSetWebp'> | |
| ); | |
| export type GatsbyImageSharpResolutions_NoBase64Fragment = ( | |
| { __typename?: 'ImageSharpResolutions' } | |
| & Pick<ImageSharpResolutions, 'width' | 'height' | 'src' | 'srcSet'> | |
| ); | |
| export type GatsbyImageSharpResolutions_WithWebp_NoBase64Fragment = ( | |
| { __typename?: 'ImageSharpResolutions' } | |
| & Pick<ImageSharpResolutions, 'width' | 'height' | 'src' | 'srcSet' | 'srcWebp' | 'srcSetWebp'> | |
| ); | |
| export type GatsbyImageSharpSizesFragment = ( | |
| { __typename?: 'ImageSharpSizes' } | |
| & Pick<ImageSharpSizes, 'base64' | 'aspectRatio' | 'src' | 'srcSet' | 'sizes'> | |
| ); | |
| export type GatsbyImageSharpSizes_TracedSvgFragment = ( | |
| { __typename?: 'ImageSharpSizes' } | |
| & Pick<ImageSharpSizes, 'tracedSVG' | 'aspectRatio' | 'src' | 'srcSet' | 'sizes'> | |
| ); | |
| export type GatsbyImageSharpSizes_WithWebpFragment = ( | |
| { __typename?: 'ImageSharpSizes' } | |
| & Pick<ImageSharpSizes, 'base64' | 'aspectRatio' | 'src' | 'srcSet' | 'srcWebp' | 'srcSetWebp' | 'sizes'> | |
| ); | |
| export type GatsbyImageSharpSizes_WithWebp_TracedSvgFragment = ( | |
| { __typename?: 'ImageSharpSizes' } | |
| & Pick<ImageSharpSizes, 'tracedSVG' | 'aspectRatio' | 'src' | 'srcSet' | 'srcWebp' | 'srcSetWebp' | 'sizes'> | |
| ); | |
| export type GatsbyImageSharpSizes_NoBase64Fragment = ( | |
| { __typename?: 'ImageSharpSizes' } | |
| & Pick<ImageSharpSizes, 'aspectRatio' | 'src' | 'srcSet' | 'sizes'> | |
| ); | |
| export type GatsbyImageSharpSizes_WithWebp_NoBase64Fragment = ( | |
| { __typename?: 'ImageSharpSizes' } | |
| & Pick<ImageSharpSizes, 'aspectRatio' | 'src' | 'srcSet' | 'srcWebp' | 'srcSetWebp' | 'sizes'> | |
| ); | |
| export type HeaderMenuDataQueryQueryVariables = {}; | |
| export type HeaderMenuDataQueryQuery = ( | |
| { __typename?: 'Query' } | |
| & { contentfulMenu: Maybe<( | |
| { __typename?: 'ContentfulMenu' } | |
| & { menuItems: Maybe<Array<Maybe<( | |
| { __typename?: 'ContentfulCategory' } | |
| & Pick<ContentfulCategory, 'title' | 'slug'> | |
| & { internal: ( | |
| { __typename?: 'Internal' } | |
| & Pick<Internal, 'type'> | |
| ) } | |
| )>>> } | |
| )> } | |
| ); | |
| export type HeaderSocialIconsDataQueryQueryVariables = {}; | |
| export type HeaderSocialIconsDataQueryQuery = ( | |
| { __typename?: 'Query' } | |
| & { site: Maybe<( | |
| { __typename?: 'Site' } | |
| & { siteMetadata: Maybe<( | |
| { __typename?: 'SiteSiteMetadata' } | |
| & { social: Maybe<( | |
| { __typename?: 'SiteSiteMetadataSocial' } | |
| & Pick<SiteSiteMetadataSocial, 'twitter' | 'facebook' | 'instagram' | 'youtubeChannelId'> | |
| )> } | |
| )> } | |
| )> } | |
| ); | |
| export type SiteTitleQueryQueryVariables = {}; | |
| export type SiteTitleQueryQuery = ( | |
| { __typename?: 'Query' } | |
| & { site: Maybe<( | |
| { __typename?: 'Site' } | |
| & { siteMetadata: Maybe<( | |
| { __typename?: 'SiteSiteMetadata' } | |
| & Pick<SiteSiteMetadata, 'title'> | |
| )> } | |
| )> } | |
| ); | |
| export type BlogQueryQueryVariables = {}; | |
| export type BlogQueryQuery = ( | |
| { __typename?: 'Query' } | |
| & { allContentfulBlogPost: ( | |
| { __typename?: 'ContentfulBlogPostConnection' } | |
| & { edges: Array<( | |
| { __typename?: 'ContentfulBlogPostEdge' } | |
| & { node: ( | |
| { __typename?: 'ContentfulBlogPost' } | |
| & Pick<ContentfulBlogPost, 'title' | 'slug' | 'publishDate'> | |
| & { featuredImage: Maybe<( | |
| { __typename?: 'ContentfulAsset' } | |
| & { fluid: Maybe<( | |
| { __typename?: 'ContentfulFluid' } | |
| & GatsbyContentfulFluid_WithWebpFragment | |
| )> } | |
| )> } | |
| ) } | |
| )> } | |
| ) } | |
| ); | |
| export type HomePageQueryQueryVariables = {}; | |
| export type HomePageQueryQuery = ( | |
| { __typename?: 'Query' } | |
| & { contentfulPage: Maybe<( | |
| { __typename?: 'ContentfulPage' } | |
| & Pick<ContentfulPage, 'title'> | |
| & { featuredPosts: Maybe<Array<Maybe<( | |
| { __typename?: 'ContentfulBlogPost' } | |
| & Pick<ContentfulBlogPost, 'title' | 'slug'> | |
| & { featuredImage: Maybe<( | |
| { __typename?: 'ContentfulAsset' } | |
| & { fluid: Maybe<( | |
| { __typename?: 'ContentfulFluid' } | |
| & GatsbyContentfulFluid_WithWebpFragment | |
| )> } | |
| )> } | |
| )>>> } | |
| )>, contentfulProduct: Maybe<( | |
| { __typename?: 'ContentfulProduct' } | |
| & Pick<ContentfulProduct, 'title' | 'slug'> | |
| & { featuredImage: Maybe<( | |
| { __typename?: 'ContentfulAsset' } | |
| & { fluid: Maybe<( | |
| { __typename?: 'ContentfulFluid' } | |
| & GatsbyContentfulFluid_WithWebpFragment | |
| )> } | |
| )> } | |
| )> } | |
| ); | |
| export type BlogPostQueryQueryVariables = { | |
| slug: Scalars['String'] | |
| }; | |
| export type BlogPostQueryQuery = ( | |
| { __typename?: 'Query' } | |
| & { contentfulBlogPost: Maybe<( | |
| { __typename?: 'ContentfulBlogPost' } | |
| & Pick<ContentfulBlogPost, 'title' | 'slug' | 'publishDate'> | |
| & { featuredImage: Maybe<( | |
| { __typename?: 'ContentfulAsset' } | |
| & { fluid: Maybe<( | |
| { __typename?: 'ContentfulFluid' } | |
| & GatsbyContentfulFluid_WithWebpFragment | |
| )> } | |
| )> } | |
| )> } | |
| ); | |
| export type CategoryQueryQueryVariables = { | |
| slug: Scalars['String'] | |
| }; | |
| export type CategoryQueryQuery = ( | |
| { __typename?: 'Query' } | |
| & { contentfulCategory: Maybe<( | |
| { __typename?: 'ContentfulCategory' } | |
| & Pick<ContentfulCategory, 'title'> | |
| )> } | |
| ); | |
| export type PageQueryQueryVariables = { | |
| slug: Scalars['String'] | |
| }; | |
| export type PageQueryQuery = ( | |
| { __typename?: 'Query' } | |
| & { contentfulPage: Maybe<( | |
| { __typename?: 'ContentfulPage' } | |
| & Pick<ContentfulPage, 'title'> | |
| )> } | |
| ); | |
| export type ProductQueryQueryVariables = { | |
| slug: Scalars['String'] | |
| }; | |
| export type ProductQueryQuery = ( | |
| { __typename?: 'Query' } | |
| & { contentfulProduct: Maybe<( | |
| { __typename?: 'ContentfulProduct' } | |
| & Pick<ContentfulProduct, 'title'> | |
| )> } | |
| ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment