@@ -247,6 +247,8 @@ export type DirectoryCtimeArgs = {
247247export type Site = Node & {
248248 buildTime ?: Maybe < Scalars [ 'Date' ] > ;
249249 siteMetadata ?: Maybe < SiteSiteMetadata > ;
250+ port ?: Maybe < Scalars [ 'Int' ] > ;
251+ host ?: Maybe < Scalars [ 'String' ] > ;
250252 polyfill ?: Maybe < Scalars [ 'Boolean' ] > ;
251253 pathPrefix ?: Maybe < Scalars [ 'String' ] > ;
252254 jsxRuntime ?: Maybe < Scalars [ 'String' ] > ;
@@ -846,6 +848,8 @@ export type QueryAllDirectoryArgs = {
846848export type QuerySiteArgs = {
847849 buildTime ?: InputMaybe < DateQueryOperatorInput > ;
848850 siteMetadata ?: InputMaybe < SiteSiteMetadataFilterInput > ;
851+ port ?: InputMaybe < IntQueryOperatorInput > ;
852+ host ?: InputMaybe < StringQueryOperatorInput > ;
849853 polyfill ?: InputMaybe < BooleanQueryOperatorInput > ;
850854 pathPrefix ?: InputMaybe < StringQueryOperatorInput > ;
851855 jsxRuntime ?: InputMaybe < StringQueryOperatorInput > ;
@@ -2158,6 +2162,8 @@ export type SiteFieldsEnum =
21582162 | 'siteMetadata___contacts___links___medium'
21592163 | 'siteMetadata___contacts___links___devto'
21602164 | 'siteMetadata___contacts___links___instagram'
2165+ | 'port'
2166+ | 'host'
21612167 | 'polyfill'
21622168 | 'pathPrefix'
21632169 | 'jsxRuntime'
@@ -2293,6 +2299,8 @@ export type SiteGroupConnectionGroupArgs = {
22932299export type SiteFilterInput = {
22942300 buildTime ?: InputMaybe < DateQueryOperatorInput > ;
22952301 siteMetadata ?: InputMaybe < SiteSiteMetadataFilterInput > ;
2302+ port ?: InputMaybe < IntQueryOperatorInput > ;
2303+ host ?: InputMaybe < StringQueryOperatorInput > ;
22962304 polyfill ?: InputMaybe < BooleanQueryOperatorInput > ;
22972305 pathPrefix ?: InputMaybe < StringQueryOperatorInput > ;
22982306 jsxRuntime ?: InputMaybe < StringQueryOperatorInput > ;
0 commit comments