@@ -2980,6 +2980,8 @@ export type IQueryAllDirectoryArgs = {
2980
2980
export type IQuerySiteArgs = {
2981
2981
buildTime : Maybe < IDateQueryOperatorInput > ;
2982
2982
siteMetadata : Maybe < ISiteSiteMetadataFilterInput > ;
2983
+ port : Maybe < IIntQueryOperatorInput > ;
2984
+ host : Maybe < IStringQueryOperatorInput > ;
2983
2985
pathPrefix : Maybe < IStringQueryOperatorInput > ;
2984
2986
mapping : Maybe < ISiteMappingFilterInput > ;
2985
2987
polyfill : Maybe < IBooleanQueryOperatorInput > ;
@@ -3139,6 +3141,8 @@ export type IQueryAllSitePluginArgs = {
3139
3141
export type ISite = INode & {
3140
3142
buildTime : Maybe < Scalars [ 'Date' ] > ;
3141
3143
siteMetadata : Maybe < ISiteSiteMetadata > ;
3144
+ port : Maybe < Scalars [ 'Int' ] > ;
3145
+ host : Maybe < Scalars [ 'String' ] > ;
3142
3146
pathPrefix : Maybe < Scalars [ 'String' ] > ;
3143
3147
mapping : Maybe < ISiteMapping > ;
3144
3148
polyfill : Maybe < Scalars [ 'Boolean' ] > ;
@@ -3344,6 +3348,8 @@ export type ISiteFieldsEnum =
3344
3348
'siteMetadata___author' |
3345
3349
'siteMetadata___siteUrl' |
3346
3350
'siteMetadata___social___twitter' |
3351
+ 'port' |
3352
+ 'host' |
3347
3353
'pathPrefix' |
3348
3354
'mapping___MarkdownRemark_frontmatter_author' |
3349
3355
'polyfill' |
@@ -3437,6 +3443,8 @@ export type ISiteFieldsEnum =
3437
3443
export type ISiteFilterInput = {
3438
3444
buildTime : Maybe < IDateQueryOperatorInput > ;
3439
3445
siteMetadata : Maybe < ISiteSiteMetadataFilterInput > ;
3446
+ port : Maybe < IIntQueryOperatorInput > ;
3447
+ host : Maybe < IStringQueryOperatorInput > ;
3440
3448
pathPrefix : Maybe < IStringQueryOperatorInput > ;
3441
3449
mapping : Maybe < ISiteMappingFilterInput > ;
3442
3450
polyfill : Maybe < IBooleanQueryOperatorInput > ;
@@ -4182,7 +4190,7 @@ export type ISitePluginPluginOptions = {
4182
4190
disableBgImageOnAlpha : Maybe < Scalars [ 'Boolean' ] > ;
4183
4191
disableBgImage : Maybe < Scalars [ 'Boolean' ] > ;
4184
4192
className : Maybe < Scalars [ 'String' ] > ;
4185
- offsetY : Maybe < Scalars [ 'String ' ] > ;
4193
+ offsetY : Maybe < Scalars [ 'Int ' ] > ;
4186
4194
icon : Maybe < Scalars [ 'String' ] > ;
4187
4195
isIconAfterHeader : Maybe < Scalars [ 'Boolean' ] > ;
4188
4196
active : Maybe < Scalars [ 'Boolean' ] > ;
@@ -4247,7 +4255,7 @@ export type ISitePluginPluginOptionsFilterInput = {
4247
4255
disableBgImageOnAlpha : Maybe < IBooleanQueryOperatorInput > ;
4248
4256
disableBgImage : Maybe < IBooleanQueryOperatorInput > ;
4249
4257
className : Maybe < IStringQueryOperatorInput > ;
4250
- offsetY : Maybe < IStringQueryOperatorInput > ;
4258
+ offsetY : Maybe < IIntQueryOperatorInput > ;
4251
4259
icon : Maybe < IStringQueryOperatorInput > ;
4252
4260
isIconAfterHeader : Maybe < IBooleanQueryOperatorInput > ;
4253
4261
active : Maybe < IBooleanQueryOperatorInput > ;
@@ -4327,7 +4335,7 @@ export type ISitePluginPluginOptionsPluginsPluginOptions = {
4327
4335
disableBgImageOnAlpha : Maybe < Scalars [ 'Boolean' ] > ;
4328
4336
disableBgImage : Maybe < Scalars [ 'Boolean' ] > ;
4329
4337
className : Maybe < Scalars [ 'String' ] > ;
4330
- offsetY : Maybe < Scalars [ 'String ' ] > ;
4338
+ offsetY : Maybe < Scalars [ 'Int ' ] > ;
4331
4339
icon : Maybe < Scalars [ 'String' ] > ;
4332
4340
isIconAfterHeader : Maybe < Scalars [ 'Boolean' ] > ;
4333
4341
active : Maybe < Scalars [ 'Boolean' ] > ;
@@ -4353,7 +4361,7 @@ export type ISitePluginPluginOptionsPluginsPluginOptionsFilterInput = {
4353
4361
disableBgImageOnAlpha : Maybe < IBooleanQueryOperatorInput > ;
4354
4362
disableBgImage : Maybe < IBooleanQueryOperatorInput > ;
4355
4363
className : Maybe < IStringQueryOperatorInput > ;
4356
- offsetY : Maybe < IStringQueryOperatorInput > ;
4364
+ offsetY : Maybe < IIntQueryOperatorInput > ;
4357
4365
icon : Maybe < IStringQueryOperatorInput > ;
4358
4366
isIconAfterHeader : Maybe < IBooleanQueryOperatorInput > ;
4359
4367
active : Maybe < IBooleanQueryOperatorInput > ;
@@ -4493,13 +4501,16 @@ export type IBlogIndexQueryVariables = {};
4493
4501
4494
4502
4495
4503
export type IBlogIndexQuery = { site : Maybe < { siteMetadata : Maybe < Pick < ISiteSiteMetadata , 'title' > > } > , allMarkdownRemark : { edges : Array < { node : (
4496
- Pick < IMarkdownRemark , 'excerpt' >
4504
+ Pick < IMarkdownRemark , 'html' | ' excerpt'>
4497
4505
& { fields : Maybe < (
4498
4506
Pick < IMarkdownRemarkFields , 'slug' >
4499
4507
& { readingTime : Maybe < Pick < IMarkdownRemarkFieldsReadingTime , 'text' > > }
4500
4508
) > , frontmatter : Maybe < (
4501
- Pick < IMarkdownRemarkFrontmatter , 'date' | 'title' | 'description' | 'tags' >
4502
- & { author : Maybe < Pick < IAuthorYaml , 'id' > > }
4509
+ Pick < IMarkdownRemarkFrontmatter , 'title' | 'date' | 'description' | 'tags' >
4510
+ & { author : Maybe < (
4511
+ Pick < IAuthorYaml , 'id' | 'bio' | 'twitter' | 'github' >
4512
+ & { profilepicture : Maybe < { childImageSharp : Maybe < { fluid : Maybe < IGatsbyImageSharpFluidFragment > } > } > }
4513
+ ) > }
4503
4514
) > }
4504
4515
) } > } , allAuthorYaml : { nodes : Array < Pick < IAuthorYaml , 'bio' | 'id' | 'twitter' | 'github' > > } } ;
4505
4516
0 commit comments