@@ -258,6 +258,8 @@ export type DirectoryCtimeArgs = {
258258export type Site = Node & {
259259 buildTime ?: Maybe < Scalars [ 'Date' ] > ;
260260 siteMetadata ?: Maybe < SiteSiteMetadata > ;
261+ port ?: Maybe < Scalars [ 'Int' ] > ;
262+ host ?: Maybe < Scalars [ 'String' ] > ;
261263 polyfill ?: Maybe < Scalars [ 'Boolean' ] > ;
262264 pathPrefix ?: Maybe < Scalars [ 'String' ] > ;
263265 id : Scalars [ 'ID' ] ;
@@ -1027,6 +1029,8 @@ export type QueryAllDirectoryArgs = {
10271029export type QuerySiteArgs = {
10281030 buildTime ?: Maybe < DateQueryOperatorInput > ;
10291031 siteMetadata ?: Maybe < SiteSiteMetadataFilterInput > ;
1032+ port ?: Maybe < IntQueryOperatorInput > ;
1033+ host ?: Maybe < StringQueryOperatorInput > ;
10301034 polyfill ?: Maybe < BooleanQueryOperatorInput > ;
10311035 pathPrefix ?: Maybe < StringQueryOperatorInput > ;
10321036 id ?: Maybe < StringQueryOperatorInput > ;
@@ -2277,6 +2281,8 @@ export type SiteFieldsEnum =
22772281 | 'siteMetadata___contacts___links___medium'
22782282 | 'siteMetadata___contacts___links___devto'
22792283 | 'siteMetadata___contacts___links___instagram'
2284+ | 'port'
2285+ | 'host'
22802286 | 'polyfill'
22812287 | 'pathPrefix'
22822288 | 'id'
@@ -2378,6 +2384,8 @@ export type SiteGroupConnection = {
23782384export type SiteFilterInput = {
23792385 buildTime ?: Maybe < DateQueryOperatorInput > ;
23802386 siteMetadata ?: Maybe < SiteSiteMetadataFilterInput > ;
2387+ port ?: Maybe < IntQueryOperatorInput > ;
2388+ host ?: Maybe < StringQueryOperatorInput > ;
23812389 polyfill ?: Maybe < BooleanQueryOperatorInput > ;
23822390 pathPrefix ?: Maybe < StringQueryOperatorInput > ;
23832391 id ?: Maybe < StringQueryOperatorInput > ;
0 commit comments