Created
October 30, 2019 17:53
-
-
Save bsgreenb/798463250a39fe20725139fb8c422cdb to your computer and use it in GitHub Desktop.
This file contains 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
"""Provides default value for input field.""" | |
directive @default(value: JSON!) on INPUT_FIELD_DEFINITION | |
"""Add date formating options.""" | |
directive @dateformat(formatString: String, locale: String, fromNow: Boolean, difference: String) on FIELD_DEFINITION | |
"""Link to node by foreign-key relation.""" | |
directive @link(by: String! = "id", from: String, on: String) on FIELD_DEFINITION | |
"""Link to File node by relative path.""" | |
directive @fileByRelativePath(from: String) on FIELD_DEFINITION | |
"""Proxy resolver from another field.""" | |
directive @proxy(from: String!, fromNode: Boolean! = false) on FIELD_DEFINITION | |
"""Infer field types from field values.""" | |
directive @infer( | |
"""Don't add default resolvers to defined fields.""" | |
noDefaultResolvers: Boolean | |
) on OBJECT | |
"""Do not infer field types from field values.""" | |
directive @dontInfer( | |
"""Don't add default resolvers to defined fields.""" | |
noDefaultResolvers: Boolean | |
) on OBJECT | |
"""Define the mime-types handled by this type.""" | |
directive @mimeTypes( | |
"""The mime-types handled by this type.""" | |
types: [String!]! = [] | |
) on OBJECT | |
""" | |
Define parent-child relations between types. This is used to add `child*` or | |
`children*` convenience fields like `childImageSharp`. | |
""" | |
directive @childOf( | |
""" | |
A list of mime-types this type is a child of. Usually these are the mime-types handled by a transformer plugin. | |
""" | |
mimeTypes: [String!]! = [] | |
""" | |
A list of types this type is a child of. Usually these are the types handled by a transformer plugin. | |
""" | |
types: [String!]! = [] | |
""" | |
Specifies whether a parent can have multiple children of this type or not. | |
""" | |
many: Boolean! = false | |
) on OBJECT | |
""" | |
Adds root query fields for an interface. All implementing types must also implement the Node interface. | |
""" | |
directive @nodeInterface on INTERFACE | |
input BooleanQueryOperatorInput { | |
eq: Boolean | |
ne: Boolean | |
in: [Boolean] | |
nin: [Boolean] | |
} | |
type ContentfulAsset implements Node { | |
id: ID! | |
parent: Node | |
children: [Node!]! | |
internal: Internal! | |
contentful_id: String | |
file: ContentfulAssetFile | |
title: String | |
description: String | |
node_locale: String | |
fixed(width: Int, height: Int, quality: Int = 50, toFormat: ContentfulImageFormat = NO_CHANGE, resizingBehavior: ImageResizingBehavior, cropFocus: ContentfulImageCropFocus = null, background: String = null): ContentfulFixed | |
resolutions(width: Int, height: Int, quality: Int = 50, toFormat: ContentfulImageFormat = NO_CHANGE, resizingBehavior: ImageResizingBehavior, cropFocus: ContentfulImageCropFocus = null, background: String = null): ContentfulResolutions @deprecated(reason: "Resolutions was deprecated in Gatsby v2. It's been renamed to \"fixed\" https://example.com/write-docs-and-fix-this-example-link") | |
fluid(maxWidth: Int, maxHeight: Int, quality: Int = 50, toFormat: ContentfulImageFormat = NO_CHANGE, resizingBehavior: ImageResizingBehavior, cropFocus: ContentfulImageCropFocus = null, background: String = null, sizes: String): ContentfulFluid | |
sizes(maxWidth: Int, maxHeight: Int, quality: Int = 50, toFormat: ContentfulImageFormat = NO_CHANGE, resizingBehavior: ImageResizingBehavior, cropFocus: ContentfulImageCropFocus = null, background: String = null, sizes: String): ContentfulSizes @deprecated(reason: "Sizes was deprecated in Gatsby v2. It's been renamed to \"fluid\" https://example.com/write-docs-and-fix-this-example-link") | |
resize(width: Int, height: Int, quality: Int = 50, jpegProgressive: Boolean = true, resizingBehavior: ImageResizingBehavior, toFormat: ContentfulImageFormat = NO_CHANGE, cropFocus: ContentfulImageCropFocus = null, background: String = null): ContentfulResize | |
} | |
type ContentfulAssetConnection { | |
totalCount: Int! | |
edges: [ContentfulAssetEdge!]! | |
nodes: [ContentfulAsset!]! | |
pageInfo: PageInfo! | |
distinct(field: ContentfulAssetFieldsEnum!): [String!]! | |
group(skip: Int, limit: Int, field: ContentfulAssetFieldsEnum!): [ContentfulAssetGroupConnection!]! | |
} | |
type ContentfulAssetEdge { | |
next: ContentfulAsset | |
node: ContentfulAsset! | |
previous: ContentfulAsset | |
} | |
enum ContentfulAssetFieldsEnum { | |
id | |
parent___id | |
parent___parent___id | |
parent___parent___parent___id | |
parent___parent___parent___children | |
parent___parent___children | |
parent___parent___children___id | |
parent___parent___children___children | |
parent___parent___internal___content | |
parent___parent___internal___contentDigest | |
parent___parent___internal___description | |
parent___parent___internal___fieldOwners | |
parent___parent___internal___ignoreType | |
parent___parent___internal___mediaType | |
parent___parent___internal___owner | |
parent___parent___internal___type | |
parent___children | |
parent___children___id | |
parent___children___parent___id | |
parent___children___parent___children | |
parent___children___children | |
parent___children___children___id | |
parent___children___children___children | |
parent___children___internal___content | |
parent___children___internal___contentDigest | |
parent___children___internal___description | |
parent___children___internal___fieldOwners | |
parent___children___internal___ignoreType | |
parent___children___internal___mediaType | |
parent___children___internal___owner | |
parent___children___internal___type | |
parent___internal___content | |
parent___internal___contentDigest | |
parent___internal___description | |
parent___internal___fieldOwners | |
parent___internal___ignoreType | |
parent___internal___mediaType | |
parent___internal___owner | |
parent___internal___type | |
children | |
children___id | |
children___parent___id | |
children___parent___parent___id | |
children___parent___parent___children | |
children___parent___children | |
children___parent___children___id | |
children___parent___children___children | |
children___parent___internal___content | |
children___parent___internal___contentDigest | |
children___parent___internal___description | |
children___parent___internal___fieldOwners | |
children___parent___internal___ignoreType | |
children___parent___internal___mediaType | |
children___parent___internal___owner | |
children___parent___internal___type | |
children___children | |
children___children___id | |
children___children___parent___id | |
children___children___parent___children | |
children___children___children | |
children___children___children___id | |
children___children___children___children | |
children___children___internal___content | |
children___children___internal___contentDigest | |
children___children___internal___description | |
children___children___internal___fieldOwners | |
children___children___internal___ignoreType | |
children___children___internal___mediaType | |
children___children___internal___owner | |
children___children___internal___type | |
children___internal___content | |
children___internal___contentDigest | |
children___internal___description | |
children___internal___fieldOwners | |
children___internal___ignoreType | |
children___internal___mediaType | |
children___internal___owner | |
children___internal___type | |
internal___content | |
internal___contentDigest | |
internal___description | |
internal___fieldOwners | |
internal___ignoreType | |
internal___mediaType | |
internal___owner | |
internal___type | |
contentful_id | |
file___url | |
file___details___size | |
file___details___image___width | |
file___details___image___height | |
file___fileName | |
file___contentType | |
title | |
description | |
node_locale | |
fixed___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
fixed___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
fixed___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
fixed___width @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
fixed___height @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
fixed___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
fixed___srcSet @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
fixed___srcWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
fixed___srcSetWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
resolutions___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
resolutions___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
resolutions___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
resolutions___width @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
resolutions___height @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
resolutions___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
resolutions___srcSet @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
resolutions___srcWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
resolutions___srcSetWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
fluid___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
fluid___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
fluid___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
fluid___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
fluid___srcSet @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
fluid___srcWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
fluid___srcSetWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
fluid___sizes @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
sizes___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
sizes___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
sizes___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
sizes___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
sizes___srcSet @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
sizes___srcWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
sizes___srcSetWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
sizes___sizes @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
resize___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
resize___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
resize___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
resize___width @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
resize___height @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
resize___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
} | |
type ContentfulAssetFile { | |
url: String | |
details: ContentfulAssetFileDetails | |
fileName: String | |
contentType: String | |
} | |
type ContentfulAssetFileDetails { | |
size: Int | |
image: ContentfulAssetFileDetailsImage | |
} | |
input ContentfulAssetFileDetailsFilterInput { | |
size: IntQueryOperatorInput | |
image: ContentfulAssetFileDetailsImageFilterInput | |
} | |
type ContentfulAssetFileDetailsImage { | |
width: Int | |
height: Int | |
} | |
input ContentfulAssetFileDetailsImageFilterInput { | |
width: IntQueryOperatorInput | |
height: IntQueryOperatorInput | |
} | |
input ContentfulAssetFileFilterInput { | |
url: StringQueryOperatorInput | |
details: ContentfulAssetFileDetailsFilterInput | |
fileName: StringQueryOperatorInput | |
contentType: StringQueryOperatorInput | |
} | |
input ContentfulAssetFilterInput { | |
id: StringQueryOperatorInput | |
parent: NodeFilterInput | |
children: NodeFilterListInput | |
internal: InternalFilterInput | |
contentful_id: StringQueryOperatorInput | |
file: ContentfulAssetFileFilterInput | |
title: StringQueryOperatorInput | |
description: StringQueryOperatorInput | |
node_locale: StringQueryOperatorInput | |
fixed: ContentfulFixedFilterInput | |
resolutions: ContentfulResolutionsFilterInput | |
fluid: ContentfulFluidFilterInput | |
sizes: ContentfulSizesFilterInput | |
resize: ContentfulResizeFilterInput | |
} | |
type ContentfulAssetGroupConnection { | |
totalCount: Int! | |
edges: [ContentfulAssetEdge!]! | |
nodes: [ContentfulAsset!]! | |
pageInfo: PageInfo! | |
field: String! | |
fieldValue: String | |
} | |
input ContentfulAssetSortInput { | |
fields: [ContentfulAssetFieldsEnum] | |
order: [SortOrderEnum] = [ASC] | |
} | |
type ContentfulBlogPost implements Node { | |
id: ID! | |
parent: Node | |
children: [Node!]! | |
internal: Internal! | |
title: String | |
slug: String | |
publishDate( | |
""" | |
Format the date using Moment.js' date tokens, e.g. `date(formatString: "YYYY | |
MMMM DD")`. See https://momentjs.com/docs/#/displaying/format/ for | |
documentation for different tokens. | |
""" | |
formatString: String | |
"""Returns a string generated with Moment.js' `fromNow` function""" | |
fromNow: Boolean | |
""" | |
Returns the difference between this date and the current time. Defaults to | |
"milliseconds" but you can also pass in as the measurement "years", | |
"months", "weeks", "days", "hours", "minutes", and "seconds". | |
""" | |
difference: String | |
"""Configures the locale Moment.js will use to format the date.""" | |
locale: String | |
): Date | |
featuredImage: ContentfulAsset | |
categories: [ContentfulCategory] | |
page: [ContentfulPage] | |
body: contentfulBlogPostBodyRichTextNode | |
spaceId: String | |
contentful_id: String | |
createdAt( | |
""" | |
Format the date using Moment.js' date tokens, e.g. `date(formatString: "YYYY | |
MMMM DD")`. See https://momentjs.com/docs/#/displaying/format/ for | |
documentation for different tokens. | |
""" | |
formatString: String | |
"""Returns a string generated with Moment.js' `fromNow` function""" | |
fromNow: Boolean | |
""" | |
Returns the difference between this date and the current time. Defaults to | |
"milliseconds" but you can also pass in as the measurement "years", | |
"months", "weeks", "days", "hours", "minutes", and "seconds". | |
""" | |
difference: String | |
"""Configures the locale Moment.js will use to format the date.""" | |
locale: String | |
): Date | |
updatedAt( | |
""" | |
Format the date using Moment.js' date tokens, e.g. `date(formatString: "YYYY | |
MMMM DD")`. See https://momentjs.com/docs/#/displaying/format/ for | |
documentation for different tokens. | |
""" | |
formatString: String | |
"""Returns a string generated with Moment.js' `fromNow` function""" | |
fromNow: Boolean | |
""" | |
Returns the difference between this date and the current time. Defaults to | |
"milliseconds" but you can also pass in as the measurement "years", | |
"months", "weeks", "days", "hours", "minutes", and "seconds". | |
""" | |
difference: String | |
"""Configures the locale Moment.js will use to format the date.""" | |
locale: String | |
): Date | |
node_locale: String | |
author: ContentfulPerson | |
childContentfulBlogPostBodyRichTextNode: contentfulBlogPostBodyRichTextNode | |
} | |
type contentfulBlogPostBodyRichTextNode implements Node { | |
id: ID! | |
parent: Node | |
children: [Node!]! | |
internal: Internal! | |
content: [contentfulBlogPostBodyRichTextNodeContent] | |
nodeType: String @deprecated(reason: "This field is deprecated, please use 'json' instead.") | |
body: String | |
json: JSON | |
childContentfulRichText: ContentfulRichText | |
} | |
type contentfulBlogPostBodyRichTextNodeConnection { | |
totalCount: Int! | |
edges: [contentfulBlogPostBodyRichTextNodeEdge!]! | |
nodes: [contentfulBlogPostBodyRichTextNode!]! | |
pageInfo: PageInfo! | |
distinct(field: contentfulBlogPostBodyRichTextNodeFieldsEnum!): [String!]! | |
group(skip: Int, limit: Int, field: contentfulBlogPostBodyRichTextNodeFieldsEnum!): [contentfulBlogPostBodyRichTextNodeGroupConnection!]! | |
} | |
type contentfulBlogPostBodyRichTextNodeContent { | |
content: [contentfulBlogPostBodyRichTextNodeContentContent] | |
nodeType: String | |
} | |
type contentfulBlogPostBodyRichTextNodeContentContent { | |
data: contentfulBlogPostBodyRichTextNodeContentContentData | |
marks: [contentfulBlogPostBodyRichTextNodeContentContentMarks] | |
value: String | |
nodeType: String | |
content: [contentfulBlogPostBodyRichTextNodeContentContentContent] | |
} | |
type contentfulBlogPostBodyRichTextNodeContentContentContent { | |
marks: [contentfulBlogPostBodyRichTextNodeContentContentContentMarks] | |
value: String | |
nodeType: String | |
content: [contentfulBlogPostBodyRichTextNodeContentContentContentContent] | |
} | |
type contentfulBlogPostBodyRichTextNodeContentContentContentContent { | |
data: contentfulBlogPostBodyRichTextNodeContentContentContentContentData | |
value: String | |
nodeType: String | |
content: [contentfulBlogPostBodyRichTextNodeContentContentContentContentContent] | |
} | |
type contentfulBlogPostBodyRichTextNodeContentContentContentContentContent { | |
marks: [contentfulBlogPostBodyRichTextNodeContentContentContentContentContentMarks] | |
value: String | |
nodeType: String | |
} | |
input contentfulBlogPostBodyRichTextNodeContentContentContentContentContentFilterInput { | |
marks: contentfulBlogPostBodyRichTextNodeContentContentContentContentContentMarksFilterListInput | |
value: StringQueryOperatorInput | |
nodeType: StringQueryOperatorInput | |
} | |
input contentfulBlogPostBodyRichTextNodeContentContentContentContentContentFilterListInput { | |
elemMatch: contentfulBlogPostBodyRichTextNodeContentContentContentContentContentFilterInput | |
} | |
type contentfulBlogPostBodyRichTextNodeContentContentContentContentContentMarks { | |
type: String | |
} | |
input contentfulBlogPostBodyRichTextNodeContentContentContentContentContentMarksFilterInput { | |
type: StringQueryOperatorInput | |
} | |
input contentfulBlogPostBodyRichTextNodeContentContentContentContentContentMarksFilterListInput { | |
elemMatch: contentfulBlogPostBodyRichTextNodeContentContentContentContentContentMarksFilterInput | |
} | |
type contentfulBlogPostBodyRichTextNodeContentContentContentContentData { | |
uri: String | |
} | |
input contentfulBlogPostBodyRichTextNodeContentContentContentContentDataFilterInput { | |
uri: StringQueryOperatorInput | |
} | |
input contentfulBlogPostBodyRichTextNodeContentContentContentContentFilterInput { | |
data: contentfulBlogPostBodyRichTextNodeContentContentContentContentDataFilterInput | |
value: StringQueryOperatorInput | |
nodeType: StringQueryOperatorInput | |
content: contentfulBlogPostBodyRichTextNodeContentContentContentContentContentFilterListInput | |
} | |
input contentfulBlogPostBodyRichTextNodeContentContentContentContentFilterListInput { | |
elemMatch: contentfulBlogPostBodyRichTextNodeContentContentContentContentFilterInput | |
} | |
input contentfulBlogPostBodyRichTextNodeContentContentContentFilterInput { | |
marks: contentfulBlogPostBodyRichTextNodeContentContentContentMarksFilterListInput | |
value: StringQueryOperatorInput | |
nodeType: StringQueryOperatorInput | |
content: contentfulBlogPostBodyRichTextNodeContentContentContentContentFilterListInput | |
} | |
input contentfulBlogPostBodyRichTextNodeContentContentContentFilterListInput { | |
elemMatch: contentfulBlogPostBodyRichTextNodeContentContentContentFilterInput | |
} | |
type contentfulBlogPostBodyRichTextNodeContentContentContentMarks { | |
type: String | |
} | |
input contentfulBlogPostBodyRichTextNodeContentContentContentMarksFilterInput { | |
type: StringQueryOperatorInput | |
} | |
input contentfulBlogPostBodyRichTextNodeContentContentContentMarksFilterListInput { | |
elemMatch: contentfulBlogPostBodyRichTextNodeContentContentContentMarksFilterInput | |
} | |
type contentfulBlogPostBodyRichTextNodeContentContentData { | |
uri: String | |
} | |
input contentfulBlogPostBodyRichTextNodeContentContentDataFilterInput { | |
uri: StringQueryOperatorInput | |
} | |
input contentfulBlogPostBodyRichTextNodeContentContentFilterInput { | |
data: contentfulBlogPostBodyRichTextNodeContentContentDataFilterInput | |
marks: contentfulBlogPostBodyRichTextNodeContentContentMarksFilterListInput | |
value: StringQueryOperatorInput | |
nodeType: StringQueryOperatorInput | |
content: contentfulBlogPostBodyRichTextNodeContentContentContentFilterListInput | |
} | |
input contentfulBlogPostBodyRichTextNodeContentContentFilterListInput { | |
elemMatch: contentfulBlogPostBodyRichTextNodeContentContentFilterInput | |
} | |
type contentfulBlogPostBodyRichTextNodeContentContentMarks { | |
type: String | |
} | |
input contentfulBlogPostBodyRichTextNodeContentContentMarksFilterInput { | |
type: StringQueryOperatorInput | |
} | |
input contentfulBlogPostBodyRichTextNodeContentContentMarksFilterListInput { | |
elemMatch: contentfulBlogPostBodyRichTextNodeContentContentMarksFilterInput | |
} | |
input contentfulBlogPostBodyRichTextNodeContentFilterInput { | |
content: contentfulBlogPostBodyRichTextNodeContentContentFilterListInput | |
nodeType: StringQueryOperatorInput | |
} | |
input contentfulBlogPostBodyRichTextNodeContentFilterListInput { | |
elemMatch: contentfulBlogPostBodyRichTextNodeContentFilterInput | |
} | |
type contentfulBlogPostBodyRichTextNodeEdge { | |
next: contentfulBlogPostBodyRichTextNode | |
node: contentfulBlogPostBodyRichTextNode! | |
previous: contentfulBlogPostBodyRichTextNode | |
} | |
enum contentfulBlogPostBodyRichTextNodeFieldsEnum { | |
id | |
parent___id | |
parent___parent___id | |
parent___parent___parent___id | |
parent___parent___parent___children | |
parent___parent___children | |
parent___parent___children___id | |
parent___parent___children___children | |
parent___parent___internal___content | |
parent___parent___internal___contentDigest | |
parent___parent___internal___description | |
parent___parent___internal___fieldOwners | |
parent___parent___internal___ignoreType | |
parent___parent___internal___mediaType | |
parent___parent___internal___owner | |
parent___parent___internal___type | |
parent___children | |
parent___children___id | |
parent___children___parent___id | |
parent___children___parent___children | |
parent___children___children | |
parent___children___children___id | |
parent___children___children___children | |
parent___children___internal___content | |
parent___children___internal___contentDigest | |
parent___children___internal___description | |
parent___children___internal___fieldOwners | |
parent___children___internal___ignoreType | |
parent___children___internal___mediaType | |
parent___children___internal___owner | |
parent___children___internal___type | |
parent___internal___content | |
parent___internal___contentDigest | |
parent___internal___description | |
parent___internal___fieldOwners | |
parent___internal___ignoreType | |
parent___internal___mediaType | |
parent___internal___owner | |
parent___internal___type | |
children | |
children___id | |
children___parent___id | |
children___parent___parent___id | |
children___parent___parent___children | |
children___parent___children | |
children___parent___children___id | |
children___parent___children___children | |
children___parent___internal___content | |
children___parent___internal___contentDigest | |
children___parent___internal___description | |
children___parent___internal___fieldOwners | |
children___parent___internal___ignoreType | |
children___parent___internal___mediaType | |
children___parent___internal___owner | |
children___parent___internal___type | |
children___children | |
children___children___id | |
children___children___parent___id | |
children___children___parent___children | |
children___children___children | |
children___children___children___id | |
children___children___children___children | |
children___children___internal___content | |
children___children___internal___contentDigest | |
children___children___internal___description | |
children___children___internal___fieldOwners | |
children___children___internal___ignoreType | |
children___children___internal___mediaType | |
children___children___internal___owner | |
children___children___internal___type | |
children___internal___content | |
children___internal___contentDigest | |
children___internal___description | |
children___internal___fieldOwners | |
children___internal___ignoreType | |
children___internal___mediaType | |
children___internal___owner | |
children___internal___type | |
internal___content | |
internal___contentDigest | |
internal___description | |
internal___fieldOwners | |
internal___ignoreType | |
internal___mediaType | |
internal___owner | |
internal___type | |
content | |
content___content | |
content___content___data___uri | |
content___content___marks | |
content___content___marks___type | |
content___content___value | |
content___content___nodeType | |
content___content___content | |
content___content___content___marks | |
content___content___content___value | |
content___content___content___nodeType | |
content___content___content___content | |
content___nodeType | |
nodeType | |
body | |
json | |
childContentfulRichText___id | |
childContentfulRichText___parent___id | |
childContentfulRichText___parent___parent___id | |
childContentfulRichText___parent___parent___children | |
childContentfulRichText___parent___children | |
childContentfulRichText___parent___children___id | |
childContentfulRichText___parent___children___children | |
childContentfulRichText___parent___internal___content | |
childContentfulRichText___parent___internal___contentDigest | |
childContentfulRichText___parent___internal___description | |
childContentfulRichText___parent___internal___fieldOwners | |
childContentfulRichText___parent___internal___ignoreType | |
childContentfulRichText___parent___internal___mediaType | |
childContentfulRichText___parent___internal___owner | |
childContentfulRichText___parent___internal___type | |
childContentfulRichText___children | |
childContentfulRichText___children___id | |
childContentfulRichText___children___parent___id | |
childContentfulRichText___children___parent___children | |
childContentfulRichText___children___children | |
childContentfulRichText___children___children___id | |
childContentfulRichText___children___children___children | |
childContentfulRichText___children___internal___content | |
childContentfulRichText___children___internal___contentDigest | |
childContentfulRichText___children___internal___description | |
childContentfulRichText___children___internal___fieldOwners | |
childContentfulRichText___children___internal___ignoreType | |
childContentfulRichText___children___internal___mediaType | |
childContentfulRichText___children___internal___owner | |
childContentfulRichText___children___internal___type | |
childContentfulRichText___internal___content | |
childContentfulRichText___internal___contentDigest | |
childContentfulRichText___internal___description | |
childContentfulRichText___internal___fieldOwners | |
childContentfulRichText___internal___ignoreType | |
childContentfulRichText___internal___mediaType | |
childContentfulRichText___internal___owner | |
childContentfulRichText___internal___type | |
childContentfulRichText___html | |
childContentfulRichText___timeToRead | |
} | |
input contentfulBlogPostBodyRichTextNodeFilterInput { | |
id: StringQueryOperatorInput | |
parent: NodeFilterInput | |
children: NodeFilterListInput | |
internal: InternalFilterInput | |
content: contentfulBlogPostBodyRichTextNodeContentFilterListInput | |
nodeType: StringQueryOperatorInput | |
body: StringQueryOperatorInput | |
json: JSONQueryOperatorInput | |
childContentfulRichText: ContentfulRichTextFilterInput | |
} | |
type contentfulBlogPostBodyRichTextNodeGroupConnection { | |
totalCount: Int! | |
edges: [contentfulBlogPostBodyRichTextNodeEdge!]! | |
nodes: [contentfulBlogPostBodyRichTextNode!]! | |
pageInfo: PageInfo! | |
field: String! | |
fieldValue: String | |
} | |
input contentfulBlogPostBodyRichTextNodeSortInput { | |
fields: [contentfulBlogPostBodyRichTextNodeFieldsEnum] | |
order: [SortOrderEnum] = [ASC] | |
} | |
type ContentfulBlogPostConnection { | |
totalCount: Int! | |
edges: [ContentfulBlogPostEdge!]! | |
nodes: [ContentfulBlogPost!]! | |
pageInfo: PageInfo! | |
distinct(field: ContentfulBlogPostFieldsEnum!): [String!]! | |
group(skip: Int, limit: Int, field: ContentfulBlogPostFieldsEnum!): [ContentfulBlogPostGroupConnection!]! | |
} | |
type ContentfulBlogPostEdge { | |
next: ContentfulBlogPost | |
node: ContentfulBlogPost! | |
previous: ContentfulBlogPost | |
} | |
enum ContentfulBlogPostFieldsEnum { | |
id | |
parent___id | |
parent___parent___id | |
parent___parent___parent___id | |
parent___parent___parent___children | |
parent___parent___children | |
parent___parent___children___id | |
parent___parent___children___children | |
parent___parent___internal___content | |
parent___parent___internal___contentDigest | |
parent___parent___internal___description | |
parent___parent___internal___fieldOwners | |
parent___parent___internal___ignoreType | |
parent___parent___internal___mediaType | |
parent___parent___internal___owner | |
parent___parent___internal___type | |
parent___children | |
parent___children___id | |
parent___children___parent___id | |
parent___children___parent___children | |
parent___children___children | |
parent___children___children___id | |
parent___children___children___children | |
parent___children___internal___content | |
parent___children___internal___contentDigest | |
parent___children___internal___description | |
parent___children___internal___fieldOwners | |
parent___children___internal___ignoreType | |
parent___children___internal___mediaType | |
parent___children___internal___owner | |
parent___children___internal___type | |
parent___internal___content | |
parent___internal___contentDigest | |
parent___internal___description | |
parent___internal___fieldOwners | |
parent___internal___ignoreType | |
parent___internal___mediaType | |
parent___internal___owner | |
parent___internal___type | |
children | |
children___id | |
children___parent___id | |
children___parent___parent___id | |
children___parent___parent___children | |
children___parent___children | |
children___parent___children___id | |
children___parent___children___children | |
children___parent___internal___content | |
children___parent___internal___contentDigest | |
children___parent___internal___description | |
children___parent___internal___fieldOwners | |
children___parent___internal___ignoreType | |
children___parent___internal___mediaType | |
children___parent___internal___owner | |
children___parent___internal___type | |
children___children | |
children___children___id | |
children___children___parent___id | |
children___children___parent___children | |
children___children___children | |
children___children___children___id | |
children___children___children___children | |
children___children___internal___content | |
children___children___internal___contentDigest | |
children___children___internal___description | |
children___children___internal___fieldOwners | |
children___children___internal___ignoreType | |
children___children___internal___mediaType | |
children___children___internal___owner | |
children___children___internal___type | |
children___internal___content | |
children___internal___contentDigest | |
children___internal___description | |
children___internal___fieldOwners | |
children___internal___ignoreType | |
children___internal___mediaType | |
children___internal___owner | |
children___internal___type | |
internal___content | |
internal___contentDigest | |
internal___description | |
internal___fieldOwners | |
internal___ignoreType | |
internal___mediaType | |
internal___owner | |
internal___type | |
title | |
slug | |
publishDate | |
featuredImage___id | |
featuredImage___parent___id | |
featuredImage___parent___parent___id | |
featuredImage___parent___parent___children | |
featuredImage___parent___children | |
featuredImage___parent___children___id | |
featuredImage___parent___children___children | |
featuredImage___parent___internal___content | |
featuredImage___parent___internal___contentDigest | |
featuredImage___parent___internal___description | |
featuredImage___parent___internal___fieldOwners | |
featuredImage___parent___internal___ignoreType | |
featuredImage___parent___internal___mediaType | |
featuredImage___parent___internal___owner | |
featuredImage___parent___internal___type | |
featuredImage___children | |
featuredImage___children___id | |
featuredImage___children___parent___id | |
featuredImage___children___parent___children | |
featuredImage___children___children | |
featuredImage___children___children___id | |
featuredImage___children___children___children | |
featuredImage___children___internal___content | |
featuredImage___children___internal___contentDigest | |
featuredImage___children___internal___description | |
featuredImage___children___internal___fieldOwners | |
featuredImage___children___internal___ignoreType | |
featuredImage___children___internal___mediaType | |
featuredImage___children___internal___owner | |
featuredImage___children___internal___type | |
featuredImage___internal___content | |
featuredImage___internal___contentDigest | |
featuredImage___internal___description | |
featuredImage___internal___fieldOwners | |
featuredImage___internal___ignoreType | |
featuredImage___internal___mediaType | |
featuredImage___internal___owner | |
featuredImage___internal___type | |
featuredImage___contentful_id | |
featuredImage___file___url | |
featuredImage___file___details___size | |
featuredImage___file___fileName | |
featuredImage___file___contentType | |
featuredImage___title | |
featuredImage___description | |
featuredImage___node_locale | |
featuredImage___fixed___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___fixed___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___fixed___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___fixed___width @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___fixed___height @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___fixed___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___fixed___srcSet @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___fixed___srcWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___fixed___srcSetWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___resolutions___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___resolutions___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___resolutions___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___resolutions___width @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___resolutions___height @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___resolutions___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___resolutions___srcSet @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___resolutions___srcWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___resolutions___srcSetWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___fluid___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___fluid___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___fluid___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___fluid___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___fluid___srcSet @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___fluid___srcWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___fluid___srcSetWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___fluid___sizes @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___sizes___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___sizes___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___sizes___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___sizes___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___sizes___srcSet @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___sizes___srcWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___sizes___srcSetWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___sizes___sizes @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___resize___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___resize___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___resize___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___resize___width @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___resize___height @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___resize___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories | |
categories___id | |
categories___parent___id | |
categories___parent___parent___id | |
categories___parent___parent___children | |
categories___parent___children | |
categories___parent___children___id | |
categories___parent___children___children | |
categories___parent___internal___content | |
categories___parent___internal___contentDigest | |
categories___parent___internal___description | |
categories___parent___internal___fieldOwners | |
categories___parent___internal___ignoreType | |
categories___parent___internal___mediaType | |
categories___parent___internal___owner | |
categories___parent___internal___type | |
categories___children | |
categories___children___id | |
categories___children___parent___id | |
categories___children___parent___children | |
categories___children___children | |
categories___children___children___id | |
categories___children___children___children | |
categories___children___internal___content | |
categories___children___internal___contentDigest | |
categories___children___internal___description | |
categories___children___internal___fieldOwners | |
categories___children___internal___ignoreType | |
categories___children___internal___mediaType | |
categories___children___internal___owner | |
categories___children___internal___type | |
categories___internal___content | |
categories___internal___contentDigest | |
categories___internal___description | |
categories___internal___fieldOwners | |
categories___internal___ignoreType | |
categories___internal___mediaType | |
categories___internal___owner | |
categories___internal___type | |
categories___title | |
categories___slug | |
categories___featuredImage___id | |
categories___featuredImage___parent___id | |
categories___featuredImage___parent___children | |
categories___featuredImage___children | |
categories___featuredImage___children___id | |
categories___featuredImage___children___children | |
categories___featuredImage___internal___content | |
categories___featuredImage___internal___contentDigest | |
categories___featuredImage___internal___description | |
categories___featuredImage___internal___fieldOwners | |
categories___featuredImage___internal___ignoreType | |
categories___featuredImage___internal___mediaType | |
categories___featuredImage___internal___owner | |
categories___featuredImage___internal___type | |
categories___featuredImage___contentful_id | |
categories___featuredImage___file___url | |
categories___featuredImage___file___fileName | |
categories___featuredImage___file___contentType | |
categories___featuredImage___title | |
categories___featuredImage___description | |
categories___featuredImage___node_locale | |
categories___featuredImage___fixed___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___fixed___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___fixed___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___fixed___width @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___fixed___height @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___fixed___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___fixed___srcSet @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___fixed___srcWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___fixed___srcSetWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___resolutions___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___resolutions___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___resolutions___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___resolutions___width @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___resolutions___height @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___resolutions___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___resolutions___srcSet @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___resolutions___srcWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___resolutions___srcSetWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___fluid___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___fluid___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___fluid___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___fluid___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___fluid___srcSet @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___fluid___srcWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___fluid___srcSetWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___fluid___sizes @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___sizes___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___sizes___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___sizes___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___sizes___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___sizes___srcSet @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___sizes___srcWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___sizes___srcSetWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___sizes___sizes @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___resize___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___resize___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___resize___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___resize___width @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___resize___height @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___resize___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___blogpost | |
categories___blogpost___id | |
categories___blogpost___parent___id | |
categories___blogpost___parent___children | |
categories___blogpost___children | |
categories___blogpost___children___id | |
categories___blogpost___children___children | |
categories___blogpost___internal___content | |
categories___blogpost___internal___contentDigest | |
categories___blogpost___internal___description | |
categories___blogpost___internal___fieldOwners | |
categories___blogpost___internal___ignoreType | |
categories___blogpost___internal___mediaType | |
categories___blogpost___internal___owner | |
categories___blogpost___internal___type | |
categories___blogpost___title | |
categories___blogpost___slug | |
categories___blogpost___publishDate | |
categories___blogpost___featuredImage___id | |
categories___blogpost___featuredImage___children | |
categories___blogpost___featuredImage___contentful_id | |
categories___blogpost___featuredImage___title | |
categories___blogpost___featuredImage___description | |
categories___blogpost___featuredImage___node_locale | |
categories___blogpost___categories | |
categories___blogpost___categories___id | |
categories___blogpost___categories___children | |
categories___blogpost___categories___title | |
categories___blogpost___categories___slug | |
categories___blogpost___categories___blogpost | |
categories___blogpost___categories___spaceId | |
categories___blogpost___categories___contentful_id | |
categories___blogpost___categories___createdAt | |
categories___blogpost___categories___updatedAt | |
categories___blogpost___categories___node_locale | |
categories___blogpost___categories___menu | |
categories___blogpost___categories___product | |
categories___blogpost___page | |
categories___blogpost___page___id | |
categories___blogpost___page___children | |
categories___blogpost___page___title | |
categories___blogpost___page___slug | |
categories___blogpost___page___isHomePage | |
categories___blogpost___page___featuredPosts | |
categories___blogpost___page___spaceId | |
categories___blogpost___page___contentful_id | |
categories___blogpost___page___createdAt | |
categories___blogpost___page___updatedAt | |
categories___blogpost___page___node_locale | |
categories___blogpost___body___id | |
categories___blogpost___body___children | |
categories___blogpost___body___content | |
categories___blogpost___body___nodeType | |
categories___blogpost___body___body | |
categories___blogpost___body___json | |
categories___blogpost___spaceId | |
categories___blogpost___contentful_id | |
categories___blogpost___createdAt | |
categories___blogpost___updatedAt | |
categories___blogpost___node_locale | |
categories___blogpost___author___id | |
categories___blogpost___author___children | |
categories___blogpost___author___name | |
categories___blogpost___author___title | |
categories___blogpost___author___company | |
categories___blogpost___author___email | |
categories___blogpost___author___phone | |
categories___blogpost___author___facebook | |
categories___blogpost___author___twitter | |
categories___blogpost___author___github | |
categories___blogpost___author___blogpost | |
categories___blogpost___author___spaceId | |
categories___blogpost___author___contentful_id | |
categories___blogpost___author___createdAt | |
categories___blogpost___author___updatedAt | |
categories___blogpost___author___node_locale | |
categories___blogpost___childContentfulBlogPostBodyRichTextNode___id | |
categories___blogpost___childContentfulBlogPostBodyRichTextNode___children | |
categories___blogpost___childContentfulBlogPostBodyRichTextNode___content | |
categories___blogpost___childContentfulBlogPostBodyRichTextNode___nodeType | |
categories___blogpost___childContentfulBlogPostBodyRichTextNode___body | |
categories___blogpost___childContentfulBlogPostBodyRichTextNode___json | |
categories___spaceId | |
categories___contentful_id | |
categories___createdAt | |
categories___updatedAt | |
categories___node_locale | |
categories___menu | |
categories___menu___id | |
categories___menu___parent___id | |
categories___menu___parent___children | |
categories___menu___children | |
categories___menu___children___id | |
categories___menu___children___children | |
categories___menu___internal___content | |
categories___menu___internal___contentDigest | |
categories___menu___internal___description | |
categories___menu___internal___fieldOwners | |
categories___menu___internal___ignoreType | |
categories___menu___internal___mediaType | |
categories___menu___internal___owner | |
categories___menu___internal___type | |
categories___menu___name | |
categories___menu___menuItems | |
categories___menu___menuItems___id | |
categories___menu___menuItems___children | |
categories___menu___menuItems___title | |
categories___menu___menuItems___slug | |
categories___menu___menuItems___blogpost | |
categories___menu___menuItems___spaceId | |
categories___menu___menuItems___contentful_id | |
categories___menu___menuItems___createdAt | |
categories___menu___menuItems___updatedAt | |
categories___menu___menuItems___node_locale | |
categories___menu___menuItems___menu | |
categories___menu___menuItems___product | |
categories___menu___spaceId | |
categories___menu___contentful_id | |
categories___menu___createdAt | |
categories___menu___updatedAt | |
categories___menu___node_locale | |
categories___product | |
categories___product___id | |
categories___product___parent___id | |
categories___product___parent___children | |
categories___product___children | |
categories___product___children___id | |
categories___product___children___children | |
categories___product___internal___content | |
categories___product___internal___contentDigest | |
categories___product___internal___description | |
categories___product___internal___fieldOwners | |
categories___product___internal___ignoreType | |
categories___product___internal___mediaType | |
categories___product___internal___owner | |
categories___product___internal___type | |
categories___product___title | |
categories___product___slug | |
categories___product___price | |
categories___product___featuredImage___id | |
categories___product___featuredImage___children | |
categories___product___featuredImage___contentful_id | |
categories___product___featuredImage___title | |
categories___product___featuredImage___description | |
categories___product___featuredImage___node_locale | |
categories___product___categories | |
categories___product___categories___id | |
categories___product___categories___children | |
categories___product___categories___title | |
categories___product___categories___slug | |
categories___product___categories___blogpost | |
categories___product___categories___spaceId | |
categories___product___categories___contentful_id | |
categories___product___categories___createdAt | |
categories___product___categories___updatedAt | |
categories___product___categories___node_locale | |
categories___product___categories___menu | |
categories___product___categories___product | |
categories___product___body___id | |
categories___product___body___children | |
categories___product___body___content | |
categories___product___body___nodeType | |
categories___product___body___body | |
categories___product___body___json | |
categories___product___spaceId | |
categories___product___contentful_id | |
categories___product___createdAt | |
categories___product___updatedAt | |
categories___product___node_locale | |
categories___product___childContentfulProductBodyRichTextNode___id | |
categories___product___childContentfulProductBodyRichTextNode___children | |
categories___product___childContentfulProductBodyRichTextNode___content | |
categories___product___childContentfulProductBodyRichTextNode___nodeType | |
categories___product___childContentfulProductBodyRichTextNode___body | |
categories___product___childContentfulProductBodyRichTextNode___json | |
categories___body___id | |
categories___body___parent___id | |
categories___body___parent___children | |
categories___body___children | |
categories___body___children___id | |
categories___body___children___children | |
categories___body___internal___content | |
categories___body___internal___contentDigest | |
categories___body___internal___description | |
categories___body___internal___fieldOwners | |
categories___body___internal___ignoreType | |
categories___body___internal___mediaType | |
categories___body___internal___owner | |
categories___body___internal___type | |
categories___body___content | |
categories___body___content___content | |
categories___body___content___nodeType | |
categories___body___nodeType | |
categories___body___body | |
categories___body___json | |
categories___body___childContentfulRichText___id | |
categories___body___childContentfulRichText___children | |
categories___body___childContentfulRichText___html | |
categories___body___childContentfulRichText___timeToRead | |
categories___childContentfulCategoryBodyRichTextNode___id | |
categories___childContentfulCategoryBodyRichTextNode___parent___id | |
categories___childContentfulCategoryBodyRichTextNode___parent___children | |
categories___childContentfulCategoryBodyRichTextNode___children | |
categories___childContentfulCategoryBodyRichTextNode___children___id | |
categories___childContentfulCategoryBodyRichTextNode___children___children | |
categories___childContentfulCategoryBodyRichTextNode___internal___content | |
categories___childContentfulCategoryBodyRichTextNode___internal___contentDigest | |
categories___childContentfulCategoryBodyRichTextNode___internal___description | |
categories___childContentfulCategoryBodyRichTextNode___internal___fieldOwners | |
categories___childContentfulCategoryBodyRichTextNode___internal___ignoreType | |
categories___childContentfulCategoryBodyRichTextNode___internal___mediaType | |
categories___childContentfulCategoryBodyRichTextNode___internal___owner | |
categories___childContentfulCategoryBodyRichTextNode___internal___type | |
categories___childContentfulCategoryBodyRichTextNode___content | |
categories___childContentfulCategoryBodyRichTextNode___content___content | |
categories___childContentfulCategoryBodyRichTextNode___content___nodeType | |
categories___childContentfulCategoryBodyRichTextNode___nodeType | |
categories___childContentfulCategoryBodyRichTextNode___body | |
categories___childContentfulCategoryBodyRichTextNode___json | |
categories___childContentfulCategoryBodyRichTextNode___childContentfulRichText___id | |
categories___childContentfulCategoryBodyRichTextNode___childContentfulRichText___children | |
categories___childContentfulCategoryBodyRichTextNode___childContentfulRichText___html | |
categories___childContentfulCategoryBodyRichTextNode___childContentfulRichText___timeToRead | |
page | |
page___id | |
page___parent___id | |
page___parent___parent___id | |
page___parent___parent___children | |
page___parent___children | |
page___parent___children___id | |
page___parent___children___children | |
page___parent___internal___content | |
page___parent___internal___contentDigest | |
page___parent___internal___description | |
page___parent___internal___fieldOwners | |
page___parent___internal___ignoreType | |
page___parent___internal___mediaType | |
page___parent___internal___owner | |
page___parent___internal___type | |
page___children | |
page___children___id | |
page___children___parent___id | |
page___children___parent___children | |
page___children___children | |
page___children___children___id | |
page___children___children___children | |
page___children___internal___content | |
page___children___internal___contentDigest | |
page___children___internal___description | |
page___children___internal___fieldOwners | |
page___children___internal___ignoreType | |
page___children___internal___mediaType | |
page___children___internal___owner | |
page___children___internal___type | |
page___internal___content | |
page___internal___contentDigest | |
page___internal___description | |
page___internal___fieldOwners | |
page___internal___ignoreType | |
page___internal___mediaType | |
page___internal___owner | |
page___internal___type | |
page___title | |
page___slug | |
page___isHomePage | |
page___featuredPosts | |
page___featuredPosts___id | |
page___featuredPosts___parent___id | |
page___featuredPosts___parent___children | |
page___featuredPosts___children | |
page___featuredPosts___children___id | |
page___featuredPosts___children___children | |
page___featuredPosts___internal___content | |
page___featuredPosts___internal___contentDigest | |
page___featuredPosts___internal___description | |
page___featuredPosts___internal___fieldOwners | |
page___featuredPosts___internal___ignoreType | |
page___featuredPosts___internal___mediaType | |
page___featuredPosts___internal___owner | |
page___featuredPosts___internal___type | |
page___featuredPosts___title | |
page___featuredPosts___slug | |
page___featuredPosts___publishDate | |
page___featuredPosts___featuredImage___id | |
page___featuredPosts___featuredImage___children | |
page___featuredPosts___featuredImage___contentful_id | |
page___featuredPosts___featuredImage___title | |
page___featuredPosts___featuredImage___description | |
page___featuredPosts___featuredImage___node_locale | |
page___featuredPosts___categories | |
page___featuredPosts___categories___id | |
page___featuredPosts___categories___children | |
page___featuredPosts___categories___title | |
page___featuredPosts___categories___slug | |
page___featuredPosts___categories___blogpost | |
page___featuredPosts___categories___spaceId | |
page___featuredPosts___categories___contentful_id | |
page___featuredPosts___categories___createdAt | |
page___featuredPosts___categories___updatedAt | |
page___featuredPosts___categories___node_locale | |
page___featuredPosts___categories___menu | |
page___featuredPosts___categories___product | |
page___featuredPosts___page | |
page___featuredPosts___page___id | |
page___featuredPosts___page___children | |
page___featuredPosts___page___title | |
page___featuredPosts___page___slug | |
page___featuredPosts___page___isHomePage | |
page___featuredPosts___page___featuredPosts | |
page___featuredPosts___page___spaceId | |
page___featuredPosts___page___contentful_id | |
page___featuredPosts___page___createdAt | |
page___featuredPosts___page___updatedAt | |
page___featuredPosts___page___node_locale | |
page___featuredPosts___body___id | |
page___featuredPosts___body___children | |
page___featuredPosts___body___content | |
page___featuredPosts___body___nodeType | |
page___featuredPosts___body___body | |
page___featuredPosts___body___json | |
page___featuredPosts___spaceId | |
page___featuredPosts___contentful_id | |
page___featuredPosts___createdAt | |
page___featuredPosts___updatedAt | |
page___featuredPosts___node_locale | |
page___featuredPosts___author___id | |
page___featuredPosts___author___children | |
page___featuredPosts___author___name | |
page___featuredPosts___author___title | |
page___featuredPosts___author___company | |
page___featuredPosts___author___email | |
page___featuredPosts___author___phone | |
page___featuredPosts___author___facebook | |
page___featuredPosts___author___twitter | |
page___featuredPosts___author___github | |
page___featuredPosts___author___blogpost | |
page___featuredPosts___author___spaceId | |
page___featuredPosts___author___contentful_id | |
page___featuredPosts___author___createdAt | |
page___featuredPosts___author___updatedAt | |
page___featuredPosts___author___node_locale | |
page___featuredPosts___childContentfulBlogPostBodyRichTextNode___id | |
page___featuredPosts___childContentfulBlogPostBodyRichTextNode___children | |
page___featuredPosts___childContentfulBlogPostBodyRichTextNode___content | |
page___featuredPosts___childContentfulBlogPostBodyRichTextNode___nodeType | |
page___featuredPosts___childContentfulBlogPostBodyRichTextNode___body | |
page___featuredPosts___childContentfulBlogPostBodyRichTextNode___json | |
page___spaceId | |
page___contentful_id | |
page___createdAt | |
page___updatedAt | |
page___node_locale | |
page___body___id | |
page___body___parent___id | |
page___body___parent___children | |
page___body___children | |
page___body___children___id | |
page___body___children___children | |
page___body___internal___content | |
page___body___internal___contentDigest | |
page___body___internal___description | |
page___body___internal___fieldOwners | |
page___body___internal___ignoreType | |
page___body___internal___mediaType | |
page___body___internal___owner | |
page___body___internal___type | |
page___body___content | |
page___body___content___content | |
page___body___content___nodeType | |
page___body___nodeType | |
page___body___body | |
page___body___json | |
page___body___childContentfulRichText___id | |
page___body___childContentfulRichText___children | |
page___body___childContentfulRichText___html | |
page___body___childContentfulRichText___timeToRead | |
page___childContentfulPageBodyRichTextNode___id | |
page___childContentfulPageBodyRichTextNode___parent___id | |
page___childContentfulPageBodyRichTextNode___parent___children | |
page___childContentfulPageBodyRichTextNode___children | |
page___childContentfulPageBodyRichTextNode___children___id | |
page___childContentfulPageBodyRichTextNode___children___children | |
page___childContentfulPageBodyRichTextNode___internal___content | |
page___childContentfulPageBodyRichTextNode___internal___contentDigest | |
page___childContentfulPageBodyRichTextNode___internal___description | |
page___childContentfulPageBodyRichTextNode___internal___fieldOwners | |
page___childContentfulPageBodyRichTextNode___internal___ignoreType | |
page___childContentfulPageBodyRichTextNode___internal___mediaType | |
page___childContentfulPageBodyRichTextNode___internal___owner | |
page___childContentfulPageBodyRichTextNode___internal___type | |
page___childContentfulPageBodyRichTextNode___content | |
page___childContentfulPageBodyRichTextNode___content___content | |
page___childContentfulPageBodyRichTextNode___content___nodeType | |
page___childContentfulPageBodyRichTextNode___nodeType | |
page___childContentfulPageBodyRichTextNode___body | |
page___childContentfulPageBodyRichTextNode___json | |
page___childContentfulPageBodyRichTextNode___childContentfulRichText___id | |
page___childContentfulPageBodyRichTextNode___childContentfulRichText___children | |
page___childContentfulPageBodyRichTextNode___childContentfulRichText___html | |
page___childContentfulPageBodyRichTextNode___childContentfulRichText___timeToRead | |
body___id | |
body___parent___id | |
body___parent___parent___id | |
body___parent___parent___children | |
body___parent___children | |
body___parent___children___id | |
body___parent___children___children | |
body___parent___internal___content | |
body___parent___internal___contentDigest | |
body___parent___internal___description | |
body___parent___internal___fieldOwners | |
body___parent___internal___ignoreType | |
body___parent___internal___mediaType | |
body___parent___internal___owner | |
body___parent___internal___type | |
body___children | |
body___children___id | |
body___children___parent___id | |
body___children___parent___children | |
body___children___children | |
body___children___children___id | |
body___children___children___children | |
body___children___internal___content | |
body___children___internal___contentDigest | |
body___children___internal___description | |
body___children___internal___fieldOwners | |
body___children___internal___ignoreType | |
body___children___internal___mediaType | |
body___children___internal___owner | |
body___children___internal___type | |
body___internal___content | |
body___internal___contentDigest | |
body___internal___description | |
body___internal___fieldOwners | |
body___internal___ignoreType | |
body___internal___mediaType | |
body___internal___owner | |
body___internal___type | |
body___content | |
body___content___content | |
body___content___content___marks | |
body___content___content___value | |
body___content___content___nodeType | |
body___content___content___content | |
body___content___nodeType | |
body___nodeType | |
body___body | |
body___json | |
body___childContentfulRichText___id | |
body___childContentfulRichText___parent___id | |
body___childContentfulRichText___parent___children | |
body___childContentfulRichText___children | |
body___childContentfulRichText___children___id | |
body___childContentfulRichText___children___children | |
body___childContentfulRichText___internal___content | |
body___childContentfulRichText___internal___contentDigest | |
body___childContentfulRichText___internal___description | |
body___childContentfulRichText___internal___fieldOwners | |
body___childContentfulRichText___internal___ignoreType | |
body___childContentfulRichText___internal___mediaType | |
body___childContentfulRichText___internal___owner | |
body___childContentfulRichText___internal___type | |
body___childContentfulRichText___html | |
body___childContentfulRichText___timeToRead | |
spaceId | |
contentful_id | |
createdAt | |
updatedAt | |
node_locale | |
author___id | |
author___parent___id | |
author___parent___parent___id | |
author___parent___parent___children | |
author___parent___children | |
author___parent___children___id | |
author___parent___children___children | |
author___parent___internal___content | |
author___parent___internal___contentDigest | |
author___parent___internal___description | |
author___parent___internal___fieldOwners | |
author___parent___internal___ignoreType | |
author___parent___internal___mediaType | |
author___parent___internal___owner | |
author___parent___internal___type | |
author___children | |
author___children___id | |
author___children___parent___id | |
author___children___parent___children | |
author___children___children | |
author___children___children___id | |
author___children___children___children | |
author___children___internal___content | |
author___children___internal___contentDigest | |
author___children___internal___description | |
author___children___internal___fieldOwners | |
author___children___internal___ignoreType | |
author___children___internal___mediaType | |
author___children___internal___owner | |
author___children___internal___type | |
author___internal___content | |
author___internal___contentDigest | |
author___internal___description | |
author___internal___fieldOwners | |
author___internal___ignoreType | |
author___internal___mediaType | |
author___internal___owner | |
author___internal___type | |
author___name | |
author___title | |
author___company | |
author___email | |
author___phone | |
author___facebook | |
author___twitter | |
author___github | |
author___image___id | |
author___image___parent___id | |
author___image___parent___children | |
author___image___children | |
author___image___children___id | |
author___image___children___children | |
author___image___internal___content | |
author___image___internal___contentDigest | |
author___image___internal___description | |
author___image___internal___fieldOwners | |
author___image___internal___ignoreType | |
author___image___internal___mediaType | |
author___image___internal___owner | |
author___image___internal___type | |
author___image___contentful_id | |
author___image___file___url | |
author___image___file___fileName | |
author___image___file___contentType | |
author___image___title | |
author___image___description | |
author___image___node_locale | |
author___image___fixed___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
author___image___fixed___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
author___image___fixed___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
author___image___fixed___width @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
author___image___fixed___height @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
author___image___fixed___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
author___image___fixed___srcSet @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
author___image___fixed___srcWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
author___image___fixed___srcSetWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
author___image___resolutions___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
author___image___resolutions___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
author___image___resolutions___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
author___image___resolutions___width @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
author___image___resolutions___height @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
author___image___resolutions___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
author___image___resolutions___srcSet @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
author___image___resolutions___srcWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
author___image___resolutions___srcSetWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
author___image___fluid___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
author___image___fluid___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
author___image___fluid___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
author___image___fluid___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
author___image___fluid___srcSet @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
author___image___fluid___srcWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
author___image___fluid___srcSetWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
author___image___fluid___sizes @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
author___image___sizes___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
author___image___sizes___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
author___image___sizes___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
author___image___sizes___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
author___image___sizes___srcSet @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
author___image___sizes___srcWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
author___image___sizes___srcSetWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
author___image___sizes___sizes @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
author___image___resize___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
author___image___resize___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
author___image___resize___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
author___image___resize___width @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
author___image___resize___height @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
author___image___resize___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
author___blogpost | |
author___blogpost___id | |
author___blogpost___parent___id | |
author___blogpost___parent___children | |
author___blogpost___children | |
author___blogpost___children___id | |
author___blogpost___children___children | |
author___blogpost___internal___content | |
author___blogpost___internal___contentDigest | |
author___blogpost___internal___description | |
author___blogpost___internal___fieldOwners | |
author___blogpost___internal___ignoreType | |
author___blogpost___internal___mediaType | |
author___blogpost___internal___owner | |
author___blogpost___internal___type | |
author___blogpost___title | |
author___blogpost___slug | |
author___blogpost___publishDate | |
author___blogpost___featuredImage___id | |
author___blogpost___featuredImage___children | |
author___blogpost___featuredImage___contentful_id | |
author___blogpost___featuredImage___title | |
author___blogpost___featuredImage___description | |
author___blogpost___featuredImage___node_locale | |
author___blogpost___categories | |
author___blogpost___categories___id | |
author___blogpost___categories___children | |
author___blogpost___categories___title | |
author___blogpost___categories___slug | |
author___blogpost___categories___blogpost | |
author___blogpost___categories___spaceId | |
author___blogpost___categories___contentful_id | |
author___blogpost___categories___createdAt | |
author___blogpost___categories___updatedAt | |
author___blogpost___categories___node_locale | |
author___blogpost___categories___menu | |
author___blogpost___categories___product | |
author___blogpost___page | |
author___blogpost___page___id | |
author___blogpost___page___children | |
author___blogpost___page___title | |
author___blogpost___page___slug | |
author___blogpost___page___isHomePage | |
author___blogpost___page___featuredPosts | |
author___blogpost___page___spaceId | |
author___blogpost___page___contentful_id | |
author___blogpost___page___createdAt | |
author___blogpost___page___updatedAt | |
author___blogpost___page___node_locale | |
author___blogpost___body___id | |
author___blogpost___body___children | |
author___blogpost___body___content | |
author___blogpost___body___nodeType | |
author___blogpost___body___body | |
author___blogpost___body___json | |
author___blogpost___spaceId | |
author___blogpost___contentful_id | |
author___blogpost___createdAt | |
author___blogpost___updatedAt | |
author___blogpost___node_locale | |
author___blogpost___author___id | |
author___blogpost___author___children | |
author___blogpost___author___name | |
author___blogpost___author___title | |
author___blogpost___author___company | |
author___blogpost___author___email | |
author___blogpost___author___phone | |
author___blogpost___author___facebook | |
author___blogpost___author___twitter | |
author___blogpost___author___github | |
author___blogpost___author___blogpost | |
author___blogpost___author___spaceId | |
author___blogpost___author___contentful_id | |
author___blogpost___author___createdAt | |
author___blogpost___author___updatedAt | |
author___blogpost___author___node_locale | |
author___blogpost___childContentfulBlogPostBodyRichTextNode___id | |
author___blogpost___childContentfulBlogPostBodyRichTextNode___children | |
author___blogpost___childContentfulBlogPostBodyRichTextNode___content | |
author___blogpost___childContentfulBlogPostBodyRichTextNode___nodeType | |
author___blogpost___childContentfulBlogPostBodyRichTextNode___body | |
author___blogpost___childContentfulBlogPostBodyRichTextNode___json | |
author___shortBio___id | |
author___shortBio___parent___id | |
author___shortBio___parent___children | |
author___shortBio___children | |
author___shortBio___children___id | |
author___shortBio___children___children | |
author___shortBio___internal___content | |
author___shortBio___internal___contentDigest | |
author___shortBio___internal___description | |
author___shortBio___internal___fieldOwners | |
author___shortBio___internal___ignoreType | |
author___shortBio___internal___mediaType | |
author___shortBio___internal___owner | |
author___shortBio___internal___type | |
author___shortBio___shortBio | |
author___spaceId | |
author___contentful_id | |
author___createdAt | |
author___updatedAt | |
author___node_locale | |
author___childContentfulPersonShortBioTextNode___id | |
author___childContentfulPersonShortBioTextNode___parent___id | |
author___childContentfulPersonShortBioTextNode___parent___children | |
author___childContentfulPersonShortBioTextNode___children | |
author___childContentfulPersonShortBioTextNode___children___id | |
author___childContentfulPersonShortBioTextNode___children___children | |
author___childContentfulPersonShortBioTextNode___internal___content | |
author___childContentfulPersonShortBioTextNode___internal___contentDigest | |
author___childContentfulPersonShortBioTextNode___internal___description | |
author___childContentfulPersonShortBioTextNode___internal___fieldOwners | |
author___childContentfulPersonShortBioTextNode___internal___ignoreType | |
author___childContentfulPersonShortBioTextNode___internal___mediaType | |
author___childContentfulPersonShortBioTextNode___internal___owner | |
author___childContentfulPersonShortBioTextNode___internal___type | |
author___childContentfulPersonShortBioTextNode___shortBio | |
childContentfulBlogPostBodyRichTextNode___id | |
childContentfulBlogPostBodyRichTextNode___parent___id | |
childContentfulBlogPostBodyRichTextNode___parent___parent___id | |
childContentfulBlogPostBodyRichTextNode___parent___parent___children | |
childContentfulBlogPostBodyRichTextNode___parent___children | |
childContentfulBlogPostBodyRichTextNode___parent___children___id | |
childContentfulBlogPostBodyRichTextNode___parent___children___children | |
childContentfulBlogPostBodyRichTextNode___parent___internal___content | |
childContentfulBlogPostBodyRichTextNode___parent___internal___contentDigest | |
childContentfulBlogPostBodyRichTextNode___parent___internal___description | |
childContentfulBlogPostBodyRichTextNode___parent___internal___fieldOwners | |
childContentfulBlogPostBodyRichTextNode___parent___internal___ignoreType | |
childContentfulBlogPostBodyRichTextNode___parent___internal___mediaType | |
childContentfulBlogPostBodyRichTextNode___parent___internal___owner | |
childContentfulBlogPostBodyRichTextNode___parent___internal___type | |
childContentfulBlogPostBodyRichTextNode___children | |
childContentfulBlogPostBodyRichTextNode___children___id | |
childContentfulBlogPostBodyRichTextNode___children___parent___id | |
childContentfulBlogPostBodyRichTextNode___children___parent___children | |
childContentfulBlogPostBodyRichTextNode___children___children | |
childContentfulBlogPostBodyRichTextNode___children___children___id | |
childContentfulBlogPostBodyRichTextNode___children___children___children | |
childContentfulBlogPostBodyRichTextNode___children___internal___content | |
childContentfulBlogPostBodyRichTextNode___children___internal___contentDigest | |
childContentfulBlogPostBodyRichTextNode___children___internal___description | |
childContentfulBlogPostBodyRichTextNode___children___internal___fieldOwners | |
childContentfulBlogPostBodyRichTextNode___children___internal___ignoreType | |
childContentfulBlogPostBodyRichTextNode___children___internal___mediaType | |
childContentfulBlogPostBodyRichTextNode___children___internal___owner | |
childContentfulBlogPostBodyRichTextNode___children___internal___type | |
childContentfulBlogPostBodyRichTextNode___internal___content | |
childContentfulBlogPostBodyRichTextNode___internal___contentDigest | |
childContentfulBlogPostBodyRichTextNode___internal___description | |
childContentfulBlogPostBodyRichTextNode___internal___fieldOwners | |
childContentfulBlogPostBodyRichTextNode___internal___ignoreType | |
childContentfulBlogPostBodyRichTextNode___internal___mediaType | |
childContentfulBlogPostBodyRichTextNode___internal___owner | |
childContentfulBlogPostBodyRichTextNode___internal___type | |
childContentfulBlogPostBodyRichTextNode___content | |
childContentfulBlogPostBodyRichTextNode___content___content | |
childContentfulBlogPostBodyRichTextNode___content___content___marks | |
childContentfulBlogPostBodyRichTextNode___content___content___value | |
childContentfulBlogPostBodyRichTextNode___content___content___nodeType | |
childContentfulBlogPostBodyRichTextNode___content___content___content | |
childContentfulBlogPostBodyRichTextNode___content___nodeType | |
childContentfulBlogPostBodyRichTextNode___nodeType | |
childContentfulBlogPostBodyRichTextNode___body | |
childContentfulBlogPostBodyRichTextNode___json | |
childContentfulBlogPostBodyRichTextNode___childContentfulRichText___id | |
childContentfulBlogPostBodyRichTextNode___childContentfulRichText___parent___id | |
childContentfulBlogPostBodyRichTextNode___childContentfulRichText___parent___children | |
childContentfulBlogPostBodyRichTextNode___childContentfulRichText___children | |
childContentfulBlogPostBodyRichTextNode___childContentfulRichText___children___id | |
childContentfulBlogPostBodyRichTextNode___childContentfulRichText___children___children | |
childContentfulBlogPostBodyRichTextNode___childContentfulRichText___internal___content | |
childContentfulBlogPostBodyRichTextNode___childContentfulRichText___internal___contentDigest | |
childContentfulBlogPostBodyRichTextNode___childContentfulRichText___internal___description | |
childContentfulBlogPostBodyRichTextNode___childContentfulRichText___internal___fieldOwners | |
childContentfulBlogPostBodyRichTextNode___childContentfulRichText___internal___ignoreType | |
childContentfulBlogPostBodyRichTextNode___childContentfulRichText___internal___mediaType | |
childContentfulBlogPostBodyRichTextNode___childContentfulRichText___internal___owner | |
childContentfulBlogPostBodyRichTextNode___childContentfulRichText___internal___type | |
childContentfulBlogPostBodyRichTextNode___childContentfulRichText___html | |
childContentfulBlogPostBodyRichTextNode___childContentfulRichText___timeToRead | |
} | |
input ContentfulBlogPostFilterInput { | |
id: StringQueryOperatorInput | |
parent: NodeFilterInput | |
children: NodeFilterListInput | |
internal: InternalFilterInput | |
title: StringQueryOperatorInput | |
slug: StringQueryOperatorInput | |
publishDate: DateQueryOperatorInput | |
featuredImage: ContentfulAssetFilterInput | |
categories: ContentfulCategoryFilterListInput | |
page: ContentfulPageFilterListInput | |
body: contentfulBlogPostBodyRichTextNodeFilterInput | |
spaceId: StringQueryOperatorInput | |
contentful_id: StringQueryOperatorInput | |
createdAt: DateQueryOperatorInput | |
updatedAt: DateQueryOperatorInput | |
node_locale: StringQueryOperatorInput | |
author: ContentfulPersonFilterInput | |
childContentfulBlogPostBodyRichTextNode: contentfulBlogPostBodyRichTextNodeFilterInput | |
} | |
input ContentfulBlogPostFilterListInput { | |
elemMatch: ContentfulBlogPostFilterInput | |
} | |
type ContentfulBlogPostGroupConnection { | |
totalCount: Int! | |
edges: [ContentfulBlogPostEdge!]! | |
nodes: [ContentfulBlogPost!]! | |
pageInfo: PageInfo! | |
field: String! | |
fieldValue: String | |
} | |
input ContentfulBlogPostSortInput { | |
fields: [ContentfulBlogPostFieldsEnum] | |
order: [SortOrderEnum] = [ASC] | |
} | |
type ContentfulCategory implements Node { | |
id: ID! | |
parent: Node | |
children: [Node!]! | |
internal: Internal! | |
title: String | |
slug: String | |
featuredImage: ContentfulAsset | |
blogpost: [ContentfulBlogPost] | |
spaceId: String | |
contentful_id: String | |
createdAt( | |
""" | |
Format the date using Moment.js' date tokens, e.g. `date(formatString: "YYYY | |
MMMM DD")`. See https://momentjs.com/docs/#/displaying/format/ for | |
documentation for different tokens. | |
""" | |
formatString: String | |
"""Returns a string generated with Moment.js' `fromNow` function""" | |
fromNow: Boolean | |
""" | |
Returns the difference between this date and the current time. Defaults to | |
"milliseconds" but you can also pass in as the measurement "years", | |
"months", "weeks", "days", "hours", "minutes", and "seconds". | |
""" | |
difference: String | |
"""Configures the locale Moment.js will use to format the date.""" | |
locale: String | |
): Date | |
updatedAt( | |
""" | |
Format the date using Moment.js' date tokens, e.g. `date(formatString: "YYYY | |
MMMM DD")`. See https://momentjs.com/docs/#/displaying/format/ for | |
documentation for different tokens. | |
""" | |
formatString: String | |
"""Returns a string generated with Moment.js' `fromNow` function""" | |
fromNow: Boolean | |
""" | |
Returns the difference between this date and the current time. Defaults to | |
"milliseconds" but you can also pass in as the measurement "years", | |
"months", "weeks", "days", "hours", "minutes", and "seconds". | |
""" | |
difference: String | |
"""Configures the locale Moment.js will use to format the date.""" | |
locale: String | |
): Date | |
node_locale: String | |
menu: [ContentfulMenu] | |
product: [ContentfulProduct] | |
body: contentfulCategoryBodyRichTextNode | |
childContentfulCategoryBodyRichTextNode: contentfulCategoryBodyRichTextNode | |
} | |
type contentfulCategoryBodyRichTextNode implements Node { | |
id: ID! | |
parent: Node | |
children: [Node!]! | |
internal: Internal! | |
content: [contentfulCategoryBodyRichTextNodeContent] | |
nodeType: String @deprecated(reason: "This field is deprecated, please use 'json' instead.") | |
body: String | |
json: JSON | |
childContentfulRichText: ContentfulRichText | |
} | |
type contentfulCategoryBodyRichTextNodeConnection { | |
totalCount: Int! | |
edges: [contentfulCategoryBodyRichTextNodeEdge!]! | |
nodes: [contentfulCategoryBodyRichTextNode!]! | |
pageInfo: PageInfo! | |
distinct(field: contentfulCategoryBodyRichTextNodeFieldsEnum!): [String!]! | |
group(skip: Int, limit: Int, field: contentfulCategoryBodyRichTextNodeFieldsEnum!): [contentfulCategoryBodyRichTextNodeGroupConnection!]! | |
} | |
type contentfulCategoryBodyRichTextNodeContent { | |
content: [contentfulCategoryBodyRichTextNodeContentContent] | |
nodeType: String | |
} | |
type contentfulCategoryBodyRichTextNodeContentContent { | |
value: String | |
nodeType: String | |
} | |
input contentfulCategoryBodyRichTextNodeContentContentFilterInput { | |
value: StringQueryOperatorInput | |
nodeType: StringQueryOperatorInput | |
} | |
input contentfulCategoryBodyRichTextNodeContentContentFilterListInput { | |
elemMatch: contentfulCategoryBodyRichTextNodeContentContentFilterInput | |
} | |
input contentfulCategoryBodyRichTextNodeContentFilterInput { | |
content: contentfulCategoryBodyRichTextNodeContentContentFilterListInput | |
nodeType: StringQueryOperatorInput | |
} | |
input contentfulCategoryBodyRichTextNodeContentFilterListInput { | |
elemMatch: contentfulCategoryBodyRichTextNodeContentFilterInput | |
} | |
type contentfulCategoryBodyRichTextNodeEdge { | |
next: contentfulCategoryBodyRichTextNode | |
node: contentfulCategoryBodyRichTextNode! | |
previous: contentfulCategoryBodyRichTextNode | |
} | |
enum contentfulCategoryBodyRichTextNodeFieldsEnum { | |
id | |
parent___id | |
parent___parent___id | |
parent___parent___parent___id | |
parent___parent___parent___children | |
parent___parent___children | |
parent___parent___children___id | |
parent___parent___children___children | |
parent___parent___internal___content | |
parent___parent___internal___contentDigest | |
parent___parent___internal___description | |
parent___parent___internal___fieldOwners | |
parent___parent___internal___ignoreType | |
parent___parent___internal___mediaType | |
parent___parent___internal___owner | |
parent___parent___internal___type | |
parent___children | |
parent___children___id | |
parent___children___parent___id | |
parent___children___parent___children | |
parent___children___children | |
parent___children___children___id | |
parent___children___children___children | |
parent___children___internal___content | |
parent___children___internal___contentDigest | |
parent___children___internal___description | |
parent___children___internal___fieldOwners | |
parent___children___internal___ignoreType | |
parent___children___internal___mediaType | |
parent___children___internal___owner | |
parent___children___internal___type | |
parent___internal___content | |
parent___internal___contentDigest | |
parent___internal___description | |
parent___internal___fieldOwners | |
parent___internal___ignoreType | |
parent___internal___mediaType | |
parent___internal___owner | |
parent___internal___type | |
children | |
children___id | |
children___parent___id | |
children___parent___parent___id | |
children___parent___parent___children | |
children___parent___children | |
children___parent___children___id | |
children___parent___children___children | |
children___parent___internal___content | |
children___parent___internal___contentDigest | |
children___parent___internal___description | |
children___parent___internal___fieldOwners | |
children___parent___internal___ignoreType | |
children___parent___internal___mediaType | |
children___parent___internal___owner | |
children___parent___internal___type | |
children___children | |
children___children___id | |
children___children___parent___id | |
children___children___parent___children | |
children___children___children | |
children___children___children___id | |
children___children___children___children | |
children___children___internal___content | |
children___children___internal___contentDigest | |
children___children___internal___description | |
children___children___internal___fieldOwners | |
children___children___internal___ignoreType | |
children___children___internal___mediaType | |
children___children___internal___owner | |
children___children___internal___type | |
children___internal___content | |
children___internal___contentDigest | |
children___internal___description | |
children___internal___fieldOwners | |
children___internal___ignoreType | |
children___internal___mediaType | |
children___internal___owner | |
children___internal___type | |
internal___content | |
internal___contentDigest | |
internal___description | |
internal___fieldOwners | |
internal___ignoreType | |
internal___mediaType | |
internal___owner | |
internal___type | |
content | |
content___content | |
content___content___value | |
content___content___nodeType | |
content___nodeType | |
nodeType | |
body | |
json | |
childContentfulRichText___id | |
childContentfulRichText___parent___id | |
childContentfulRichText___parent___parent___id | |
childContentfulRichText___parent___parent___children | |
childContentfulRichText___parent___children | |
childContentfulRichText___parent___children___id | |
childContentfulRichText___parent___children___children | |
childContentfulRichText___parent___internal___content | |
childContentfulRichText___parent___internal___contentDigest | |
childContentfulRichText___parent___internal___description | |
childContentfulRichText___parent___internal___fieldOwners | |
childContentfulRichText___parent___internal___ignoreType | |
childContentfulRichText___parent___internal___mediaType | |
childContentfulRichText___parent___internal___owner | |
childContentfulRichText___parent___internal___type | |
childContentfulRichText___children | |
childContentfulRichText___children___id | |
childContentfulRichText___children___parent___id | |
childContentfulRichText___children___parent___children | |
childContentfulRichText___children___children | |
childContentfulRichText___children___children___id | |
childContentfulRichText___children___children___children | |
childContentfulRichText___children___internal___content | |
childContentfulRichText___children___internal___contentDigest | |
childContentfulRichText___children___internal___description | |
childContentfulRichText___children___internal___fieldOwners | |
childContentfulRichText___children___internal___ignoreType | |
childContentfulRichText___children___internal___mediaType | |
childContentfulRichText___children___internal___owner | |
childContentfulRichText___children___internal___type | |
childContentfulRichText___internal___content | |
childContentfulRichText___internal___contentDigest | |
childContentfulRichText___internal___description | |
childContentfulRichText___internal___fieldOwners | |
childContentfulRichText___internal___ignoreType | |
childContentfulRichText___internal___mediaType | |
childContentfulRichText___internal___owner | |
childContentfulRichText___internal___type | |
childContentfulRichText___html | |
childContentfulRichText___timeToRead | |
} | |
input contentfulCategoryBodyRichTextNodeFilterInput { | |
id: StringQueryOperatorInput | |
parent: NodeFilterInput | |
children: NodeFilterListInput | |
internal: InternalFilterInput | |
content: contentfulCategoryBodyRichTextNodeContentFilterListInput | |
nodeType: StringQueryOperatorInput | |
body: StringQueryOperatorInput | |
json: JSONQueryOperatorInput | |
childContentfulRichText: ContentfulRichTextFilterInput | |
} | |
type contentfulCategoryBodyRichTextNodeGroupConnection { | |
totalCount: Int! | |
edges: [contentfulCategoryBodyRichTextNodeEdge!]! | |
nodes: [contentfulCategoryBodyRichTextNode!]! | |
pageInfo: PageInfo! | |
field: String! | |
fieldValue: String | |
} | |
input contentfulCategoryBodyRichTextNodeSortInput { | |
fields: [contentfulCategoryBodyRichTextNodeFieldsEnum] | |
order: [SortOrderEnum] = [ASC] | |
} | |
type ContentfulCategoryConnection { | |
totalCount: Int! | |
edges: [ContentfulCategoryEdge!]! | |
nodes: [ContentfulCategory!]! | |
pageInfo: PageInfo! | |
distinct(field: ContentfulCategoryFieldsEnum!): [String!]! | |
group(skip: Int, limit: Int, field: ContentfulCategoryFieldsEnum!): [ContentfulCategoryGroupConnection!]! | |
} | |
type ContentfulCategoryEdge { | |
next: ContentfulCategory | |
node: ContentfulCategory! | |
previous: ContentfulCategory | |
} | |
enum ContentfulCategoryFieldsEnum { | |
id | |
parent___id | |
parent___parent___id | |
parent___parent___parent___id | |
parent___parent___parent___children | |
parent___parent___children | |
parent___parent___children___id | |
parent___parent___children___children | |
parent___parent___internal___content | |
parent___parent___internal___contentDigest | |
parent___parent___internal___description | |
parent___parent___internal___fieldOwners | |
parent___parent___internal___ignoreType | |
parent___parent___internal___mediaType | |
parent___parent___internal___owner | |
parent___parent___internal___type | |
parent___children | |
parent___children___id | |
parent___children___parent___id | |
parent___children___parent___children | |
parent___children___children | |
parent___children___children___id | |
parent___children___children___children | |
parent___children___internal___content | |
parent___children___internal___contentDigest | |
parent___children___internal___description | |
parent___children___internal___fieldOwners | |
parent___children___internal___ignoreType | |
parent___children___internal___mediaType | |
parent___children___internal___owner | |
parent___children___internal___type | |
parent___internal___content | |
parent___internal___contentDigest | |
parent___internal___description | |
parent___internal___fieldOwners | |
parent___internal___ignoreType | |
parent___internal___mediaType | |
parent___internal___owner | |
parent___internal___type | |
children | |
children___id | |
children___parent___id | |
children___parent___parent___id | |
children___parent___parent___children | |
children___parent___children | |
children___parent___children___id | |
children___parent___children___children | |
children___parent___internal___content | |
children___parent___internal___contentDigest | |
children___parent___internal___description | |
children___parent___internal___fieldOwners | |
children___parent___internal___ignoreType | |
children___parent___internal___mediaType | |
children___parent___internal___owner | |
children___parent___internal___type | |
children___children | |
children___children___id | |
children___children___parent___id | |
children___children___parent___children | |
children___children___children | |
children___children___children___id | |
children___children___children___children | |
children___children___internal___content | |
children___children___internal___contentDigest | |
children___children___internal___description | |
children___children___internal___fieldOwners | |
children___children___internal___ignoreType | |
children___children___internal___mediaType | |
children___children___internal___owner | |
children___children___internal___type | |
children___internal___content | |
children___internal___contentDigest | |
children___internal___description | |
children___internal___fieldOwners | |
children___internal___ignoreType | |
children___internal___mediaType | |
children___internal___owner | |
children___internal___type | |
internal___content | |
internal___contentDigest | |
internal___description | |
internal___fieldOwners | |
internal___ignoreType | |
internal___mediaType | |
internal___owner | |
internal___type | |
title | |
slug | |
featuredImage___id | |
featuredImage___parent___id | |
featuredImage___parent___parent___id | |
featuredImage___parent___parent___children | |
featuredImage___parent___children | |
featuredImage___parent___children___id | |
featuredImage___parent___children___children | |
featuredImage___parent___internal___content | |
featuredImage___parent___internal___contentDigest | |
featuredImage___parent___internal___description | |
featuredImage___parent___internal___fieldOwners | |
featuredImage___parent___internal___ignoreType | |
featuredImage___parent___internal___mediaType | |
featuredImage___parent___internal___owner | |
featuredImage___parent___internal___type | |
featuredImage___children | |
featuredImage___children___id | |
featuredImage___children___parent___id | |
featuredImage___children___parent___children | |
featuredImage___children___children | |
featuredImage___children___children___id | |
featuredImage___children___children___children | |
featuredImage___children___internal___content | |
featuredImage___children___internal___contentDigest | |
featuredImage___children___internal___description | |
featuredImage___children___internal___fieldOwners | |
featuredImage___children___internal___ignoreType | |
featuredImage___children___internal___mediaType | |
featuredImage___children___internal___owner | |
featuredImage___children___internal___type | |
featuredImage___internal___content | |
featuredImage___internal___contentDigest | |
featuredImage___internal___description | |
featuredImage___internal___fieldOwners | |
featuredImage___internal___ignoreType | |
featuredImage___internal___mediaType | |
featuredImage___internal___owner | |
featuredImage___internal___type | |
featuredImage___contentful_id | |
featuredImage___file___url | |
featuredImage___file___details___size | |
featuredImage___file___fileName | |
featuredImage___file___contentType | |
featuredImage___title | |
featuredImage___description | |
featuredImage___node_locale | |
featuredImage___fixed___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___fixed___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___fixed___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___fixed___width @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___fixed___height @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___fixed___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___fixed___srcSet @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___fixed___srcWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___fixed___srcSetWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___resolutions___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___resolutions___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___resolutions___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___resolutions___width @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___resolutions___height @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___resolutions___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___resolutions___srcSet @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___resolutions___srcWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___resolutions___srcSetWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___fluid___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___fluid___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___fluid___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___fluid___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___fluid___srcSet @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___fluid___srcWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___fluid___srcSetWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___fluid___sizes @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___sizes___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___sizes___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___sizes___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___sizes___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___sizes___srcSet @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___sizes___srcWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___sizes___srcSetWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___sizes___sizes @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___resize___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___resize___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___resize___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___resize___width @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___resize___height @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___resize___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost | |
blogpost___id | |
blogpost___parent___id | |
blogpost___parent___parent___id | |
blogpost___parent___parent___children | |
blogpost___parent___children | |
blogpost___parent___children___id | |
blogpost___parent___children___children | |
blogpost___parent___internal___content | |
blogpost___parent___internal___contentDigest | |
blogpost___parent___internal___description | |
blogpost___parent___internal___fieldOwners | |
blogpost___parent___internal___ignoreType | |
blogpost___parent___internal___mediaType | |
blogpost___parent___internal___owner | |
blogpost___parent___internal___type | |
blogpost___children | |
blogpost___children___id | |
blogpost___children___parent___id | |
blogpost___children___parent___children | |
blogpost___children___children | |
blogpost___children___children___id | |
blogpost___children___children___children | |
blogpost___children___internal___content | |
blogpost___children___internal___contentDigest | |
blogpost___children___internal___description | |
blogpost___children___internal___fieldOwners | |
blogpost___children___internal___ignoreType | |
blogpost___children___internal___mediaType | |
blogpost___children___internal___owner | |
blogpost___children___internal___type | |
blogpost___internal___content | |
blogpost___internal___contentDigest | |
blogpost___internal___description | |
blogpost___internal___fieldOwners | |
blogpost___internal___ignoreType | |
blogpost___internal___mediaType | |
blogpost___internal___owner | |
blogpost___internal___type | |
blogpost___title | |
blogpost___slug | |
blogpost___publishDate | |
blogpost___featuredImage___id | |
blogpost___featuredImage___parent___id | |
blogpost___featuredImage___parent___children | |
blogpost___featuredImage___children | |
blogpost___featuredImage___children___id | |
blogpost___featuredImage___children___children | |
blogpost___featuredImage___internal___content | |
blogpost___featuredImage___internal___contentDigest | |
blogpost___featuredImage___internal___description | |
blogpost___featuredImage___internal___fieldOwners | |
blogpost___featuredImage___internal___ignoreType | |
blogpost___featuredImage___internal___mediaType | |
blogpost___featuredImage___internal___owner | |
blogpost___featuredImage___internal___type | |
blogpost___featuredImage___contentful_id | |
blogpost___featuredImage___file___url | |
blogpost___featuredImage___file___fileName | |
blogpost___featuredImage___file___contentType | |
blogpost___featuredImage___title | |
blogpost___featuredImage___description | |
blogpost___featuredImage___node_locale | |
blogpost___featuredImage___fixed___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___fixed___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___fixed___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___fixed___width @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___fixed___height @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___fixed___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___fixed___srcSet @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___fixed___srcWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___fixed___srcSetWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___resolutions___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___resolutions___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___resolutions___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___resolutions___width @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___resolutions___height @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___resolutions___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___resolutions___srcSet @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___resolutions___srcWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___resolutions___srcSetWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___fluid___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___fluid___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___fluid___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___fluid___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___fluid___srcSet @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___fluid___srcWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___fluid___srcSetWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___fluid___sizes @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___sizes___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___sizes___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___sizes___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___sizes___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___sizes___srcSet @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___sizes___srcWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___sizes___srcSetWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___sizes___sizes @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___resize___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___resize___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___resize___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___resize___width @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___resize___height @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___resize___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___categories | |
blogpost___categories___id | |
blogpost___categories___parent___id | |
blogpost___categories___parent___children | |
blogpost___categories___children | |
blogpost___categories___children___id | |
blogpost___categories___children___children | |
blogpost___categories___internal___content | |
blogpost___categories___internal___contentDigest | |
blogpost___categories___internal___description | |
blogpost___categories___internal___fieldOwners | |
blogpost___categories___internal___ignoreType | |
blogpost___categories___internal___mediaType | |
blogpost___categories___internal___owner | |
blogpost___categories___internal___type | |
blogpost___categories___title | |
blogpost___categories___slug | |
blogpost___categories___featuredImage___id | |
blogpost___categories___featuredImage___children | |
blogpost___categories___featuredImage___contentful_id | |
blogpost___categories___featuredImage___title | |
blogpost___categories___featuredImage___description | |
blogpost___categories___featuredImage___node_locale | |
blogpost___categories___blogpost | |
blogpost___categories___blogpost___id | |
blogpost___categories___blogpost___children | |
blogpost___categories___blogpost___title | |
blogpost___categories___blogpost___slug | |
blogpost___categories___blogpost___publishDate | |
blogpost___categories___blogpost___categories | |
blogpost___categories___blogpost___page | |
blogpost___categories___blogpost___spaceId | |
blogpost___categories___blogpost___contentful_id | |
blogpost___categories___blogpost___createdAt | |
blogpost___categories___blogpost___updatedAt | |
blogpost___categories___blogpost___node_locale | |
blogpost___categories___spaceId | |
blogpost___categories___contentful_id | |
blogpost___categories___createdAt | |
blogpost___categories___updatedAt | |
blogpost___categories___node_locale | |
blogpost___categories___menu | |
blogpost___categories___menu___id | |
blogpost___categories___menu___children | |
blogpost___categories___menu___name | |
blogpost___categories___menu___menuItems | |
blogpost___categories___menu___spaceId | |
blogpost___categories___menu___contentful_id | |
blogpost___categories___menu___createdAt | |
blogpost___categories___menu___updatedAt | |
blogpost___categories___menu___node_locale | |
blogpost___categories___product | |
blogpost___categories___product___id | |
blogpost___categories___product___children | |
blogpost___categories___product___title | |
blogpost___categories___product___slug | |
blogpost___categories___product___price | |
blogpost___categories___product___categories | |
blogpost___categories___product___spaceId | |
blogpost___categories___product___contentful_id | |
blogpost___categories___product___createdAt | |
blogpost___categories___product___updatedAt | |
blogpost___categories___product___node_locale | |
blogpost___categories___body___id | |
blogpost___categories___body___children | |
blogpost___categories___body___content | |
blogpost___categories___body___nodeType | |
blogpost___categories___body___body | |
blogpost___categories___body___json | |
blogpost___categories___childContentfulCategoryBodyRichTextNode___id | |
blogpost___categories___childContentfulCategoryBodyRichTextNode___children | |
blogpost___categories___childContentfulCategoryBodyRichTextNode___content | |
blogpost___categories___childContentfulCategoryBodyRichTextNode___nodeType | |
blogpost___categories___childContentfulCategoryBodyRichTextNode___body | |
blogpost___categories___childContentfulCategoryBodyRichTextNode___json | |
blogpost___page | |
blogpost___page___id | |
blogpost___page___parent___id | |
blogpost___page___parent___children | |
blogpost___page___children | |
blogpost___page___children___id | |
blogpost___page___children___children | |
blogpost___page___internal___content | |
blogpost___page___internal___contentDigest | |
blogpost___page___internal___description | |
blogpost___page___internal___fieldOwners | |
blogpost___page___internal___ignoreType | |
blogpost___page___internal___mediaType | |
blogpost___page___internal___owner | |
blogpost___page___internal___type | |
blogpost___page___title | |
blogpost___page___slug | |
blogpost___page___isHomePage | |
blogpost___page___featuredPosts | |
blogpost___page___featuredPosts___id | |
blogpost___page___featuredPosts___children | |
blogpost___page___featuredPosts___title | |
blogpost___page___featuredPosts___slug | |
blogpost___page___featuredPosts___publishDate | |
blogpost___page___featuredPosts___categories | |
blogpost___page___featuredPosts___page | |
blogpost___page___featuredPosts___spaceId | |
blogpost___page___featuredPosts___contentful_id | |
blogpost___page___featuredPosts___createdAt | |
blogpost___page___featuredPosts___updatedAt | |
blogpost___page___featuredPosts___node_locale | |
blogpost___page___spaceId | |
blogpost___page___contentful_id | |
blogpost___page___createdAt | |
blogpost___page___updatedAt | |
blogpost___page___node_locale | |
blogpost___page___body___id | |
blogpost___page___body___children | |
blogpost___page___body___content | |
blogpost___page___body___nodeType | |
blogpost___page___body___body | |
blogpost___page___body___json | |
blogpost___page___childContentfulPageBodyRichTextNode___id | |
blogpost___page___childContentfulPageBodyRichTextNode___children | |
blogpost___page___childContentfulPageBodyRichTextNode___content | |
blogpost___page___childContentfulPageBodyRichTextNode___nodeType | |
blogpost___page___childContentfulPageBodyRichTextNode___body | |
blogpost___page___childContentfulPageBodyRichTextNode___json | |
blogpost___body___id | |
blogpost___body___parent___id | |
blogpost___body___parent___children | |
blogpost___body___children | |
blogpost___body___children___id | |
blogpost___body___children___children | |
blogpost___body___internal___content | |
blogpost___body___internal___contentDigest | |
blogpost___body___internal___description | |
blogpost___body___internal___fieldOwners | |
blogpost___body___internal___ignoreType | |
blogpost___body___internal___mediaType | |
blogpost___body___internal___owner | |
blogpost___body___internal___type | |
blogpost___body___content | |
blogpost___body___content___content | |
blogpost___body___content___nodeType | |
blogpost___body___nodeType | |
blogpost___body___body | |
blogpost___body___json | |
blogpost___body___childContentfulRichText___id | |
blogpost___body___childContentfulRichText___children | |
blogpost___body___childContentfulRichText___html | |
blogpost___body___childContentfulRichText___timeToRead | |
blogpost___spaceId | |
blogpost___contentful_id | |
blogpost___createdAt | |
blogpost___updatedAt | |
blogpost___node_locale | |
blogpost___author___id | |
blogpost___author___parent___id | |
blogpost___author___parent___children | |
blogpost___author___children | |
blogpost___author___children___id | |
blogpost___author___children___children | |
blogpost___author___internal___content | |
blogpost___author___internal___contentDigest | |
blogpost___author___internal___description | |
blogpost___author___internal___fieldOwners | |
blogpost___author___internal___ignoreType | |
blogpost___author___internal___mediaType | |
blogpost___author___internal___owner | |
blogpost___author___internal___type | |
blogpost___author___name | |
blogpost___author___title | |
blogpost___author___company | |
blogpost___author___email | |
blogpost___author___phone | |
blogpost___author___facebook | |
blogpost___author___twitter | |
blogpost___author___github | |
blogpost___author___image___id | |
blogpost___author___image___children | |
blogpost___author___image___contentful_id | |
blogpost___author___image___title | |
blogpost___author___image___description | |
blogpost___author___image___node_locale | |
blogpost___author___blogpost | |
blogpost___author___blogpost___id | |
blogpost___author___blogpost___children | |
blogpost___author___blogpost___title | |
blogpost___author___blogpost___slug | |
blogpost___author___blogpost___publishDate | |
blogpost___author___blogpost___categories | |
blogpost___author___blogpost___page | |
blogpost___author___blogpost___spaceId | |
blogpost___author___blogpost___contentful_id | |
blogpost___author___blogpost___createdAt | |
blogpost___author___blogpost___updatedAt | |
blogpost___author___blogpost___node_locale | |
blogpost___author___shortBio___id | |
blogpost___author___shortBio___children | |
blogpost___author___shortBio___shortBio | |
blogpost___author___spaceId | |
blogpost___author___contentful_id | |
blogpost___author___createdAt | |
blogpost___author___updatedAt | |
blogpost___author___node_locale | |
blogpost___author___childContentfulPersonShortBioTextNode___id | |
blogpost___author___childContentfulPersonShortBioTextNode___children | |
blogpost___author___childContentfulPersonShortBioTextNode___shortBio | |
blogpost___childContentfulBlogPostBodyRichTextNode___id | |
blogpost___childContentfulBlogPostBodyRichTextNode___parent___id | |
blogpost___childContentfulBlogPostBodyRichTextNode___parent___children | |
blogpost___childContentfulBlogPostBodyRichTextNode___children | |
blogpost___childContentfulBlogPostBodyRichTextNode___children___id | |
blogpost___childContentfulBlogPostBodyRichTextNode___children___children | |
blogpost___childContentfulBlogPostBodyRichTextNode___internal___content | |
blogpost___childContentfulBlogPostBodyRichTextNode___internal___contentDigest | |
blogpost___childContentfulBlogPostBodyRichTextNode___internal___description | |
blogpost___childContentfulBlogPostBodyRichTextNode___internal___fieldOwners | |
blogpost___childContentfulBlogPostBodyRichTextNode___internal___ignoreType | |
blogpost___childContentfulBlogPostBodyRichTextNode___internal___mediaType | |
blogpost___childContentfulBlogPostBodyRichTextNode___internal___owner | |
blogpost___childContentfulBlogPostBodyRichTextNode___internal___type | |
blogpost___childContentfulBlogPostBodyRichTextNode___content | |
blogpost___childContentfulBlogPostBodyRichTextNode___content___content | |
blogpost___childContentfulBlogPostBodyRichTextNode___content___nodeType | |
blogpost___childContentfulBlogPostBodyRichTextNode___nodeType | |
blogpost___childContentfulBlogPostBodyRichTextNode___body | |
blogpost___childContentfulBlogPostBodyRichTextNode___json | |
blogpost___childContentfulBlogPostBodyRichTextNode___childContentfulRichText___id | |
blogpost___childContentfulBlogPostBodyRichTextNode___childContentfulRichText___children | |
blogpost___childContentfulBlogPostBodyRichTextNode___childContentfulRichText___html | |
blogpost___childContentfulBlogPostBodyRichTextNode___childContentfulRichText___timeToRead | |
spaceId | |
contentful_id | |
createdAt | |
updatedAt | |
node_locale | |
menu | |
menu___id | |
menu___parent___id | |
menu___parent___parent___id | |
menu___parent___parent___children | |
menu___parent___children | |
menu___parent___children___id | |
menu___parent___children___children | |
menu___parent___internal___content | |
menu___parent___internal___contentDigest | |
menu___parent___internal___description | |
menu___parent___internal___fieldOwners | |
menu___parent___internal___ignoreType | |
menu___parent___internal___mediaType | |
menu___parent___internal___owner | |
menu___parent___internal___type | |
menu___children | |
menu___children___id | |
menu___children___parent___id | |
menu___children___parent___children | |
menu___children___children | |
menu___children___children___id | |
menu___children___children___children | |
menu___children___internal___content | |
menu___children___internal___contentDigest | |
menu___children___internal___description | |
menu___children___internal___fieldOwners | |
menu___children___internal___ignoreType | |
menu___children___internal___mediaType | |
menu___children___internal___owner | |
menu___children___internal___type | |
menu___internal___content | |
menu___internal___contentDigest | |
menu___internal___description | |
menu___internal___fieldOwners | |
menu___internal___ignoreType | |
menu___internal___mediaType | |
menu___internal___owner | |
menu___internal___type | |
menu___name | |
menu___menuItems | |
menu___menuItems___id | |
menu___menuItems___parent___id | |
menu___menuItems___parent___children | |
menu___menuItems___children | |
menu___menuItems___children___id | |
menu___menuItems___children___children | |
menu___menuItems___internal___content | |
menu___menuItems___internal___contentDigest | |
menu___menuItems___internal___description | |
menu___menuItems___internal___fieldOwners | |
menu___menuItems___internal___ignoreType | |
menu___menuItems___internal___mediaType | |
menu___menuItems___internal___owner | |
menu___menuItems___internal___type | |
menu___menuItems___title | |
menu___menuItems___slug | |
menu___menuItems___featuredImage___id | |
menu___menuItems___featuredImage___children | |
menu___menuItems___featuredImage___contentful_id | |
menu___menuItems___featuredImage___title | |
menu___menuItems___featuredImage___description | |
menu___menuItems___featuredImage___node_locale | |
menu___menuItems___blogpost | |
menu___menuItems___blogpost___id | |
menu___menuItems___blogpost___children | |
menu___menuItems___blogpost___title | |
menu___menuItems___blogpost___slug | |
menu___menuItems___blogpost___publishDate | |
menu___menuItems___blogpost___categories | |
menu___menuItems___blogpost___page | |
menu___menuItems___blogpost___spaceId | |
menu___menuItems___blogpost___contentful_id | |
menu___menuItems___blogpost___createdAt | |
menu___menuItems___blogpost___updatedAt | |
menu___menuItems___blogpost___node_locale | |
menu___menuItems___spaceId | |
menu___menuItems___contentful_id | |
menu___menuItems___createdAt | |
menu___menuItems___updatedAt | |
menu___menuItems___node_locale | |
menu___menuItems___menu | |
menu___menuItems___menu___id | |
menu___menuItems___menu___children | |
menu___menuItems___menu___name | |
menu___menuItems___menu___menuItems | |
menu___menuItems___menu___spaceId | |
menu___menuItems___menu___contentful_id | |
menu___menuItems___menu___createdAt | |
menu___menuItems___menu___updatedAt | |
menu___menuItems___menu___node_locale | |
menu___menuItems___product | |
menu___menuItems___product___id | |
menu___menuItems___product___children | |
menu___menuItems___product___title | |
menu___menuItems___product___slug | |
menu___menuItems___product___price | |
menu___menuItems___product___categories | |
menu___menuItems___product___spaceId | |
menu___menuItems___product___contentful_id | |
menu___menuItems___product___createdAt | |
menu___menuItems___product___updatedAt | |
menu___menuItems___product___node_locale | |
menu___menuItems___body___id | |
menu___menuItems___body___children | |
menu___menuItems___body___content | |
menu___menuItems___body___nodeType | |
menu___menuItems___body___body | |
menu___menuItems___body___json | |
menu___menuItems___childContentfulCategoryBodyRichTextNode___id | |
menu___menuItems___childContentfulCategoryBodyRichTextNode___children | |
menu___menuItems___childContentfulCategoryBodyRichTextNode___content | |
menu___menuItems___childContentfulCategoryBodyRichTextNode___nodeType | |
menu___menuItems___childContentfulCategoryBodyRichTextNode___body | |
menu___menuItems___childContentfulCategoryBodyRichTextNode___json | |
menu___spaceId | |
menu___contentful_id | |
menu___createdAt | |
menu___updatedAt | |
menu___node_locale | |
product | |
product___id | |
product___parent___id | |
product___parent___parent___id | |
product___parent___parent___children | |
product___parent___children | |
product___parent___children___id | |
product___parent___children___children | |
product___parent___internal___content | |
product___parent___internal___contentDigest | |
product___parent___internal___description | |
product___parent___internal___fieldOwners | |
product___parent___internal___ignoreType | |
product___parent___internal___mediaType | |
product___parent___internal___owner | |
product___parent___internal___type | |
product___children | |
product___children___id | |
product___children___parent___id | |
product___children___parent___children | |
product___children___children | |
product___children___children___id | |
product___children___children___children | |
product___children___internal___content | |
product___children___internal___contentDigest | |
product___children___internal___description | |
product___children___internal___fieldOwners | |
product___children___internal___ignoreType | |
product___children___internal___mediaType | |
product___children___internal___owner | |
product___children___internal___type | |
product___internal___content | |
product___internal___contentDigest | |
product___internal___description | |
product___internal___fieldOwners | |
product___internal___ignoreType | |
product___internal___mediaType | |
product___internal___owner | |
product___internal___type | |
product___title | |
product___slug | |
product___price | |
product___featuredImage___id | |
product___featuredImage___parent___id | |
product___featuredImage___parent___children | |
product___featuredImage___children | |
product___featuredImage___children___id | |
product___featuredImage___children___children | |
product___featuredImage___internal___content | |
product___featuredImage___internal___contentDigest | |
product___featuredImage___internal___description | |
product___featuredImage___internal___fieldOwners | |
product___featuredImage___internal___ignoreType | |
product___featuredImage___internal___mediaType | |
product___featuredImage___internal___owner | |
product___featuredImage___internal___type | |
product___featuredImage___contentful_id | |
product___featuredImage___file___url | |
product___featuredImage___file___fileName | |
product___featuredImage___file___contentType | |
product___featuredImage___title | |
product___featuredImage___description | |
product___featuredImage___node_locale | |
product___featuredImage___fixed___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
product___featuredImage___fixed___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
product___featuredImage___fixed___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
product___featuredImage___fixed___width @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
product___featuredImage___fixed___height @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
product___featuredImage___fixed___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
product___featuredImage___fixed___srcSet @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
product___featuredImage___fixed___srcWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
product___featuredImage___fixed___srcSetWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
product___featuredImage___resolutions___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
product___featuredImage___resolutions___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
product___featuredImage___resolutions___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
product___featuredImage___resolutions___width @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
product___featuredImage___resolutions___height @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
product___featuredImage___resolutions___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
product___featuredImage___resolutions___srcSet @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
product___featuredImage___resolutions___srcWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
product___featuredImage___resolutions___srcSetWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
product___featuredImage___fluid___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
product___featuredImage___fluid___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
product___featuredImage___fluid___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
product___featuredImage___fluid___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
product___featuredImage___fluid___srcSet @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
product___featuredImage___fluid___srcWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
product___featuredImage___fluid___srcSetWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
product___featuredImage___fluid___sizes @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
product___featuredImage___sizes___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
product___featuredImage___sizes___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
product___featuredImage___sizes___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
product___featuredImage___sizes___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
product___featuredImage___sizes___srcSet @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
product___featuredImage___sizes___srcWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
product___featuredImage___sizes___srcSetWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
product___featuredImage___sizes___sizes @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
product___featuredImage___resize___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
product___featuredImage___resize___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
product___featuredImage___resize___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
product___featuredImage___resize___width @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
product___featuredImage___resize___height @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
product___featuredImage___resize___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
product___categories | |
product___categories___id | |
product___categories___parent___id | |
product___categories___parent___children | |
product___categories___children | |
product___categories___children___id | |
product___categories___children___children | |
product___categories___internal___content | |
product___categories___internal___contentDigest | |
product___categories___internal___description | |
product___categories___internal___fieldOwners | |
product___categories___internal___ignoreType | |
product___categories___internal___mediaType | |
product___categories___internal___owner | |
product___categories___internal___type | |
product___categories___title | |
product___categories___slug | |
product___categories___featuredImage___id | |
product___categories___featuredImage___children | |
product___categories___featuredImage___contentful_id | |
product___categories___featuredImage___title | |
product___categories___featuredImage___description | |
product___categories___featuredImage___node_locale | |
product___categories___blogpost | |
product___categories___blogpost___id | |
product___categories___blogpost___children | |
product___categories___blogpost___title | |
product___categories___blogpost___slug | |
product___categories___blogpost___publishDate | |
product___categories___blogpost___categories | |
product___categories___blogpost___page | |
product___categories___blogpost___spaceId | |
product___categories___blogpost___contentful_id | |
product___categories___blogpost___createdAt | |
product___categories___blogpost___updatedAt | |
product___categories___blogpost___node_locale | |
product___categories___spaceId | |
product___categories___contentful_id | |
product___categories___createdAt | |
product___categories___updatedAt | |
product___categories___node_locale | |
product___categories___menu | |
product___categories___menu___id | |
product___categories___menu___children | |
product___categories___menu___name | |
product___categories___menu___menuItems | |
product___categories___menu___spaceId | |
product___categories___menu___contentful_id | |
product___categories___menu___createdAt | |
product___categories___menu___updatedAt | |
product___categories___menu___node_locale | |
product___categories___product | |
product___categories___product___id | |
product___categories___product___children | |
product___categories___product___title | |
product___categories___product___slug | |
product___categories___product___price | |
product___categories___product___categories | |
product___categories___product___spaceId | |
product___categories___product___contentful_id | |
product___categories___product___createdAt | |
product___categories___product___updatedAt | |
product___categories___product___node_locale | |
product___categories___body___id | |
product___categories___body___children | |
product___categories___body___content | |
product___categories___body___nodeType | |
product___categories___body___body | |
product___categories___body___json | |
product___categories___childContentfulCategoryBodyRichTextNode___id | |
product___categories___childContentfulCategoryBodyRichTextNode___children | |
product___categories___childContentfulCategoryBodyRichTextNode___content | |
product___categories___childContentfulCategoryBodyRichTextNode___nodeType | |
product___categories___childContentfulCategoryBodyRichTextNode___body | |
product___categories___childContentfulCategoryBodyRichTextNode___json | |
product___body___id | |
product___body___parent___id | |
product___body___parent___children | |
product___body___children | |
product___body___children___id | |
product___body___children___children | |
product___body___internal___content | |
product___body___internal___contentDigest | |
product___body___internal___description | |
product___body___internal___fieldOwners | |
product___body___internal___ignoreType | |
product___body___internal___mediaType | |
product___body___internal___owner | |
product___body___internal___type | |
product___body___content | |
product___body___content___content | |
product___body___content___nodeType | |
product___body___nodeType | |
product___body___body | |
product___body___json | |
product___body___childContentfulRichText___id | |
product___body___childContentfulRichText___children | |
product___body___childContentfulRichText___html | |
product___body___childContentfulRichText___timeToRead | |
product___spaceId | |
product___contentful_id | |
product___createdAt | |
product___updatedAt | |
product___node_locale | |
product___childContentfulProductBodyRichTextNode___id | |
product___childContentfulProductBodyRichTextNode___parent___id | |
product___childContentfulProductBodyRichTextNode___parent___children | |
product___childContentfulProductBodyRichTextNode___children | |
product___childContentfulProductBodyRichTextNode___children___id | |
product___childContentfulProductBodyRichTextNode___children___children | |
product___childContentfulProductBodyRichTextNode___internal___content | |
product___childContentfulProductBodyRichTextNode___internal___contentDigest | |
product___childContentfulProductBodyRichTextNode___internal___description | |
product___childContentfulProductBodyRichTextNode___internal___fieldOwners | |
product___childContentfulProductBodyRichTextNode___internal___ignoreType | |
product___childContentfulProductBodyRichTextNode___internal___mediaType | |
product___childContentfulProductBodyRichTextNode___internal___owner | |
product___childContentfulProductBodyRichTextNode___internal___type | |
product___childContentfulProductBodyRichTextNode___content | |
product___childContentfulProductBodyRichTextNode___content___content | |
product___childContentfulProductBodyRichTextNode___content___nodeType | |
product___childContentfulProductBodyRichTextNode___nodeType | |
product___childContentfulProductBodyRichTextNode___body | |
product___childContentfulProductBodyRichTextNode___json | |
product___childContentfulProductBodyRichTextNode___childContentfulRichText___id | |
product___childContentfulProductBodyRichTextNode___childContentfulRichText___children | |
product___childContentfulProductBodyRichTextNode___childContentfulRichText___html | |
product___childContentfulProductBodyRichTextNode___childContentfulRichText___timeToRead | |
body___id | |
body___parent___id | |
body___parent___parent___id | |
body___parent___parent___children | |
body___parent___children | |
body___parent___children___id | |
body___parent___children___children | |
body___parent___internal___content | |
body___parent___internal___contentDigest | |
body___parent___internal___description | |
body___parent___internal___fieldOwners | |
body___parent___internal___ignoreType | |
body___parent___internal___mediaType | |
body___parent___internal___owner | |
body___parent___internal___type | |
body___children | |
body___children___id | |
body___children___parent___id | |
body___children___parent___children | |
body___children___children | |
body___children___children___id | |
body___children___children___children | |
body___children___internal___content | |
body___children___internal___contentDigest | |
body___children___internal___description | |
body___children___internal___fieldOwners | |
body___children___internal___ignoreType | |
body___children___internal___mediaType | |
body___children___internal___owner | |
body___children___internal___type | |
body___internal___content | |
body___internal___contentDigest | |
body___internal___description | |
body___internal___fieldOwners | |
body___internal___ignoreType | |
body___internal___mediaType | |
body___internal___owner | |
body___internal___type | |
body___content | |
body___content___content | |
body___content___content___value | |
body___content___content___nodeType | |
body___content___nodeType | |
body___nodeType | |
body___body | |
body___json | |
body___childContentfulRichText___id | |
body___childContentfulRichText___parent___id | |
body___childContentfulRichText___parent___children | |
body___childContentfulRichText___children | |
body___childContentfulRichText___children___id | |
body___childContentfulRichText___children___children | |
body___childContentfulRichText___internal___content | |
body___childContentfulRichText___internal___contentDigest | |
body___childContentfulRichText___internal___description | |
body___childContentfulRichText___internal___fieldOwners | |
body___childContentfulRichText___internal___ignoreType | |
body___childContentfulRichText___internal___mediaType | |
body___childContentfulRichText___internal___owner | |
body___childContentfulRichText___internal___type | |
body___childContentfulRichText___html | |
body___childContentfulRichText___timeToRead | |
childContentfulCategoryBodyRichTextNode___id | |
childContentfulCategoryBodyRichTextNode___parent___id | |
childContentfulCategoryBodyRichTextNode___parent___parent___id | |
childContentfulCategoryBodyRichTextNode___parent___parent___children | |
childContentfulCategoryBodyRichTextNode___parent___children | |
childContentfulCategoryBodyRichTextNode___parent___children___id | |
childContentfulCategoryBodyRichTextNode___parent___children___children | |
childContentfulCategoryBodyRichTextNode___parent___internal___content | |
childContentfulCategoryBodyRichTextNode___parent___internal___contentDigest | |
childContentfulCategoryBodyRichTextNode___parent___internal___description | |
childContentfulCategoryBodyRichTextNode___parent___internal___fieldOwners | |
childContentfulCategoryBodyRichTextNode___parent___internal___ignoreType | |
childContentfulCategoryBodyRichTextNode___parent___internal___mediaType | |
childContentfulCategoryBodyRichTextNode___parent___internal___owner | |
childContentfulCategoryBodyRichTextNode___parent___internal___type | |
childContentfulCategoryBodyRichTextNode___children | |
childContentfulCategoryBodyRichTextNode___children___id | |
childContentfulCategoryBodyRichTextNode___children___parent___id | |
childContentfulCategoryBodyRichTextNode___children___parent___children | |
childContentfulCategoryBodyRichTextNode___children___children | |
childContentfulCategoryBodyRichTextNode___children___children___id | |
childContentfulCategoryBodyRichTextNode___children___children___children | |
childContentfulCategoryBodyRichTextNode___children___internal___content | |
childContentfulCategoryBodyRichTextNode___children___internal___contentDigest | |
childContentfulCategoryBodyRichTextNode___children___internal___description | |
childContentfulCategoryBodyRichTextNode___children___internal___fieldOwners | |
childContentfulCategoryBodyRichTextNode___children___internal___ignoreType | |
childContentfulCategoryBodyRichTextNode___children___internal___mediaType | |
childContentfulCategoryBodyRichTextNode___children___internal___owner | |
childContentfulCategoryBodyRichTextNode___children___internal___type | |
childContentfulCategoryBodyRichTextNode___internal___content | |
childContentfulCategoryBodyRichTextNode___internal___contentDigest | |
childContentfulCategoryBodyRichTextNode___internal___description | |
childContentfulCategoryBodyRichTextNode___internal___fieldOwners | |
childContentfulCategoryBodyRichTextNode___internal___ignoreType | |
childContentfulCategoryBodyRichTextNode___internal___mediaType | |
childContentfulCategoryBodyRichTextNode___internal___owner | |
childContentfulCategoryBodyRichTextNode___internal___type | |
childContentfulCategoryBodyRichTextNode___content | |
childContentfulCategoryBodyRichTextNode___content___content | |
childContentfulCategoryBodyRichTextNode___content___content___value | |
childContentfulCategoryBodyRichTextNode___content___content___nodeType | |
childContentfulCategoryBodyRichTextNode___content___nodeType | |
childContentfulCategoryBodyRichTextNode___nodeType | |
childContentfulCategoryBodyRichTextNode___body | |
childContentfulCategoryBodyRichTextNode___json | |
childContentfulCategoryBodyRichTextNode___childContentfulRichText___id | |
childContentfulCategoryBodyRichTextNode___childContentfulRichText___parent___id | |
childContentfulCategoryBodyRichTextNode___childContentfulRichText___parent___children | |
childContentfulCategoryBodyRichTextNode___childContentfulRichText___children | |
childContentfulCategoryBodyRichTextNode___childContentfulRichText___children___id | |
childContentfulCategoryBodyRichTextNode___childContentfulRichText___children___children | |
childContentfulCategoryBodyRichTextNode___childContentfulRichText___internal___content | |
childContentfulCategoryBodyRichTextNode___childContentfulRichText___internal___contentDigest | |
childContentfulCategoryBodyRichTextNode___childContentfulRichText___internal___description | |
childContentfulCategoryBodyRichTextNode___childContentfulRichText___internal___fieldOwners | |
childContentfulCategoryBodyRichTextNode___childContentfulRichText___internal___ignoreType | |
childContentfulCategoryBodyRichTextNode___childContentfulRichText___internal___mediaType | |
childContentfulCategoryBodyRichTextNode___childContentfulRichText___internal___owner | |
childContentfulCategoryBodyRichTextNode___childContentfulRichText___internal___type | |
childContentfulCategoryBodyRichTextNode___childContentfulRichText___html | |
childContentfulCategoryBodyRichTextNode___childContentfulRichText___timeToRead | |
} | |
input ContentfulCategoryFilterInput { | |
id: StringQueryOperatorInput | |
parent: NodeFilterInput | |
children: NodeFilterListInput | |
internal: InternalFilterInput | |
title: StringQueryOperatorInput | |
slug: StringQueryOperatorInput | |
featuredImage: ContentfulAssetFilterInput | |
blogpost: ContentfulBlogPostFilterListInput | |
spaceId: StringQueryOperatorInput | |
contentful_id: StringQueryOperatorInput | |
createdAt: DateQueryOperatorInput | |
updatedAt: DateQueryOperatorInput | |
node_locale: StringQueryOperatorInput | |
menu: ContentfulMenuFilterListInput | |
product: ContentfulProductFilterListInput | |
body: contentfulCategoryBodyRichTextNodeFilterInput | |
childContentfulCategoryBodyRichTextNode: contentfulCategoryBodyRichTextNodeFilterInput | |
} | |
input ContentfulCategoryFilterListInput { | |
elemMatch: ContentfulCategoryFilterInput | |
} | |
type ContentfulCategoryGroupConnection { | |
totalCount: Int! | |
edges: [ContentfulCategoryEdge!]! | |
nodes: [ContentfulCategory!]! | |
pageInfo: PageInfo! | |
field: String! | |
fieldValue: String | |
} | |
input ContentfulCategorySortInput { | |
fields: [ContentfulCategoryFieldsEnum] | |
order: [SortOrderEnum] = [ASC] | |
} | |
type ContentfulContentType implements Node { | |
id: ID! | |
parent: Node | |
children: [Node!]! | |
internal: Internal! | |
name: String | |
displayField: String | |
description: String | |
} | |
type ContentfulContentTypeConnection { | |
totalCount: Int! | |
edges: [ContentfulContentTypeEdge!]! | |
nodes: [ContentfulContentType!]! | |
pageInfo: PageInfo! | |
distinct(field: ContentfulContentTypeFieldsEnum!): [String!]! | |
group(skip: Int, limit: Int, field: ContentfulContentTypeFieldsEnum!): [ContentfulContentTypeGroupConnection!]! | |
} | |
type ContentfulContentTypeEdge { | |
next: ContentfulContentType | |
node: ContentfulContentType! | |
previous: ContentfulContentType | |
} | |
enum ContentfulContentTypeFieldsEnum { | |
id | |
parent___id | |
parent___parent___id | |
parent___parent___parent___id | |
parent___parent___parent___children | |
parent___parent___children | |
parent___parent___children___id | |
parent___parent___children___children | |
parent___parent___internal___content | |
parent___parent___internal___contentDigest | |
parent___parent___internal___description | |
parent___parent___internal___fieldOwners | |
parent___parent___internal___ignoreType | |
parent___parent___internal___mediaType | |
parent___parent___internal___owner | |
parent___parent___internal___type | |
parent___children | |
parent___children___id | |
parent___children___parent___id | |
parent___children___parent___children | |
parent___children___children | |
parent___children___children___id | |
parent___children___children___children | |
parent___children___internal___content | |
parent___children___internal___contentDigest | |
parent___children___internal___description | |
parent___children___internal___fieldOwners | |
parent___children___internal___ignoreType | |
parent___children___internal___mediaType | |
parent___children___internal___owner | |
parent___children___internal___type | |
parent___internal___content | |
parent___internal___contentDigest | |
parent___internal___description | |
parent___internal___fieldOwners | |
parent___internal___ignoreType | |
parent___internal___mediaType | |
parent___internal___owner | |
parent___internal___type | |
children | |
children___id | |
children___parent___id | |
children___parent___parent___id | |
children___parent___parent___children | |
children___parent___children | |
children___parent___children___id | |
children___parent___children___children | |
children___parent___internal___content | |
children___parent___internal___contentDigest | |
children___parent___internal___description | |
children___parent___internal___fieldOwners | |
children___parent___internal___ignoreType | |
children___parent___internal___mediaType | |
children___parent___internal___owner | |
children___parent___internal___type | |
children___children | |
children___children___id | |
children___children___parent___id | |
children___children___parent___children | |
children___children___children | |
children___children___children___id | |
children___children___children___children | |
children___children___internal___content | |
children___children___internal___contentDigest | |
children___children___internal___description | |
children___children___internal___fieldOwners | |
children___children___internal___ignoreType | |
children___children___internal___mediaType | |
children___children___internal___owner | |
children___children___internal___type | |
children___internal___content | |
children___internal___contentDigest | |
children___internal___description | |
children___internal___fieldOwners | |
children___internal___ignoreType | |
children___internal___mediaType | |
children___internal___owner | |
children___internal___type | |
internal___content | |
internal___contentDigest | |
internal___description | |
internal___fieldOwners | |
internal___ignoreType | |
internal___mediaType | |
internal___owner | |
internal___type | |
name | |
displayField | |
description | |
} | |
input ContentfulContentTypeFilterInput { | |
id: StringQueryOperatorInput | |
parent: NodeFilterInput | |
children: NodeFilterListInput | |
internal: InternalFilterInput | |
name: StringQueryOperatorInput | |
displayField: StringQueryOperatorInput | |
description: StringQueryOperatorInput | |
} | |
type ContentfulContentTypeGroupConnection { | |
totalCount: Int! | |
edges: [ContentfulContentTypeEdge!]! | |
nodes: [ContentfulContentType!]! | |
pageInfo: PageInfo! | |
field: String! | |
fieldValue: String | |
} | |
input ContentfulContentTypeSortInput { | |
fields: [ContentfulContentTypeFieldsEnum] | |
order: [SortOrderEnum] = [ASC] | |
} | |
type ContentfulFixed { | |
base64: String | |
tracedSVG: String | |
aspectRatio: Float | |
width: Float | |
height: Float | |
src: String | |
srcSet: String | |
srcWebp: String | |
srcSetWebp: String | |
} | |
input ContentfulFixedFilterInput { | |
base64: StringQueryOperatorInput | |
tracedSVG: StringQueryOperatorInput | |
aspectRatio: FloatQueryOperatorInput | |
width: FloatQueryOperatorInput | |
height: FloatQueryOperatorInput | |
src: StringQueryOperatorInput | |
srcSet: StringQueryOperatorInput | |
srcWebp: StringQueryOperatorInput | |
srcSetWebp: StringQueryOperatorInput | |
} | |
type ContentfulFluid { | |
base64: String | |
tracedSVG: String | |
aspectRatio: Float | |
src: String | |
srcSet: String | |
srcWebp: String | |
srcSetWebp: String | |
sizes: String | |
} | |
input ContentfulFluidFilterInput { | |
base64: StringQueryOperatorInput | |
tracedSVG: StringQueryOperatorInput | |
aspectRatio: FloatQueryOperatorInput | |
src: StringQueryOperatorInput | |
srcSet: StringQueryOperatorInput | |
srcWebp: StringQueryOperatorInput | |
srcSetWebp: StringQueryOperatorInput | |
sizes: StringQueryOperatorInput | |
} | |
enum ContentfulImageCropFocus { | |
TOP | |
TOP_LEFT | |
TOP_RIGHT | |
BOTTOM | |
BOTTOM_RIGHT | |
BOTTOM_LEFT | |
RIGHT | |
LEFT | |
FACE | |
FACES | |
CENTER | |
} | |
enum ContentfulImageFormat { | |
NO_CHANGE | |
JPG | |
PNG | |
WEBP | |
} | |
type ContentfulMenu implements Node { | |
id: ID! | |
parent: Node | |
children: [Node!]! | |
internal: Internal! | |
name: String | |
menuItems: [ContentfulCategory] | |
spaceId: String | |
contentful_id: String | |
createdAt( | |
""" | |
Format the date using Moment.js' date tokens, e.g. `date(formatString: "YYYY | |
MMMM DD")`. See https://momentjs.com/docs/#/displaying/format/ for | |
documentation for different tokens. | |
""" | |
formatString: String | |
"""Returns a string generated with Moment.js' `fromNow` function""" | |
fromNow: Boolean | |
""" | |
Returns the difference between this date and the current time. Defaults to | |
"milliseconds" but you can also pass in as the measurement "years", | |
"months", "weeks", "days", "hours", "minutes", and "seconds". | |
""" | |
difference: String | |
"""Configures the locale Moment.js will use to format the date.""" | |
locale: String | |
): Date | |
updatedAt( | |
""" | |
Format the date using Moment.js' date tokens, e.g. `date(formatString: "YYYY | |
MMMM DD")`. See https://momentjs.com/docs/#/displaying/format/ for | |
documentation for different tokens. | |
""" | |
formatString: String | |
"""Returns a string generated with Moment.js' `fromNow` function""" | |
fromNow: Boolean | |
""" | |
Returns the difference between this date and the current time. Defaults to | |
"milliseconds" but you can also pass in as the measurement "years", | |
"months", "weeks", "days", "hours", "minutes", and "seconds". | |
""" | |
difference: String | |
"""Configures the locale Moment.js will use to format the date.""" | |
locale: String | |
): Date | |
node_locale: String | |
} | |
type ContentfulMenuConnection { | |
totalCount: Int! | |
edges: [ContentfulMenuEdge!]! | |
nodes: [ContentfulMenu!]! | |
pageInfo: PageInfo! | |
distinct(field: ContentfulMenuFieldsEnum!): [String!]! | |
group(skip: Int, limit: Int, field: ContentfulMenuFieldsEnum!): [ContentfulMenuGroupConnection!]! | |
} | |
type ContentfulMenuEdge { | |
next: ContentfulMenu | |
node: ContentfulMenu! | |
previous: ContentfulMenu | |
} | |
enum ContentfulMenuFieldsEnum { | |
id | |
parent___id | |
parent___parent___id | |
parent___parent___parent___id | |
parent___parent___parent___children | |
parent___parent___children | |
parent___parent___children___id | |
parent___parent___children___children | |
parent___parent___internal___content | |
parent___parent___internal___contentDigest | |
parent___parent___internal___description | |
parent___parent___internal___fieldOwners | |
parent___parent___internal___ignoreType | |
parent___parent___internal___mediaType | |
parent___parent___internal___owner | |
parent___parent___internal___type | |
parent___children | |
parent___children___id | |
parent___children___parent___id | |
parent___children___parent___children | |
parent___children___children | |
parent___children___children___id | |
parent___children___children___children | |
parent___children___internal___content | |
parent___children___internal___contentDigest | |
parent___children___internal___description | |
parent___children___internal___fieldOwners | |
parent___children___internal___ignoreType | |
parent___children___internal___mediaType | |
parent___children___internal___owner | |
parent___children___internal___type | |
parent___internal___content | |
parent___internal___contentDigest | |
parent___internal___description | |
parent___internal___fieldOwners | |
parent___internal___ignoreType | |
parent___internal___mediaType | |
parent___internal___owner | |
parent___internal___type | |
children | |
children___id | |
children___parent___id | |
children___parent___parent___id | |
children___parent___parent___children | |
children___parent___children | |
children___parent___children___id | |
children___parent___children___children | |
children___parent___internal___content | |
children___parent___internal___contentDigest | |
children___parent___internal___description | |
children___parent___internal___fieldOwners | |
children___parent___internal___ignoreType | |
children___parent___internal___mediaType | |
children___parent___internal___owner | |
children___parent___internal___type | |
children___children | |
children___children___id | |
children___children___parent___id | |
children___children___parent___children | |
children___children___children | |
children___children___children___id | |
children___children___children___children | |
children___children___internal___content | |
children___children___internal___contentDigest | |
children___children___internal___description | |
children___children___internal___fieldOwners | |
children___children___internal___ignoreType | |
children___children___internal___mediaType | |
children___children___internal___owner | |
children___children___internal___type | |
children___internal___content | |
children___internal___contentDigest | |
children___internal___description | |
children___internal___fieldOwners | |
children___internal___ignoreType | |
children___internal___mediaType | |
children___internal___owner | |
children___internal___type | |
internal___content | |
internal___contentDigest | |
internal___description | |
internal___fieldOwners | |
internal___ignoreType | |
internal___mediaType | |
internal___owner | |
internal___type | |
name | |
menuItems | |
menuItems___id | |
menuItems___parent___id | |
menuItems___parent___parent___id | |
menuItems___parent___parent___children | |
menuItems___parent___children | |
menuItems___parent___children___id | |
menuItems___parent___children___children | |
menuItems___parent___internal___content | |
menuItems___parent___internal___contentDigest | |
menuItems___parent___internal___description | |
menuItems___parent___internal___fieldOwners | |
menuItems___parent___internal___ignoreType | |
menuItems___parent___internal___mediaType | |
menuItems___parent___internal___owner | |
menuItems___parent___internal___type | |
menuItems___children | |
menuItems___children___id | |
menuItems___children___parent___id | |
menuItems___children___parent___children | |
menuItems___children___children | |
menuItems___children___children___id | |
menuItems___children___children___children | |
menuItems___children___internal___content | |
menuItems___children___internal___contentDigest | |
menuItems___children___internal___description | |
menuItems___children___internal___fieldOwners | |
menuItems___children___internal___ignoreType | |
menuItems___children___internal___mediaType | |
menuItems___children___internal___owner | |
menuItems___children___internal___type | |
menuItems___internal___content | |
menuItems___internal___contentDigest | |
menuItems___internal___description | |
menuItems___internal___fieldOwners | |
menuItems___internal___ignoreType | |
menuItems___internal___mediaType | |
menuItems___internal___owner | |
menuItems___internal___type | |
menuItems___title | |
menuItems___slug | |
menuItems___featuredImage___id | |
menuItems___featuredImage___parent___id | |
menuItems___featuredImage___parent___children | |
menuItems___featuredImage___children | |
menuItems___featuredImage___children___id | |
menuItems___featuredImage___children___children | |
menuItems___featuredImage___internal___content | |
menuItems___featuredImage___internal___contentDigest | |
menuItems___featuredImage___internal___description | |
menuItems___featuredImage___internal___fieldOwners | |
menuItems___featuredImage___internal___ignoreType | |
menuItems___featuredImage___internal___mediaType | |
menuItems___featuredImage___internal___owner | |
menuItems___featuredImage___internal___type | |
menuItems___featuredImage___contentful_id | |
menuItems___featuredImage___file___url | |
menuItems___featuredImage___file___fileName | |
menuItems___featuredImage___file___contentType | |
menuItems___featuredImage___title | |
menuItems___featuredImage___description | |
menuItems___featuredImage___node_locale | |
menuItems___featuredImage___fixed___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
menuItems___featuredImage___fixed___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
menuItems___featuredImage___fixed___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
menuItems___featuredImage___fixed___width @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
menuItems___featuredImage___fixed___height @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
menuItems___featuredImage___fixed___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
menuItems___featuredImage___fixed___srcSet @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
menuItems___featuredImage___fixed___srcWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
menuItems___featuredImage___fixed___srcSetWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
menuItems___featuredImage___resolutions___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
menuItems___featuredImage___resolutions___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
menuItems___featuredImage___resolutions___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
menuItems___featuredImage___resolutions___width @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
menuItems___featuredImage___resolutions___height @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
menuItems___featuredImage___resolutions___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
menuItems___featuredImage___resolutions___srcSet @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
menuItems___featuredImage___resolutions___srcWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
menuItems___featuredImage___resolutions___srcSetWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
menuItems___featuredImage___fluid___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
menuItems___featuredImage___fluid___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
menuItems___featuredImage___fluid___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
menuItems___featuredImage___fluid___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
menuItems___featuredImage___fluid___srcSet @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
menuItems___featuredImage___fluid___srcWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
menuItems___featuredImage___fluid___srcSetWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
menuItems___featuredImage___fluid___sizes @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
menuItems___featuredImage___sizes___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
menuItems___featuredImage___sizes___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
menuItems___featuredImage___sizes___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
menuItems___featuredImage___sizes___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
menuItems___featuredImage___sizes___srcSet @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
menuItems___featuredImage___sizes___srcWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
menuItems___featuredImage___sizes___srcSetWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
menuItems___featuredImage___sizes___sizes @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
menuItems___featuredImage___resize___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
menuItems___featuredImage___resize___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
menuItems___featuredImage___resize___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
menuItems___featuredImage___resize___width @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
menuItems___featuredImage___resize___height @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
menuItems___featuredImage___resize___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
menuItems___blogpost | |
menuItems___blogpost___id | |
menuItems___blogpost___parent___id | |
menuItems___blogpost___parent___children | |
menuItems___blogpost___children | |
menuItems___blogpost___children___id | |
menuItems___blogpost___children___children | |
menuItems___blogpost___internal___content | |
menuItems___blogpost___internal___contentDigest | |
menuItems___blogpost___internal___description | |
menuItems___blogpost___internal___fieldOwners | |
menuItems___blogpost___internal___ignoreType | |
menuItems___blogpost___internal___mediaType | |
menuItems___blogpost___internal___owner | |
menuItems___blogpost___internal___type | |
menuItems___blogpost___title | |
menuItems___blogpost___slug | |
menuItems___blogpost___publishDate | |
menuItems___blogpost___featuredImage___id | |
menuItems___blogpost___featuredImage___children | |
menuItems___blogpost___featuredImage___contentful_id | |
menuItems___blogpost___featuredImage___title | |
menuItems___blogpost___featuredImage___description | |
menuItems___blogpost___featuredImage___node_locale | |
menuItems___blogpost___categories | |
menuItems___blogpost___categories___id | |
menuItems___blogpost___categories___children | |
menuItems___blogpost___categories___title | |
menuItems___blogpost___categories___slug | |
menuItems___blogpost___categories___blogpost | |
menuItems___blogpost___categories___spaceId | |
menuItems___blogpost___categories___contentful_id | |
menuItems___blogpost___categories___createdAt | |
menuItems___blogpost___categories___updatedAt | |
menuItems___blogpost___categories___node_locale | |
menuItems___blogpost___categories___menu | |
menuItems___blogpost___categories___product | |
menuItems___blogpost___page | |
menuItems___blogpost___page___id | |
menuItems___blogpost___page___children | |
menuItems___blogpost___page___title | |
menuItems___blogpost___page___slug | |
menuItems___blogpost___page___isHomePage | |
menuItems___blogpost___page___featuredPosts | |
menuItems___blogpost___page___spaceId | |
menuItems___blogpost___page___contentful_id | |
menuItems___blogpost___page___createdAt | |
menuItems___blogpost___page___updatedAt | |
menuItems___blogpost___page___node_locale | |
menuItems___blogpost___body___id | |
menuItems___blogpost___body___children | |
menuItems___blogpost___body___content | |
menuItems___blogpost___body___nodeType | |
menuItems___blogpost___body___body | |
menuItems___blogpost___body___json | |
menuItems___blogpost___spaceId | |
menuItems___blogpost___contentful_id | |
menuItems___blogpost___createdAt | |
menuItems___blogpost___updatedAt | |
menuItems___blogpost___node_locale | |
menuItems___blogpost___author___id | |
menuItems___blogpost___author___children | |
menuItems___blogpost___author___name | |
menuItems___blogpost___author___title | |
menuItems___blogpost___author___company | |
menuItems___blogpost___author___email | |
menuItems___blogpost___author___phone | |
menuItems___blogpost___author___facebook | |
menuItems___blogpost___author___twitter | |
menuItems___blogpost___author___github | |
menuItems___blogpost___author___blogpost | |
menuItems___blogpost___author___spaceId | |
menuItems___blogpost___author___contentful_id | |
menuItems___blogpost___author___createdAt | |
menuItems___blogpost___author___updatedAt | |
menuItems___blogpost___author___node_locale | |
menuItems___blogpost___childContentfulBlogPostBodyRichTextNode___id | |
menuItems___blogpost___childContentfulBlogPostBodyRichTextNode___children | |
menuItems___blogpost___childContentfulBlogPostBodyRichTextNode___content | |
menuItems___blogpost___childContentfulBlogPostBodyRichTextNode___nodeType | |
menuItems___blogpost___childContentfulBlogPostBodyRichTextNode___body | |
menuItems___blogpost___childContentfulBlogPostBodyRichTextNode___json | |
menuItems___spaceId | |
menuItems___contentful_id | |
menuItems___createdAt | |
menuItems___updatedAt | |
menuItems___node_locale | |
menuItems___menu | |
menuItems___menu___id | |
menuItems___menu___parent___id | |
menuItems___menu___parent___children | |
menuItems___menu___children | |
menuItems___menu___children___id | |
menuItems___menu___children___children | |
menuItems___menu___internal___content | |
menuItems___menu___internal___contentDigest | |
menuItems___menu___internal___description | |
menuItems___menu___internal___fieldOwners | |
menuItems___menu___internal___ignoreType | |
menuItems___menu___internal___mediaType | |
menuItems___menu___internal___owner | |
menuItems___menu___internal___type | |
menuItems___menu___name | |
menuItems___menu___menuItems | |
menuItems___menu___menuItems___id | |
menuItems___menu___menuItems___children | |
menuItems___menu___menuItems___title | |
menuItems___menu___menuItems___slug | |
menuItems___menu___menuItems___blogpost | |
menuItems___menu___menuItems___spaceId | |
menuItems___menu___menuItems___contentful_id | |
menuItems___menu___menuItems___createdAt | |
menuItems___menu___menuItems___updatedAt | |
menuItems___menu___menuItems___node_locale | |
menuItems___menu___menuItems___menu | |
menuItems___menu___menuItems___product | |
menuItems___menu___spaceId | |
menuItems___menu___contentful_id | |
menuItems___menu___createdAt | |
menuItems___menu___updatedAt | |
menuItems___menu___node_locale | |
menuItems___product | |
menuItems___product___id | |
menuItems___product___parent___id | |
menuItems___product___parent___children | |
menuItems___product___children | |
menuItems___product___children___id | |
menuItems___product___children___children | |
menuItems___product___internal___content | |
menuItems___product___internal___contentDigest | |
menuItems___product___internal___description | |
menuItems___product___internal___fieldOwners | |
menuItems___product___internal___ignoreType | |
menuItems___product___internal___mediaType | |
menuItems___product___internal___owner | |
menuItems___product___internal___type | |
menuItems___product___title | |
menuItems___product___slug | |
menuItems___product___price | |
menuItems___product___featuredImage___id | |
menuItems___product___featuredImage___children | |
menuItems___product___featuredImage___contentful_id | |
menuItems___product___featuredImage___title | |
menuItems___product___featuredImage___description | |
menuItems___product___featuredImage___node_locale | |
menuItems___product___categories | |
menuItems___product___categories___id | |
menuItems___product___categories___children | |
menuItems___product___categories___title | |
menuItems___product___categories___slug | |
menuItems___product___categories___blogpost | |
menuItems___product___categories___spaceId | |
menuItems___product___categories___contentful_id | |
menuItems___product___categories___createdAt | |
menuItems___product___categories___updatedAt | |
menuItems___product___categories___node_locale | |
menuItems___product___categories___menu | |
menuItems___product___categories___product | |
menuItems___product___body___id | |
menuItems___product___body___children | |
menuItems___product___body___content | |
menuItems___product___body___nodeType | |
menuItems___product___body___body | |
menuItems___product___body___json | |
menuItems___product___spaceId | |
menuItems___product___contentful_id | |
menuItems___product___createdAt | |
menuItems___product___updatedAt | |
menuItems___product___node_locale | |
menuItems___product___childContentfulProductBodyRichTextNode___id | |
menuItems___product___childContentfulProductBodyRichTextNode___children | |
menuItems___product___childContentfulProductBodyRichTextNode___content | |
menuItems___product___childContentfulProductBodyRichTextNode___nodeType | |
menuItems___product___childContentfulProductBodyRichTextNode___body | |
menuItems___product___childContentfulProductBodyRichTextNode___json | |
menuItems___body___id | |
menuItems___body___parent___id | |
menuItems___body___parent___children | |
menuItems___body___children | |
menuItems___body___children___id | |
menuItems___body___children___children | |
menuItems___body___internal___content | |
menuItems___body___internal___contentDigest | |
menuItems___body___internal___description | |
menuItems___body___internal___fieldOwners | |
menuItems___body___internal___ignoreType | |
menuItems___body___internal___mediaType | |
menuItems___body___internal___owner | |
menuItems___body___internal___type | |
menuItems___body___content | |
menuItems___body___content___content | |
menuItems___body___content___nodeType | |
menuItems___body___nodeType | |
menuItems___body___body | |
menuItems___body___json | |
menuItems___body___childContentfulRichText___id | |
menuItems___body___childContentfulRichText___children | |
menuItems___body___childContentfulRichText___html | |
menuItems___body___childContentfulRichText___timeToRead | |
menuItems___childContentfulCategoryBodyRichTextNode___id | |
menuItems___childContentfulCategoryBodyRichTextNode___parent___id | |
menuItems___childContentfulCategoryBodyRichTextNode___parent___children | |
menuItems___childContentfulCategoryBodyRichTextNode___children | |
menuItems___childContentfulCategoryBodyRichTextNode___children___id | |
menuItems___childContentfulCategoryBodyRichTextNode___children___children | |
menuItems___childContentfulCategoryBodyRichTextNode___internal___content | |
menuItems___childContentfulCategoryBodyRichTextNode___internal___contentDigest | |
menuItems___childContentfulCategoryBodyRichTextNode___internal___description | |
menuItems___childContentfulCategoryBodyRichTextNode___internal___fieldOwners | |
menuItems___childContentfulCategoryBodyRichTextNode___internal___ignoreType | |
menuItems___childContentfulCategoryBodyRichTextNode___internal___mediaType | |
menuItems___childContentfulCategoryBodyRichTextNode___internal___owner | |
menuItems___childContentfulCategoryBodyRichTextNode___internal___type | |
menuItems___childContentfulCategoryBodyRichTextNode___content | |
menuItems___childContentfulCategoryBodyRichTextNode___content___content | |
menuItems___childContentfulCategoryBodyRichTextNode___content___nodeType | |
menuItems___childContentfulCategoryBodyRichTextNode___nodeType | |
menuItems___childContentfulCategoryBodyRichTextNode___body | |
menuItems___childContentfulCategoryBodyRichTextNode___json | |
menuItems___childContentfulCategoryBodyRichTextNode___childContentfulRichText___id | |
menuItems___childContentfulCategoryBodyRichTextNode___childContentfulRichText___children | |
menuItems___childContentfulCategoryBodyRichTextNode___childContentfulRichText___html | |
menuItems___childContentfulCategoryBodyRichTextNode___childContentfulRichText___timeToRead | |
spaceId | |
contentful_id | |
createdAt | |
updatedAt | |
node_locale | |
} | |
input ContentfulMenuFilterInput { | |
id: StringQueryOperatorInput | |
parent: NodeFilterInput | |
children: NodeFilterListInput | |
internal: InternalFilterInput | |
name: StringQueryOperatorInput | |
menuItems: ContentfulCategoryFilterListInput | |
spaceId: StringQueryOperatorInput | |
contentful_id: StringQueryOperatorInput | |
createdAt: DateQueryOperatorInput | |
updatedAt: DateQueryOperatorInput | |
node_locale: StringQueryOperatorInput | |
} | |
input ContentfulMenuFilterListInput { | |
elemMatch: ContentfulMenuFilterInput | |
} | |
type ContentfulMenuGroupConnection { | |
totalCount: Int! | |
edges: [ContentfulMenuEdge!]! | |
nodes: [ContentfulMenu!]! | |
pageInfo: PageInfo! | |
field: String! | |
fieldValue: String | |
} | |
input ContentfulMenuSortInput { | |
fields: [ContentfulMenuFieldsEnum] | |
order: [SortOrderEnum] = [ASC] | |
} | |
type ContentfulPage implements Node { | |
id: ID! | |
parent: Node | |
children: [Node!]! | |
internal: Internal! | |
title: String | |
slug: String | |
isHomePage: Boolean | |
featuredPosts: [ContentfulBlogPost] | |
spaceId: String | |
contentful_id: String | |
createdAt( | |
""" | |
Format the date using Moment.js' date tokens, e.g. `date(formatString: "YYYY | |
MMMM DD")`. See https://momentjs.com/docs/#/displaying/format/ for | |
documentation for different tokens. | |
""" | |
formatString: String | |
"""Returns a string generated with Moment.js' `fromNow` function""" | |
fromNow: Boolean | |
""" | |
Returns the difference between this date and the current time. Defaults to | |
"milliseconds" but you can also pass in as the measurement "years", | |
"months", "weeks", "days", "hours", "minutes", and "seconds". | |
""" | |
difference: String | |
"""Configures the locale Moment.js will use to format the date.""" | |
locale: String | |
): Date | |
updatedAt( | |
""" | |
Format the date using Moment.js' date tokens, e.g. `date(formatString: "YYYY | |
MMMM DD")`. See https://momentjs.com/docs/#/displaying/format/ for | |
documentation for different tokens. | |
""" | |
formatString: String | |
"""Returns a string generated with Moment.js' `fromNow` function""" | |
fromNow: Boolean | |
""" | |
Returns the difference between this date and the current time. Defaults to | |
"milliseconds" but you can also pass in as the measurement "years", | |
"months", "weeks", "days", "hours", "minutes", and "seconds". | |
""" | |
difference: String | |
"""Configures the locale Moment.js will use to format the date.""" | |
locale: String | |
): Date | |
node_locale: String | |
body: contentfulPageBodyRichTextNode | |
childContentfulPageBodyRichTextNode: contentfulPageBodyRichTextNode | |
} | |
type contentfulPageBodyRichTextNode implements Node { | |
id: ID! | |
parent: Node | |
children: [Node!]! | |
internal: Internal! | |
content: [contentfulPageBodyRichTextNodeContent] | |
nodeType: String @deprecated(reason: "This field is deprecated, please use 'json' instead.") | |
body: String | |
json: JSON | |
childContentfulRichText: ContentfulRichText | |
} | |
type contentfulPageBodyRichTextNodeConnection { | |
totalCount: Int! | |
edges: [contentfulPageBodyRichTextNodeEdge!]! | |
nodes: [contentfulPageBodyRichTextNode!]! | |
pageInfo: PageInfo! | |
distinct(field: contentfulPageBodyRichTextNodeFieldsEnum!): [String!]! | |
group(skip: Int, limit: Int, field: contentfulPageBodyRichTextNodeFieldsEnum!): [contentfulPageBodyRichTextNodeGroupConnection!]! | |
} | |
type contentfulPageBodyRichTextNodeContent { | |
content: [contentfulPageBodyRichTextNodeContentContent] | |
nodeType: String | |
} | |
type contentfulPageBodyRichTextNodeContentContent { | |
value: String | |
nodeType: String | |
} | |
input contentfulPageBodyRichTextNodeContentContentFilterInput { | |
value: StringQueryOperatorInput | |
nodeType: StringQueryOperatorInput | |
} | |
input contentfulPageBodyRichTextNodeContentContentFilterListInput { | |
elemMatch: contentfulPageBodyRichTextNodeContentContentFilterInput | |
} | |
input contentfulPageBodyRichTextNodeContentFilterInput { | |
content: contentfulPageBodyRichTextNodeContentContentFilterListInput | |
nodeType: StringQueryOperatorInput | |
} | |
input contentfulPageBodyRichTextNodeContentFilterListInput { | |
elemMatch: contentfulPageBodyRichTextNodeContentFilterInput | |
} | |
type contentfulPageBodyRichTextNodeEdge { | |
next: contentfulPageBodyRichTextNode | |
node: contentfulPageBodyRichTextNode! | |
previous: contentfulPageBodyRichTextNode | |
} | |
enum contentfulPageBodyRichTextNodeFieldsEnum { | |
id | |
parent___id | |
parent___parent___id | |
parent___parent___parent___id | |
parent___parent___parent___children | |
parent___parent___children | |
parent___parent___children___id | |
parent___parent___children___children | |
parent___parent___internal___content | |
parent___parent___internal___contentDigest | |
parent___parent___internal___description | |
parent___parent___internal___fieldOwners | |
parent___parent___internal___ignoreType | |
parent___parent___internal___mediaType | |
parent___parent___internal___owner | |
parent___parent___internal___type | |
parent___children | |
parent___children___id | |
parent___children___parent___id | |
parent___children___parent___children | |
parent___children___children | |
parent___children___children___id | |
parent___children___children___children | |
parent___children___internal___content | |
parent___children___internal___contentDigest | |
parent___children___internal___description | |
parent___children___internal___fieldOwners | |
parent___children___internal___ignoreType | |
parent___children___internal___mediaType | |
parent___children___internal___owner | |
parent___children___internal___type | |
parent___internal___content | |
parent___internal___contentDigest | |
parent___internal___description | |
parent___internal___fieldOwners | |
parent___internal___ignoreType | |
parent___internal___mediaType | |
parent___internal___owner | |
parent___internal___type | |
children | |
children___id | |
children___parent___id | |
children___parent___parent___id | |
children___parent___parent___children | |
children___parent___children | |
children___parent___children___id | |
children___parent___children___children | |
children___parent___internal___content | |
children___parent___internal___contentDigest | |
children___parent___internal___description | |
children___parent___internal___fieldOwners | |
children___parent___internal___ignoreType | |
children___parent___internal___mediaType | |
children___parent___internal___owner | |
children___parent___internal___type | |
children___children | |
children___children___id | |
children___children___parent___id | |
children___children___parent___children | |
children___children___children | |
children___children___children___id | |
children___children___children___children | |
children___children___internal___content | |
children___children___internal___contentDigest | |
children___children___internal___description | |
children___children___internal___fieldOwners | |
children___children___internal___ignoreType | |
children___children___internal___mediaType | |
children___children___internal___owner | |
children___children___internal___type | |
children___internal___content | |
children___internal___contentDigest | |
children___internal___description | |
children___internal___fieldOwners | |
children___internal___ignoreType | |
children___internal___mediaType | |
children___internal___owner | |
children___internal___type | |
internal___content | |
internal___contentDigest | |
internal___description | |
internal___fieldOwners | |
internal___ignoreType | |
internal___mediaType | |
internal___owner | |
internal___type | |
content | |
content___content | |
content___content___value | |
content___content___nodeType | |
content___nodeType | |
nodeType | |
body | |
json | |
childContentfulRichText___id | |
childContentfulRichText___parent___id | |
childContentfulRichText___parent___parent___id | |
childContentfulRichText___parent___parent___children | |
childContentfulRichText___parent___children | |
childContentfulRichText___parent___children___id | |
childContentfulRichText___parent___children___children | |
childContentfulRichText___parent___internal___content | |
childContentfulRichText___parent___internal___contentDigest | |
childContentfulRichText___parent___internal___description | |
childContentfulRichText___parent___internal___fieldOwners | |
childContentfulRichText___parent___internal___ignoreType | |
childContentfulRichText___parent___internal___mediaType | |
childContentfulRichText___parent___internal___owner | |
childContentfulRichText___parent___internal___type | |
childContentfulRichText___children | |
childContentfulRichText___children___id | |
childContentfulRichText___children___parent___id | |
childContentfulRichText___children___parent___children | |
childContentfulRichText___children___children | |
childContentfulRichText___children___children___id | |
childContentfulRichText___children___children___children | |
childContentfulRichText___children___internal___content | |
childContentfulRichText___children___internal___contentDigest | |
childContentfulRichText___children___internal___description | |
childContentfulRichText___children___internal___fieldOwners | |
childContentfulRichText___children___internal___ignoreType | |
childContentfulRichText___children___internal___mediaType | |
childContentfulRichText___children___internal___owner | |
childContentfulRichText___children___internal___type | |
childContentfulRichText___internal___content | |
childContentfulRichText___internal___contentDigest | |
childContentfulRichText___internal___description | |
childContentfulRichText___internal___fieldOwners | |
childContentfulRichText___internal___ignoreType | |
childContentfulRichText___internal___mediaType | |
childContentfulRichText___internal___owner | |
childContentfulRichText___internal___type | |
childContentfulRichText___html | |
childContentfulRichText___timeToRead | |
} | |
input contentfulPageBodyRichTextNodeFilterInput { | |
id: StringQueryOperatorInput | |
parent: NodeFilterInput | |
children: NodeFilterListInput | |
internal: InternalFilterInput | |
content: contentfulPageBodyRichTextNodeContentFilterListInput | |
nodeType: StringQueryOperatorInput | |
body: StringQueryOperatorInput | |
json: JSONQueryOperatorInput | |
childContentfulRichText: ContentfulRichTextFilterInput | |
} | |
type contentfulPageBodyRichTextNodeGroupConnection { | |
totalCount: Int! | |
edges: [contentfulPageBodyRichTextNodeEdge!]! | |
nodes: [contentfulPageBodyRichTextNode!]! | |
pageInfo: PageInfo! | |
field: String! | |
fieldValue: String | |
} | |
input contentfulPageBodyRichTextNodeSortInput { | |
fields: [contentfulPageBodyRichTextNodeFieldsEnum] | |
order: [SortOrderEnum] = [ASC] | |
} | |
type ContentfulPageConnection { | |
totalCount: Int! | |
edges: [ContentfulPageEdge!]! | |
nodes: [ContentfulPage!]! | |
pageInfo: PageInfo! | |
distinct(field: ContentfulPageFieldsEnum!): [String!]! | |
group(skip: Int, limit: Int, field: ContentfulPageFieldsEnum!): [ContentfulPageGroupConnection!]! | |
} | |
type ContentfulPageEdge { | |
next: ContentfulPage | |
node: ContentfulPage! | |
previous: ContentfulPage | |
} | |
enum ContentfulPageFieldsEnum { | |
id | |
parent___id | |
parent___parent___id | |
parent___parent___parent___id | |
parent___parent___parent___children | |
parent___parent___children | |
parent___parent___children___id | |
parent___parent___children___children | |
parent___parent___internal___content | |
parent___parent___internal___contentDigest | |
parent___parent___internal___description | |
parent___parent___internal___fieldOwners | |
parent___parent___internal___ignoreType | |
parent___parent___internal___mediaType | |
parent___parent___internal___owner | |
parent___parent___internal___type | |
parent___children | |
parent___children___id | |
parent___children___parent___id | |
parent___children___parent___children | |
parent___children___children | |
parent___children___children___id | |
parent___children___children___children | |
parent___children___internal___content | |
parent___children___internal___contentDigest | |
parent___children___internal___description | |
parent___children___internal___fieldOwners | |
parent___children___internal___ignoreType | |
parent___children___internal___mediaType | |
parent___children___internal___owner | |
parent___children___internal___type | |
parent___internal___content | |
parent___internal___contentDigest | |
parent___internal___description | |
parent___internal___fieldOwners | |
parent___internal___ignoreType | |
parent___internal___mediaType | |
parent___internal___owner | |
parent___internal___type | |
children | |
children___id | |
children___parent___id | |
children___parent___parent___id | |
children___parent___parent___children | |
children___parent___children | |
children___parent___children___id | |
children___parent___children___children | |
children___parent___internal___content | |
children___parent___internal___contentDigest | |
children___parent___internal___description | |
children___parent___internal___fieldOwners | |
children___parent___internal___ignoreType | |
children___parent___internal___mediaType | |
children___parent___internal___owner | |
children___parent___internal___type | |
children___children | |
children___children___id | |
children___children___parent___id | |
children___children___parent___children | |
children___children___children | |
children___children___children___id | |
children___children___children___children | |
children___children___internal___content | |
children___children___internal___contentDigest | |
children___children___internal___description | |
children___children___internal___fieldOwners | |
children___children___internal___ignoreType | |
children___children___internal___mediaType | |
children___children___internal___owner | |
children___children___internal___type | |
children___internal___content | |
children___internal___contentDigest | |
children___internal___description | |
children___internal___fieldOwners | |
children___internal___ignoreType | |
children___internal___mediaType | |
children___internal___owner | |
children___internal___type | |
internal___content | |
internal___contentDigest | |
internal___description | |
internal___fieldOwners | |
internal___ignoreType | |
internal___mediaType | |
internal___owner | |
internal___type | |
title | |
slug | |
isHomePage | |
featuredPosts | |
featuredPosts___id | |
featuredPosts___parent___id | |
featuredPosts___parent___parent___id | |
featuredPosts___parent___parent___children | |
featuredPosts___parent___children | |
featuredPosts___parent___children___id | |
featuredPosts___parent___children___children | |
featuredPosts___parent___internal___content | |
featuredPosts___parent___internal___contentDigest | |
featuredPosts___parent___internal___description | |
featuredPosts___parent___internal___fieldOwners | |
featuredPosts___parent___internal___ignoreType | |
featuredPosts___parent___internal___mediaType | |
featuredPosts___parent___internal___owner | |
featuredPosts___parent___internal___type | |
featuredPosts___children | |
featuredPosts___children___id | |
featuredPosts___children___parent___id | |
featuredPosts___children___parent___children | |
featuredPosts___children___children | |
featuredPosts___children___children___id | |
featuredPosts___children___children___children | |
featuredPosts___children___internal___content | |
featuredPosts___children___internal___contentDigest | |
featuredPosts___children___internal___description | |
featuredPosts___children___internal___fieldOwners | |
featuredPosts___children___internal___ignoreType | |
featuredPosts___children___internal___mediaType | |
featuredPosts___children___internal___owner | |
featuredPosts___children___internal___type | |
featuredPosts___internal___content | |
featuredPosts___internal___contentDigest | |
featuredPosts___internal___description | |
featuredPosts___internal___fieldOwners | |
featuredPosts___internal___ignoreType | |
featuredPosts___internal___mediaType | |
featuredPosts___internal___owner | |
featuredPosts___internal___type | |
featuredPosts___title | |
featuredPosts___slug | |
featuredPosts___publishDate | |
featuredPosts___featuredImage___id | |
featuredPosts___featuredImage___parent___id | |
featuredPosts___featuredImage___parent___children | |
featuredPosts___featuredImage___children | |
featuredPosts___featuredImage___children___id | |
featuredPosts___featuredImage___children___children | |
featuredPosts___featuredImage___internal___content | |
featuredPosts___featuredImage___internal___contentDigest | |
featuredPosts___featuredImage___internal___description | |
featuredPosts___featuredImage___internal___fieldOwners | |
featuredPosts___featuredImage___internal___ignoreType | |
featuredPosts___featuredImage___internal___mediaType | |
featuredPosts___featuredImage___internal___owner | |
featuredPosts___featuredImage___internal___type | |
featuredPosts___featuredImage___contentful_id | |
featuredPosts___featuredImage___file___url | |
featuredPosts___featuredImage___file___fileName | |
featuredPosts___featuredImage___file___contentType | |
featuredPosts___featuredImage___title | |
featuredPosts___featuredImage___description | |
featuredPosts___featuredImage___node_locale | |
featuredPosts___featuredImage___fixed___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredPosts___featuredImage___fixed___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredPosts___featuredImage___fixed___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredPosts___featuredImage___fixed___width @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredPosts___featuredImage___fixed___height @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredPosts___featuredImage___fixed___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredPosts___featuredImage___fixed___srcSet @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredPosts___featuredImage___fixed___srcWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredPosts___featuredImage___fixed___srcSetWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredPosts___featuredImage___resolutions___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredPosts___featuredImage___resolutions___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredPosts___featuredImage___resolutions___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredPosts___featuredImage___resolutions___width @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredPosts___featuredImage___resolutions___height @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredPosts___featuredImage___resolutions___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredPosts___featuredImage___resolutions___srcSet @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredPosts___featuredImage___resolutions___srcWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredPosts___featuredImage___resolutions___srcSetWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredPosts___featuredImage___fluid___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredPosts___featuredImage___fluid___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredPosts___featuredImage___fluid___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredPosts___featuredImage___fluid___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredPosts___featuredImage___fluid___srcSet @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredPosts___featuredImage___fluid___srcWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredPosts___featuredImage___fluid___srcSetWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredPosts___featuredImage___fluid___sizes @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredPosts___featuredImage___sizes___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredPosts___featuredImage___sizes___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredPosts___featuredImage___sizes___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredPosts___featuredImage___sizes___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredPosts___featuredImage___sizes___srcSet @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredPosts___featuredImage___sizes___srcWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredPosts___featuredImage___sizes___srcSetWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredPosts___featuredImage___sizes___sizes @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredPosts___featuredImage___resize___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredPosts___featuredImage___resize___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredPosts___featuredImage___resize___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredPosts___featuredImage___resize___width @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredPosts___featuredImage___resize___height @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredPosts___featuredImage___resize___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredPosts___categories | |
featuredPosts___categories___id | |
featuredPosts___categories___parent___id | |
featuredPosts___categories___parent___children | |
featuredPosts___categories___children | |
featuredPosts___categories___children___id | |
featuredPosts___categories___children___children | |
featuredPosts___categories___internal___content | |
featuredPosts___categories___internal___contentDigest | |
featuredPosts___categories___internal___description | |
featuredPosts___categories___internal___fieldOwners | |
featuredPosts___categories___internal___ignoreType | |
featuredPosts___categories___internal___mediaType | |
featuredPosts___categories___internal___owner | |
featuredPosts___categories___internal___type | |
featuredPosts___categories___title | |
featuredPosts___categories___slug | |
featuredPosts___categories___featuredImage___id | |
featuredPosts___categories___featuredImage___children | |
featuredPosts___categories___featuredImage___contentful_id | |
featuredPosts___categories___featuredImage___title | |
featuredPosts___categories___featuredImage___description | |
featuredPosts___categories___featuredImage___node_locale | |
featuredPosts___categories___blogpost | |
featuredPosts___categories___blogpost___id | |
featuredPosts___categories___blogpost___children | |
featuredPosts___categories___blogpost___title | |
featuredPosts___categories___blogpost___slug | |
featuredPosts___categories___blogpost___publishDate | |
featuredPosts___categories___blogpost___categories | |
featuredPosts___categories___blogpost___page | |
featuredPosts___categories___blogpost___spaceId | |
featuredPosts___categories___blogpost___contentful_id | |
featuredPosts___categories___blogpost___createdAt | |
featuredPosts___categories___blogpost___updatedAt | |
featuredPosts___categories___blogpost___node_locale | |
featuredPosts___categories___spaceId | |
featuredPosts___categories___contentful_id | |
featuredPosts___categories___createdAt | |
featuredPosts___categories___updatedAt | |
featuredPosts___categories___node_locale | |
featuredPosts___categories___menu | |
featuredPosts___categories___menu___id | |
featuredPosts___categories___menu___children | |
featuredPosts___categories___menu___name | |
featuredPosts___categories___menu___menuItems | |
featuredPosts___categories___menu___spaceId | |
featuredPosts___categories___menu___contentful_id | |
featuredPosts___categories___menu___createdAt | |
featuredPosts___categories___menu___updatedAt | |
featuredPosts___categories___menu___node_locale | |
featuredPosts___categories___product | |
featuredPosts___categories___product___id | |
featuredPosts___categories___product___children | |
featuredPosts___categories___product___title | |
featuredPosts___categories___product___slug | |
featuredPosts___categories___product___price | |
featuredPosts___categories___product___categories | |
featuredPosts___categories___product___spaceId | |
featuredPosts___categories___product___contentful_id | |
featuredPosts___categories___product___createdAt | |
featuredPosts___categories___product___updatedAt | |
featuredPosts___categories___product___node_locale | |
featuredPosts___categories___body___id | |
featuredPosts___categories___body___children | |
featuredPosts___categories___body___content | |
featuredPosts___categories___body___nodeType | |
featuredPosts___categories___body___body | |
featuredPosts___categories___body___json | |
featuredPosts___categories___childContentfulCategoryBodyRichTextNode___id | |
featuredPosts___categories___childContentfulCategoryBodyRichTextNode___children | |
featuredPosts___categories___childContentfulCategoryBodyRichTextNode___content | |
featuredPosts___categories___childContentfulCategoryBodyRichTextNode___nodeType | |
featuredPosts___categories___childContentfulCategoryBodyRichTextNode___body | |
featuredPosts___categories___childContentfulCategoryBodyRichTextNode___json | |
featuredPosts___page | |
featuredPosts___page___id | |
featuredPosts___page___parent___id | |
featuredPosts___page___parent___children | |
featuredPosts___page___children | |
featuredPosts___page___children___id | |
featuredPosts___page___children___children | |
featuredPosts___page___internal___content | |
featuredPosts___page___internal___contentDigest | |
featuredPosts___page___internal___description | |
featuredPosts___page___internal___fieldOwners | |
featuredPosts___page___internal___ignoreType | |
featuredPosts___page___internal___mediaType | |
featuredPosts___page___internal___owner | |
featuredPosts___page___internal___type | |
featuredPosts___page___title | |
featuredPosts___page___slug | |
featuredPosts___page___isHomePage | |
featuredPosts___page___featuredPosts | |
featuredPosts___page___featuredPosts___id | |
featuredPosts___page___featuredPosts___children | |
featuredPosts___page___featuredPosts___title | |
featuredPosts___page___featuredPosts___slug | |
featuredPosts___page___featuredPosts___publishDate | |
featuredPosts___page___featuredPosts___categories | |
featuredPosts___page___featuredPosts___page | |
featuredPosts___page___featuredPosts___spaceId | |
featuredPosts___page___featuredPosts___contentful_id | |
featuredPosts___page___featuredPosts___createdAt | |
featuredPosts___page___featuredPosts___updatedAt | |
featuredPosts___page___featuredPosts___node_locale | |
featuredPosts___page___spaceId | |
featuredPosts___page___contentful_id | |
featuredPosts___page___createdAt | |
featuredPosts___page___updatedAt | |
featuredPosts___page___node_locale | |
featuredPosts___page___body___id | |
featuredPosts___page___body___children | |
featuredPosts___page___body___content | |
featuredPosts___page___body___nodeType | |
featuredPosts___page___body___body | |
featuredPosts___page___body___json | |
featuredPosts___page___childContentfulPageBodyRichTextNode___id | |
featuredPosts___page___childContentfulPageBodyRichTextNode___children | |
featuredPosts___page___childContentfulPageBodyRichTextNode___content | |
featuredPosts___page___childContentfulPageBodyRichTextNode___nodeType | |
featuredPosts___page___childContentfulPageBodyRichTextNode___body | |
featuredPosts___page___childContentfulPageBodyRichTextNode___json | |
featuredPosts___body___id | |
featuredPosts___body___parent___id | |
featuredPosts___body___parent___children | |
featuredPosts___body___children | |
featuredPosts___body___children___id | |
featuredPosts___body___children___children | |
featuredPosts___body___internal___content | |
featuredPosts___body___internal___contentDigest | |
featuredPosts___body___internal___description | |
featuredPosts___body___internal___fieldOwners | |
featuredPosts___body___internal___ignoreType | |
featuredPosts___body___internal___mediaType | |
featuredPosts___body___internal___owner | |
featuredPosts___body___internal___type | |
featuredPosts___body___content | |
featuredPosts___body___content___content | |
featuredPosts___body___content___nodeType | |
featuredPosts___body___nodeType | |
featuredPosts___body___body | |
featuredPosts___body___json | |
featuredPosts___body___childContentfulRichText___id | |
featuredPosts___body___childContentfulRichText___children | |
featuredPosts___body___childContentfulRichText___html | |
featuredPosts___body___childContentfulRichText___timeToRead | |
featuredPosts___spaceId | |
featuredPosts___contentful_id | |
featuredPosts___createdAt | |
featuredPosts___updatedAt | |
featuredPosts___node_locale | |
featuredPosts___author___id | |
featuredPosts___author___parent___id | |
featuredPosts___author___parent___children | |
featuredPosts___author___children | |
featuredPosts___author___children___id | |
featuredPosts___author___children___children | |
featuredPosts___author___internal___content | |
featuredPosts___author___internal___contentDigest | |
featuredPosts___author___internal___description | |
featuredPosts___author___internal___fieldOwners | |
featuredPosts___author___internal___ignoreType | |
featuredPosts___author___internal___mediaType | |
featuredPosts___author___internal___owner | |
featuredPosts___author___internal___type | |
featuredPosts___author___name | |
featuredPosts___author___title | |
featuredPosts___author___company | |
featuredPosts___author___email | |
featuredPosts___author___phone | |
featuredPosts___author___facebook | |
featuredPosts___author___twitter | |
featuredPosts___author___github | |
featuredPosts___author___image___id | |
featuredPosts___author___image___children | |
featuredPosts___author___image___contentful_id | |
featuredPosts___author___image___title | |
featuredPosts___author___image___description | |
featuredPosts___author___image___node_locale | |
featuredPosts___author___blogpost | |
featuredPosts___author___blogpost___id | |
featuredPosts___author___blogpost___children | |
featuredPosts___author___blogpost___title | |
featuredPosts___author___blogpost___slug | |
featuredPosts___author___blogpost___publishDate | |
featuredPosts___author___blogpost___categories | |
featuredPosts___author___blogpost___page | |
featuredPosts___author___blogpost___spaceId | |
featuredPosts___author___blogpost___contentful_id | |
featuredPosts___author___blogpost___createdAt | |
featuredPosts___author___blogpost___updatedAt | |
featuredPosts___author___blogpost___node_locale | |
featuredPosts___author___shortBio___id | |
featuredPosts___author___shortBio___children | |
featuredPosts___author___shortBio___shortBio | |
featuredPosts___author___spaceId | |
featuredPosts___author___contentful_id | |
featuredPosts___author___createdAt | |
featuredPosts___author___updatedAt | |
featuredPosts___author___node_locale | |
featuredPosts___author___childContentfulPersonShortBioTextNode___id | |
featuredPosts___author___childContentfulPersonShortBioTextNode___children | |
featuredPosts___author___childContentfulPersonShortBioTextNode___shortBio | |
featuredPosts___childContentfulBlogPostBodyRichTextNode___id | |
featuredPosts___childContentfulBlogPostBodyRichTextNode___parent___id | |
featuredPosts___childContentfulBlogPostBodyRichTextNode___parent___children | |
featuredPosts___childContentfulBlogPostBodyRichTextNode___children | |
featuredPosts___childContentfulBlogPostBodyRichTextNode___children___id | |
featuredPosts___childContentfulBlogPostBodyRichTextNode___children___children | |
featuredPosts___childContentfulBlogPostBodyRichTextNode___internal___content | |
featuredPosts___childContentfulBlogPostBodyRichTextNode___internal___contentDigest | |
featuredPosts___childContentfulBlogPostBodyRichTextNode___internal___description | |
featuredPosts___childContentfulBlogPostBodyRichTextNode___internal___fieldOwners | |
featuredPosts___childContentfulBlogPostBodyRichTextNode___internal___ignoreType | |
featuredPosts___childContentfulBlogPostBodyRichTextNode___internal___mediaType | |
featuredPosts___childContentfulBlogPostBodyRichTextNode___internal___owner | |
featuredPosts___childContentfulBlogPostBodyRichTextNode___internal___type | |
featuredPosts___childContentfulBlogPostBodyRichTextNode___content | |
featuredPosts___childContentfulBlogPostBodyRichTextNode___content___content | |
featuredPosts___childContentfulBlogPostBodyRichTextNode___content___nodeType | |
featuredPosts___childContentfulBlogPostBodyRichTextNode___nodeType | |
featuredPosts___childContentfulBlogPostBodyRichTextNode___body | |
featuredPosts___childContentfulBlogPostBodyRichTextNode___json | |
featuredPosts___childContentfulBlogPostBodyRichTextNode___childContentfulRichText___id | |
featuredPosts___childContentfulBlogPostBodyRichTextNode___childContentfulRichText___children | |
featuredPosts___childContentfulBlogPostBodyRichTextNode___childContentfulRichText___html | |
featuredPosts___childContentfulBlogPostBodyRichTextNode___childContentfulRichText___timeToRead | |
spaceId | |
contentful_id | |
createdAt | |
updatedAt | |
node_locale | |
body___id | |
body___parent___id | |
body___parent___parent___id | |
body___parent___parent___children | |
body___parent___children | |
body___parent___children___id | |
body___parent___children___children | |
body___parent___internal___content | |
body___parent___internal___contentDigest | |
body___parent___internal___description | |
body___parent___internal___fieldOwners | |
body___parent___internal___ignoreType | |
body___parent___internal___mediaType | |
body___parent___internal___owner | |
body___parent___internal___type | |
body___children | |
body___children___id | |
body___children___parent___id | |
body___children___parent___children | |
body___children___children | |
body___children___children___id | |
body___children___children___children | |
body___children___internal___content | |
body___children___internal___contentDigest | |
body___children___internal___description | |
body___children___internal___fieldOwners | |
body___children___internal___ignoreType | |
body___children___internal___mediaType | |
body___children___internal___owner | |
body___children___internal___type | |
body___internal___content | |
body___internal___contentDigest | |
body___internal___description | |
body___internal___fieldOwners | |
body___internal___ignoreType | |
body___internal___mediaType | |
body___internal___owner | |
body___internal___type | |
body___content | |
body___content___content | |
body___content___content___value | |
body___content___content___nodeType | |
body___content___nodeType | |
body___nodeType | |
body___body | |
body___json | |
body___childContentfulRichText___id | |
body___childContentfulRichText___parent___id | |
body___childContentfulRichText___parent___children | |
body___childContentfulRichText___children | |
body___childContentfulRichText___children___id | |
body___childContentfulRichText___children___children | |
body___childContentfulRichText___internal___content | |
body___childContentfulRichText___internal___contentDigest | |
body___childContentfulRichText___internal___description | |
body___childContentfulRichText___internal___fieldOwners | |
body___childContentfulRichText___internal___ignoreType | |
body___childContentfulRichText___internal___mediaType | |
body___childContentfulRichText___internal___owner | |
body___childContentfulRichText___internal___type | |
body___childContentfulRichText___html | |
body___childContentfulRichText___timeToRead | |
childContentfulPageBodyRichTextNode___id | |
childContentfulPageBodyRichTextNode___parent___id | |
childContentfulPageBodyRichTextNode___parent___parent___id | |
childContentfulPageBodyRichTextNode___parent___parent___children | |
childContentfulPageBodyRichTextNode___parent___children | |
childContentfulPageBodyRichTextNode___parent___children___id | |
childContentfulPageBodyRichTextNode___parent___children___children | |
childContentfulPageBodyRichTextNode___parent___internal___content | |
childContentfulPageBodyRichTextNode___parent___internal___contentDigest | |
childContentfulPageBodyRichTextNode___parent___internal___description | |
childContentfulPageBodyRichTextNode___parent___internal___fieldOwners | |
childContentfulPageBodyRichTextNode___parent___internal___ignoreType | |
childContentfulPageBodyRichTextNode___parent___internal___mediaType | |
childContentfulPageBodyRichTextNode___parent___internal___owner | |
childContentfulPageBodyRichTextNode___parent___internal___type | |
childContentfulPageBodyRichTextNode___children | |
childContentfulPageBodyRichTextNode___children___id | |
childContentfulPageBodyRichTextNode___children___parent___id | |
childContentfulPageBodyRichTextNode___children___parent___children | |
childContentfulPageBodyRichTextNode___children___children | |
childContentfulPageBodyRichTextNode___children___children___id | |
childContentfulPageBodyRichTextNode___children___children___children | |
childContentfulPageBodyRichTextNode___children___internal___content | |
childContentfulPageBodyRichTextNode___children___internal___contentDigest | |
childContentfulPageBodyRichTextNode___children___internal___description | |
childContentfulPageBodyRichTextNode___children___internal___fieldOwners | |
childContentfulPageBodyRichTextNode___children___internal___ignoreType | |
childContentfulPageBodyRichTextNode___children___internal___mediaType | |
childContentfulPageBodyRichTextNode___children___internal___owner | |
childContentfulPageBodyRichTextNode___children___internal___type | |
childContentfulPageBodyRichTextNode___internal___content | |
childContentfulPageBodyRichTextNode___internal___contentDigest | |
childContentfulPageBodyRichTextNode___internal___description | |
childContentfulPageBodyRichTextNode___internal___fieldOwners | |
childContentfulPageBodyRichTextNode___internal___ignoreType | |
childContentfulPageBodyRichTextNode___internal___mediaType | |
childContentfulPageBodyRichTextNode___internal___owner | |
childContentfulPageBodyRichTextNode___internal___type | |
childContentfulPageBodyRichTextNode___content | |
childContentfulPageBodyRichTextNode___content___content | |
childContentfulPageBodyRichTextNode___content___content___value | |
childContentfulPageBodyRichTextNode___content___content___nodeType | |
childContentfulPageBodyRichTextNode___content___nodeType | |
childContentfulPageBodyRichTextNode___nodeType | |
childContentfulPageBodyRichTextNode___body | |
childContentfulPageBodyRichTextNode___json | |
childContentfulPageBodyRichTextNode___childContentfulRichText___id | |
childContentfulPageBodyRichTextNode___childContentfulRichText___parent___id | |
childContentfulPageBodyRichTextNode___childContentfulRichText___parent___children | |
childContentfulPageBodyRichTextNode___childContentfulRichText___children | |
childContentfulPageBodyRichTextNode___childContentfulRichText___children___id | |
childContentfulPageBodyRichTextNode___childContentfulRichText___children___children | |
childContentfulPageBodyRichTextNode___childContentfulRichText___internal___content | |
childContentfulPageBodyRichTextNode___childContentfulRichText___internal___contentDigest | |
childContentfulPageBodyRichTextNode___childContentfulRichText___internal___description | |
childContentfulPageBodyRichTextNode___childContentfulRichText___internal___fieldOwners | |
childContentfulPageBodyRichTextNode___childContentfulRichText___internal___ignoreType | |
childContentfulPageBodyRichTextNode___childContentfulRichText___internal___mediaType | |
childContentfulPageBodyRichTextNode___childContentfulRichText___internal___owner | |
childContentfulPageBodyRichTextNode___childContentfulRichText___internal___type | |
childContentfulPageBodyRichTextNode___childContentfulRichText___html | |
childContentfulPageBodyRichTextNode___childContentfulRichText___timeToRead | |
} | |
input ContentfulPageFilterInput { | |
id: StringQueryOperatorInput | |
parent: NodeFilterInput | |
children: NodeFilterListInput | |
internal: InternalFilterInput | |
title: StringQueryOperatorInput | |
slug: StringQueryOperatorInput | |
isHomePage: BooleanQueryOperatorInput | |
featuredPosts: ContentfulBlogPostFilterListInput | |
spaceId: StringQueryOperatorInput | |
contentful_id: StringQueryOperatorInput | |
createdAt: DateQueryOperatorInput | |
updatedAt: DateQueryOperatorInput | |
node_locale: StringQueryOperatorInput | |
body: contentfulPageBodyRichTextNodeFilterInput | |
childContentfulPageBodyRichTextNode: contentfulPageBodyRichTextNodeFilterInput | |
} | |
input ContentfulPageFilterListInput { | |
elemMatch: ContentfulPageFilterInput | |
} | |
type ContentfulPageGroupConnection { | |
totalCount: Int! | |
edges: [ContentfulPageEdge!]! | |
nodes: [ContentfulPage!]! | |
pageInfo: PageInfo! | |
field: String! | |
fieldValue: String | |
} | |
input ContentfulPageSortInput { | |
fields: [ContentfulPageFieldsEnum] | |
order: [SortOrderEnum] = [ASC] | |
} | |
type ContentfulPerson implements Node { | |
id: ID! | |
parent: Node | |
children: [Node!]! | |
internal: Internal! | |
name: String | |
title: String | |
company: String | |
email: String | |
phone: String | |
facebook: String | |
twitter: String | |
github: String | |
image: ContentfulAsset | |
blogpost: [ContentfulBlogPost] | |
shortBio: contentfulPersonShortBioTextNode | |
spaceId: String | |
contentful_id: String | |
createdAt( | |
""" | |
Format the date using Moment.js' date tokens, e.g. `date(formatString: "YYYY | |
MMMM DD")`. See https://momentjs.com/docs/#/displaying/format/ for | |
documentation for different tokens. | |
""" | |
formatString: String | |
"""Returns a string generated with Moment.js' `fromNow` function""" | |
fromNow: Boolean | |
""" | |
Returns the difference between this date and the current time. Defaults to | |
"milliseconds" but you can also pass in as the measurement "years", | |
"months", "weeks", "days", "hours", "minutes", and "seconds". | |
""" | |
difference: String | |
"""Configures the locale Moment.js will use to format the date.""" | |
locale: String | |
): Date | |
updatedAt( | |
""" | |
Format the date using Moment.js' date tokens, e.g. `date(formatString: "YYYY | |
MMMM DD")`. See https://momentjs.com/docs/#/displaying/format/ for | |
documentation for different tokens. | |
""" | |
formatString: String | |
"""Returns a string generated with Moment.js' `fromNow` function""" | |
fromNow: Boolean | |
""" | |
Returns the difference between this date and the current time. Defaults to | |
"milliseconds" but you can also pass in as the measurement "years", | |
"months", "weeks", "days", "hours", "minutes", and "seconds". | |
""" | |
difference: String | |
"""Configures the locale Moment.js will use to format the date.""" | |
locale: String | |
): Date | |
node_locale: String | |
childContentfulPersonShortBioTextNode: contentfulPersonShortBioTextNode | |
} | |
type ContentfulPersonConnection { | |
totalCount: Int! | |
edges: [ContentfulPersonEdge!]! | |
nodes: [ContentfulPerson!]! | |
pageInfo: PageInfo! | |
distinct(field: ContentfulPersonFieldsEnum!): [String!]! | |
group(skip: Int, limit: Int, field: ContentfulPersonFieldsEnum!): [ContentfulPersonGroupConnection!]! | |
} | |
type ContentfulPersonEdge { | |
next: ContentfulPerson | |
node: ContentfulPerson! | |
previous: ContentfulPerson | |
} | |
enum ContentfulPersonFieldsEnum { | |
id | |
parent___id | |
parent___parent___id | |
parent___parent___parent___id | |
parent___parent___parent___children | |
parent___parent___children | |
parent___parent___children___id | |
parent___parent___children___children | |
parent___parent___internal___content | |
parent___parent___internal___contentDigest | |
parent___parent___internal___description | |
parent___parent___internal___fieldOwners | |
parent___parent___internal___ignoreType | |
parent___parent___internal___mediaType | |
parent___parent___internal___owner | |
parent___parent___internal___type | |
parent___children | |
parent___children___id | |
parent___children___parent___id | |
parent___children___parent___children | |
parent___children___children | |
parent___children___children___id | |
parent___children___children___children | |
parent___children___internal___content | |
parent___children___internal___contentDigest | |
parent___children___internal___description | |
parent___children___internal___fieldOwners | |
parent___children___internal___ignoreType | |
parent___children___internal___mediaType | |
parent___children___internal___owner | |
parent___children___internal___type | |
parent___internal___content | |
parent___internal___contentDigest | |
parent___internal___description | |
parent___internal___fieldOwners | |
parent___internal___ignoreType | |
parent___internal___mediaType | |
parent___internal___owner | |
parent___internal___type | |
children | |
children___id | |
children___parent___id | |
children___parent___parent___id | |
children___parent___parent___children | |
children___parent___children | |
children___parent___children___id | |
children___parent___children___children | |
children___parent___internal___content | |
children___parent___internal___contentDigest | |
children___parent___internal___description | |
children___parent___internal___fieldOwners | |
children___parent___internal___ignoreType | |
children___parent___internal___mediaType | |
children___parent___internal___owner | |
children___parent___internal___type | |
children___children | |
children___children___id | |
children___children___parent___id | |
children___children___parent___children | |
children___children___children | |
children___children___children___id | |
children___children___children___children | |
children___children___internal___content | |
children___children___internal___contentDigest | |
children___children___internal___description | |
children___children___internal___fieldOwners | |
children___children___internal___ignoreType | |
children___children___internal___mediaType | |
children___children___internal___owner | |
children___children___internal___type | |
children___internal___content | |
children___internal___contentDigest | |
children___internal___description | |
children___internal___fieldOwners | |
children___internal___ignoreType | |
children___internal___mediaType | |
children___internal___owner | |
children___internal___type | |
internal___content | |
internal___contentDigest | |
internal___description | |
internal___fieldOwners | |
internal___ignoreType | |
internal___mediaType | |
internal___owner | |
internal___type | |
name | |
title | |
company | |
phone | |
github | |
image___id | |
image___parent___id | |
image___parent___parent___id | |
image___parent___parent___children | |
image___parent___children | |
image___parent___children___id | |
image___parent___children___children | |
image___parent___internal___content | |
image___parent___internal___contentDigest | |
image___parent___internal___description | |
image___parent___internal___fieldOwners | |
image___parent___internal___ignoreType | |
image___parent___internal___mediaType | |
image___parent___internal___owner | |
image___parent___internal___type | |
image___children | |
image___children___id | |
image___children___parent___id | |
image___children___parent___children | |
image___children___children | |
image___children___children___id | |
image___children___children___children | |
image___children___internal___content | |
image___children___internal___contentDigest | |
image___children___internal___description | |
image___children___internal___fieldOwners | |
image___children___internal___ignoreType | |
image___children___internal___mediaType | |
image___children___internal___owner | |
image___children___internal___type | |
image___internal___content | |
image___internal___contentDigest | |
image___internal___description | |
image___internal___fieldOwners | |
image___internal___ignoreType | |
image___internal___mediaType | |
image___internal___owner | |
image___internal___type | |
image___contentful_id | |
image___file___url | |
image___file___details___size | |
image___file___fileName | |
image___file___contentType | |
image___title | |
image___description | |
image___node_locale | |
image___fixed___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
image___fixed___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
image___fixed___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
image___fixed___width @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
image___fixed___height @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
image___fixed___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
image___fixed___srcSet @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
image___fixed___srcWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
image___fixed___srcSetWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
image___resolutions___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
image___resolutions___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
image___resolutions___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
image___resolutions___width @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
image___resolutions___height @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
image___resolutions___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
image___resolutions___srcSet @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
image___resolutions___srcWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
image___resolutions___srcSetWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
image___fluid___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
image___fluid___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
image___fluid___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
image___fluid___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
image___fluid___srcSet @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
image___fluid___srcWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
image___fluid___srcSetWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
image___fluid___sizes @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
image___sizes___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
image___sizes___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
image___sizes___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
image___sizes___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
image___sizes___srcSet @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
image___sizes___srcWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
image___sizes___srcSetWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
image___sizes___sizes @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
image___resize___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
image___resize___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
image___resize___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
image___resize___width @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
image___resize___height @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
image___resize___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost | |
blogpost___id | |
blogpost___parent___id | |
blogpost___parent___parent___id | |
blogpost___parent___parent___children | |
blogpost___parent___children | |
blogpost___parent___children___id | |
blogpost___parent___children___children | |
blogpost___parent___internal___content | |
blogpost___parent___internal___contentDigest | |
blogpost___parent___internal___description | |
blogpost___parent___internal___fieldOwners | |
blogpost___parent___internal___ignoreType | |
blogpost___parent___internal___mediaType | |
blogpost___parent___internal___owner | |
blogpost___parent___internal___type | |
blogpost___children | |
blogpost___children___id | |
blogpost___children___parent___id | |
blogpost___children___parent___children | |
blogpost___children___children | |
blogpost___children___children___id | |
blogpost___children___children___children | |
blogpost___children___internal___content | |
blogpost___children___internal___contentDigest | |
blogpost___children___internal___description | |
blogpost___children___internal___fieldOwners | |
blogpost___children___internal___ignoreType | |
blogpost___children___internal___mediaType | |
blogpost___children___internal___owner | |
blogpost___children___internal___type | |
blogpost___internal___content | |
blogpost___internal___contentDigest | |
blogpost___internal___description | |
blogpost___internal___fieldOwners | |
blogpost___internal___ignoreType | |
blogpost___internal___mediaType | |
blogpost___internal___owner | |
blogpost___internal___type | |
blogpost___title | |
blogpost___slug | |
blogpost___publishDate | |
blogpost___featuredImage___id | |
blogpost___featuredImage___parent___id | |
blogpost___featuredImage___parent___children | |
blogpost___featuredImage___children | |
blogpost___featuredImage___children___id | |
blogpost___featuredImage___children___children | |
blogpost___featuredImage___internal___content | |
blogpost___featuredImage___internal___contentDigest | |
blogpost___featuredImage___internal___description | |
blogpost___featuredImage___internal___fieldOwners | |
blogpost___featuredImage___internal___ignoreType | |
blogpost___featuredImage___internal___mediaType | |
blogpost___featuredImage___internal___owner | |
blogpost___featuredImage___internal___type | |
blogpost___featuredImage___contentful_id | |
blogpost___featuredImage___file___url | |
blogpost___featuredImage___file___fileName | |
blogpost___featuredImage___file___contentType | |
blogpost___featuredImage___title | |
blogpost___featuredImage___description | |
blogpost___featuredImage___node_locale | |
blogpost___featuredImage___fixed___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___fixed___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___fixed___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___fixed___width @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___fixed___height @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___fixed___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___fixed___srcSet @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___fixed___srcWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___fixed___srcSetWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___resolutions___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___resolutions___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___resolutions___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___resolutions___width @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___resolutions___height @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___resolutions___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___resolutions___srcSet @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___resolutions___srcWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___resolutions___srcSetWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___fluid___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___fluid___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___fluid___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___fluid___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___fluid___srcSet @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___fluid___srcWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___fluid___srcSetWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___fluid___sizes @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___sizes___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___sizes___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___sizes___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___sizes___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___sizes___srcSet @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___sizes___srcWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___sizes___srcSetWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___sizes___sizes @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___resize___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___resize___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___resize___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___resize___width @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___resize___height @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___featuredImage___resize___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
blogpost___categories | |
blogpost___categories___id | |
blogpost___categories___parent___id | |
blogpost___categories___parent___children | |
blogpost___categories___children | |
blogpost___categories___children___id | |
blogpost___categories___children___children | |
blogpost___categories___internal___content | |
blogpost___categories___internal___contentDigest | |
blogpost___categories___internal___description | |
blogpost___categories___internal___fieldOwners | |
blogpost___categories___internal___ignoreType | |
blogpost___categories___internal___mediaType | |
blogpost___categories___internal___owner | |
blogpost___categories___internal___type | |
blogpost___categories___title | |
blogpost___categories___slug | |
blogpost___categories___featuredImage___id | |
blogpost___categories___featuredImage___children | |
blogpost___categories___featuredImage___contentful_id | |
blogpost___categories___featuredImage___title | |
blogpost___categories___featuredImage___description | |
blogpost___categories___featuredImage___node_locale | |
blogpost___categories___blogpost | |
blogpost___categories___blogpost___id | |
blogpost___categories___blogpost___children | |
blogpost___categories___blogpost___title | |
blogpost___categories___blogpost___slug | |
blogpost___categories___blogpost___publishDate | |
blogpost___categories___blogpost___categories | |
blogpost___categories___blogpost___page | |
blogpost___categories___blogpost___spaceId | |
blogpost___categories___blogpost___contentful_id | |
blogpost___categories___blogpost___createdAt | |
blogpost___categories___blogpost___updatedAt | |
blogpost___categories___blogpost___node_locale | |
blogpost___categories___spaceId | |
blogpost___categories___contentful_id | |
blogpost___categories___createdAt | |
blogpost___categories___updatedAt | |
blogpost___categories___node_locale | |
blogpost___categories___menu | |
blogpost___categories___menu___id | |
blogpost___categories___menu___children | |
blogpost___categories___menu___name | |
blogpost___categories___menu___menuItems | |
blogpost___categories___menu___spaceId | |
blogpost___categories___menu___contentful_id | |
blogpost___categories___menu___createdAt | |
blogpost___categories___menu___updatedAt | |
blogpost___categories___menu___node_locale | |
blogpost___categories___product | |
blogpost___categories___product___id | |
blogpost___categories___product___children | |
blogpost___categories___product___title | |
blogpost___categories___product___slug | |
blogpost___categories___product___price | |
blogpost___categories___product___categories | |
blogpost___categories___product___spaceId | |
blogpost___categories___product___contentful_id | |
blogpost___categories___product___createdAt | |
blogpost___categories___product___updatedAt | |
blogpost___categories___product___node_locale | |
blogpost___categories___body___id | |
blogpost___categories___body___children | |
blogpost___categories___body___content | |
blogpost___categories___body___nodeType | |
blogpost___categories___body___body | |
blogpost___categories___body___json | |
blogpost___categories___childContentfulCategoryBodyRichTextNode___id | |
blogpost___categories___childContentfulCategoryBodyRichTextNode___children | |
blogpost___categories___childContentfulCategoryBodyRichTextNode___content | |
blogpost___categories___childContentfulCategoryBodyRichTextNode___nodeType | |
blogpost___categories___childContentfulCategoryBodyRichTextNode___body | |
blogpost___categories___childContentfulCategoryBodyRichTextNode___json | |
blogpost___page | |
blogpost___page___id | |
blogpost___page___parent___id | |
blogpost___page___parent___children | |
blogpost___page___children | |
blogpost___page___children___id | |
blogpost___page___children___children | |
blogpost___page___internal___content | |
blogpost___page___internal___contentDigest | |
blogpost___page___internal___description | |
blogpost___page___internal___fieldOwners | |
blogpost___page___internal___ignoreType | |
blogpost___page___internal___mediaType | |
blogpost___page___internal___owner | |
blogpost___page___internal___type | |
blogpost___page___title | |
blogpost___page___slug | |
blogpost___page___isHomePage | |
blogpost___page___featuredPosts | |
blogpost___page___featuredPosts___id | |
blogpost___page___featuredPosts___children | |
blogpost___page___featuredPosts___title | |
blogpost___page___featuredPosts___slug | |
blogpost___page___featuredPosts___publishDate | |
blogpost___page___featuredPosts___categories | |
blogpost___page___featuredPosts___page | |
blogpost___page___featuredPosts___spaceId | |
blogpost___page___featuredPosts___contentful_id | |
blogpost___page___featuredPosts___createdAt | |
blogpost___page___featuredPosts___updatedAt | |
blogpost___page___featuredPosts___node_locale | |
blogpost___page___spaceId | |
blogpost___page___contentful_id | |
blogpost___page___createdAt | |
blogpost___page___updatedAt | |
blogpost___page___node_locale | |
blogpost___page___body___id | |
blogpost___page___body___children | |
blogpost___page___body___content | |
blogpost___page___body___nodeType | |
blogpost___page___body___body | |
blogpost___page___body___json | |
blogpost___page___childContentfulPageBodyRichTextNode___id | |
blogpost___page___childContentfulPageBodyRichTextNode___children | |
blogpost___page___childContentfulPageBodyRichTextNode___content | |
blogpost___page___childContentfulPageBodyRichTextNode___nodeType | |
blogpost___page___childContentfulPageBodyRichTextNode___body | |
blogpost___page___childContentfulPageBodyRichTextNode___json | |
blogpost___body___id | |
blogpost___body___parent___id | |
blogpost___body___parent___children | |
blogpost___body___children | |
blogpost___body___children___id | |
blogpost___body___children___children | |
blogpost___body___internal___content | |
blogpost___body___internal___contentDigest | |
blogpost___body___internal___description | |
blogpost___body___internal___fieldOwners | |
blogpost___body___internal___ignoreType | |
blogpost___body___internal___mediaType | |
blogpost___body___internal___owner | |
blogpost___body___internal___type | |
blogpost___body___content | |
blogpost___body___content___content | |
blogpost___body___content___nodeType | |
blogpost___body___nodeType | |
blogpost___body___body | |
blogpost___body___json | |
blogpost___body___childContentfulRichText___id | |
blogpost___body___childContentfulRichText___children | |
blogpost___body___childContentfulRichText___html | |
blogpost___body___childContentfulRichText___timeToRead | |
blogpost___spaceId | |
blogpost___contentful_id | |
blogpost___createdAt | |
blogpost___updatedAt | |
blogpost___node_locale | |
blogpost___author___id | |
blogpost___author___parent___id | |
blogpost___author___parent___children | |
blogpost___author___children | |
blogpost___author___children___id | |
blogpost___author___children___children | |
blogpost___author___internal___content | |
blogpost___author___internal___contentDigest | |
blogpost___author___internal___description | |
blogpost___author___internal___fieldOwners | |
blogpost___author___internal___ignoreType | |
blogpost___author___internal___mediaType | |
blogpost___author___internal___owner | |
blogpost___author___internal___type | |
blogpost___author___name | |
blogpost___author___title | |
blogpost___author___company | |
blogpost___author___email | |
blogpost___author___phone | |
blogpost___author___facebook | |
blogpost___author___twitter | |
blogpost___author___github | |
blogpost___author___image___id | |
blogpost___author___image___children | |
blogpost___author___image___contentful_id | |
blogpost___author___image___title | |
blogpost___author___image___description | |
blogpost___author___image___node_locale | |
blogpost___author___blogpost | |
blogpost___author___blogpost___id | |
blogpost___author___blogpost___children | |
blogpost___author___blogpost___title | |
blogpost___author___blogpost___slug | |
blogpost___author___blogpost___publishDate | |
blogpost___author___blogpost___categories | |
blogpost___author___blogpost___page | |
blogpost___author___blogpost___spaceId | |
blogpost___author___blogpost___contentful_id | |
blogpost___author___blogpost___createdAt | |
blogpost___author___blogpost___updatedAt | |
blogpost___author___blogpost___node_locale | |
blogpost___author___shortBio___id | |
blogpost___author___shortBio___children | |
blogpost___author___shortBio___shortBio | |
blogpost___author___spaceId | |
blogpost___author___contentful_id | |
blogpost___author___createdAt | |
blogpost___author___updatedAt | |
blogpost___author___node_locale | |
blogpost___author___childContentfulPersonShortBioTextNode___id | |
blogpost___author___childContentfulPersonShortBioTextNode___children | |
blogpost___author___childContentfulPersonShortBioTextNode___shortBio | |
blogpost___childContentfulBlogPostBodyRichTextNode___id | |
blogpost___childContentfulBlogPostBodyRichTextNode___parent___id | |
blogpost___childContentfulBlogPostBodyRichTextNode___parent___children | |
blogpost___childContentfulBlogPostBodyRichTextNode___children | |
blogpost___childContentfulBlogPostBodyRichTextNode___children___id | |
blogpost___childContentfulBlogPostBodyRichTextNode___children___children | |
blogpost___childContentfulBlogPostBodyRichTextNode___internal___content | |
blogpost___childContentfulBlogPostBodyRichTextNode___internal___contentDigest | |
blogpost___childContentfulBlogPostBodyRichTextNode___internal___description | |
blogpost___childContentfulBlogPostBodyRichTextNode___internal___fieldOwners | |
blogpost___childContentfulBlogPostBodyRichTextNode___internal___ignoreType | |
blogpost___childContentfulBlogPostBodyRichTextNode___internal___mediaType | |
blogpost___childContentfulBlogPostBodyRichTextNode___internal___owner | |
blogpost___childContentfulBlogPostBodyRichTextNode___internal___type | |
blogpost___childContentfulBlogPostBodyRichTextNode___content | |
blogpost___childContentfulBlogPostBodyRichTextNode___content___content | |
blogpost___childContentfulBlogPostBodyRichTextNode___content___nodeType | |
blogpost___childContentfulBlogPostBodyRichTextNode___nodeType | |
blogpost___childContentfulBlogPostBodyRichTextNode___body | |
blogpost___childContentfulBlogPostBodyRichTextNode___json | |
blogpost___childContentfulBlogPostBodyRichTextNode___childContentfulRichText___id | |
blogpost___childContentfulBlogPostBodyRichTextNode___childContentfulRichText___children | |
blogpost___childContentfulBlogPostBodyRichTextNode___childContentfulRichText___html | |
blogpost___childContentfulBlogPostBodyRichTextNode___childContentfulRichText___timeToRead | |
shortBio___id | |
shortBio___parent___id | |
shortBio___parent___parent___id | |
shortBio___parent___parent___children | |
shortBio___parent___children | |
shortBio___parent___children___id | |
shortBio___parent___children___children | |
shortBio___parent___internal___content | |
shortBio___parent___internal___contentDigest | |
shortBio___parent___internal___description | |
shortBio___parent___internal___fieldOwners | |
shortBio___parent___internal___ignoreType | |
shortBio___parent___internal___mediaType | |
shortBio___parent___internal___owner | |
shortBio___parent___internal___type | |
shortBio___children | |
shortBio___children___id | |
shortBio___children___parent___id | |
shortBio___children___parent___children | |
shortBio___children___children | |
shortBio___children___children___id | |
shortBio___children___children___children | |
shortBio___children___internal___content | |
shortBio___children___internal___contentDigest | |
shortBio___children___internal___description | |
shortBio___children___internal___fieldOwners | |
shortBio___children___internal___ignoreType | |
shortBio___children___internal___mediaType | |
shortBio___children___internal___owner | |
shortBio___children___internal___type | |
shortBio___internal___content | |
shortBio___internal___contentDigest | |
shortBio___internal___description | |
shortBio___internal___fieldOwners | |
shortBio___internal___ignoreType | |
shortBio___internal___mediaType | |
shortBio___internal___owner | |
shortBio___internal___type | |
shortBio___shortBio | |
spaceId | |
contentful_id | |
createdAt | |
updatedAt | |
node_locale | |
childContentfulPersonShortBioTextNode___id | |
childContentfulPersonShortBioTextNode___parent___id | |
childContentfulPersonShortBioTextNode___parent___parent___id | |
childContentfulPersonShortBioTextNode___parent___parent___children | |
childContentfulPersonShortBioTextNode___parent___children | |
childContentfulPersonShortBioTextNode___parent___children___id | |
childContentfulPersonShortBioTextNode___parent___children___children | |
childContentfulPersonShortBioTextNode___parent___internal___content | |
childContentfulPersonShortBioTextNode___parent___internal___contentDigest | |
childContentfulPersonShortBioTextNode___parent___internal___description | |
childContentfulPersonShortBioTextNode___parent___internal___fieldOwners | |
childContentfulPersonShortBioTextNode___parent___internal___ignoreType | |
childContentfulPersonShortBioTextNode___parent___internal___mediaType | |
childContentfulPersonShortBioTextNode___parent___internal___owner | |
childContentfulPersonShortBioTextNode___parent___internal___type | |
childContentfulPersonShortBioTextNode___children | |
childContentfulPersonShortBioTextNode___children___id | |
childContentfulPersonShortBioTextNode___children___parent___id | |
childContentfulPersonShortBioTextNode___children___parent___children | |
childContentfulPersonShortBioTextNode___children___children | |
childContentfulPersonShortBioTextNode___children___children___id | |
childContentfulPersonShortBioTextNode___children___children___children | |
childContentfulPersonShortBioTextNode___children___internal___content | |
childContentfulPersonShortBioTextNode___children___internal___contentDigest | |
childContentfulPersonShortBioTextNode___children___internal___description | |
childContentfulPersonShortBioTextNode___children___internal___fieldOwners | |
childContentfulPersonShortBioTextNode___children___internal___ignoreType | |
childContentfulPersonShortBioTextNode___children___internal___mediaType | |
childContentfulPersonShortBioTextNode___children___internal___owner | |
childContentfulPersonShortBioTextNode___children___internal___type | |
childContentfulPersonShortBioTextNode___internal___content | |
childContentfulPersonShortBioTextNode___internal___contentDigest | |
childContentfulPersonShortBioTextNode___internal___description | |
childContentfulPersonShortBioTextNode___internal___fieldOwners | |
childContentfulPersonShortBioTextNode___internal___ignoreType | |
childContentfulPersonShortBioTextNode___internal___mediaType | |
childContentfulPersonShortBioTextNode___internal___owner | |
childContentfulPersonShortBioTextNode___internal___type | |
childContentfulPersonShortBioTextNode___shortBio | |
} | |
input ContentfulPersonFilterInput { | |
id: StringQueryOperatorInput | |
parent: NodeFilterInput | |
children: NodeFilterListInput | |
internal: InternalFilterInput | |
name: StringQueryOperatorInput | |
title: StringQueryOperatorInput | |
company: StringQueryOperatorInput | |
email: StringQueryOperatorInput | |
phone: StringQueryOperatorInput | |
facebook: StringQueryOperatorInput | |
twitter: StringQueryOperatorInput | |
github: StringQueryOperatorInput | |
image: ContentfulAssetFilterInput | |
blogpost: ContentfulBlogPostFilterListInput | |
shortBio: contentfulPersonShortBioTextNodeFilterInput | |
spaceId: StringQueryOperatorInput | |
contentful_id: StringQueryOperatorInput | |
createdAt: DateQueryOperatorInput | |
updatedAt: DateQueryOperatorInput | |
node_locale: StringQueryOperatorInput | |
childContentfulPersonShortBioTextNode: contentfulPersonShortBioTextNodeFilterInput | |
} | |
type ContentfulPersonGroupConnection { | |
totalCount: Int! | |
edges: [ContentfulPersonEdge!]! | |
nodes: [ContentfulPerson!]! | |
pageInfo: PageInfo! | |
field: String! | |
fieldValue: String | |
} | |
type contentfulPersonShortBioTextNode implements Node { | |
id: ID! | |
parent: Node | |
children: [Node!]! | |
internal: Internal! | |
shortBio: String | |
} | |
type contentfulPersonShortBioTextNodeConnection { | |
totalCount: Int! | |
edges: [contentfulPersonShortBioTextNodeEdge!]! | |
nodes: [contentfulPersonShortBioTextNode!]! | |
pageInfo: PageInfo! | |
distinct(field: contentfulPersonShortBioTextNodeFieldsEnum!): [String!]! | |
group(skip: Int, limit: Int, field: contentfulPersonShortBioTextNodeFieldsEnum!): [contentfulPersonShortBioTextNodeGroupConnection!]! | |
} | |
type contentfulPersonShortBioTextNodeEdge { | |
next: contentfulPersonShortBioTextNode | |
node: contentfulPersonShortBioTextNode! | |
previous: contentfulPersonShortBioTextNode | |
} | |
enum contentfulPersonShortBioTextNodeFieldsEnum { | |
id | |
parent___id | |
parent___parent___id | |
parent___parent___parent___id | |
parent___parent___parent___children | |
parent___parent___children | |
parent___parent___children___id | |
parent___parent___children___children | |
parent___parent___internal___content | |
parent___parent___internal___contentDigest | |
parent___parent___internal___description | |
parent___parent___internal___fieldOwners | |
parent___parent___internal___ignoreType | |
parent___parent___internal___mediaType | |
parent___parent___internal___owner | |
parent___parent___internal___type | |
parent___children | |
parent___children___id | |
parent___children___parent___id | |
parent___children___parent___children | |
parent___children___children | |
parent___children___children___id | |
parent___children___children___children | |
parent___children___internal___content | |
parent___children___internal___contentDigest | |
parent___children___internal___description | |
parent___children___internal___fieldOwners | |
parent___children___internal___ignoreType | |
parent___children___internal___mediaType | |
parent___children___internal___owner | |
parent___children___internal___type | |
parent___internal___content | |
parent___internal___contentDigest | |
parent___internal___description | |
parent___internal___fieldOwners | |
parent___internal___ignoreType | |
parent___internal___mediaType | |
parent___internal___owner | |
parent___internal___type | |
children | |
children___id | |
children___parent___id | |
children___parent___parent___id | |
children___parent___parent___children | |
children___parent___children | |
children___parent___children___id | |
children___parent___children___children | |
children___parent___internal___content | |
children___parent___internal___contentDigest | |
children___parent___internal___description | |
children___parent___internal___fieldOwners | |
children___parent___internal___ignoreType | |
children___parent___internal___mediaType | |
children___parent___internal___owner | |
children___parent___internal___type | |
children___children | |
children___children___id | |
children___children___parent___id | |
children___children___parent___children | |
children___children___children | |
children___children___children___id | |
children___children___children___children | |
children___children___internal___content | |
children___children___internal___contentDigest | |
children___children___internal___description | |
children___children___internal___fieldOwners | |
children___children___internal___ignoreType | |
children___children___internal___mediaType | |
children___children___internal___owner | |
children___children___internal___type | |
children___internal___content | |
children___internal___contentDigest | |
children___internal___description | |
children___internal___fieldOwners | |
children___internal___ignoreType | |
children___internal___mediaType | |
children___internal___owner | |
children___internal___type | |
internal___content | |
internal___contentDigest | |
internal___description | |
internal___fieldOwners | |
internal___ignoreType | |
internal___mediaType | |
internal___owner | |
internal___type | |
shortBio | |
} | |
input contentfulPersonShortBioTextNodeFilterInput { | |
id: StringQueryOperatorInput | |
parent: NodeFilterInput | |
children: NodeFilterListInput | |
internal: InternalFilterInput | |
shortBio: StringQueryOperatorInput | |
} | |
type contentfulPersonShortBioTextNodeGroupConnection { | |
totalCount: Int! | |
edges: [contentfulPersonShortBioTextNodeEdge!]! | |
nodes: [contentfulPersonShortBioTextNode!]! | |
pageInfo: PageInfo! | |
field: String! | |
fieldValue: String | |
} | |
input contentfulPersonShortBioTextNodeSortInput { | |
fields: [contentfulPersonShortBioTextNodeFieldsEnum] | |
order: [SortOrderEnum] = [ASC] | |
} | |
input ContentfulPersonSortInput { | |
fields: [ContentfulPersonFieldsEnum] | |
order: [SortOrderEnum] = [ASC] | |
} | |
type ContentfulProduct implements Node { | |
id: ID! | |
parent: Node | |
children: [Node!]! | |
internal: Internal! | |
title: String | |
slug: String | |
price: Float | |
featuredImage: ContentfulAsset | |
categories: [ContentfulCategory] | |
body: contentfulProductBodyRichTextNode | |
spaceId: String | |
contentful_id: String | |
createdAt( | |
""" | |
Format the date using Moment.js' date tokens, e.g. `date(formatString: "YYYY | |
MMMM DD")`. See https://momentjs.com/docs/#/displaying/format/ for | |
documentation for different tokens. | |
""" | |
formatString: String | |
"""Returns a string generated with Moment.js' `fromNow` function""" | |
fromNow: Boolean | |
""" | |
Returns the difference between this date and the current time. Defaults to | |
"milliseconds" but you can also pass in as the measurement "years", | |
"months", "weeks", "days", "hours", "minutes", and "seconds". | |
""" | |
difference: String | |
"""Configures the locale Moment.js will use to format the date.""" | |
locale: String | |
): Date | |
updatedAt( | |
""" | |
Format the date using Moment.js' date tokens, e.g. `date(formatString: "YYYY | |
MMMM DD")`. See https://momentjs.com/docs/#/displaying/format/ for | |
documentation for different tokens. | |
""" | |
formatString: String | |
"""Returns a string generated with Moment.js' `fromNow` function""" | |
fromNow: Boolean | |
""" | |
Returns the difference between this date and the current time. Defaults to | |
"milliseconds" but you can also pass in as the measurement "years", | |
"months", "weeks", "days", "hours", "minutes", and "seconds". | |
""" | |
difference: String | |
"""Configures the locale Moment.js will use to format the date.""" | |
locale: String | |
): Date | |
node_locale: String | |
childContentfulProductBodyRichTextNode: contentfulProductBodyRichTextNode | |
} | |
type contentfulProductBodyRichTextNode implements Node { | |
id: ID! | |
parent: Node | |
children: [Node!]! | |
internal: Internal! | |
content: [contentfulProductBodyRichTextNodeContent] | |
nodeType: String @deprecated(reason: "This field is deprecated, please use 'json' instead.") | |
body: String | |
json: JSON | |
childContentfulRichText: ContentfulRichText | |
} | |
type contentfulProductBodyRichTextNodeConnection { | |
totalCount: Int! | |
edges: [contentfulProductBodyRichTextNodeEdge!]! | |
nodes: [contentfulProductBodyRichTextNode!]! | |
pageInfo: PageInfo! | |
distinct(field: contentfulProductBodyRichTextNodeFieldsEnum!): [String!]! | |
group(skip: Int, limit: Int, field: contentfulProductBodyRichTextNodeFieldsEnum!): [contentfulProductBodyRichTextNodeGroupConnection!]! | |
} | |
type contentfulProductBodyRichTextNodeContent { | |
content: [contentfulProductBodyRichTextNodeContentContent] | |
nodeType: String | |
} | |
type contentfulProductBodyRichTextNodeContentContent { | |
value: String | |
nodeType: String | |
} | |
input contentfulProductBodyRichTextNodeContentContentFilterInput { | |
value: StringQueryOperatorInput | |
nodeType: StringQueryOperatorInput | |
} | |
input contentfulProductBodyRichTextNodeContentContentFilterListInput { | |
elemMatch: contentfulProductBodyRichTextNodeContentContentFilterInput | |
} | |
input contentfulProductBodyRichTextNodeContentFilterInput { | |
content: contentfulProductBodyRichTextNodeContentContentFilterListInput | |
nodeType: StringQueryOperatorInput | |
} | |
input contentfulProductBodyRichTextNodeContentFilterListInput { | |
elemMatch: contentfulProductBodyRichTextNodeContentFilterInput | |
} | |
type contentfulProductBodyRichTextNodeEdge { | |
next: contentfulProductBodyRichTextNode | |
node: contentfulProductBodyRichTextNode! | |
previous: contentfulProductBodyRichTextNode | |
} | |
enum contentfulProductBodyRichTextNodeFieldsEnum { | |
id | |
parent___id | |
parent___parent___id | |
parent___parent___parent___id | |
parent___parent___parent___children | |
parent___parent___children | |
parent___parent___children___id | |
parent___parent___children___children | |
parent___parent___internal___content | |
parent___parent___internal___contentDigest | |
parent___parent___internal___description | |
parent___parent___internal___fieldOwners | |
parent___parent___internal___ignoreType | |
parent___parent___internal___mediaType | |
parent___parent___internal___owner | |
parent___parent___internal___type | |
parent___children | |
parent___children___id | |
parent___children___parent___id | |
parent___children___parent___children | |
parent___children___children | |
parent___children___children___id | |
parent___children___children___children | |
parent___children___internal___content | |
parent___children___internal___contentDigest | |
parent___children___internal___description | |
parent___children___internal___fieldOwners | |
parent___children___internal___ignoreType | |
parent___children___internal___mediaType | |
parent___children___internal___owner | |
parent___children___internal___type | |
parent___internal___content | |
parent___internal___contentDigest | |
parent___internal___description | |
parent___internal___fieldOwners | |
parent___internal___ignoreType | |
parent___internal___mediaType | |
parent___internal___owner | |
parent___internal___type | |
children | |
children___id | |
children___parent___id | |
children___parent___parent___id | |
children___parent___parent___children | |
children___parent___children | |
children___parent___children___id | |
children___parent___children___children | |
children___parent___internal___content | |
children___parent___internal___contentDigest | |
children___parent___internal___description | |
children___parent___internal___fieldOwners | |
children___parent___internal___ignoreType | |
children___parent___internal___mediaType | |
children___parent___internal___owner | |
children___parent___internal___type | |
children___children | |
children___children___id | |
children___children___parent___id | |
children___children___parent___children | |
children___children___children | |
children___children___children___id | |
children___children___children___children | |
children___children___internal___content | |
children___children___internal___contentDigest | |
children___children___internal___description | |
children___children___internal___fieldOwners | |
children___children___internal___ignoreType | |
children___children___internal___mediaType | |
children___children___internal___owner | |
children___children___internal___type | |
children___internal___content | |
children___internal___contentDigest | |
children___internal___description | |
children___internal___fieldOwners | |
children___internal___ignoreType | |
children___internal___mediaType | |
children___internal___owner | |
children___internal___type | |
internal___content | |
internal___contentDigest | |
internal___description | |
internal___fieldOwners | |
internal___ignoreType | |
internal___mediaType | |
internal___owner | |
internal___type | |
content | |
content___content | |
content___content___value | |
content___content___nodeType | |
content___nodeType | |
nodeType | |
body | |
json | |
childContentfulRichText___id | |
childContentfulRichText___parent___id | |
childContentfulRichText___parent___parent___id | |
childContentfulRichText___parent___parent___children | |
childContentfulRichText___parent___children | |
childContentfulRichText___parent___children___id | |
childContentfulRichText___parent___children___children | |
childContentfulRichText___parent___internal___content | |
childContentfulRichText___parent___internal___contentDigest | |
childContentfulRichText___parent___internal___description | |
childContentfulRichText___parent___internal___fieldOwners | |
childContentfulRichText___parent___internal___ignoreType | |
childContentfulRichText___parent___internal___mediaType | |
childContentfulRichText___parent___internal___owner | |
childContentfulRichText___parent___internal___type | |
childContentfulRichText___children | |
childContentfulRichText___children___id | |
childContentfulRichText___children___parent___id | |
childContentfulRichText___children___parent___children | |
childContentfulRichText___children___children | |
childContentfulRichText___children___children___id | |
childContentfulRichText___children___children___children | |
childContentfulRichText___children___internal___content | |
childContentfulRichText___children___internal___contentDigest | |
childContentfulRichText___children___internal___description | |
childContentfulRichText___children___internal___fieldOwners | |
childContentfulRichText___children___internal___ignoreType | |
childContentfulRichText___children___internal___mediaType | |
childContentfulRichText___children___internal___owner | |
childContentfulRichText___children___internal___type | |
childContentfulRichText___internal___content | |
childContentfulRichText___internal___contentDigest | |
childContentfulRichText___internal___description | |
childContentfulRichText___internal___fieldOwners | |
childContentfulRichText___internal___ignoreType | |
childContentfulRichText___internal___mediaType | |
childContentfulRichText___internal___owner | |
childContentfulRichText___internal___type | |
childContentfulRichText___html | |
childContentfulRichText___timeToRead | |
} | |
input contentfulProductBodyRichTextNodeFilterInput { | |
id: StringQueryOperatorInput | |
parent: NodeFilterInput | |
children: NodeFilterListInput | |
internal: InternalFilterInput | |
content: contentfulProductBodyRichTextNodeContentFilterListInput | |
nodeType: StringQueryOperatorInput | |
body: StringQueryOperatorInput | |
json: JSONQueryOperatorInput | |
childContentfulRichText: ContentfulRichTextFilterInput | |
} | |
type contentfulProductBodyRichTextNodeGroupConnection { | |
totalCount: Int! | |
edges: [contentfulProductBodyRichTextNodeEdge!]! | |
nodes: [contentfulProductBodyRichTextNode!]! | |
pageInfo: PageInfo! | |
field: String! | |
fieldValue: String | |
} | |
input contentfulProductBodyRichTextNodeSortInput { | |
fields: [contentfulProductBodyRichTextNodeFieldsEnum] | |
order: [SortOrderEnum] = [ASC] | |
} | |
type ContentfulProductConnection { | |
totalCount: Int! | |
edges: [ContentfulProductEdge!]! | |
nodes: [ContentfulProduct!]! | |
pageInfo: PageInfo! | |
distinct(field: ContentfulProductFieldsEnum!): [String!]! | |
group(skip: Int, limit: Int, field: ContentfulProductFieldsEnum!): [ContentfulProductGroupConnection!]! | |
} | |
type ContentfulProductEdge { | |
next: ContentfulProduct | |
node: ContentfulProduct! | |
previous: ContentfulProduct | |
} | |
enum ContentfulProductFieldsEnum { | |
id | |
parent___id | |
parent___parent___id | |
parent___parent___parent___id | |
parent___parent___parent___children | |
parent___parent___children | |
parent___parent___children___id | |
parent___parent___children___children | |
parent___parent___internal___content | |
parent___parent___internal___contentDigest | |
parent___parent___internal___description | |
parent___parent___internal___fieldOwners | |
parent___parent___internal___ignoreType | |
parent___parent___internal___mediaType | |
parent___parent___internal___owner | |
parent___parent___internal___type | |
parent___children | |
parent___children___id | |
parent___children___parent___id | |
parent___children___parent___children | |
parent___children___children | |
parent___children___children___id | |
parent___children___children___children | |
parent___children___internal___content | |
parent___children___internal___contentDigest | |
parent___children___internal___description | |
parent___children___internal___fieldOwners | |
parent___children___internal___ignoreType | |
parent___children___internal___mediaType | |
parent___children___internal___owner | |
parent___children___internal___type | |
parent___internal___content | |
parent___internal___contentDigest | |
parent___internal___description | |
parent___internal___fieldOwners | |
parent___internal___ignoreType | |
parent___internal___mediaType | |
parent___internal___owner | |
parent___internal___type | |
children | |
children___id | |
children___parent___id | |
children___parent___parent___id | |
children___parent___parent___children | |
children___parent___children | |
children___parent___children___id | |
children___parent___children___children | |
children___parent___internal___content | |
children___parent___internal___contentDigest | |
children___parent___internal___description | |
children___parent___internal___fieldOwners | |
children___parent___internal___ignoreType | |
children___parent___internal___mediaType | |
children___parent___internal___owner | |
children___parent___internal___type | |
children___children | |
children___children___id | |
children___children___parent___id | |
children___children___parent___children | |
children___children___children | |
children___children___children___id | |
children___children___children___children | |
children___children___internal___content | |
children___children___internal___contentDigest | |
children___children___internal___description | |
children___children___internal___fieldOwners | |
children___children___internal___ignoreType | |
children___children___internal___mediaType | |
children___children___internal___owner | |
children___children___internal___type | |
children___internal___content | |
children___internal___contentDigest | |
children___internal___description | |
children___internal___fieldOwners | |
children___internal___ignoreType | |
children___internal___mediaType | |
children___internal___owner | |
children___internal___type | |
internal___content | |
internal___contentDigest | |
internal___description | |
internal___fieldOwners | |
internal___ignoreType | |
internal___mediaType | |
internal___owner | |
internal___type | |
title | |
slug | |
price | |
featuredImage___id | |
featuredImage___parent___id | |
featuredImage___parent___parent___id | |
featuredImage___parent___parent___children | |
featuredImage___parent___children | |
featuredImage___parent___children___id | |
featuredImage___parent___children___children | |
featuredImage___parent___internal___content | |
featuredImage___parent___internal___contentDigest | |
featuredImage___parent___internal___description | |
featuredImage___parent___internal___fieldOwners | |
featuredImage___parent___internal___ignoreType | |
featuredImage___parent___internal___mediaType | |
featuredImage___parent___internal___owner | |
featuredImage___parent___internal___type | |
featuredImage___children | |
featuredImage___children___id | |
featuredImage___children___parent___id | |
featuredImage___children___parent___children | |
featuredImage___children___children | |
featuredImage___children___children___id | |
featuredImage___children___children___children | |
featuredImage___children___internal___content | |
featuredImage___children___internal___contentDigest | |
featuredImage___children___internal___description | |
featuredImage___children___internal___fieldOwners | |
featuredImage___children___internal___ignoreType | |
featuredImage___children___internal___mediaType | |
featuredImage___children___internal___owner | |
featuredImage___children___internal___type | |
featuredImage___internal___content | |
featuredImage___internal___contentDigest | |
featuredImage___internal___description | |
featuredImage___internal___fieldOwners | |
featuredImage___internal___ignoreType | |
featuredImage___internal___mediaType | |
featuredImage___internal___owner | |
featuredImage___internal___type | |
featuredImage___contentful_id | |
featuredImage___file___url | |
featuredImage___file___details___size | |
featuredImage___file___fileName | |
featuredImage___file___contentType | |
featuredImage___title | |
featuredImage___description | |
featuredImage___node_locale | |
featuredImage___fixed___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___fixed___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___fixed___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___fixed___width @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___fixed___height @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___fixed___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___fixed___srcSet @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___fixed___srcWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___fixed___srcSetWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___resolutions___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___resolutions___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___resolutions___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___resolutions___width @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___resolutions___height @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___resolutions___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___resolutions___srcSet @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___resolutions___srcWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___resolutions___srcSetWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___fluid___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___fluid___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___fluid___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___fluid___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___fluid___srcSet @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___fluid___srcWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___fluid___srcSetWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___fluid___sizes @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___sizes___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___sizes___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___sizes___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___sizes___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___sizes___srcSet @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___sizes___srcWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___sizes___srcSetWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___sizes___sizes @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___resize___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___resize___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___resize___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___resize___width @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___resize___height @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
featuredImage___resize___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories | |
categories___id | |
categories___parent___id | |
categories___parent___parent___id | |
categories___parent___parent___children | |
categories___parent___children | |
categories___parent___children___id | |
categories___parent___children___children | |
categories___parent___internal___content | |
categories___parent___internal___contentDigest | |
categories___parent___internal___description | |
categories___parent___internal___fieldOwners | |
categories___parent___internal___ignoreType | |
categories___parent___internal___mediaType | |
categories___parent___internal___owner | |
categories___parent___internal___type | |
categories___children | |
categories___children___id | |
categories___children___parent___id | |
categories___children___parent___children | |
categories___children___children | |
categories___children___children___id | |
categories___children___children___children | |
categories___children___internal___content | |
categories___children___internal___contentDigest | |
categories___children___internal___description | |
categories___children___internal___fieldOwners | |
categories___children___internal___ignoreType | |
categories___children___internal___mediaType | |
categories___children___internal___owner | |
categories___children___internal___type | |
categories___internal___content | |
categories___internal___contentDigest | |
categories___internal___description | |
categories___internal___fieldOwners | |
categories___internal___ignoreType | |
categories___internal___mediaType | |
categories___internal___owner | |
categories___internal___type | |
categories___title | |
categories___slug | |
categories___featuredImage___id | |
categories___featuredImage___parent___id | |
categories___featuredImage___parent___children | |
categories___featuredImage___children | |
categories___featuredImage___children___id | |
categories___featuredImage___children___children | |
categories___featuredImage___internal___content | |
categories___featuredImage___internal___contentDigest | |
categories___featuredImage___internal___description | |
categories___featuredImage___internal___fieldOwners | |
categories___featuredImage___internal___ignoreType | |
categories___featuredImage___internal___mediaType | |
categories___featuredImage___internal___owner | |
categories___featuredImage___internal___type | |
categories___featuredImage___contentful_id | |
categories___featuredImage___file___url | |
categories___featuredImage___file___fileName | |
categories___featuredImage___file___contentType | |
categories___featuredImage___title | |
categories___featuredImage___description | |
categories___featuredImage___node_locale | |
categories___featuredImage___fixed___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___fixed___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___fixed___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___fixed___width @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___fixed___height @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___fixed___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___fixed___srcSet @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___fixed___srcWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___fixed___srcSetWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___resolutions___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___resolutions___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___resolutions___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___resolutions___width @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___resolutions___height @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___resolutions___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___resolutions___srcSet @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___resolutions___srcWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___resolutions___srcSetWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___fluid___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___fluid___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___fluid___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___fluid___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___fluid___srcSet @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___fluid___srcWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___fluid___srcSetWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___fluid___sizes @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___sizes___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___sizes___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___sizes___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___sizes___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___sizes___srcSet @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___sizes___srcWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___sizes___srcSetWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___sizes___sizes @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___resize___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___resize___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___resize___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___resize___width @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___resize___height @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___featuredImage___resize___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
categories___blogpost | |
categories___blogpost___id | |
categories___blogpost___parent___id | |
categories___blogpost___parent___children | |
categories___blogpost___children | |
categories___blogpost___children___id | |
categories___blogpost___children___children | |
categories___blogpost___internal___content | |
categories___blogpost___internal___contentDigest | |
categories___blogpost___internal___description | |
categories___blogpost___internal___fieldOwners | |
categories___blogpost___internal___ignoreType | |
categories___blogpost___internal___mediaType | |
categories___blogpost___internal___owner | |
categories___blogpost___internal___type | |
categories___blogpost___title | |
categories___blogpost___slug | |
categories___blogpost___publishDate | |
categories___blogpost___featuredImage___id | |
categories___blogpost___featuredImage___children | |
categories___blogpost___featuredImage___contentful_id | |
categories___blogpost___featuredImage___title | |
categories___blogpost___featuredImage___description | |
categories___blogpost___featuredImage___node_locale | |
categories___blogpost___categories | |
categories___blogpost___categories___id | |
categories___blogpost___categories___children | |
categories___blogpost___categories___title | |
categories___blogpost___categories___slug | |
categories___blogpost___categories___blogpost | |
categories___blogpost___categories___spaceId | |
categories___blogpost___categories___contentful_id | |
categories___blogpost___categories___createdAt | |
categories___blogpost___categories___updatedAt | |
categories___blogpost___categories___node_locale | |
categories___blogpost___categories___menu | |
categories___blogpost___categories___product | |
categories___blogpost___page | |
categories___blogpost___page___id | |
categories___blogpost___page___children | |
categories___blogpost___page___title | |
categories___blogpost___page___slug | |
categories___blogpost___page___isHomePage | |
categories___blogpost___page___featuredPosts | |
categories___blogpost___page___spaceId | |
categories___blogpost___page___contentful_id | |
categories___blogpost___page___createdAt | |
categories___blogpost___page___updatedAt | |
categories___blogpost___page___node_locale | |
categories___blogpost___body___id | |
categories___blogpost___body___children | |
categories___blogpost___body___content | |
categories___blogpost___body___nodeType | |
categories___blogpost___body___body | |
categories___blogpost___body___json | |
categories___blogpost___spaceId | |
categories___blogpost___contentful_id | |
categories___blogpost___createdAt | |
categories___blogpost___updatedAt | |
categories___blogpost___node_locale | |
categories___blogpost___author___id | |
categories___blogpost___author___children | |
categories___blogpost___author___name | |
categories___blogpost___author___title | |
categories___blogpost___author___company | |
categories___blogpost___author___email | |
categories___blogpost___author___phone | |
categories___blogpost___author___facebook | |
categories___blogpost___author___twitter | |
categories___blogpost___author___github | |
categories___blogpost___author___blogpost | |
categories___blogpost___author___spaceId | |
categories___blogpost___author___contentful_id | |
categories___blogpost___author___createdAt | |
categories___blogpost___author___updatedAt | |
categories___blogpost___author___node_locale | |
categories___blogpost___childContentfulBlogPostBodyRichTextNode___id | |
categories___blogpost___childContentfulBlogPostBodyRichTextNode___children | |
categories___blogpost___childContentfulBlogPostBodyRichTextNode___content | |
categories___blogpost___childContentfulBlogPostBodyRichTextNode___nodeType | |
categories___blogpost___childContentfulBlogPostBodyRichTextNode___body | |
categories___blogpost___childContentfulBlogPostBodyRichTextNode___json | |
categories___spaceId | |
categories___contentful_id | |
categories___createdAt | |
categories___updatedAt | |
categories___node_locale | |
categories___menu | |
categories___menu___id | |
categories___menu___parent___id | |
categories___menu___parent___children | |
categories___menu___children | |
categories___menu___children___id | |
categories___menu___children___children | |
categories___menu___internal___content | |
categories___menu___internal___contentDigest | |
categories___menu___internal___description | |
categories___menu___internal___fieldOwners | |
categories___menu___internal___ignoreType | |
categories___menu___internal___mediaType | |
categories___menu___internal___owner | |
categories___menu___internal___type | |
categories___menu___name | |
categories___menu___menuItems | |
categories___menu___menuItems___id | |
categories___menu___menuItems___children | |
categories___menu___menuItems___title | |
categories___menu___menuItems___slug | |
categories___menu___menuItems___blogpost | |
categories___menu___menuItems___spaceId | |
categories___menu___menuItems___contentful_id | |
categories___menu___menuItems___createdAt | |
categories___menu___menuItems___updatedAt | |
categories___menu___menuItems___node_locale | |
categories___menu___menuItems___menu | |
categories___menu___menuItems___product | |
categories___menu___spaceId | |
categories___menu___contentful_id | |
categories___menu___createdAt | |
categories___menu___updatedAt | |
categories___menu___node_locale | |
categories___product | |
categories___product___id | |
categories___product___parent___id | |
categories___product___parent___children | |
categories___product___children | |
categories___product___children___id | |
categories___product___children___children | |
categories___product___internal___content | |
categories___product___internal___contentDigest | |
categories___product___internal___description | |
categories___product___internal___fieldOwners | |
categories___product___internal___ignoreType | |
categories___product___internal___mediaType | |
categories___product___internal___owner | |
categories___product___internal___type | |
categories___product___title | |
categories___product___slug | |
categories___product___price | |
categories___product___featuredImage___id | |
categories___product___featuredImage___children | |
categories___product___featuredImage___contentful_id | |
categories___product___featuredImage___title | |
categories___product___featuredImage___description | |
categories___product___featuredImage___node_locale | |
categories___product___categories | |
categories___product___categories___id | |
categories___product___categories___children | |
categories___product___categories___title | |
categories___product___categories___slug | |
categories___product___categories___blogpost | |
categories___product___categories___spaceId | |
categories___product___categories___contentful_id | |
categories___product___categories___createdAt | |
categories___product___categories___updatedAt | |
categories___product___categories___node_locale | |
categories___product___categories___menu | |
categories___product___categories___product | |
categories___product___body___id | |
categories___product___body___children | |
categories___product___body___content | |
categories___product___body___nodeType | |
categories___product___body___body | |
categories___product___body___json | |
categories___product___spaceId | |
categories___product___contentful_id | |
categories___product___createdAt | |
categories___product___updatedAt | |
categories___product___node_locale | |
categories___product___childContentfulProductBodyRichTextNode___id | |
categories___product___childContentfulProductBodyRichTextNode___children | |
categories___product___childContentfulProductBodyRichTextNode___content | |
categories___product___childContentfulProductBodyRichTextNode___nodeType | |
categories___product___childContentfulProductBodyRichTextNode___body | |
categories___product___childContentfulProductBodyRichTextNode___json | |
categories___body___id | |
categories___body___parent___id | |
categories___body___parent___children | |
categories___body___children | |
categories___body___children___id | |
categories___body___children___children | |
categories___body___internal___content | |
categories___body___internal___contentDigest | |
categories___body___internal___description | |
categories___body___internal___fieldOwners | |
categories___body___internal___ignoreType | |
categories___body___internal___mediaType | |
categories___body___internal___owner | |
categories___body___internal___type | |
categories___body___content | |
categories___body___content___content | |
categories___body___content___nodeType | |
categories___body___nodeType | |
categories___body___body | |
categories___body___json | |
categories___body___childContentfulRichText___id | |
categories___body___childContentfulRichText___children | |
categories___body___childContentfulRichText___html | |
categories___body___childContentfulRichText___timeToRead | |
categories___childContentfulCategoryBodyRichTextNode___id | |
categories___childContentfulCategoryBodyRichTextNode___parent___id | |
categories___childContentfulCategoryBodyRichTextNode___parent___children | |
categories___childContentfulCategoryBodyRichTextNode___children | |
categories___childContentfulCategoryBodyRichTextNode___children___id | |
categories___childContentfulCategoryBodyRichTextNode___children___children | |
categories___childContentfulCategoryBodyRichTextNode___internal___content | |
categories___childContentfulCategoryBodyRichTextNode___internal___contentDigest | |
categories___childContentfulCategoryBodyRichTextNode___internal___description | |
categories___childContentfulCategoryBodyRichTextNode___internal___fieldOwners | |
categories___childContentfulCategoryBodyRichTextNode___internal___ignoreType | |
categories___childContentfulCategoryBodyRichTextNode___internal___mediaType | |
categories___childContentfulCategoryBodyRichTextNode___internal___owner | |
categories___childContentfulCategoryBodyRichTextNode___internal___type | |
categories___childContentfulCategoryBodyRichTextNode___content | |
categories___childContentfulCategoryBodyRichTextNode___content___content | |
categories___childContentfulCategoryBodyRichTextNode___content___nodeType | |
categories___childContentfulCategoryBodyRichTextNode___nodeType | |
categories___childContentfulCategoryBodyRichTextNode___body | |
categories___childContentfulCategoryBodyRichTextNode___json | |
categories___childContentfulCategoryBodyRichTextNode___childContentfulRichText___id | |
categories___childContentfulCategoryBodyRichTextNode___childContentfulRichText___children | |
categories___childContentfulCategoryBodyRichTextNode___childContentfulRichText___html | |
categories___childContentfulCategoryBodyRichTextNode___childContentfulRichText___timeToRead | |
body___id | |
body___parent___id | |
body___parent___parent___id | |
body___parent___parent___children | |
body___parent___children | |
body___parent___children___id | |
body___parent___children___children | |
body___parent___internal___content | |
body___parent___internal___contentDigest | |
body___parent___internal___description | |
body___parent___internal___fieldOwners | |
body___parent___internal___ignoreType | |
body___parent___internal___mediaType | |
body___parent___internal___owner | |
body___parent___internal___type | |
body___children | |
body___children___id | |
body___children___parent___id | |
body___children___parent___children | |
body___children___children | |
body___children___children___id | |
body___children___children___children | |
body___children___internal___content | |
body___children___internal___contentDigest | |
body___children___internal___description | |
body___children___internal___fieldOwners | |
body___children___internal___ignoreType | |
body___children___internal___mediaType | |
body___children___internal___owner | |
body___children___internal___type | |
body___internal___content | |
body___internal___contentDigest | |
body___internal___description | |
body___internal___fieldOwners | |
body___internal___ignoreType | |
body___internal___mediaType | |
body___internal___owner | |
body___internal___type | |
body___content | |
body___content___content | |
body___content___content___value | |
body___content___content___nodeType | |
body___content___nodeType | |
body___nodeType | |
body___body | |
body___json | |
body___childContentfulRichText___id | |
body___childContentfulRichText___parent___id | |
body___childContentfulRichText___parent___children | |
body___childContentfulRichText___children | |
body___childContentfulRichText___children___id | |
body___childContentfulRichText___children___children | |
body___childContentfulRichText___internal___content | |
body___childContentfulRichText___internal___contentDigest | |
body___childContentfulRichText___internal___description | |
body___childContentfulRichText___internal___fieldOwners | |
body___childContentfulRichText___internal___ignoreType | |
body___childContentfulRichText___internal___mediaType | |
body___childContentfulRichText___internal___owner | |
body___childContentfulRichText___internal___type | |
body___childContentfulRichText___html | |
body___childContentfulRichText___timeToRead | |
spaceId | |
contentful_id | |
createdAt | |
updatedAt | |
node_locale | |
childContentfulProductBodyRichTextNode___id | |
childContentfulProductBodyRichTextNode___parent___id | |
childContentfulProductBodyRichTextNode___parent___parent___id | |
childContentfulProductBodyRichTextNode___parent___parent___children | |
childContentfulProductBodyRichTextNode___parent___children | |
childContentfulProductBodyRichTextNode___parent___children___id | |
childContentfulProductBodyRichTextNode___parent___children___children | |
childContentfulProductBodyRichTextNode___parent___internal___content | |
childContentfulProductBodyRichTextNode___parent___internal___contentDigest | |
childContentfulProductBodyRichTextNode___parent___internal___description | |
childContentfulProductBodyRichTextNode___parent___internal___fieldOwners | |
childContentfulProductBodyRichTextNode___parent___internal___ignoreType | |
childContentfulProductBodyRichTextNode___parent___internal___mediaType | |
childContentfulProductBodyRichTextNode___parent___internal___owner | |
childContentfulProductBodyRichTextNode___parent___internal___type | |
childContentfulProductBodyRichTextNode___children | |
childContentfulProductBodyRichTextNode___children___id | |
childContentfulProductBodyRichTextNode___children___parent___id | |
childContentfulProductBodyRichTextNode___children___parent___children | |
childContentfulProductBodyRichTextNode___children___children | |
childContentfulProductBodyRichTextNode___children___children___id | |
childContentfulProductBodyRichTextNode___children___children___children | |
childContentfulProductBodyRichTextNode___children___internal___content | |
childContentfulProductBodyRichTextNode___children___internal___contentDigest | |
childContentfulProductBodyRichTextNode___children___internal___description | |
childContentfulProductBodyRichTextNode___children___internal___fieldOwners | |
childContentfulProductBodyRichTextNode___children___internal___ignoreType | |
childContentfulProductBodyRichTextNode___children___internal___mediaType | |
childContentfulProductBodyRichTextNode___children___internal___owner | |
childContentfulProductBodyRichTextNode___children___internal___type | |
childContentfulProductBodyRichTextNode___internal___content | |
childContentfulProductBodyRichTextNode___internal___contentDigest | |
childContentfulProductBodyRichTextNode___internal___description | |
childContentfulProductBodyRichTextNode___internal___fieldOwners | |
childContentfulProductBodyRichTextNode___internal___ignoreType | |
childContentfulProductBodyRichTextNode___internal___mediaType | |
childContentfulProductBodyRichTextNode___internal___owner | |
childContentfulProductBodyRichTextNode___internal___type | |
childContentfulProductBodyRichTextNode___content | |
childContentfulProductBodyRichTextNode___content___content | |
childContentfulProductBodyRichTextNode___content___content___value | |
childContentfulProductBodyRichTextNode___content___content___nodeType | |
childContentfulProductBodyRichTextNode___content___nodeType | |
childContentfulProductBodyRichTextNode___nodeType | |
childContentfulProductBodyRichTextNode___body | |
childContentfulProductBodyRichTextNode___json | |
childContentfulProductBodyRichTextNode___childContentfulRichText___id | |
childContentfulProductBodyRichTextNode___childContentfulRichText___parent___id | |
childContentfulProductBodyRichTextNode___childContentfulRichText___parent___children | |
childContentfulProductBodyRichTextNode___childContentfulRichText___children | |
childContentfulProductBodyRichTextNode___childContentfulRichText___children___id | |
childContentfulProductBodyRichTextNode___childContentfulRichText___children___children | |
childContentfulProductBodyRichTextNode___childContentfulRichText___internal___content | |
childContentfulProductBodyRichTextNode___childContentfulRichText___internal___contentDigest | |
childContentfulProductBodyRichTextNode___childContentfulRichText___internal___description | |
childContentfulProductBodyRichTextNode___childContentfulRichText___internal___fieldOwners | |
childContentfulProductBodyRichTextNode___childContentfulRichText___internal___ignoreType | |
childContentfulProductBodyRichTextNode___childContentfulRichText___internal___mediaType | |
childContentfulProductBodyRichTextNode___childContentfulRichText___internal___owner | |
childContentfulProductBodyRichTextNode___childContentfulRichText___internal___type | |
childContentfulProductBodyRichTextNode___childContentfulRichText___html | |
childContentfulProductBodyRichTextNode___childContentfulRichText___timeToRead | |
} | |
input ContentfulProductFilterInput { | |
id: StringQueryOperatorInput | |
parent: NodeFilterInput | |
children: NodeFilterListInput | |
internal: InternalFilterInput | |
title: StringQueryOperatorInput | |
slug: StringQueryOperatorInput | |
price: FloatQueryOperatorInput | |
featuredImage: ContentfulAssetFilterInput | |
categories: ContentfulCategoryFilterListInput | |
body: contentfulProductBodyRichTextNodeFilterInput | |
spaceId: StringQueryOperatorInput | |
contentful_id: StringQueryOperatorInput | |
createdAt: DateQueryOperatorInput | |
updatedAt: DateQueryOperatorInput | |
node_locale: StringQueryOperatorInput | |
childContentfulProductBodyRichTextNode: contentfulProductBodyRichTextNodeFilterInput | |
} | |
input ContentfulProductFilterListInput { | |
elemMatch: ContentfulProductFilterInput | |
} | |
type ContentfulProductGroupConnection { | |
totalCount: Int! | |
edges: [ContentfulProductEdge!]! | |
nodes: [ContentfulProduct!]! | |
pageInfo: PageInfo! | |
field: String! | |
fieldValue: String | |
} | |
input ContentfulProductSortInput { | |
fields: [ContentfulProductFieldsEnum] | |
order: [SortOrderEnum] = [ASC] | |
} | |
type ContentfulResize { | |
base64: String | |
tracedSVG: String | |
src: String | |
width: Int | |
height: Int | |
aspectRatio: Float | |
} | |
input ContentfulResizeFilterInput { | |
base64: StringQueryOperatorInput | |
tracedSVG: StringQueryOperatorInput | |
src: StringQueryOperatorInput | |
width: IntQueryOperatorInput | |
height: IntQueryOperatorInput | |
aspectRatio: FloatQueryOperatorInput | |
} | |
type ContentfulResolutions { | |
base64: String | |
tracedSVG: String | |
aspectRatio: Float | |
width: Float | |
height: Float | |
src: String | |
srcSet: String | |
srcWebp: String | |
srcSetWebp: String | |
} | |
input ContentfulResolutionsFilterInput { | |
base64: StringQueryOperatorInput | |
tracedSVG: StringQueryOperatorInput | |
aspectRatio: FloatQueryOperatorInput | |
width: FloatQueryOperatorInput | |
height: FloatQueryOperatorInput | |
src: StringQueryOperatorInput | |
srcSet: StringQueryOperatorInput | |
srcWebp: StringQueryOperatorInput | |
srcSetWebp: StringQueryOperatorInput | |
} | |
type ContentfulRichText implements Node { | |
id: ID! | |
parent: Node | |
children: [Node!]! | |
internal: Internal! | |
html: String | |
timeToRead: Int | |
} | |
type ContentfulRichTextConnection { | |
totalCount: Int! | |
edges: [ContentfulRichTextEdge!]! | |
nodes: [ContentfulRichText!]! | |
pageInfo: PageInfo! | |
distinct(field: ContentfulRichTextFieldsEnum!): [String!]! | |
group(skip: Int, limit: Int, field: ContentfulRichTextFieldsEnum!): [ContentfulRichTextGroupConnection!]! | |
} | |
type ContentfulRichTextEdge { | |
next: ContentfulRichText | |
node: ContentfulRichText! | |
previous: ContentfulRichText | |
} | |
enum ContentfulRichTextFieldsEnum { | |
id | |
parent___id | |
parent___parent___id | |
parent___parent___parent___id | |
parent___parent___parent___children | |
parent___parent___children | |
parent___parent___children___id | |
parent___parent___children___children | |
parent___parent___internal___content | |
parent___parent___internal___contentDigest | |
parent___parent___internal___description | |
parent___parent___internal___fieldOwners | |
parent___parent___internal___ignoreType | |
parent___parent___internal___mediaType | |
parent___parent___internal___owner | |
parent___parent___internal___type | |
parent___children | |
parent___children___id | |
parent___children___parent___id | |
parent___children___parent___children | |
parent___children___children | |
parent___children___children___id | |
parent___children___children___children | |
parent___children___internal___content | |
parent___children___internal___contentDigest | |
parent___children___internal___description | |
parent___children___internal___fieldOwners | |
parent___children___internal___ignoreType | |
parent___children___internal___mediaType | |
parent___children___internal___owner | |
parent___children___internal___type | |
parent___internal___content | |
parent___internal___contentDigest | |
parent___internal___description | |
parent___internal___fieldOwners | |
parent___internal___ignoreType | |
parent___internal___mediaType | |
parent___internal___owner | |
parent___internal___type | |
children | |
children___id | |
children___parent___id | |
children___parent___parent___id | |
children___parent___parent___children | |
children___parent___children | |
children___parent___children___id | |
children___parent___children___children | |
children___parent___internal___content | |
children___parent___internal___contentDigest | |
children___parent___internal___description | |
children___parent___internal___fieldOwners | |
children___parent___internal___ignoreType | |
children___parent___internal___mediaType | |
children___parent___internal___owner | |
children___parent___internal___type | |
children___children | |
children___children___id | |
children___children___parent___id | |
children___children___parent___children | |
children___children___children | |
children___children___children___id | |
children___children___children___children | |
children___children___internal___content | |
children___children___internal___contentDigest | |
children___children___internal___description | |
children___children___internal___fieldOwners | |
children___children___internal___ignoreType | |
children___children___internal___mediaType | |
children___children___internal___owner | |
children___children___internal___type | |
children___internal___content | |
children___internal___contentDigest | |
children___internal___description | |
children___internal___fieldOwners | |
children___internal___ignoreType | |
children___internal___mediaType | |
children___internal___owner | |
children___internal___type | |
internal___content | |
internal___contentDigest | |
internal___description | |
internal___fieldOwners | |
internal___ignoreType | |
internal___mediaType | |
internal___owner | |
internal___type | |
html | |
timeToRead | |
} | |
input ContentfulRichTextFilterInput { | |
id: StringQueryOperatorInput | |
parent: NodeFilterInput | |
children: NodeFilterListInput | |
internal: InternalFilterInput | |
html: StringQueryOperatorInput | |
timeToRead: IntQueryOperatorInput | |
} | |
type ContentfulRichTextGroupConnection { | |
totalCount: Int! | |
edges: [ContentfulRichTextEdge!]! | |
nodes: [ContentfulRichText!]! | |
pageInfo: PageInfo! | |
field: String! | |
fieldValue: String | |
} | |
input ContentfulRichTextSortInput { | |
fields: [ContentfulRichTextFieldsEnum] | |
order: [SortOrderEnum] = [ASC] | |
} | |
type ContentfulSizes { | |
base64: String | |
tracedSVG: String | |
aspectRatio: Float | |
src: String | |
srcSet: String | |
srcWebp: String | |
srcSetWebp: String | |
sizes: String | |
} | |
input ContentfulSizesFilterInput { | |
base64: StringQueryOperatorInput | |
tracedSVG: StringQueryOperatorInput | |
aspectRatio: FloatQueryOperatorInput | |
src: StringQueryOperatorInput | |
srcSet: StringQueryOperatorInput | |
srcWebp: StringQueryOperatorInput | |
srcSetWebp: StringQueryOperatorInput | |
sizes: StringQueryOperatorInput | |
} | |
""" | |
A date string, such as 2007-12-03, compliant with the ISO 8601 standard for | |
representation of dates and times using the Gregorian calendar. | |
""" | |
scalar Date | |
input DateQueryOperatorInput { | |
eq: Date | |
ne: Date | |
gt: Date | |
gte: Date | |
lt: Date | |
lte: Date | |
in: [Date] | |
nin: [Date] | |
} | |
input DuotoneGradient { | |
highlight: String! | |
shadow: String! | |
opacity: Int | |
} | |
input FloatQueryOperatorInput { | |
eq: Float | |
ne: Float | |
gt: Float | |
gte: Float | |
lt: Float | |
lte: Float | |
in: [Float] | |
nin: [Float] | |
} | |
enum ImageCropFocus { | |
CENTER | |
NORTH | |
NORTHEAST | |
EAST | |
SOUTHEAST | |
SOUTH | |
SOUTHWEST | |
WEST | |
NORTHWEST | |
ENTROPY | |
ATTENTION | |
} | |
enum ImageFit { | |
COVER | |
CONTAIN | |
FILL | |
} | |
enum ImageFormat { | |
NO_CHANGE | |
JPG | |
PNG | |
WEBP | |
} | |
enum ImageResizingBehavior { | |
NO_CHANGE | |
""" | |
Same as the default resizing, but adds padding so that the generated image has the specified dimensions. | |
""" | |
PAD | |
"""Crop a part of the original image to match the specified size.""" | |
CROP | |
""" | |
Crop the image to the specified dimensions, if the original image is smaller | |
than these dimensions, then the image will be upscaled. | |
""" | |
FILL | |
""" | |
When used in association with the f parameter below, creates a thumbnail from the image based on a focus area. | |
""" | |
THUMB | |
"""Scale the image regardless of the original aspect ratio.""" | |
SCALE | |
} | |
type ImageSharp implements Node { | |
id: ID! | |
fixed(width: Int, height: Int, base64Width: Int, jpegProgressive: Boolean = true, pngCompressionSpeed: Int = 4, grayscale: Boolean = false, duotone: DuotoneGradient, traceSVG: Potrace, quality: Int, toFormat: ImageFormat = NO_CHANGE, toFormatBase64: ImageFormat = NO_CHANGE, cropFocus: ImageCropFocus = ATTENTION, fit: ImageFit = COVER, background: String = "rgba(0,0,0,1)", rotate: Int = 0, trim: Float = 0): ImageSharpFixed | |
resolutions(width: Int, height: Int, base64Width: Int, jpegProgressive: Boolean = true, pngCompressionSpeed: Int = 4, grayscale: Boolean = false, duotone: DuotoneGradient, traceSVG: Potrace, quality: Int, toFormat: ImageFormat = NO_CHANGE, toFormatBase64: ImageFormat = NO_CHANGE, cropFocus: ImageCropFocus = ATTENTION, fit: ImageFit = COVER, background: String = "rgba(0,0,0,1)", rotate: Int = 0, trim: Float = 0): ImageSharpResolutions @deprecated(reason: "Resolutions was deprecated in Gatsby v2. It's been renamed to \"fixed\" https://example.com/write-docs-and-fix-this-example-link") | |
fluid( | |
maxWidth: Int | |
maxHeight: Int | |
base64Width: Int | |
grayscale: Boolean = false | |
jpegProgressive: Boolean = true | |
pngCompressionSpeed: Int = 4 | |
duotone: DuotoneGradient | |
traceSVG: Potrace | |
quality: Int | |
toFormat: ImageFormat = NO_CHANGE | |
toFormatBase64: ImageFormat = NO_CHANGE | |
cropFocus: ImageCropFocus = ATTENTION | |
fit: ImageFit = COVER | |
background: String = "rgba(0,0,0,1)" | |
rotate: Int = 0 | |
trim: Float = 0 | |
sizes: String = "" | |
""" | |
A list of image widths to be generated. Example: [ 200, 340, 520, 890 ] | |
""" | |
srcSetBreakpoints: [Int] = [] | |
): ImageSharpFluid | |
sizes( | |
maxWidth: Int | |
maxHeight: Int | |
base64Width: Int | |
grayscale: Boolean = false | |
jpegProgressive: Boolean = true | |
pngCompressionSpeed: Int = 4 | |
duotone: DuotoneGradient | |
traceSVG: Potrace | |
quality: Int | |
toFormat: ImageFormat = NO_CHANGE | |
toFormatBase64: ImageFormat = NO_CHANGE | |
cropFocus: ImageCropFocus = ATTENTION | |
fit: ImageFit = COVER | |
background: String = "rgba(0,0,0,1)" | |
rotate: Int = 0 | |
trim: Float = 0 | |
sizes: String = "" | |
""" | |
A list of image widths to be generated. Example: [ 200, 340, 520, 890 ] | |
""" | |
srcSetBreakpoints: [Int] = [] | |
): ImageSharpSizes @deprecated(reason: "Sizes was deprecated in Gatsby v2. It's been renamed to \"fluid\" https://example.com/write-docs-and-fix-this-example-link") | |
original: ImageSharpOriginal | |
resize(width: Int, height: Int, quality: Int, jpegProgressive: Boolean = true, pngCompressionLevel: Int = 9, pngCompressionSpeed: Int = 4, grayscale: Boolean = false, duotone: DuotoneGradient, base64: Boolean = false, traceSVG: Potrace, toFormat: ImageFormat = NO_CHANGE, cropFocus: ImageCropFocus = ATTENTION, fit: ImageFit = COVER, background: String = "rgba(0,0,0,1)", rotate: Int = 0, trim: Float = 0): ImageSharpResize | |
parent: Node | |
children: [Node!]! | |
internal: Internal! | |
} | |
type ImageSharpConnection { | |
totalCount: Int! | |
edges: [ImageSharpEdge!]! | |
nodes: [ImageSharp!]! | |
pageInfo: PageInfo! | |
distinct(field: ImageSharpFieldsEnum!): [String!]! | |
group(skip: Int, limit: Int, field: ImageSharpFieldsEnum!): [ImageSharpGroupConnection!]! | |
} | |
type ImageSharpEdge { | |
next: ImageSharp | |
node: ImageSharp! | |
previous: ImageSharp | |
} | |
enum ImageSharpFieldsEnum { | |
id | |
fixed___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
fixed___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
fixed___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
fixed___width @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
fixed___height @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
fixed___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
fixed___srcSet @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
fixed___srcWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
fixed___srcSetWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
fixed___originalName @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
resolutions___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
resolutions___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
resolutions___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
resolutions___width @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
resolutions___height @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
resolutions___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
resolutions___srcSet @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
resolutions___srcWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
resolutions___srcSetWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
resolutions___originalName @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
fluid___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
fluid___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
fluid___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
fluid___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
fluid___srcSet @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
fluid___srcWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
fluid___srcSetWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
fluid___sizes @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
fluid___originalImg @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
fluid___originalName @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
fluid___presentationWidth @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
fluid___presentationHeight @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
sizes___base64 @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
sizes___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
sizes___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
sizes___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
sizes___srcSet @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
sizes___srcWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
sizes___srcSetWebp @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
sizes___sizes @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
sizes___originalImg @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
sizes___originalName @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
sizes___presentationWidth @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
sizes___presentationHeight @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
original___width @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
original___height @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
original___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
resize___src @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
resize___tracedSVG @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
resize___width @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
resize___height @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
resize___aspectRatio @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
resize___originalName @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
parent___id @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
parent___parent___id @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
parent___parent___parent___id @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
parent___parent___parent___children @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
parent___parent___children @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
parent___parent___children___id @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
parent___parent___children___children @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
parent___parent___internal___content @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
parent___parent___internal___contentDigest @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
parent___parent___internal___description @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
parent___parent___internal___fieldOwners @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
parent___parent___internal___ignoreType @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
parent___parent___internal___mediaType @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
parent___parent___internal___owner @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
parent___parent___internal___type @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
parent___children @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
parent___children___id @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
parent___children___parent___id @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
parent___children___parent___children @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
parent___children___children @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
parent___children___children___id @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
parent___children___children___children @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
parent___children___internal___content @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
parent___children___internal___contentDigest @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
parent___children___internal___description @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
parent___children___internal___fieldOwners @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
parent___children___internal___ignoreType @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
parent___children___internal___mediaType @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
parent___children___internal___owner @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
parent___children___internal___type @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
parent___internal___content @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
parent___internal___contentDigest @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
parent___internal___description @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
parent___internal___fieldOwners @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
parent___internal___ignoreType @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
parent___internal___mediaType @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
parent___internal___owner @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
parent___internal___type @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
children @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
children___id @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
children___parent___id @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
children___parent___parent___id @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
children___parent___parent___children @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
children___parent___children @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
children___parent___children___id @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
children___parent___children___children @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
children___parent___internal___content @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
children___parent___internal___contentDigest @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
children___parent___internal___description @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
children___parent___internal___fieldOwners @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
children___parent___internal___ignoreType @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
children___parent___internal___mediaType @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
children___parent___internal___owner @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
children___parent___internal___type @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
children___children @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
children___children___id @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
children___children___parent___id @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
children___children___parent___children @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
children___children___children @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
children___children___children___id @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
children___children___children___children @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
children___children___internal___content @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
children___children___internal___contentDigest @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
children___children___internal___description @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
children___children___internal___fieldOwners @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
children___children___internal___ignoreType @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
children___children___internal___mediaType @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
children___children___internal___owner @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
children___children___internal___type @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
children___internal___content @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
children___internal___contentDigest @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
children___internal___description @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
children___internal___fieldOwners @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
children___internal___ignoreType @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
children___internal___mediaType @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
children___internal___owner @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
children___internal___type @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
internal___content @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
internal___contentDigest @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
internal___description @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
internal___fieldOwners @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
internal___ignoreType @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
internal___mediaType @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
internal___owner @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
internal___type @deprecated(reason: "Sorting on fields that need arguments to resolve is deprecated.") | |
} | |
input ImageSharpFilterInput { | |
id: StringQueryOperatorInput | |
fixed: ImageSharpFixedFilterInput | |
resolutions: ImageSharpResolutionsFilterInput | |
fluid: ImageSharpFluidFilterInput | |
sizes: ImageSharpSizesFilterInput | |
original: ImageSharpOriginalFilterInput | |
resize: ImageSharpResizeFilterInput | |
parent: NodeFilterInput | |
children: NodeFilterListInput | |
internal: InternalFilterInput | |
} | |
type ImageSharpFixed { | |
base64: String | |
tracedSVG: String | |
aspectRatio: Float | |
width: Float | |
height: Float | |
src: String | |
srcSet: String | |
srcWebp: String | |
srcSetWebp: String | |
originalName: String | |
} | |
input ImageSharpFixedFilterInput { | |
base64: StringQueryOperatorInput | |
tracedSVG: StringQueryOperatorInput | |
aspectRatio: FloatQueryOperatorInput | |
width: FloatQueryOperatorInput | |
height: FloatQueryOperatorInput | |
src: StringQueryOperatorInput | |
srcSet: StringQueryOperatorInput | |
srcWebp: StringQueryOperatorInput | |
srcSetWebp: StringQueryOperatorInput | |
originalName: StringQueryOperatorInput | |
} | |
type ImageSharpFluid { | |
base64: String | |
tracedSVG: String | |
aspectRatio: Float | |
src: String | |
srcSet: String | |
srcWebp: String | |
srcSetWebp: String | |
sizes: String | |
originalImg: String | |
originalName: String | |
presentationWidth: Int | |
presentationHeight: Int | |
} | |
input ImageSharpFluidFilterInput { | |
base64: StringQueryOperatorInput | |
tracedSVG: StringQueryOperatorInput | |
aspectRatio: FloatQueryOperatorInput | |
src: StringQueryOperatorInput | |
srcSet: StringQueryOperatorInput | |
srcWebp: StringQueryOperatorInput | |
srcSetWebp: StringQueryOperatorInput | |
sizes: StringQueryOperatorInput | |
originalImg: StringQueryOperatorInput | |
originalName: StringQueryOperatorInput | |
presentationWidth: IntQueryOperatorInput | |
presentationHeight: IntQueryOperatorInput | |
} | |
type ImageSharpGroupConnection { | |
totalCount: Int! | |
edges: [ImageSharpEdge!]! | |
nodes: [ImageSharp!]! | |
pageInfo: PageInfo! | |
field: String! | |
fieldValue: String | |
} | |
type ImageSharpOriginal { | |
width: Float | |
height: Float | |
src: String | |
} | |
input ImageSharpOriginalFilterInput { | |
width: FloatQueryOperatorInput | |
height: FloatQueryOperatorInput | |
src: StringQueryOperatorInput | |
} | |
type ImageSharpResize { | |
src: String | |
tracedSVG: String | |
width: Int | |
height: Int | |
aspectRatio: Float | |
originalName: String | |
} | |
input ImageSharpResizeFilterInput { | |
src: StringQueryOperatorInput | |
tracedSVG: StringQueryOperatorInput | |
width: IntQueryOperatorInput | |
height: IntQueryOperatorInput | |
aspectRatio: FloatQueryOperatorInput | |
originalName: StringQueryOperatorInput | |
} | |
type ImageSharpResolutions { | |
base64: String | |
tracedSVG: String | |
aspectRatio: Float | |
width: Float | |
height: Float | |
src: String | |
srcSet: String | |
srcWebp: String | |
srcSetWebp: String | |
originalName: String | |
} | |
input ImageSharpResolutionsFilterInput { | |
base64: StringQueryOperatorInput | |
tracedSVG: StringQueryOperatorInput | |
aspectRatio: FloatQueryOperatorInput | |
width: FloatQueryOperatorInput | |
height: FloatQueryOperatorInput | |
src: StringQueryOperatorInput | |
srcSet: StringQueryOperatorInput | |
srcWebp: StringQueryOperatorInput | |
srcSetWebp: StringQueryOperatorInput | |
originalName: StringQueryOperatorInput | |
} | |
type ImageSharpSizes { | |
base64: String | |
tracedSVG: String | |
aspectRatio: Float | |
src: String | |
srcSet: String | |
srcWebp: String | |
srcSetWebp: String | |
sizes: String | |
originalImg: String | |
originalName: String | |
presentationWidth: Int | |
presentationHeight: Int | |
} | |
input ImageSharpSizesFilterInput { | |
base64: StringQueryOperatorInput | |
tracedSVG: StringQueryOperatorInput | |
aspectRatio: FloatQueryOperatorInput | |
src: StringQueryOperatorInput | |
srcSet: StringQueryOperatorInput | |
srcWebp: StringQueryOperatorInput | |
srcSetWebp: StringQueryOperatorInput | |
sizes: StringQueryOperatorInput | |
originalImg: StringQueryOperatorInput | |
originalName: StringQueryOperatorInput | |
presentationWidth: IntQueryOperatorInput | |
presentationHeight: IntQueryOperatorInput | |
} | |
input ImageSharpSortInput { | |
fields: [ImageSharpFieldsEnum] | |
order: [SortOrderEnum] = [ASC] | |
} | |
type Internal { | |
content: String | |
contentDigest: String! | |
description: String | |
fieldOwners: [String] | |
ignoreType: Boolean | |
mediaType: String | |
owner: String! | |
type: String! | |
} | |
input InternalFilterInput { | |
content: StringQueryOperatorInput | |
contentDigest: StringQueryOperatorInput | |
description: StringQueryOperatorInput | |
fieldOwners: StringQueryOperatorInput | |
ignoreType: BooleanQueryOperatorInput | |
mediaType: StringQueryOperatorInput | |
owner: StringQueryOperatorInput | |
type: StringQueryOperatorInput | |
} | |
input IntQueryOperatorInput { | |
eq: Int | |
ne: Int | |
gt: Int | |
gte: Int | |
lt: Int | |
lte: Int | |
in: [Int] | |
nin: [Int] | |
} | |
""" | |
The `JSON` scalar type represents JSON values as specified by [ECMA-404](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf). | |
""" | |
scalar JSON | |
input JSONQueryOperatorInput { | |
eq: JSON | |
ne: JSON | |
in: [JSON] | |
nin: [JSON] | |
regex: JSON | |
glob: JSON | |
} | |
"""Node Interface""" | |
interface Node { | |
id: ID! | |
parent: Node | |
children: [Node!]! | |
internal: Internal! | |
} | |
input NodeFilterInput { | |
id: StringQueryOperatorInput | |
parent: NodeFilterInput | |
children: NodeFilterListInput | |
internal: InternalFilterInput | |
} | |
input NodeFilterListInput { | |
elemMatch: NodeFilterInput | |
} | |
type PageInfo { | |
currentPage: Int! | |
hasPreviousPage: Boolean! | |
hasNextPage: Boolean! | |
itemCount: Int! | |
pageCount: Int! | |
perPage: Int | |
} | |
input Potrace { | |
turnPolicy: PotraceTurnPolicy | |
turdSize: Float | |
alphaMax: Float | |
optCurve: Boolean | |
optTolerance: Float | |
threshold: Int | |
blackOnWhite: Boolean | |
color: String | |
background: String | |
} | |
enum PotraceTurnPolicy { | |
TURNPOLICY_BLACK | |
TURNPOLICY_WHITE | |
TURNPOLICY_LEFT | |
TURNPOLICY_RIGHT | |
TURNPOLICY_MINORITY | |
TURNPOLICY_MAJORITY | |
} | |
type Query { | |
imageSharp(id: StringQueryOperatorInput, fixed: ImageSharpFixedFilterInput, resolutions: ImageSharpResolutionsFilterInput, fluid: ImageSharpFluidFilterInput, sizes: ImageSharpSizesFilterInput, original: ImageSharpOriginalFilterInput, resize: ImageSharpResizeFilterInput, parent: NodeFilterInput, children: NodeFilterListInput, internal: InternalFilterInput): ImageSharp | |
allImageSharp(filter: ImageSharpFilterInput, sort: ImageSharpSortInput, skip: Int, limit: Int): ImageSharpConnection! | |
sitePage(id: StringQueryOperatorInput, parent: NodeFilterInput, children: NodeFilterListInput, internal: InternalFilterInput, path: StringQueryOperatorInput, internalComponentName: StringQueryOperatorInput, component: StringQueryOperatorInput, componentChunkName: StringQueryOperatorInput, isCreatedByStatefulCreatePages: BooleanQueryOperatorInput, context: SitePageContextFilterInput, pluginCreator: SitePluginFilterInput, pluginCreatorId: StringQueryOperatorInput, componentPath: StringQueryOperatorInput): SitePage | |
allSitePage(filter: SitePageFilterInput, sort: SitePageSortInput, skip: Int, limit: Int): SitePageConnection! | |
sitePlugin(id: StringQueryOperatorInput, parent: NodeFilterInput, children: NodeFilterListInput, internal: InternalFilterInput, resolve: StringQueryOperatorInput, name: StringQueryOperatorInput, version: StringQueryOperatorInput, pluginOptions: SitePluginPluginOptionsFilterInput, nodeAPIs: StringQueryOperatorInput, browserAPIs: StringQueryOperatorInput, ssrAPIs: StringQueryOperatorInput, pluginFilepath: StringQueryOperatorInput, packageJson: SitePluginPackageJsonFilterInput): SitePlugin | |
allSitePlugin(filter: SitePluginFilterInput, sort: SitePluginSortInput, skip: Int, limit: Int): SitePluginConnection! | |
site(id: StringQueryOperatorInput, parent: NodeFilterInput, children: NodeFilterListInput, internal: InternalFilterInput, siteMetadata: SiteSiteMetadataFilterInput, port: IntQueryOperatorInput, host: StringQueryOperatorInput, polyfill: BooleanQueryOperatorInput, pathPrefix: StringQueryOperatorInput, buildTime: DateQueryOperatorInput): Site | |
allSite(filter: SiteFilterInput, sort: SiteSortInput, skip: Int, limit: Int): SiteConnection! | |
contentfulContentType(id: StringQueryOperatorInput, parent: NodeFilterInput, children: NodeFilterListInput, internal: InternalFilterInput, name: StringQueryOperatorInput, displayField: StringQueryOperatorInput, description: StringQueryOperatorInput): ContentfulContentType | |
allContentfulContentType(filter: ContentfulContentTypeFilterInput, sort: ContentfulContentTypeSortInput, skip: Int, limit: Int): ContentfulContentTypeConnection! | |
contentfulPerson(id: StringQueryOperatorInput, parent: NodeFilterInput, children: NodeFilterListInput, internal: InternalFilterInput, name: StringQueryOperatorInput, title: StringQueryOperatorInput, company: StringQueryOperatorInput, email: StringQueryOperatorInput, phone: StringQueryOperatorInput, facebook: StringQueryOperatorInput, twitter: StringQueryOperatorInput, github: StringQueryOperatorInput, image: ContentfulAssetFilterInput, blogpost: ContentfulBlogPostFilterListInput, shortBio: contentfulPersonShortBioTextNodeFilterInput, spaceId: StringQueryOperatorInput, contentful_id: StringQueryOperatorInput, createdAt: DateQueryOperatorInput, updatedAt: DateQueryOperatorInput, node_locale: StringQueryOperatorInput, childContentfulPersonShortBioTextNode: contentfulPersonShortBioTextNodeFilterInput): ContentfulPerson | |
allContentfulPerson(filter: ContentfulPersonFilterInput, sort: ContentfulPersonSortInput, skip: Int, limit: Int): ContentfulPersonConnection! | |
contentfulPersonShortBioTextNode(id: StringQueryOperatorInput, parent: NodeFilterInput, children: NodeFilterListInput, internal: InternalFilterInput, shortBio: StringQueryOperatorInput): contentfulPersonShortBioTextNode | |
allContentfulPersonShortBioTextNode(filter: contentfulPersonShortBioTextNodeFilterInput, sort: contentfulPersonShortBioTextNodeSortInput, skip: Int, limit: Int): contentfulPersonShortBioTextNodeConnection! | |
contentfulBlogPost(id: StringQueryOperatorInput, parent: NodeFilterInput, children: NodeFilterListInput, internal: InternalFilterInput, title: StringQueryOperatorInput, slug: StringQueryOperatorInput, publishDate: DateQueryOperatorInput, featuredImage: ContentfulAssetFilterInput, categories: ContentfulCategoryFilterListInput, page: ContentfulPageFilterListInput, body: contentfulBlogPostBodyRichTextNodeFilterInput, spaceId: StringQueryOperatorInput, contentful_id: StringQueryOperatorInput, createdAt: DateQueryOperatorInput, updatedAt: DateQueryOperatorInput, node_locale: StringQueryOperatorInput, author: ContentfulPersonFilterInput, childContentfulBlogPostBodyRichTextNode: contentfulBlogPostBodyRichTextNodeFilterInput): ContentfulBlogPost | |
allContentfulBlogPost(filter: ContentfulBlogPostFilterInput, sort: ContentfulBlogPostSortInput, skip: Int, limit: Int): ContentfulBlogPostConnection! | |
contentfulBlogPostBodyRichTextNode(id: StringQueryOperatorInput, parent: NodeFilterInput, children: NodeFilterListInput, internal: InternalFilterInput, content: contentfulBlogPostBodyRichTextNodeContentFilterListInput, nodeType: StringQueryOperatorInput, body: StringQueryOperatorInput, json: JSONQueryOperatorInput, childContentfulRichText: ContentfulRichTextFilterInput): contentfulBlogPostBodyRichTextNode | |
allContentfulBlogPostBodyRichTextNode(filter: contentfulBlogPostBodyRichTextNodeFilterInput, sort: contentfulBlogPostBodyRichTextNodeSortInput, skip: Int, limit: Int): contentfulBlogPostBodyRichTextNodeConnection! | |
contentfulProduct(id: StringQueryOperatorInput, parent: NodeFilterInput, children: NodeFilterListInput, internal: InternalFilterInput, title: StringQueryOperatorInput, slug: StringQueryOperatorInput, price: FloatQueryOperatorInput, featuredImage: ContentfulAssetFilterInput, categories: ContentfulCategoryFilterListInput, body: contentfulProductBodyRichTextNodeFilterInput, spaceId: StringQueryOperatorInput, contentful_id: StringQueryOperatorInput, createdAt: DateQueryOperatorInput, updatedAt: DateQueryOperatorInput, node_locale: StringQueryOperatorInput, childContentfulProductBodyRichTextNode: contentfulProductBodyRichTextNodeFilterInput): ContentfulProduct | |
allContentfulProduct(filter: ContentfulProductFilterInput, sort: ContentfulProductSortInput, skip: Int, limit: Int): ContentfulProductConnection! | |
contentfulProductBodyRichTextNode(id: StringQueryOperatorInput, parent: NodeFilterInput, children: NodeFilterListInput, internal: InternalFilterInput, content: contentfulProductBodyRichTextNodeContentFilterListInput, nodeType: StringQueryOperatorInput, body: StringQueryOperatorInput, json: JSONQueryOperatorInput, childContentfulRichText: ContentfulRichTextFilterInput): contentfulProductBodyRichTextNode | |
allContentfulProductBodyRichTextNode(filter: contentfulProductBodyRichTextNodeFilterInput, sort: contentfulProductBodyRichTextNodeSortInput, skip: Int, limit: Int): contentfulProductBodyRichTextNodeConnection! | |
contentfulCategory(id: StringQueryOperatorInput, parent: NodeFilterInput, children: NodeFilterListInput, internal: InternalFilterInput, title: StringQueryOperatorInput, slug: StringQueryOperatorInput, featuredImage: ContentfulAssetFilterInput, blogpost: ContentfulBlogPostFilterListInput, spaceId: StringQueryOperatorInput, contentful_id: StringQueryOperatorInput, createdAt: DateQueryOperatorInput, updatedAt: DateQueryOperatorInput, node_locale: StringQueryOperatorInput, menu: ContentfulMenuFilterListInput, product: ContentfulProductFilterListInput, body: contentfulCategoryBodyRichTextNodeFilterInput, childContentfulCategoryBodyRichTextNode: contentfulCategoryBodyRichTextNodeFilterInput): ContentfulCategory | |
allContentfulCategory(filter: ContentfulCategoryFilterInput, sort: ContentfulCategorySortInput, skip: Int, limit: Int): ContentfulCategoryConnection! | |
contentfulCategoryBodyRichTextNode(id: StringQueryOperatorInput, parent: NodeFilterInput, children: NodeFilterListInput, internal: InternalFilterInput, content: contentfulCategoryBodyRichTextNodeContentFilterListInput, nodeType: StringQueryOperatorInput, body: StringQueryOperatorInput, json: JSONQueryOperatorInput, childContentfulRichText: ContentfulRichTextFilterInput): contentfulCategoryBodyRichTextNode | |
allContentfulCategoryBodyRichTextNode(filter: contentfulCategoryBodyRichTextNodeFilterInput, sort: contentfulCategoryBodyRichTextNodeSortInput, skip: Int, limit: Int): contentfulCategoryBodyRichTextNodeConnection! | |
contentfulMenu(id: StringQueryOperatorInput, parent: NodeFilterInput, children: NodeFilterListInput, internal: InternalFilterInput, name: StringQueryOperatorInput, menuItems: ContentfulCategoryFilterListInput, spaceId: StringQueryOperatorInput, contentful_id: StringQueryOperatorInput, createdAt: DateQueryOperatorInput, updatedAt: DateQueryOperatorInput, node_locale: StringQueryOperatorInput): ContentfulMenu | |
allContentfulMenu(filter: ContentfulMenuFilterInput, sort: ContentfulMenuSortInput, skip: Int, limit: Int): ContentfulMenuConnection! | |
contentfulPage(id: StringQueryOperatorInput, parent: NodeFilterInput, children: NodeFilterListInput, internal: InternalFilterInput, title: StringQueryOperatorInput, slug: StringQueryOperatorInput, isHomePage: BooleanQueryOperatorInput, featuredPosts: ContentfulBlogPostFilterListInput, spaceId: StringQueryOperatorInput, contentful_id: StringQueryOperatorInput, createdAt: DateQueryOperatorInput, updatedAt: DateQueryOperatorInput, node_locale: StringQueryOperatorInput, body: contentfulPageBodyRichTextNodeFilterInput, childContentfulPageBodyRichTextNode: contentfulPageBodyRichTextNodeFilterInput): ContentfulPage | |
allContentfulPage(filter: ContentfulPageFilterInput, sort: ContentfulPageSortInput, skip: Int, limit: Int): ContentfulPageConnection! | |
contentfulPageBodyRichTextNode(id: StringQueryOperatorInput, parent: NodeFilterInput, children: NodeFilterListInput, internal: InternalFilterInput, content: contentfulPageBodyRichTextNodeContentFilterListInput, nodeType: StringQueryOperatorInput, body: StringQueryOperatorInput, json: JSONQueryOperatorInput, childContentfulRichText: ContentfulRichTextFilterInput): contentfulPageBodyRichTextNode | |
allContentfulPageBodyRichTextNode(filter: contentfulPageBodyRichTextNodeFilterInput, sort: contentfulPageBodyRichTextNodeSortInput, skip: Int, limit: Int): contentfulPageBodyRichTextNodeConnection! | |
contentfulAsset(id: StringQueryOperatorInput, parent: NodeFilterInput, children: NodeFilterListInput, internal: InternalFilterInput, contentful_id: StringQueryOperatorInput, file: ContentfulAssetFileFilterInput, title: StringQueryOperatorInput, description: StringQueryOperatorInput, node_locale: StringQueryOperatorInput, fixed: ContentfulFixedFilterInput, resolutions: ContentfulResolutionsFilterInput, fluid: ContentfulFluidFilterInput, sizes: ContentfulSizesFilterInput, resize: ContentfulResizeFilterInput): ContentfulAsset | |
allContentfulAsset(filter: ContentfulAssetFilterInput, sort: ContentfulAssetSortInput, skip: Int, limit: Int): ContentfulAssetConnection! | |
contentfulRichText(id: StringQueryOperatorInput, parent: NodeFilterInput, children: NodeFilterListInput, internal: InternalFilterInput, html: StringQueryOperatorInput, timeToRead: IntQueryOperatorInput): ContentfulRichText | |
allContentfulRichText(filter: ContentfulRichTextFilterInput, sort: ContentfulRichTextSortInput, skip: Int, limit: Int): ContentfulRichTextConnection! | |
} | |
type Site implements Node { | |
id: ID! | |
parent: Node | |
children: [Node!]! | |
internal: Internal! | |
siteMetadata: SiteSiteMetadata | |
port: Int | |
host: String | |
polyfill: Boolean | |
pathPrefix: String | |
buildTime( | |
""" | |
Format the date using Moment.js' date tokens, e.g. `date(formatString: "YYYY | |
MMMM DD")`. See https://momentjs.com/docs/#/displaying/format/ for | |
documentation for different tokens. | |
""" | |
formatString: String | |
"""Returns a string generated with Moment.js' `fromNow` function""" | |
fromNow: Boolean | |
""" | |
Returns the difference between this date and the current time. Defaults to | |
"milliseconds" but you can also pass in as the measurement "years", | |
"months", "weeks", "days", "hours", "minutes", and "seconds". | |
""" | |
difference: String | |
"""Configures the locale Moment.js will use to format the date.""" | |
locale: String | |
): Date | |
} | |
type SiteConnection { | |
totalCount: Int! | |
edges: [SiteEdge!]! | |
nodes: [Site!]! | |
pageInfo: PageInfo! | |
distinct(field: SiteFieldsEnum!): [String!]! | |
group(skip: Int, limit: Int, field: SiteFieldsEnum!): [SiteGroupConnection!]! | |
} | |
type SiteEdge { | |
next: Site | |
node: Site! | |
previous: Site | |
} | |
enum SiteFieldsEnum { | |
id | |
parent___id | |
parent___parent___id | |
parent___parent___parent___id | |
parent___parent___parent___children | |
parent___parent___children | |
parent___parent___children___id | |
parent___parent___children___children | |
parent___parent___internal___content | |
parent___parent___internal___contentDigest | |
parent___parent___internal___description | |
parent___parent___internal___fieldOwners | |
parent___parent___internal___ignoreType | |
parent___parent___internal___mediaType | |
parent___parent___internal___owner | |
parent___parent___internal___type | |
parent___children | |
parent___children___id | |
parent___children___parent___id | |
parent___children___parent___children | |
parent___children___children | |
parent___children___children___id | |
parent___children___children___children | |
parent___children___internal___content | |
parent___children___internal___contentDigest | |
parent___children___internal___description | |
parent___children___internal___fieldOwners | |
parent___children___internal___ignoreType | |
parent___children___internal___mediaType | |
parent___children___internal___owner | |
parent___children___internal___type | |
parent___internal___content | |
parent___internal___contentDigest | |
parent___internal___description | |
parent___internal___fieldOwners | |
parent___internal___ignoreType | |
parent___internal___mediaType | |
parent___internal___owner | |
parent___internal___type | |
children | |
children___id | |
children___parent___id | |
children___parent___parent___id | |
children___parent___parent___children | |
children___parent___children | |
children___parent___children___id | |
children___parent___children___children | |
children___parent___internal___content | |
children___parent___internal___contentDigest | |
children___parent___internal___description | |
children___parent___internal___fieldOwners | |
children___parent___internal___ignoreType | |
children___parent___internal___mediaType | |
children___parent___internal___owner | |
children___parent___internal___type | |
children___children | |
children___children___id | |
children___children___parent___id | |
children___children___parent___children | |
children___children___children | |
children___children___children___id | |
children___children___children___children | |
children___children___internal___content | |
children___children___internal___contentDigest | |
children___children___internal___description | |
children___children___internal___fieldOwners | |
children___children___internal___ignoreType | |
children___children___internal___mediaType | |
children___children___internal___owner | |
children___children___internal___type | |
children___internal___content | |
children___internal___contentDigest | |
children___internal___description | |
children___internal___fieldOwners | |
children___internal___ignoreType | |
children___internal___mediaType | |
children___internal___owner | |
children___internal___type | |
internal___content | |
internal___contentDigest | |
internal___description | |
internal___fieldOwners | |
internal___ignoreType | |
internal___mediaType | |
internal___owner | |
internal___type | |
siteMetadata___title | |
siteMetadata___author | |
siteMetadata___description | |
siteMetadata___siteUrl | |
siteMetadata___social___twitter | |
siteMetadata___social___facebook | |
siteMetadata___social___instagram | |
siteMetadata___social___youtubeChannelId | |
port | |
host | |
polyfill | |
pathPrefix | |
buildTime | |
} | |
input SiteFilterInput { | |
id: StringQueryOperatorInput | |
parent: NodeFilterInput | |
children: NodeFilterListInput | |
internal: InternalFilterInput | |
siteMetadata: SiteSiteMetadataFilterInput | |
port: IntQueryOperatorInput | |
host: StringQueryOperatorInput | |
polyfill: BooleanQueryOperatorInput | |
pathPrefix: StringQueryOperatorInput | |
buildTime: DateQueryOperatorInput | |
} | |
type SiteGroupConnection { | |
totalCount: Int! | |
edges: [SiteEdge!]! | |
nodes: [Site!]! | |
pageInfo: PageInfo! | |
field: String! | |
fieldValue: String | |
} | |
type SitePage implements Node { | |
id: ID! | |
parent: Node | |
children: [Node!]! | |
internal: Internal! | |
path: String | |
internalComponentName: String | |
component: String | |
componentChunkName: String | |
isCreatedByStatefulCreatePages: Boolean | |
context: SitePageContext | |
pluginCreator: SitePlugin | |
pluginCreatorId: String | |
componentPath: String | |
} | |
type SitePageConnection { | |
totalCount: Int! | |
edges: [SitePageEdge!]! | |
nodes: [SitePage!]! | |
pageInfo: PageInfo! | |
distinct(field: SitePageFieldsEnum!): [String!]! | |
group(skip: Int, limit: Int, field: SitePageFieldsEnum!): [SitePageGroupConnection!]! | |
} | |
type SitePageContext { | |
slug: String | |
} | |
input SitePageContextFilterInput { | |
slug: StringQueryOperatorInput | |
} | |
type SitePageEdge { | |
next: SitePage | |
node: SitePage! | |
previous: SitePage | |
} | |
enum SitePageFieldsEnum { | |
id | |
parent___id | |
parent___parent___id | |
parent___parent___parent___id | |
parent___parent___parent___children | |
parent___parent___children | |
parent___parent___children___id | |
parent___parent___children___children | |
parent___parent___internal___content | |
parent___parent___internal___contentDigest | |
parent___parent___internal___description | |
parent___parent___internal___fieldOwners | |
parent___parent___internal___ignoreType | |
parent___parent___internal___mediaType | |
parent___parent___internal___owner | |
parent___parent___internal___type | |
parent___children | |
parent___children___id | |
parent___children___parent___id | |
parent___children___parent___children | |
parent___children___children | |
parent___children___children___id | |
parent___children___children___children | |
parent___children___internal___content | |
parent___children___internal___contentDigest | |
parent___children___internal___description | |
parent___children___internal___fieldOwners | |
parent___children___internal___ignoreType | |
parent___children___internal___mediaType | |
parent___children___internal___owner | |
parent___children___internal___type | |
parent___internal___content | |
parent___internal___contentDigest | |
parent___internal___description | |
parent___internal___fieldOwners | |
parent___internal___ignoreType | |
parent___internal___mediaType | |
parent___internal___owner | |
parent___internal___type | |
children | |
children___id | |
children___parent___id | |
children___parent___parent___id | |
children___parent___parent___children | |
children___parent___children | |
children___parent___children___id | |
children___parent___children___children | |
children___parent___internal___content | |
children___parent___internal___contentDigest | |
children___parent___internal___description | |
children___parent___internal___fieldOwners | |
children___parent___internal___ignoreType | |
children___parent___internal___mediaType | |
children___parent___internal___owner | |
children___parent___internal___type | |
children___children | |
children___children___id | |
children___children___parent___id | |
children___children___parent___children | |
children___children___children | |
children___children___children___id | |
children___children___children___children | |
children___children___internal___content | |
children___children___internal___contentDigest | |
children___children___internal___description | |
children___children___internal___fieldOwners | |
children___children___internal___ignoreType | |
children___children___internal___mediaType | |
children___children___internal___owner | |
children___children___internal___type | |
children___internal___content | |
children___internal___contentDigest | |
children___internal___description | |
children___internal___fieldOwners | |
children___internal___ignoreType | |
children___internal___mediaType | |
children___internal___owner | |
children___internal___type | |
internal___content | |
internal___contentDigest | |
internal___description | |
internal___fieldOwners | |
internal___ignoreType | |
internal___mediaType | |
internal___owner | |
internal___type | |
path | |
internalComponentName | |
component | |
componentChunkName | |
isCreatedByStatefulCreatePages | |
context___slug | |
pluginCreator___id | |
pluginCreator___parent___id | |
pluginCreator___parent___parent___id | |
pluginCreator___parent___parent___children | |
pluginCreator___parent___children | |
pluginCreator___parent___children___id | |
pluginCreator___parent___children___children | |
pluginCreator___parent___internal___content | |
pluginCreator___parent___internal___contentDigest | |
pluginCreator___parent___internal___description | |
pluginCreator___parent___internal___fieldOwners | |
pluginCreator___parent___internal___ignoreType | |
pluginCreator___parent___internal___mediaType | |
pluginCreator___parent___internal___owner | |
pluginCreator___parent___internal___type | |
pluginCreator___children | |
pluginCreator___children___id | |
pluginCreator___children___parent___id | |
pluginCreator___children___parent___children | |
pluginCreator___children___children | |
pluginCreator___children___children___id | |
pluginCreator___children___children___children | |
pluginCreator___children___internal___content | |
pluginCreator___children___internal___contentDigest | |
pluginCreator___children___internal___description | |
pluginCreator___children___internal___fieldOwners | |
pluginCreator___children___internal___ignoreType | |
pluginCreator___children___internal___mediaType | |
pluginCreator___children___internal___owner | |
pluginCreator___children___internal___type | |
pluginCreator___internal___content | |
pluginCreator___internal___contentDigest | |
pluginCreator___internal___description | |
pluginCreator___internal___fieldOwners | |
pluginCreator___internal___ignoreType | |
pluginCreator___internal___mediaType | |
pluginCreator___internal___owner | |
pluginCreator___internal___type | |
pluginCreator___resolve | |
pluginCreator___name | |
pluginCreator___version | |
pluginCreator___pluginOptions___name | |
pluginCreator___pluginOptions___short_name | |
pluginCreator___pluginOptions___start_url | |
pluginCreator___pluginOptions___background_color | |
pluginCreator___pluginOptions___theme_color | |
pluginCreator___pluginOptions___display | |
pluginCreator___pluginOptions___spaceId | |
pluginCreator___pluginOptions___accessToken | |
pluginCreator___pluginOptions___environment | |
pluginCreator___pluginOptions___path | |
pluginCreator___pluginOptions___pathCheck | |
pluginCreator___nodeAPIs | |
pluginCreator___browserAPIs | |
pluginCreator___ssrAPIs | |
pluginCreator___pluginFilepath | |
pluginCreator___packageJson___name | |
pluginCreator___packageJson___description | |
pluginCreator___packageJson___version | |
pluginCreator___packageJson___main | |
pluginCreator___packageJson___license | |
pluginCreator___packageJson___dependencies | |
pluginCreator___packageJson___dependencies___name | |
pluginCreator___packageJson___dependencies___version | |
pluginCreator___packageJson___devDependencies | |
pluginCreator___packageJson___devDependencies___name | |
pluginCreator___packageJson___devDependencies___version | |
pluginCreator___packageJson___peerDependencies | |
pluginCreator___packageJson___peerDependencies___name | |
pluginCreator___packageJson___peerDependencies___version | |
pluginCreator___packageJson___keywords | |
pluginCreatorId | |
componentPath | |
} | |
input SitePageFilterInput { | |
id: StringQueryOperatorInput | |
parent: NodeFilterInput | |
children: NodeFilterListInput | |
internal: InternalFilterInput | |
path: StringQueryOperatorInput | |
internalComponentName: StringQueryOperatorInput | |
component: StringQueryOperatorInput | |
componentChunkName: StringQueryOperatorInput | |
isCreatedByStatefulCreatePages: BooleanQueryOperatorInput | |
context: SitePageContextFilterInput | |
pluginCreator: SitePluginFilterInput | |
pluginCreatorId: StringQueryOperatorInput | |
componentPath: StringQueryOperatorInput | |
} | |
type SitePageGroupConnection { | |
totalCount: Int! | |
edges: [SitePageEdge!]! | |
nodes: [SitePage!]! | |
pageInfo: PageInfo! | |
field: String! | |
fieldValue: String | |
} | |
input SitePageSortInput { | |
fields: [SitePageFieldsEnum] | |
order: [SortOrderEnum] = [ASC] | |
} | |
type SitePlugin implements Node { | |
id: ID! | |
parent: Node | |
children: [Node!]! | |
internal: Internal! | |
resolve: String | |
name: String | |
version: String | |
pluginOptions: SitePluginPluginOptions | |
nodeAPIs: [String] | |
browserAPIs: [String] | |
ssrAPIs: [String] | |
pluginFilepath: String | |
packageJson: SitePluginPackageJson | |
} | |
type SitePluginConnection { | |
totalCount: Int! | |
edges: [SitePluginEdge!]! | |
nodes: [SitePlugin!]! | |
pageInfo: PageInfo! | |
distinct(field: SitePluginFieldsEnum!): [String!]! | |
group(skip: Int, limit: Int, field: SitePluginFieldsEnum!): [SitePluginGroupConnection!]! | |
} | |
type SitePluginEdge { | |
next: SitePlugin | |
node: SitePlugin! | |
previous: SitePlugin | |
} | |
enum SitePluginFieldsEnum { | |
id | |
parent___id | |
parent___parent___id | |
parent___parent___parent___id | |
parent___parent___parent___children | |
parent___parent___children | |
parent___parent___children___id | |
parent___parent___children___children | |
parent___parent___internal___content | |
parent___parent___internal___contentDigest | |
parent___parent___internal___description | |
parent___parent___internal___fieldOwners | |
parent___parent___internal___ignoreType | |
parent___parent___internal___mediaType | |
parent___parent___internal___owner | |
parent___parent___internal___type | |
parent___children | |
parent___children___id | |
parent___children___parent___id | |
parent___children___parent___children | |
parent___children___children | |
parent___children___children___id | |
parent___children___children___children | |
parent___children___internal___content | |
parent___children___internal___contentDigest | |
parent___children___internal___description | |
parent___children___internal___fieldOwners | |
parent___children___internal___ignoreType | |
parent___children___internal___mediaType | |
parent___children___internal___owner | |
parent___children___internal___type | |
parent___internal___content | |
parent___internal___contentDigest | |
parent___internal___description | |
parent___internal___fieldOwners | |
parent___internal___ignoreType | |
parent___internal___mediaType | |
parent___internal___owner | |
parent___internal___type | |
children | |
children___id | |
children___parent___id | |
children___parent___parent___id | |
children___parent___parent___children | |
children___parent___children | |
children___parent___children___id | |
children___parent___children___children | |
children___parent___internal___content | |
children___parent___internal___contentDigest | |
children___parent___internal___description | |
children___parent___internal___fieldOwners | |
children___parent___internal___ignoreType | |
children___parent___internal___mediaType | |
children___parent___internal___owner | |
children___parent___internal___type | |
children___children | |
children___children___id | |
children___children___parent___id | |
children___children___parent___children | |
children___children___children | |
children___children___children___id | |
children___children___children___children | |
children___children___internal___content | |
children___children___internal___contentDigest | |
children___children___internal___description | |
children___children___internal___fieldOwners | |
children___children___internal___ignoreType | |
children___children___internal___mediaType | |
children___children___internal___owner | |
children___children___internal___type | |
children___internal___content | |
children___internal___contentDigest | |
children___internal___description | |
children___internal___fieldOwners | |
children___internal___ignoreType | |
children___internal___mediaType | |
children___internal___owner | |
children___internal___type | |
internal___content | |
internal___contentDigest | |
internal___description | |
internal___fieldOwners | |
internal___ignoreType | |
internal___mediaType | |
internal___owner | |
internal___type | |
resolve | |
name | |
version | |
pluginOptions___name | |
pluginOptions___short_name | |
pluginOptions___start_url | |
pluginOptions___background_color | |
pluginOptions___theme_color | |
pluginOptions___display | |
pluginOptions___spaceId | |
pluginOptions___accessToken | |
pluginOptions___environment | |
pluginOptions___path | |
pluginOptions___pathCheck | |
nodeAPIs | |
browserAPIs | |
ssrAPIs | |
pluginFilepath | |
packageJson___name | |
packageJson___description | |
packageJson___version | |
packageJson___main | |
packageJson___license | |
packageJson___dependencies | |
packageJson___dependencies___name | |
packageJson___dependencies___version | |
packageJson___devDependencies | |
packageJson___devDependencies___name | |
packageJson___devDependencies___version | |
packageJson___peerDependencies | |
packageJson___peerDependencies___name | |
packageJson___peerDependencies___version | |
packageJson___keywords | |
} | |
input SitePluginFilterInput { | |
id: StringQueryOperatorInput | |
parent: NodeFilterInput | |
children: NodeFilterListInput | |
internal: InternalFilterInput | |
resolve: StringQueryOperatorInput | |
name: StringQueryOperatorInput | |
version: StringQueryOperatorInput | |
pluginOptions: SitePluginPluginOptionsFilterInput | |
nodeAPIs: StringQueryOperatorInput | |
browserAPIs: StringQueryOperatorInput | |
ssrAPIs: StringQueryOperatorInput | |
pluginFilepath: StringQueryOperatorInput | |
packageJson: SitePluginPackageJsonFilterInput | |
} | |
type SitePluginGroupConnection { | |
totalCount: Int! | |
edges: [SitePluginEdge!]! | |
nodes: [SitePlugin!]! | |
pageInfo: PageInfo! | |
field: String! | |
fieldValue: String | |
} | |
type SitePluginPackageJson { | |
name: String | |
description: String | |
version: String | |
main: String | |
license: String | |
dependencies: [SitePluginPackageJsonDependencies] | |
devDependencies: [SitePluginPackageJsonDevDependencies] | |
peerDependencies: [SitePluginPackageJsonPeerDependencies] | |
keywords: [String] | |
} | |
type SitePluginPackageJsonDependencies { | |
name: String | |
version: String | |
} | |
input SitePluginPackageJsonDependenciesFilterInput { | |
name: StringQueryOperatorInput | |
version: StringQueryOperatorInput | |
} | |
input SitePluginPackageJsonDependenciesFilterListInput { | |
elemMatch: SitePluginPackageJsonDependenciesFilterInput | |
} | |
type SitePluginPackageJsonDevDependencies { | |
name: String | |
version: String | |
} | |
input SitePluginPackageJsonDevDependenciesFilterInput { | |
name: StringQueryOperatorInput | |
version: StringQueryOperatorInput | |
} | |
input SitePluginPackageJsonDevDependenciesFilterListInput { | |
elemMatch: SitePluginPackageJsonDevDependenciesFilterInput | |
} | |
input SitePluginPackageJsonFilterInput { | |
name: StringQueryOperatorInput | |
description: StringQueryOperatorInput | |
version: StringQueryOperatorInput | |
main: StringQueryOperatorInput | |
license: StringQueryOperatorInput | |
dependencies: SitePluginPackageJsonDependenciesFilterListInput | |
devDependencies: SitePluginPackageJsonDevDependenciesFilterListInput | |
peerDependencies: SitePluginPackageJsonPeerDependenciesFilterListInput | |
keywords: StringQueryOperatorInput | |
} | |
type SitePluginPackageJsonPeerDependencies { | |
name: String | |
version: String | |
} | |
input SitePluginPackageJsonPeerDependenciesFilterInput { | |
name: StringQueryOperatorInput | |
version: StringQueryOperatorInput | |
} | |
input SitePluginPackageJsonPeerDependenciesFilterListInput { | |
elemMatch: SitePluginPackageJsonPeerDependenciesFilterInput | |
} | |
type SitePluginPluginOptions { | |
name: String | |
short_name: String | |
start_url: String | |
background_color: String | |
theme_color: String | |
display: String | |
spaceId: String | |
accessToken: String | |
environment: String | |
path: String | |
pathCheck: Boolean | |
} | |
input SitePluginPluginOptionsFilterInput { | |
name: StringQueryOperatorInput | |
short_name: StringQueryOperatorInput | |
start_url: StringQueryOperatorInput | |
background_color: StringQueryOperatorInput | |
theme_color: StringQueryOperatorInput | |
display: StringQueryOperatorInput | |
spaceId: StringQueryOperatorInput | |
accessToken: StringQueryOperatorInput | |
environment: StringQueryOperatorInput | |
path: StringQueryOperatorInput | |
pathCheck: BooleanQueryOperatorInput | |
} | |
input SitePluginSortInput { | |
fields: [SitePluginFieldsEnum] | |
order: [SortOrderEnum] = [ASC] | |
} | |
type SiteSiteMetadata { | |
title: String | |
author: String | |
description: String | |
siteUrl: String | |
social: SiteSiteMetadataSocial | |
} | |
input SiteSiteMetadataFilterInput { | |
title: StringQueryOperatorInput | |
author: StringQueryOperatorInput | |
description: StringQueryOperatorInput | |
siteUrl: StringQueryOperatorInput | |
social: SiteSiteMetadataSocialFilterInput | |
} | |
type SiteSiteMetadataSocial { | |
twitter: String | |
facebook: String | |
instagram: String | |
youtubeChannelId: String | |
} | |
input SiteSiteMetadataSocialFilterInput { | |
twitter: StringQueryOperatorInput | |
facebook: StringQueryOperatorInput | |
instagram: StringQueryOperatorInput | |
youtubeChannelId: StringQueryOperatorInput | |
} | |
input SiteSortInput { | |
fields: [SiteFieldsEnum] | |
order: [SortOrderEnum] = [ASC] | |
} | |
enum SortOrderEnum { | |
ASC | |
DESC | |
} | |
input StringQueryOperatorInput { | |
eq: String | |
ne: String | |
in: [String] | |
nin: [String] | |
regex: String | |
glob: String | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment