File tree 2 files changed +4
-4
lines changed
gatsby/src/schema/__tests__/__snapshots__
gatsby-plugin-utils/src/polyfill-remote-file/graphql
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -261,7 +261,7 @@ export function generateGatsbyImageFieldConfig(
261
261
IGatsbyImageDataArgs
262
262
> {
263
263
return {
264
- type : hasFeature ( `graphql-typegen` ) ? `GatsbyImageData! ` : `JSON` ,
264
+ type : hasFeature ( `graphql-typegen` ) ? `GatsbyImageData` : `JSON` ,
265
265
description : `Data used in the <GatsbyImage /> component. See https://gatsby.dev/img for more info.` ,
266
266
args : {
267
267
layout : {
Original file line number Diff line number Diff line change @@ -193,7 +193,7 @@ interface RemoteFile {
193
193
fit : RemoteFileFit = COVER
194
194
cropFocus : [RemoteFileCropFocus ]
195
195
quality : Int = 75
196
- ): GatsbyImageData !
196
+ ): GatsbyImageData
197
197
}
198
198
199
199
type File implements Node @dontInfer {
@@ -582,7 +582,7 @@ interface RemoteFile {
582
582
fit : RemoteFileFit = COVER
583
583
cropFocus : [RemoteFileCropFocus ]
584
584
quality : Int = 75
585
- ): GatsbyImageData !
585
+ ): GatsbyImageData
586
586
}
587
587
588
588
type File implements Node @dontInfer {
@@ -981,7 +981,7 @@ interface RemoteFile {
981
981
fit : RemoteFileFit = COVER
982
982
cropFocus : [RemoteFileCropFocus ]
983
983
quality : Int = 75
984
- ): GatsbyImageData !
984
+ ): GatsbyImageData
985
985
}
986
986
987
987
type File implements Node @dontInfer {
You can’t perform that action at this time.
0 commit comments