@@ -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' ] ;
@@ -1009,6 +1011,8 @@ export type QueryAllDirectoryArgs = {
10091011export type QuerySiteArgs = {
10101012 buildTime ?: Maybe < DateQueryOperatorInput > ;
10111013 siteMetadata ?: Maybe < SiteSiteMetadataFilterInput > ;
1014+ port ?: Maybe < IntQueryOperatorInput > ;
1015+ host ?: Maybe < StringQueryOperatorInput > ;
10121016 polyfill ?: Maybe < BooleanQueryOperatorInput > ;
10131017 pathPrefix ?: Maybe < StringQueryOperatorInput > ;
10141018 id ?: Maybe < StringQueryOperatorInput > ;
@@ -2183,6 +2187,8 @@ export type SiteFieldsEnum =
21832187 | 'siteMetadata___contacts___links___medium'
21842188 | 'siteMetadata___contacts___links___devto'
21852189 | 'siteMetadata___contacts___links___instagram'
2190+ | 'port'
2191+ | 'host'
21862192 | 'polyfill'
21872193 | 'pathPrefix'
21882194 | 'id'
@@ -2284,6 +2290,8 @@ export type SiteGroupConnection = {
22842290export type SiteFilterInput = {
22852291 buildTime ?: Maybe < DateQueryOperatorInput > ;
22862292 siteMetadata ?: Maybe < SiteSiteMetadataFilterInput > ;
2293+ port ?: Maybe < IntQueryOperatorInput > ;
2294+ host ?: Maybe < StringQueryOperatorInput > ;
22872295 polyfill ?: Maybe < BooleanQueryOperatorInput > ;
22882296 pathPrefix ?: Maybe < StringQueryOperatorInput > ;
22892297 id ?: Maybe < StringQueryOperatorInput > ;
0 commit comments