diff --git a/globals/data/src/__generated__/fragment-masking.ts b/globals/data/src/__generated__/fragment-masking.ts index fbedede1..cea3a8b4 100644 --- a/globals/data/src/__generated__/fragment-masking.ts +++ b/globals/data/src/__generated__/fragment-masking.ts @@ -1,67 +1,72 @@ /* eslint-disable */ -import { ResultOf, DocumentTypeDecoration, TypedDocumentNode } from '@graphql-typed-document-node/core'; -import { FragmentDefinitionNode } from 'graphql'; -import { Incremental } from './graphql'; +import { DocumentTypeDecoration } from '@graphql-typed-document-node/core' +import { ResultOf } from '@graphql-typed-document-node/core' +import { TypedDocumentNode } from '@graphql-typed-document-node/core' +import { FragmentDefinitionNode } from 'graphql' -export type FragmentType> = TDocumentType extends DocumentTypeDecoration< - infer TType, - any -> - ? [TType] extends [{ ' $fragmentName'?: infer TKey }] - ? TKey extends string - ? { ' $fragmentRefs'?: { [key in TKey]: TType } } +import { Incremental } from './graphql' + +export type FragmentType> = + TDocumentType extends DocumentTypeDecoration + ? [TType] extends [{ ' $fragmentName'?: infer TKey }] + ? TKey extends string + ? { ' $fragmentRefs'?: { [key in TKey]: TType } } + : never : never : never - : never; // return non-nullable if `fragmentType` is non-nullable export function useFragment( _documentNode: DocumentTypeDecoration, fragmentType: FragmentType> -): TType; +): TType // return nullable if `fragmentType` is nullable export function useFragment( _documentNode: DocumentTypeDecoration, fragmentType: FragmentType> | null | undefined -): TType | null | undefined; +): TType | null | undefined // return array of non-nullable if `fragmentType` is array of non-nullable export function useFragment( _documentNode: DocumentTypeDecoration, fragmentType: ReadonlyArray>> -): ReadonlyArray; +): ReadonlyArray // return array of nullable if `fragmentType` is array of nullable export function useFragment( _documentNode: DocumentTypeDecoration, fragmentType: ReadonlyArray>> | null | undefined -): ReadonlyArray | null | undefined; +): ReadonlyArray | null | undefined export function useFragment( _documentNode: DocumentTypeDecoration, - fragmentType: FragmentType> | ReadonlyArray>> | null | undefined + fragmentType: + | FragmentType> + | ReadonlyArray>> + | null + | undefined ): TType | ReadonlyArray | null | undefined { - return fragmentType as any; + return fragmentType as any } - export function makeFragmentData< F extends DocumentTypeDecoration, FT extends ResultOf >(data: FT, _fragment: F): FragmentType { - return data as FragmentType; + return data as FragmentType } export function isFragmentReady( queryNode: DocumentTypeDecoration, fragmentNode: TypedDocumentNode, data: FragmentType, any>> | null | undefined ): data is FragmentType { - const deferredFields = (queryNode as { __meta__?: { deferredFields: Record } }).__meta__ - ?.deferredFields; + const deferredFields = ( + queryNode as { __meta__?: { deferredFields: Record } } + ).__meta__?.deferredFields - if (!deferredFields) return true; + if (!deferredFields) return true - const fragDef = fragmentNode.definitions[0] as FragmentDefinitionNode | undefined; - const fragName = fragDef?.name?.value; + const fragDef = fragmentNode.definitions[0] as FragmentDefinitionNode | undefined + const fragName = fragDef?.name?.value - const fields = (fragName && deferredFields[fragName]) || []; - return fields.length > 0 && fields.every(field => data && field in data); + const fields = (fragName && deferredFields[fragName]) || [] + return fields.length > 0 && fields.every((field) => data && field in data) } diff --git a/globals/data/src/__generated__/gql.ts b/globals/data/src/__generated__/gql.ts index 4d1b9725..caedf09d 100644 --- a/globals/data/src/__generated__/gql.ts +++ b/globals/data/src/__generated__/gql.ts @@ -1,6 +1,7 @@ /* eslint-disable */ -import * as types from './graphql'; -import { TypedDocumentNode as DocumentNode } from '@graphql-typed-document-node/core'; +import * as types from './graphql' + +import { TypedDocumentNode as DocumentNode } from '@graphql-typed-document-node/core' /** * Map of all GraphQL operations in the project. @@ -13,8 +14,9 @@ import { TypedDocumentNode as DocumentNode } from '@graphql-typed-document-node/ * Therefore it is highly recommended to use the babel or swc plugin for production. */ const documents = { - "\n query GetSeo($uri:String!) {\n pageBy(uri: $uri) {\n seo {\n title\n metaDesc\n }\n translation(language: EN) {\n seo {\n title\n metaDesc\n }\n }\n }\n }\n": types.GetSeoDocument, -}; + '\n query GetSeo($uri:String!) {\n pageBy(uri: $uri) {\n seo {\n title\n metaDesc\n }\n translation(language: EN) {\n seo {\n title\n metaDesc\n }\n }\n }\n }\n': + types.GetSeoDocument, +} /** * The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. @@ -28,15 +30,18 @@ const documents = { * The query argument is unknown! * Please regenerate the types. */ -export function gql(source: string): unknown; +export function gql(source: string): unknown /** * The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients. */ -export function gql(source: "\n query GetSeo($uri:String!) {\n pageBy(uri: $uri) {\n seo {\n title\n metaDesc\n }\n translation(language: EN) {\n seo {\n title\n metaDesc\n }\n }\n }\n }\n"): (typeof documents)["\n query GetSeo($uri:String!) {\n pageBy(uri: $uri) {\n seo {\n title\n metaDesc\n }\n translation(language: EN) {\n seo {\n title\n metaDesc\n }\n }\n }\n }\n"]; +export function gql( + source: '\n query GetSeo($uri:String!) {\n pageBy(uri: $uri) {\n seo {\n title\n metaDesc\n }\n translation(language: EN) {\n seo {\n title\n metaDesc\n }\n }\n }\n }\n' +): typeof documents['\n query GetSeo($uri:String!) {\n pageBy(uri: $uri) {\n seo {\n title\n metaDesc\n }\n translation(language: EN) {\n seo {\n title\n metaDesc\n }\n }\n }\n }\n'] export function gql(source: string) { - return (documents as any)[source] ?? {}; + return (documents as any)[source] ?? {} } -export type DocumentType> = TDocumentNode extends DocumentNode< infer TType, any> ? TType : never; \ No newline at end of file +export type DocumentType> = + TDocumentNode extends DocumentNode ? TType : never diff --git a/globals/data/src/__generated__/graphql.ts b/globals/data/src/__generated__/graphql.ts index f18b8614..aee7235e 100644 --- a/globals/data/src/__generated__/graphql.ts +++ b/globals/data/src/__generated__/graphql.ts @@ -1,182 +1,191 @@ /* eslint-disable */ -import { TypedDocumentNode as DocumentNode } from '@graphql-typed-document-node/core'; -export type Maybe = T | null; -export type InputMaybe = Maybe; -export type Exact = { [K in keyof T]: T[K] }; -export type MakeOptional = Omit & { [SubKey in K]?: Maybe }; -export type MakeMaybe = Omit & { [SubKey in K]: Maybe }; -export type MakeEmpty = { [_ in K]?: never }; -export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; +import { TypedDocumentNode as DocumentNode } from '@graphql-typed-document-node/core' +export type Maybe = T | null +export type InputMaybe = Maybe +export type Exact = { [K in keyof T]: T[K] } +export type MakeOptional = Omit & { [SubKey in K]?: Maybe } +export type MakeMaybe = Omit & { [SubKey in K]: Maybe } +export type MakeEmpty = { + [_ in K]?: never +} +export type Incremental = + | T + | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never } /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { - ID: { input: string; output: string; } - String: { input: string; output: string; } - Boolean: { input: boolean; output: boolean; } - Int: { input: number; output: number; } - Float: { input: number; output: number; } -}; + ID: { input: string; output: string } + String: { input: string; output: string } + Boolean: { input: boolean; output: boolean } + Int: { input: number; output: number } + Float: { input: number; output: number } +} /** The AboutItem type */ -export type AboutItem = ContentNode & DatabaseIdentifier & MenuItemLinkable & Node & NodeWithContentEditor & NodeWithFeaturedImage & NodeWithTemplate & NodeWithTitle & Previewable & UniformResourceIdentifiable & WithAcfContentAddons & { - __typename?: 'AboutItem'; - /** - * The id field matches the WP_Post->ID field. - * @deprecated Deprecated in favor of the databaseId field - */ - aboutItemId: Scalars['Int']['output']; - /** The content of the post. */ - content?: Maybe; - /** Fields of the ContentAddons ACF Field Group */ - contentAddons?: Maybe; - /** Connection between the ContentNode type and the ContentType type */ - contentType?: Maybe; - /** The name of the Content Type the node belongs to */ - contentTypeName: Scalars['String']['output']; - /** The unique identifier stored in the database */ - databaseId: Scalars['Int']['output']; - /** Post publishing date. */ - date?: Maybe; - /** The publishing date set in GMT. */ - dateGmt?: Maybe; - /** The desired slug of the post */ - desiredSlug?: Maybe; - /** If a user has edited the node within the past 15 seconds, this will return the user that last edited. Null if the edit lock doesn't exist or is greater than 15 seconds */ - editingLockedBy?: Maybe; - /** The RSS enclosure for the object */ - enclosure?: Maybe; - /** Connection between the ContentNode type and the EnqueuedScript type */ - enqueuedScripts?: Maybe; - /** Connection between the ContentNode type and the EnqueuedStylesheet type */ - enqueuedStylesheets?: Maybe; - /** Connection between the NodeWithFeaturedImage type and the MediaItem type */ - featuredImage?: Maybe; - /** The database identifier for the featured image node assigned to the content node */ - featuredImageDatabaseId?: Maybe; - /** Globally unique ID of the featured image assigned to the node */ - featuredImageId?: Maybe; - /** The global unique identifier for this post. This currently matches the value stored in WP_Post->guid and the guid column in the "post_objects" database table. */ - guid?: Maybe; - /** Whether the about_fragments object is password protected. */ - hasPassword?: Maybe; - /** The globally unique identifier of the about_fragments object. */ - id: Scalars['ID']['output']; - /** Whether the node is a Comment */ - isComment: Scalars['Boolean']['output']; - /** Whether the node is a Content Node */ - isContentNode: Scalars['Boolean']['output']; - /** Whether the node represents the front page. */ - isFrontPage: Scalars['Boolean']['output']; - /** Whether the node represents the blog page. */ - isPostsPage: Scalars['Boolean']['output']; - /** Whether the object is a node in the preview state */ - isPreview?: Maybe; - /** Whether the object is restricted from the current viewer */ - isRestricted?: Maybe; - /** Whether the node is a Term */ - isTermNode: Scalars['Boolean']['output']; - /** Polylang language */ - language?: Maybe; - /** The user that most recently edited the node */ - lastEditedBy?: Maybe; - /** The permalink of the post */ - link?: Maybe; - /** The local modified time for a post. If a post was recently updated the modified field will change to match the corresponding time. */ - modified?: Maybe; - /** The GMT modified time for a post. If a post was recently updated the modified field will change to match the corresponding time in GMT. */ - modifiedGmt?: Maybe; - /** The password for the about_fragments object. */ - password?: Maybe; - /** Connection between the AboutItem type and the AboutItem type */ - preview?: Maybe; - /** The database id of the preview node */ - previewRevisionDatabaseId?: Maybe; - /** Whether the object is a node in the preview state */ - previewRevisionId?: Maybe; - /** The Yoast SEO data of the ContentNode */ - seo?: Maybe; - /** The uri slug for the post. This is equivalent to the WP_Post->post_name field and the post_name column in the database for the "post_objects" table. */ - slug?: Maybe; - /** The current status of the object */ - status?: Maybe; - /** The template assigned to the node */ - template?: Maybe; - /** The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made. */ - title?: Maybe; - /** Get specific translation version of this object */ - translation?: Maybe; - /** List all translated versions of this post */ - translations?: Maybe>>; - /** The unique resource identifier path */ - uri?: Maybe; -}; - +export type AboutItem = ContentNode & + DatabaseIdentifier & + MenuItemLinkable & + Node & + NodeWithContentEditor & + NodeWithFeaturedImage & + NodeWithTemplate & + NodeWithTitle & + Previewable & + UniformResourceIdentifiable & + WithAcfContentAddons & { + __typename?: 'AboutItem' + /** + * The id field matches the WP_Post->ID field. + * @deprecated Deprecated in favor of the databaseId field + */ + aboutItemId: Scalars['Int']['output'] + /** The content of the post. */ + content?: Maybe + /** Fields of the ContentAddons ACF Field Group */ + contentAddons?: Maybe + /** Connection between the ContentNode type and the ContentType type */ + contentType?: Maybe + /** The name of the Content Type the node belongs to */ + contentTypeName: Scalars['String']['output'] + /** The unique identifier stored in the database */ + databaseId: Scalars['Int']['output'] + /** Post publishing date. */ + date?: Maybe + /** The publishing date set in GMT. */ + dateGmt?: Maybe + /** The desired slug of the post */ + desiredSlug?: Maybe + /** If a user has edited the node within the past 15 seconds, this will return the user that last edited. Null if the edit lock doesn't exist or is greater than 15 seconds */ + editingLockedBy?: Maybe + /** The RSS enclosure for the object */ + enclosure?: Maybe + /** Connection between the ContentNode type and the EnqueuedScript type */ + enqueuedScripts?: Maybe + /** Connection between the ContentNode type and the EnqueuedStylesheet type */ + enqueuedStylesheets?: Maybe + /** Connection between the NodeWithFeaturedImage type and the MediaItem type */ + featuredImage?: Maybe + /** The database identifier for the featured image node assigned to the content node */ + featuredImageDatabaseId?: Maybe + /** Globally unique ID of the featured image assigned to the node */ + featuredImageId?: Maybe + /** The global unique identifier for this post. This currently matches the value stored in WP_Post->guid and the guid column in the "post_objects" database table. */ + guid?: Maybe + /** Whether the about_fragments object is password protected. */ + hasPassword?: Maybe + /** The globally unique identifier of the about_fragments object. */ + id: Scalars['ID']['output'] + /** Whether the node is a Comment */ + isComment: Scalars['Boolean']['output'] + /** Whether the node is a Content Node */ + isContentNode: Scalars['Boolean']['output'] + /** Whether the node represents the front page. */ + isFrontPage: Scalars['Boolean']['output'] + /** Whether the node represents the blog page. */ + isPostsPage: Scalars['Boolean']['output'] + /** Whether the object is a node in the preview state */ + isPreview?: Maybe + /** Whether the object is restricted from the current viewer */ + isRestricted?: Maybe + /** Whether the node is a Term */ + isTermNode: Scalars['Boolean']['output'] + /** Polylang language */ + language?: Maybe + /** The user that most recently edited the node */ + lastEditedBy?: Maybe + /** The permalink of the post */ + link?: Maybe + /** The local modified time for a post. If a post was recently updated the modified field will change to match the corresponding time. */ + modified?: Maybe + /** The GMT modified time for a post. If a post was recently updated the modified field will change to match the corresponding time in GMT. */ + modifiedGmt?: Maybe + /** The password for the about_fragments object. */ + password?: Maybe + /** Connection between the AboutItem type and the AboutItem type */ + preview?: Maybe + /** The database id of the preview node */ + previewRevisionDatabaseId?: Maybe + /** Whether the object is a node in the preview state */ + previewRevisionId?: Maybe + /** The Yoast SEO data of the ContentNode */ + seo?: Maybe + /** The uri slug for the post. This is equivalent to the WP_Post->post_name field and the post_name column in the database for the "post_objects" table. */ + slug?: Maybe + /** The current status of the object */ + status?: Maybe + /** The template assigned to the node */ + template?: Maybe + /** The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made. */ + title?: Maybe + /** Get specific translation version of this object */ + translation?: Maybe + /** List all translated versions of this post */ + translations?: Maybe>> + /** The unique resource identifier path */ + uri?: Maybe + } /** The AboutItem type */ export type AboutItemContentArgs = { - format?: InputMaybe; -}; - + format?: InputMaybe +} /** The AboutItem type */ export type AboutItemEnqueuedScriptsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** The AboutItem type */ export type AboutItemEnqueuedStylesheetsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** The AboutItem type */ export type AboutItemTitleArgs = { - format?: InputMaybe; -}; - + format?: InputMaybe +} /** The AboutItem type */ export type AboutItemTranslationArgs = { - language: LanguageCodeEnum; -}; + language: LanguageCodeEnum +} /** Connection to AboutItem Nodes */ export type AboutItemConnection = { /** A list of edges (relational context) between RootQuery and connected AboutItem Nodes */ - edges: Array; + edges: Array /** A list of connected AboutItem Nodes */ - nodes: Array; + nodes: Array /** Information about pagination in a connection. */ - pageInfo: AboutItemConnectionPageInfo; -}; + pageInfo: AboutItemConnectionPageInfo +} /** Edge between a Node and a connected AboutItem */ export type AboutItemConnectionEdge = { /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; + cursor?: Maybe /** The connected AboutItem Node */ - node: AboutItem; -}; + node: AboutItem +} /** Page Info on the connected AboutItemConnectionEdge */ export type AboutItemConnectionPageInfo = { /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; + endCursor?: Maybe /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; + hasNextPage: Scalars['Boolean']['output'] /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; + hasPreviousPage: Scalars['Boolean']['output'] /** Raw schema for page */ - seo?: Maybe; + seo?: Maybe /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; + startCursor?: Maybe +} /** The Type of Identifier used to fetch a single resource. Default is ID. */ export enum AboutItemIdType { @@ -187,52 +196,58 @@ export enum AboutItemIdType { /** Identify a resource by the slug. Available to non-hierarchcial Types where the slug is a unique identifier. */ Slug = 'SLUG', /** Identify a resource by the URI. */ - Uri = 'URI' + Uri = 'URI', } /** Connection between the AboutItem type and the AboutItem type */ -export type AboutItemToPreviewConnectionEdge = AboutItemConnectionEdge & Edge & OneToOneConnection & { - __typename?: 'AboutItemToPreviewConnectionEdge'; - /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; - /** The node of the connection, without the edges */ - node: AboutItem; -}; +export type AboutItemToPreviewConnectionEdge = AboutItemConnectionEdge & + Edge & + OneToOneConnection & { + __typename?: 'AboutItemToPreviewConnectionEdge' + /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ + cursor?: Maybe + /** The node of the connection, without the edges */ + node: AboutItem + } /** Connection between the CustomerReview_Fields type and the ContentNode type */ -export type AcfContentNodeConnection = Connection & ContentNodeConnection & { - __typename?: 'AcfContentNodeConnection'; - /** Edges for the AcfContentNodeConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: AcfContentNodeConnectionPageInfo; -}; +export type AcfContentNodeConnection = Connection & + ContentNodeConnection & { + __typename?: 'AcfContentNodeConnection' + /** Edges for the AcfContentNodeConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: AcfContentNodeConnectionPageInfo + } /** An edge in a connection */ -export type AcfContentNodeConnectionEdge = ContentNodeConnectionEdge & Edge & { - __typename?: 'AcfContentNodeConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: ContentNode; -}; +export type AcfContentNodeConnectionEdge = ContentNodeConnectionEdge & + Edge & { + __typename?: 'AcfContentNodeConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: ContentNode + } /** Page Info on the "AcfContentNodeConnection" */ -export type AcfContentNodeConnectionPageInfo = ContentNodeConnectionPageInfo & PageInfo & WpPageInfo & { - __typename?: 'AcfContentNodeConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type AcfContentNodeConnectionPageInfo = ContentNodeConnectionPageInfo & + PageInfo & + WpPageInfo & { + __typename?: 'AcfContentNodeConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** A Field Group managed by ACF */ export type AcfFieldGroup = { @@ -240,8 +255,8 @@ export type AcfFieldGroup = { * The name of the field group * @deprecated Use __typename instead */ - fieldGroupName?: Maybe; -}; + fieldGroupName?: Maybe +} /** Fields associated with an ACF Field Group */ export type AcfFieldGroupFields = { @@ -249,44 +264,46 @@ export type AcfFieldGroupFields = { * The name of the field group * @deprecated Use __typename instead */ - fieldGroupName?: Maybe; -}; + fieldGroupName?: Maybe +} /** Connection between the ContentAddons_Fields type and the MediaItem type */ -export type AcfMediaItemConnectionEdge = Edge & MediaItemConnectionEdge & OneToOneConnection & { - __typename?: 'AcfMediaItemConnectionEdge'; - /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; - /** The node of the connection, without the edges */ - node: MediaItem; -}; +export type AcfMediaItemConnectionEdge = Edge & + MediaItemConnectionEdge & + OneToOneConnection & { + __typename?: 'AcfMediaItemConnectionEdge' + /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ + cursor?: Maybe + /** The node of the connection, without the edges */ + node: MediaItem + } /** Avatars are profile images for users. WordPress by default uses the Gravatar service to host and fetch avatars from. */ export type Avatar = { - __typename?: 'Avatar'; + __typename?: 'Avatar' /** URL for the default image or a default type. Accepts '404' (return a 404 instead of a default image), 'retro' (8bit), 'monsterid' (monster), 'wavatar' (cartoon face), 'indenticon' (the 'quilt'), 'mystery', 'mm', or 'mysteryman' (The Oyster Man), 'blank' (transparent GIF), or 'gravatar_default' (the Gravatar logo). */ - default?: Maybe; + default?: Maybe /** HTML attributes to insert in the IMG element. Is not sanitized. */ - extraAttr?: Maybe; + extraAttr?: Maybe /** Whether to always show the default image, never the Gravatar. */ - forceDefault?: Maybe; + forceDefault?: Maybe /** Whether the avatar was successfully found. */ - foundAvatar?: Maybe; + foundAvatar?: Maybe /** Height of the avatar image. */ - height?: Maybe; + height?: Maybe /** Whether the object is restricted from the current viewer */ - isRestricted?: Maybe; + isRestricted?: Maybe /** What rating to display avatars up to. Accepts 'G', 'PG', 'R', 'X', and are judged in that order. */ - rating?: Maybe; + rating?: Maybe /** Type of url scheme to use. Typically HTTP vs. HTTPS. */ - scheme?: Maybe; + scheme?: Maybe /** The size of the avatar in pixels. A value of 96 will match a 96px x 96px gravatar image. */ - size?: Maybe; + size?: Maybe /** URL for the gravatar image source. */ - url?: Maybe; + url?: Maybe /** Width of the avatar image. */ - width?: Maybe; -}; + width?: Maybe +} /** What rating to display avatars up to. Accepts 'G', 'PG', 'R', 'X', and are judged in that order. Default is the value of the 'avatar_rating' option */ export enum AvatarRatingEnum { @@ -297,175 +314,174 @@ export enum AvatarRatingEnum { /** Indicates an R level avatar rating level. */ R = 'R', /** Indicates an X level avatar rating level. */ - X = 'X' + X = 'X', } /** The category type */ -export type Category = DatabaseIdentifier & HierarchicalNode & HierarchicalTermNode & MenuItemLinkable & Node & TermNode & UniformResourceIdentifiable & { - __typename?: 'Category'; - /** The ancestors of the node. Default ordered as lowest (closest to the child) to highest (closest to the root). */ - ancestors?: Maybe; - /** - * The id field matches the WP_Post->ID field. - * @deprecated Deprecated in favor of databaseId - */ - categoryId?: Maybe; - /** Connection between the category type and its children categories. */ - children?: Maybe; - /** Connection between the Category type and the ContentNode type */ - contentNodes?: Maybe; - /** The number of objects connected to the object */ - count?: Maybe; - /** The unique identifier stored in the database */ - databaseId: Scalars['Int']['output']; - /** The description of the object */ - description?: Maybe; - /** Connection between the TermNode type and the EnqueuedScript type */ - enqueuedScripts?: Maybe; - /** Connection between the TermNode type and the EnqueuedStylesheet type */ - enqueuedStylesheets?: Maybe; - /** The globally unique ID for the object */ - id: Scalars['ID']['output']; - /** Whether the node is a Comment */ - isComment: Scalars['Boolean']['output']; - /** Whether the node is a Content Node */ - isContentNode: Scalars['Boolean']['output']; - /** Whether the node represents the front page. */ - isFrontPage: Scalars['Boolean']['output']; - /** Whether the node represents the blog page. */ - isPostsPage: Scalars['Boolean']['output']; - /** Whether the object is restricted from the current viewer */ - isRestricted?: Maybe; - /** Whether the node is a Term */ - isTermNode: Scalars['Boolean']['output']; - /** List available translations for this post */ - language?: Maybe; - /** The link to the term */ - link?: Maybe; - /** The human friendly name of the object. */ - name?: Maybe; - /** Connection between the category type and its parent category. */ - parent?: Maybe; - /** Database id of the parent node */ - parentDatabaseId?: Maybe; - /** The globally unique identifier of the parent node. */ - parentId?: Maybe; - /** Connection between the Category type and the post type */ - posts?: Maybe; - /** The Yoast SEO data of the Рубрики taxonomy. */ - seo?: Maybe; - /** An alphanumeric identifier for the object unique to its type. */ - slug?: Maybe; - /** Connection between the Category type and the Taxonomy type */ - taxonomy?: Maybe; - /** The name of the taxonomy that the object is associated with */ - taxonomyName?: Maybe; - /** The ID of the term group that this term object belongs to */ - termGroupId?: Maybe; - /** The taxonomy ID that the object is associated with */ - termTaxonomyId?: Maybe; - /** Get specific translation version of this object */ - translation?: Maybe; - /** List all translated versions of this term */ - translations?: Maybe>>; - /** The unique resource identifier path */ - uri?: Maybe; -}; - +export type Category = DatabaseIdentifier & + HierarchicalNode & + HierarchicalTermNode & + MenuItemLinkable & + Node & + TermNode & + UniformResourceIdentifiable & { + __typename?: 'Category' + /** The ancestors of the node. Default ordered as lowest (closest to the child) to highest (closest to the root). */ + ancestors?: Maybe + /** + * The id field matches the WP_Post->ID field. + * @deprecated Deprecated in favor of databaseId + */ + categoryId?: Maybe + /** Connection between the category type and its children categories. */ + children?: Maybe + /** Connection between the Category type and the ContentNode type */ + contentNodes?: Maybe + /** The number of objects connected to the object */ + count?: Maybe + /** The unique identifier stored in the database */ + databaseId: Scalars['Int']['output'] + /** The description of the object */ + description?: Maybe + /** Connection between the TermNode type and the EnqueuedScript type */ + enqueuedScripts?: Maybe + /** Connection between the TermNode type and the EnqueuedStylesheet type */ + enqueuedStylesheets?: Maybe + /** The globally unique ID for the object */ + id: Scalars['ID']['output'] + /** Whether the node is a Comment */ + isComment: Scalars['Boolean']['output'] + /** Whether the node is a Content Node */ + isContentNode: Scalars['Boolean']['output'] + /** Whether the node represents the front page. */ + isFrontPage: Scalars['Boolean']['output'] + /** Whether the node represents the blog page. */ + isPostsPage: Scalars['Boolean']['output'] + /** Whether the object is restricted from the current viewer */ + isRestricted?: Maybe + /** Whether the node is a Term */ + isTermNode: Scalars['Boolean']['output'] + /** List available translations for this post */ + language?: Maybe + /** The link to the term */ + link?: Maybe + /** The human friendly name of the object. */ + name?: Maybe + /** Connection between the category type and its parent category. */ + parent?: Maybe + /** Database id of the parent node */ + parentDatabaseId?: Maybe + /** The globally unique identifier of the parent node. */ + parentId?: Maybe + /** Connection between the Category type and the post type */ + posts?: Maybe + /** The Yoast SEO data of the Рубрики taxonomy. */ + seo?: Maybe + /** An alphanumeric identifier for the object unique to its type. */ + slug?: Maybe + /** Connection between the Category type and the Taxonomy type */ + taxonomy?: Maybe + /** The name of the taxonomy that the object is associated with */ + taxonomyName?: Maybe + /** The ID of the term group that this term object belongs to */ + termGroupId?: Maybe + /** The taxonomy ID that the object is associated with */ + termTaxonomyId?: Maybe + /** Get specific translation version of this object */ + translation?: Maybe + /** List all translated versions of this term */ + translations?: Maybe>> + /** The unique resource identifier path */ + uri?: Maybe + } /** The category type */ export type CategoryAncestorsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** The category type */ export type CategoryChildrenArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The category type */ export type CategoryContentNodesArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The category type */ export type CategoryEnqueuedScriptsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** The category type */ export type CategoryEnqueuedStylesheetsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** The category type */ export type CategoryPostsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The category type */ export type CategoryTranslationArgs = { - language: LanguageCodeEnum; -}; + language: LanguageCodeEnum +} /** Connection to category Nodes */ export type CategoryConnection = { /** A list of edges (relational context) between RootQuery and connected category Nodes */ - edges: Array; + edges: Array /** A list of connected category Nodes */ - nodes: Array; + nodes: Array /** Information about pagination in a connection. */ - pageInfo: CategoryConnectionPageInfo; -}; + pageInfo: CategoryConnectionPageInfo +} /** Edge between a Node and a connected category */ export type CategoryConnectionEdge = { /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; + cursor?: Maybe /** The connected category Node */ - node: Category; -}; + node: Category +} /** Page Info on the connected CategoryConnectionEdge */ export type CategoryConnectionPageInfo = { /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; + endCursor?: Maybe /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; + hasNextPage: Scalars['Boolean']['output'] /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; + hasPreviousPage: Scalars['Boolean']['output'] /** Raw schema for page */ - seo?: Maybe; + seo?: Maybe /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; + startCursor?: Maybe +} /** The Type of Identifier used to fetch a single resource. Default is ID. */ export enum CategoryIdType { @@ -478,469 +494,489 @@ export enum CategoryIdType { /** Url friendly name of the node */ Slug = 'SLUG', /** The URI for the node */ - Uri = 'URI' + Uri = 'URI', } /** Connection between the Category type and the category type */ -export type CategoryToAncestorsCategoryConnection = CategoryConnection & Connection & { - __typename?: 'CategoryToAncestorsCategoryConnection'; - /** Edges for the CategoryToAncestorsCategoryConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: CategoryToAncestorsCategoryConnectionPageInfo; -}; +export type CategoryToAncestorsCategoryConnection = CategoryConnection & + Connection & { + __typename?: 'CategoryToAncestorsCategoryConnection' + /** Edges for the CategoryToAncestorsCategoryConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: CategoryToAncestorsCategoryConnectionPageInfo + } /** An edge in a connection */ -export type CategoryToAncestorsCategoryConnectionEdge = CategoryConnectionEdge & Edge & { - __typename?: 'CategoryToAncestorsCategoryConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: Category; -}; +export type CategoryToAncestorsCategoryConnectionEdge = CategoryConnectionEdge & + Edge & { + __typename?: 'CategoryToAncestorsCategoryConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: Category + } /** Page Info on the "CategoryToAncestorsCategoryConnection" */ -export type CategoryToAncestorsCategoryConnectionPageInfo = CategoryConnectionPageInfo & PageInfo & WpPageInfo & { - __typename?: 'CategoryToAncestorsCategoryConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type CategoryToAncestorsCategoryConnectionPageInfo = CategoryConnectionPageInfo & + PageInfo & + WpPageInfo & { + __typename?: 'CategoryToAncestorsCategoryConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Connection between the Category type and the category type */ -export type CategoryToCategoryConnection = CategoryConnection & Connection & { - __typename?: 'CategoryToCategoryConnection'; - /** Edges for the CategoryToCategoryConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: CategoryToCategoryConnectionPageInfo; -}; +export type CategoryToCategoryConnection = CategoryConnection & + Connection & { + __typename?: 'CategoryToCategoryConnection' + /** Edges for the CategoryToCategoryConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: CategoryToCategoryConnectionPageInfo + } /** An edge in a connection */ -export type CategoryToCategoryConnectionEdge = CategoryConnectionEdge & Edge & { - __typename?: 'CategoryToCategoryConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: Category; -}; +export type CategoryToCategoryConnectionEdge = CategoryConnectionEdge & + Edge & { + __typename?: 'CategoryToCategoryConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: Category + } /** Page Info on the "CategoryToCategoryConnection" */ -export type CategoryToCategoryConnectionPageInfo = CategoryConnectionPageInfo & PageInfo & WpPageInfo & { - __typename?: 'CategoryToCategoryConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type CategoryToCategoryConnectionPageInfo = CategoryConnectionPageInfo & + PageInfo & + WpPageInfo & { + __typename?: 'CategoryToCategoryConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the CategoryToCategoryConnection connection */ export type CategoryToCategoryConnectionWhereArgs = { /** Unique cache key to be produced when this query is stored in an object cache. Default is 'core'. */ - cacheDomain?: InputMaybe; + cacheDomain?: InputMaybe /** Term ID to retrieve child terms of. If multiple taxonomies are passed, $child_of is ignored. Default 0. */ - childOf?: InputMaybe; + childOf?: InputMaybe /** True to limit results to terms that have no children. This parameter has no effect on non-hierarchical taxonomies. Default false. */ - childless?: InputMaybe; + childless?: InputMaybe /** Retrieve terms where the description is LIKE the input value. Default empty. */ - descriptionLike?: InputMaybe; + descriptionLike?: InputMaybe /** Array of term ids to exclude. If $include is non-empty, $exclude is ignored. Default empty array. */ - exclude?: InputMaybe>>; + exclude?: InputMaybe>> /** Array of term ids to exclude along with all of their descendant terms. If $include is non-empty, $exclude_tree is ignored. Default empty array. */ - excludeTree?: InputMaybe>>; + excludeTree?: InputMaybe>> /** Whether to hide terms not assigned to any posts. Accepts true or false. Default false */ - hideEmpty?: InputMaybe; + hideEmpty?: InputMaybe /** Whether to include terms that have non-empty descendants (even if $hide_empty is set to true). Default true. */ - hierarchical?: InputMaybe; + hierarchical?: InputMaybe /** Array of term ids to include. Default empty array. */ - include?: InputMaybe>>; + include?: InputMaybe>> /** Array of names to return term(s) for. Default empty. */ - name?: InputMaybe>>; + name?: InputMaybe>> /** Retrieve terms where the name is LIKE the input value. Default empty. */ - nameLike?: InputMaybe; + nameLike?: InputMaybe /** Array of object IDs. Results will be limited to terms associated with these objects. */ - objectIds?: InputMaybe>>; + objectIds?: InputMaybe>> /** Direction the connection should be ordered in */ - order?: InputMaybe; + order?: InputMaybe /** Field(s) to order terms by. Defaults to 'name'. */ - orderby?: InputMaybe; + orderby?: InputMaybe /** Whether to pad the quantity of a term's children in the quantity of each term's "count" object variable. Default false. */ - padCounts?: InputMaybe; + padCounts?: InputMaybe /** Parent term ID to retrieve direct-child terms of. Default empty. */ - parent?: InputMaybe; + parent?: InputMaybe /** Search criteria to match terms. Will be SQL-formatted with wildcards before and after. Default empty. */ - search?: InputMaybe; + search?: InputMaybe /** Array of slugs to return term(s) for. Default empty. */ - slug?: InputMaybe>>; + slug?: InputMaybe>> /** Array of term taxonomy IDs, to match when querying terms. */ - termTaxonomId?: InputMaybe>>; + termTaxonomId?: InputMaybe>> /** Array of term taxonomy IDs, to match when querying terms. */ - termTaxonomyId?: InputMaybe>>; + termTaxonomyId?: InputMaybe>> /** Whether to prime meta caches for matched terms. Default true. */ - updateTermMetaCache?: InputMaybe; -}; + updateTermMetaCache?: InputMaybe +} /** Connection between the Category type and the ContentNode type */ -export type CategoryToContentNodeConnection = Connection & ContentNodeConnection & { - __typename?: 'CategoryToContentNodeConnection'; - /** Edges for the CategoryToContentNodeConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: CategoryToContentNodeConnectionPageInfo; -}; +export type CategoryToContentNodeConnection = Connection & + ContentNodeConnection & { + __typename?: 'CategoryToContentNodeConnection' + /** Edges for the CategoryToContentNodeConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: CategoryToContentNodeConnectionPageInfo + } /** An edge in a connection */ -export type CategoryToContentNodeConnectionEdge = ContentNodeConnectionEdge & Edge & { - __typename?: 'CategoryToContentNodeConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: ContentNode; -}; +export type CategoryToContentNodeConnectionEdge = ContentNodeConnectionEdge & + Edge & { + __typename?: 'CategoryToContentNodeConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: ContentNode + } /** Page Info on the "CategoryToContentNodeConnection" */ -export type CategoryToContentNodeConnectionPageInfo = ContentNodeConnectionPageInfo & PageInfo & WpPageInfo & { - __typename?: 'CategoryToContentNodeConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type CategoryToContentNodeConnectionPageInfo = ContentNodeConnectionPageInfo & + PageInfo & + WpPageInfo & { + __typename?: 'CategoryToContentNodeConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the CategoryToContentNodeConnection connection */ export type CategoryToContentNodeConnectionWhereArgs = { /** The Types of content to filter */ - contentTypes?: InputMaybe>>; + contentTypes?: InputMaybe>> /** Filter the connection based on dates */ - dateQuery?: InputMaybe; + dateQuery?: InputMaybe /** True for objects with passwords; False for objects without passwords; null for all objects with or without passwords */ - hasPassword?: InputMaybe; + hasPassword?: InputMaybe /** Specific database ID of the object */ - id?: InputMaybe; + id?: InputMaybe /** Array of IDs for the objects to retrieve */ - in?: InputMaybe>>; + in?: InputMaybe>> /** Get objects with a specific mimeType property */ - mimeType?: InputMaybe; + mimeType?: InputMaybe /** Slug / post_name of the object */ - name?: InputMaybe; + name?: InputMaybe /** Specify objects to retrieve. Use slugs */ - nameIn?: InputMaybe>>; + nameIn?: InputMaybe>> /** Specify IDs NOT to retrieve. If this is used in the same query as "in", it will be ignored */ - notIn?: InputMaybe>>; + notIn?: InputMaybe>> /** What parameter to use to order the objects by. */ - orderby?: InputMaybe>>; + orderby?: InputMaybe>> /** Use ID to return only children. Use 0 to return only top-level items */ - parent?: InputMaybe; + parent?: InputMaybe /** Specify objects whose parent is in an array */ - parentIn?: InputMaybe>>; + parentIn?: InputMaybe>> /** Specify posts whose parent is not in an array */ - parentNotIn?: InputMaybe>>; + parentNotIn?: InputMaybe>> /** Show posts with a specific password. */ - password?: InputMaybe; + password?: InputMaybe /** Show Posts based on a keyword search */ - search?: InputMaybe; + search?: InputMaybe /** Retrieve posts where post status is in an array. */ - stati?: InputMaybe>>; + stati?: InputMaybe>> /** Show posts with a specific status. */ - status?: InputMaybe; + status?: InputMaybe /** Title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** Connection between the Category type and the category type */ -export type CategoryToParentCategoryConnectionEdge = CategoryConnectionEdge & Edge & OneToOneConnection & { - __typename?: 'CategoryToParentCategoryConnectionEdge'; - /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; - /** The node of the connection, without the edges */ - node: Category; -}; +export type CategoryToParentCategoryConnectionEdge = CategoryConnectionEdge & + Edge & + OneToOneConnection & { + __typename?: 'CategoryToParentCategoryConnectionEdge' + /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ + cursor?: Maybe + /** The node of the connection, without the edges */ + node: Category + } /** Connection between the Category type and the post type */ -export type CategoryToPostConnection = Connection & PostConnection & { - __typename?: 'CategoryToPostConnection'; - /** Edges for the CategoryToPostConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: CategoryToPostConnectionPageInfo; -}; +export type CategoryToPostConnection = Connection & + PostConnection & { + __typename?: 'CategoryToPostConnection' + /** Edges for the CategoryToPostConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: CategoryToPostConnectionPageInfo + } /** An edge in a connection */ -export type CategoryToPostConnectionEdge = Edge & PostConnectionEdge & { - __typename?: 'CategoryToPostConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: Post; -}; +export type CategoryToPostConnectionEdge = Edge & + PostConnectionEdge & { + __typename?: 'CategoryToPostConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: Post + } /** Page Info on the "CategoryToPostConnection" */ -export type CategoryToPostConnectionPageInfo = PageInfo & PostConnectionPageInfo & WpPageInfo & { - __typename?: 'CategoryToPostConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type CategoryToPostConnectionPageInfo = PageInfo & + PostConnectionPageInfo & + WpPageInfo & { + __typename?: 'CategoryToPostConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the CategoryToPostConnection connection */ export type CategoryToPostConnectionWhereArgs = { /** The user that's connected as the author of the object. Use the userId for the author object. */ - author?: InputMaybe; + author?: InputMaybe /** Find objects connected to author(s) in the array of author's userIds */ - authorIn?: InputMaybe>>; + authorIn?: InputMaybe>> /** Find objects connected to the author by the author's nicename */ - authorName?: InputMaybe; + authorName?: InputMaybe /** Find objects NOT connected to author(s) in the array of author's userIds */ - authorNotIn?: InputMaybe>>; + authorNotIn?: InputMaybe>> /** Category ID */ - categoryId?: InputMaybe; + categoryId?: InputMaybe /** Array of category IDs, used to display objects from one category OR another */ - categoryIn?: InputMaybe>>; + categoryIn?: InputMaybe>> /** Use Category Slug */ - categoryName?: InputMaybe; + categoryName?: InputMaybe /** Array of category IDs, used to display objects from one category OR another */ - categoryNotIn?: InputMaybe>>; + categoryNotIn?: InputMaybe>> /** Filter the connection based on dates */ - dateQuery?: InputMaybe; + dateQuery?: InputMaybe /** True for objects with passwords; False for objects without passwords; null for all objects with or without passwords */ - hasPassword?: InputMaybe; + hasPassword?: InputMaybe /** Specific database ID of the object */ - id?: InputMaybe; + id?: InputMaybe /** Array of IDs for the objects to retrieve */ - in?: InputMaybe>>; + in?: InputMaybe>> /** Get objects with a specific mimeType property */ - mimeType?: InputMaybe; + mimeType?: InputMaybe /** Slug / post_name of the object */ - name?: InputMaybe; + name?: InputMaybe /** Specify objects to retrieve. Use slugs */ - nameIn?: InputMaybe>>; + nameIn?: InputMaybe>> /** Specify IDs NOT to retrieve. If this is used in the same query as "in", it will be ignored */ - notIn?: InputMaybe>>; + notIn?: InputMaybe>> /** What parameter to use to order the objects by. */ - orderby?: InputMaybe>>; + orderby?: InputMaybe>> /** Use ID to return only children. Use 0 to return only top-level items */ - parent?: InputMaybe; + parent?: InputMaybe /** Specify objects whose parent is in an array */ - parentIn?: InputMaybe>>; + parentIn?: InputMaybe>> /** Specify posts whose parent is not in an array */ - parentNotIn?: InputMaybe>>; + parentNotIn?: InputMaybe>> /** Show posts with a specific password. */ - password?: InputMaybe; + password?: InputMaybe /** Show Posts based on a keyword search */ - search?: InputMaybe; + search?: InputMaybe /** Retrieve posts where post status is in an array. */ - stati?: InputMaybe>>; + stati?: InputMaybe>> /** Show posts with a specific status. */ - status?: InputMaybe; + status?: InputMaybe /** Tag Slug */ - tag?: InputMaybe; + tag?: InputMaybe /** Use Tag ID */ - tagId?: InputMaybe; + tagId?: InputMaybe /** Array of tag IDs, used to display objects from one tag OR another */ - tagIn?: InputMaybe>>; + tagIn?: InputMaybe>> /** Array of tag IDs, used to display objects from one tag OR another */ - tagNotIn?: InputMaybe>>; + tagNotIn?: InputMaybe>> /** Array of tag slugs, used to display objects from one tag AND another */ - tagSlugAnd?: InputMaybe>>; + tagSlugAnd?: InputMaybe>> /** Array of tag slugs, used to include objects in ANY specified tags */ - tagSlugIn?: InputMaybe>>; + tagSlugIn?: InputMaybe>> /** Title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** Connection between the Category type and the Taxonomy type */ -export type CategoryToTaxonomyConnectionEdge = Edge & OneToOneConnection & TaxonomyConnectionEdge & { - __typename?: 'CategoryToTaxonomyConnectionEdge'; - /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; - /** The node of the connection, without the edges */ - node: Taxonomy; -}; +export type CategoryToTaxonomyConnectionEdge = Edge & + OneToOneConnection & + TaxonomyConnectionEdge & { + __typename?: 'CategoryToTaxonomyConnectionEdge' + /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ + cursor?: Maybe + /** The node of the connection, without the edges */ + node: Taxonomy + } /** A Comment object */ -export type Comment = DatabaseIdentifier & Node & UniformResourceIdentifiable & { - __typename?: 'Comment'; - /** User agent used to post the comment. This field is equivalent to WP_Comment->comment_agent and the value matching the "comment_agent" column in SQL. */ - agent?: Maybe; - /** - * The approval status of the comment. This field is equivalent to WP_Comment->comment_approved and the value matching the "comment_approved" column in SQL. - * @deprecated Deprecated in favor of the `status` field - */ - approved?: Maybe; - /** The author of the comment */ - author?: Maybe; - /** IP address for the author. This field is equivalent to WP_Comment->comment_author_IP and the value matching the "comment_author_IP" column in SQL. */ - authorIp?: Maybe; - /** - * ID for the comment, unique among comments. - * @deprecated Deprecated in favor of databaseId - */ - commentId?: Maybe; - /** Connection between the Comment type and the ContentNode type */ - commentedOn?: Maybe; - /** Content of the comment. This field is equivalent to WP_Comment->comment_content and the value matching the "comment_content" column in SQL. */ - content?: Maybe; - /** The unique identifier stored in the database */ - databaseId: Scalars['Int']['output']; - /** Date the comment was posted in local time. This field is equivalent to WP_Comment->date and the value matching the "date" column in SQL. */ - date?: Maybe; - /** Date the comment was posted in GMT. This field is equivalent to WP_Comment->date_gmt and the value matching the "date_gmt" column in SQL. */ - dateGmt?: Maybe; - /** The globally unique identifier for the comment object */ - id: Scalars['ID']['output']; - /** Whether the node is a Comment */ - isComment: Scalars['Boolean']['output']; - /** Whether the node is a Content Node */ - isContentNode: Scalars['Boolean']['output']; - /** Whether the node represents the front page. */ - isFrontPage: Scalars['Boolean']['output']; - /** Whether the node represents the blog page. */ - isPostsPage: Scalars['Boolean']['output']; - /** Whether the object is restricted from the current viewer */ - isRestricted?: Maybe; - /** Whether the node is a Term */ - isTermNode: Scalars['Boolean']['output']; - /** Karma value for the comment. This field is equivalent to WP_Comment->comment_karma and the value matching the "comment_karma" column in SQL. */ - karma?: Maybe; - /** The permalink of the comment */ - link?: Maybe; - /** Connection between the Comment type and the Comment type */ - parent?: Maybe; - /** The database id of the parent comment node or null if it is the root comment */ - parentDatabaseId?: Maybe; - /** The globally unique identifier of the parent comment node. */ - parentId?: Maybe; - /** Connection between the Comment type and the Comment type */ - replies?: Maybe; - /** The approval status of the comment. This field is equivalent to WP_Comment->comment_approved and the value matching the "comment_approved" column in SQL. */ - status?: Maybe; - /** Type of comment. This field is equivalent to WP_Comment->comment_type and the value matching the "comment_type" column in SQL. */ - type?: Maybe; - /** The unique resource identifier path */ - uri?: Maybe; -}; - +export type Comment = DatabaseIdentifier & + Node & + UniformResourceIdentifiable & { + __typename?: 'Comment' + /** User agent used to post the comment. This field is equivalent to WP_Comment->comment_agent and the value matching the "comment_agent" column in SQL. */ + agent?: Maybe + /** + * The approval status of the comment. This field is equivalent to WP_Comment->comment_approved and the value matching the "comment_approved" column in SQL. + * @deprecated Deprecated in favor of the `status` field + */ + approved?: Maybe + /** The author of the comment */ + author?: Maybe + /** IP address for the author. This field is equivalent to WP_Comment->comment_author_IP and the value matching the "comment_author_IP" column in SQL. */ + authorIp?: Maybe + /** + * ID for the comment, unique among comments. + * @deprecated Deprecated in favor of databaseId + */ + commentId?: Maybe + /** Connection between the Comment type and the ContentNode type */ + commentedOn?: Maybe + /** Content of the comment. This field is equivalent to WP_Comment->comment_content and the value matching the "comment_content" column in SQL. */ + content?: Maybe + /** The unique identifier stored in the database */ + databaseId: Scalars['Int']['output'] + /** Date the comment was posted in local time. This field is equivalent to WP_Comment->date and the value matching the "date" column in SQL. */ + date?: Maybe + /** Date the comment was posted in GMT. This field is equivalent to WP_Comment->date_gmt and the value matching the "date_gmt" column in SQL. */ + dateGmt?: Maybe + /** The globally unique identifier for the comment object */ + id: Scalars['ID']['output'] + /** Whether the node is a Comment */ + isComment: Scalars['Boolean']['output'] + /** Whether the node is a Content Node */ + isContentNode: Scalars['Boolean']['output'] + /** Whether the node represents the front page. */ + isFrontPage: Scalars['Boolean']['output'] + /** Whether the node represents the blog page. */ + isPostsPage: Scalars['Boolean']['output'] + /** Whether the object is restricted from the current viewer */ + isRestricted?: Maybe + /** Whether the node is a Term */ + isTermNode: Scalars['Boolean']['output'] + /** Karma value for the comment. This field is equivalent to WP_Comment->comment_karma and the value matching the "comment_karma" column in SQL. */ + karma?: Maybe + /** The permalink of the comment */ + link?: Maybe + /** Connection between the Comment type and the Comment type */ + parent?: Maybe + /** The database id of the parent comment node or null if it is the root comment */ + parentDatabaseId?: Maybe + /** The globally unique identifier of the parent comment node. */ + parentId?: Maybe + /** Connection between the Comment type and the Comment type */ + replies?: Maybe + /** The approval status of the comment. This field is equivalent to WP_Comment->comment_approved and the value matching the "comment_approved" column in SQL. */ + status?: Maybe + /** Type of comment. This field is equivalent to WP_Comment->comment_type and the value matching the "comment_type" column in SQL. */ + type?: Maybe + /** The unique resource identifier path */ + uri?: Maybe + } /** A Comment object */ export type CommentContentArgs = { - format?: InputMaybe; -}; - + format?: InputMaybe +} /** A Comment object */ export type CommentParentArgs = { - where?: InputMaybe; -}; - + where?: InputMaybe +} /** A Comment object */ export type CommentRepliesArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** A Comment Author object */ -export type CommentAuthor = Commenter & DatabaseIdentifier & Node & { - __typename?: 'CommentAuthor'; - /** Avatar object for user. The avatar object can be retrieved in different sizes by specifying the size argument. */ - avatar?: Maybe; - /** The unique identifier stored in the database */ - databaseId: Scalars['Int']['output']; - /** The email for the comment author */ - email?: Maybe; - /** The globally unique identifier for the comment author object */ - id: Scalars['ID']['output']; - /** Whether the object is restricted from the current viewer */ - isRestricted?: Maybe; - /** The name for the comment author. */ - name?: Maybe; - /** The url the comment author. */ - url?: Maybe; -}; - +export type CommentAuthor = Commenter & + DatabaseIdentifier & + Node & { + __typename?: 'CommentAuthor' + /** Avatar object for user. The avatar object can be retrieved in different sizes by specifying the size argument. */ + avatar?: Maybe + /** The unique identifier stored in the database */ + databaseId: Scalars['Int']['output'] + /** The email for the comment author */ + email?: Maybe + /** The globally unique identifier for the comment author object */ + id: Scalars['ID']['output'] + /** Whether the object is restricted from the current viewer */ + isRestricted?: Maybe + /** The name for the comment author. */ + name?: Maybe + /** The url the comment author. */ + url?: Maybe + } /** A Comment Author object */ export type CommentAuthorAvatarArgs = { - forceDefault?: InputMaybe; - rating?: InputMaybe; - size?: InputMaybe; -}; + forceDefault?: InputMaybe + rating?: InputMaybe + size?: InputMaybe +} /** Connection to Comment Nodes */ export type CommentConnection = { /** A list of edges (relational context) between RootQuery and connected Comment Nodes */ - edges: Array; + edges: Array /** A list of connected Comment Nodes */ - nodes: Array; + nodes: Array /** Information about pagination in a connection. */ - pageInfo: CommentConnectionPageInfo; -}; + pageInfo: CommentConnectionPageInfo +} /** Edge between a Node and a connected Comment */ export type CommentConnectionEdge = { /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; + cursor?: Maybe /** The connected Comment Node */ - node: Comment; -}; + node: Comment +} /** Page Info on the connected CommentConnectionEdge */ export type CommentConnectionPageInfo = { /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; + endCursor?: Maybe /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; + hasNextPage: Scalars['Boolean']['output'] /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; + hasPreviousPage: Scalars['Boolean']['output'] /** Raw schema for page */ - seo?: Maybe; + seo?: Maybe /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; + startCursor?: Maybe +} /** The Type of Identifier used to fetch a single comment node. Default is "ID". To be used along with the "id" field. */ export enum CommentNodeIdTypeEnum { /** Identify a resource by the Database ID. */ DatabaseId = 'DATABASE_ID', /** Identify a resource by the (hashed) Global ID. */ - Id = 'ID' + Id = 'ID', } /** The status of the comment object. */ @@ -952,220 +988,230 @@ export enum CommentStatusEnum { /** Comments with the Спам status */ Spam = 'SPAM', /** Comments with the Удалён status */ - Trash = 'TRASH' + Trash = 'TRASH', } /** Connection between the Comment type and the Comment type */ -export type CommentToCommentConnection = CommentConnection & Connection & { - __typename?: 'CommentToCommentConnection'; - /** Edges for the CommentToCommentConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: CommentToCommentConnectionPageInfo; -}; +export type CommentToCommentConnection = CommentConnection & + Connection & { + __typename?: 'CommentToCommentConnection' + /** Edges for the CommentToCommentConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: CommentToCommentConnectionPageInfo + } /** An edge in a connection */ -export type CommentToCommentConnectionEdge = CommentConnectionEdge & Edge & { - __typename?: 'CommentToCommentConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: Comment; -}; +export type CommentToCommentConnectionEdge = CommentConnectionEdge & + Edge & { + __typename?: 'CommentToCommentConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: Comment + } /** Page Info on the "CommentToCommentConnection" */ -export type CommentToCommentConnectionPageInfo = CommentConnectionPageInfo & PageInfo & WpPageInfo & { - __typename?: 'CommentToCommentConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type CommentToCommentConnectionPageInfo = CommentConnectionPageInfo & + PageInfo & + WpPageInfo & { + __typename?: 'CommentToCommentConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the CommentToCommentConnection connection */ export type CommentToCommentConnectionWhereArgs = { /** Comment author email address. */ - authorEmail?: InputMaybe; + authorEmail?: InputMaybe /** Array of author IDs to include comments for. */ - authorIn?: InputMaybe>>; + authorIn?: InputMaybe>> /** Array of author IDs to exclude comments for. */ - authorNotIn?: InputMaybe>>; + authorNotIn?: InputMaybe>> /** Comment author URL. */ - authorUrl?: InputMaybe; + authorUrl?: InputMaybe /** Array of comment IDs to include. */ - commentIn?: InputMaybe>>; + commentIn?: InputMaybe>> /** Array of IDs of users whose unapproved comments will be returned by the query regardless of status. */ - commentNotIn?: InputMaybe>>; + commentNotIn?: InputMaybe>> /** Include comments of a given type. */ - commentType?: InputMaybe; + commentType?: InputMaybe /** Include comments from a given array of comment types. */ - commentTypeIn?: InputMaybe>>; + commentTypeIn?: InputMaybe>> /** Exclude comments from a given array of comment types. */ - commentTypeNotIn?: InputMaybe; + commentTypeNotIn?: InputMaybe /** Content object author ID to limit results by. */ - contentAuthor?: InputMaybe>>; + contentAuthor?: InputMaybe>> /** Array of author IDs to retrieve comments for. */ - contentAuthorIn?: InputMaybe>>; + contentAuthorIn?: InputMaybe>> /** Array of author IDs *not* to retrieve comments for. */ - contentAuthorNotIn?: InputMaybe>>; + contentAuthorNotIn?: InputMaybe>> /** Limit results to those affiliated with a given content object ID. */ - contentId?: InputMaybe; + contentId?: InputMaybe /** Array of content object IDs to include affiliated comments for. */ - contentIdIn?: InputMaybe>>; + contentIdIn?: InputMaybe>> /** Array of content object IDs to exclude affiliated comments for. */ - contentIdNotIn?: InputMaybe>>; + contentIdNotIn?: InputMaybe>> /** Content object name (i.e. slug ) to retrieve affiliated comments for. */ - contentName?: InputMaybe; + contentName?: InputMaybe /** Content Object parent ID to retrieve affiliated comments for. */ - contentParent?: InputMaybe; + contentParent?: InputMaybe /** Array of content object statuses to retrieve affiliated comments for. Pass 'any' to match any value. */ - contentStatus?: InputMaybe>>; + contentStatus?: InputMaybe>> /** Content object type or array of types to retrieve affiliated comments for. Pass 'any' to match any value. */ - contentType?: InputMaybe>>; + contentType?: InputMaybe>> /** Array of IDs or email addresses of users whose unapproved comments will be returned by the query regardless of $status. Default empty */ - includeUnapproved?: InputMaybe>>; + includeUnapproved?: InputMaybe>> /** Karma score to retrieve matching comments for. */ - karma?: InputMaybe; + karma?: InputMaybe /** The cardinality of the order of the connection */ - order?: InputMaybe; + order?: InputMaybe /** Field to order the comments by. */ - orderby?: InputMaybe; + orderby?: InputMaybe /** Parent ID of comment to retrieve children of. */ - parent?: InputMaybe; + parent?: InputMaybe /** Array of parent IDs of comments to retrieve children for. */ - parentIn?: InputMaybe>>; + parentIn?: InputMaybe>> /** Array of parent IDs of comments *not* to retrieve children for. */ - parentNotIn?: InputMaybe>>; + parentNotIn?: InputMaybe>> /** Search term(s) to retrieve matching comments for. */ - search?: InputMaybe; + search?: InputMaybe /** Comment status to limit results by. */ - status?: InputMaybe; + status?: InputMaybe /** Include comments for a specific user ID. */ - userId?: InputMaybe; -}; + userId?: InputMaybe +} /** Connection between the Comment type and the Commenter type */ -export type CommentToCommenterConnectionEdge = CommenterConnectionEdge & Edge & OneToOneConnection & { - __typename?: 'CommentToCommenterConnectionEdge'; - /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; - /** The node of the connection, without the edges */ - node: Commenter; -}; +export type CommentToCommenterConnectionEdge = CommenterConnectionEdge & + Edge & + OneToOneConnection & { + __typename?: 'CommentToCommenterConnectionEdge' + /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ + cursor?: Maybe + /** The node of the connection, without the edges */ + node: Commenter + } /** Connection between the Comment type and the ContentNode type */ -export type CommentToContentNodeConnectionEdge = ContentNodeConnectionEdge & Edge & OneToOneConnection & { - __typename?: 'CommentToContentNodeConnectionEdge'; - /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; - /** The node of the connection, without the edges */ - node: ContentNode; -}; +export type CommentToContentNodeConnectionEdge = ContentNodeConnectionEdge & + Edge & + OneToOneConnection & { + __typename?: 'CommentToContentNodeConnectionEdge' + /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ + cursor?: Maybe + /** The node of the connection, without the edges */ + node: ContentNode + } /** Connection between the Comment type and the Comment type */ -export type CommentToParentCommentConnectionEdge = CommentConnectionEdge & Edge & OneToOneConnection & { - __typename?: 'CommentToParentCommentConnectionEdge'; - /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; - /** The node of the connection, without the edges */ - node: Comment; -}; +export type CommentToParentCommentConnectionEdge = CommentConnectionEdge & + Edge & + OneToOneConnection & { + __typename?: 'CommentToParentCommentConnectionEdge' + /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ + cursor?: Maybe + /** The node of the connection, without the edges */ + node: Comment + } /** Arguments for filtering the CommentToParentCommentConnection connection */ export type CommentToParentCommentConnectionWhereArgs = { /** Comment author email address. */ - authorEmail?: InputMaybe; + authorEmail?: InputMaybe /** Array of author IDs to include comments for. */ - authorIn?: InputMaybe>>; + authorIn?: InputMaybe>> /** Array of author IDs to exclude comments for. */ - authorNotIn?: InputMaybe>>; + authorNotIn?: InputMaybe>> /** Comment author URL. */ - authorUrl?: InputMaybe; + authorUrl?: InputMaybe /** Array of comment IDs to include. */ - commentIn?: InputMaybe>>; + commentIn?: InputMaybe>> /** Array of IDs of users whose unapproved comments will be returned by the query regardless of status. */ - commentNotIn?: InputMaybe>>; + commentNotIn?: InputMaybe>> /** Include comments of a given type. */ - commentType?: InputMaybe; + commentType?: InputMaybe /** Include comments from a given array of comment types. */ - commentTypeIn?: InputMaybe>>; + commentTypeIn?: InputMaybe>> /** Exclude comments from a given array of comment types. */ - commentTypeNotIn?: InputMaybe; + commentTypeNotIn?: InputMaybe /** Content object author ID to limit results by. */ - contentAuthor?: InputMaybe>>; + contentAuthor?: InputMaybe>> /** Array of author IDs to retrieve comments for. */ - contentAuthorIn?: InputMaybe>>; + contentAuthorIn?: InputMaybe>> /** Array of author IDs *not* to retrieve comments for. */ - contentAuthorNotIn?: InputMaybe>>; + contentAuthorNotIn?: InputMaybe>> /** Limit results to those affiliated with a given content object ID. */ - contentId?: InputMaybe; + contentId?: InputMaybe /** Array of content object IDs to include affiliated comments for. */ - contentIdIn?: InputMaybe>>; + contentIdIn?: InputMaybe>> /** Array of content object IDs to exclude affiliated comments for. */ - contentIdNotIn?: InputMaybe>>; + contentIdNotIn?: InputMaybe>> /** Content object name (i.e. slug ) to retrieve affiliated comments for. */ - contentName?: InputMaybe; + contentName?: InputMaybe /** Content Object parent ID to retrieve affiliated comments for. */ - contentParent?: InputMaybe; + contentParent?: InputMaybe /** Array of content object statuses to retrieve affiliated comments for. Pass 'any' to match any value. */ - contentStatus?: InputMaybe>>; + contentStatus?: InputMaybe>> /** Content object type or array of types to retrieve affiliated comments for. Pass 'any' to match any value. */ - contentType?: InputMaybe>>; + contentType?: InputMaybe>> /** Array of IDs or email addresses of users whose unapproved comments will be returned by the query regardless of $status. Default empty */ - includeUnapproved?: InputMaybe>>; + includeUnapproved?: InputMaybe>> /** Karma score to retrieve matching comments for. */ - karma?: InputMaybe; + karma?: InputMaybe /** The cardinality of the order of the connection */ - order?: InputMaybe; + order?: InputMaybe /** Field to order the comments by. */ - orderby?: InputMaybe; + orderby?: InputMaybe /** Parent ID of comment to retrieve children of. */ - parent?: InputMaybe; + parent?: InputMaybe /** Array of parent IDs of comments to retrieve children for. */ - parentIn?: InputMaybe>>; + parentIn?: InputMaybe>> /** Array of parent IDs of comments *not* to retrieve children for. */ - parentNotIn?: InputMaybe>>; + parentNotIn?: InputMaybe>> /** Search term(s) to retrieve matching comments for. */ - search?: InputMaybe; + search?: InputMaybe /** Comment status to limit results by. */ - status?: InputMaybe; + status?: InputMaybe /** Include comments for a specific user ID. */ - userId?: InputMaybe; -}; + userId?: InputMaybe +} /** The author of a comment */ export type Commenter = { /** Avatar object for user. The avatar object can be retrieved in different sizes by specifying the size argument. */ - avatar?: Maybe; + avatar?: Maybe /** Identifies the primary key from the database. */ - databaseId: Scalars['Int']['output']; + databaseId: Scalars['Int']['output'] /** The email address of the author of a comment. */ - email?: Maybe; + email?: Maybe /** The globally unique identifier for the comment author. */ - id: Scalars['ID']['output']; + id: Scalars['ID']['output'] /** Whether the author information is considered restricted. (not fully public) */ - isRestricted?: Maybe; + isRestricted?: Maybe /** The name of the author of a comment. */ - name?: Maybe; + name?: Maybe /** The url of the author of a comment. */ - url?: Maybe; -}; + url?: Maybe +} /** Edge between a Node and a connected Commenter */ export type CommenterConnectionEdge = { /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; + cursor?: Maybe /** The connected Commenter Node */ - node: Commenter; -}; + node: Commenter +} /** Options for ordering the connection */ export enum CommentsConnectionOrderbyEnum { @@ -1200,156 +1246,161 @@ export enum CommentsConnectionOrderbyEnum { /** Order by the the type of comment, such as 'comment', 'pingback', or 'trackback'. */ CommentType = 'COMMENT_TYPE', /** Order by the user ID. */ - UserId = 'USER_ID' + UserId = 'USER_ID', } /** The CommonFragment type */ -export type CommonFragment = ContentNode & DatabaseIdentifier & MenuItemLinkable & Node & NodeWithContentEditor & NodeWithFeaturedImage & NodeWithTemplate & NodeWithTitle & Previewable & UniformResourceIdentifiable & { - __typename?: 'CommonFragment'; - /** - * The id field matches the WP_Post->ID field. - * @deprecated Deprecated in favor of the databaseId field - */ - commonFragmentId: Scalars['Int']['output']; - /** The content of the post. */ - content?: Maybe; - /** Connection between the ContentNode type and the ContentType type */ - contentType?: Maybe; - /** The name of the Content Type the node belongs to */ - contentTypeName: Scalars['String']['output']; - /** The unique identifier stored in the database */ - databaseId: Scalars['Int']['output']; - /** Post publishing date. */ - date?: Maybe; - /** The publishing date set in GMT. */ - dateGmt?: Maybe; - /** The desired slug of the post */ - desiredSlug?: Maybe; - /** If a user has edited the node within the past 15 seconds, this will return the user that last edited. Null if the edit lock doesn't exist or is greater than 15 seconds */ - editingLockedBy?: Maybe; - /** The RSS enclosure for the object */ - enclosure?: Maybe; - /** Connection between the ContentNode type and the EnqueuedScript type */ - enqueuedScripts?: Maybe; - /** Connection between the ContentNode type and the EnqueuedStylesheet type */ - enqueuedStylesheets?: Maybe; - /** Connection between the NodeWithFeaturedImage type and the MediaItem type */ - featuredImage?: Maybe; - /** The database identifier for the featured image node assigned to the content node */ - featuredImageDatabaseId?: Maybe; - /** Globally unique ID of the featured image assigned to the node */ - featuredImageId?: Maybe; - /** The global unique identifier for this post. This currently matches the value stored in WP_Post->guid and the guid column in the "post_objects" database table. */ - guid?: Maybe; - /** Whether the general_fragments object is password protected. */ - hasPassword?: Maybe; - /** The globally unique identifier of the general_fragments object. */ - id: Scalars['ID']['output']; - /** Whether the node is a Comment */ - isComment: Scalars['Boolean']['output']; - /** Whether the node is a Content Node */ - isContentNode: Scalars['Boolean']['output']; - /** Whether the node represents the front page. */ - isFrontPage: Scalars['Boolean']['output']; - /** Whether the node represents the blog page. */ - isPostsPage: Scalars['Boolean']['output']; - /** Whether the object is a node in the preview state */ - isPreview?: Maybe; - /** Whether the object is restricted from the current viewer */ - isRestricted?: Maybe; - /** Whether the node is a Term */ - isTermNode: Scalars['Boolean']['output']; - /** The user that most recently edited the node */ - lastEditedBy?: Maybe; - /** The permalink of the post */ - link?: Maybe; - /** The local modified time for a post. If a post was recently updated the modified field will change to match the corresponding time. */ - modified?: Maybe; - /** The GMT modified time for a post. If a post was recently updated the modified field will change to match the corresponding time in GMT. */ - modifiedGmt?: Maybe; - /** The password for the general_fragments object. */ - password?: Maybe; - /** Connection between the CommonFragment type and the CommonFragment type */ - preview?: Maybe; - /** The database id of the preview node */ - previewRevisionDatabaseId?: Maybe; - /** Whether the object is a node in the preview state */ - previewRevisionId?: Maybe; - /** The Yoast SEO data of the ContentNode */ - seo?: Maybe; - /** The uri slug for the post. This is equivalent to the WP_Post->post_name field and the post_name column in the database for the "post_objects" table. */ - slug?: Maybe; - /** The current status of the object */ - status?: Maybe; - /** The template assigned to the node */ - template?: Maybe; - /** The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made. */ - title?: Maybe; - /** The unique resource identifier path */ - uri?: Maybe; -}; - +export type CommonFragment = ContentNode & + DatabaseIdentifier & + MenuItemLinkable & + Node & + NodeWithContentEditor & + NodeWithFeaturedImage & + NodeWithTemplate & + NodeWithTitle & + Previewable & + UniformResourceIdentifiable & { + __typename?: 'CommonFragment' + /** + * The id field matches the WP_Post->ID field. + * @deprecated Deprecated in favor of the databaseId field + */ + commonFragmentId: Scalars['Int']['output'] + /** The content of the post. */ + content?: Maybe + /** Connection between the ContentNode type and the ContentType type */ + contentType?: Maybe + /** The name of the Content Type the node belongs to */ + contentTypeName: Scalars['String']['output'] + /** The unique identifier stored in the database */ + databaseId: Scalars['Int']['output'] + /** Post publishing date. */ + date?: Maybe + /** The publishing date set in GMT. */ + dateGmt?: Maybe + /** The desired slug of the post */ + desiredSlug?: Maybe + /** If a user has edited the node within the past 15 seconds, this will return the user that last edited. Null if the edit lock doesn't exist or is greater than 15 seconds */ + editingLockedBy?: Maybe + /** The RSS enclosure for the object */ + enclosure?: Maybe + /** Connection between the ContentNode type and the EnqueuedScript type */ + enqueuedScripts?: Maybe + /** Connection between the ContentNode type and the EnqueuedStylesheet type */ + enqueuedStylesheets?: Maybe + /** Connection between the NodeWithFeaturedImage type and the MediaItem type */ + featuredImage?: Maybe + /** The database identifier for the featured image node assigned to the content node */ + featuredImageDatabaseId?: Maybe + /** Globally unique ID of the featured image assigned to the node */ + featuredImageId?: Maybe + /** The global unique identifier for this post. This currently matches the value stored in WP_Post->guid and the guid column in the "post_objects" database table. */ + guid?: Maybe + /** Whether the general_fragments object is password protected. */ + hasPassword?: Maybe + /** The globally unique identifier of the general_fragments object. */ + id: Scalars['ID']['output'] + /** Whether the node is a Comment */ + isComment: Scalars['Boolean']['output'] + /** Whether the node is a Content Node */ + isContentNode: Scalars['Boolean']['output'] + /** Whether the node represents the front page. */ + isFrontPage: Scalars['Boolean']['output'] + /** Whether the node represents the blog page. */ + isPostsPage: Scalars['Boolean']['output'] + /** Whether the object is a node in the preview state */ + isPreview?: Maybe + /** Whether the object is restricted from the current viewer */ + isRestricted?: Maybe + /** Whether the node is a Term */ + isTermNode: Scalars['Boolean']['output'] + /** The user that most recently edited the node */ + lastEditedBy?: Maybe + /** The permalink of the post */ + link?: Maybe + /** The local modified time for a post. If a post was recently updated the modified field will change to match the corresponding time. */ + modified?: Maybe + /** The GMT modified time for a post. If a post was recently updated the modified field will change to match the corresponding time in GMT. */ + modifiedGmt?: Maybe + /** The password for the general_fragments object. */ + password?: Maybe + /** Connection between the CommonFragment type and the CommonFragment type */ + preview?: Maybe + /** The database id of the preview node */ + previewRevisionDatabaseId?: Maybe + /** Whether the object is a node in the preview state */ + previewRevisionId?: Maybe + /** The Yoast SEO data of the ContentNode */ + seo?: Maybe + /** The uri slug for the post. This is equivalent to the WP_Post->post_name field and the post_name column in the database for the "post_objects" table. */ + slug?: Maybe + /** The current status of the object */ + status?: Maybe + /** The template assigned to the node */ + template?: Maybe + /** The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made. */ + title?: Maybe + /** The unique resource identifier path */ + uri?: Maybe + } /** The CommonFragment type */ export type CommonFragmentContentArgs = { - format?: InputMaybe; -}; - + format?: InputMaybe +} /** The CommonFragment type */ export type CommonFragmentEnqueuedScriptsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** The CommonFragment type */ export type CommonFragmentEnqueuedStylesheetsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** The CommonFragment type */ export type CommonFragmentTitleArgs = { - format?: InputMaybe; -}; + format?: InputMaybe +} /** Connection to CommonFragment Nodes */ export type CommonFragmentConnection = { /** A list of edges (relational context) between RootQuery and connected CommonFragment Nodes */ - edges: Array; + edges: Array /** A list of connected CommonFragment Nodes */ - nodes: Array; + nodes: Array /** Information about pagination in a connection. */ - pageInfo: CommonFragmentConnectionPageInfo; -}; + pageInfo: CommonFragmentConnectionPageInfo +} /** Edge between a Node and a connected CommonFragment */ export type CommonFragmentConnectionEdge = { /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; + cursor?: Maybe /** The connected CommonFragment Node */ - node: CommonFragment; -}; + node: CommonFragment +} /** Page Info on the connected CommonFragmentConnectionEdge */ export type CommonFragmentConnectionPageInfo = { /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; + endCursor?: Maybe /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; + hasNextPage: Scalars['Boolean']['output'] /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; + hasPreviousPage: Scalars['Boolean']['output'] /** Raw schema for page */ - seo?: Maybe; + seo?: Maybe /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; + startCursor?: Maybe +} /** The Type of Identifier used to fetch a single resource. Default is ID. */ export enum CommonFragmentIdType { @@ -1360,165 +1411,172 @@ export enum CommonFragmentIdType { /** Identify a resource by the slug. Available to non-hierarchcial Types where the slug is a unique identifier. */ Slug = 'SLUG', /** Identify a resource by the URI. */ - Uri = 'URI' + Uri = 'URI', } /** Connection between the CommonFragment type and the CommonFragment type */ -export type CommonFragmentToPreviewConnectionEdge = CommonFragmentConnectionEdge & Edge & OneToOneConnection & { - __typename?: 'CommonFragmentToPreviewConnectionEdge'; - /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; - /** The node of the connection, without the edges */ - node: CommonFragment; -}; +export type CommonFragmentToPreviewConnectionEdge = CommonFragmentConnectionEdge & + Edge & + OneToOneConnection & { + __typename?: 'CommonFragmentToPreviewConnectionEdge' + /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ + cursor?: Maybe + /** The node of the connection, without the edges */ + node: CommonFragment + } /** The confidentialityPolicy type */ -export type ConfidentialityPolicy = ContentNode & DatabaseIdentifier & MenuItemLinkable & Node & NodeWithContentEditor & NodeWithFeaturedImage & NodeWithTemplate & NodeWithTitle & Previewable & UniformResourceIdentifiable & { - __typename?: 'ConfidentialityPolicy'; - /** - * The id field matches the WP_Post->ID field. - * @deprecated Deprecated in favor of the databaseId field - */ - confidentialityPolicyId: Scalars['Int']['output']; - /** The content of the post. */ - content?: Maybe; - /** Connection between the ContentNode type and the ContentType type */ - contentType?: Maybe; - /** The name of the Content Type the node belongs to */ - contentTypeName: Scalars['String']['output']; - /** The unique identifier stored in the database */ - databaseId: Scalars['Int']['output']; - /** Post publishing date. */ - date?: Maybe; - /** The publishing date set in GMT. */ - dateGmt?: Maybe; - /** The desired slug of the post */ - desiredSlug?: Maybe; - /** If a user has edited the node within the past 15 seconds, this will return the user that last edited. Null if the edit lock doesn't exist or is greater than 15 seconds */ - editingLockedBy?: Maybe; - /** The RSS enclosure for the object */ - enclosure?: Maybe; - /** Connection between the ContentNode type and the EnqueuedScript type */ - enqueuedScripts?: Maybe; - /** Connection between the ContentNode type and the EnqueuedStylesheet type */ - enqueuedStylesheets?: Maybe; - /** Connection between the NodeWithFeaturedImage type and the MediaItem type */ - featuredImage?: Maybe; - /** The database identifier for the featured image node assigned to the content node */ - featuredImageDatabaseId?: Maybe; - /** Globally unique ID of the featured image assigned to the node */ - featuredImageId?: Maybe; - /** The global unique identifier for this post. This currently matches the value stored in WP_Post->guid and the guid column in the "post_objects" database table. */ - guid?: Maybe; - /** Whether the new_privacy_policy object is password protected. */ - hasPassword?: Maybe; - /** The globally unique identifier of the new_privacy_policy object. */ - id: Scalars['ID']['output']; - /** Whether the node is a Comment */ - isComment: Scalars['Boolean']['output']; - /** Whether the node is a Content Node */ - isContentNode: Scalars['Boolean']['output']; - /** Whether the node represents the front page. */ - isFrontPage: Scalars['Boolean']['output']; - /** Whether the node represents the blog page. */ - isPostsPage: Scalars['Boolean']['output']; - /** Whether the object is a node in the preview state */ - isPreview?: Maybe; - /** Whether the object is restricted from the current viewer */ - isRestricted?: Maybe; - /** Whether the node is a Term */ - isTermNode: Scalars['Boolean']['output']; - /** The user that most recently edited the node */ - lastEditedBy?: Maybe; - /** The permalink of the post */ - link?: Maybe; - /** The local modified time for a post. If a post was recently updated the modified field will change to match the corresponding time. */ - modified?: Maybe; - /** The GMT modified time for a post. If a post was recently updated the modified field will change to match the corresponding time in GMT. */ - modifiedGmt?: Maybe; - /** The password for the new_privacy_policy object. */ - password?: Maybe; - /** Connection between the ConfidentialityPolicy type and the confidentialityPolicy type */ - preview?: Maybe; - /** The database id of the preview node */ - previewRevisionDatabaseId?: Maybe; - /** Whether the object is a node in the preview state */ - previewRevisionId?: Maybe; - /** The Yoast SEO data of the ContentNode */ - seo?: Maybe; - /** The uri slug for the post. This is equivalent to the WP_Post->post_name field and the post_name column in the database for the "post_objects" table. */ - slug?: Maybe; - /** The current status of the object */ - status?: Maybe; - /** The template assigned to the node */ - template?: Maybe; - /** The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made. */ - title?: Maybe; - /** The unique resource identifier path */ - uri?: Maybe; -}; - +export type ConfidentialityPolicy = ContentNode & + DatabaseIdentifier & + MenuItemLinkable & + Node & + NodeWithContentEditor & + NodeWithFeaturedImage & + NodeWithTemplate & + NodeWithTitle & + Previewable & + UniformResourceIdentifiable & { + __typename?: 'ConfidentialityPolicy' + /** + * The id field matches the WP_Post->ID field. + * @deprecated Deprecated in favor of the databaseId field + */ + confidentialityPolicyId: Scalars['Int']['output'] + /** The content of the post. */ + content?: Maybe + /** Connection between the ContentNode type and the ContentType type */ + contentType?: Maybe + /** The name of the Content Type the node belongs to */ + contentTypeName: Scalars['String']['output'] + /** The unique identifier stored in the database */ + databaseId: Scalars['Int']['output'] + /** Post publishing date. */ + date?: Maybe + /** The publishing date set in GMT. */ + dateGmt?: Maybe + /** The desired slug of the post */ + desiredSlug?: Maybe + /** If a user has edited the node within the past 15 seconds, this will return the user that last edited. Null if the edit lock doesn't exist or is greater than 15 seconds */ + editingLockedBy?: Maybe + /** The RSS enclosure for the object */ + enclosure?: Maybe + /** Connection between the ContentNode type and the EnqueuedScript type */ + enqueuedScripts?: Maybe + /** Connection between the ContentNode type and the EnqueuedStylesheet type */ + enqueuedStylesheets?: Maybe + /** Connection between the NodeWithFeaturedImage type and the MediaItem type */ + featuredImage?: Maybe + /** The database identifier for the featured image node assigned to the content node */ + featuredImageDatabaseId?: Maybe + /** Globally unique ID of the featured image assigned to the node */ + featuredImageId?: Maybe + /** The global unique identifier for this post. This currently matches the value stored in WP_Post->guid and the guid column in the "post_objects" database table. */ + guid?: Maybe + /** Whether the new_privacy_policy object is password protected. */ + hasPassword?: Maybe + /** The globally unique identifier of the new_privacy_policy object. */ + id: Scalars['ID']['output'] + /** Whether the node is a Comment */ + isComment: Scalars['Boolean']['output'] + /** Whether the node is a Content Node */ + isContentNode: Scalars['Boolean']['output'] + /** Whether the node represents the front page. */ + isFrontPage: Scalars['Boolean']['output'] + /** Whether the node represents the blog page. */ + isPostsPage: Scalars['Boolean']['output'] + /** Whether the object is a node in the preview state */ + isPreview?: Maybe + /** Whether the object is restricted from the current viewer */ + isRestricted?: Maybe + /** Whether the node is a Term */ + isTermNode: Scalars['Boolean']['output'] + /** The user that most recently edited the node */ + lastEditedBy?: Maybe + /** The permalink of the post */ + link?: Maybe + /** The local modified time for a post. If a post was recently updated the modified field will change to match the corresponding time. */ + modified?: Maybe + /** The GMT modified time for a post. If a post was recently updated the modified field will change to match the corresponding time in GMT. */ + modifiedGmt?: Maybe + /** The password for the new_privacy_policy object. */ + password?: Maybe + /** Connection between the ConfidentialityPolicy type and the confidentialityPolicy type */ + preview?: Maybe + /** The database id of the preview node */ + previewRevisionDatabaseId?: Maybe + /** Whether the object is a node in the preview state */ + previewRevisionId?: Maybe + /** The Yoast SEO data of the ContentNode */ + seo?: Maybe + /** The uri slug for the post. This is equivalent to the WP_Post->post_name field and the post_name column in the database for the "post_objects" table. */ + slug?: Maybe + /** The current status of the object */ + status?: Maybe + /** The template assigned to the node */ + template?: Maybe + /** The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made. */ + title?: Maybe + /** The unique resource identifier path */ + uri?: Maybe + } /** The confidentialityPolicy type */ export type ConfidentialityPolicyContentArgs = { - format?: InputMaybe; -}; - + format?: InputMaybe +} /** The confidentialityPolicy type */ export type ConfidentialityPolicyEnqueuedScriptsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** The confidentialityPolicy type */ export type ConfidentialityPolicyEnqueuedStylesheetsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** The confidentialityPolicy type */ export type ConfidentialityPolicyTitleArgs = { - format?: InputMaybe; -}; + format?: InputMaybe +} /** Connection to confidentialityPolicy Nodes */ export type ConfidentialityPolicyConnection = { /** A list of edges (relational context) between RootQuery and connected confidentialityPolicy Nodes */ - edges: Array; + edges: Array /** A list of connected confidentialityPolicy Nodes */ - nodes: Array; + nodes: Array /** Information about pagination in a connection. */ - pageInfo: ConfidentialityPolicyConnectionPageInfo; -}; + pageInfo: ConfidentialityPolicyConnectionPageInfo +} /** Edge between a Node and a connected confidentialityPolicy */ export type ConfidentialityPolicyConnectionEdge = { /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; + cursor?: Maybe /** The connected confidentialityPolicy Node */ - node: ConfidentialityPolicy; -}; + node: ConfidentialityPolicy +} /** Page Info on the connected ConfidentialityPolicyConnectionEdge */ export type ConfidentialityPolicyConnectionPageInfo = { /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; + endCursor?: Maybe /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; + hasNextPage: Scalars['Boolean']['output'] /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; + hasPreviousPage: Scalars['Boolean']['output'] /** Raw schema for page */ - seo?: Maybe; + seo?: Maybe /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; + startCursor?: Maybe +} /** The Type of Identifier used to fetch a single resource. Default is ID. */ export enum ConfidentialityPolicyIdType { @@ -1529,175 +1587,182 @@ export enum ConfidentialityPolicyIdType { /** Identify a resource by the slug. Available to non-hierarchcial Types where the slug is a unique identifier. */ Slug = 'SLUG', /** Identify a resource by the URI. */ - Uri = 'URI' + Uri = 'URI', } /** Connection between the ConfidentialityPolicy type and the confidentialityPolicy type */ -export type ConfidentialityPolicyToPreviewConnectionEdge = ConfidentialityPolicyConnectionEdge & Edge & OneToOneConnection & { - __typename?: 'ConfidentialityPolicyToPreviewConnectionEdge'; - /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; - /** The node of the connection, without the edges */ - node: ConfidentialityPolicy; -}; +export type ConfidentialityPolicyToPreviewConnectionEdge = ConfidentialityPolicyConnectionEdge & + Edge & + OneToOneConnection & { + __typename?: 'ConfidentialityPolicyToPreviewConnectionEdge' + /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ + cursor?: Maybe + /** The node of the connection, without the edges */ + node: ConfidentialityPolicy + } /** A plural connection from one Node Type in the Graph to another Node Type, with support for relational data via "edges". */ export type Connection = { /** A list of edges (relational context) between connected nodes */ - edges: Array; + edges: Array /** A list of connected nodes */ - nodes: Array; + nodes: Array /** Information about pagination in a connection. */ - pageInfo: PageInfo; -}; + pageInfo: PageInfo +} /** The Contact type */ -export type Contact = ContentNode & DatabaseIdentifier & MenuItemLinkable & Node & NodeWithContentEditor & NodeWithFeaturedImage & NodeWithTemplate & NodeWithTitle & Previewable & UniformResourceIdentifiable & { - __typename?: 'Contact'; - /** - * The id field matches the WP_Post->ID field. - * @deprecated Deprecated in favor of the databaseId field - */ - contactId: Scalars['Int']['output']; - /** The content of the post. */ - content?: Maybe; - /** Connection between the ContentNode type and the ContentType type */ - contentType?: Maybe; - /** The name of the Content Type the node belongs to */ - contentTypeName: Scalars['String']['output']; - /** The unique identifier stored in the database */ - databaseId: Scalars['Int']['output']; - /** Post publishing date. */ - date?: Maybe; - /** The publishing date set in GMT. */ - dateGmt?: Maybe; - /** The desired slug of the post */ - desiredSlug?: Maybe; - /** If a user has edited the node within the past 15 seconds, this will return the user that last edited. Null if the edit lock doesn't exist or is greater than 15 seconds */ - editingLockedBy?: Maybe; - /** The RSS enclosure for the object */ - enclosure?: Maybe; - /** Connection between the ContentNode type and the EnqueuedScript type */ - enqueuedScripts?: Maybe; - /** Connection between the ContentNode type and the EnqueuedStylesheet type */ - enqueuedStylesheets?: Maybe; - /** Connection between the NodeWithFeaturedImage type and the MediaItem type */ - featuredImage?: Maybe; - /** The database identifier for the featured image node assigned to the content node */ - featuredImageDatabaseId?: Maybe; - /** Globally unique ID of the featured image assigned to the node */ - featuredImageId?: Maybe; - /** The global unique identifier for this post. This currently matches the value stored in WP_Post->guid and the guid column in the "post_objects" database table. */ - guid?: Maybe; - /** Whether the contacts object is password protected. */ - hasPassword?: Maybe; - /** The globally unique identifier of the contacts object. */ - id: Scalars['ID']['output']; - /** Whether the node is a Comment */ - isComment: Scalars['Boolean']['output']; - /** Whether the node is a Content Node */ - isContentNode: Scalars['Boolean']['output']; - /** Whether the node represents the front page. */ - isFrontPage: Scalars['Boolean']['output']; - /** Whether the node represents the blog page. */ - isPostsPage: Scalars['Boolean']['output']; - /** Whether the object is a node in the preview state */ - isPreview?: Maybe; - /** Whether the object is restricted from the current viewer */ - isRestricted?: Maybe; - /** Whether the node is a Term */ - isTermNode: Scalars['Boolean']['output']; - /** The user that most recently edited the node */ - lastEditedBy?: Maybe; - /** The permalink of the post */ - link?: Maybe; - /** The local modified time for a post. If a post was recently updated the modified field will change to match the corresponding time. */ - modified?: Maybe; - /** The GMT modified time for a post. If a post was recently updated the modified field will change to match the corresponding time in GMT. */ - modifiedGmt?: Maybe; - /** The password for the contacts object. */ - password?: Maybe; - /** Connection between the Contact type and the Contact type */ - preview?: Maybe; - /** The database id of the preview node */ - previewRevisionDatabaseId?: Maybe; - /** Whether the object is a node in the preview state */ - previewRevisionId?: Maybe; - /** The Yoast SEO data of the ContentNode */ - seo?: Maybe; - /** The uri slug for the post. This is equivalent to the WP_Post->post_name field and the post_name column in the database for the "post_objects" table. */ - slug?: Maybe; - /** The current status of the object */ - status?: Maybe; - /** The template assigned to the node */ - template?: Maybe; - /** The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made. */ - title?: Maybe; - /** The unique resource identifier path */ - uri?: Maybe; -}; - +export type Contact = ContentNode & + DatabaseIdentifier & + MenuItemLinkable & + Node & + NodeWithContentEditor & + NodeWithFeaturedImage & + NodeWithTemplate & + NodeWithTitle & + Previewable & + UniformResourceIdentifiable & { + __typename?: 'Contact' + /** + * The id field matches the WP_Post->ID field. + * @deprecated Deprecated in favor of the databaseId field + */ + contactId: Scalars['Int']['output'] + /** The content of the post. */ + content?: Maybe + /** Connection between the ContentNode type and the ContentType type */ + contentType?: Maybe + /** The name of the Content Type the node belongs to */ + contentTypeName: Scalars['String']['output'] + /** The unique identifier stored in the database */ + databaseId: Scalars['Int']['output'] + /** Post publishing date. */ + date?: Maybe + /** The publishing date set in GMT. */ + dateGmt?: Maybe + /** The desired slug of the post */ + desiredSlug?: Maybe + /** If a user has edited the node within the past 15 seconds, this will return the user that last edited. Null if the edit lock doesn't exist or is greater than 15 seconds */ + editingLockedBy?: Maybe + /** The RSS enclosure for the object */ + enclosure?: Maybe + /** Connection between the ContentNode type and the EnqueuedScript type */ + enqueuedScripts?: Maybe + /** Connection between the ContentNode type and the EnqueuedStylesheet type */ + enqueuedStylesheets?: Maybe + /** Connection between the NodeWithFeaturedImage type and the MediaItem type */ + featuredImage?: Maybe + /** The database identifier for the featured image node assigned to the content node */ + featuredImageDatabaseId?: Maybe + /** Globally unique ID of the featured image assigned to the node */ + featuredImageId?: Maybe + /** The global unique identifier for this post. This currently matches the value stored in WP_Post->guid and the guid column in the "post_objects" database table. */ + guid?: Maybe + /** Whether the contacts object is password protected. */ + hasPassword?: Maybe + /** The globally unique identifier of the contacts object. */ + id: Scalars['ID']['output'] + /** Whether the node is a Comment */ + isComment: Scalars['Boolean']['output'] + /** Whether the node is a Content Node */ + isContentNode: Scalars['Boolean']['output'] + /** Whether the node represents the front page. */ + isFrontPage: Scalars['Boolean']['output'] + /** Whether the node represents the blog page. */ + isPostsPage: Scalars['Boolean']['output'] + /** Whether the object is a node in the preview state */ + isPreview?: Maybe + /** Whether the object is restricted from the current viewer */ + isRestricted?: Maybe + /** Whether the node is a Term */ + isTermNode: Scalars['Boolean']['output'] + /** The user that most recently edited the node */ + lastEditedBy?: Maybe + /** The permalink of the post */ + link?: Maybe + /** The local modified time for a post. If a post was recently updated the modified field will change to match the corresponding time. */ + modified?: Maybe + /** The GMT modified time for a post. If a post was recently updated the modified field will change to match the corresponding time in GMT. */ + modifiedGmt?: Maybe + /** The password for the contacts object. */ + password?: Maybe + /** Connection between the Contact type and the Contact type */ + preview?: Maybe + /** The database id of the preview node */ + previewRevisionDatabaseId?: Maybe + /** Whether the object is a node in the preview state */ + previewRevisionId?: Maybe + /** The Yoast SEO data of the ContentNode */ + seo?: Maybe + /** The uri slug for the post. This is equivalent to the WP_Post->post_name field and the post_name column in the database for the "post_objects" table. */ + slug?: Maybe + /** The current status of the object */ + status?: Maybe + /** The template assigned to the node */ + template?: Maybe + /** The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made. */ + title?: Maybe + /** The unique resource identifier path */ + uri?: Maybe + } /** The Contact type */ export type ContactContentArgs = { - format?: InputMaybe; -}; - + format?: InputMaybe +} /** The Contact type */ export type ContactEnqueuedScriptsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** The Contact type */ export type ContactEnqueuedStylesheetsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** The Contact type */ export type ContactTitleArgs = { - format?: InputMaybe; -}; + format?: InputMaybe +} /** Connection to Contact Nodes */ export type ContactConnection = { /** A list of edges (relational context) between RootQuery and connected Contact Nodes */ - edges: Array; + edges: Array /** A list of connected Contact Nodes */ - nodes: Array; + nodes: Array /** Information about pagination in a connection. */ - pageInfo: ContactConnectionPageInfo; -}; + pageInfo: ContactConnectionPageInfo +} /** Edge between a Node and a connected Contact */ export type ContactConnectionEdge = { /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; + cursor?: Maybe /** The connected Contact Node */ - node: Contact; -}; + node: Contact +} /** Page Info on the connected ContactConnectionEdge */ export type ContactConnectionPageInfo = { /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; + endCursor?: Maybe /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; + hasNextPage: Scalars['Boolean']['output'] /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; + hasPreviousPage: Scalars['Boolean']['output'] /** Raw schema for page */ - seo?: Maybe; + seo?: Maybe /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; + startCursor?: Maybe +} /** The Type of Identifier used to fetch a single resource. Default is ID. */ export enum ContactIdType { @@ -1708,170 +1773,175 @@ export enum ContactIdType { /** Identify a resource by the slug. Available to non-hierarchcial Types where the slug is a unique identifier. */ Slug = 'SLUG', /** Identify a resource by the URI. */ - Uri = 'URI' + Uri = 'URI', } /** The ContactItem type */ -export type ContactItem = ContentNode & DatabaseIdentifier & MenuItemLinkable & Node & NodeWithContentEditor & NodeWithFeaturedImage & NodeWithTemplate & NodeWithTitle & Previewable & UniformResourceIdentifiable & WithAcfContentAddons & { - __typename?: 'ContactItem'; - /** - * The id field matches the WP_Post->ID field. - * @deprecated Deprecated in favor of the databaseId field - */ - contactItemId: Scalars['Int']['output']; - /** The content of the post. */ - content?: Maybe; - /** Fields of the ContentAddons ACF Field Group */ - contentAddons?: Maybe; - /** Connection between the ContentNode type and the ContentType type */ - contentType?: Maybe; - /** The name of the Content Type the node belongs to */ - contentTypeName: Scalars['String']['output']; - /** The unique identifier stored in the database */ - databaseId: Scalars['Int']['output']; - /** Post publishing date. */ - date?: Maybe; - /** The publishing date set in GMT. */ - dateGmt?: Maybe; - /** The desired slug of the post */ - desiredSlug?: Maybe; - /** If a user has edited the node within the past 15 seconds, this will return the user that last edited. Null if the edit lock doesn't exist or is greater than 15 seconds */ - editingLockedBy?: Maybe; - /** The RSS enclosure for the object */ - enclosure?: Maybe; - /** Connection between the ContentNode type and the EnqueuedScript type */ - enqueuedScripts?: Maybe; - /** Connection between the ContentNode type and the EnqueuedStylesheet type */ - enqueuedStylesheets?: Maybe; - /** Connection between the NodeWithFeaturedImage type and the MediaItem type */ - featuredImage?: Maybe; - /** The database identifier for the featured image node assigned to the content node */ - featuredImageDatabaseId?: Maybe; - /** Globally unique ID of the featured image assigned to the node */ - featuredImageId?: Maybe; - /** The global unique identifier for this post. This currently matches the value stored in WP_Post->guid and the guid column in the "post_objects" database table. */ - guid?: Maybe; - /** Whether the contacts_fragment object is password protected. */ - hasPassword?: Maybe; - /** The globally unique identifier of the contacts_fragment object. */ - id: Scalars['ID']['output']; - /** Whether the node is a Comment */ - isComment: Scalars['Boolean']['output']; - /** Whether the node is a Content Node */ - isContentNode: Scalars['Boolean']['output']; - /** Whether the node represents the front page. */ - isFrontPage: Scalars['Boolean']['output']; - /** Whether the node represents the blog page. */ - isPostsPage: Scalars['Boolean']['output']; - /** Whether the object is a node in the preview state */ - isPreview?: Maybe; - /** Whether the object is restricted from the current viewer */ - isRestricted?: Maybe; - /** Whether the node is a Term */ - isTermNode: Scalars['Boolean']['output']; - /** Polylang language */ - language?: Maybe; - /** The user that most recently edited the node */ - lastEditedBy?: Maybe; - /** The permalink of the post */ - link?: Maybe; - /** The local modified time for a post. If a post was recently updated the modified field will change to match the corresponding time. */ - modified?: Maybe; - /** The GMT modified time for a post. If a post was recently updated the modified field will change to match the corresponding time in GMT. */ - modifiedGmt?: Maybe; - /** The password for the contacts_fragment object. */ - password?: Maybe; - /** Connection between the ContactItem type and the ContactItem type */ - preview?: Maybe; - /** The database id of the preview node */ - previewRevisionDatabaseId?: Maybe; - /** Whether the object is a node in the preview state */ - previewRevisionId?: Maybe; - /** The Yoast SEO data of the ContentNode */ - seo?: Maybe; - /** The uri slug for the post. This is equivalent to the WP_Post->post_name field and the post_name column in the database for the "post_objects" table. */ - slug?: Maybe; - /** The current status of the object */ - status?: Maybe; - /** The template assigned to the node */ - template?: Maybe; - /** The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made. */ - title?: Maybe; - /** Get specific translation version of this object */ - translation?: Maybe; - /** List all translated versions of this post */ - translations?: Maybe>>; - /** The unique resource identifier path */ - uri?: Maybe; -}; - +export type ContactItem = ContentNode & + DatabaseIdentifier & + MenuItemLinkable & + Node & + NodeWithContentEditor & + NodeWithFeaturedImage & + NodeWithTemplate & + NodeWithTitle & + Previewable & + UniformResourceIdentifiable & + WithAcfContentAddons & { + __typename?: 'ContactItem' + /** + * The id field matches the WP_Post->ID field. + * @deprecated Deprecated in favor of the databaseId field + */ + contactItemId: Scalars['Int']['output'] + /** The content of the post. */ + content?: Maybe + /** Fields of the ContentAddons ACF Field Group */ + contentAddons?: Maybe + /** Connection between the ContentNode type and the ContentType type */ + contentType?: Maybe + /** The name of the Content Type the node belongs to */ + contentTypeName: Scalars['String']['output'] + /** The unique identifier stored in the database */ + databaseId: Scalars['Int']['output'] + /** Post publishing date. */ + date?: Maybe + /** The publishing date set in GMT. */ + dateGmt?: Maybe + /** The desired slug of the post */ + desiredSlug?: Maybe + /** If a user has edited the node within the past 15 seconds, this will return the user that last edited. Null if the edit lock doesn't exist or is greater than 15 seconds */ + editingLockedBy?: Maybe + /** The RSS enclosure for the object */ + enclosure?: Maybe + /** Connection between the ContentNode type and the EnqueuedScript type */ + enqueuedScripts?: Maybe + /** Connection between the ContentNode type and the EnqueuedStylesheet type */ + enqueuedStylesheets?: Maybe + /** Connection between the NodeWithFeaturedImage type and the MediaItem type */ + featuredImage?: Maybe + /** The database identifier for the featured image node assigned to the content node */ + featuredImageDatabaseId?: Maybe + /** Globally unique ID of the featured image assigned to the node */ + featuredImageId?: Maybe + /** The global unique identifier for this post. This currently matches the value stored in WP_Post->guid and the guid column in the "post_objects" database table. */ + guid?: Maybe + /** Whether the contacts_fragment object is password protected. */ + hasPassword?: Maybe + /** The globally unique identifier of the contacts_fragment object. */ + id: Scalars['ID']['output'] + /** Whether the node is a Comment */ + isComment: Scalars['Boolean']['output'] + /** Whether the node is a Content Node */ + isContentNode: Scalars['Boolean']['output'] + /** Whether the node represents the front page. */ + isFrontPage: Scalars['Boolean']['output'] + /** Whether the node represents the blog page. */ + isPostsPage: Scalars['Boolean']['output'] + /** Whether the object is a node in the preview state */ + isPreview?: Maybe + /** Whether the object is restricted from the current viewer */ + isRestricted?: Maybe + /** Whether the node is a Term */ + isTermNode: Scalars['Boolean']['output'] + /** Polylang language */ + language?: Maybe + /** The user that most recently edited the node */ + lastEditedBy?: Maybe + /** The permalink of the post */ + link?: Maybe + /** The local modified time for a post. If a post was recently updated the modified field will change to match the corresponding time. */ + modified?: Maybe + /** The GMT modified time for a post. If a post was recently updated the modified field will change to match the corresponding time in GMT. */ + modifiedGmt?: Maybe + /** The password for the contacts_fragment object. */ + password?: Maybe + /** Connection between the ContactItem type and the ContactItem type */ + preview?: Maybe + /** The database id of the preview node */ + previewRevisionDatabaseId?: Maybe + /** Whether the object is a node in the preview state */ + previewRevisionId?: Maybe + /** The Yoast SEO data of the ContentNode */ + seo?: Maybe + /** The uri slug for the post. This is equivalent to the WP_Post->post_name field and the post_name column in the database for the "post_objects" table. */ + slug?: Maybe + /** The current status of the object */ + status?: Maybe + /** The template assigned to the node */ + template?: Maybe + /** The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made. */ + title?: Maybe + /** Get specific translation version of this object */ + translation?: Maybe + /** List all translated versions of this post */ + translations?: Maybe>> + /** The unique resource identifier path */ + uri?: Maybe + } /** The ContactItem type */ export type ContactItemContentArgs = { - format?: InputMaybe; -}; - + format?: InputMaybe +} /** The ContactItem type */ export type ContactItemEnqueuedScriptsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** The ContactItem type */ export type ContactItemEnqueuedStylesheetsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** The ContactItem type */ export type ContactItemTitleArgs = { - format?: InputMaybe; -}; - + format?: InputMaybe +} /** The ContactItem type */ export type ContactItemTranslationArgs = { - language: LanguageCodeEnum; -}; + language: LanguageCodeEnum +} /** Connection to ContactItem Nodes */ export type ContactItemConnection = { /** A list of edges (relational context) between RootQuery and connected ContactItem Nodes */ - edges: Array; + edges: Array /** A list of connected ContactItem Nodes */ - nodes: Array; + nodes: Array /** Information about pagination in a connection. */ - pageInfo: ContactItemConnectionPageInfo; -}; + pageInfo: ContactItemConnectionPageInfo +} /** Edge between a Node and a connected ContactItem */ export type ContactItemConnectionEdge = { /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; + cursor?: Maybe /** The connected ContactItem Node */ - node: ContactItem; -}; + node: ContactItem +} /** Page Info on the connected ContactItemConnectionEdge */ export type ContactItemConnectionPageInfo = { /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; + endCursor?: Maybe /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; + hasNextPage: Scalars['Boolean']['output'] /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; + hasPreviousPage: Scalars['Boolean']['output'] /** Raw schema for page */ - seo?: Maybe; + seo?: Maybe /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; + startCursor?: Maybe +} /** The Type of Identifier used to fetch a single resource. Default is ID. */ export enum ContactItemIdType { @@ -1882,183 +1952,187 @@ export enum ContactItemIdType { /** Identify a resource by the slug. Available to non-hierarchcial Types where the slug is a unique identifier. */ Slug = 'SLUG', /** Identify a resource by the URI. */ - Uri = 'URI' + Uri = 'URI', } /** Connection between the ContactItem type and the ContactItem type */ -export type ContactItemToPreviewConnectionEdge = ContactItemConnectionEdge & Edge & OneToOneConnection & { - __typename?: 'ContactItemToPreviewConnectionEdge'; - /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; - /** The node of the connection, without the edges */ - node: ContactItem; -}; +export type ContactItemToPreviewConnectionEdge = ContactItemConnectionEdge & + Edge & + OneToOneConnection & { + __typename?: 'ContactItemToPreviewConnectionEdge' + /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ + cursor?: Maybe + /** The node of the connection, without the edges */ + node: ContactItem + } /** Connection between the Contact type and the Contact type */ -export type ContactToPreviewConnectionEdge = ContactConnectionEdge & Edge & OneToOneConnection & { - __typename?: 'ContactToPreviewConnectionEdge'; - /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; - /** The node of the connection, without the edges */ - node: Contact; -}; +export type ContactToPreviewConnectionEdge = ContactConnectionEdge & + Edge & + OneToOneConnection & { + __typename?: 'ContactToPreviewConnectionEdge' + /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ + cursor?: Maybe + /** The node of the connection, without the edges */ + node: Contact + } /** The "ContentAddons" Field Group. Added to the Schema by "WPGraphQL for ACF". */ -export type ContentAddons = AcfFieldGroup & AcfFieldGroupFields & ContentAddons_Fields & { - __typename?: 'ContentAddons'; - /** Field of the "textarea" Field Type added to the schema as part of the "ContentAddons" Field Group */ - content?: Maybe; - /** Field of the "textarea" Field Type added to the schema as part of the "ContentAddons" Field Group */ - excerpt?: Maybe; - /** - * The name of the field group - * @deprecated Use __typename instead - */ - fieldGroupName?: Maybe; - /** Field of the "image" Field Type added to the schema as part of the "ContentAddons" Field Group */ - image?: Maybe; - /** Field of the "number" Field Type added to the schema as part of the "ContentAddons" Field Group */ - order?: Maybe; - /** Field of the "text" Field Type added to the schema as part of the "ContentAddons" Field Group */ - role?: Maybe; - /** Field of the "textarea" Field Type added to the schema as part of the "ContentAddons" Field Group */ - title?: Maybe; -}; +export type ContentAddons = AcfFieldGroup & + AcfFieldGroupFields & + ContentAddons_Fields & { + __typename?: 'ContentAddons' + /** Field of the "textarea" Field Type added to the schema as part of the "ContentAddons" Field Group */ + content?: Maybe + /** Field of the "textarea" Field Type added to the schema as part of the "ContentAddons" Field Group */ + excerpt?: Maybe + /** + * The name of the field group + * @deprecated Use __typename instead + */ + fieldGroupName?: Maybe + /** Field of the "image" Field Type added to the schema as part of the "ContentAddons" Field Group */ + image?: Maybe + /** Field of the "number" Field Type added to the schema as part of the "ContentAddons" Field Group */ + order?: Maybe + /** Field of the "text" Field Type added to the schema as part of the "ContentAddons" Field Group */ + role?: Maybe + /** Field of the "textarea" Field Type added to the schema as part of the "ContentAddons" Field Group */ + title?: Maybe + } /** Interface representing fields of the ACF "ContentAddons" Field Group */ export type ContentAddons_Fields = { /** Field of the "textarea" Field Type added to the schema as part of the "ContentAddons" Field Group */ - content?: Maybe; + content?: Maybe /** Field of the "textarea" Field Type added to the schema as part of the "ContentAddons" Field Group */ - excerpt?: Maybe; + excerpt?: Maybe /** * The name of the field group * @deprecated Use __typename instead */ - fieldGroupName?: Maybe; + fieldGroupName?: Maybe /** Field of the "image" Field Type added to the schema as part of the "ContentAddons" Field Group */ - image?: Maybe; + image?: Maybe /** Field of the "number" Field Type added to the schema as part of the "ContentAddons" Field Group */ - order?: Maybe; + order?: Maybe /** Field of the "text" Field Type added to the schema as part of the "ContentAddons" Field Group */ - role?: Maybe; + role?: Maybe /** Field of the "textarea" Field Type added to the schema as part of the "ContentAddons" Field Group */ - title?: Maybe; -}; + title?: Maybe +} /** Nodes used to manage content */ export type ContentNode = { /** Connection between the ContentNode type and the ContentType type */ - contentType?: Maybe; + contentType?: Maybe /** The name of the Content Type the node belongs to */ - contentTypeName: Scalars['String']['output']; + contentTypeName: Scalars['String']['output'] /** The ID of the node in the database. */ - databaseId: Scalars['Int']['output']; + databaseId: Scalars['Int']['output'] /** Post publishing date. */ - date?: Maybe; + date?: Maybe /** The publishing date set in GMT. */ - dateGmt?: Maybe; + dateGmt?: Maybe /** The desired slug of the post */ - desiredSlug?: Maybe; + desiredSlug?: Maybe /** If a user has edited the node within the past 15 seconds, this will return the user that last edited. Null if the edit lock doesn't exist or is greater than 15 seconds */ - editingLockedBy?: Maybe; + editingLockedBy?: Maybe /** The RSS enclosure for the object */ - enclosure?: Maybe; + enclosure?: Maybe /** Connection between the ContentNode type and the EnqueuedScript type */ - enqueuedScripts?: Maybe; + enqueuedScripts?: Maybe /** Connection between the ContentNode type and the EnqueuedStylesheet type */ - enqueuedStylesheets?: Maybe; + enqueuedStylesheets?: Maybe /** The global unique identifier for this post. This currently matches the value stored in WP_Post->guid and the guid column in the "post_objects" database table. */ - guid?: Maybe; + guid?: Maybe /** The globally unique ID for the object */ - id: Scalars['ID']['output']; + id: Scalars['ID']['output'] /** Whether the node is a Comment */ - isComment: Scalars['Boolean']['output']; + isComment: Scalars['Boolean']['output'] /** Whether the node is a Content Node */ - isContentNode: Scalars['Boolean']['output']; + isContentNode: Scalars['Boolean']['output'] /** Whether the node represents the front page. */ - isFrontPage: Scalars['Boolean']['output']; + isFrontPage: Scalars['Boolean']['output'] /** Whether the node represents the blog page. */ - isPostsPage: Scalars['Boolean']['output']; + isPostsPage: Scalars['Boolean']['output'] /** Whether the object is a node in the preview state */ - isPreview?: Maybe; + isPreview?: Maybe /** Whether the object is restricted from the current viewer */ - isRestricted?: Maybe; + isRestricted?: Maybe /** Whether the node is a Term */ - isTermNode: Scalars['Boolean']['output']; + isTermNode: Scalars['Boolean']['output'] /** The user that most recently edited the node */ - lastEditedBy?: Maybe; + lastEditedBy?: Maybe /** The permalink of the post */ - link?: Maybe; + link?: Maybe /** The local modified time for a post. If a post was recently updated the modified field will change to match the corresponding time. */ - modified?: Maybe; + modified?: Maybe /** The GMT modified time for a post. If a post was recently updated the modified field will change to match the corresponding time in GMT. */ - modifiedGmt?: Maybe; + modifiedGmt?: Maybe /** The database id of the preview node */ - previewRevisionDatabaseId?: Maybe; + previewRevisionDatabaseId?: Maybe /** Whether the object is a node in the preview state */ - previewRevisionId?: Maybe; + previewRevisionId?: Maybe /** The Yoast SEO data of the ContentNode */ - seo?: Maybe; + seo?: Maybe /** The uri slug for the post. This is equivalent to the WP_Post->post_name field and the post_name column in the database for the "post_objects" table. */ - slug?: Maybe; + slug?: Maybe /** The current status of the object */ - status?: Maybe; + status?: Maybe /** The template assigned to a node of content */ - template?: Maybe; + template?: Maybe /** The unique resource identifier path */ - uri?: Maybe; -}; - + uri?: Maybe +} /** Nodes used to manage content */ export type ContentNodeEnqueuedScriptsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** Nodes used to manage content */ export type ContentNodeEnqueuedStylesheetsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** Connection to ContentNode Nodes */ export type ContentNodeConnection = { /** A list of edges (relational context) between ContentType and connected ContentNode Nodes */ - edges: Array; + edges: Array /** A list of connected ContentNode Nodes */ - nodes: Array; + nodes: Array /** Information about pagination in a connection. */ - pageInfo: ContentNodeConnectionPageInfo; -}; + pageInfo: ContentNodeConnectionPageInfo +} /** Edge between a Node and a connected ContentNode */ export type ContentNodeConnectionEdge = { /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; + cursor?: Maybe /** The connected ContentNode Node */ - node: ContentNode; -}; + node: ContentNode +} /** Page Info on the connected ContentNodeConnectionEdge */ export type ContentNodeConnectionPageInfo = { /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; + endCursor?: Maybe /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; + hasNextPage: Scalars['Boolean']['output'] /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; + hasPreviousPage: Scalars['Boolean']['output'] /** Raw schema for page */ - seo?: Maybe; + seo?: Maybe /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; + startCursor?: Maybe +} /** The Type of Identifier used to fetch a single resource. Default is ID. */ export enum ContentNodeIdTypeEnum { @@ -2067,235 +2141,249 @@ export enum ContentNodeIdTypeEnum { /** Identify a resource by the (hashed) Global ID. */ Id = 'ID', /** Identify a resource by the URI. */ - Uri = 'URI' + Uri = 'URI', } /** Connection between the ContentNode type and the ContentType type */ -export type ContentNodeToContentTypeConnectionEdge = ContentTypeConnectionEdge & Edge & OneToOneConnection & { - __typename?: 'ContentNodeToContentTypeConnectionEdge'; - /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; - /** The node of the connection, without the edges */ - node: ContentType; -}; +export type ContentNodeToContentTypeConnectionEdge = ContentTypeConnectionEdge & + Edge & + OneToOneConnection & { + __typename?: 'ContentNodeToContentTypeConnectionEdge' + /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ + cursor?: Maybe + /** The node of the connection, without the edges */ + node: ContentType + } /** Connection between the ContentNode type and the User type */ -export type ContentNodeToEditLastConnectionEdge = Edge & OneToOneConnection & UserConnectionEdge & { - __typename?: 'ContentNodeToEditLastConnectionEdge'; - /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; - /** The node of the connection, without the edges */ - node: User; -}; +export type ContentNodeToEditLastConnectionEdge = Edge & + OneToOneConnection & + UserConnectionEdge & { + __typename?: 'ContentNodeToEditLastConnectionEdge' + /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ + cursor?: Maybe + /** The node of the connection, without the edges */ + node: User + } /** Connection between the ContentNode type and the User type */ -export type ContentNodeToEditLockConnectionEdge = Edge & OneToOneConnection & UserConnectionEdge & { - __typename?: 'ContentNodeToEditLockConnectionEdge'; - /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; - /** The timestamp for when the node was last edited */ - lockTimestamp?: Maybe; - /** The node of the connection, without the edges */ - node: User; -}; +export type ContentNodeToEditLockConnectionEdge = Edge & + OneToOneConnection & + UserConnectionEdge & { + __typename?: 'ContentNodeToEditLockConnectionEdge' + /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ + cursor?: Maybe + /** The timestamp for when the node was last edited */ + lockTimestamp?: Maybe + /** The node of the connection, without the edges */ + node: User + } /** Connection between the ContentNode type and the EnqueuedScript type */ -export type ContentNodeToEnqueuedScriptConnection = Connection & EnqueuedScriptConnection & { - __typename?: 'ContentNodeToEnqueuedScriptConnection'; - /** Edges for the ContentNodeToEnqueuedScriptConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: ContentNodeToEnqueuedScriptConnectionPageInfo; -}; +export type ContentNodeToEnqueuedScriptConnection = Connection & + EnqueuedScriptConnection & { + __typename?: 'ContentNodeToEnqueuedScriptConnection' + /** Edges for the ContentNodeToEnqueuedScriptConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: ContentNodeToEnqueuedScriptConnectionPageInfo + } /** An edge in a connection */ -export type ContentNodeToEnqueuedScriptConnectionEdge = Edge & EnqueuedScriptConnectionEdge & { - __typename?: 'ContentNodeToEnqueuedScriptConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: EnqueuedScript; -}; +export type ContentNodeToEnqueuedScriptConnectionEdge = Edge & + EnqueuedScriptConnectionEdge & { + __typename?: 'ContentNodeToEnqueuedScriptConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: EnqueuedScript + } /** Page Info on the "ContentNodeToEnqueuedScriptConnection" */ -export type ContentNodeToEnqueuedScriptConnectionPageInfo = EnqueuedScriptConnectionPageInfo & PageInfo & WpPageInfo & { - __typename?: 'ContentNodeToEnqueuedScriptConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type ContentNodeToEnqueuedScriptConnectionPageInfo = EnqueuedScriptConnectionPageInfo & + PageInfo & + WpPageInfo & { + __typename?: 'ContentNodeToEnqueuedScriptConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Connection between the ContentNode type and the EnqueuedStylesheet type */ -export type ContentNodeToEnqueuedStylesheetConnection = Connection & EnqueuedStylesheetConnection & { - __typename?: 'ContentNodeToEnqueuedStylesheetConnection'; - /** Edges for the ContentNodeToEnqueuedStylesheetConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: ContentNodeToEnqueuedStylesheetConnectionPageInfo; -}; +export type ContentNodeToEnqueuedStylesheetConnection = Connection & + EnqueuedStylesheetConnection & { + __typename?: 'ContentNodeToEnqueuedStylesheetConnection' + /** Edges for the ContentNodeToEnqueuedStylesheetConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: ContentNodeToEnqueuedStylesheetConnectionPageInfo + } /** An edge in a connection */ -export type ContentNodeToEnqueuedStylesheetConnectionEdge = Edge & EnqueuedStylesheetConnectionEdge & { - __typename?: 'ContentNodeToEnqueuedStylesheetConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: EnqueuedStylesheet; -}; +export type ContentNodeToEnqueuedStylesheetConnectionEdge = Edge & + EnqueuedStylesheetConnectionEdge & { + __typename?: 'ContentNodeToEnqueuedStylesheetConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: EnqueuedStylesheet + } /** Page Info on the "ContentNodeToEnqueuedStylesheetConnection" */ -export type ContentNodeToEnqueuedStylesheetConnectionPageInfo = EnqueuedStylesheetConnectionPageInfo & PageInfo & WpPageInfo & { - __typename?: 'ContentNodeToEnqueuedStylesheetConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type ContentNodeToEnqueuedStylesheetConnectionPageInfo = + EnqueuedStylesheetConnectionPageInfo & + PageInfo & + WpPageInfo & { + __typename?: 'ContentNodeToEnqueuedStylesheetConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** The template assigned to a node of content */ export type ContentTemplate = { /** The name of the template */ - templateName?: Maybe; -}; + templateName?: Maybe +} /** An Post Type object */ -export type ContentType = Node & UniformResourceIdentifiable & { - __typename?: 'ContentType'; - /** Whether this content type should can be exported. */ - canExport?: Maybe; - /** Connection between the ContentType type and the Taxonomy type */ - connectedTaxonomies?: Maybe; - /** Connection between the ContentType type and the ContentNode type */ - contentNodes?: Maybe; - /** Whether content of this type should be deleted when the author of it is deleted from the system. */ - deleteWithUser?: Maybe; - /** Description of the content type. */ - description?: Maybe; - /** Whether to exclude nodes of this content type from front end search results. */ - excludeFromSearch?: Maybe; - /** The plural name of the content type within the GraphQL Schema. */ - graphqlPluralName?: Maybe; - /** The singular name of the content type within the GraphQL Schema. */ - graphqlSingleName?: Maybe; - /** Whether this content type should have archives. Content archives are generated by type and by date. */ - hasArchive?: Maybe; - /** Whether the content type is hierarchical, for example pages. */ - hierarchical?: Maybe; - /** The globally unique identifier of the post-type object. */ - id: Scalars['ID']['output']; - /** Whether the node is a Comment */ - isComment: Scalars['Boolean']['output']; - /** Whether the node is a Content Node */ - isContentNode: Scalars['Boolean']['output']; - /** Whether this page is set to the static front page. */ - isFrontPage: Scalars['Boolean']['output']; - /** Whether this page is set to the blog posts page. */ - isPostsPage: Scalars['Boolean']['output']; - /** Whether the object is restricted from the current viewer */ - isRestricted?: Maybe; - /** Whether the node is a Term */ - isTermNode: Scalars['Boolean']['output']; - /** Display name of the content type. */ - label?: Maybe; - /** Details about the content type labels. */ - labels?: Maybe; - /** The name of the icon file to display as a menu icon. */ - menuIcon?: Maybe; - /** The position of this post type in the menu. Only applies if show_in_menu is true. */ - menuPosition?: Maybe; - /** The internal name of the post type. This should not be used for display purposes. */ - name?: Maybe; - /** Whether a content type is intended for use publicly either via the admin interface or by front-end users. While the default settings of exclude_from_search, publicly_queryable, show_ui, and show_in_nav_menus are inherited from public, each does not rely on this relationship and controls a very specific intention. */ - public?: Maybe; - /** Whether queries can be performed on the front end for the content type as part of parse_request(). */ - publiclyQueryable?: Maybe; - /** Name of content type to display in REST API "wp/v2" namespace. */ - restBase?: Maybe; - /** The REST Controller class assigned to handling this content type. */ - restControllerClass?: Maybe; - /** Makes this content type available via the admin bar. */ - showInAdminBar?: Maybe; - /** Whether to add the content type to the GraphQL Schema. */ - showInGraphql?: Maybe; - /** Where to show the content type in the admin menu. To work, $show_ui must be true. If true, the post type is shown in its own top level menu. If false, no menu is shown. If a string of an existing top level menu (eg. "tools.php" or "edit.php?post_type=page"), the post type will be placed as a sub-menu of that. */ - showInMenu?: Maybe; - /** Makes this content type available for selection in navigation menus. */ - showInNavMenus?: Maybe; - /** Whether the content type is associated with a route under the the REST API "wp/v2" namespace. */ - showInRest?: Maybe; - /** Whether to generate and allow a UI for managing this content type in the admin. */ - showUi?: Maybe; - /** The unique resource identifier path */ - uri?: Maybe; -}; - +export type ContentType = Node & + UniformResourceIdentifiable & { + __typename?: 'ContentType' + /** Whether this content type should can be exported. */ + canExport?: Maybe + /** Connection between the ContentType type and the Taxonomy type */ + connectedTaxonomies?: Maybe + /** Connection between the ContentType type and the ContentNode type */ + contentNodes?: Maybe + /** Whether content of this type should be deleted when the author of it is deleted from the system. */ + deleteWithUser?: Maybe + /** Description of the content type. */ + description?: Maybe + /** Whether to exclude nodes of this content type from front end search results. */ + excludeFromSearch?: Maybe + /** The plural name of the content type within the GraphQL Schema. */ + graphqlPluralName?: Maybe + /** The singular name of the content type within the GraphQL Schema. */ + graphqlSingleName?: Maybe + /** Whether this content type should have archives. Content archives are generated by type and by date. */ + hasArchive?: Maybe + /** Whether the content type is hierarchical, for example pages. */ + hierarchical?: Maybe + /** The globally unique identifier of the post-type object. */ + id: Scalars['ID']['output'] + /** Whether the node is a Comment */ + isComment: Scalars['Boolean']['output'] + /** Whether the node is a Content Node */ + isContentNode: Scalars['Boolean']['output'] + /** Whether this page is set to the static front page. */ + isFrontPage: Scalars['Boolean']['output'] + /** Whether this page is set to the blog posts page. */ + isPostsPage: Scalars['Boolean']['output'] + /** Whether the object is restricted from the current viewer */ + isRestricted?: Maybe + /** Whether the node is a Term */ + isTermNode: Scalars['Boolean']['output'] + /** Display name of the content type. */ + label?: Maybe + /** Details about the content type labels. */ + labels?: Maybe + /** The name of the icon file to display as a menu icon. */ + menuIcon?: Maybe + /** The position of this post type in the menu. Only applies if show_in_menu is true. */ + menuPosition?: Maybe + /** The internal name of the post type. This should not be used for display purposes. */ + name?: Maybe + /** Whether a content type is intended for use publicly either via the admin interface or by front-end users. While the default settings of exclude_from_search, publicly_queryable, show_ui, and show_in_nav_menus are inherited from public, each does not rely on this relationship and controls a very specific intention. */ + public?: Maybe + /** Whether queries can be performed on the front end for the content type as part of parse_request(). */ + publiclyQueryable?: Maybe + /** Name of content type to display in REST API "wp/v2" namespace. */ + restBase?: Maybe + /** The REST Controller class assigned to handling this content type. */ + restControllerClass?: Maybe + /** Makes this content type available via the admin bar. */ + showInAdminBar?: Maybe + /** Whether to add the content type to the GraphQL Schema. */ + showInGraphql?: Maybe + /** Where to show the content type in the admin menu. To work, $show_ui must be true. If true, the post type is shown in its own top level menu. If false, no menu is shown. If a string of an existing top level menu (eg. "tools.php" or "edit.php?post_type=page"), the post type will be placed as a sub-menu of that. */ + showInMenu?: Maybe + /** Makes this content type available for selection in navigation menus. */ + showInNavMenus?: Maybe + /** Whether the content type is associated with a route under the the REST API "wp/v2" namespace. */ + showInRest?: Maybe + /** Whether to generate and allow a UI for managing this content type in the admin. */ + showUi?: Maybe + /** The unique resource identifier path */ + uri?: Maybe + } /** An Post Type object */ export type ContentTypeConnectedTaxonomiesArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** An Post Type object */ export type ContentTypeContentNodesArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** Connection to ContentType Nodes */ export type ContentTypeConnection = { /** A list of edges (relational context) between RootQuery and connected ContentType Nodes */ - edges: Array; + edges: Array /** A list of connected ContentType Nodes */ - nodes: Array; + nodes: Array /** Information about pagination in a connection. */ - pageInfo: ContentTypeConnectionPageInfo; -}; + pageInfo: ContentTypeConnectionPageInfo +} /** Edge between a Node and a connected ContentType */ export type ContentTypeConnectionEdge = { /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; + cursor?: Maybe /** The connected ContentType Node */ - node: ContentType; -}; + node: ContentType +} /** Page Info on the connected ContentTypeConnectionEdge */ export type ContentTypeConnectionPageInfo = { /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; + endCursor?: Maybe /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; + hasNextPage: Scalars['Boolean']['output'] /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; + hasPreviousPage: Scalars['Boolean']['output'] /** Raw schema for page */ - seo?: Maybe; + seo?: Maybe /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; + startCursor?: Maybe +} /** Allowed Content Types */ export enum ContentTypeEnum { @@ -2340,7 +2428,7 @@ export enum ContentTypeEnum { /** The Type of Content object */ Skill = 'SKILL', /** The Type of Content object */ - SocialNetworks = 'SOCIAL_NETWORKS' + SocialNetworks = 'SOCIAL_NETWORKS', } /** The Type of Identifier used to fetch a single Content Type node. To be used along with the "id" field. Default is "ID". */ @@ -2348,2154 +2436,2169 @@ export enum ContentTypeIdTypeEnum { /** The globally unique ID */ Id = 'ID', /** The name of the content type. */ - Name = 'NAME' + Name = 'NAME', } /** Connection between the ContentType type and the ContentNode type */ -export type ContentTypeToContentNodeConnection = Connection & ContentNodeConnection & { - __typename?: 'ContentTypeToContentNodeConnection'; - /** Edges for the ContentTypeToContentNodeConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: ContentTypeToContentNodeConnectionPageInfo; -}; +export type ContentTypeToContentNodeConnection = Connection & + ContentNodeConnection & { + __typename?: 'ContentTypeToContentNodeConnection' + /** Edges for the ContentTypeToContentNodeConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: ContentTypeToContentNodeConnectionPageInfo + } /** An edge in a connection */ -export type ContentTypeToContentNodeConnectionEdge = ContentNodeConnectionEdge & Edge & { - __typename?: 'ContentTypeToContentNodeConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: ContentNode; -}; +export type ContentTypeToContentNodeConnectionEdge = ContentNodeConnectionEdge & + Edge & { + __typename?: 'ContentTypeToContentNodeConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: ContentNode + } /** Page Info on the "ContentTypeToContentNodeConnection" */ -export type ContentTypeToContentNodeConnectionPageInfo = ContentNodeConnectionPageInfo & PageInfo & WpPageInfo & { - __typename?: 'ContentTypeToContentNodeConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type ContentTypeToContentNodeConnectionPageInfo = ContentNodeConnectionPageInfo & + PageInfo & + WpPageInfo & { + __typename?: 'ContentTypeToContentNodeConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the ContentTypeToContentNodeConnection connection */ export type ContentTypeToContentNodeConnectionWhereArgs = { /** The Types of content to filter */ - contentTypes?: InputMaybe>>; + contentTypes?: InputMaybe>> /** Filter the connection based on dates */ - dateQuery?: InputMaybe; + dateQuery?: InputMaybe /** True for objects with passwords; False for objects without passwords; null for all objects with or without passwords */ - hasPassword?: InputMaybe; + hasPassword?: InputMaybe /** Specific database ID of the object */ - id?: InputMaybe; + id?: InputMaybe /** Array of IDs for the objects to retrieve */ - in?: InputMaybe>>; + in?: InputMaybe>> /** Get objects with a specific mimeType property */ - mimeType?: InputMaybe; + mimeType?: InputMaybe /** Slug / post_name of the object */ - name?: InputMaybe; + name?: InputMaybe /** Specify objects to retrieve. Use slugs */ - nameIn?: InputMaybe>>; + nameIn?: InputMaybe>> /** Specify IDs NOT to retrieve. If this is used in the same query as "in", it will be ignored */ - notIn?: InputMaybe>>; + notIn?: InputMaybe>> /** What parameter to use to order the objects by. */ - orderby?: InputMaybe>>; + orderby?: InputMaybe>> /** Use ID to return only children. Use 0 to return only top-level items */ - parent?: InputMaybe; + parent?: InputMaybe /** Specify objects whose parent is in an array */ - parentIn?: InputMaybe>>; + parentIn?: InputMaybe>> /** Specify posts whose parent is not in an array */ - parentNotIn?: InputMaybe>>; + parentNotIn?: InputMaybe>> /** Show posts with a specific password. */ - password?: InputMaybe; + password?: InputMaybe /** Show Posts based on a keyword search */ - search?: InputMaybe; + search?: InputMaybe /** Retrieve posts where post status is in an array. */ - stati?: InputMaybe>>; + stati?: InputMaybe>> /** Show posts with a specific status. */ - status?: InputMaybe; + status?: InputMaybe /** Title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** Connection between the ContentType type and the Taxonomy type */ -export type ContentTypeToTaxonomyConnection = Connection & TaxonomyConnection & { - __typename?: 'ContentTypeToTaxonomyConnection'; - /** Edges for the ContentTypeToTaxonomyConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: ContentTypeToTaxonomyConnectionPageInfo; -}; +export type ContentTypeToTaxonomyConnection = Connection & + TaxonomyConnection & { + __typename?: 'ContentTypeToTaxonomyConnection' + /** Edges for the ContentTypeToTaxonomyConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: ContentTypeToTaxonomyConnectionPageInfo + } /** An edge in a connection */ -export type ContentTypeToTaxonomyConnectionEdge = Edge & TaxonomyConnectionEdge & { - __typename?: 'ContentTypeToTaxonomyConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: Taxonomy; -}; +export type ContentTypeToTaxonomyConnectionEdge = Edge & + TaxonomyConnectionEdge & { + __typename?: 'ContentTypeToTaxonomyConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: Taxonomy + } /** Page Info on the "ContentTypeToTaxonomyConnection" */ -export type ContentTypeToTaxonomyConnectionPageInfo = PageInfo & TaxonomyConnectionPageInfo & WpPageInfo & { - __typename?: 'ContentTypeToTaxonomyConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type ContentTypeToTaxonomyConnectionPageInfo = PageInfo & + TaxonomyConnectionPageInfo & + WpPageInfo & { + __typename?: 'ContentTypeToTaxonomyConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Allowed Content Types of the Category taxonomy. */ export enum ContentTypesOfCategoryEnum { /** The Type of Content object */ - Post = 'POST' + Post = 'POST', } /** Allowed Content Types of the PostFormat taxonomy. */ export enum ContentTypesOfPostFormatEnum { /** The Type of Content object */ - Post = 'POST' + Post = 'POST', } /** Allowed Content Types of the RecruitList taxonomy. */ export enum ContentTypesOfRecruitListEnum { /** The Type of Content object */ - Recruit = 'RECRUIT' + Recruit = 'RECRUIT', } /** Allowed Content Types of the ReviewList taxonomy. */ export enum ContentTypesOfReviewListEnum { /** The Type of Content object */ - Review = 'REVIEW' + Review = 'REVIEW', } /** Allowed Content Types of the SkillCategory taxonomy. */ export enum ContentTypesOfSkillCategoryEnum { /** The Type of Content object */ - Skill = 'SKILL' + Skill = 'SKILL', } /** Allowed Content Types of the Tag taxonomy. */ export enum ContentTypesOfTagEnum { /** The Type of Content object */ - Post = 'POST' + Post = 'POST', } /** Input for the createAboutItem mutation. */ export type CreateAboutItemInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** The content of the object */ - content?: InputMaybe; + content?: InputMaybe /** The date of the object. Preferable to enter as year/month/day (e.g. 01/31/2017) as it will rearrange date as fit if it is not specified. Incomplete dates may have unintended results for example, "2017" as the input will use current date with timestamp 20:17 */ - date?: InputMaybe; - language?: InputMaybe; + date?: InputMaybe + language?: InputMaybe /** A field used for ordering posts. This is typically used with nav menu items or for special ordering of hierarchical content types. */ - menuOrder?: InputMaybe; + menuOrder?: InputMaybe /** The password used to protect the content of the object */ - password?: InputMaybe; + password?: InputMaybe /** The slug of the object */ - slug?: InputMaybe; + slug?: InputMaybe /** The status of the object */ - status?: InputMaybe; + status?: InputMaybe /** The title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** The payload for the createAboutItem mutation. */ export type CreateAboutItemPayload = { - __typename?: 'CreateAboutItemPayload'; + __typename?: 'CreateAboutItemPayload' /** The Post object mutation type. */ - aboutItem?: Maybe; + aboutItem?: Maybe /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; -}; + clientMutationId?: Maybe +} /** Input for the createCategory mutation. */ export type CreateCategoryInput = { /** The slug that the category will be an alias of */ - aliasOf?: InputMaybe; + aliasOf?: InputMaybe /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** The description of the category object */ - description?: InputMaybe; - language?: InputMaybe; + description?: InputMaybe + language?: InputMaybe /** The name of the category object to mutate */ - name: Scalars['String']['input']; + name: Scalars['String']['input'] /** The ID of the category that should be set as the parent */ - parentId?: InputMaybe; + parentId?: InputMaybe /** If this argument exists then the slug will be checked to see if it is not an existing valid term. If that check succeeds (it is not a valid term), then it is added and the term id is given. If it fails, then a check is made to whether the taxonomy is hierarchical and the parent argument is not empty. If the second check succeeds, the term will be inserted and the term id will be given. If the slug argument is empty, then it will be calculated from the term name. */ - slug?: InputMaybe; -}; + slug?: InputMaybe +} /** The payload for the createCategory mutation. */ export type CreateCategoryPayload = { - __typename?: 'CreateCategoryPayload'; + __typename?: 'CreateCategoryPayload' /** The created category */ - category?: Maybe; + category?: Maybe /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; -}; + clientMutationId?: Maybe +} /** Input for the createComment mutation. */ export type CreateCommentInput = { /** The approval status of the comment. */ - approved?: InputMaybe; + approved?: InputMaybe /** The name of the comment's author. */ - author?: InputMaybe; + author?: InputMaybe /** The email of the comment's author. */ - authorEmail?: InputMaybe; + authorEmail?: InputMaybe /** The url of the comment's author. */ - authorUrl?: InputMaybe; + authorUrl?: InputMaybe /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** The database ID of the post object the comment belongs to. */ - commentOn?: InputMaybe; + commentOn?: InputMaybe /** Content of the comment. */ - content?: InputMaybe; + content?: InputMaybe /** The date of the object. Preferable to enter as year/month/day ( e.g. 01/31/2017 ) as it will rearrange date as fit if it is not specified. Incomplete dates may have unintended results for example, "2017" as the input will use current date with timestamp 20:17 */ - date?: InputMaybe; + date?: InputMaybe /** Parent comment ID of current comment. */ - parent?: InputMaybe; + parent?: InputMaybe /** The approval status of the comment */ - status?: InputMaybe; + status?: InputMaybe /** Type of comment. */ - type?: InputMaybe; -}; + type?: InputMaybe +} /** The payload for the createComment mutation. */ export type CreateCommentPayload = { - __typename?: 'CreateCommentPayload'; + __typename?: 'CreateCommentPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The comment that was created */ - comment?: Maybe; + comment?: Maybe /** Whether the mutation succeeded. If the comment is not approved, the server will not return the comment to a non authenticated user, but a success message can be returned if the create succeeded, and the client can optimistically add the comment to the client cache */ - success?: Maybe; -}; + success?: Maybe +} /** Input for the createCommonFragment mutation. */ export type CreateCommonFragmentInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** The content of the object */ - content?: InputMaybe; + content?: InputMaybe /** The date of the object. Preferable to enter as year/month/day (e.g. 01/31/2017) as it will rearrange date as fit if it is not specified. Incomplete dates may have unintended results for example, "2017" as the input will use current date with timestamp 20:17 */ - date?: InputMaybe; + date?: InputMaybe /** A field used for ordering posts. This is typically used with nav menu items or for special ordering of hierarchical content types. */ - menuOrder?: InputMaybe; + menuOrder?: InputMaybe /** The password used to protect the content of the object */ - password?: InputMaybe; + password?: InputMaybe /** The slug of the object */ - slug?: InputMaybe; + slug?: InputMaybe /** The status of the object */ - status?: InputMaybe; + status?: InputMaybe /** The title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** The payload for the createCommonFragment mutation. */ export type CreateCommonFragmentPayload = { - __typename?: 'CreateCommonFragmentPayload'; + __typename?: 'CreateCommonFragmentPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The Post object mutation type. */ - commonFragment?: Maybe; -}; + commonFragment?: Maybe +} /** Input for the createConfidentialityPolicy mutation. */ export type CreateConfidentialityPolicyInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** The content of the object */ - content?: InputMaybe; + content?: InputMaybe /** The date of the object. Preferable to enter as year/month/day (e.g. 01/31/2017) as it will rearrange date as fit if it is not specified. Incomplete dates may have unintended results for example, "2017" as the input will use current date with timestamp 20:17 */ - date?: InputMaybe; + date?: InputMaybe /** A field used for ordering posts. This is typically used with nav menu items or for special ordering of hierarchical content types. */ - menuOrder?: InputMaybe; + menuOrder?: InputMaybe /** The password used to protect the content of the object */ - password?: InputMaybe; + password?: InputMaybe /** The slug of the object */ - slug?: InputMaybe; + slug?: InputMaybe /** The status of the object */ - status?: InputMaybe; + status?: InputMaybe /** The title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** The payload for the createConfidentialityPolicy mutation. */ export type CreateConfidentialityPolicyPayload = { - __typename?: 'CreateConfidentialityPolicyPayload'; + __typename?: 'CreateConfidentialityPolicyPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The Post object mutation type. */ - confidentialityPolicy?: Maybe; -}; + confidentialityPolicy?: Maybe +} /** Input for the createContact mutation. */ export type CreateContactInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** The content of the object */ - content?: InputMaybe; + content?: InputMaybe /** The date of the object. Preferable to enter as year/month/day (e.g. 01/31/2017) as it will rearrange date as fit if it is not specified. Incomplete dates may have unintended results for example, "2017" as the input will use current date with timestamp 20:17 */ - date?: InputMaybe; + date?: InputMaybe /** A field used for ordering posts. This is typically used with nav menu items or for special ordering of hierarchical content types. */ - menuOrder?: InputMaybe; + menuOrder?: InputMaybe /** The password used to protect the content of the object */ - password?: InputMaybe; + password?: InputMaybe /** The slug of the object */ - slug?: InputMaybe; + slug?: InputMaybe /** The status of the object */ - status?: InputMaybe; + status?: InputMaybe /** The title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** Input for the createContactItem mutation. */ export type CreateContactItemInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** The content of the object */ - content?: InputMaybe; + content?: InputMaybe /** The date of the object. Preferable to enter as year/month/day (e.g. 01/31/2017) as it will rearrange date as fit if it is not specified. Incomplete dates may have unintended results for example, "2017" as the input will use current date with timestamp 20:17 */ - date?: InputMaybe; - language?: InputMaybe; + date?: InputMaybe + language?: InputMaybe /** A field used for ordering posts. This is typically used with nav menu items or for special ordering of hierarchical content types. */ - menuOrder?: InputMaybe; + menuOrder?: InputMaybe /** The password used to protect the content of the object */ - password?: InputMaybe; + password?: InputMaybe /** The slug of the object */ - slug?: InputMaybe; + slug?: InputMaybe /** The status of the object */ - status?: InputMaybe; + status?: InputMaybe /** The title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** The payload for the createContactItem mutation. */ export type CreateContactItemPayload = { - __typename?: 'CreateContactItemPayload'; + __typename?: 'CreateContactItemPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The Post object mutation type. */ - contactItem?: Maybe; -}; + contactItem?: Maybe +} /** The payload for the createContact mutation. */ export type CreateContactPayload = { - __typename?: 'CreateContactPayload'; + __typename?: 'CreateContactPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The Post object mutation type. */ - contact?: Maybe; -}; + contact?: Maybe +} /** Input for the createFeedbackItem mutation. */ export type CreateFeedbackItemInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** The content of the object */ - content?: InputMaybe; + content?: InputMaybe /** The date of the object. Preferable to enter as year/month/day (e.g. 01/31/2017) as it will rearrange date as fit if it is not specified. Incomplete dates may have unintended results for example, "2017" as the input will use current date with timestamp 20:17 */ - date?: InputMaybe; - language?: InputMaybe; + date?: InputMaybe + language?: InputMaybe /** A field used for ordering posts. This is typically used with nav menu items or for special ordering of hierarchical content types. */ - menuOrder?: InputMaybe; + menuOrder?: InputMaybe /** The password used to protect the content of the object */ - password?: InputMaybe; + password?: InputMaybe /** The slug of the object */ - slug?: InputMaybe; + slug?: InputMaybe /** The status of the object */ - status?: InputMaybe; + status?: InputMaybe /** The title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** The payload for the createFeedbackItem mutation. */ export type CreateFeedbackItemPayload = { - __typename?: 'CreateFeedbackItemPayload'; + __typename?: 'CreateFeedbackItemPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The Post object mutation type. */ - feedbackItem?: Maybe; -}; + feedbackItem?: Maybe +} /** Input for the createFooterItem mutation. */ export type CreateFooterItemInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** The content of the object */ - content?: InputMaybe; + content?: InputMaybe /** The date of the object. Preferable to enter as year/month/day (e.g. 01/31/2017) as it will rearrange date as fit if it is not specified. Incomplete dates may have unintended results for example, "2017" as the input will use current date with timestamp 20:17 */ - date?: InputMaybe; - language?: InputMaybe; + date?: InputMaybe + language?: InputMaybe /** A field used for ordering posts. This is typically used with nav menu items or for special ordering of hierarchical content types. */ - menuOrder?: InputMaybe; + menuOrder?: InputMaybe /** The password used to protect the content of the object */ - password?: InputMaybe; + password?: InputMaybe /** The slug of the object */ - slug?: InputMaybe; + slug?: InputMaybe /** The status of the object */ - status?: InputMaybe; + status?: InputMaybe /** The title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** The payload for the createFooterItem mutation. */ export type CreateFooterItemPayload = { - __typename?: 'CreateFooterItemPayload'; + __typename?: 'CreateFooterItemPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The Post object mutation type. */ - footerItem?: Maybe; -}; + footerItem?: Maybe +} /** Input for the createFragment mutation. */ export type CreateFragmentInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** The content of the object */ - content?: InputMaybe; + content?: InputMaybe /** The date of the object. Preferable to enter as year/month/day (e.g. 01/31/2017) as it will rearrange date as fit if it is not specified. Incomplete dates may have unintended results for example, "2017" as the input will use current date with timestamp 20:17 */ - date?: InputMaybe; + date?: InputMaybe /** The excerpt of the object */ - excerpt?: InputMaybe; - language?: InputMaybe; + excerpt?: InputMaybe + language?: InputMaybe /** A field used for ordering posts. This is typically used with nav menu items or for special ordering of hierarchical content types. */ - menuOrder?: InputMaybe; + menuOrder?: InputMaybe /** The password used to protect the content of the object */ - password?: InputMaybe; + password?: InputMaybe /** The slug of the object */ - slug?: InputMaybe; + slug?: InputMaybe /** The status of the object */ - status?: InputMaybe; + status?: InputMaybe /** The title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** The payload for the createFragment mutation. */ export type CreateFragmentPayload = { - __typename?: 'CreateFragmentPayload'; + __typename?: 'CreateFragmentPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The Post object mutation type. */ - fragment?: Maybe; -}; + fragment?: Maybe +} /** Input for the createHeroItem mutation. */ export type CreateHeroItemInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** The content of the object */ - content?: InputMaybe; + content?: InputMaybe /** The date of the object. Preferable to enter as year/month/day (e.g. 01/31/2017) as it will rearrange date as fit if it is not specified. Incomplete dates may have unintended results for example, "2017" as the input will use current date with timestamp 20:17 */ - date?: InputMaybe; - language?: InputMaybe; + date?: InputMaybe + language?: InputMaybe /** A field used for ordering posts. This is typically used with nav menu items or for special ordering of hierarchical content types. */ - menuOrder?: InputMaybe; + menuOrder?: InputMaybe /** The password used to protect the content of the object */ - password?: InputMaybe; + password?: InputMaybe /** The slug of the object */ - slug?: InputMaybe; + slug?: InputMaybe /** The status of the object */ - status?: InputMaybe; + status?: InputMaybe /** The title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** The payload for the createHeroItem mutation. */ export type CreateHeroItemPayload = { - __typename?: 'CreateHeroItemPayload'; + __typename?: 'CreateHeroItemPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The Post object mutation type. */ - heroItem?: Maybe; -}; + heroItem?: Maybe +} /** Input for the createMain mutation. */ export type CreateMainInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** The content of the object */ - content?: InputMaybe; + content?: InputMaybe /** The date of the object. Preferable to enter as year/month/day (e.g. 01/31/2017) as it will rearrange date as fit if it is not specified. Incomplete dates may have unintended results for example, "2017" as the input will use current date with timestamp 20:17 */ - date?: InputMaybe; + date?: InputMaybe /** A field used for ordering posts. This is typically used with nav menu items or for special ordering of hierarchical content types. */ - menuOrder?: InputMaybe; + menuOrder?: InputMaybe /** The password used to protect the content of the object */ - password?: InputMaybe; + password?: InputMaybe /** The slug of the object */ - slug?: InputMaybe; + slug?: InputMaybe /** The status of the object */ - status?: InputMaybe; + status?: InputMaybe /** The title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** The payload for the createMain mutation. */ export type CreateMainPayload = { - __typename?: 'CreateMainPayload'; + __typename?: 'CreateMainPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The Post object mutation type. */ - main?: Maybe
; -}; + main?: Maybe
+} /** Input for the createMediaItem mutation. */ export type CreateMediaItemInput = { /** Alternative text to display when mediaItem is not displayed */ - altText?: InputMaybe; + altText?: InputMaybe /** The userId to assign as the author of the mediaItem */ - authorId?: InputMaybe; + authorId?: InputMaybe /** The caption for the mediaItem */ - caption?: InputMaybe; + caption?: InputMaybe /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** The comment status for the mediaItem */ - commentStatus?: InputMaybe; + commentStatus?: InputMaybe /** The date of the mediaItem */ - date?: InputMaybe; + date?: InputMaybe /** The date (in GMT zone) of the mediaItem */ - dateGmt?: InputMaybe; + dateGmt?: InputMaybe /** Description of the mediaItem */ - description?: InputMaybe; + description?: InputMaybe /** The file name of the mediaItem */ - filePath?: InputMaybe; + filePath?: InputMaybe /** The file type of the mediaItem */ - fileType?: InputMaybe; - language?: InputMaybe; + fileType?: InputMaybe + language?: InputMaybe /** The ID of the parent object */ - parentId?: InputMaybe; + parentId?: InputMaybe /** The ping status for the mediaItem */ - pingStatus?: InputMaybe; + pingStatus?: InputMaybe /** The slug of the mediaItem */ - slug?: InputMaybe; + slug?: InputMaybe /** The status of the mediaItem */ - status?: InputMaybe; + status?: InputMaybe /** The title of the mediaItem */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** The payload for the createMediaItem mutation. */ export type CreateMediaItemPayload = { - __typename?: 'CreateMediaItemPayload'; + __typename?: 'CreateMediaItemPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The MediaItem object mutation type. */ - mediaItem?: Maybe; -}; + mediaItem?: Maybe +} /** Input for the createMessenger mutation. */ export type CreateMessengerInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** The content of the object */ - content?: InputMaybe; + content?: InputMaybe /** The date of the object. Preferable to enter as year/month/day (e.g. 01/31/2017) as it will rearrange date as fit if it is not specified. Incomplete dates may have unintended results for example, "2017" as the input will use current date with timestamp 20:17 */ - date?: InputMaybe; + date?: InputMaybe /** A field used for ordering posts. This is typically used with nav menu items or for special ordering of hierarchical content types. */ - menuOrder?: InputMaybe; + menuOrder?: InputMaybe /** The password used to protect the content of the object */ - password?: InputMaybe; + password?: InputMaybe /** The slug of the object */ - slug?: InputMaybe; + slug?: InputMaybe /** The status of the object */ - status?: InputMaybe; + status?: InputMaybe /** The title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** The payload for the createMessenger mutation. */ export type CreateMessengerPayload = { - __typename?: 'CreateMessengerPayload'; + __typename?: 'CreateMessengerPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The Post object mutation type. */ - messenger?: Maybe; -}; + messenger?: Maybe +} /** Input for the createNavigationItem mutation. */ export type CreateNavigationItemInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** The content of the object */ - content?: InputMaybe; + content?: InputMaybe /** The date of the object. Preferable to enter as year/month/day (e.g. 01/31/2017) as it will rearrange date as fit if it is not specified. Incomplete dates may have unintended results for example, "2017" as the input will use current date with timestamp 20:17 */ - date?: InputMaybe; - language?: InputMaybe; + date?: InputMaybe + language?: InputMaybe /** A field used for ordering posts. This is typically used with nav menu items or for special ordering of hierarchical content types. */ - menuOrder?: InputMaybe; + menuOrder?: InputMaybe /** The password used to protect the content of the object */ - password?: InputMaybe; + password?: InputMaybe /** The slug of the object */ - slug?: InputMaybe; + slug?: InputMaybe /** The status of the object */ - status?: InputMaybe; + status?: InputMaybe /** The title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** The payload for the createNavigationItem mutation. */ export type CreateNavigationItemPayload = { - __typename?: 'CreateNavigationItemPayload'; + __typename?: 'CreateNavigationItemPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The Post object mutation type. */ - navigationItem?: Maybe; -}; + navigationItem?: Maybe +} /** Input for the createNotFound mutation. */ export type CreateNotFoundInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** The content of the object */ - content?: InputMaybe; + content?: InputMaybe /** The date of the object. Preferable to enter as year/month/day (e.g. 01/31/2017) as it will rearrange date as fit if it is not specified. Incomplete dates may have unintended results for example, "2017" as the input will use current date with timestamp 20:17 */ - date?: InputMaybe; + date?: InputMaybe /** A field used for ordering posts. This is typically used with nav menu items or for special ordering of hierarchical content types. */ - menuOrder?: InputMaybe; + menuOrder?: InputMaybe /** The password used to protect the content of the object */ - password?: InputMaybe; + password?: InputMaybe /** The slug of the object */ - slug?: InputMaybe; + slug?: InputMaybe /** The status of the object */ - status?: InputMaybe; + status?: InputMaybe /** The title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** The payload for the createNotFound mutation. */ export type CreateNotFoundPayload = { - __typename?: 'CreateNotFoundPayload'; + __typename?: 'CreateNotFoundPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The Post object mutation type. */ - notFound?: Maybe; -}; + notFound?: Maybe +} /** Input for the createPage mutation. */ export type CreatePageInput = { /** The userId to assign as the author of the object */ - authorId?: InputMaybe; + authorId?: InputMaybe /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** The comment status for the object */ - commentStatus?: InputMaybe; + commentStatus?: InputMaybe /** The content of the object */ - content?: InputMaybe; + content?: InputMaybe /** The date of the object. Preferable to enter as year/month/day (e.g. 01/31/2017) as it will rearrange date as fit if it is not specified. Incomplete dates may have unintended results for example, "2017" as the input will use current date with timestamp 20:17 */ - date?: InputMaybe; - language?: InputMaybe; + date?: InputMaybe + language?: InputMaybe /** A field used for ordering posts. This is typically used with nav menu items or for special ordering of hierarchical content types. */ - menuOrder?: InputMaybe; + menuOrder?: InputMaybe /** The ID of the parent object */ - parentId?: InputMaybe; + parentId?: InputMaybe /** The password used to protect the content of the object */ - password?: InputMaybe; + password?: InputMaybe /** The slug of the object */ - slug?: InputMaybe; + slug?: InputMaybe /** The status of the object */ - status?: InputMaybe; + status?: InputMaybe /** The title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** The payload for the createPage mutation. */ export type CreatePagePayload = { - __typename?: 'CreatePagePayload'; + __typename?: 'CreatePagePayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The Post object mutation type. */ - page?: Maybe; -}; + page?: Maybe +} /** Input for the createPostFormat mutation. */ export type CreatePostFormatInput = { /** The slug that the post_format will be an alias of */ - aliasOf?: InputMaybe; + aliasOf?: InputMaybe /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** The description of the post_format object */ - description?: InputMaybe; + description?: InputMaybe /** The name of the post_format object to mutate */ - name: Scalars['String']['input']; + name: Scalars['String']['input'] /** If this argument exists then the slug will be checked to see if it is not an existing valid term. If that check succeeds (it is not a valid term), then it is added and the term id is given. If it fails, then a check is made to whether the taxonomy is hierarchical and the parent argument is not empty. If the second check succeeds, the term will be inserted and the term id will be given. If the slug argument is empty, then it will be calculated from the term name. */ - slug?: InputMaybe; -}; + slug?: InputMaybe +} /** The payload for the createPostFormat mutation. */ export type CreatePostFormatPayload = { - __typename?: 'CreatePostFormatPayload'; + __typename?: 'CreatePostFormatPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The created post_format */ - postFormat?: Maybe; -}; + postFormat?: Maybe +} /** Input for the createPost mutation. */ export type CreatePostInput = { /** The userId to assign as the author of the object */ - authorId?: InputMaybe; + authorId?: InputMaybe /** Set connections between the post and categories */ - categories?: InputMaybe; + categories?: InputMaybe /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** The comment status for the object */ - commentStatus?: InputMaybe; + commentStatus?: InputMaybe /** The content of the object */ - content?: InputMaybe; + content?: InputMaybe /** The date of the object. Preferable to enter as year/month/day (e.g. 01/31/2017) as it will rearrange date as fit if it is not specified. Incomplete dates may have unintended results for example, "2017" as the input will use current date with timestamp 20:17 */ - date?: InputMaybe; + date?: InputMaybe /** The excerpt of the object */ - excerpt?: InputMaybe; - language?: InputMaybe; + excerpt?: InputMaybe + language?: InputMaybe /** A field used for ordering posts. This is typically used with nav menu items or for special ordering of hierarchical content types. */ - menuOrder?: InputMaybe; + menuOrder?: InputMaybe /** The password used to protect the content of the object */ - password?: InputMaybe; + password?: InputMaybe /** The ping status for the object */ - pingStatus?: InputMaybe; + pingStatus?: InputMaybe /** URLs that have been pinged. */ - pinged?: InputMaybe>>; + pinged?: InputMaybe>> /** Set connections between the post and postFormats */ - postFormats?: InputMaybe; + postFormats?: InputMaybe /** The slug of the object */ - slug?: InputMaybe; + slug?: InputMaybe /** The status of the object */ - status?: InputMaybe; + status?: InputMaybe /** Set connections between the post and tags */ - tags?: InputMaybe; + tags?: InputMaybe /** The title of the object */ - title?: InputMaybe; + title?: InputMaybe /** URLs queued to be pinged. */ - toPing?: InputMaybe>>; -}; + toPing?: InputMaybe>> +} /** The payload for the createPost mutation. */ export type CreatePostPayload = { - __typename?: 'CreatePostPayload'; + __typename?: 'CreatePostPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The Post object mutation type. */ - post?: Maybe; -}; + post?: Maybe +} /** Input for the createPrivacyPolicyItem mutation. */ export type CreatePrivacyPolicyItemInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** The content of the object */ - content?: InputMaybe; + content?: InputMaybe /** The date of the object. Preferable to enter as year/month/day (e.g. 01/31/2017) as it will rearrange date as fit if it is not specified. Incomplete dates may have unintended results for example, "2017" as the input will use current date with timestamp 20:17 */ - date?: InputMaybe; - language?: InputMaybe; + date?: InputMaybe + language?: InputMaybe /** A field used for ordering posts. This is typically used with nav menu items or for special ordering of hierarchical content types. */ - menuOrder?: InputMaybe; + menuOrder?: InputMaybe /** The password used to protect the content of the object */ - password?: InputMaybe; + password?: InputMaybe /** The slug of the object */ - slug?: InputMaybe; + slug?: InputMaybe /** The status of the object */ - status?: InputMaybe; + status?: InputMaybe /** The title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** The payload for the createPrivacyPolicyItem mutation. */ export type CreatePrivacyPolicyItemPayload = { - __typename?: 'CreatePrivacyPolicyItemPayload'; + __typename?: 'CreatePrivacyPolicyItemPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The Post object mutation type. */ - privacyPolicyItem?: Maybe; -}; + privacyPolicyItem?: Maybe +} /** Input for the createRecruit mutation. */ export type CreateRecruitInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** The content of the object */ - content?: InputMaybe; + content?: InputMaybe /** The date of the object. Preferable to enter as year/month/day (e.g. 01/31/2017) as it will rearrange date as fit if it is not specified. Incomplete dates may have unintended results for example, "2017" as the input will use current date with timestamp 20:17 */ - date?: InputMaybe; - language?: InputMaybe; + date?: InputMaybe + language?: InputMaybe /** A field used for ordering posts. This is typically used with nav menu items or for special ordering of hierarchical content types. */ - menuOrder?: InputMaybe; + menuOrder?: InputMaybe /** The password used to protect the content of the object */ - password?: InputMaybe; + password?: InputMaybe /** Set connections between the Recruit and recruitLists */ - recruitLists?: InputMaybe; + recruitLists?: InputMaybe /** The slug of the object */ - slug?: InputMaybe; + slug?: InputMaybe /** The status of the object */ - status?: InputMaybe; + status?: InputMaybe /** The title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** Input for the createRecruitList mutation. */ export type CreateRecruitListInput = { /** The slug that the recruit_list will be an alias of */ - aliasOf?: InputMaybe; + aliasOf?: InputMaybe /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** The description of the recruit_list object */ - description?: InputMaybe; - language?: InputMaybe; + description?: InputMaybe + language?: InputMaybe /** The name of the recruit_list object to mutate */ - name: Scalars['String']['input']; + name: Scalars['String']['input'] /** If this argument exists then the slug will be checked to see if it is not an existing valid term. If that check succeeds (it is not a valid term), then it is added and the term id is given. If it fails, then a check is made to whether the taxonomy is hierarchical and the parent argument is not empty. If the second check succeeds, the term will be inserted and the term id will be given. If the slug argument is empty, then it will be calculated from the term name. */ - slug?: InputMaybe; -}; + slug?: InputMaybe +} /** The payload for the createRecruitList mutation. */ export type CreateRecruitListPayload = { - __typename?: 'CreateRecruitListPayload'; + __typename?: 'CreateRecruitListPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The created recruit_list */ - recruitList?: Maybe; -}; + recruitList?: Maybe +} /** The payload for the createRecruit mutation. */ export type CreateRecruitPayload = { - __typename?: 'CreateRecruitPayload'; + __typename?: 'CreateRecruitPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The Post object mutation type. */ - recruit?: Maybe; -}; + recruit?: Maybe +} /** Input for the createReview mutation. */ export type CreateReviewInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** The content of the object */ - content?: InputMaybe; + content?: InputMaybe /** The date of the object. Preferable to enter as year/month/day (e.g. 01/31/2017) as it will rearrange date as fit if it is not specified. Incomplete dates may have unintended results for example, "2017" as the input will use current date with timestamp 20:17 */ - date?: InputMaybe; - language?: InputMaybe; + date?: InputMaybe + language?: InputMaybe /** A field used for ordering posts. This is typically used with nav menu items or for special ordering of hierarchical content types. */ - menuOrder?: InputMaybe; + menuOrder?: InputMaybe /** The password used to protect the content of the object */ - password?: InputMaybe; + password?: InputMaybe /** Set connections between the review and reviewLists */ - reviewLists?: InputMaybe; + reviewLists?: InputMaybe /** The slug of the object */ - slug?: InputMaybe; + slug?: InputMaybe /** The status of the object */ - status?: InputMaybe; + status?: InputMaybe /** The title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** Input for the createReviewList mutation. */ export type CreateReviewListInput = { /** The slug that the review_list will be an alias of */ - aliasOf?: InputMaybe; + aliasOf?: InputMaybe /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** The description of the review_list object */ - description?: InputMaybe; - language?: InputMaybe; + description?: InputMaybe + language?: InputMaybe /** The name of the review_list object to mutate */ - name: Scalars['String']['input']; + name: Scalars['String']['input'] /** The ID of the review_list that should be set as the parent */ - parentId?: InputMaybe; + parentId?: InputMaybe /** If this argument exists then the slug will be checked to see if it is not an existing valid term. If that check succeeds (it is not a valid term), then it is added and the term id is given. If it fails, then a check is made to whether the taxonomy is hierarchical and the parent argument is not empty. If the second check succeeds, the term will be inserted and the term id will be given. If the slug argument is empty, then it will be calculated from the term name. */ - slug?: InputMaybe; -}; + slug?: InputMaybe +} /** The payload for the createReviewList mutation. */ export type CreateReviewListPayload = { - __typename?: 'CreateReviewListPayload'; + __typename?: 'CreateReviewListPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The created review_list */ - reviewList?: Maybe; -}; + reviewList?: Maybe +} /** The payload for the createReview mutation. */ export type CreateReviewPayload = { - __typename?: 'CreateReviewPayload'; + __typename?: 'CreateReviewPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The Post object mutation type. */ - review?: Maybe; -}; + review?: Maybe +} /** Input for the createSkillCategory mutation. */ export type CreateSkillCategoryInput = { /** The slug that the skill_list will be an alias of */ - aliasOf?: InputMaybe; + aliasOf?: InputMaybe /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** The description of the skill_list object */ - description?: InputMaybe; - language?: InputMaybe; + description?: InputMaybe + language?: InputMaybe /** The name of the skill_list object to mutate */ - name: Scalars['String']['input']; + name: Scalars['String']['input'] /** The ID of the skill_list that should be set as the parent */ - parentId?: InputMaybe; + parentId?: InputMaybe /** If this argument exists then the slug will be checked to see if it is not an existing valid term. If that check succeeds (it is not a valid term), then it is added and the term id is given. If it fails, then a check is made to whether the taxonomy is hierarchical and the parent argument is not empty. If the second check succeeds, the term will be inserted and the term id will be given. If the slug argument is empty, then it will be calculated from the term name. */ - slug?: InputMaybe; -}; + slug?: InputMaybe +} /** The payload for the createSkillCategory mutation. */ export type CreateSkillCategoryPayload = { - __typename?: 'CreateSkillCategoryPayload'; + __typename?: 'CreateSkillCategoryPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The created skill_list */ - skillCategory?: Maybe; -}; + skillCategory?: Maybe +} /** Input for the createSkill mutation. */ export type CreateSkillInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** The content of the object */ - content?: InputMaybe; + content?: InputMaybe /** The date of the object. Preferable to enter as year/month/day (e.g. 01/31/2017) as it will rearrange date as fit if it is not specified. Incomplete dates may have unintended results for example, "2017" as the input will use current date with timestamp 20:17 */ - date?: InputMaybe; - language?: InputMaybe; + date?: InputMaybe + language?: InputMaybe /** A field used for ordering posts. This is typically used with nav menu items or for special ordering of hierarchical content types. */ - menuOrder?: InputMaybe; + menuOrder?: InputMaybe /** The ID of the parent object */ - parentId?: InputMaybe; + parentId?: InputMaybe /** The password used to protect the content of the object */ - password?: InputMaybe; + password?: InputMaybe /** Set connections between the Skill and SkillCategories */ - skillCategories?: InputMaybe; + skillCategories?: InputMaybe /** The slug of the object */ - slug?: InputMaybe; + slug?: InputMaybe /** The status of the object */ - status?: InputMaybe; + status?: InputMaybe /** The title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** The payload for the createSkill mutation. */ export type CreateSkillPayload = { - __typename?: 'CreateSkillPayload'; + __typename?: 'CreateSkillPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The Post object mutation type. */ - skill?: Maybe; -}; + skill?: Maybe +} /** Input for the createSocialNetwork mutation. */ export type CreateSocialNetworkInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** The content of the object */ - content?: InputMaybe; + content?: InputMaybe /** The date of the object. Preferable to enter as year/month/day (e.g. 01/31/2017) as it will rearrange date as fit if it is not specified. Incomplete dates may have unintended results for example, "2017" as the input will use current date with timestamp 20:17 */ - date?: InputMaybe; + date?: InputMaybe /** A field used for ordering posts. This is typically used with nav menu items or for special ordering of hierarchical content types. */ - menuOrder?: InputMaybe; + menuOrder?: InputMaybe /** The password used to protect the content of the object */ - password?: InputMaybe; + password?: InputMaybe /** The slug of the object */ - slug?: InputMaybe; + slug?: InputMaybe /** The status of the object */ - status?: InputMaybe; + status?: InputMaybe /** The title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** The payload for the createSocialNetwork mutation. */ export type CreateSocialNetworkPayload = { - __typename?: 'CreateSocialNetworkPayload'; + __typename?: 'CreateSocialNetworkPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The Post object mutation type. */ - socialNetwork?: Maybe; -}; + socialNetwork?: Maybe +} /** Input for the createTag mutation. */ export type CreateTagInput = { /** The slug that the post_tag will be an alias of */ - aliasOf?: InputMaybe; + aliasOf?: InputMaybe /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** The description of the post_tag object */ - description?: InputMaybe; - language?: InputMaybe; + description?: InputMaybe + language?: InputMaybe /** The name of the post_tag object to mutate */ - name: Scalars['String']['input']; + name: Scalars['String']['input'] /** If this argument exists then the slug will be checked to see if it is not an existing valid term. If that check succeeds (it is not a valid term), then it is added and the term id is given. If it fails, then a check is made to whether the taxonomy is hierarchical and the parent argument is not empty. If the second check succeeds, the term will be inserted and the term id will be given. If the slug argument is empty, then it will be calculated from the term name. */ - slug?: InputMaybe; -}; + slug?: InputMaybe +} /** The payload for the createTag mutation. */ export type CreateTagPayload = { - __typename?: 'CreateTagPayload'; + __typename?: 'CreateTagPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The created post_tag */ - tag?: Maybe; -}; + tag?: Maybe +} /** Input for the createUser mutation. */ export type CreateUserInput = { /** User's AOL IM account. */ - aim?: InputMaybe; + aim?: InputMaybe /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** A string containing content about the user. */ - description?: InputMaybe; + description?: InputMaybe /** A string that will be shown on the site. Defaults to user's username. It is likely that you will want to change this, for both appearance and security through obscurity (that is if you dont use and delete the default admin user). */ - displayName?: InputMaybe; + displayName?: InputMaybe /** A string containing the user's email address. */ - email?: InputMaybe; + email?: InputMaybe /** The user's first name. */ - firstName?: InputMaybe; + firstName?: InputMaybe /** User's Jabber account. */ - jabber?: InputMaybe; + jabber?: InputMaybe /** The user's last name. */ - lastName?: InputMaybe; + lastName?: InputMaybe /** User's locale. */ - locale?: InputMaybe; + locale?: InputMaybe /** A string that contains a URL-friendly name for the user. The default is the user's username. */ - nicename?: InputMaybe; + nicename?: InputMaybe /** The user's nickname, defaults to the user's username. */ - nickname?: InputMaybe; + nickname?: InputMaybe /** A string that contains the plain text password for the user. */ - password?: InputMaybe; + password?: InputMaybe /** The date the user registered. Format is Y-m-d H:i:s. */ - registered?: InputMaybe; + registered?: InputMaybe /** A string for whether to enable the rich editor or not. False if not empty. */ - richEditing?: InputMaybe; + richEditing?: InputMaybe /** An array of roles to be assigned to the user. */ - roles?: InputMaybe>>; + roles?: InputMaybe>> /** A string that contains the user's username for logging in. */ - username: Scalars['String']['input']; + username: Scalars['String']['input'] /** A string containing the user's URL for the user's web site. */ - websiteUrl?: InputMaybe; + websiteUrl?: InputMaybe /** User's Yahoo IM account. */ - yim?: InputMaybe; -}; + yim?: InputMaybe +} /** The payload for the createUser mutation. */ export type CreateUserPayload = { - __typename?: 'CreateUserPayload'; + __typename?: 'CreateUserPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The User object mutation type. */ - user?: Maybe; -}; + user?: Maybe +} /** The "CustomerReview" Field Group. Added to the Schema by "WPGraphQL for ACF". */ -export type CustomerReview = AcfFieldGroup & AcfFieldGroupFields & CustomerReview_Fields & { - __typename?: 'CustomerReview'; - /** Состав ссылки: https:// + domain + .zone */ - companyLink?: Maybe; - /** - * The name of the field group - * @deprecated Use __typename instead - */ - fieldGroupName?: Maybe; - /** Выберите с кем работали */ - position?: Maybe>>; - /** Имя, оставляющего отзыв, человека */ - respondent?: Maybe; - /** Field of the "relationship" Field Type added to the schema as part of the "CustomerReview" Field Group */ - skills?: Maybe; -}; - +export type CustomerReview = AcfFieldGroup & + AcfFieldGroupFields & + CustomerReview_Fields & { + __typename?: 'CustomerReview' + /** Состав ссылки: https:// + domain + .zone */ + companyLink?: Maybe + /** + * The name of the field group + * @deprecated Use __typename instead + */ + fieldGroupName?: Maybe + /** Выберите с кем работали */ + position?: Maybe>> + /** Имя, оставляющего отзыв, человека */ + respondent?: Maybe + /** Field of the "relationship" Field Type added to the schema as part of the "CustomerReview" Field Group */ + skills?: Maybe + } /** The "CustomerReview" Field Group. Added to the Schema by "WPGraphQL for ACF". */ export type CustomerReviewSkillsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** Interface representing fields of the ACF "CustomerReview" Field Group */ export type CustomerReview_Fields = { /** Состав ссылки: https:// + domain + .zone */ - companyLink?: Maybe; + companyLink?: Maybe /** * The name of the field group * @deprecated Use __typename instead */ - fieldGroupName?: Maybe; + fieldGroupName?: Maybe /** Выберите с кем работали */ - position?: Maybe>>; + position?: Maybe>> /** Имя, оставляющего отзыв, человека */ - respondent?: Maybe; + respondent?: Maybe /** Field of the "relationship" Field Type added to the schema as part of the "CustomerReview" Field Group */ - skills?: Maybe; -}; - + skills?: Maybe +} /** Interface representing fields of the ACF "CustomerReview" Field Group */ export type CustomerReview_FieldsSkillsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** Object that can be identified with a Database ID */ export type DatabaseIdentifier = { /** The unique identifier stored in the database */ - databaseId: Scalars['Int']['output']; -}; + databaseId: Scalars['Int']['output'] +} /** Date values */ export type DateInput = { /** Day of the month (from 1 to 31) */ - day?: InputMaybe; + day?: InputMaybe /** Month number (from 1 to 12) */ - month?: InputMaybe; + month?: InputMaybe /** 4 digit year (e.g. 2017) */ - year?: InputMaybe; -}; + year?: InputMaybe +} /** Filter the connection based on input */ export type DateQueryInput = { /** Nodes should be returned after this date */ - after?: InputMaybe; + after?: InputMaybe /** Nodes should be returned before this date */ - before?: InputMaybe; + before?: InputMaybe /** Column to query against */ - column?: InputMaybe; + column?: InputMaybe /** For after/before, whether exact value should be matched or not */ - compare?: InputMaybe; + compare?: InputMaybe /** Day of the month (from 1 to 31) */ - day?: InputMaybe; + day?: InputMaybe /** Hour (from 0 to 23) */ - hour?: InputMaybe; + hour?: InputMaybe /** For after/before, whether exact value should be matched or not */ - inclusive?: InputMaybe; + inclusive?: InputMaybe /** Minute (from 0 to 59) */ - minute?: InputMaybe; + minute?: InputMaybe /** Month number (from 1 to 12) */ - month?: InputMaybe; + month?: InputMaybe /** OR or AND, how the sub-arrays should be compared */ - relation?: InputMaybe; + relation?: InputMaybe /** Second (0 to 59) */ - second?: InputMaybe; + second?: InputMaybe /** Week of the year (from 0 to 53) */ - week?: InputMaybe; + week?: InputMaybe /** 4 digit year (e.g. 2017) */ - year?: InputMaybe; -}; + year?: InputMaybe +} /** The template assigned to the node */ export type DefaultTemplate = ContentTemplate & { - __typename?: 'DefaultTemplate'; + __typename?: 'DefaultTemplate' /** The name of the template */ - templateName?: Maybe; -}; + templateName?: Maybe +} /** Input for the deleteAboutItem mutation. */ export type DeleteAboutItemInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** Whether the object should be force deleted instead of being moved to the trash */ - forceDelete?: InputMaybe; + forceDelete?: InputMaybe /** The ID of the AboutItem to delete */ - id: Scalars['ID']['input']; + id: Scalars['ID']['input'] /** Override the edit lock when another user is editing the post */ - ignoreEditLock?: InputMaybe; -}; + ignoreEditLock?: InputMaybe +} /** The payload for the deleteAboutItem mutation. */ export type DeleteAboutItemPayload = { - __typename?: 'DeleteAboutItemPayload'; + __typename?: 'DeleteAboutItemPayload' /** The object before it was deleted */ - aboutItem?: Maybe; + aboutItem?: Maybe /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The ID of the deleted object */ - deletedId?: Maybe; -}; + deletedId?: Maybe +} /** Input for the deleteCategory mutation. */ export type DeleteCategoryInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** The ID of the category to delete */ - id: Scalars['ID']['input']; -}; + id: Scalars['ID']['input'] +} /** The payload for the deleteCategory mutation. */ export type DeleteCategoryPayload = { - __typename?: 'DeleteCategoryPayload'; + __typename?: 'DeleteCategoryPayload' /** The deleted term object */ - category?: Maybe; + category?: Maybe /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The ID of the deleted object */ - deletedId?: Maybe; -}; + deletedId?: Maybe +} /** Input for the deleteComment mutation. */ export type DeleteCommentInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** Whether the comment should be force deleted instead of being moved to the trash */ - forceDelete?: InputMaybe; + forceDelete?: InputMaybe /** The deleted comment ID */ - id: Scalars['ID']['input']; -}; + id: Scalars['ID']['input'] +} /** The payload for the deleteComment mutation. */ export type DeleteCommentPayload = { - __typename?: 'DeleteCommentPayload'; + __typename?: 'DeleteCommentPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The deleted comment object */ - comment?: Maybe; + comment?: Maybe /** The deleted comment ID */ - deletedId?: Maybe; -}; + deletedId?: Maybe +} /** Input for the deleteCommonFragment mutation. */ export type DeleteCommonFragmentInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** Whether the object should be force deleted instead of being moved to the trash */ - forceDelete?: InputMaybe; + forceDelete?: InputMaybe /** The ID of the CommonFragment to delete */ - id: Scalars['ID']['input']; + id: Scalars['ID']['input'] /** Override the edit lock when another user is editing the post */ - ignoreEditLock?: InputMaybe; -}; + ignoreEditLock?: InputMaybe +} /** The payload for the deleteCommonFragment mutation. */ export type DeleteCommonFragmentPayload = { - __typename?: 'DeleteCommonFragmentPayload'; + __typename?: 'DeleteCommonFragmentPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The object before it was deleted */ - commonFragment?: Maybe; + commonFragment?: Maybe /** The ID of the deleted object */ - deletedId?: Maybe; -}; + deletedId?: Maybe +} /** Input for the deleteConfidentialityPolicy mutation. */ export type DeleteConfidentialityPolicyInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** Whether the object should be force deleted instead of being moved to the trash */ - forceDelete?: InputMaybe; + forceDelete?: InputMaybe /** The ID of the confidentialityPolicy to delete */ - id: Scalars['ID']['input']; + id: Scalars['ID']['input'] /** Override the edit lock when another user is editing the post */ - ignoreEditLock?: InputMaybe; -}; + ignoreEditLock?: InputMaybe +} /** The payload for the deleteConfidentialityPolicy mutation. */ export type DeleteConfidentialityPolicyPayload = { - __typename?: 'DeleteConfidentialityPolicyPayload'; + __typename?: 'DeleteConfidentialityPolicyPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The object before it was deleted */ - confidentialityPolicy?: Maybe; + confidentialityPolicy?: Maybe /** The ID of the deleted object */ - deletedId?: Maybe; -}; + deletedId?: Maybe +} /** Input for the deleteContact mutation. */ export type DeleteContactInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** Whether the object should be force deleted instead of being moved to the trash */ - forceDelete?: InputMaybe; + forceDelete?: InputMaybe /** The ID of the Contact to delete */ - id: Scalars['ID']['input']; + id: Scalars['ID']['input'] /** Override the edit lock when another user is editing the post */ - ignoreEditLock?: InputMaybe; -}; + ignoreEditLock?: InputMaybe +} /** Input for the deleteContactItem mutation. */ export type DeleteContactItemInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** Whether the object should be force deleted instead of being moved to the trash */ - forceDelete?: InputMaybe; + forceDelete?: InputMaybe /** The ID of the ContactItem to delete */ - id: Scalars['ID']['input']; + id: Scalars['ID']['input'] /** Override the edit lock when another user is editing the post */ - ignoreEditLock?: InputMaybe; -}; + ignoreEditLock?: InputMaybe +} /** The payload for the deleteContactItem mutation. */ export type DeleteContactItemPayload = { - __typename?: 'DeleteContactItemPayload'; + __typename?: 'DeleteContactItemPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The object before it was deleted */ - contactItem?: Maybe; + contactItem?: Maybe /** The ID of the deleted object */ - deletedId?: Maybe; -}; + deletedId?: Maybe +} /** The payload for the deleteContact mutation. */ export type DeleteContactPayload = { - __typename?: 'DeleteContactPayload'; + __typename?: 'DeleteContactPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The object before it was deleted */ - contact?: Maybe; + contact?: Maybe /** The ID of the deleted object */ - deletedId?: Maybe; -}; + deletedId?: Maybe +} /** Input for the deleteFeedbackItem mutation. */ export type DeleteFeedbackItemInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** Whether the object should be force deleted instead of being moved to the trash */ - forceDelete?: InputMaybe; + forceDelete?: InputMaybe /** The ID of the FeedbackItem to delete */ - id: Scalars['ID']['input']; + id: Scalars['ID']['input'] /** Override the edit lock when another user is editing the post */ - ignoreEditLock?: InputMaybe; -}; + ignoreEditLock?: InputMaybe +} /** The payload for the deleteFeedbackItem mutation. */ export type DeleteFeedbackItemPayload = { - __typename?: 'DeleteFeedbackItemPayload'; + __typename?: 'DeleteFeedbackItemPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The ID of the deleted object */ - deletedId?: Maybe; + deletedId?: Maybe /** The object before it was deleted */ - feedbackItem?: Maybe; -}; + feedbackItem?: Maybe +} /** Input for the deleteFooterItem mutation. */ export type DeleteFooterItemInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** Whether the object should be force deleted instead of being moved to the trash */ - forceDelete?: InputMaybe; + forceDelete?: InputMaybe /** The ID of the FooterItem to delete */ - id: Scalars['ID']['input']; + id: Scalars['ID']['input'] /** Override the edit lock when another user is editing the post */ - ignoreEditLock?: InputMaybe; -}; + ignoreEditLock?: InputMaybe +} /** The payload for the deleteFooterItem mutation. */ export type DeleteFooterItemPayload = { - __typename?: 'DeleteFooterItemPayload'; + __typename?: 'DeleteFooterItemPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The ID of the deleted object */ - deletedId?: Maybe; + deletedId?: Maybe /** The object before it was deleted */ - footerItem?: Maybe; -}; + footerItem?: Maybe +} /** Input for the deleteFragment mutation. */ export type DeleteFragmentInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** Whether the object should be force deleted instead of being moved to the trash */ - forceDelete?: InputMaybe; + forceDelete?: InputMaybe /** The ID of the Fragment to delete */ - id: Scalars['ID']['input']; + id: Scalars['ID']['input'] /** Override the edit lock when another user is editing the post */ - ignoreEditLock?: InputMaybe; -}; + ignoreEditLock?: InputMaybe +} /** The payload for the deleteFragment mutation. */ export type DeleteFragmentPayload = { - __typename?: 'DeleteFragmentPayload'; + __typename?: 'DeleteFragmentPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The ID of the deleted object */ - deletedId?: Maybe; + deletedId?: Maybe /** The object before it was deleted */ - fragment?: Maybe; -}; + fragment?: Maybe +} /** Input for the deleteHeroItem mutation. */ export type DeleteHeroItemInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** Whether the object should be force deleted instead of being moved to the trash */ - forceDelete?: InputMaybe; + forceDelete?: InputMaybe /** The ID of the HeroItem to delete */ - id: Scalars['ID']['input']; + id: Scalars['ID']['input'] /** Override the edit lock when another user is editing the post */ - ignoreEditLock?: InputMaybe; -}; + ignoreEditLock?: InputMaybe +} /** The payload for the deleteHeroItem mutation. */ export type DeleteHeroItemPayload = { - __typename?: 'DeleteHeroItemPayload'; + __typename?: 'DeleteHeroItemPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The ID of the deleted object */ - deletedId?: Maybe; + deletedId?: Maybe /** The object before it was deleted */ - heroItem?: Maybe; -}; + heroItem?: Maybe +} /** Input for the deleteMain mutation. */ export type DeleteMainInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** Whether the object should be force deleted instead of being moved to the trash */ - forceDelete?: InputMaybe; + forceDelete?: InputMaybe /** The ID of the Main to delete */ - id: Scalars['ID']['input']; + id: Scalars['ID']['input'] /** Override the edit lock when another user is editing the post */ - ignoreEditLock?: InputMaybe; -}; + ignoreEditLock?: InputMaybe +} /** The payload for the deleteMain mutation. */ export type DeleteMainPayload = { - __typename?: 'DeleteMainPayload'; + __typename?: 'DeleteMainPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The ID of the deleted object */ - deletedId?: Maybe; + deletedId?: Maybe /** The object before it was deleted */ - main?: Maybe
; -}; + main?: Maybe
+} /** Input for the deleteMediaItem mutation. */ export type DeleteMediaItemInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** Whether the mediaItem should be force deleted instead of being moved to the trash */ - forceDelete?: InputMaybe; + forceDelete?: InputMaybe /** The ID of the mediaItem to delete */ - id: Scalars['ID']['input']; -}; + id: Scalars['ID']['input'] +} /** The payload for the deleteMediaItem mutation. */ export type DeleteMediaItemPayload = { - __typename?: 'DeleteMediaItemPayload'; + __typename?: 'DeleteMediaItemPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The ID of the deleted mediaItem */ - deletedId?: Maybe; + deletedId?: Maybe /** The mediaItem before it was deleted */ - mediaItem?: Maybe; -}; + mediaItem?: Maybe +} /** Input for the deleteMessenger mutation. */ export type DeleteMessengerInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** Whether the object should be force deleted instead of being moved to the trash */ - forceDelete?: InputMaybe; + forceDelete?: InputMaybe /** The ID of the Messenger to delete */ - id: Scalars['ID']['input']; + id: Scalars['ID']['input'] /** Override the edit lock when another user is editing the post */ - ignoreEditLock?: InputMaybe; -}; + ignoreEditLock?: InputMaybe +} /** The payload for the deleteMessenger mutation. */ export type DeleteMessengerPayload = { - __typename?: 'DeleteMessengerPayload'; + __typename?: 'DeleteMessengerPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The ID of the deleted object */ - deletedId?: Maybe; + deletedId?: Maybe /** The object before it was deleted */ - messenger?: Maybe; -}; + messenger?: Maybe +} /** Input for the deleteNavigationItem mutation. */ export type DeleteNavigationItemInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** Whether the object should be force deleted instead of being moved to the trash */ - forceDelete?: InputMaybe; + forceDelete?: InputMaybe /** The ID of the NavigationItem to delete */ - id: Scalars['ID']['input']; + id: Scalars['ID']['input'] /** Override the edit lock when another user is editing the post */ - ignoreEditLock?: InputMaybe; -}; + ignoreEditLock?: InputMaybe +} /** The payload for the deleteNavigationItem mutation. */ export type DeleteNavigationItemPayload = { - __typename?: 'DeleteNavigationItemPayload'; + __typename?: 'DeleteNavigationItemPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The ID of the deleted object */ - deletedId?: Maybe; + deletedId?: Maybe /** The object before it was deleted */ - navigationItem?: Maybe; -}; + navigationItem?: Maybe +} /** Input for the deleteNotFound mutation. */ export type DeleteNotFoundInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** Whether the object should be force deleted instead of being moved to the trash */ - forceDelete?: InputMaybe; + forceDelete?: InputMaybe /** The ID of the NotFound to delete */ - id: Scalars['ID']['input']; + id: Scalars['ID']['input'] /** Override the edit lock when another user is editing the post */ - ignoreEditLock?: InputMaybe; -}; + ignoreEditLock?: InputMaybe +} /** The payload for the deleteNotFound mutation. */ export type DeleteNotFoundPayload = { - __typename?: 'DeleteNotFoundPayload'; + __typename?: 'DeleteNotFoundPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The ID of the deleted object */ - deletedId?: Maybe; + deletedId?: Maybe /** The object before it was deleted */ - notFound?: Maybe; -}; + notFound?: Maybe +} /** Input for the deletePage mutation. */ export type DeletePageInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** Whether the object should be force deleted instead of being moved to the trash */ - forceDelete?: InputMaybe; + forceDelete?: InputMaybe /** The ID of the page to delete */ - id: Scalars['ID']['input']; + id: Scalars['ID']['input'] /** Override the edit lock when another user is editing the post */ - ignoreEditLock?: InputMaybe; -}; + ignoreEditLock?: InputMaybe +} /** The payload for the deletePage mutation. */ export type DeletePagePayload = { - __typename?: 'DeletePagePayload'; + __typename?: 'DeletePagePayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The ID of the deleted object */ - deletedId?: Maybe; + deletedId?: Maybe /** The object before it was deleted */ - page?: Maybe; -}; + page?: Maybe +} /** Input for the deletePostFormat mutation. */ export type DeletePostFormatInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** The ID of the postFormat to delete */ - id: Scalars['ID']['input']; -}; + id: Scalars['ID']['input'] +} /** The payload for the deletePostFormat mutation. */ export type DeletePostFormatPayload = { - __typename?: 'DeletePostFormatPayload'; + __typename?: 'DeletePostFormatPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The ID of the deleted object */ - deletedId?: Maybe; + deletedId?: Maybe /** The deleted term object */ - postFormat?: Maybe; -}; + postFormat?: Maybe +} /** Input for the deletePost mutation. */ export type DeletePostInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** Whether the object should be force deleted instead of being moved to the trash */ - forceDelete?: InputMaybe; + forceDelete?: InputMaybe /** The ID of the post to delete */ - id: Scalars['ID']['input']; + id: Scalars['ID']['input'] /** Override the edit lock when another user is editing the post */ - ignoreEditLock?: InputMaybe; -}; + ignoreEditLock?: InputMaybe +} /** The payload for the deletePost mutation. */ export type DeletePostPayload = { - __typename?: 'DeletePostPayload'; + __typename?: 'DeletePostPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The ID of the deleted object */ - deletedId?: Maybe; + deletedId?: Maybe /** The object before it was deleted */ - post?: Maybe; -}; + post?: Maybe +} /** Input for the deletePrivacyPolicyItem mutation. */ export type DeletePrivacyPolicyItemInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** Whether the object should be force deleted instead of being moved to the trash */ - forceDelete?: InputMaybe; + forceDelete?: InputMaybe /** The ID of the PrivacyPolicyItem to delete */ - id: Scalars['ID']['input']; + id: Scalars['ID']['input'] /** Override the edit lock when another user is editing the post */ - ignoreEditLock?: InputMaybe; -}; + ignoreEditLock?: InputMaybe +} /** The payload for the deletePrivacyPolicyItem mutation. */ export type DeletePrivacyPolicyItemPayload = { - __typename?: 'DeletePrivacyPolicyItemPayload'; + __typename?: 'DeletePrivacyPolicyItemPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The ID of the deleted object */ - deletedId?: Maybe; + deletedId?: Maybe /** The object before it was deleted */ - privacyPolicyItem?: Maybe; -}; + privacyPolicyItem?: Maybe +} /** Input for the deleteRecruit mutation. */ export type DeleteRecruitInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** Whether the object should be force deleted instead of being moved to the trash */ - forceDelete?: InputMaybe; + forceDelete?: InputMaybe /** The ID of the Recruit to delete */ - id: Scalars['ID']['input']; + id: Scalars['ID']['input'] /** Override the edit lock when another user is editing the post */ - ignoreEditLock?: InputMaybe; -}; + ignoreEditLock?: InputMaybe +} /** Input for the deleteRecruitList mutation. */ export type DeleteRecruitListInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** The ID of the recruitList to delete */ - id: Scalars['ID']['input']; -}; + id: Scalars['ID']['input'] +} /** The payload for the deleteRecruitList mutation. */ export type DeleteRecruitListPayload = { - __typename?: 'DeleteRecruitListPayload'; + __typename?: 'DeleteRecruitListPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The ID of the deleted object */ - deletedId?: Maybe; + deletedId?: Maybe /** The deleted term object */ - recruitList?: Maybe; -}; + recruitList?: Maybe +} /** The payload for the deleteRecruit mutation. */ export type DeleteRecruitPayload = { - __typename?: 'DeleteRecruitPayload'; + __typename?: 'DeleteRecruitPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The ID of the deleted object */ - deletedId?: Maybe; + deletedId?: Maybe /** The object before it was deleted */ - recruit?: Maybe; -}; + recruit?: Maybe +} /** Input for the deleteReview mutation. */ export type DeleteReviewInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** Whether the object should be force deleted instead of being moved to the trash */ - forceDelete?: InputMaybe; + forceDelete?: InputMaybe /** The ID of the review to delete */ - id: Scalars['ID']['input']; + id: Scalars['ID']['input'] /** Override the edit lock when another user is editing the post */ - ignoreEditLock?: InputMaybe; -}; + ignoreEditLock?: InputMaybe +} /** Input for the deleteReviewList mutation. */ export type DeleteReviewListInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** The ID of the reviewList to delete */ - id: Scalars['ID']['input']; -}; + id: Scalars['ID']['input'] +} /** The payload for the deleteReviewList mutation. */ export type DeleteReviewListPayload = { - __typename?: 'DeleteReviewListPayload'; + __typename?: 'DeleteReviewListPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The ID of the deleted object */ - deletedId?: Maybe; + deletedId?: Maybe /** The deleted term object */ - reviewList?: Maybe; -}; + reviewList?: Maybe +} /** The payload for the deleteReview mutation. */ export type DeleteReviewPayload = { - __typename?: 'DeleteReviewPayload'; + __typename?: 'DeleteReviewPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The ID of the deleted object */ - deletedId?: Maybe; + deletedId?: Maybe /** The object before it was deleted */ - review?: Maybe; -}; + review?: Maybe +} /** Input for the deleteSkillCategory mutation. */ export type DeleteSkillCategoryInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** The ID of the SkillCategory to delete */ - id: Scalars['ID']['input']; -}; + id: Scalars['ID']['input'] +} /** The payload for the deleteSkillCategory mutation. */ export type DeleteSkillCategoryPayload = { - __typename?: 'DeleteSkillCategoryPayload'; + __typename?: 'DeleteSkillCategoryPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The ID of the deleted object */ - deletedId?: Maybe; + deletedId?: Maybe /** The deleted term object */ - skillCategory?: Maybe; -}; + skillCategory?: Maybe +} /** Input for the deleteSkill mutation. */ export type DeleteSkillInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** Whether the object should be force deleted instead of being moved to the trash */ - forceDelete?: InputMaybe; + forceDelete?: InputMaybe /** The ID of the Skill to delete */ - id: Scalars['ID']['input']; + id: Scalars['ID']['input'] /** Override the edit lock when another user is editing the post */ - ignoreEditLock?: InputMaybe; -}; + ignoreEditLock?: InputMaybe +} /** The payload for the deleteSkill mutation. */ export type DeleteSkillPayload = { - __typename?: 'DeleteSkillPayload'; + __typename?: 'DeleteSkillPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The ID of the deleted object */ - deletedId?: Maybe; + deletedId?: Maybe /** The object before it was deleted */ - skill?: Maybe; -}; + skill?: Maybe +} /** Input for the deleteSocialNetwork mutation. */ export type DeleteSocialNetworkInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** Whether the object should be force deleted instead of being moved to the trash */ - forceDelete?: InputMaybe; + forceDelete?: InputMaybe /** The ID of the SocialNetwork to delete */ - id: Scalars['ID']['input']; + id: Scalars['ID']['input'] /** Override the edit lock when another user is editing the post */ - ignoreEditLock?: InputMaybe; -}; + ignoreEditLock?: InputMaybe +} /** The payload for the deleteSocialNetwork mutation. */ export type DeleteSocialNetworkPayload = { - __typename?: 'DeleteSocialNetworkPayload'; + __typename?: 'DeleteSocialNetworkPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The ID of the deleted object */ - deletedId?: Maybe; + deletedId?: Maybe /** The object before it was deleted */ - socialNetwork?: Maybe; -}; + socialNetwork?: Maybe +} /** Input for the deleteTag mutation. */ export type DeleteTagInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** The ID of the tag to delete */ - id: Scalars['ID']['input']; -}; + id: Scalars['ID']['input'] +} /** The payload for the deleteTag mutation. */ export type DeleteTagPayload = { - __typename?: 'DeleteTagPayload'; + __typename?: 'DeleteTagPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The ID of the deleted object */ - deletedId?: Maybe; + deletedId?: Maybe /** The deleted term object */ - tag?: Maybe; -}; + tag?: Maybe +} /** Input for the deleteUser mutation. */ export type DeleteUserInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** The ID of the user you want to delete */ - id: Scalars['ID']['input']; + id: Scalars['ID']['input'] /** Reassign posts and links to new User ID. */ - reassignId?: InputMaybe; -}; + reassignId?: InputMaybe +} /** The payload for the deleteUser mutation. */ export type DeleteUserPayload = { - __typename?: 'DeleteUserPayload'; + __typename?: 'DeleteUserPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The ID of the user that you just deleted */ - deletedId?: Maybe; + deletedId?: Maybe /** The deleted user object */ - user?: Maybe; -}; + user?: Maybe +} /** The discussion setting type */ export type DiscussionSettings = { - __typename?: 'DiscussionSettings'; + __typename?: 'DiscussionSettings' /** Разрешить оставлять комментарии к новым записям. */ - defaultCommentStatus?: Maybe; + defaultCommentStatus?: Maybe /** Разрешить ссылки оповещения с других блогов (уведомления и обратные ссылки) на новые статьи. */ - defaultPingStatus?: Maybe; -}; + defaultPingStatus?: Maybe +} /** Relational context between connected nodes */ export type Edge = { /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; + cursor?: Maybe /** The connected node */ - node: Node; -}; + node: Node +} /** Asset enqueued by the CMS */ export type EnqueuedAsset = { /** The inline code to be run after the asset is loaded. */ - after?: Maybe>>; + after?: Maybe>> /** * Deprecated * @deprecated Use `EnqueuedAsset.media` instead. */ - args?: Maybe; + args?: Maybe /** The inline code to be run before the asset is loaded. */ - before?: Maybe>>; + before?: Maybe>> /** The HTML conditional comment for the enqueued asset. E.g. IE 6, lte IE 7, etc */ - conditional?: Maybe; + conditional?: Maybe /** Dependencies needed to use this asset */ - dependencies?: Maybe>>; + dependencies?: Maybe>> /** * Extra information needed for the script * @deprecated Use `EnqueuedScript.extraData` instead. */ - extra?: Maybe; + extra?: Maybe /** The handle of the enqueued asset */ - handle?: Maybe; + handle?: Maybe /** The ID of the enqueued asset */ - id: Scalars['ID']['output']; + id: Scalars['ID']['output'] /** The source of the asset */ - src?: Maybe; + src?: Maybe /** The version of the enqueued asset */ - version?: Maybe; -}; + version?: Maybe +} /** Script enqueued by the CMS */ -export type EnqueuedScript = EnqueuedAsset & Node & { - __typename?: 'EnqueuedScript'; - /** The inline code to be run after the asset is loaded. */ - after?: Maybe>>; - /** - * Deprecated - * @deprecated Use `EnqueuedAsset.media` instead. - */ - args?: Maybe; - /** The inline code to be run before the asset is loaded. */ - before?: Maybe>>; - /** The HTML conditional comment for the enqueued asset. E.g. IE 6, lte IE 7, etc */ - conditional?: Maybe; - /** Dependencies needed to use this asset */ - dependencies?: Maybe>>; - /** - * Extra information needed for the script - * @deprecated Use `EnqueuedScript.extraData` instead. - */ - extra?: Maybe; - /** Extra data supplied to the enqueued script */ - extraData?: Maybe; - /** The handle of the enqueued asset */ - handle?: Maybe; - /** The global ID of the enqueued script */ - id: Scalars['ID']['output']; - /** The source of the asset */ - src?: Maybe; - /** The loading strategy to use on the script tag */ - strategy?: Maybe; - /** The version of the enqueued script */ - version?: Maybe; -}; +export type EnqueuedScript = EnqueuedAsset & + Node & { + __typename?: 'EnqueuedScript' + /** The inline code to be run after the asset is loaded. */ + after?: Maybe>> + /** + * Deprecated + * @deprecated Use `EnqueuedAsset.media` instead. + */ + args?: Maybe + /** The inline code to be run before the asset is loaded. */ + before?: Maybe>> + /** The HTML conditional comment for the enqueued asset. E.g. IE 6, lte IE 7, etc */ + conditional?: Maybe + /** Dependencies needed to use this asset */ + dependencies?: Maybe>> + /** + * Extra information needed for the script + * @deprecated Use `EnqueuedScript.extraData` instead. + */ + extra?: Maybe + /** Extra data supplied to the enqueued script */ + extraData?: Maybe + /** The handle of the enqueued asset */ + handle?: Maybe + /** The global ID of the enqueued script */ + id: Scalars['ID']['output'] + /** The source of the asset */ + src?: Maybe + /** The loading strategy to use on the script tag */ + strategy?: Maybe + /** The version of the enqueued script */ + version?: Maybe + } /** Connection to EnqueuedScript Nodes */ export type EnqueuedScriptConnection = { /** A list of edges (relational context) between ContentNode and connected EnqueuedScript Nodes */ - edges: Array; + edges: Array /** A list of connected EnqueuedScript Nodes */ - nodes: Array; + nodes: Array /** Information about pagination in a connection. */ - pageInfo: EnqueuedScriptConnectionPageInfo; -}; + pageInfo: EnqueuedScriptConnectionPageInfo +} /** Edge between a Node and a connected EnqueuedScript */ export type EnqueuedScriptConnectionEdge = { /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; + cursor?: Maybe /** The connected EnqueuedScript Node */ - node: EnqueuedScript; -}; + node: EnqueuedScript +} /** Page Info on the connected EnqueuedScriptConnectionEdge */ export type EnqueuedScriptConnectionPageInfo = { /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; + endCursor?: Maybe /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; + hasNextPage: Scalars['Boolean']['output'] /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; + hasPreviousPage: Scalars['Boolean']['output'] /** Raw schema for page */ - seo?: Maybe; + seo?: Maybe /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; + startCursor?: Maybe +} /** Stylesheet enqueued by the CMS */ -export type EnqueuedStylesheet = EnqueuedAsset & Node & { - __typename?: 'EnqueuedStylesheet'; - /** The inline code to be run after the asset is loaded. */ - after?: Maybe>>; - /** - * Deprecated - * @deprecated Use `EnqueuedAsset.media` instead. - */ - args?: Maybe; - /** The inline code to be run before the asset is loaded. */ - before?: Maybe>>; - /** The HTML conditional comment for the enqueued asset. E.g. IE 6, lte IE 7, etc */ - conditional?: Maybe; - /** Dependencies needed to use this asset */ - dependencies?: Maybe>>; - /** - * Extra information needed for the script - * @deprecated Use `EnqueuedScript.extraData` instead. - */ - extra?: Maybe; - /** The handle of the enqueued asset */ - handle?: Maybe; - /** The global ID of the enqueued stylesheet */ - id: Scalars['ID']['output']; - /** Whether the enqueued style is RTL or not */ - isRtl?: Maybe; - /** The media attribute to use for the link */ - media?: Maybe; - /** The absolute path to the enqueued style. Set when the stylesheet is meant to load inline. */ - path?: Maybe; - /** The `rel` attribute to use for the link */ - rel?: Maybe; - /** The source of the asset */ - src?: Maybe; - /** Optional suffix, used in combination with RTL */ - suffix?: Maybe; - /** The title of the enqueued style. Used for preferred/alternate stylesheets. */ - title?: Maybe; - /** The version of the enqueued style */ - version?: Maybe; -}; +export type EnqueuedStylesheet = EnqueuedAsset & + Node & { + __typename?: 'EnqueuedStylesheet' + /** The inline code to be run after the asset is loaded. */ + after?: Maybe>> + /** + * Deprecated + * @deprecated Use `EnqueuedAsset.media` instead. + */ + args?: Maybe + /** The inline code to be run before the asset is loaded. */ + before?: Maybe>> + /** The HTML conditional comment for the enqueued asset. E.g. IE 6, lte IE 7, etc */ + conditional?: Maybe + /** Dependencies needed to use this asset */ + dependencies?: Maybe>> + /** + * Extra information needed for the script + * @deprecated Use `EnqueuedScript.extraData` instead. + */ + extra?: Maybe + /** The handle of the enqueued asset */ + handle?: Maybe + /** The global ID of the enqueued stylesheet */ + id: Scalars['ID']['output'] + /** Whether the enqueued style is RTL or not */ + isRtl?: Maybe + /** The media attribute to use for the link */ + media?: Maybe + /** The absolute path to the enqueued style. Set when the stylesheet is meant to load inline. */ + path?: Maybe + /** The `rel` attribute to use for the link */ + rel?: Maybe + /** The source of the asset */ + src?: Maybe + /** Optional suffix, used in combination with RTL */ + suffix?: Maybe + /** The title of the enqueued style. Used for preferred/alternate stylesheets. */ + title?: Maybe + /** The version of the enqueued style */ + version?: Maybe + } /** Connection to EnqueuedStylesheet Nodes */ export type EnqueuedStylesheetConnection = { /** A list of edges (relational context) between ContentNode and connected EnqueuedStylesheet Nodes */ - edges: Array; + edges: Array /** A list of connected EnqueuedStylesheet Nodes */ - nodes: Array; + nodes: Array /** Information about pagination in a connection. */ - pageInfo: EnqueuedStylesheetConnectionPageInfo; -}; + pageInfo: EnqueuedStylesheetConnectionPageInfo +} /** Edge between a Node and a connected EnqueuedStylesheet */ export type EnqueuedStylesheetConnectionEdge = { /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; + cursor?: Maybe /** The connected EnqueuedStylesheet Node */ - node: EnqueuedStylesheet; -}; + node: EnqueuedStylesheet +} /** Page Info on the connected EnqueuedStylesheetConnectionEdge */ export type EnqueuedStylesheetConnectionPageInfo = { /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; + endCursor?: Maybe /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; + hasNextPage: Scalars['Boolean']['output'] /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; + hasPreviousPage: Scalars['Boolean']['output'] /** Raw schema for page */ - seo?: Maybe; + seo?: Maybe /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; + startCursor?: Maybe +} /** The FeedbackItem type */ -export type FeedbackItem = ContentNode & DatabaseIdentifier & MenuItemLinkable & Node & NodeWithContentEditor & NodeWithFeaturedImage & NodeWithTemplate & NodeWithTitle & Previewable & UniformResourceIdentifiable & WithAcfContentAddons & { - __typename?: 'FeedbackItem'; - /** The content of the post. */ - content?: Maybe; - /** Fields of the ContentAddons ACF Field Group */ - contentAddons?: Maybe; - /** Connection between the ContentNode type and the ContentType type */ - contentType?: Maybe; - /** The name of the Content Type the node belongs to */ - contentTypeName: Scalars['String']['output']; - /** The unique identifier stored in the database */ - databaseId: Scalars['Int']['output']; - /** Post publishing date. */ - date?: Maybe; - /** The publishing date set in GMT. */ - dateGmt?: Maybe; - /** The desired slug of the post */ - desiredSlug?: Maybe; - /** If a user has edited the node within the past 15 seconds, this will return the user that last edited. Null if the edit lock doesn't exist or is greater than 15 seconds */ - editingLockedBy?: Maybe; - /** The RSS enclosure for the object */ - enclosure?: Maybe; - /** Connection between the ContentNode type and the EnqueuedScript type */ - enqueuedScripts?: Maybe; - /** Connection between the ContentNode type and the EnqueuedStylesheet type */ - enqueuedStylesheets?: Maybe; - /** Connection between the NodeWithFeaturedImage type and the MediaItem type */ - featuredImage?: Maybe; - /** The database identifier for the featured image node assigned to the content node */ - featuredImageDatabaseId?: Maybe; - /** Globally unique ID of the featured image assigned to the node */ - featuredImageId?: Maybe; - /** - * The id field matches the WP_Post->ID field. - * @deprecated Deprecated in favor of the databaseId field - */ - feedbackItemId: Scalars['Int']['output']; - /** The global unique identifier for this post. This currently matches the value stored in WP_Post->guid and the guid column in the "post_objects" database table. */ - guid?: Maybe; - /** Whether the feedback object is password protected. */ - hasPassword?: Maybe; - /** The globally unique identifier of the feedback object. */ - id: Scalars['ID']['output']; - /** Whether the node is a Comment */ - isComment: Scalars['Boolean']['output']; - /** Whether the node is a Content Node */ - isContentNode: Scalars['Boolean']['output']; - /** Whether the node represents the front page. */ - isFrontPage: Scalars['Boolean']['output']; - /** Whether the node represents the blog page. */ - isPostsPage: Scalars['Boolean']['output']; - /** Whether the object is a node in the preview state */ - isPreview?: Maybe; - /** Whether the object is restricted from the current viewer */ - isRestricted?: Maybe; - /** Whether the node is a Term */ - isTermNode: Scalars['Boolean']['output']; - /** Polylang language */ - language?: Maybe; - /** The user that most recently edited the node */ - lastEditedBy?: Maybe; - /** The permalink of the post */ - link?: Maybe; - /** The local modified time for a post. If a post was recently updated the modified field will change to match the corresponding time. */ - modified?: Maybe; - /** The GMT modified time for a post. If a post was recently updated the modified field will change to match the corresponding time in GMT. */ - modifiedGmt?: Maybe; - /** The password for the feedback object. */ - password?: Maybe; - /** Connection between the FeedbackItem type and the FeedbackItem type */ - preview?: Maybe; - /** The database id of the preview node */ - previewRevisionDatabaseId?: Maybe; - /** Whether the object is a node in the preview state */ - previewRevisionId?: Maybe; - /** The Yoast SEO data of the ContentNode */ - seo?: Maybe; - /** The uri slug for the post. This is equivalent to the WP_Post->post_name field and the post_name column in the database for the "post_objects" table. */ - slug?: Maybe; - /** The current status of the object */ - status?: Maybe; - /** The template assigned to the node */ - template?: Maybe; - /** The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made. */ - title?: Maybe; - /** Get specific translation version of this object */ - translation?: Maybe; - /** List all translated versions of this post */ - translations?: Maybe>>; - /** The unique resource identifier path */ - uri?: Maybe; -}; - +export type FeedbackItem = ContentNode & + DatabaseIdentifier & + MenuItemLinkable & + Node & + NodeWithContentEditor & + NodeWithFeaturedImage & + NodeWithTemplate & + NodeWithTitle & + Previewable & + UniformResourceIdentifiable & + WithAcfContentAddons & { + __typename?: 'FeedbackItem' + /** The content of the post. */ + content?: Maybe + /** Fields of the ContentAddons ACF Field Group */ + contentAddons?: Maybe + /** Connection between the ContentNode type and the ContentType type */ + contentType?: Maybe + /** The name of the Content Type the node belongs to */ + contentTypeName: Scalars['String']['output'] + /** The unique identifier stored in the database */ + databaseId: Scalars['Int']['output'] + /** Post publishing date. */ + date?: Maybe + /** The publishing date set in GMT. */ + dateGmt?: Maybe + /** The desired slug of the post */ + desiredSlug?: Maybe + /** If a user has edited the node within the past 15 seconds, this will return the user that last edited. Null if the edit lock doesn't exist or is greater than 15 seconds */ + editingLockedBy?: Maybe + /** The RSS enclosure for the object */ + enclosure?: Maybe + /** Connection between the ContentNode type and the EnqueuedScript type */ + enqueuedScripts?: Maybe + /** Connection between the ContentNode type and the EnqueuedStylesheet type */ + enqueuedStylesheets?: Maybe + /** Connection between the NodeWithFeaturedImage type and the MediaItem type */ + featuredImage?: Maybe + /** The database identifier for the featured image node assigned to the content node */ + featuredImageDatabaseId?: Maybe + /** Globally unique ID of the featured image assigned to the node */ + featuredImageId?: Maybe + /** + * The id field matches the WP_Post->ID field. + * @deprecated Deprecated in favor of the databaseId field + */ + feedbackItemId: Scalars['Int']['output'] + /** The global unique identifier for this post. This currently matches the value stored in WP_Post->guid and the guid column in the "post_objects" database table. */ + guid?: Maybe + /** Whether the feedback object is password protected. */ + hasPassword?: Maybe + /** The globally unique identifier of the feedback object. */ + id: Scalars['ID']['output'] + /** Whether the node is a Comment */ + isComment: Scalars['Boolean']['output'] + /** Whether the node is a Content Node */ + isContentNode: Scalars['Boolean']['output'] + /** Whether the node represents the front page. */ + isFrontPage: Scalars['Boolean']['output'] + /** Whether the node represents the blog page. */ + isPostsPage: Scalars['Boolean']['output'] + /** Whether the object is a node in the preview state */ + isPreview?: Maybe + /** Whether the object is restricted from the current viewer */ + isRestricted?: Maybe + /** Whether the node is a Term */ + isTermNode: Scalars['Boolean']['output'] + /** Polylang language */ + language?: Maybe + /** The user that most recently edited the node */ + lastEditedBy?: Maybe + /** The permalink of the post */ + link?: Maybe + /** The local modified time for a post. If a post was recently updated the modified field will change to match the corresponding time. */ + modified?: Maybe + /** The GMT modified time for a post. If a post was recently updated the modified field will change to match the corresponding time in GMT. */ + modifiedGmt?: Maybe + /** The password for the feedback object. */ + password?: Maybe + /** Connection between the FeedbackItem type and the FeedbackItem type */ + preview?: Maybe + /** The database id of the preview node */ + previewRevisionDatabaseId?: Maybe + /** Whether the object is a node in the preview state */ + previewRevisionId?: Maybe + /** The Yoast SEO data of the ContentNode */ + seo?: Maybe + /** The uri slug for the post. This is equivalent to the WP_Post->post_name field and the post_name column in the database for the "post_objects" table. */ + slug?: Maybe + /** The current status of the object */ + status?: Maybe + /** The template assigned to the node */ + template?: Maybe + /** The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made. */ + title?: Maybe + /** Get specific translation version of this object */ + translation?: Maybe + /** List all translated versions of this post */ + translations?: Maybe>> + /** The unique resource identifier path */ + uri?: Maybe + } /** The FeedbackItem type */ export type FeedbackItemContentArgs = { - format?: InputMaybe; -}; - + format?: InputMaybe +} /** The FeedbackItem type */ export type FeedbackItemEnqueuedScriptsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** The FeedbackItem type */ export type FeedbackItemEnqueuedStylesheetsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** The FeedbackItem type */ export type FeedbackItemTitleArgs = { - format?: InputMaybe; -}; - + format?: InputMaybe +} /** The FeedbackItem type */ export type FeedbackItemTranslationArgs = { - language: LanguageCodeEnum; -}; + language: LanguageCodeEnum +} /** Connection to FeedbackItem Nodes */ export type FeedbackItemConnection = { /** A list of edges (relational context) between RootQuery and connected FeedbackItem Nodes */ - edges: Array; + edges: Array /** A list of connected FeedbackItem Nodes */ - nodes: Array; + nodes: Array /** Information about pagination in a connection. */ - pageInfo: FeedbackItemConnectionPageInfo; -}; + pageInfo: FeedbackItemConnectionPageInfo +} /** Edge between a Node and a connected FeedbackItem */ export type FeedbackItemConnectionEdge = { /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; + cursor?: Maybe /** The connected FeedbackItem Node */ - node: FeedbackItem; -}; + node: FeedbackItem +} /** Page Info on the connected FeedbackItemConnectionEdge */ export type FeedbackItemConnectionPageInfo = { /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; + endCursor?: Maybe /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; + hasNextPage: Scalars['Boolean']['output'] /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; + hasPreviousPage: Scalars['Boolean']['output'] /** Raw schema for page */ - seo?: Maybe; + seo?: Maybe /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; + startCursor?: Maybe +} /** The Type of Identifier used to fetch a single resource. Default is ID. */ export enum FeedbackItemIdType { @@ -4506,190 +4609,197 @@ export enum FeedbackItemIdType { /** Identify a resource by the slug. Available to non-hierarchcial Types where the slug is a unique identifier. */ Slug = 'SLUG', /** Identify a resource by the URI. */ - Uri = 'URI' + Uri = 'URI', } /** Connection between the FeedbackItem type and the FeedbackItem type */ -export type FeedbackItemToPreviewConnectionEdge = Edge & FeedbackItemConnectionEdge & OneToOneConnection & { - __typename?: 'FeedbackItemToPreviewConnectionEdge'; - /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; - /** The node of the connection, without the edges */ - node: FeedbackItem; -}; +export type FeedbackItemToPreviewConnectionEdge = Edge & + FeedbackItemConnectionEdge & + OneToOneConnection & { + __typename?: 'FeedbackItemToPreviewConnectionEdge' + /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ + cursor?: Maybe + /** The node of the connection, without the edges */ + node: FeedbackItem + } /** Type of ID being used identify the form */ export type FieldError = { - __typename?: 'FieldError'; + __typename?: 'FieldError' /** Field Id */ - fieldId: Scalars['Int']['output']; + fieldId: Scalars['Int']['output'] /** Localized error message */ - message?: Maybe; + message?: Maybe /** Slug error identifier */ - slug?: Maybe; -}; + slug?: Maybe +} /** The FooterItem type */ -export type FooterItem = ContentNode & DatabaseIdentifier & MenuItemLinkable & Node & NodeWithContentEditor & NodeWithFeaturedImage & NodeWithTemplate & NodeWithTitle & Previewable & UniformResourceIdentifiable & WithAcfContentAddons & { - __typename?: 'FooterItem'; - /** The content of the post. */ - content?: Maybe; - /** Fields of the ContentAddons ACF Field Group */ - contentAddons?: Maybe; - /** Connection between the ContentNode type and the ContentType type */ - contentType?: Maybe; - /** The name of the Content Type the node belongs to */ - contentTypeName: Scalars['String']['output']; - /** The unique identifier stored in the database */ - databaseId: Scalars['Int']['output']; - /** Post publishing date. */ - date?: Maybe; - /** The publishing date set in GMT. */ - dateGmt?: Maybe; - /** The desired slug of the post */ - desiredSlug?: Maybe; - /** If a user has edited the node within the past 15 seconds, this will return the user that last edited. Null if the edit lock doesn't exist or is greater than 15 seconds */ - editingLockedBy?: Maybe; - /** The RSS enclosure for the object */ - enclosure?: Maybe; - /** Connection between the ContentNode type and the EnqueuedScript type */ - enqueuedScripts?: Maybe; - /** Connection between the ContentNode type and the EnqueuedStylesheet type */ - enqueuedStylesheets?: Maybe; - /** Connection between the NodeWithFeaturedImage type and the MediaItem type */ - featuredImage?: Maybe; - /** The database identifier for the featured image node assigned to the content node */ - featuredImageDatabaseId?: Maybe; - /** Globally unique ID of the featured image assigned to the node */ - featuredImageId?: Maybe; - /** - * The id field matches the WP_Post->ID field. - * @deprecated Deprecated in favor of the databaseId field - */ - footerItemId: Scalars['Int']['output']; - /** The global unique identifier for this post. This currently matches the value stored in WP_Post->guid and the guid column in the "post_objects" database table. */ - guid?: Maybe; - /** Whether the footer_fragments object is password protected. */ - hasPassword?: Maybe; - /** The globally unique identifier of the footer_fragments object. */ - id: Scalars['ID']['output']; - /** Whether the node is a Comment */ - isComment: Scalars['Boolean']['output']; - /** Whether the node is a Content Node */ - isContentNode: Scalars['Boolean']['output']; - /** Whether the node represents the front page. */ - isFrontPage: Scalars['Boolean']['output']; - /** Whether the node represents the blog page. */ - isPostsPage: Scalars['Boolean']['output']; - /** Whether the object is a node in the preview state */ - isPreview?: Maybe; - /** Whether the object is restricted from the current viewer */ - isRestricted?: Maybe; - /** Whether the node is a Term */ - isTermNode: Scalars['Boolean']['output']; - /** Polylang language */ - language?: Maybe; - /** The user that most recently edited the node */ - lastEditedBy?: Maybe; - /** The permalink of the post */ - link?: Maybe; - /** The local modified time for a post. If a post was recently updated the modified field will change to match the corresponding time. */ - modified?: Maybe; - /** The GMT modified time for a post. If a post was recently updated the modified field will change to match the corresponding time in GMT. */ - modifiedGmt?: Maybe; - /** The password for the footer_fragments object. */ - password?: Maybe; - /** Connection between the FooterItem type and the FooterItem type */ - preview?: Maybe; - /** The database id of the preview node */ - previewRevisionDatabaseId?: Maybe; - /** Whether the object is a node in the preview state */ - previewRevisionId?: Maybe; - /** The Yoast SEO data of the ContentNode */ - seo?: Maybe; - /** The uri slug for the post. This is equivalent to the WP_Post->post_name field and the post_name column in the database for the "post_objects" table. */ - slug?: Maybe; - /** The current status of the object */ - status?: Maybe; - /** The template assigned to the node */ - template?: Maybe; - /** The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made. */ - title?: Maybe; - /** Get specific translation version of this object */ - translation?: Maybe; - /** List all translated versions of this post */ - translations?: Maybe>>; - /** The unique resource identifier path */ - uri?: Maybe; -}; - +export type FooterItem = ContentNode & + DatabaseIdentifier & + MenuItemLinkable & + Node & + NodeWithContentEditor & + NodeWithFeaturedImage & + NodeWithTemplate & + NodeWithTitle & + Previewable & + UniformResourceIdentifiable & + WithAcfContentAddons & { + __typename?: 'FooterItem' + /** The content of the post. */ + content?: Maybe + /** Fields of the ContentAddons ACF Field Group */ + contentAddons?: Maybe + /** Connection between the ContentNode type and the ContentType type */ + contentType?: Maybe + /** The name of the Content Type the node belongs to */ + contentTypeName: Scalars['String']['output'] + /** The unique identifier stored in the database */ + databaseId: Scalars['Int']['output'] + /** Post publishing date. */ + date?: Maybe + /** The publishing date set in GMT. */ + dateGmt?: Maybe + /** The desired slug of the post */ + desiredSlug?: Maybe + /** If a user has edited the node within the past 15 seconds, this will return the user that last edited. Null if the edit lock doesn't exist or is greater than 15 seconds */ + editingLockedBy?: Maybe + /** The RSS enclosure for the object */ + enclosure?: Maybe + /** Connection between the ContentNode type and the EnqueuedScript type */ + enqueuedScripts?: Maybe + /** Connection between the ContentNode type and the EnqueuedStylesheet type */ + enqueuedStylesheets?: Maybe + /** Connection between the NodeWithFeaturedImage type and the MediaItem type */ + featuredImage?: Maybe + /** The database identifier for the featured image node assigned to the content node */ + featuredImageDatabaseId?: Maybe + /** Globally unique ID of the featured image assigned to the node */ + featuredImageId?: Maybe + /** + * The id field matches the WP_Post->ID field. + * @deprecated Deprecated in favor of the databaseId field + */ + footerItemId: Scalars['Int']['output'] + /** The global unique identifier for this post. This currently matches the value stored in WP_Post->guid and the guid column in the "post_objects" database table. */ + guid?: Maybe + /** Whether the footer_fragments object is password protected. */ + hasPassword?: Maybe + /** The globally unique identifier of the footer_fragments object. */ + id: Scalars['ID']['output'] + /** Whether the node is a Comment */ + isComment: Scalars['Boolean']['output'] + /** Whether the node is a Content Node */ + isContentNode: Scalars['Boolean']['output'] + /** Whether the node represents the front page. */ + isFrontPage: Scalars['Boolean']['output'] + /** Whether the node represents the blog page. */ + isPostsPage: Scalars['Boolean']['output'] + /** Whether the object is a node in the preview state */ + isPreview?: Maybe + /** Whether the object is restricted from the current viewer */ + isRestricted?: Maybe + /** Whether the node is a Term */ + isTermNode: Scalars['Boolean']['output'] + /** Polylang language */ + language?: Maybe + /** The user that most recently edited the node */ + lastEditedBy?: Maybe + /** The permalink of the post */ + link?: Maybe + /** The local modified time for a post. If a post was recently updated the modified field will change to match the corresponding time. */ + modified?: Maybe + /** The GMT modified time for a post. If a post was recently updated the modified field will change to match the corresponding time in GMT. */ + modifiedGmt?: Maybe + /** The password for the footer_fragments object. */ + password?: Maybe + /** Connection between the FooterItem type and the FooterItem type */ + preview?: Maybe + /** The database id of the preview node */ + previewRevisionDatabaseId?: Maybe + /** Whether the object is a node in the preview state */ + previewRevisionId?: Maybe + /** The Yoast SEO data of the ContentNode */ + seo?: Maybe + /** The uri slug for the post. This is equivalent to the WP_Post->post_name field and the post_name column in the database for the "post_objects" table. */ + slug?: Maybe + /** The current status of the object */ + status?: Maybe + /** The template assigned to the node */ + template?: Maybe + /** The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made. */ + title?: Maybe + /** Get specific translation version of this object */ + translation?: Maybe + /** List all translated versions of this post */ + translations?: Maybe>> + /** The unique resource identifier path */ + uri?: Maybe + } /** The FooterItem type */ export type FooterItemContentArgs = { - format?: InputMaybe; -}; - + format?: InputMaybe +} /** The FooterItem type */ export type FooterItemEnqueuedScriptsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** The FooterItem type */ export type FooterItemEnqueuedStylesheetsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** The FooterItem type */ export type FooterItemTitleArgs = { - format?: InputMaybe; -}; - + format?: InputMaybe +} /** The FooterItem type */ export type FooterItemTranslationArgs = { - language: LanguageCodeEnum; -}; + language: LanguageCodeEnum +} /** Connection to FooterItem Nodes */ export type FooterItemConnection = { /** A list of edges (relational context) between RootQuery and connected FooterItem Nodes */ - edges: Array; + edges: Array /** A list of connected FooterItem Nodes */ - nodes: Array; + nodes: Array /** Information about pagination in a connection. */ - pageInfo: FooterItemConnectionPageInfo; -}; + pageInfo: FooterItemConnectionPageInfo +} /** Edge between a Node and a connected FooterItem */ export type FooterItemConnectionEdge = { /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; + cursor?: Maybe /** The connected FooterItem Node */ - node: FooterItem; -}; + node: FooterItem +} /** Page Info on the connected FooterItemConnectionEdge */ export type FooterItemConnectionPageInfo = { /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; + endCursor?: Maybe /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; + hasNextPage: Scalars['Boolean']['output'] /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; + hasPreviousPage: Scalars['Boolean']['output'] /** Raw schema for page */ - seo?: Maybe; + seo?: Maybe /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; + startCursor?: Maybe +} /** The Type of Identifier used to fetch a single resource. Default is ID. */ export enum FooterItemIdType { @@ -4700,449 +4810,461 @@ export enum FooterItemIdType { /** Identify a resource by the slug. Available to non-hierarchcial Types where the slug is a unique identifier. */ Slug = 'SLUG', /** Identify a resource by the URI. */ - Uri = 'URI' + Uri = 'URI', } /** Connection between the FooterItem type and the FooterItem type */ -export type FooterItemToPreviewConnectionEdge = Edge & FooterItemConnectionEdge & OneToOneConnection & { - __typename?: 'FooterItemToPreviewConnectionEdge'; - /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; - /** The node of the connection, without the edges */ - node: FooterItem; -}; +export type FooterItemToPreviewConnectionEdge = Edge & + FooterItemConnectionEdge & + OneToOneConnection & { + __typename?: 'FooterItemToPreviewConnectionEdge' + /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ + cursor?: Maybe + /** The node of the connection, without the edges */ + node: FooterItem + } /** The form object */ -export type Form = DatabaseIdentifier & Node & { - __typename?: 'Form'; - /** Добавить кнопку «Отправить» */ - addSubmit?: Maybe; - /** Разрешить открытую ссылку? */ - allowPublicLink?: Maybe; - /** Пользовательские имена классов */ - classes?: Maybe; - /** Очистить успешно заполненную форму? */ - clearComplete?: Maybe; - /** Валюта */ - currency?: Maybe; - /** Настраиваемая этикетка */ - customMessages?: Maybe; - /** The Id of the form */ - databaseId: Scalars['Int']['output']; - /** Позиция метки по умолчанию */ - defaultLabelPos?: Maybe; - /** Встройте свою форму */ - embedForm?: Maybe; - /** Connection between the Form type and the FormField type */ - fields?: Maybe; - /** The Id of the form */ - formId?: Maybe; - /** Form Title Heading Level */ - formTitleHeadingLevel?: Maybe; - /** Скрыть успешно заполненную форму? */ - hideComplete?: Maybe; - /** The globally unique identifier of the form */ - id: Scalars['ID']['output']; - /** Ключ формы */ - key?: Maybe; - /** Ограничение заявок */ - limitSubmissionsSet?: Maybe; - /** Зарегистрированы */ - loggedInSet?: Maybe; - /** Ссылка на вашу форму */ - publicLink?: Maybe; - /** The Locale of the form */ - seqNum?: Maybe; - /** Отобразить название формы */ - showTitle?: Maybe; - /** Название формы */ - title?: Maybe; - /** Уникальное поле */ - uniqueFieldSet?: Maybe; -}; - +export type Form = DatabaseIdentifier & + Node & { + __typename?: 'Form' + /** Добавить кнопку «Отправить» */ + addSubmit?: Maybe + /** Разрешить открытую ссылку? */ + allowPublicLink?: Maybe + /** Пользовательские имена классов */ + classes?: Maybe + /** Очистить успешно заполненную форму? */ + clearComplete?: Maybe + /** Валюта */ + currency?: Maybe + /** Настраиваемая этикетка */ + customMessages?: Maybe + /** The Id of the form */ + databaseId: Scalars['Int']['output'] + /** Позиция метки по умолчанию */ + defaultLabelPos?: Maybe + /** Встройте свою форму */ + embedForm?: Maybe + /** Connection between the Form type and the FormField type */ + fields?: Maybe + /** The Id of the form */ + formId?: Maybe + /** Form Title Heading Level */ + formTitleHeadingLevel?: Maybe + /** Скрыть успешно заполненную форму? */ + hideComplete?: Maybe + /** The globally unique identifier of the form */ + id: Scalars['ID']['output'] + /** Ключ формы */ + key?: Maybe + /** Ограничение заявок */ + limitSubmissionsSet?: Maybe + /** Зарегистрированы */ + loggedInSet?: Maybe + /** Ссылка на вашу форму */ + publicLink?: Maybe + /** The Locale of the form */ + seqNum?: Maybe + /** Отобразить название формы */ + showTitle?: Maybe + /** Название формы */ + title?: Maybe + /** Уникальное поле */ + uniqueFieldSet?: Maybe + } /** The form object */ export type FormFieldsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** Пользовательские имена классов */ export type FormClasses = { - __typename?: 'FormClasses'; + __typename?: 'FormClasses' /** Элемент */ - elementClass?: Maybe; + elementClass?: Maybe /** Оболочка */ - wrapperClass?: Maybe; -}; + wrapperClass?: Maybe +} /** Connection to Form Nodes */ export type FormConnection = { /** A list of edges (relational context) between RootQuery and connected Form Nodes */ - edges: Array; + edges: Array /** A list of connected Form Nodes */ - nodes: Array
; + nodes: Array /** Information about pagination in a connection. */ - pageInfo: FormConnectionPageInfo; -}; + pageInfo: FormConnectionPageInfo +} /** Edge between a Node and a connected Form */ export type FormConnectionEdge = { /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; + cursor?: Maybe /** The connected Form Node */ - node: Form; -}; + node: Form +} /** Page Info on the connected FormConnectionEdge */ export type FormConnectionPageInfo = { /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; + endCursor?: Maybe /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; + hasNextPage: Scalars['Boolean']['output'] /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; + hasPreviousPage: Scalars['Boolean']['output'] /** Raw schema for page */ - seo?: Maybe; + seo?: Maybe /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; + startCursor?: Maybe +} /** Настраиваемая этикетка */ export type FormCustomMessages = { - __typename?: 'FormCustomMessages'; + __typename?: 'FormCustomMessages' /** Введите действительную дату! */ - changeDateErrorMsg?: Maybe; + changeDateErrorMsg?: Maybe /** Укажите действительный адрес электронной почты! */ - changeEmailErrorMsg?: Maybe; + changeEmailErrorMsg?: Maybe /** Содержание этих полей должно совпадать! */ - confirmFieldErrorMsg?: Maybe; + confirmFieldErrorMsg?: Maybe /** Увеличивайте с шагом */ - fieldNumberIncrementBy?: Maybe; + fieldNumberIncrementBy?: Maybe /** Макс. номер ошибки */ - fieldNumberNumMaxError?: Maybe; + fieldNumberNumMaxError?: Maybe /** Мин. номер ошибки */ - fieldNumberNumMinError?: Maybe; + fieldNumberNumMinError?: Maybe /** Поля, помеченные символом <span class="ninja-forms-req-symbol">*</span>, обязательны к заполнению */ - fieldsMarkedRequired?: Maybe; + fieldsMarkedRequired?: Maybe /** Исправьте ошибки перед отправкой этой формы. */ - formErrorsCorrectErrors?: Maybe; + formErrorsCorrectErrors?: Maybe /** Ошибка Honeypot */ - honeypotHoneypotError?: Maybe; + honeypotHoneypotError?: Maybe /** Это обязательное поле. */ - validateRequiredField?: Maybe; -}; + validateRequiredField?: Maybe +} /** Action object */ export type FormField = { /** Creation date */ - createdAt?: Maybe; + createdAt?: Maybe /** The Id of the field */ - databaseId?: Maybe; + databaseId?: Maybe /** The Id of the field */ - fieldId?: Maybe; + fieldId?: Maybe /** Key of the field */ - fieldKey?: Maybe; + fieldKey?: Maybe /** Label of the field */ - fieldLabel?: Maybe; + fieldLabel?: Maybe /** The globally unique identifier of the field */ - id: Scalars['ID']['output']; + id: Scalars['ID']['output'] /** Key of the field */ - key?: Maybe; + key?: Maybe /** Label of the field */ - label?: Maybe; + label?: Maybe /** Position of the label */ - labelPos?: Maybe; + labelPos?: Maybe /** Position order of the field */ - order?: Maybe; + order?: Maybe /** Parent form id */ - parentId?: Maybe; + parentId?: Maybe /** Identifiable? */ - personallyIdentifiable?: Maybe; + personallyIdentifiable?: Maybe /** The field is required? */ - required?: Maybe; + required?: Maybe /** type of the field */ - type?: Maybe; + type?: Maybe /** Update date */ - updatedAt?: Maybe; -}; + updatedAt?: Maybe +} /** Connection to FormField Nodes */ export type FormFieldConnection = { /** A list of edges (relational context) between Form and connected FormField Nodes */ - edges: Array; + edges: Array /** A list of connected FormField Nodes */ - nodes: Array; + nodes: Array /** Information about pagination in a connection. */ - pageInfo: FormFieldConnectionPageInfo; -}; + pageInfo: FormFieldConnectionPageInfo +} /** Edge between a Node and a connected FormField */ export type FormFieldConnectionEdge = { /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; + cursor?: Maybe /** The connected FormField Node */ - node: FormField; -}; + node: FormField +} /** Page Info on the connected FormFieldConnectionEdge */ export type FormFieldConnectionPageInfo = { /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; + endCursor?: Maybe /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; + hasNextPage: Scalars['Boolean']['output'] /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; + hasPreviousPage: Scalars['Boolean']['output'] /** Raw schema for page */ - seo?: Maybe; + seo?: Maybe /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; + startCursor?: Maybe +} /** The Type of Identifier used to fetch a single Form. Default is ID. */ export enum FormIdTypeEnum { /** Identify a resource by the Database ID. */ DatabaseId = 'DATABASE_ID', /** Identify a resource by the (hashed) Global ID. */ - Id = 'ID' + Id = 'ID', } /** Ограничение заявок */ export type FormLimitSubmissionsSet = { - __typename?: 'FormLimitSubmissionsSet'; + __typename?: 'FormLimitSubmissionsSet' /** Сообщение о достижении предела */ - subLimitMsg?: Maybe; + subLimitMsg?: Maybe /** Ограничение кол-ва отправок формы */ - subLimitNumber?: Maybe; -}; + subLimitNumber?: Maybe +} /** Зарегистрированы */ export type FormLoggedInSet = { - __typename?: 'FormLoggedInSet'; + __typename?: 'FormLoggedInSet' /** Должен ли пользователь авторизоваться для просмотра формы? */ - loggedIn?: Maybe; + loggedIn?: Maybe /** Сообщение о необходимости авторизации */ - notLoggedInMsg?: Maybe; -}; + notLoggedInMsg?: Maybe +} /** Connection between the Form type and the FormField type */ -export type FormToFormFieldConnection = Connection & FormFieldConnection & { - __typename?: 'FormToFormFieldConnection'; - /** Edges for the FormToFormFieldConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: FormToFormFieldConnectionPageInfo; -}; +export type FormToFormFieldConnection = Connection & + FormFieldConnection & { + __typename?: 'FormToFormFieldConnection' + /** Edges for the FormToFormFieldConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: FormToFormFieldConnectionPageInfo + } /** An edge in a connection */ -export type FormToFormFieldConnectionEdge = Edge & FormFieldConnectionEdge & { - __typename?: 'FormToFormFieldConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: FormField; -}; +export type FormToFormFieldConnectionEdge = Edge & + FormFieldConnectionEdge & { + __typename?: 'FormToFormFieldConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: FormField + } /** Page Info on the "FormToFormFieldConnection" */ -export type FormToFormFieldConnectionPageInfo = FormFieldConnectionPageInfo & PageInfo & WpPageInfo & { - __typename?: 'FormToFormFieldConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type FormToFormFieldConnectionPageInfo = FormFieldConnectionPageInfo & + PageInfo & + WpPageInfo & { + __typename?: 'FormToFormFieldConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Уникальное поле */ export type FormUniqueFieldSet = { - __typename?: 'FormUniqueFieldSet'; + __typename?: 'FormUniqueFieldSet' /** unique_field */ - uniqueField?: Maybe; + uniqueField?: Maybe /** Уникальное сообщение об ошибке поля */ - uniqueFieldError?: Maybe; -}; + uniqueFieldError?: Maybe +} /** The Fragment type */ -export type Fragment = ContentNode & DatabaseIdentifier & MenuItemLinkable & Node & NodeWithContentEditor & NodeWithExcerpt & NodeWithFeaturedImage & NodeWithPageAttributes & NodeWithTemplate & NodeWithTitle & Previewable & UniformResourceIdentifiable & WithAcfFragments & { - __typename?: 'Fragment'; - /** The content of the post. */ - content?: Maybe; - /** Connection between the ContentNode type and the ContentType type */ - contentType?: Maybe; - /** The name of the Content Type the node belongs to */ - contentTypeName: Scalars['String']['output']; - /** The unique identifier stored in the database */ - databaseId: Scalars['Int']['output']; - /** Post publishing date. */ - date?: Maybe; - /** The publishing date set in GMT. */ - dateGmt?: Maybe; - /** The desired slug of the post */ - desiredSlug?: Maybe; - /** If a user has edited the node within the past 15 seconds, this will return the user that last edited. Null if the edit lock doesn't exist or is greater than 15 seconds */ - editingLockedBy?: Maybe; - /** The RSS enclosure for the object */ - enclosure?: Maybe; - /** Connection between the ContentNode type and the EnqueuedScript type */ - enqueuedScripts?: Maybe; - /** Connection between the ContentNode type and the EnqueuedStylesheet type */ - enqueuedStylesheets?: Maybe; - /** The excerpt of the post. */ - excerpt?: Maybe; - /** Connection between the NodeWithFeaturedImage type and the MediaItem type */ - featuredImage?: Maybe; - /** The database identifier for the featured image node assigned to the content node */ - featuredImageDatabaseId?: Maybe; - /** Globally unique ID of the featured image assigned to the node */ - featuredImageId?: Maybe; - /** - * The id field matches the WP_Post->ID field. - * @deprecated Deprecated in favor of the databaseId field - */ - fragmentId: Scalars['Int']['output']; - /** Fields of the Fragments ACF Field Group */ - fragments?: Maybe; - /** The global unique identifier for this post. This currently matches the value stored in WP_Post->guid and the guid column in the "post_objects" database table. */ - guid?: Maybe; - /** Whether the fragment object is password protected. */ - hasPassword?: Maybe; - /** The globally unique identifier of the fragment object. */ - id: Scalars['ID']['output']; - /** Whether the node is a Comment */ - isComment: Scalars['Boolean']['output']; - /** Whether the node is a Content Node */ - isContentNode: Scalars['Boolean']['output']; - /** Whether the node represents the front page. */ - isFrontPage: Scalars['Boolean']['output']; - /** Whether the node represents the blog page. */ - isPostsPage: Scalars['Boolean']['output']; - /** Whether the object is a node in the preview state */ - isPreview?: Maybe; - /** Whether the object is restricted from the current viewer */ - isRestricted?: Maybe; - /** Whether the node is a Term */ - isTermNode: Scalars['Boolean']['output']; - /** Polylang language */ - language?: Maybe; - /** The user that most recently edited the node */ - lastEditedBy?: Maybe; - /** The permalink of the post */ - link?: Maybe; - /** A field used for ordering posts. This is typically used with nav menu items or for special ordering of hierarchical content types. */ - menuOrder?: Maybe; - /** The local modified time for a post. If a post was recently updated the modified field will change to match the corresponding time. */ - modified?: Maybe; - /** The GMT modified time for a post. If a post was recently updated the modified field will change to match the corresponding time in GMT. */ - modifiedGmt?: Maybe; - /** The password for the fragment object. */ - password?: Maybe; - /** Connection between the Fragment type and the Fragment type */ - preview?: Maybe; - /** The database id of the preview node */ - previewRevisionDatabaseId?: Maybe; - /** Whether the object is a node in the preview state */ - previewRevisionId?: Maybe; - /** The Yoast SEO data of the ContentNode */ - seo?: Maybe; - /** The uri slug for the post. This is equivalent to the WP_Post->post_name field and the post_name column in the database for the "post_objects" table. */ - slug?: Maybe; - /** The current status of the object */ - status?: Maybe; - /** The template assigned to the node */ - template?: Maybe; - /** The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made. */ - title?: Maybe; - /** Get specific translation version of this object */ - translation?: Maybe; - /** List all translated versions of this post */ - translations?: Maybe>>; - /** The unique resource identifier path */ - uri?: Maybe; -}; - +export type Fragment = ContentNode & + DatabaseIdentifier & + MenuItemLinkable & + Node & + NodeWithContentEditor & + NodeWithExcerpt & + NodeWithFeaturedImage & + NodeWithPageAttributes & + NodeWithTemplate & + NodeWithTitle & + Previewable & + UniformResourceIdentifiable & + WithAcfFragments & { + __typename?: 'Fragment' + /** The content of the post. */ + content?: Maybe + /** Connection between the ContentNode type and the ContentType type */ + contentType?: Maybe + /** The name of the Content Type the node belongs to */ + contentTypeName: Scalars['String']['output'] + /** The unique identifier stored in the database */ + databaseId: Scalars['Int']['output'] + /** Post publishing date. */ + date?: Maybe + /** The publishing date set in GMT. */ + dateGmt?: Maybe + /** The desired slug of the post */ + desiredSlug?: Maybe + /** If a user has edited the node within the past 15 seconds, this will return the user that last edited. Null if the edit lock doesn't exist or is greater than 15 seconds */ + editingLockedBy?: Maybe + /** The RSS enclosure for the object */ + enclosure?: Maybe + /** Connection between the ContentNode type and the EnqueuedScript type */ + enqueuedScripts?: Maybe + /** Connection between the ContentNode type and the EnqueuedStylesheet type */ + enqueuedStylesheets?: Maybe + /** The excerpt of the post. */ + excerpt?: Maybe + /** Connection between the NodeWithFeaturedImage type and the MediaItem type */ + featuredImage?: Maybe + /** The database identifier for the featured image node assigned to the content node */ + featuredImageDatabaseId?: Maybe + /** Globally unique ID of the featured image assigned to the node */ + featuredImageId?: Maybe + /** + * The id field matches the WP_Post->ID field. + * @deprecated Deprecated in favor of the databaseId field + */ + fragmentId: Scalars['Int']['output'] + /** Fields of the Fragments ACF Field Group */ + fragments?: Maybe + /** The global unique identifier for this post. This currently matches the value stored in WP_Post->guid and the guid column in the "post_objects" database table. */ + guid?: Maybe + /** Whether the fragment object is password protected. */ + hasPassword?: Maybe + /** The globally unique identifier of the fragment object. */ + id: Scalars['ID']['output'] + /** Whether the node is a Comment */ + isComment: Scalars['Boolean']['output'] + /** Whether the node is a Content Node */ + isContentNode: Scalars['Boolean']['output'] + /** Whether the node represents the front page. */ + isFrontPage: Scalars['Boolean']['output'] + /** Whether the node represents the blog page. */ + isPostsPage: Scalars['Boolean']['output'] + /** Whether the object is a node in the preview state */ + isPreview?: Maybe + /** Whether the object is restricted from the current viewer */ + isRestricted?: Maybe + /** Whether the node is a Term */ + isTermNode: Scalars['Boolean']['output'] + /** Polylang language */ + language?: Maybe + /** The user that most recently edited the node */ + lastEditedBy?: Maybe + /** The permalink of the post */ + link?: Maybe + /** A field used for ordering posts. This is typically used with nav menu items or for special ordering of hierarchical content types. */ + menuOrder?: Maybe + /** The local modified time for a post. If a post was recently updated the modified field will change to match the corresponding time. */ + modified?: Maybe + /** The GMT modified time for a post. If a post was recently updated the modified field will change to match the corresponding time in GMT. */ + modifiedGmt?: Maybe + /** The password for the fragment object. */ + password?: Maybe + /** Connection between the Fragment type and the Fragment type */ + preview?: Maybe + /** The database id of the preview node */ + previewRevisionDatabaseId?: Maybe + /** Whether the object is a node in the preview state */ + previewRevisionId?: Maybe + /** The Yoast SEO data of the ContentNode */ + seo?: Maybe + /** The uri slug for the post. This is equivalent to the WP_Post->post_name field and the post_name column in the database for the "post_objects" table. */ + slug?: Maybe + /** The current status of the object */ + status?: Maybe + /** The template assigned to the node */ + template?: Maybe + /** The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made. */ + title?: Maybe + /** Get specific translation version of this object */ + translation?: Maybe + /** List all translated versions of this post */ + translations?: Maybe>> + /** The unique resource identifier path */ + uri?: Maybe + } /** The Fragment type */ export type FragmentContentArgs = { - format?: InputMaybe; -}; - + format?: InputMaybe +} /** The Fragment type */ export type FragmentEnqueuedScriptsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** The Fragment type */ export type FragmentEnqueuedStylesheetsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** The Fragment type */ export type FragmentExcerptArgs = { - format?: InputMaybe; -}; - + format?: InputMaybe +} /** The Fragment type */ export type FragmentTitleArgs = { - format?: InputMaybe; -}; - + format?: InputMaybe +} /** The Fragment type */ export type FragmentTranslationArgs = { - language: LanguageCodeEnum; -}; + language: LanguageCodeEnum +} /** Connection to Fragment Nodes */ export type FragmentConnection = { /** A list of edges (relational context) between RootQuery and connected Fragment Nodes */ - edges: Array; + edges: Array /** A list of connected Fragment Nodes */ - nodes: Array; + nodes: Array /** Information about pagination in a connection. */ - pageInfo: FragmentConnectionPageInfo; -}; + pageInfo: FragmentConnectionPageInfo +} /** Edge between a Node and a connected Fragment */ export type FragmentConnectionEdge = { /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; + cursor?: Maybe /** The connected Fragment Node */ - node: Fragment; -}; + node: Fragment +} /** Page Info on the connected FragmentConnectionEdge */ export type FragmentConnectionPageInfo = { /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; + endCursor?: Maybe /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; + hasNextPage: Scalars['Boolean']['output'] /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; + hasPreviousPage: Scalars['Boolean']['output'] /** Raw schema for page */ - seo?: Maybe; + seo?: Maybe /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; + startCursor?: Maybe +} /** The Type of Identifier used to fetch a single resource. Default is ID. */ export enum FragmentIdType { @@ -5153,29 +5275,33 @@ export enum FragmentIdType { /** Identify a resource by the slug. Available to non-hierarchcial Types where the slug is a unique identifier. */ Slug = 'SLUG', /** Identify a resource by the URI. */ - Uri = 'URI' + Uri = 'URI', } /** Connection between the Fragment type and the Fragment type */ -export type FragmentToPreviewConnectionEdge = Edge & FragmentConnectionEdge & OneToOneConnection & { - __typename?: 'FragmentToPreviewConnectionEdge'; - /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; - /** The node of the connection, without the edges */ - node: Fragment; -}; +export type FragmentToPreviewConnectionEdge = Edge & + FragmentConnectionEdge & + OneToOneConnection & { + __typename?: 'FragmentToPreviewConnectionEdge' + /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ + cursor?: Maybe + /** The node of the connection, without the edges */ + node: Fragment + } /** The "Fragments" Field Group. Added to the Schema by "WPGraphQL for ACF". */ -export type Fragments = AcfFieldGroup & AcfFieldGroupFields & Fragments_Fields & { - __typename?: 'Fragments'; - /** - * The name of the field group - * @deprecated Use __typename instead - */ - fieldGroupName?: Maybe; - /** Field of the "true_false" Field Type added to the schema as part of the "Fragments" Field Group */ - reverse?: Maybe; -}; +export type Fragments = AcfFieldGroup & + AcfFieldGroupFields & + Fragments_Fields & { + __typename?: 'Fragments' + /** + * The name of the field group + * @deprecated Use __typename instead + */ + fieldGroupName?: Maybe + /** Field of the "true_false" Field Type added to the schema as part of the "Fragments" Field Group */ + reverse?: Maybe + } /** Interface representing fields of the ACF "Fragments" Field Group */ export type Fragments_Fields = { @@ -5183,195 +5309,200 @@ export type Fragments_Fields = { * The name of the field group * @deprecated Use __typename instead */ - fieldGroupName?: Maybe; + fieldGroupName?: Maybe /** Field of the "true_false" Field Type added to the schema as part of the "Fragments" Field Group */ - reverse?: Maybe; -}; + reverse?: Maybe +} /** The general setting type */ export type GeneralSettings = { - __typename?: 'GeneralSettings'; + __typename?: 'GeneralSettings' /** Общий формат даты. */ - dateFormat?: Maybe; + dateFormat?: Maybe /** Слоган сайта. */ - description?: Maybe; + description?: Maybe /** Этот адрес используется в целях администрирования. Например, для уведомления о новых пользователях. */ - email?: Maybe; + email?: Maybe /** Код локали WordPress. */ - language?: Maybe; + language?: Maybe /** Первый день недели. */ - startOfWeek?: Maybe; + startOfWeek?: Maybe /** Общий формат времени. */ - timeFormat?: Maybe; + timeFormat?: Maybe /** Город в той же временной зоне что и у вас. */ - timezone?: Maybe; + timezone?: Maybe /** Название сайта. */ - title?: Maybe; + title?: Maybe /** Адрес сайта (URL) */ - url?: Maybe; -}; + url?: Maybe +} /** The HeroItem type */ -export type HeroItem = ContentNode & DatabaseIdentifier & MenuItemLinkable & Node & NodeWithContentEditor & NodeWithFeaturedImage & NodeWithTemplate & NodeWithTitle & Previewable & UniformResourceIdentifiable & WithAcfContentAddons & { - __typename?: 'HeroItem'; - /** The content of the post. */ - content?: Maybe; - /** Fields of the ContentAddons ACF Field Group */ - contentAddons?: Maybe; - /** Connection between the ContentNode type and the ContentType type */ - contentType?: Maybe; - /** The name of the Content Type the node belongs to */ - contentTypeName: Scalars['String']['output']; - /** The unique identifier stored in the database */ - databaseId: Scalars['Int']['output']; - /** Post publishing date. */ - date?: Maybe; - /** The publishing date set in GMT. */ - dateGmt?: Maybe; - /** The desired slug of the post */ - desiredSlug?: Maybe; - /** If a user has edited the node within the past 15 seconds, this will return the user that last edited. Null if the edit lock doesn't exist or is greater than 15 seconds */ - editingLockedBy?: Maybe; - /** The RSS enclosure for the object */ - enclosure?: Maybe; - /** Connection between the ContentNode type and the EnqueuedScript type */ - enqueuedScripts?: Maybe; - /** Connection between the ContentNode type and the EnqueuedStylesheet type */ - enqueuedStylesheets?: Maybe; - /** Connection between the NodeWithFeaturedImage type and the MediaItem type */ - featuredImage?: Maybe; - /** The database identifier for the featured image node assigned to the content node */ - featuredImageDatabaseId?: Maybe; - /** Globally unique ID of the featured image assigned to the node */ - featuredImageId?: Maybe; - /** The global unique identifier for this post. This currently matches the value stored in WP_Post->guid and the guid column in the "post_objects" database table. */ - guid?: Maybe; - /** Whether the hero_fragments object is password protected. */ - hasPassword?: Maybe; - /** - * The id field matches the WP_Post->ID field. - * @deprecated Deprecated in favor of the databaseId field - */ - heroItemId: Scalars['Int']['output']; - /** The globally unique identifier of the hero_fragments object. */ - id: Scalars['ID']['output']; - /** Whether the node is a Comment */ - isComment: Scalars['Boolean']['output']; - /** Whether the node is a Content Node */ - isContentNode: Scalars['Boolean']['output']; - /** Whether the node represents the front page. */ - isFrontPage: Scalars['Boolean']['output']; - /** Whether the node represents the blog page. */ - isPostsPage: Scalars['Boolean']['output']; - /** Whether the object is a node in the preview state */ - isPreview?: Maybe; - /** Whether the object is restricted from the current viewer */ - isRestricted?: Maybe; - /** Whether the node is a Term */ - isTermNode: Scalars['Boolean']['output']; - /** Polylang language */ - language?: Maybe; - /** The user that most recently edited the node */ - lastEditedBy?: Maybe; - /** The permalink of the post */ - link?: Maybe; - /** The local modified time for a post. If a post was recently updated the modified field will change to match the corresponding time. */ - modified?: Maybe; - /** The GMT modified time for a post. If a post was recently updated the modified field will change to match the corresponding time in GMT. */ - modifiedGmt?: Maybe; - /** The password for the hero_fragments object. */ - password?: Maybe; - /** Connection between the HeroItem type and the HeroItem type */ - preview?: Maybe; - /** The database id of the preview node */ - previewRevisionDatabaseId?: Maybe; - /** Whether the object is a node in the preview state */ - previewRevisionId?: Maybe; - /** The Yoast SEO data of the ContentNode */ - seo?: Maybe; - /** The uri slug for the post. This is equivalent to the WP_Post->post_name field and the post_name column in the database for the "post_objects" table. */ - slug?: Maybe; - /** The current status of the object */ - status?: Maybe; - /** The template assigned to the node */ - template?: Maybe; - /** The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made. */ - title?: Maybe; - /** Get specific translation version of this object */ - translation?: Maybe; - /** List all translated versions of this post */ - translations?: Maybe>>; - /** The unique resource identifier path */ - uri?: Maybe; -}; - +export type HeroItem = ContentNode & + DatabaseIdentifier & + MenuItemLinkable & + Node & + NodeWithContentEditor & + NodeWithFeaturedImage & + NodeWithTemplate & + NodeWithTitle & + Previewable & + UniformResourceIdentifiable & + WithAcfContentAddons & { + __typename?: 'HeroItem' + /** The content of the post. */ + content?: Maybe + /** Fields of the ContentAddons ACF Field Group */ + contentAddons?: Maybe + /** Connection between the ContentNode type and the ContentType type */ + contentType?: Maybe + /** The name of the Content Type the node belongs to */ + contentTypeName: Scalars['String']['output'] + /** The unique identifier stored in the database */ + databaseId: Scalars['Int']['output'] + /** Post publishing date. */ + date?: Maybe + /** The publishing date set in GMT. */ + dateGmt?: Maybe + /** The desired slug of the post */ + desiredSlug?: Maybe + /** If a user has edited the node within the past 15 seconds, this will return the user that last edited. Null if the edit lock doesn't exist or is greater than 15 seconds */ + editingLockedBy?: Maybe + /** The RSS enclosure for the object */ + enclosure?: Maybe + /** Connection between the ContentNode type and the EnqueuedScript type */ + enqueuedScripts?: Maybe + /** Connection between the ContentNode type and the EnqueuedStylesheet type */ + enqueuedStylesheets?: Maybe + /** Connection between the NodeWithFeaturedImage type and the MediaItem type */ + featuredImage?: Maybe + /** The database identifier for the featured image node assigned to the content node */ + featuredImageDatabaseId?: Maybe + /** Globally unique ID of the featured image assigned to the node */ + featuredImageId?: Maybe + /** The global unique identifier for this post. This currently matches the value stored in WP_Post->guid and the guid column in the "post_objects" database table. */ + guid?: Maybe + /** Whether the hero_fragments object is password protected. */ + hasPassword?: Maybe + /** + * The id field matches the WP_Post->ID field. + * @deprecated Deprecated in favor of the databaseId field + */ + heroItemId: Scalars['Int']['output'] + /** The globally unique identifier of the hero_fragments object. */ + id: Scalars['ID']['output'] + /** Whether the node is a Comment */ + isComment: Scalars['Boolean']['output'] + /** Whether the node is a Content Node */ + isContentNode: Scalars['Boolean']['output'] + /** Whether the node represents the front page. */ + isFrontPage: Scalars['Boolean']['output'] + /** Whether the node represents the blog page. */ + isPostsPage: Scalars['Boolean']['output'] + /** Whether the object is a node in the preview state */ + isPreview?: Maybe + /** Whether the object is restricted from the current viewer */ + isRestricted?: Maybe + /** Whether the node is a Term */ + isTermNode: Scalars['Boolean']['output'] + /** Polylang language */ + language?: Maybe + /** The user that most recently edited the node */ + lastEditedBy?: Maybe + /** The permalink of the post */ + link?: Maybe + /** The local modified time for a post. If a post was recently updated the modified field will change to match the corresponding time. */ + modified?: Maybe + /** The GMT modified time for a post. If a post was recently updated the modified field will change to match the corresponding time in GMT. */ + modifiedGmt?: Maybe + /** The password for the hero_fragments object. */ + password?: Maybe + /** Connection between the HeroItem type and the HeroItem type */ + preview?: Maybe + /** The database id of the preview node */ + previewRevisionDatabaseId?: Maybe + /** Whether the object is a node in the preview state */ + previewRevisionId?: Maybe + /** The Yoast SEO data of the ContentNode */ + seo?: Maybe + /** The uri slug for the post. This is equivalent to the WP_Post->post_name field and the post_name column in the database for the "post_objects" table. */ + slug?: Maybe + /** The current status of the object */ + status?: Maybe + /** The template assigned to the node */ + template?: Maybe + /** The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made. */ + title?: Maybe + /** Get specific translation version of this object */ + translation?: Maybe + /** List all translated versions of this post */ + translations?: Maybe>> + /** The unique resource identifier path */ + uri?: Maybe + } /** The HeroItem type */ export type HeroItemContentArgs = { - format?: InputMaybe; -}; - + format?: InputMaybe +} /** The HeroItem type */ export type HeroItemEnqueuedScriptsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** The HeroItem type */ export type HeroItemEnqueuedStylesheetsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** The HeroItem type */ export type HeroItemTitleArgs = { - format?: InputMaybe; -}; - + format?: InputMaybe +} /** The HeroItem type */ export type HeroItemTranslationArgs = { - language: LanguageCodeEnum; -}; + language: LanguageCodeEnum +} /** Connection to HeroItem Nodes */ export type HeroItemConnection = { /** A list of edges (relational context) between RootQuery and connected HeroItem Nodes */ - edges: Array; + edges: Array /** A list of connected HeroItem Nodes */ - nodes: Array; + nodes: Array /** Information about pagination in a connection. */ - pageInfo: HeroItemConnectionPageInfo; -}; + pageInfo: HeroItemConnectionPageInfo +} /** Edge between a Node and a connected HeroItem */ export type HeroItemConnectionEdge = { /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; + cursor?: Maybe /** The connected HeroItem Node */ - node: HeroItem; -}; + node: HeroItem +} /** Page Info on the connected HeroItemConnectionEdge */ export type HeroItemConnectionPageInfo = { /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; + endCursor?: Maybe /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; + hasNextPage: Scalars['Boolean']['output'] /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; + hasPreviousPage: Scalars['Boolean']['output'] /** Raw schema for page */ - seo?: Maybe; + seo?: Maybe /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; + startCursor?: Maybe +} /** The Type of Identifier used to fetch a single resource. Default is ID. */ export enum HeroItemIdType { @@ -5382,394 +5513,403 @@ export enum HeroItemIdType { /** Identify a resource by the slug. Available to non-hierarchcial Types where the slug is a unique identifier. */ Slug = 'SLUG', /** Identify a resource by the URI. */ - Uri = 'URI' + Uri = 'URI', } /** Connection between the HeroItem type and the HeroItem type */ -export type HeroItemToPreviewConnectionEdge = Edge & HeroItemConnectionEdge & OneToOneConnection & { - __typename?: 'HeroItemToPreviewConnectionEdge'; - /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; - /** The node of the connection, without the edges */ - node: HeroItem; -}; +export type HeroItemToPreviewConnectionEdge = Edge & + HeroItemConnectionEdge & + OneToOneConnection & { + __typename?: 'HeroItemToPreviewConnectionEdge' + /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ + cursor?: Maybe + /** The node of the connection, without the edges */ + node: HeroItem + } /** Content node with hierarchical (parent/child) relationships */ export type HierarchicalContentNode = { /** Returns ancestors of the node. Default ordered as lowest (closest to the child) to highest (closest to the root). */ - ancestors?: Maybe; + ancestors?: Maybe /** Connection between the HierarchicalContentNode type and the ContentNode type */ - children?: Maybe; + children?: Maybe /** Connection between the ContentNode type and the ContentType type */ - contentType?: Maybe; + contentType?: Maybe /** The name of the Content Type the node belongs to */ - contentTypeName: Scalars['String']['output']; + contentTypeName: Scalars['String']['output'] /** The unique identifier stored in the database */ - databaseId: Scalars['Int']['output']; + databaseId: Scalars['Int']['output'] /** Post publishing date. */ - date?: Maybe; + date?: Maybe /** The publishing date set in GMT. */ - dateGmt?: Maybe; + dateGmt?: Maybe /** The desired slug of the post */ - desiredSlug?: Maybe; + desiredSlug?: Maybe /** If a user has edited the node within the past 15 seconds, this will return the user that last edited. Null if the edit lock doesn't exist or is greater than 15 seconds */ - editingLockedBy?: Maybe; + editingLockedBy?: Maybe /** The RSS enclosure for the object */ - enclosure?: Maybe; + enclosure?: Maybe /** Connection between the ContentNode type and the EnqueuedScript type */ - enqueuedScripts?: Maybe; + enqueuedScripts?: Maybe /** Connection between the ContentNode type and the EnqueuedStylesheet type */ - enqueuedStylesheets?: Maybe; + enqueuedStylesheets?: Maybe /** The global unique identifier for this post. This currently matches the value stored in WP_Post->guid and the guid column in the "post_objects" database table. */ - guid?: Maybe; + guid?: Maybe /** The globally unique ID for the object */ - id: Scalars['ID']['output']; + id: Scalars['ID']['output'] /** Whether the node is a Comment */ - isComment: Scalars['Boolean']['output']; + isComment: Scalars['Boolean']['output'] /** Whether the node is a Content Node */ - isContentNode: Scalars['Boolean']['output']; + isContentNode: Scalars['Boolean']['output'] /** Whether the node represents the front page. */ - isFrontPage: Scalars['Boolean']['output']; + isFrontPage: Scalars['Boolean']['output'] /** Whether the node represents the blog page. */ - isPostsPage: Scalars['Boolean']['output']; + isPostsPage: Scalars['Boolean']['output'] /** Whether the object is a node in the preview state */ - isPreview?: Maybe; + isPreview?: Maybe /** Whether the object is restricted from the current viewer */ - isRestricted?: Maybe; + isRestricted?: Maybe /** Whether the node is a Term */ - isTermNode: Scalars['Boolean']['output']; + isTermNode: Scalars['Boolean']['output'] /** The user that most recently edited the node */ - lastEditedBy?: Maybe; + lastEditedBy?: Maybe /** The permalink of the post */ - link?: Maybe; + link?: Maybe /** The local modified time for a post. If a post was recently updated the modified field will change to match the corresponding time. */ - modified?: Maybe; + modified?: Maybe /** The GMT modified time for a post. If a post was recently updated the modified field will change to match the corresponding time in GMT. */ - modifiedGmt?: Maybe; + modifiedGmt?: Maybe /** The parent of the node. The parent object can be of various types */ - parent?: Maybe; + parent?: Maybe /** Database id of the parent node */ - parentDatabaseId?: Maybe; + parentDatabaseId?: Maybe /** The globally unique identifier of the parent node. */ - parentId?: Maybe; + parentId?: Maybe /** The database id of the preview node */ - previewRevisionDatabaseId?: Maybe; + previewRevisionDatabaseId?: Maybe /** Whether the object is a node in the preview state */ - previewRevisionId?: Maybe; + previewRevisionId?: Maybe /** The Yoast SEO data of the ContentNode */ - seo?: Maybe; + seo?: Maybe /** The uri slug for the post. This is equivalent to the WP_Post->post_name field and the post_name column in the database for the "post_objects" table. */ - slug?: Maybe; + slug?: Maybe /** The current status of the object */ - status?: Maybe; + status?: Maybe /** The template assigned to a node of content */ - template?: Maybe; + template?: Maybe /** The unique resource identifier path */ - uri?: Maybe; -}; - + uri?: Maybe +} /** Content node with hierarchical (parent/child) relationships */ export type HierarchicalContentNodeAncestorsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** Content node with hierarchical (parent/child) relationships */ export type HierarchicalContentNodeChildrenArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** Content node with hierarchical (parent/child) relationships */ export type HierarchicalContentNodeEnqueuedScriptsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** Content node with hierarchical (parent/child) relationships */ export type HierarchicalContentNodeEnqueuedStylesheetsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** Connection between the HierarchicalContentNode type and the ContentNode type */ -export type HierarchicalContentNodeToContentNodeAncestorsConnection = Connection & ContentNodeConnection & { - __typename?: 'HierarchicalContentNodeToContentNodeAncestorsConnection'; - /** Edges for the HierarchicalContentNodeToContentNodeAncestorsConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: HierarchicalContentNodeToContentNodeAncestorsConnectionPageInfo; -}; +export type HierarchicalContentNodeToContentNodeAncestorsConnection = Connection & + ContentNodeConnection & { + __typename?: 'HierarchicalContentNodeToContentNodeAncestorsConnection' + /** Edges for the HierarchicalContentNodeToContentNodeAncestorsConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: HierarchicalContentNodeToContentNodeAncestorsConnectionPageInfo + } /** An edge in a connection */ -export type HierarchicalContentNodeToContentNodeAncestorsConnectionEdge = ContentNodeConnectionEdge & Edge & { - __typename?: 'HierarchicalContentNodeToContentNodeAncestorsConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: ContentNode; -}; +export type HierarchicalContentNodeToContentNodeAncestorsConnectionEdge = + ContentNodeConnectionEdge & + Edge & { + __typename?: 'HierarchicalContentNodeToContentNodeAncestorsConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: ContentNode + } /** Page Info on the "HierarchicalContentNodeToContentNodeAncestorsConnection" */ -export type HierarchicalContentNodeToContentNodeAncestorsConnectionPageInfo = ContentNodeConnectionPageInfo & PageInfo & WpPageInfo & { - __typename?: 'HierarchicalContentNodeToContentNodeAncestorsConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type HierarchicalContentNodeToContentNodeAncestorsConnectionPageInfo = + ContentNodeConnectionPageInfo & + PageInfo & + WpPageInfo & { + __typename?: 'HierarchicalContentNodeToContentNodeAncestorsConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the HierarchicalContentNodeToContentNodeAncestorsConnection connection */ export type HierarchicalContentNodeToContentNodeAncestorsConnectionWhereArgs = { /** The Types of content to filter */ - contentTypes?: InputMaybe>>; + contentTypes?: InputMaybe>> /** Filter the connection based on dates */ - dateQuery?: InputMaybe; + dateQuery?: InputMaybe /** True for objects with passwords; False for objects without passwords; null for all objects with or without passwords */ - hasPassword?: InputMaybe; + hasPassword?: InputMaybe /** Specific database ID of the object */ - id?: InputMaybe; + id?: InputMaybe /** Array of IDs for the objects to retrieve */ - in?: InputMaybe>>; + in?: InputMaybe>> /** Get objects with a specific mimeType property */ - mimeType?: InputMaybe; + mimeType?: InputMaybe /** Slug / post_name of the object */ - name?: InputMaybe; + name?: InputMaybe /** Specify objects to retrieve. Use slugs */ - nameIn?: InputMaybe>>; + nameIn?: InputMaybe>> /** Specify IDs NOT to retrieve. If this is used in the same query as "in", it will be ignored */ - notIn?: InputMaybe>>; + notIn?: InputMaybe>> /** What parameter to use to order the objects by. */ - orderby?: InputMaybe>>; + orderby?: InputMaybe>> /** Use ID to return only children. Use 0 to return only top-level items */ - parent?: InputMaybe; + parent?: InputMaybe /** Specify objects whose parent is in an array */ - parentIn?: InputMaybe>>; + parentIn?: InputMaybe>> /** Specify posts whose parent is not in an array */ - parentNotIn?: InputMaybe>>; + parentNotIn?: InputMaybe>> /** Show posts with a specific password. */ - password?: InputMaybe; + password?: InputMaybe /** Show Posts based on a keyword search */ - search?: InputMaybe; + search?: InputMaybe /** Retrieve posts where post status is in an array. */ - stati?: InputMaybe>>; + stati?: InputMaybe>> /** Show posts with a specific status. */ - status?: InputMaybe; + status?: InputMaybe /** Title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** Connection between the HierarchicalContentNode type and the ContentNode type */ -export type HierarchicalContentNodeToContentNodeChildrenConnection = Connection & ContentNodeConnection & { - __typename?: 'HierarchicalContentNodeToContentNodeChildrenConnection'; - /** Edges for the HierarchicalContentNodeToContentNodeChildrenConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: HierarchicalContentNodeToContentNodeChildrenConnectionPageInfo; -}; +export type HierarchicalContentNodeToContentNodeChildrenConnection = Connection & + ContentNodeConnection & { + __typename?: 'HierarchicalContentNodeToContentNodeChildrenConnection' + /** Edges for the HierarchicalContentNodeToContentNodeChildrenConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: HierarchicalContentNodeToContentNodeChildrenConnectionPageInfo + } /** An edge in a connection */ -export type HierarchicalContentNodeToContentNodeChildrenConnectionEdge = ContentNodeConnectionEdge & Edge & { - __typename?: 'HierarchicalContentNodeToContentNodeChildrenConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: ContentNode; -}; +export type HierarchicalContentNodeToContentNodeChildrenConnectionEdge = ContentNodeConnectionEdge & + Edge & { + __typename?: 'HierarchicalContentNodeToContentNodeChildrenConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: ContentNode + } /** Page Info on the "HierarchicalContentNodeToContentNodeChildrenConnection" */ -export type HierarchicalContentNodeToContentNodeChildrenConnectionPageInfo = ContentNodeConnectionPageInfo & PageInfo & WpPageInfo & { - __typename?: 'HierarchicalContentNodeToContentNodeChildrenConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type HierarchicalContentNodeToContentNodeChildrenConnectionPageInfo = + ContentNodeConnectionPageInfo & + PageInfo & + WpPageInfo & { + __typename?: 'HierarchicalContentNodeToContentNodeChildrenConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the HierarchicalContentNodeToContentNodeChildrenConnection connection */ export type HierarchicalContentNodeToContentNodeChildrenConnectionWhereArgs = { /** The Types of content to filter */ - contentTypes?: InputMaybe>>; + contentTypes?: InputMaybe>> /** Filter the connection based on dates */ - dateQuery?: InputMaybe; + dateQuery?: InputMaybe /** True for objects with passwords; False for objects without passwords; null for all objects with or without passwords */ - hasPassword?: InputMaybe; + hasPassword?: InputMaybe /** Specific database ID of the object */ - id?: InputMaybe; + id?: InputMaybe /** Array of IDs for the objects to retrieve */ - in?: InputMaybe>>; + in?: InputMaybe>> /** Get objects with a specific mimeType property */ - mimeType?: InputMaybe; + mimeType?: InputMaybe /** Slug / post_name of the object */ - name?: InputMaybe; + name?: InputMaybe /** Specify objects to retrieve. Use slugs */ - nameIn?: InputMaybe>>; + nameIn?: InputMaybe>> /** Specify IDs NOT to retrieve. If this is used in the same query as "in", it will be ignored */ - notIn?: InputMaybe>>; + notIn?: InputMaybe>> /** What parameter to use to order the objects by. */ - orderby?: InputMaybe>>; + orderby?: InputMaybe>> /** Use ID to return only children. Use 0 to return only top-level items */ - parent?: InputMaybe; + parent?: InputMaybe /** Specify objects whose parent is in an array */ - parentIn?: InputMaybe>>; + parentIn?: InputMaybe>> /** Specify posts whose parent is not in an array */ - parentNotIn?: InputMaybe>>; + parentNotIn?: InputMaybe>> /** Show posts with a specific password. */ - password?: InputMaybe; + password?: InputMaybe /** Show Posts based on a keyword search */ - search?: InputMaybe; + search?: InputMaybe /** Retrieve posts where post status is in an array. */ - stati?: InputMaybe>>; + stati?: InputMaybe>> /** Show posts with a specific status. */ - status?: InputMaybe; + status?: InputMaybe /** Title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** Connection between the HierarchicalContentNode type and the ContentNode type */ -export type HierarchicalContentNodeToParentContentNodeConnectionEdge = ContentNodeConnectionEdge & Edge & OneToOneConnection & { - __typename?: 'HierarchicalContentNodeToParentContentNodeConnectionEdge'; - /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; - /** The node of the connection, without the edges */ - node: ContentNode; -}; +export type HierarchicalContentNodeToParentContentNodeConnectionEdge = ContentNodeConnectionEdge & + Edge & + OneToOneConnection & { + __typename?: 'HierarchicalContentNodeToParentContentNodeConnectionEdge' + /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ + cursor?: Maybe + /** The node of the connection, without the edges */ + node: ContentNode + } /** Node with hierarchical (parent/child) relationships */ export type HierarchicalNode = { /** The unique identifier stored in the database */ - databaseId: Scalars['Int']['output']; + databaseId: Scalars['Int']['output'] /** The globally unique ID for the object */ - id: Scalars['ID']['output']; + id: Scalars['ID']['output'] /** Database id of the parent node */ - parentDatabaseId?: Maybe; + parentDatabaseId?: Maybe /** The globally unique identifier of the parent node. */ - parentId?: Maybe; -}; + parentId?: Maybe +} /** Term node with hierarchical (parent/child) relationships */ export type HierarchicalTermNode = { /** The number of objects connected to the object */ - count?: Maybe; + count?: Maybe /** The unique identifier stored in the database */ - databaseId: Scalars['Int']['output']; + databaseId: Scalars['Int']['output'] /** The description of the object */ - description?: Maybe; + description?: Maybe /** Connection between the TermNode type and the EnqueuedScript type */ - enqueuedScripts?: Maybe; + enqueuedScripts?: Maybe /** Connection between the TermNode type and the EnqueuedStylesheet type */ - enqueuedStylesheets?: Maybe; + enqueuedStylesheets?: Maybe /** The globally unique ID for the object */ - id: Scalars['ID']['output']; + id: Scalars['ID']['output'] /** Whether the node is a Comment */ - isComment: Scalars['Boolean']['output']; + isComment: Scalars['Boolean']['output'] /** Whether the node is a Content Node */ - isContentNode: Scalars['Boolean']['output']; + isContentNode: Scalars['Boolean']['output'] /** Whether the node represents the front page. */ - isFrontPage: Scalars['Boolean']['output']; + isFrontPage: Scalars['Boolean']['output'] /** Whether the node represents the blog page. */ - isPostsPage: Scalars['Boolean']['output']; + isPostsPage: Scalars['Boolean']['output'] /** Whether the object is restricted from the current viewer */ - isRestricted?: Maybe; + isRestricted?: Maybe /** Whether the node is a Term */ - isTermNode: Scalars['Boolean']['output']; + isTermNode: Scalars['Boolean']['output'] /** The link to the term */ - link?: Maybe; + link?: Maybe /** The human friendly name of the object. */ - name?: Maybe; + name?: Maybe /** Database id of the parent node */ - parentDatabaseId?: Maybe; + parentDatabaseId?: Maybe /** The globally unique identifier of the parent node. */ - parentId?: Maybe; + parentId?: Maybe /** An alphanumeric identifier for the object unique to its type. */ - slug?: Maybe; + slug?: Maybe /** The name of the taxonomy that the object is associated with */ - taxonomyName?: Maybe; + taxonomyName?: Maybe /** The ID of the term group that this term object belongs to */ - termGroupId?: Maybe; + termGroupId?: Maybe /** The taxonomy ID that the object is associated with */ - termTaxonomyId?: Maybe; + termTaxonomyId?: Maybe /** The unique resource identifier path */ - uri?: Maybe; -}; - + uri?: Maybe +} /** Term node with hierarchical (parent/child) relationships */ export type HierarchicalTermNodeEnqueuedScriptsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** Term node with hierarchical (parent/child) relationships */ export type HierarchicalTermNodeEnqueuedStylesheetsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** Submitted field data */ export type InputField = { /** Field Id */ - id?: InputMaybe; + id?: InputMaybe /** Field value */ - value?: InputMaybe; -}; + value?: InputMaybe +} /** Language (Polylang) */ export type Language = { - __typename?: 'Language'; + __typename?: 'Language' /** Language code (Polylang) */ - code?: Maybe; + code?: Maybe /** Language ID (Polylang) */ - id: Scalars['ID']['output']; + id: Scalars['ID']['output'] /** Language locale (Polylang) */ - locale?: Maybe; + locale?: Maybe /** Human readable language name (Polylang) */ - name?: Maybe; + name?: Maybe /** Language term slug. Prefer the "code" field if possible (Polylang) */ - slug?: Maybe; -}; + slug?: Maybe +} /** Enum of all available language codes */ export enum LanguageCodeEnum { En = 'EN', Ru = 'RU', /** The default locale of the site */ - RuRu = 'RU_RU' + RuRu = 'RU_RU', } /** Filter item by specific language, default language or list all languages */ @@ -5779,158 +5919,164 @@ export enum LanguageCodeFilterEnum { En = 'EN', Ru = 'RU', /** The default locale of the site */ - RuRu = 'RU_RU' + RuRu = 'RU_RU', } /** The Main type */ -export type Main = ContentNode & DatabaseIdentifier & MenuItemLinkable & Node & NodeWithContentEditor & NodeWithFeaturedImage & NodeWithTemplate & NodeWithTitle & Previewable & UniformResourceIdentifiable & WithAcfReviews & { - __typename?: 'Main'; - /** The content of the post. */ - content?: Maybe; - /** Connection between the ContentNode type and the ContentType type */ - contentType?: Maybe; - /** The name of the Content Type the node belongs to */ - contentTypeName: Scalars['String']['output']; - /** The unique identifier stored in the database */ - databaseId: Scalars['Int']['output']; - /** Post publishing date. */ - date?: Maybe; - /** The publishing date set in GMT. */ - dateGmt?: Maybe; - /** The desired slug of the post */ - desiredSlug?: Maybe; - /** If a user has edited the node within the past 15 seconds, this will return the user that last edited. Null if the edit lock doesn't exist or is greater than 15 seconds */ - editingLockedBy?: Maybe; - /** The RSS enclosure for the object */ - enclosure?: Maybe; - /** Connection between the ContentNode type and the EnqueuedScript type */ - enqueuedScripts?: Maybe; - /** Connection between the ContentNode type and the EnqueuedStylesheet type */ - enqueuedStylesheets?: Maybe; - /** Connection between the NodeWithFeaturedImage type and the MediaItem type */ - featuredImage?: Maybe; - /** The database identifier for the featured image node assigned to the content node */ - featuredImageDatabaseId?: Maybe; - /** Globally unique ID of the featured image assigned to the node */ - featuredImageId?: Maybe; - /** The global unique identifier for this post. This currently matches the value stored in WP_Post->guid and the guid column in the "post_objects" database table. */ - guid?: Maybe; - /** Whether the main object is password protected. */ - hasPassword?: Maybe; - /** The globally unique identifier of the main object. */ - id: Scalars['ID']['output']; - /** Whether the node is a Comment */ - isComment: Scalars['Boolean']['output']; - /** Whether the node is a Content Node */ - isContentNode: Scalars['Boolean']['output']; - /** Whether the node represents the front page. */ - isFrontPage: Scalars['Boolean']['output']; - /** Whether the node represents the blog page. */ - isPostsPage: Scalars['Boolean']['output']; - /** Whether the object is a node in the preview state */ - isPreview?: Maybe; - /** Whether the object is restricted from the current viewer */ - isRestricted?: Maybe; - /** Whether the node is a Term */ - isTermNode: Scalars['Boolean']['output']; - /** The user that most recently edited the node */ - lastEditedBy?: Maybe; - /** The permalink of the post */ - link?: Maybe; - /** - * The id field matches the WP_Post->ID field. - * @deprecated Deprecated in favor of the databaseId field - */ - mainId: Scalars['Int']['output']; - /** The local modified time for a post. If a post was recently updated the modified field will change to match the corresponding time. */ - modified?: Maybe; - /** The GMT modified time for a post. If a post was recently updated the modified field will change to match the corresponding time in GMT. */ - modifiedGmt?: Maybe; - /** The password for the main object. */ - password?: Maybe; - /** Connection between the Main type and the Main type */ - preview?: Maybe; - /** The database id of the preview node */ - previewRevisionDatabaseId?: Maybe; - /** Whether the object is a node in the preview state */ - previewRevisionId?: Maybe; - /** Fields of the Reviews ACF Field Group */ - reviews?: Maybe; - /** The Yoast SEO data of the ContentNode */ - seo?: Maybe; - /** The uri slug for the post. This is equivalent to the WP_Post->post_name field and the post_name column in the database for the "post_objects" table. */ - slug?: Maybe; - /** The current status of the object */ - status?: Maybe; - /** The template assigned to the node */ - template?: Maybe; - /** The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made. */ - title?: Maybe; - /** The unique resource identifier path */ - uri?: Maybe; -}; - +export type Main = ContentNode & + DatabaseIdentifier & + MenuItemLinkable & + Node & + NodeWithContentEditor & + NodeWithFeaturedImage & + NodeWithTemplate & + NodeWithTitle & + Previewable & + UniformResourceIdentifiable & + WithAcfReviews & { + __typename?: 'Main' + /** The content of the post. */ + content?: Maybe + /** Connection between the ContentNode type and the ContentType type */ + contentType?: Maybe + /** The name of the Content Type the node belongs to */ + contentTypeName: Scalars['String']['output'] + /** The unique identifier stored in the database */ + databaseId: Scalars['Int']['output'] + /** Post publishing date. */ + date?: Maybe + /** The publishing date set in GMT. */ + dateGmt?: Maybe + /** The desired slug of the post */ + desiredSlug?: Maybe + /** If a user has edited the node within the past 15 seconds, this will return the user that last edited. Null if the edit lock doesn't exist or is greater than 15 seconds */ + editingLockedBy?: Maybe + /** The RSS enclosure for the object */ + enclosure?: Maybe + /** Connection between the ContentNode type and the EnqueuedScript type */ + enqueuedScripts?: Maybe + /** Connection between the ContentNode type and the EnqueuedStylesheet type */ + enqueuedStylesheets?: Maybe + /** Connection between the NodeWithFeaturedImage type and the MediaItem type */ + featuredImage?: Maybe + /** The database identifier for the featured image node assigned to the content node */ + featuredImageDatabaseId?: Maybe + /** Globally unique ID of the featured image assigned to the node */ + featuredImageId?: Maybe + /** The global unique identifier for this post. This currently matches the value stored in WP_Post->guid and the guid column in the "post_objects" database table. */ + guid?: Maybe + /** Whether the main object is password protected. */ + hasPassword?: Maybe + /** The globally unique identifier of the main object. */ + id: Scalars['ID']['output'] + /** Whether the node is a Comment */ + isComment: Scalars['Boolean']['output'] + /** Whether the node is a Content Node */ + isContentNode: Scalars['Boolean']['output'] + /** Whether the node represents the front page. */ + isFrontPage: Scalars['Boolean']['output'] + /** Whether the node represents the blog page. */ + isPostsPage: Scalars['Boolean']['output'] + /** Whether the object is a node in the preview state */ + isPreview?: Maybe + /** Whether the object is restricted from the current viewer */ + isRestricted?: Maybe + /** Whether the node is a Term */ + isTermNode: Scalars['Boolean']['output'] + /** The user that most recently edited the node */ + lastEditedBy?: Maybe + /** The permalink of the post */ + link?: Maybe + /** + * The id field matches the WP_Post->ID field. + * @deprecated Deprecated in favor of the databaseId field + */ + mainId: Scalars['Int']['output'] + /** The local modified time for a post. If a post was recently updated the modified field will change to match the corresponding time. */ + modified?: Maybe + /** The GMT modified time for a post. If a post was recently updated the modified field will change to match the corresponding time in GMT. */ + modifiedGmt?: Maybe + /** The password for the main object. */ + password?: Maybe + /** Connection between the Main type and the Main type */ + preview?: Maybe + /** The database id of the preview node */ + previewRevisionDatabaseId?: Maybe + /** Whether the object is a node in the preview state */ + previewRevisionId?: Maybe + /** Fields of the Reviews ACF Field Group */ + reviews?: Maybe + /** The Yoast SEO data of the ContentNode */ + seo?: Maybe + /** The uri slug for the post. This is equivalent to the WP_Post->post_name field and the post_name column in the database for the "post_objects" table. */ + slug?: Maybe + /** The current status of the object */ + status?: Maybe + /** The template assigned to the node */ + template?: Maybe + /** The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made. */ + title?: Maybe + /** The unique resource identifier path */ + uri?: Maybe + } /** The Main type */ export type MainContentArgs = { - format?: InputMaybe; -}; - + format?: InputMaybe +} /** The Main type */ export type MainEnqueuedScriptsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** The Main type */ export type MainEnqueuedStylesheetsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** The Main type */ export type MainTitleArgs = { - format?: InputMaybe; -}; + format?: InputMaybe +} /** Connection to Main Nodes */ export type MainConnection = { /** A list of edges (relational context) between RootQuery and connected Main Nodes */ - edges: Array; + edges: Array /** A list of connected Main Nodes */ - nodes: Array
; + nodes: Array
/** Information about pagination in a connection. */ - pageInfo: MainConnectionPageInfo; -}; + pageInfo: MainConnectionPageInfo +} /** Edge between a Node and a connected Main */ export type MainConnectionEdge = { /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; + cursor?: Maybe /** The connected Main Node */ - node: Main; -}; + node: Main +} /** Page Info on the connected MainConnectionEdge */ export type MainConnectionPageInfo = { /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; + endCursor?: Maybe /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; + hasNextPage: Scalars['Boolean']['output'] /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; + hasPreviousPage: Scalars['Boolean']['output'] /** Raw schema for page */ - seo?: Maybe; + seo?: Maybe /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; + startCursor?: Maybe +} /** The Type of Identifier used to fetch a single resource. Default is ID. */ export enum MainIdType { @@ -5941,293 +6087,290 @@ export enum MainIdType { /** Identify a resource by the slug. Available to non-hierarchcial Types where the slug is a unique identifier. */ Slug = 'SLUG', /** Identify a resource by the URI. */ - Uri = 'URI' + Uri = 'URI', } /** Connection between the Main type and the Main type */ -export type MainToPreviewConnectionEdge = Edge & MainConnectionEdge & OneToOneConnection & { - __typename?: 'MainToPreviewConnectionEdge'; - /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; - /** The node of the connection, without the edges */ - node: Main; -}; +export type MainToPreviewConnectionEdge = Edge & + MainConnectionEdge & + OneToOneConnection & { + __typename?: 'MainToPreviewConnectionEdge' + /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ + cursor?: Maybe + /** The node of the connection, without the edges */ + node: Main + } /** File details for a Media Item */ export type MediaDetails = { - __typename?: 'MediaDetails'; + __typename?: 'MediaDetails' /** The filename of the mediaItem */ - file?: Maybe; + file?: Maybe /** The height of the mediaItem */ - height?: Maybe; + height?: Maybe /** Meta information associated with the mediaItem */ - meta?: Maybe; + meta?: Maybe /** The available sizes of the mediaItem */ - sizes?: Maybe>>; + sizes?: Maybe>> /** The width of the mediaItem */ - width?: Maybe; -}; - + width?: Maybe +} /** File details for a Media Item */ export type MediaDetailsSizesArgs = { - exclude?: InputMaybe>>; - include?: InputMaybe>>; -}; + exclude?: InputMaybe>> + include?: InputMaybe>> +} /** The mediaItem type */ -export type MediaItem = ContentNode & DatabaseIdentifier & HierarchicalContentNode & HierarchicalNode & Node & NodeWithAuthor & NodeWithComments & NodeWithTemplate & NodeWithTitle & UniformResourceIdentifiable & { - __typename?: 'MediaItem'; - /** Alternative text to display when resource is not displayed */ - altText?: Maybe; - /** Returns ancestors of the node. Default ordered as lowest (closest to the child) to highest (closest to the root). */ - ancestors?: Maybe; - /** Connection between the NodeWithAuthor type and the User type */ - author?: Maybe; - /** The database identifier of the author of the node */ - authorDatabaseId?: Maybe; - /** The globally unique identifier of the author of the node */ - authorId?: Maybe; - /** The caption for the resource */ - caption?: Maybe; - /** Connection between the HierarchicalContentNode type and the ContentNode type */ - children?: Maybe; - /** The number of comments. Even though WPGraphQL denotes this field as an integer, in WordPress this field should be saved as a numeric string for compatibility. */ - commentCount?: Maybe; - /** Whether the comments are open or closed for this particular post. */ - commentStatus?: Maybe; - /** Connection between the MediaItem type and the Comment type */ - comments?: Maybe; - /** Connection between the ContentNode type and the ContentType type */ - contentType?: Maybe; - /** The name of the Content Type the node belongs to */ - contentTypeName: Scalars['String']['output']; - /** The unique identifier stored in the database */ - databaseId: Scalars['Int']['output']; - /** Post publishing date. */ - date?: Maybe; - /** The publishing date set in GMT. */ - dateGmt?: Maybe; - /** Description of the image (stored as post_content) */ - description?: Maybe; - /** The desired slug of the post */ - desiredSlug?: Maybe; - /** If a user has edited the node within the past 15 seconds, this will return the user that last edited. Null if the edit lock doesn't exist or is greater than 15 seconds */ - editingLockedBy?: Maybe; - /** The RSS enclosure for the object */ - enclosure?: Maybe; - /** Connection between the ContentNode type and the EnqueuedScript type */ - enqueuedScripts?: Maybe; - /** Connection between the ContentNode type and the EnqueuedStylesheet type */ - enqueuedStylesheets?: Maybe; - /** The filesize in bytes of the resource */ - fileSize?: Maybe; - /** The global unique identifier for this post. This currently matches the value stored in WP_Post->guid and the guid column in the "post_objects" database table. */ - guid?: Maybe; - /** Whether the attachment object is password protected. */ - hasPassword?: Maybe; - /** The globally unique identifier of the attachment object. */ - id: Scalars['ID']['output']; - /** Whether the node is a Comment */ - isComment: Scalars['Boolean']['output']; - /** Whether the node is a Content Node */ - isContentNode: Scalars['Boolean']['output']; - /** Whether the node represents the front page. */ - isFrontPage: Scalars['Boolean']['output']; - /** Whether the node represents the blog page. */ - isPostsPage: Scalars['Boolean']['output']; - /** Whether the object is a node in the preview state */ - isPreview?: Maybe; - /** Whether the object is restricted from the current viewer */ - isRestricted?: Maybe; - /** Whether the node is a Term */ - isTermNode: Scalars['Boolean']['output']; - /** Polylang language */ - language?: Maybe; - /** The user that most recently edited the node */ - lastEditedBy?: Maybe; - /** The permalink of the post */ - link?: Maybe; - /** Details about the mediaItem */ - mediaDetails?: Maybe; - /** - * The id field matches the WP_Post->ID field. - * @deprecated Deprecated in favor of the databaseId field - */ - mediaItemId: Scalars['Int']['output']; - /** Url of the mediaItem */ - mediaItemUrl?: Maybe; - /** Type of resource */ - mediaType?: Maybe; - /** The mime type of the mediaItem */ - mimeType?: Maybe; - /** The local modified time for a post. If a post was recently updated the modified field will change to match the corresponding time. */ - modified?: Maybe; - /** The GMT modified time for a post. If a post was recently updated the modified field will change to match the corresponding time in GMT. */ - modifiedGmt?: Maybe; - /** The parent of the node. The parent object can be of various types */ - parent?: Maybe; - /** Database id of the parent node */ - parentDatabaseId?: Maybe; - /** The globally unique identifier of the parent node. */ - parentId?: Maybe; - /** The password for the attachment object. */ - password?: Maybe; - /** The database id of the preview node */ - previewRevisionDatabaseId?: Maybe; - /** Whether the object is a node in the preview state */ - previewRevisionId?: Maybe; - /** The Yoast SEO data of the ContentNode */ - seo?: Maybe; - /** The sizes attribute value for an image. */ - sizes?: Maybe; - /** The uri slug for the post. This is equivalent to the WP_Post->post_name field and the post_name column in the database for the "post_objects" table. */ - slug?: Maybe; - /** Url of the mediaItem */ - sourceUrl?: Maybe; - /** The srcset attribute specifies the URL of the image to use in different situations. It is a comma separated string of urls and their widths. */ - srcSet?: Maybe; - /** The current status of the object */ - status?: Maybe; - /** The template assigned to a node of content */ - template?: Maybe; - /** The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made. */ - title?: Maybe; - /** Get specific translation version of this object */ - translation?: Maybe; - /** List all translated versions of this post */ - translations?: Maybe>>; - /** The unique resource identifier path */ - uri?: Maybe; -}; - +export type MediaItem = ContentNode & + DatabaseIdentifier & + HierarchicalContentNode & + HierarchicalNode & + Node & + NodeWithAuthor & + NodeWithComments & + NodeWithTemplate & + NodeWithTitle & + UniformResourceIdentifiable & { + __typename?: 'MediaItem' + /** Alternative text to display when resource is not displayed */ + altText?: Maybe + /** Returns ancestors of the node. Default ordered as lowest (closest to the child) to highest (closest to the root). */ + ancestors?: Maybe + /** Connection between the NodeWithAuthor type and the User type */ + author?: Maybe + /** The database identifier of the author of the node */ + authorDatabaseId?: Maybe + /** The globally unique identifier of the author of the node */ + authorId?: Maybe + /** The caption for the resource */ + caption?: Maybe + /** Connection between the HierarchicalContentNode type and the ContentNode type */ + children?: Maybe + /** The number of comments. Even though WPGraphQL denotes this field as an integer, in WordPress this field should be saved as a numeric string for compatibility. */ + commentCount?: Maybe + /** Whether the comments are open or closed for this particular post. */ + commentStatus?: Maybe + /** Connection between the MediaItem type and the Comment type */ + comments?: Maybe + /** Connection between the ContentNode type and the ContentType type */ + contentType?: Maybe + /** The name of the Content Type the node belongs to */ + contentTypeName: Scalars['String']['output'] + /** The unique identifier stored in the database */ + databaseId: Scalars['Int']['output'] + /** Post publishing date. */ + date?: Maybe + /** The publishing date set in GMT. */ + dateGmt?: Maybe + /** Description of the image (stored as post_content) */ + description?: Maybe + /** The desired slug of the post */ + desiredSlug?: Maybe + /** If a user has edited the node within the past 15 seconds, this will return the user that last edited. Null if the edit lock doesn't exist or is greater than 15 seconds */ + editingLockedBy?: Maybe + /** The RSS enclosure for the object */ + enclosure?: Maybe + /** Connection between the ContentNode type and the EnqueuedScript type */ + enqueuedScripts?: Maybe + /** Connection between the ContentNode type and the EnqueuedStylesheet type */ + enqueuedStylesheets?: Maybe + /** The filesize in bytes of the resource */ + fileSize?: Maybe + /** The global unique identifier for this post. This currently matches the value stored in WP_Post->guid and the guid column in the "post_objects" database table. */ + guid?: Maybe + /** Whether the attachment object is password protected. */ + hasPassword?: Maybe + /** The globally unique identifier of the attachment object. */ + id: Scalars['ID']['output'] + /** Whether the node is a Comment */ + isComment: Scalars['Boolean']['output'] + /** Whether the node is a Content Node */ + isContentNode: Scalars['Boolean']['output'] + /** Whether the node represents the front page. */ + isFrontPage: Scalars['Boolean']['output'] + /** Whether the node represents the blog page. */ + isPostsPage: Scalars['Boolean']['output'] + /** Whether the object is a node in the preview state */ + isPreview?: Maybe + /** Whether the object is restricted from the current viewer */ + isRestricted?: Maybe + /** Whether the node is a Term */ + isTermNode: Scalars['Boolean']['output'] + /** Polylang language */ + language?: Maybe + /** The user that most recently edited the node */ + lastEditedBy?: Maybe + /** The permalink of the post */ + link?: Maybe + /** Details about the mediaItem */ + mediaDetails?: Maybe + /** + * The id field matches the WP_Post->ID field. + * @deprecated Deprecated in favor of the databaseId field + */ + mediaItemId: Scalars['Int']['output'] + /** Url of the mediaItem */ + mediaItemUrl?: Maybe + /** Type of resource */ + mediaType?: Maybe + /** The mime type of the mediaItem */ + mimeType?: Maybe + /** The local modified time for a post. If a post was recently updated the modified field will change to match the corresponding time. */ + modified?: Maybe + /** The GMT modified time for a post. If a post was recently updated the modified field will change to match the corresponding time in GMT. */ + modifiedGmt?: Maybe + /** The parent of the node. The parent object can be of various types */ + parent?: Maybe + /** Database id of the parent node */ + parentDatabaseId?: Maybe + /** The globally unique identifier of the parent node. */ + parentId?: Maybe + /** The password for the attachment object. */ + password?: Maybe + /** The database id of the preview node */ + previewRevisionDatabaseId?: Maybe + /** Whether the object is a node in the preview state */ + previewRevisionId?: Maybe + /** The Yoast SEO data of the ContentNode */ + seo?: Maybe + /** The sizes attribute value for an image. */ + sizes?: Maybe + /** The uri slug for the post. This is equivalent to the WP_Post->post_name field and the post_name column in the database for the "post_objects" table. */ + slug?: Maybe + /** Url of the mediaItem */ + sourceUrl?: Maybe + /** The srcset attribute specifies the URL of the image to use in different situations. It is a comma separated string of urls and their widths. */ + srcSet?: Maybe + /** The current status of the object */ + status?: Maybe + /** The template assigned to a node of content */ + template?: Maybe + /** The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made. */ + title?: Maybe + /** Get specific translation version of this object */ + translation?: Maybe + /** List all translated versions of this post */ + translations?: Maybe>> + /** The unique resource identifier path */ + uri?: Maybe + } /** The mediaItem type */ export type MediaItemAncestorsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The mediaItem type */ export type MediaItemCaptionArgs = { - format?: InputMaybe; -}; - + format?: InputMaybe +} /** The mediaItem type */ export type MediaItemChildrenArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The mediaItem type */ export type MediaItemCommentsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The mediaItem type */ export type MediaItemDescriptionArgs = { - format?: InputMaybe; -}; - + format?: InputMaybe +} /** The mediaItem type */ export type MediaItemEnqueuedScriptsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** The mediaItem type */ export type MediaItemEnqueuedStylesheetsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** The mediaItem type */ export type MediaItemFileSizeArgs = { - size?: InputMaybe; -}; - + size?: InputMaybe +} /** The mediaItem type */ export type MediaItemSizesArgs = { - size?: InputMaybe; -}; - + size?: InputMaybe +} /** The mediaItem type */ export type MediaItemSourceUrlArgs = { - size?: InputMaybe; -}; - + size?: InputMaybe +} /** The mediaItem type */ export type MediaItemSrcSetArgs = { - size?: InputMaybe; -}; - + size?: InputMaybe +} /** The mediaItem type */ export type MediaItemTitleArgs = { - format?: InputMaybe; -}; - + format?: InputMaybe +} /** The mediaItem type */ export type MediaItemTranslationArgs = { - language: LanguageCodeEnum; -}; + language: LanguageCodeEnum +} /** Connection to mediaItem Nodes */ export type MediaItemConnection = { /** A list of edges (relational context) between RootQuery and connected mediaItem Nodes */ - edges: Array; + edges: Array /** A list of connected mediaItem Nodes */ - nodes: Array; + nodes: Array /** Information about pagination in a connection. */ - pageInfo: MediaItemConnectionPageInfo; -}; + pageInfo: MediaItemConnectionPageInfo +} /** Edge between a Node and a connected mediaItem */ export type MediaItemConnectionEdge = { /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; + cursor?: Maybe /** The connected mediaItem Node */ - node: MediaItem; -}; + node: MediaItem +} /** Page Info on the connected MediaItemConnectionEdge */ export type MediaItemConnectionPageInfo = { /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; + endCursor?: Maybe /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; + hasNextPage: Scalars['Boolean']['output'] /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; + hasPreviousPage: Scalars['Boolean']['output'] /** Raw schema for page */ - seo?: Maybe; + seo?: Maybe /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; + startCursor?: Maybe +} /** The Type of Identifier used to fetch a single resource. Default is ID. */ export enum MediaItemIdType { @@ -6240,37 +6383,37 @@ export enum MediaItemIdType { /** Identify a media item by its source url */ SourceUrl = 'SOURCE_URL', /** Identify a resource by the URI. */ - Uri = 'URI' + Uri = 'URI', } /** Meta connected to a MediaItem */ export type MediaItemMeta = { - __typename?: 'MediaItemMeta'; + __typename?: 'MediaItemMeta' /** Aperture measurement of the media item. */ - aperture?: Maybe; + aperture?: Maybe /** Information about the camera used to create the media item. */ - camera?: Maybe; + camera?: Maybe /** The text string description associated with the media item. */ - caption?: Maybe; + caption?: Maybe /** Copyright information associated with the media item. */ - copyright?: Maybe; + copyright?: Maybe /** The date/time when the media was created. */ - createdTimestamp?: Maybe; + createdTimestamp?: Maybe /** The original creator of the media item. */ - credit?: Maybe; + credit?: Maybe /** The focal length value of the media item. */ - focalLength?: Maybe; + focalLength?: Maybe /** The ISO (International Organization for Standardization) value of the media item. */ - iso?: Maybe; + iso?: Maybe /** List of keywords used to describe or identfy the media item. */ - keywords?: Maybe>>; + keywords?: Maybe>> /** The vertical or horizontal aspect of the media item. */ - orientation?: Maybe; + orientation?: Maybe /** The shutter speed information of the media item. */ - shutterSpeed?: Maybe; + shutterSpeed?: Maybe /** A useful title for the media item. */ - title?: Maybe; -}; + title?: Maybe +} /** The size of the media item object. */ export enum MediaItemSizeEnum { @@ -6285,7 +6428,7 @@ export enum MediaItemSizeEnum { /** MediaItem with the 1536x1536 size */ '1536X1536' = '_1536X1536', /** MediaItem with the 2048x2048 size */ - '2048X2048' = '_2048X2048' + '2048X2048' = '_2048X2048', } /** The status of the media item object. */ @@ -6297,396 +6440,433 @@ export enum MediaItemStatusEnum { /** Objects with the private status */ Private = 'PRIVATE', /** Objects with the trash status */ - Trash = 'TRASH' + Trash = 'TRASH', } /** Connection between the MediaItem type and the Comment type */ -export type MediaItemToCommentConnection = CommentConnection & Connection & { - __typename?: 'MediaItemToCommentConnection'; - /** Edges for the MediaItemToCommentConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: MediaItemToCommentConnectionPageInfo; -}; +export type MediaItemToCommentConnection = CommentConnection & + Connection & { + __typename?: 'MediaItemToCommentConnection' + /** Edges for the MediaItemToCommentConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: MediaItemToCommentConnectionPageInfo + } /** An edge in a connection */ -export type MediaItemToCommentConnectionEdge = CommentConnectionEdge & Edge & { - __typename?: 'MediaItemToCommentConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: Comment; -}; +export type MediaItemToCommentConnectionEdge = CommentConnectionEdge & + Edge & { + __typename?: 'MediaItemToCommentConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: Comment + } /** Page Info on the "MediaItemToCommentConnection" */ -export type MediaItemToCommentConnectionPageInfo = CommentConnectionPageInfo & PageInfo & WpPageInfo & { - __typename?: 'MediaItemToCommentConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type MediaItemToCommentConnectionPageInfo = CommentConnectionPageInfo & + PageInfo & + WpPageInfo & { + __typename?: 'MediaItemToCommentConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the MediaItemToCommentConnection connection */ export type MediaItemToCommentConnectionWhereArgs = { /** Comment author email address. */ - authorEmail?: InputMaybe; + authorEmail?: InputMaybe /** Array of author IDs to include comments for. */ - authorIn?: InputMaybe>>; + authorIn?: InputMaybe>> /** Array of author IDs to exclude comments for. */ - authorNotIn?: InputMaybe>>; + authorNotIn?: InputMaybe>> /** Comment author URL. */ - authorUrl?: InputMaybe; + authorUrl?: InputMaybe /** Array of comment IDs to include. */ - commentIn?: InputMaybe>>; + commentIn?: InputMaybe>> /** Array of IDs of users whose unapproved comments will be returned by the query regardless of status. */ - commentNotIn?: InputMaybe>>; + commentNotIn?: InputMaybe>> /** Include comments of a given type. */ - commentType?: InputMaybe; + commentType?: InputMaybe /** Include comments from a given array of comment types. */ - commentTypeIn?: InputMaybe>>; + commentTypeIn?: InputMaybe>> /** Exclude comments from a given array of comment types. */ - commentTypeNotIn?: InputMaybe; + commentTypeNotIn?: InputMaybe /** Content object author ID to limit results by. */ - contentAuthor?: InputMaybe>>; + contentAuthor?: InputMaybe>> /** Array of author IDs to retrieve comments for. */ - contentAuthorIn?: InputMaybe>>; + contentAuthorIn?: InputMaybe>> /** Array of author IDs *not* to retrieve comments for. */ - contentAuthorNotIn?: InputMaybe>>; + contentAuthorNotIn?: InputMaybe>> /** Limit results to those affiliated with a given content object ID. */ - contentId?: InputMaybe; + contentId?: InputMaybe /** Array of content object IDs to include affiliated comments for. */ - contentIdIn?: InputMaybe>>; + contentIdIn?: InputMaybe>> /** Array of content object IDs to exclude affiliated comments for. */ - contentIdNotIn?: InputMaybe>>; + contentIdNotIn?: InputMaybe>> /** Content object name (i.e. slug ) to retrieve affiliated comments for. */ - contentName?: InputMaybe; + contentName?: InputMaybe /** Content Object parent ID to retrieve affiliated comments for. */ - contentParent?: InputMaybe; + contentParent?: InputMaybe /** Array of content object statuses to retrieve affiliated comments for. Pass 'any' to match any value. */ - contentStatus?: InputMaybe>>; + contentStatus?: InputMaybe>> /** Content object type or array of types to retrieve affiliated comments for. Pass 'any' to match any value. */ - contentType?: InputMaybe>>; + contentType?: InputMaybe>> /** Array of IDs or email addresses of users whose unapproved comments will be returned by the query regardless of $status. Default empty */ - includeUnapproved?: InputMaybe>>; + includeUnapproved?: InputMaybe>> /** Karma score to retrieve matching comments for. */ - karma?: InputMaybe; + karma?: InputMaybe /** The cardinality of the order of the connection */ - order?: InputMaybe; + order?: InputMaybe /** Field to order the comments by. */ - orderby?: InputMaybe; + orderby?: InputMaybe /** Parent ID of comment to retrieve children of. */ - parent?: InputMaybe; + parent?: InputMaybe /** Array of parent IDs of comments to retrieve children for. */ - parentIn?: InputMaybe>>; + parentIn?: InputMaybe>> /** Array of parent IDs of comments *not* to retrieve children for. */ - parentNotIn?: InputMaybe>>; + parentNotIn?: InputMaybe>> /** Search term(s) to retrieve matching comments for. */ - search?: InputMaybe; + search?: InputMaybe /** Comment status to limit results by. */ - status?: InputMaybe; + status?: InputMaybe /** Include comments for a specific user ID. */ - userId?: InputMaybe; -}; + userId?: InputMaybe +} /** Details of an available size for a media item */ export type MediaSize = { - __typename?: 'MediaSize'; + __typename?: 'MediaSize' /** The filename of the referenced size */ - file?: Maybe; + file?: Maybe /** The filesize of the resource */ - fileSize?: Maybe; + fileSize?: Maybe /** The height of the referenced size */ - height?: Maybe; + height?: Maybe /** The mime type of the referenced size */ - mimeType?: Maybe; + mimeType?: Maybe /** The referenced size name */ - name?: Maybe; + name?: Maybe /** The url of the referenced size */ - sourceUrl?: Maybe; + sourceUrl?: Maybe /** The width of the referenced size */ - width?: Maybe; -}; + width?: Maybe +} /** Menus are the containers for navigation items. Menus can be assigned to menu locations, which are typically registered by the active theme. */ -export type Menu = DatabaseIdentifier & Node & { - __typename?: 'Menu'; - /** The number of items in the menu */ - count?: Maybe; - /** The unique identifier stored in the database */ - databaseId: Scalars['Int']['output']; - /** The globally unique identifier of the nav menu object. */ - id: Scalars['ID']['output']; - /** Whether the object is restricted from the current viewer */ - isRestricted?: Maybe; - /** The locations a menu is assigned to */ - locations?: Maybe>>; - /** - * WP ID of the nav menu. - * @deprecated Deprecated in favor of the databaseId field - */ - menuId?: Maybe; - /** Connection between the Menu type and the MenuItem type */ - menuItems?: Maybe; - /** Display name of the menu. Equivalent to WP_Term->name. */ - name?: Maybe; - /** The url friendly name of the menu. Equivalent to WP_Term->slug */ - slug?: Maybe; -}; - +export type Menu = DatabaseIdentifier & + Node & { + __typename?: 'Menu' + /** The number of items in the menu */ + count?: Maybe + /** The unique identifier stored in the database */ + databaseId: Scalars['Int']['output'] + /** The globally unique identifier of the nav menu object. */ + id: Scalars['ID']['output'] + /** Whether the object is restricted from the current viewer */ + isRestricted?: Maybe + /** The locations a menu is assigned to */ + locations?: Maybe>> + /** + * WP ID of the nav menu. + * @deprecated Deprecated in favor of the databaseId field + */ + menuId?: Maybe + /** Connection between the Menu type and the MenuItem type */ + menuItems?: Maybe + /** Display name of the menu. Equivalent to WP_Term->name. */ + name?: Maybe + /** The url friendly name of the menu. Equivalent to WP_Term->slug */ + slug?: Maybe + } /** Menus are the containers for navigation items. Menus can be assigned to menu locations, which are typically registered by the active theme. */ export type MenuMenuItemsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** Connection to Menu Nodes */ export type MenuConnection = { /** A list of edges (relational context) between RootQuery and connected Menu Nodes */ - edges: Array; + edges: Array /** A list of connected Menu Nodes */ - nodes: Array; + nodes: Array /** Information about pagination in a connection. */ - pageInfo: MenuConnectionPageInfo; -}; + pageInfo: MenuConnectionPageInfo +} /** Edge between a Node and a connected Menu */ export type MenuConnectionEdge = { /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; + cursor?: Maybe /** The connected Menu Node */ - node: Menu; -}; + node: Menu +} /** Page Info on the connected MenuConnectionEdge */ export type MenuConnectionPageInfo = { /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; + endCursor?: Maybe /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; + hasNextPage: Scalars['Boolean']['output'] /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; + hasPreviousPage: Scalars['Boolean']['output'] /** Raw schema for page */ - seo?: Maybe; + seo?: Maybe /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; + startCursor?: Maybe +} /** Navigation menu items are the individual items assigned to a menu. These are rendered as the links in a navigation menu. */ -export type MenuItem = DatabaseIdentifier & Node & { - __typename?: 'MenuItem'; - /** Connection between the MenuItem type and the MenuItem type */ - childItems?: Maybe; - /** Connection from MenuItem to it's connected node */ - connectedNode?: Maybe; - /** - * The object connected to this menu item. - * @deprecated Deprecated in favor of the connectedNode field - */ - connectedObject?: Maybe; - /** Class attribute for the menu item link */ - cssClasses?: Maybe>>; - /** The unique identifier stored in the database */ - databaseId: Scalars['Int']['output']; - /** Description of the menu item. */ - description?: Maybe; - /** The globally unique identifier of the nav menu item object. */ - id: Scalars['ID']['output']; - /** Whether the object is restricted from the current viewer */ - isRestricted?: Maybe; - /** Label or title of the menu item. */ - label?: Maybe; - /** Link relationship (XFN) of the menu item. */ - linkRelationship?: Maybe; - /** The locations the menu item's Menu is assigned to */ - locations?: Maybe>>; - /** The Menu a MenuItem is part of */ - menu?: Maybe; - /** - * WP ID of the menu item. - * @deprecated Deprecated in favor of the databaseId field - */ - menuItemId?: Maybe; - /** Menu item order */ - order?: Maybe; - /** The database id of the parent menu item or null if it is the root */ - parentDatabaseId?: Maybe; - /** The globally unique identifier of the parent nav menu item object. */ - parentId?: Maybe; - /** Path for the resource. Relative path for internal resources. Absolute path for external resources. */ - path?: Maybe; - /** Target attribute for the menu item link. */ - target?: Maybe; - /** Title attribute for the menu item link */ - title?: Maybe; - /** The uri of the resource the menu item links to */ - uri?: Maybe; - /** URL or destination of the menu item. */ - url?: Maybe; -}; - +export type MenuItem = DatabaseIdentifier & + Node & { + __typename?: 'MenuItem' + /** Connection between the MenuItem type and the MenuItem type */ + childItems?: Maybe + /** Connection from MenuItem to it's connected node */ + connectedNode?: Maybe + /** + * The object connected to this menu item. + * @deprecated Deprecated in favor of the connectedNode field + */ + connectedObject?: Maybe + /** Class attribute for the menu item link */ + cssClasses?: Maybe>> + /** The unique identifier stored in the database */ + databaseId: Scalars['Int']['output'] + /** Description of the menu item. */ + description?: Maybe + /** The globally unique identifier of the nav menu item object. */ + id: Scalars['ID']['output'] + /** Whether the object is restricted from the current viewer */ + isRestricted?: Maybe + /** Label or title of the menu item. */ + label?: Maybe + /** Link relationship (XFN) of the menu item. */ + linkRelationship?: Maybe + /** The locations the menu item's Menu is assigned to */ + locations?: Maybe>> + /** The Menu a MenuItem is part of */ + menu?: Maybe + /** + * WP ID of the menu item. + * @deprecated Deprecated in favor of the databaseId field + */ + menuItemId?: Maybe + /** Menu item order */ + order?: Maybe + /** The database id of the parent menu item or null if it is the root */ + parentDatabaseId?: Maybe + /** The globally unique identifier of the parent nav menu item object. */ + parentId?: Maybe + /** Path for the resource. Relative path for internal resources. Absolute path for external resources. */ + path?: Maybe + /** Target attribute for the menu item link. */ + target?: Maybe + /** Title attribute for the menu item link */ + title?: Maybe + /** The uri of the resource the menu item links to */ + uri?: Maybe + /** URL or destination of the menu item. */ + url?: Maybe + } /** Navigation menu items are the individual items assigned to a menu. These are rendered as the links in a navigation menu. */ export type MenuItemChildItemsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** Connection to MenuItem Nodes */ export type MenuItemConnection = { /** A list of edges (relational context) between RootQuery and connected MenuItem Nodes */ - edges: Array; + edges: Array /** A list of connected MenuItem Nodes */ - nodes: Array; + nodes: Array /** Information about pagination in a connection. */ - pageInfo: MenuItemConnectionPageInfo; -}; + pageInfo: MenuItemConnectionPageInfo +} /** Edge between a Node and a connected MenuItem */ export type MenuItemConnectionEdge = { /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; + cursor?: Maybe /** The connected MenuItem Node */ - node: MenuItem; -}; + node: MenuItem +} /** Page Info on the connected MenuItemConnectionEdge */ export type MenuItemConnectionPageInfo = { /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; + endCursor?: Maybe /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; + hasNextPage: Scalars['Boolean']['output'] /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; + hasPreviousPage: Scalars['Boolean']['output'] /** Raw schema for page */ - seo?: Maybe; + seo?: Maybe /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; + startCursor?: Maybe +} /** Nodes that can be linked to as Menu Items */ export type MenuItemLinkable = { /** The unique identifier stored in the database */ - databaseId: Scalars['Int']['output']; + databaseId: Scalars['Int']['output'] /** The globally unique ID for the object */ - id: Scalars['ID']['output']; + id: Scalars['ID']['output'] /** Whether the node is a Comment */ - isComment: Scalars['Boolean']['output']; + isComment: Scalars['Boolean']['output'] /** Whether the node is a Content Node */ - isContentNode: Scalars['Boolean']['output']; + isContentNode: Scalars['Boolean']['output'] /** Whether the node represents the front page. */ - isFrontPage: Scalars['Boolean']['output']; + isFrontPage: Scalars['Boolean']['output'] /** Whether the node represents the blog page. */ - isPostsPage: Scalars['Boolean']['output']; + isPostsPage: Scalars['Boolean']['output'] /** Whether the node is a Term */ - isTermNode: Scalars['Boolean']['output']; + isTermNode: Scalars['Boolean']['output'] /** The unique resource identifier path */ - uri?: Maybe; -}; + uri?: Maybe +} /** Edge between a Node and a connected MenuItemLinkable */ export type MenuItemLinkableConnectionEdge = { /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; + cursor?: Maybe /** The connected MenuItemLinkable Node */ - node: MenuItemLinkable; -}; + node: MenuItemLinkable +} /** The Type of Identifier used to fetch a single node. Default is "ID". To be used along with the "id" field. */ export enum MenuItemNodeIdTypeEnum { /** Identify a resource by the Database ID. */ DatabaseId = 'DATABASE_ID', /** Identify a resource by the (hashed) Global ID. */ - Id = 'ID' + Id = 'ID', } /** Deprecated in favor of MenuItemLinkeable Interface */ -export type MenuItemObjectUnion = AboutItem | Category | CommonFragment | ConfidentialityPolicy | Contact | ContactItem | FeedbackItem | FooterItem | Fragment | HeroItem | Main | Messenger | NavigationItem | NotFound | Page | Post | PrivacyPolicyItem | Recruit | RecruitList | Review | ReviewList | Skill | SkillCategory | SocialNetwork | Tag; +export type MenuItemObjectUnion = + | AboutItem + | Category + | CommonFragment + | ConfidentialityPolicy + | Contact + | ContactItem + | FeedbackItem + | FooterItem + | Fragment + | HeroItem + | Main + | Messenger + | NavigationItem + | NotFound + | Page + | Post + | PrivacyPolicyItem + | Recruit + | RecruitList + | Review + | ReviewList + | Skill + | SkillCategory + | SocialNetwork + | Tag /** Connection between the MenuItem type and the Menu type */ -export type MenuItemToMenuConnectionEdge = Edge & MenuConnectionEdge & OneToOneConnection & { - __typename?: 'MenuItemToMenuConnectionEdge'; - /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; - /** The node of the connection, without the edges */ - node: Menu; -}; +export type MenuItemToMenuConnectionEdge = Edge & + MenuConnectionEdge & + OneToOneConnection & { + __typename?: 'MenuItemToMenuConnectionEdge' + /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ + cursor?: Maybe + /** The node of the connection, without the edges */ + node: Menu + } /** Connection between the MenuItem type and the MenuItem type */ -export type MenuItemToMenuItemConnection = Connection & MenuItemConnection & { - __typename?: 'MenuItemToMenuItemConnection'; - /** Edges for the MenuItemToMenuItemConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: MenuItemToMenuItemConnectionPageInfo; -}; +export type MenuItemToMenuItemConnection = Connection & + MenuItemConnection & { + __typename?: 'MenuItemToMenuItemConnection' + /** Edges for the MenuItemToMenuItemConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: MenuItemToMenuItemConnectionPageInfo + } /** An edge in a connection */ -export type MenuItemToMenuItemConnectionEdge = Edge & MenuItemConnectionEdge & { - __typename?: 'MenuItemToMenuItemConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: MenuItem; -}; +export type MenuItemToMenuItemConnectionEdge = Edge & + MenuItemConnectionEdge & { + __typename?: 'MenuItemToMenuItemConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: MenuItem + } /** Page Info on the "MenuItemToMenuItemConnection" */ -export type MenuItemToMenuItemConnectionPageInfo = MenuItemConnectionPageInfo & PageInfo & WpPageInfo & { - __typename?: 'MenuItemToMenuItemConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type MenuItemToMenuItemConnectionPageInfo = MenuItemConnectionPageInfo & + PageInfo & + WpPageInfo & { + __typename?: 'MenuItemToMenuItemConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the MenuItemToMenuItemConnection connection */ export type MenuItemToMenuItemConnectionWhereArgs = { /** The database ID of the object */ - id?: InputMaybe; + id?: InputMaybe /** The menu location for the menu being queried */ - location?: InputMaybe; + location?: InputMaybe /** The database ID of the parent menu object */ - parentDatabaseId?: InputMaybe; + parentDatabaseId?: InputMaybe /** The ID of the parent menu object */ - parentId?: InputMaybe; -}; + parentId?: InputMaybe +} /** Connection between the MenuItem type and the MenuItemLinkable type */ -export type MenuItemToMenuItemLinkableConnectionEdge = Edge & MenuItemLinkableConnectionEdge & OneToOneConnection & { - __typename?: 'MenuItemToMenuItemLinkableConnectionEdge'; - /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; - /** The node of the connection, without the edges */ - node: MenuItemLinkable; -}; +export type MenuItemToMenuItemLinkableConnectionEdge = Edge & + MenuItemLinkableConnectionEdge & + OneToOneConnection & { + __typename?: 'MenuItemToMenuItemLinkableConnectionEdge' + /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ + cursor?: Maybe + /** The node of the connection, without the edges */ + node: MenuItemLinkable + } /** Registered menu locations */ export enum MenuLocationEnum { /** Empty menu location */ - Empty = 'EMPTY' + Empty = 'EMPTY', } /** The Type of Identifier used to fetch a single node. Default is "ID". To be used along with the "id" field. */ @@ -6700,203 +6880,212 @@ export enum MenuNodeIdTypeEnum { /** Identify a menu node by its name */ Name = 'NAME', /** Identify a menu node by its slug */ - Slug = 'SLUG' + Slug = 'SLUG', } /** Connection between the Menu type and the MenuItem type */ -export type MenuToMenuItemConnection = Connection & MenuItemConnection & { - __typename?: 'MenuToMenuItemConnection'; - /** Edges for the MenuToMenuItemConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: MenuToMenuItemConnectionPageInfo; -}; +export type MenuToMenuItemConnection = Connection & + MenuItemConnection & { + __typename?: 'MenuToMenuItemConnection' + /** Edges for the MenuToMenuItemConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: MenuToMenuItemConnectionPageInfo + } /** An edge in a connection */ -export type MenuToMenuItemConnectionEdge = Edge & MenuItemConnectionEdge & { - __typename?: 'MenuToMenuItemConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: MenuItem; -}; +export type MenuToMenuItemConnectionEdge = Edge & + MenuItemConnectionEdge & { + __typename?: 'MenuToMenuItemConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: MenuItem + } /** Page Info on the "MenuToMenuItemConnection" */ -export type MenuToMenuItemConnectionPageInfo = MenuItemConnectionPageInfo & PageInfo & WpPageInfo & { - __typename?: 'MenuToMenuItemConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type MenuToMenuItemConnectionPageInfo = MenuItemConnectionPageInfo & + PageInfo & + WpPageInfo & { + __typename?: 'MenuToMenuItemConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the MenuToMenuItemConnection connection */ export type MenuToMenuItemConnectionWhereArgs = { /** The database ID of the object */ - id?: InputMaybe; + id?: InputMaybe /** The menu location for the menu being queried */ - location?: InputMaybe; + location?: InputMaybe /** The database ID of the parent menu object */ - parentDatabaseId?: InputMaybe; + parentDatabaseId?: InputMaybe /** The ID of the parent menu object */ - parentId?: InputMaybe; -}; + parentId?: InputMaybe +} /** The Messenger type */ -export type Messenger = ContentNode & DatabaseIdentifier & MenuItemLinkable & Node & NodeWithContentEditor & NodeWithFeaturedImage & NodeWithTemplate & NodeWithTitle & Previewable & UniformResourceIdentifiable & { - __typename?: 'Messenger'; - /** The content of the post. */ - content?: Maybe; - /** Connection between the ContentNode type and the ContentType type */ - contentType?: Maybe; - /** The name of the Content Type the node belongs to */ - contentTypeName: Scalars['String']['output']; - /** The unique identifier stored in the database */ - databaseId: Scalars['Int']['output']; - /** Post publishing date. */ - date?: Maybe; - /** The publishing date set in GMT. */ - dateGmt?: Maybe; - /** The desired slug of the post */ - desiredSlug?: Maybe; - /** If a user has edited the node within the past 15 seconds, this will return the user that last edited. Null if the edit lock doesn't exist or is greater than 15 seconds */ - editingLockedBy?: Maybe; - /** The RSS enclosure for the object */ - enclosure?: Maybe; - /** Connection between the ContentNode type and the EnqueuedScript type */ - enqueuedScripts?: Maybe; - /** Connection between the ContentNode type and the EnqueuedStylesheet type */ - enqueuedStylesheets?: Maybe; - /** Connection between the NodeWithFeaturedImage type and the MediaItem type */ - featuredImage?: Maybe; - /** The database identifier for the featured image node assigned to the content node */ - featuredImageDatabaseId?: Maybe; - /** Globally unique ID of the featured image assigned to the node */ - featuredImageId?: Maybe; - /** The global unique identifier for this post. This currently matches the value stored in WP_Post->guid and the guid column in the "post_objects" database table. */ - guid?: Maybe; - /** Whether the messengers object is password protected. */ - hasPassword?: Maybe; - /** The globally unique identifier of the messengers object. */ - id: Scalars['ID']['output']; - /** Whether the node is a Comment */ - isComment: Scalars['Boolean']['output']; - /** Whether the node is a Content Node */ - isContentNode: Scalars['Boolean']['output']; - /** Whether the node represents the front page. */ - isFrontPage: Scalars['Boolean']['output']; - /** Whether the node represents the blog page. */ - isPostsPage: Scalars['Boolean']['output']; - /** Whether the object is a node in the preview state */ - isPreview?: Maybe; - /** Whether the object is restricted from the current viewer */ - isRestricted?: Maybe; - /** Whether the node is a Term */ - isTermNode: Scalars['Boolean']['output']; - /** The user that most recently edited the node */ - lastEditedBy?: Maybe; - /** The permalink of the post */ - link?: Maybe; - /** - * The id field matches the WP_Post->ID field. - * @deprecated Deprecated in favor of the databaseId field - */ - messengerId: Scalars['Int']['output']; - /** The local modified time for a post. If a post was recently updated the modified field will change to match the corresponding time. */ - modified?: Maybe; - /** The GMT modified time for a post. If a post was recently updated the modified field will change to match the corresponding time in GMT. */ - modifiedGmt?: Maybe; - /** The password for the messengers object. */ - password?: Maybe; - /** Connection between the Messenger type and the Messenger type */ - preview?: Maybe; - /** The database id of the preview node */ - previewRevisionDatabaseId?: Maybe; - /** Whether the object is a node in the preview state */ - previewRevisionId?: Maybe; - /** The Yoast SEO data of the ContentNode */ - seo?: Maybe; - /** The uri slug for the post. This is equivalent to the WP_Post->post_name field and the post_name column in the database for the "post_objects" table. */ - slug?: Maybe; - /** The current status of the object */ - status?: Maybe; - /** The template assigned to the node */ - template?: Maybe; - /** The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made. */ - title?: Maybe; - /** The unique resource identifier path */ - uri?: Maybe; -}; - +export type Messenger = ContentNode & + DatabaseIdentifier & + MenuItemLinkable & + Node & + NodeWithContentEditor & + NodeWithFeaturedImage & + NodeWithTemplate & + NodeWithTitle & + Previewable & + UniformResourceIdentifiable & { + __typename?: 'Messenger' + /** The content of the post. */ + content?: Maybe + /** Connection between the ContentNode type and the ContentType type */ + contentType?: Maybe + /** The name of the Content Type the node belongs to */ + contentTypeName: Scalars['String']['output'] + /** The unique identifier stored in the database */ + databaseId: Scalars['Int']['output'] + /** Post publishing date. */ + date?: Maybe + /** The publishing date set in GMT. */ + dateGmt?: Maybe + /** The desired slug of the post */ + desiredSlug?: Maybe + /** If a user has edited the node within the past 15 seconds, this will return the user that last edited. Null if the edit lock doesn't exist or is greater than 15 seconds */ + editingLockedBy?: Maybe + /** The RSS enclosure for the object */ + enclosure?: Maybe + /** Connection between the ContentNode type and the EnqueuedScript type */ + enqueuedScripts?: Maybe + /** Connection between the ContentNode type and the EnqueuedStylesheet type */ + enqueuedStylesheets?: Maybe + /** Connection between the NodeWithFeaturedImage type and the MediaItem type */ + featuredImage?: Maybe + /** The database identifier for the featured image node assigned to the content node */ + featuredImageDatabaseId?: Maybe + /** Globally unique ID of the featured image assigned to the node */ + featuredImageId?: Maybe + /** The global unique identifier for this post. This currently matches the value stored in WP_Post->guid and the guid column in the "post_objects" database table. */ + guid?: Maybe + /** Whether the messengers object is password protected. */ + hasPassword?: Maybe + /** The globally unique identifier of the messengers object. */ + id: Scalars['ID']['output'] + /** Whether the node is a Comment */ + isComment: Scalars['Boolean']['output'] + /** Whether the node is a Content Node */ + isContentNode: Scalars['Boolean']['output'] + /** Whether the node represents the front page. */ + isFrontPage: Scalars['Boolean']['output'] + /** Whether the node represents the blog page. */ + isPostsPage: Scalars['Boolean']['output'] + /** Whether the object is a node in the preview state */ + isPreview?: Maybe + /** Whether the object is restricted from the current viewer */ + isRestricted?: Maybe + /** Whether the node is a Term */ + isTermNode: Scalars['Boolean']['output'] + /** The user that most recently edited the node */ + lastEditedBy?: Maybe + /** The permalink of the post */ + link?: Maybe + /** + * The id field matches the WP_Post->ID field. + * @deprecated Deprecated in favor of the databaseId field + */ + messengerId: Scalars['Int']['output'] + /** The local modified time for a post. If a post was recently updated the modified field will change to match the corresponding time. */ + modified?: Maybe + /** The GMT modified time for a post. If a post was recently updated the modified field will change to match the corresponding time in GMT. */ + modifiedGmt?: Maybe + /** The password for the messengers object. */ + password?: Maybe + /** Connection between the Messenger type and the Messenger type */ + preview?: Maybe + /** The database id of the preview node */ + previewRevisionDatabaseId?: Maybe + /** Whether the object is a node in the preview state */ + previewRevisionId?: Maybe + /** The Yoast SEO data of the ContentNode */ + seo?: Maybe + /** The uri slug for the post. This is equivalent to the WP_Post->post_name field and the post_name column in the database for the "post_objects" table. */ + slug?: Maybe + /** The current status of the object */ + status?: Maybe + /** The template assigned to the node */ + template?: Maybe + /** The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made. */ + title?: Maybe + /** The unique resource identifier path */ + uri?: Maybe + } /** The Messenger type */ export type MessengerContentArgs = { - format?: InputMaybe; -}; - + format?: InputMaybe +} /** The Messenger type */ export type MessengerEnqueuedScriptsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** The Messenger type */ export type MessengerEnqueuedStylesheetsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** The Messenger type */ export type MessengerTitleArgs = { - format?: InputMaybe; -}; + format?: InputMaybe +} /** Connection to Messenger Nodes */ export type MessengerConnection = { /** A list of edges (relational context) between RootQuery and connected Messenger Nodes */ - edges: Array; + edges: Array /** A list of connected Messenger Nodes */ - nodes: Array; + nodes: Array /** Information about pagination in a connection. */ - pageInfo: MessengerConnectionPageInfo; -}; + pageInfo: MessengerConnectionPageInfo +} /** Edge between a Node and a connected Messenger */ export type MessengerConnectionEdge = { /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; + cursor?: Maybe /** The connected Messenger Node */ - node: Messenger; -}; + node: Messenger +} /** Page Info on the connected MessengerConnectionEdge */ export type MessengerConnectionPageInfo = { /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; + endCursor?: Maybe /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; + hasNextPage: Scalars['Boolean']['output'] /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; + hasPreviousPage: Scalars['Boolean']['output'] /** Raw schema for page */ - seo?: Maybe; + seo?: Maybe /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; + startCursor?: Maybe +} /** The Type of Identifier used to fetch a single resource. Default is ID. */ export enum MessengerIdType { @@ -6907,17 +7096,19 @@ export enum MessengerIdType { /** Identify a resource by the slug. Available to non-hierarchcial Types where the slug is a unique identifier. */ Slug = 'SLUG', /** Identify a resource by the URI. */ - Uri = 'URI' + Uri = 'URI', } /** Connection between the Messenger type and the Messenger type */ -export type MessengerToPreviewConnectionEdge = Edge & MessengerConnectionEdge & OneToOneConnection & { - __typename?: 'MessengerToPreviewConnectionEdge'; - /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; - /** The node of the connection, without the edges */ - node: Messenger; -}; +export type MessengerToPreviewConnectionEdge = Edge & + MessengerConnectionEdge & + OneToOneConnection & { + __typename?: 'MessengerToPreviewConnectionEdge' + /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ + cursor?: Maybe + /** The node of the connection, without the edges */ + node: Messenger + } /** The MimeType of the object */ export enum MimeTypeEnum { @@ -7102,170 +7293,175 @@ export enum MimeTypeEnum { /** video/x-ms-wmv mime type. */ VideoXMsWmv = 'VIDEO_X_MS_WMV', /** video/x-ms-wmx mime type. */ - VideoXMsWmx = 'VIDEO_X_MS_WMX' + VideoXMsWmx = 'VIDEO_X_MS_WMX', } /** The NavigationItem type */ -export type NavigationItem = ContentNode & DatabaseIdentifier & MenuItemLinkable & Node & NodeWithContentEditor & NodeWithFeaturedImage & NodeWithTemplate & NodeWithTitle & Previewable & UniformResourceIdentifiable & WithAcfContentAddons & { - __typename?: 'NavigationItem'; - /** The content of the post. */ - content?: Maybe; - /** Fields of the ContentAddons ACF Field Group */ - contentAddons?: Maybe; - /** Connection between the ContentNode type and the ContentType type */ - contentType?: Maybe; - /** The name of the Content Type the node belongs to */ - contentTypeName: Scalars['String']['output']; - /** The unique identifier stored in the database */ - databaseId: Scalars['Int']['output']; - /** Post publishing date. */ - date?: Maybe; - /** The publishing date set in GMT. */ - dateGmt?: Maybe; - /** The desired slug of the post */ - desiredSlug?: Maybe; - /** If a user has edited the node within the past 15 seconds, this will return the user that last edited. Null if the edit lock doesn't exist or is greater than 15 seconds */ - editingLockedBy?: Maybe; - /** The RSS enclosure for the object */ - enclosure?: Maybe; - /** Connection between the ContentNode type and the EnqueuedScript type */ - enqueuedScripts?: Maybe; - /** Connection between the ContentNode type and the EnqueuedStylesheet type */ - enqueuedStylesheets?: Maybe; - /** Connection between the NodeWithFeaturedImage type and the MediaItem type */ - featuredImage?: Maybe; - /** The database identifier for the featured image node assigned to the content node */ - featuredImageDatabaseId?: Maybe; - /** Globally unique ID of the featured image assigned to the node */ - featuredImageId?: Maybe; - /** The global unique identifier for this post. This currently matches the value stored in WP_Post->guid and the guid column in the "post_objects" database table. */ - guid?: Maybe; - /** Whether the navigation object is password protected. */ - hasPassword?: Maybe; - /** The globally unique identifier of the navigation object. */ - id: Scalars['ID']['output']; - /** Whether the node is a Comment */ - isComment: Scalars['Boolean']['output']; - /** Whether the node is a Content Node */ - isContentNode: Scalars['Boolean']['output']; - /** Whether the node represents the front page. */ - isFrontPage: Scalars['Boolean']['output']; - /** Whether the node represents the blog page. */ - isPostsPage: Scalars['Boolean']['output']; - /** Whether the object is a node in the preview state */ - isPreview?: Maybe; - /** Whether the object is restricted from the current viewer */ - isRestricted?: Maybe; - /** Whether the node is a Term */ - isTermNode: Scalars['Boolean']['output']; - /** Polylang language */ - language?: Maybe; - /** The user that most recently edited the node */ - lastEditedBy?: Maybe; - /** The permalink of the post */ - link?: Maybe; - /** The local modified time for a post. If a post was recently updated the modified field will change to match the corresponding time. */ - modified?: Maybe; - /** The GMT modified time for a post. If a post was recently updated the modified field will change to match the corresponding time in GMT. */ - modifiedGmt?: Maybe; - /** - * The id field matches the WP_Post->ID field. - * @deprecated Deprecated in favor of the databaseId field - */ - navigationItemId: Scalars['Int']['output']; - /** The password for the navigation object. */ - password?: Maybe; - /** Connection between the NavigationItem type and the NavigationItem type */ - preview?: Maybe; - /** The database id of the preview node */ - previewRevisionDatabaseId?: Maybe; - /** Whether the object is a node in the preview state */ - previewRevisionId?: Maybe; - /** The Yoast SEO data of the ContentNode */ - seo?: Maybe; - /** The uri slug for the post. This is equivalent to the WP_Post->post_name field and the post_name column in the database for the "post_objects" table. */ - slug?: Maybe; - /** The current status of the object */ - status?: Maybe; - /** The template assigned to the node */ - template?: Maybe; - /** The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made. */ - title?: Maybe; - /** Get specific translation version of this object */ - translation?: Maybe; - /** List all translated versions of this post */ - translations?: Maybe>>; - /** The unique resource identifier path */ - uri?: Maybe; -}; - +export type NavigationItem = ContentNode & + DatabaseIdentifier & + MenuItemLinkable & + Node & + NodeWithContentEditor & + NodeWithFeaturedImage & + NodeWithTemplate & + NodeWithTitle & + Previewable & + UniformResourceIdentifiable & + WithAcfContentAddons & { + __typename?: 'NavigationItem' + /** The content of the post. */ + content?: Maybe + /** Fields of the ContentAddons ACF Field Group */ + contentAddons?: Maybe + /** Connection between the ContentNode type and the ContentType type */ + contentType?: Maybe + /** The name of the Content Type the node belongs to */ + contentTypeName: Scalars['String']['output'] + /** The unique identifier stored in the database */ + databaseId: Scalars['Int']['output'] + /** Post publishing date. */ + date?: Maybe + /** The publishing date set in GMT. */ + dateGmt?: Maybe + /** The desired slug of the post */ + desiredSlug?: Maybe + /** If a user has edited the node within the past 15 seconds, this will return the user that last edited. Null if the edit lock doesn't exist or is greater than 15 seconds */ + editingLockedBy?: Maybe + /** The RSS enclosure for the object */ + enclosure?: Maybe + /** Connection between the ContentNode type and the EnqueuedScript type */ + enqueuedScripts?: Maybe + /** Connection between the ContentNode type and the EnqueuedStylesheet type */ + enqueuedStylesheets?: Maybe + /** Connection between the NodeWithFeaturedImage type and the MediaItem type */ + featuredImage?: Maybe + /** The database identifier for the featured image node assigned to the content node */ + featuredImageDatabaseId?: Maybe + /** Globally unique ID of the featured image assigned to the node */ + featuredImageId?: Maybe + /** The global unique identifier for this post. This currently matches the value stored in WP_Post->guid and the guid column in the "post_objects" database table. */ + guid?: Maybe + /** Whether the navigation object is password protected. */ + hasPassword?: Maybe + /** The globally unique identifier of the navigation object. */ + id: Scalars['ID']['output'] + /** Whether the node is a Comment */ + isComment: Scalars['Boolean']['output'] + /** Whether the node is a Content Node */ + isContentNode: Scalars['Boolean']['output'] + /** Whether the node represents the front page. */ + isFrontPage: Scalars['Boolean']['output'] + /** Whether the node represents the blog page. */ + isPostsPage: Scalars['Boolean']['output'] + /** Whether the object is a node in the preview state */ + isPreview?: Maybe + /** Whether the object is restricted from the current viewer */ + isRestricted?: Maybe + /** Whether the node is a Term */ + isTermNode: Scalars['Boolean']['output'] + /** Polylang language */ + language?: Maybe + /** The user that most recently edited the node */ + lastEditedBy?: Maybe + /** The permalink of the post */ + link?: Maybe + /** The local modified time for a post. If a post was recently updated the modified field will change to match the corresponding time. */ + modified?: Maybe + /** The GMT modified time for a post. If a post was recently updated the modified field will change to match the corresponding time in GMT. */ + modifiedGmt?: Maybe + /** + * The id field matches the WP_Post->ID field. + * @deprecated Deprecated in favor of the databaseId field + */ + navigationItemId: Scalars['Int']['output'] + /** The password for the navigation object. */ + password?: Maybe + /** Connection between the NavigationItem type and the NavigationItem type */ + preview?: Maybe + /** The database id of the preview node */ + previewRevisionDatabaseId?: Maybe + /** Whether the object is a node in the preview state */ + previewRevisionId?: Maybe + /** The Yoast SEO data of the ContentNode */ + seo?: Maybe + /** The uri slug for the post. This is equivalent to the WP_Post->post_name field and the post_name column in the database for the "post_objects" table. */ + slug?: Maybe + /** The current status of the object */ + status?: Maybe + /** The template assigned to the node */ + template?: Maybe + /** The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made. */ + title?: Maybe + /** Get specific translation version of this object */ + translation?: Maybe + /** List all translated versions of this post */ + translations?: Maybe>> + /** The unique resource identifier path */ + uri?: Maybe + } /** The NavigationItem type */ export type NavigationItemContentArgs = { - format?: InputMaybe; -}; - + format?: InputMaybe +} /** The NavigationItem type */ export type NavigationItemEnqueuedScriptsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** The NavigationItem type */ export type NavigationItemEnqueuedStylesheetsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** The NavigationItem type */ export type NavigationItemTitleArgs = { - format?: InputMaybe; -}; - + format?: InputMaybe +} /** The NavigationItem type */ export type NavigationItemTranslationArgs = { - language: LanguageCodeEnum; -}; + language: LanguageCodeEnum +} /** Connection to NavigationItem Nodes */ export type NavigationItemConnection = { /** A list of edges (relational context) between RootQuery and connected NavigationItem Nodes */ - edges: Array; + edges: Array /** A list of connected NavigationItem Nodes */ - nodes: Array; + nodes: Array /** Information about pagination in a connection. */ - pageInfo: NavigationItemConnectionPageInfo; -}; + pageInfo: NavigationItemConnectionPageInfo +} /** Edge between a Node and a connected NavigationItem */ export type NavigationItemConnectionEdge = { /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; + cursor?: Maybe /** The connected NavigationItem Node */ - node: NavigationItem; -}; + node: NavigationItem +} /** Page Info on the connected NavigationItemConnectionEdge */ export type NavigationItemConnectionPageInfo = { /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; + endCursor?: Maybe /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; + hasNextPage: Scalars['Boolean']['output'] /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; + hasPreviousPage: Scalars['Boolean']['output'] /** Raw schema for page */ - seo?: Maybe; + seo?: Maybe /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; + startCursor?: Maybe +} /** The Type of Identifier used to fetch a single resource. Default is ID. */ export enum NavigationItemIdType { @@ -7276,314 +7472,324 @@ export enum NavigationItemIdType { /** Identify a resource by the slug. Available to non-hierarchcial Types where the slug is a unique identifier. */ Slug = 'SLUG', /** Identify a resource by the URI. */ - Uri = 'URI' + Uri = 'URI', } /** Connection between the NavigationItem type and the NavigationItem type */ -export type NavigationItemToPreviewConnectionEdge = Edge & NavigationItemConnectionEdge & OneToOneConnection & { - __typename?: 'NavigationItemToPreviewConnectionEdge'; - /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; - /** The node of the connection, without the edges */ - node: NavigationItem; -}; +export type NavigationItemToPreviewConnectionEdge = Edge & + NavigationItemConnectionEdge & + OneToOneConnection & { + __typename?: 'NavigationItemToPreviewConnectionEdge' + /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ + cursor?: Maybe + /** The node of the connection, without the edges */ + node: NavigationItem + } /** An object with an ID */ export type Node = { /** The globally unique ID for the object */ - id: Scalars['ID']['output']; -}; + id: Scalars['ID']['output'] +} /** A node that can have an author assigned to it */ export type NodeWithAuthor = { /** Connection between the NodeWithAuthor type and the User type */ - author?: Maybe; + author?: Maybe /** The database identifier of the author of the node */ - authorDatabaseId?: Maybe; + authorDatabaseId?: Maybe /** The globally unique identifier of the author of the node */ - authorId?: Maybe; + authorId?: Maybe /** The globally unique ID for the object */ - id: Scalars['ID']['output']; -}; + id: Scalars['ID']['output'] +} /** Connection between the NodeWithAuthor type and the User type */ -export type NodeWithAuthorToUserConnectionEdge = Edge & OneToOneConnection & UserConnectionEdge & { - __typename?: 'NodeWithAuthorToUserConnectionEdge'; - /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; - /** The node of the connection, without the edges */ - node: User; -}; +export type NodeWithAuthorToUserConnectionEdge = Edge & + OneToOneConnection & + UserConnectionEdge & { + __typename?: 'NodeWithAuthorToUserConnectionEdge' + /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ + cursor?: Maybe + /** The node of the connection, without the edges */ + node: User + } /** A node that can have comments associated with it */ export type NodeWithComments = { /** The number of comments. Even though WPGraphQL denotes this field as an integer, in WordPress this field should be saved as a numeric string for compatibility. */ - commentCount?: Maybe; + commentCount?: Maybe /** Whether the comments are open or closed for this particular post. */ - commentStatus?: Maybe; + commentStatus?: Maybe /** The globally unique ID for the object */ - id: Scalars['ID']['output']; -}; + id: Scalars['ID']['output'] +} /** A node that supports the content editor */ export type NodeWithContentEditor = { /** The content of the post. */ - content?: Maybe; + content?: Maybe /** The globally unique ID for the object */ - id: Scalars['ID']['output']; -}; - + id: Scalars['ID']['output'] +} /** A node that supports the content editor */ export type NodeWithContentEditorContentArgs = { - format?: InputMaybe; -}; + format?: InputMaybe +} /** A node that can have an excerpt */ export type NodeWithExcerpt = { /** The excerpt of the post. */ - excerpt?: Maybe; + excerpt?: Maybe /** The globally unique ID for the object */ - id: Scalars['ID']['output']; -}; - + id: Scalars['ID']['output'] +} /** A node that can have an excerpt */ export type NodeWithExcerptExcerptArgs = { - format?: InputMaybe; -}; + format?: InputMaybe +} /** A node that can have a featured image set */ export type NodeWithFeaturedImage = { /** Connection between the NodeWithFeaturedImage type and the MediaItem type */ - featuredImage?: Maybe; + featuredImage?: Maybe /** The database identifier for the featured image node assigned to the content node */ - featuredImageDatabaseId?: Maybe; + featuredImageDatabaseId?: Maybe /** Globally unique ID of the featured image assigned to the node */ - featuredImageId?: Maybe; + featuredImageId?: Maybe /** The globally unique ID for the object */ - id: Scalars['ID']['output']; -}; + id: Scalars['ID']['output'] +} /** Connection between the NodeWithFeaturedImage type and the MediaItem type */ -export type NodeWithFeaturedImageToMediaItemConnectionEdge = Edge & MediaItemConnectionEdge & OneToOneConnection & { - __typename?: 'NodeWithFeaturedImageToMediaItemConnectionEdge'; - /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; - /** The node of the connection, without the edges */ - node: MediaItem; -}; +export type NodeWithFeaturedImageToMediaItemConnectionEdge = Edge & + MediaItemConnectionEdge & + OneToOneConnection & { + __typename?: 'NodeWithFeaturedImageToMediaItemConnectionEdge' + /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ + cursor?: Maybe + /** The node of the connection, without the edges */ + node: MediaItem + } /** A node that can have page attributes */ export type NodeWithPageAttributes = { /** The globally unique ID for the object */ - id: Scalars['ID']['output']; + id: Scalars['ID']['output'] /** A field used for ordering posts. This is typically used with nav menu items or for special ordering of hierarchical content types. */ - menuOrder?: Maybe; -}; + menuOrder?: Maybe +} /** A node that can have revisions */ export type NodeWithRevisions = { /** The globally unique ID for the object */ - id: Scalars['ID']['output']; + id: Scalars['ID']['output'] /** True if the node is a revision of another node */ - isRevision?: Maybe; + isRevision?: Maybe /** If the current node is a revision, this field exposes the node this is a revision of. Returns null if the node is not a revision of another node. */ - revisionOf?: Maybe; -}; + revisionOf?: Maybe +} /** Connection between the NodeWithRevisions type and the ContentNode type */ -export type NodeWithRevisionsToContentNodeConnectionEdge = ContentNodeConnectionEdge & Edge & OneToOneConnection & { - __typename?: 'NodeWithRevisionsToContentNodeConnectionEdge'; - /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; - /** The node of the connection, without the edges */ - node: ContentNode; -}; +export type NodeWithRevisionsToContentNodeConnectionEdge = ContentNodeConnectionEdge & + Edge & + OneToOneConnection & { + __typename?: 'NodeWithRevisionsToContentNodeConnectionEdge' + /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ + cursor?: Maybe + /** The node of the connection, without the edges */ + node: ContentNode + } /** A node that can have a template associated with it */ export type NodeWithTemplate = { /** The globally unique ID for the object */ - id: Scalars['ID']['output']; + id: Scalars['ID']['output'] /** The template assigned to the node */ - template?: Maybe; -}; + template?: Maybe +} /** A node that NodeWith a title */ export type NodeWithTitle = { /** The globally unique ID for the object */ - id: Scalars['ID']['output']; + id: Scalars['ID']['output'] /** The Yoast SEO data of the ContentNode */ - seo?: Maybe; + seo?: Maybe /** The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made. */ - title?: Maybe; -}; - + title?: Maybe +} /** A node that NodeWith a title */ export type NodeWithTitleTitleArgs = { - format?: InputMaybe; -}; + format?: InputMaybe +} /** A node that can have trackbacks and pingbacks */ export type NodeWithTrackbacks = { /** The globally unique ID for the object */ - id: Scalars['ID']['output']; + id: Scalars['ID']['output'] /** Whether the pings are open or closed for this particular post. */ - pingStatus?: Maybe; + pingStatus?: Maybe /** URLs that have been pinged. */ - pinged?: Maybe>>; + pinged?: Maybe>> /** URLs queued to be pinged. */ - toPing?: Maybe>>; -}; + toPing?: Maybe>> +} /** The NotFound type */ -export type NotFound = ContentNode & DatabaseIdentifier & MenuItemLinkable & Node & NodeWithContentEditor & NodeWithFeaturedImage & NodeWithTemplate & NodeWithTitle & Previewable & UniformResourceIdentifiable & { - __typename?: 'NotFound'; - /** The content of the post. */ - content?: Maybe; - /** Connection between the ContentNode type and the ContentType type */ - contentType?: Maybe; - /** The name of the Content Type the node belongs to */ - contentTypeName: Scalars['String']['output']; - /** The unique identifier stored in the database */ - databaseId: Scalars['Int']['output']; - /** Post publishing date. */ - date?: Maybe; - /** The publishing date set in GMT. */ - dateGmt?: Maybe; - /** The desired slug of the post */ - desiredSlug?: Maybe; - /** If a user has edited the node within the past 15 seconds, this will return the user that last edited. Null if the edit lock doesn't exist or is greater than 15 seconds */ - editingLockedBy?: Maybe; - /** The RSS enclosure for the object */ - enclosure?: Maybe; - /** Connection between the ContentNode type and the EnqueuedScript type */ - enqueuedScripts?: Maybe; - /** Connection between the ContentNode type and the EnqueuedStylesheet type */ - enqueuedStylesheets?: Maybe; - /** Connection between the NodeWithFeaturedImage type and the MediaItem type */ - featuredImage?: Maybe; - /** The database identifier for the featured image node assigned to the content node */ - featuredImageDatabaseId?: Maybe; - /** Globally unique ID of the featured image assigned to the node */ - featuredImageId?: Maybe; - /** The global unique identifier for this post. This currently matches the value stored in WP_Post->guid and the guid column in the "post_objects" database table. */ - guid?: Maybe; - /** Whether the not-found object is password protected. */ - hasPassword?: Maybe; - /** The globally unique identifier of the not-found object. */ - id: Scalars['ID']['output']; - /** Whether the node is a Comment */ - isComment: Scalars['Boolean']['output']; - /** Whether the node is a Content Node */ - isContentNode: Scalars['Boolean']['output']; - /** Whether the node represents the front page. */ - isFrontPage: Scalars['Boolean']['output']; - /** Whether the node represents the blog page. */ - isPostsPage: Scalars['Boolean']['output']; - /** Whether the object is a node in the preview state */ - isPreview?: Maybe; - /** Whether the object is restricted from the current viewer */ - isRestricted?: Maybe; - /** Whether the node is a Term */ - isTermNode: Scalars['Boolean']['output']; - /** The user that most recently edited the node */ - lastEditedBy?: Maybe; - /** The permalink of the post */ - link?: Maybe; - /** The local modified time for a post. If a post was recently updated the modified field will change to match the corresponding time. */ - modified?: Maybe; - /** The GMT modified time for a post. If a post was recently updated the modified field will change to match the corresponding time in GMT. */ - modifiedGmt?: Maybe; - /** - * The id field matches the WP_Post->ID field. - * @deprecated Deprecated in favor of the databaseId field - */ - notFoundId: Scalars['Int']['output']; - /** The password for the not-found object. */ - password?: Maybe; - /** Connection between the NotFound type and the NotFound type */ - preview?: Maybe; - /** The database id of the preview node */ - previewRevisionDatabaseId?: Maybe; - /** Whether the object is a node in the preview state */ - previewRevisionId?: Maybe; - /** The Yoast SEO data of the ContentNode */ - seo?: Maybe; - /** The uri slug for the post. This is equivalent to the WP_Post->post_name field and the post_name column in the database for the "post_objects" table. */ - slug?: Maybe; - /** The current status of the object */ - status?: Maybe; - /** The template assigned to the node */ - template?: Maybe; - /** The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made. */ - title?: Maybe; - /** The unique resource identifier path */ - uri?: Maybe; -}; - +export type NotFound = ContentNode & + DatabaseIdentifier & + MenuItemLinkable & + Node & + NodeWithContentEditor & + NodeWithFeaturedImage & + NodeWithTemplate & + NodeWithTitle & + Previewable & + UniformResourceIdentifiable & { + __typename?: 'NotFound' + /** The content of the post. */ + content?: Maybe + /** Connection between the ContentNode type and the ContentType type */ + contentType?: Maybe + /** The name of the Content Type the node belongs to */ + contentTypeName: Scalars['String']['output'] + /** The unique identifier stored in the database */ + databaseId: Scalars['Int']['output'] + /** Post publishing date. */ + date?: Maybe + /** The publishing date set in GMT. */ + dateGmt?: Maybe + /** The desired slug of the post */ + desiredSlug?: Maybe + /** If a user has edited the node within the past 15 seconds, this will return the user that last edited. Null if the edit lock doesn't exist or is greater than 15 seconds */ + editingLockedBy?: Maybe + /** The RSS enclosure for the object */ + enclosure?: Maybe + /** Connection between the ContentNode type and the EnqueuedScript type */ + enqueuedScripts?: Maybe + /** Connection between the ContentNode type and the EnqueuedStylesheet type */ + enqueuedStylesheets?: Maybe + /** Connection between the NodeWithFeaturedImage type and the MediaItem type */ + featuredImage?: Maybe + /** The database identifier for the featured image node assigned to the content node */ + featuredImageDatabaseId?: Maybe + /** Globally unique ID of the featured image assigned to the node */ + featuredImageId?: Maybe + /** The global unique identifier for this post. This currently matches the value stored in WP_Post->guid and the guid column in the "post_objects" database table. */ + guid?: Maybe + /** Whether the not-found object is password protected. */ + hasPassword?: Maybe + /** The globally unique identifier of the not-found object. */ + id: Scalars['ID']['output'] + /** Whether the node is a Comment */ + isComment: Scalars['Boolean']['output'] + /** Whether the node is a Content Node */ + isContentNode: Scalars['Boolean']['output'] + /** Whether the node represents the front page. */ + isFrontPage: Scalars['Boolean']['output'] + /** Whether the node represents the blog page. */ + isPostsPage: Scalars['Boolean']['output'] + /** Whether the object is a node in the preview state */ + isPreview?: Maybe + /** Whether the object is restricted from the current viewer */ + isRestricted?: Maybe + /** Whether the node is a Term */ + isTermNode: Scalars['Boolean']['output'] + /** The user that most recently edited the node */ + lastEditedBy?: Maybe + /** The permalink of the post */ + link?: Maybe + /** The local modified time for a post. If a post was recently updated the modified field will change to match the corresponding time. */ + modified?: Maybe + /** The GMT modified time for a post. If a post was recently updated the modified field will change to match the corresponding time in GMT. */ + modifiedGmt?: Maybe + /** + * The id field matches the WP_Post->ID field. + * @deprecated Deprecated in favor of the databaseId field + */ + notFoundId: Scalars['Int']['output'] + /** The password for the not-found object. */ + password?: Maybe + /** Connection between the NotFound type and the NotFound type */ + preview?: Maybe + /** The database id of the preview node */ + previewRevisionDatabaseId?: Maybe + /** Whether the object is a node in the preview state */ + previewRevisionId?: Maybe + /** The Yoast SEO data of the ContentNode */ + seo?: Maybe + /** The uri slug for the post. This is equivalent to the WP_Post->post_name field and the post_name column in the database for the "post_objects" table. */ + slug?: Maybe + /** The current status of the object */ + status?: Maybe + /** The template assigned to the node */ + template?: Maybe + /** The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made. */ + title?: Maybe + /** The unique resource identifier path */ + uri?: Maybe + } /** The NotFound type */ export type NotFoundContentArgs = { - format?: InputMaybe; -}; - + format?: InputMaybe +} /** The NotFound type */ export type NotFoundEnqueuedScriptsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** The NotFound type */ export type NotFoundEnqueuedStylesheetsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** The NotFound type */ export type NotFoundTitleArgs = { - format?: InputMaybe; -}; + format?: InputMaybe +} /** Connection to NotFound Nodes */ export type NotFoundConnection = { /** A list of edges (relational context) between RootQuery and connected NotFound Nodes */ - edges: Array; + edges: Array /** A list of connected NotFound Nodes */ - nodes: Array; + nodes: Array /** Information about pagination in a connection. */ - pageInfo: NotFoundConnectionPageInfo; -}; + pageInfo: NotFoundConnectionPageInfo +} /** Edge between a Node and a connected NotFound */ export type NotFoundConnectionEdge = { /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; + cursor?: Maybe /** The connected NotFound Node */ - node: NotFound; -}; + node: NotFound +} /** Page Info on the connected NotFoundConnectionEdge */ export type NotFoundConnectionPageInfo = { /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; + endCursor?: Maybe /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; + hasNextPage: Scalars['Boolean']['output'] /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; + hasPreviousPage: Scalars['Boolean']['output'] /** Raw schema for page */ - seo?: Maybe; + seo?: Maybe /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; + startCursor?: Maybe +} /** The Type of Identifier used to fetch a single resource. Default is ID. */ export enum NotFoundIdType { @@ -7594,265 +7800,273 @@ export enum NotFoundIdType { /** Identify a resource by the slug. Available to non-hierarchcial Types where the slug is a unique identifier. */ Slug = 'SLUG', /** Identify a resource by the URI. */ - Uri = 'URI' + Uri = 'URI', } /** Connection between the NotFound type and the NotFound type */ -export type NotFoundToPreviewConnectionEdge = Edge & NotFoundConnectionEdge & OneToOneConnection & { - __typename?: 'NotFoundToPreviewConnectionEdge'; - /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; - /** The node of the connection, without the edges */ - node: NotFound; -}; +export type NotFoundToPreviewConnectionEdge = Edge & + NotFoundConnectionEdge & + OneToOneConnection & { + __typename?: 'NotFoundToPreviewConnectionEdge' + /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ + cursor?: Maybe + /** The node of the connection, without the edges */ + node: NotFound + } /** A singular connection from one Node to another, with support for relational data on the "edge" of the connection. */ export type OneToOneConnection = { /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; + cursor?: Maybe /** The connected node */ - node: Node; -}; + node: Node +} /** The cardinality of the connection order */ export enum OrderEnum { /** Sort the query result set in an ascending order */ Asc = 'ASC', /** Sort the query result set in a descending order */ - Desc = 'DESC' + Desc = 'DESC', } /** The page type */ -export type Page = ContentNode & DatabaseIdentifier & HierarchicalContentNode & HierarchicalNode & MenuItemLinkable & Node & NodeWithAuthor & NodeWithComments & NodeWithContentEditor & NodeWithFeaturedImage & NodeWithPageAttributes & NodeWithRevisions & NodeWithTemplate & NodeWithTitle & Previewable & UniformResourceIdentifiable & { - __typename?: 'Page'; - /** Returns ancestors of the node. Default ordered as lowest (closest to the child) to highest (closest to the root). */ - ancestors?: Maybe; - /** Connection between the NodeWithAuthor type and the User type */ - author?: Maybe; - /** The database identifier of the author of the node */ - authorDatabaseId?: Maybe; - /** The globally unique identifier of the author of the node */ - authorId?: Maybe; - /** Connection between the HierarchicalContentNode type and the ContentNode type */ - children?: Maybe; - /** The number of comments. Even though WPGraphQL denotes this field as an integer, in WordPress this field should be saved as a numeric string for compatibility. */ - commentCount?: Maybe; - /** Whether the comments are open or closed for this particular post. */ - commentStatus?: Maybe; - /** Connection between the Page type and the Comment type */ - comments?: Maybe; - /** The content of the post. */ - content?: Maybe; - /** Connection between the ContentNode type and the ContentType type */ - contentType?: Maybe; - /** The name of the Content Type the node belongs to */ - contentTypeName: Scalars['String']['output']; - /** The unique identifier stored in the database */ - databaseId: Scalars['Int']['output']; - /** Post publishing date. */ - date?: Maybe; - /** The publishing date set in GMT. */ - dateGmt?: Maybe; - /** The desired slug of the post */ - desiredSlug?: Maybe; - /** If a user has edited the node within the past 15 seconds, this will return the user that last edited. Null if the edit lock doesn't exist or is greater than 15 seconds */ - editingLockedBy?: Maybe; - /** The RSS enclosure for the object */ - enclosure?: Maybe; - /** Connection between the ContentNode type and the EnqueuedScript type */ - enqueuedScripts?: Maybe; - /** Connection between the ContentNode type and the EnqueuedStylesheet type */ - enqueuedStylesheets?: Maybe; - /** Connection between the NodeWithFeaturedImage type and the MediaItem type */ - featuredImage?: Maybe; - /** The database identifier for the featured image node assigned to the content node */ - featuredImageDatabaseId?: Maybe; - /** Globally unique ID of the featured image assigned to the node */ - featuredImageId?: Maybe; - /** The global unique identifier for this post. This currently matches the value stored in WP_Post->guid and the guid column in the "post_objects" database table. */ - guid?: Maybe; - /** Whether the page object is password protected. */ - hasPassword?: Maybe; - /** The globally unique identifier of the page object. */ - id: Scalars['ID']['output']; - /** Whether the node is a Comment */ - isComment: Scalars['Boolean']['output']; - /** Whether the node is a Content Node */ - isContentNode: Scalars['Boolean']['output']; - /** Whether this page is set to the static front page. */ - isFrontPage: Scalars['Boolean']['output']; - /** Whether this page is set to the blog posts page. */ - isPostsPage: Scalars['Boolean']['output']; - /** Whether the object is a node in the preview state */ - isPreview?: Maybe; - /** Whether this page is set to the privacy page. */ - isPrivacyPage: Scalars['Boolean']['output']; - /** Whether the object is restricted from the current viewer */ - isRestricted?: Maybe; - /** True if the node is a revision of another node */ - isRevision?: Maybe; - /** Whether the node is a Term */ - isTermNode: Scalars['Boolean']['output']; - /** Polylang language */ - language?: Maybe; - /** The user that most recently edited the node */ - lastEditedBy?: Maybe; - /** The permalink of the post */ - link?: Maybe; - /** A field used for ordering posts. This is typically used with nav menu items or for special ordering of hierarchical content types. */ - menuOrder?: Maybe; - /** The local modified time for a post. If a post was recently updated the modified field will change to match the corresponding time. */ - modified?: Maybe; - /** The GMT modified time for a post. If a post was recently updated the modified field will change to match the corresponding time in GMT. */ - modifiedGmt?: Maybe; - /** - * The id field matches the WP_Post->ID field. - * @deprecated Deprecated in favor of the databaseId field - */ - pageId: Scalars['Int']['output']; - /** The parent of the node. The parent object can be of various types */ - parent?: Maybe; - /** Database id of the parent node */ - parentDatabaseId?: Maybe; - /** The globally unique identifier of the parent node. */ - parentId?: Maybe; - /** The password for the page object. */ - password?: Maybe; - /** Connection between the Page type and the page type */ - preview?: Maybe; - /** The database id of the preview node */ - previewRevisionDatabaseId?: Maybe; - /** Whether the object is a node in the preview state */ - previewRevisionId?: Maybe; - /** If the current node is a revision, this field exposes the node this is a revision of. Returns null if the node is not a revision of another node. */ - revisionOf?: Maybe; - /** Connection between the Page type and the page type */ - revisions?: Maybe; - /** The Yoast SEO data of the ContentNode */ - seo?: Maybe; - /** The uri slug for the post. This is equivalent to the WP_Post->post_name field and the post_name column in the database for the "post_objects" table. */ - slug?: Maybe; - /** The current status of the object */ - status?: Maybe; - /** The template assigned to a node of content */ - template?: Maybe; - /** The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made. */ - title?: Maybe; - /** Get specific translation version of this object */ - translation?: Maybe; - /** List all translated versions of this post */ - translations?: Maybe>>; - /** The unique resource identifier path */ - uri?: Maybe; -}; - +export type Page = ContentNode & + DatabaseIdentifier & + HierarchicalContentNode & + HierarchicalNode & + MenuItemLinkable & + Node & + NodeWithAuthor & + NodeWithComments & + NodeWithContentEditor & + NodeWithFeaturedImage & + NodeWithPageAttributes & + NodeWithRevisions & + NodeWithTemplate & + NodeWithTitle & + Previewable & + UniformResourceIdentifiable & { + __typename?: 'Page' + /** Returns ancestors of the node. Default ordered as lowest (closest to the child) to highest (closest to the root). */ + ancestors?: Maybe + /** Connection between the NodeWithAuthor type and the User type */ + author?: Maybe + /** The database identifier of the author of the node */ + authorDatabaseId?: Maybe + /** The globally unique identifier of the author of the node */ + authorId?: Maybe + /** Connection between the HierarchicalContentNode type and the ContentNode type */ + children?: Maybe + /** The number of comments. Even though WPGraphQL denotes this field as an integer, in WordPress this field should be saved as a numeric string for compatibility. */ + commentCount?: Maybe + /** Whether the comments are open or closed for this particular post. */ + commentStatus?: Maybe + /** Connection between the Page type and the Comment type */ + comments?: Maybe + /** The content of the post. */ + content?: Maybe + /** Connection between the ContentNode type and the ContentType type */ + contentType?: Maybe + /** The name of the Content Type the node belongs to */ + contentTypeName: Scalars['String']['output'] + /** The unique identifier stored in the database */ + databaseId: Scalars['Int']['output'] + /** Post publishing date. */ + date?: Maybe + /** The publishing date set in GMT. */ + dateGmt?: Maybe + /** The desired slug of the post */ + desiredSlug?: Maybe + /** If a user has edited the node within the past 15 seconds, this will return the user that last edited. Null if the edit lock doesn't exist or is greater than 15 seconds */ + editingLockedBy?: Maybe + /** The RSS enclosure for the object */ + enclosure?: Maybe + /** Connection between the ContentNode type and the EnqueuedScript type */ + enqueuedScripts?: Maybe + /** Connection between the ContentNode type and the EnqueuedStylesheet type */ + enqueuedStylesheets?: Maybe + /** Connection between the NodeWithFeaturedImage type and the MediaItem type */ + featuredImage?: Maybe + /** The database identifier for the featured image node assigned to the content node */ + featuredImageDatabaseId?: Maybe + /** Globally unique ID of the featured image assigned to the node */ + featuredImageId?: Maybe + /** The global unique identifier for this post. This currently matches the value stored in WP_Post->guid and the guid column in the "post_objects" database table. */ + guid?: Maybe + /** Whether the page object is password protected. */ + hasPassword?: Maybe + /** The globally unique identifier of the page object. */ + id: Scalars['ID']['output'] + /** Whether the node is a Comment */ + isComment: Scalars['Boolean']['output'] + /** Whether the node is a Content Node */ + isContentNode: Scalars['Boolean']['output'] + /** Whether this page is set to the static front page. */ + isFrontPage: Scalars['Boolean']['output'] + /** Whether this page is set to the blog posts page. */ + isPostsPage: Scalars['Boolean']['output'] + /** Whether the object is a node in the preview state */ + isPreview?: Maybe + /** Whether this page is set to the privacy page. */ + isPrivacyPage: Scalars['Boolean']['output'] + /** Whether the object is restricted from the current viewer */ + isRestricted?: Maybe + /** True if the node is a revision of another node */ + isRevision?: Maybe + /** Whether the node is a Term */ + isTermNode: Scalars['Boolean']['output'] + /** Polylang language */ + language?: Maybe + /** The user that most recently edited the node */ + lastEditedBy?: Maybe + /** The permalink of the post */ + link?: Maybe + /** A field used for ordering posts. This is typically used with nav menu items or for special ordering of hierarchical content types. */ + menuOrder?: Maybe + /** The local modified time for a post. If a post was recently updated the modified field will change to match the corresponding time. */ + modified?: Maybe + /** The GMT modified time for a post. If a post was recently updated the modified field will change to match the corresponding time in GMT. */ + modifiedGmt?: Maybe + /** + * The id field matches the WP_Post->ID field. + * @deprecated Deprecated in favor of the databaseId field + */ + pageId: Scalars['Int']['output'] + /** The parent of the node. The parent object can be of various types */ + parent?: Maybe + /** Database id of the parent node */ + parentDatabaseId?: Maybe + /** The globally unique identifier of the parent node. */ + parentId?: Maybe + /** The password for the page object. */ + password?: Maybe + /** Connection between the Page type and the page type */ + preview?: Maybe + /** The database id of the preview node */ + previewRevisionDatabaseId?: Maybe + /** Whether the object is a node in the preview state */ + previewRevisionId?: Maybe + /** If the current node is a revision, this field exposes the node this is a revision of. Returns null if the node is not a revision of another node. */ + revisionOf?: Maybe + /** Connection between the Page type and the page type */ + revisions?: Maybe + /** The Yoast SEO data of the ContentNode */ + seo?: Maybe + /** The uri slug for the post. This is equivalent to the WP_Post->post_name field and the post_name column in the database for the "post_objects" table. */ + slug?: Maybe + /** The current status of the object */ + status?: Maybe + /** The template assigned to a node of content */ + template?: Maybe + /** The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made. */ + title?: Maybe + /** Get specific translation version of this object */ + translation?: Maybe + /** List all translated versions of this post */ + translations?: Maybe>> + /** The unique resource identifier path */ + uri?: Maybe + } /** The page type */ export type PageAncestorsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The page type */ export type PageChildrenArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The page type */ export type PageCommentsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The page type */ export type PageContentArgs = { - format?: InputMaybe; -}; - + format?: InputMaybe +} /** The page type */ export type PageEnqueuedScriptsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** The page type */ export type PageEnqueuedStylesheetsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** The page type */ export type PageRevisionsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The page type */ export type PageTitleArgs = { - format?: InputMaybe; -}; - + format?: InputMaybe +} /** The page type */ export type PageTranslationArgs = { - language: LanguageCodeEnum; -}; + language: LanguageCodeEnum +} /** Connection to page Nodes */ export type PageConnection = { /** A list of edges (relational context) between RootQuery and connected page Nodes */ - edges: Array; + edges: Array /** A list of connected page Nodes */ - nodes: Array; + nodes: Array /** Information about pagination in a connection. */ - pageInfo: PageConnectionPageInfo; -}; + pageInfo: PageConnectionPageInfo +} /** Edge between a Node and a connected page */ export type PageConnectionEdge = { /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; + cursor?: Maybe /** The connected page Node */ - node: Page; -}; + node: Page +} /** Page Info on the connected PageConnectionEdge */ export type PageConnectionPageInfo = { /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; + endCursor?: Maybe /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; + hasNextPage: Scalars['Boolean']['output'] /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; + hasPreviousPage: Scalars['Boolean']['output'] /** Raw schema for page */ - seo?: Maybe; + seo?: Maybe /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; + startCursor?: Maybe +} /** The Type of Identifier used to fetch a single resource. Default is ID. */ export enum PageIdType { @@ -7861,262 +8075,272 @@ export enum PageIdType { /** Identify a resource by the (hashed) Global ID. */ Id = 'ID', /** Identify a resource by the URI. */ - Uri = 'URI' + Uri = 'URI', } /** Information about pagination in a connection. */ export type PageInfo = { /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; + endCursor?: Maybe /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; + hasNextPage: Scalars['Boolean']['output'] /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; + hasPreviousPage: Scalars['Boolean']['output'] /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; + startCursor?: Maybe +} /** Connection between the Page type and the Comment type */ -export type PageToCommentConnection = CommentConnection & Connection & { - __typename?: 'PageToCommentConnection'; - /** Edges for the PageToCommentConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: PageToCommentConnectionPageInfo; -}; +export type PageToCommentConnection = CommentConnection & + Connection & { + __typename?: 'PageToCommentConnection' + /** Edges for the PageToCommentConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: PageToCommentConnectionPageInfo + } /** An edge in a connection */ -export type PageToCommentConnectionEdge = CommentConnectionEdge & Edge & { - __typename?: 'PageToCommentConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: Comment; -}; +export type PageToCommentConnectionEdge = CommentConnectionEdge & + Edge & { + __typename?: 'PageToCommentConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: Comment + } /** Page Info on the "PageToCommentConnection" */ -export type PageToCommentConnectionPageInfo = CommentConnectionPageInfo & PageInfo & WpPageInfo & { - __typename?: 'PageToCommentConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type PageToCommentConnectionPageInfo = CommentConnectionPageInfo & + PageInfo & + WpPageInfo & { + __typename?: 'PageToCommentConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the PageToCommentConnection connection */ export type PageToCommentConnectionWhereArgs = { /** Comment author email address. */ - authorEmail?: InputMaybe; + authorEmail?: InputMaybe /** Array of author IDs to include comments for. */ - authorIn?: InputMaybe>>; + authorIn?: InputMaybe>> /** Array of author IDs to exclude comments for. */ - authorNotIn?: InputMaybe>>; + authorNotIn?: InputMaybe>> /** Comment author URL. */ - authorUrl?: InputMaybe; + authorUrl?: InputMaybe /** Array of comment IDs to include. */ - commentIn?: InputMaybe>>; + commentIn?: InputMaybe>> /** Array of IDs of users whose unapproved comments will be returned by the query regardless of status. */ - commentNotIn?: InputMaybe>>; + commentNotIn?: InputMaybe>> /** Include comments of a given type. */ - commentType?: InputMaybe; + commentType?: InputMaybe /** Include comments from a given array of comment types. */ - commentTypeIn?: InputMaybe>>; + commentTypeIn?: InputMaybe>> /** Exclude comments from a given array of comment types. */ - commentTypeNotIn?: InputMaybe; + commentTypeNotIn?: InputMaybe /** Content object author ID to limit results by. */ - contentAuthor?: InputMaybe>>; + contentAuthor?: InputMaybe>> /** Array of author IDs to retrieve comments for. */ - contentAuthorIn?: InputMaybe>>; + contentAuthorIn?: InputMaybe>> /** Array of author IDs *not* to retrieve comments for. */ - contentAuthorNotIn?: InputMaybe>>; + contentAuthorNotIn?: InputMaybe>> /** Limit results to those affiliated with a given content object ID. */ - contentId?: InputMaybe; + contentId?: InputMaybe /** Array of content object IDs to include affiliated comments for. */ - contentIdIn?: InputMaybe>>; + contentIdIn?: InputMaybe>> /** Array of content object IDs to exclude affiliated comments for. */ - contentIdNotIn?: InputMaybe>>; + contentIdNotIn?: InputMaybe>> /** Content object name (i.e. slug ) to retrieve affiliated comments for. */ - contentName?: InputMaybe; + contentName?: InputMaybe /** Content Object parent ID to retrieve affiliated comments for. */ - contentParent?: InputMaybe; + contentParent?: InputMaybe /** Array of content object statuses to retrieve affiliated comments for. Pass 'any' to match any value. */ - contentStatus?: InputMaybe>>; + contentStatus?: InputMaybe>> /** Content object type or array of types to retrieve affiliated comments for. Pass 'any' to match any value. */ - contentType?: InputMaybe>>; + contentType?: InputMaybe>> /** Array of IDs or email addresses of users whose unapproved comments will be returned by the query regardless of $status. Default empty */ - includeUnapproved?: InputMaybe>>; + includeUnapproved?: InputMaybe>> /** Karma score to retrieve matching comments for. */ - karma?: InputMaybe; + karma?: InputMaybe /** The cardinality of the order of the connection */ - order?: InputMaybe; + order?: InputMaybe /** Field to order the comments by. */ - orderby?: InputMaybe; + orderby?: InputMaybe /** Parent ID of comment to retrieve children of. */ - parent?: InputMaybe; + parent?: InputMaybe /** Array of parent IDs of comments to retrieve children for. */ - parentIn?: InputMaybe>>; + parentIn?: InputMaybe>> /** Array of parent IDs of comments *not* to retrieve children for. */ - parentNotIn?: InputMaybe>>; + parentNotIn?: InputMaybe>> /** Search term(s) to retrieve matching comments for. */ - search?: InputMaybe; + search?: InputMaybe /** Comment status to limit results by. */ - status?: InputMaybe; + status?: InputMaybe /** Include comments for a specific user ID. */ - userId?: InputMaybe; -}; + userId?: InputMaybe +} /** Connection between the Page type and the page type */ -export type PageToPreviewConnectionEdge = Edge & OneToOneConnection & PageConnectionEdge & { - __typename?: 'PageToPreviewConnectionEdge'; - /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; - /** The node of the connection, without the edges */ - node: Page; -}; +export type PageToPreviewConnectionEdge = Edge & + OneToOneConnection & + PageConnectionEdge & { + __typename?: 'PageToPreviewConnectionEdge' + /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ + cursor?: Maybe + /** The node of the connection, without the edges */ + node: Page + } /** Connection between the Page type and the page type */ -export type PageToRevisionConnection = Connection & PageConnection & { - __typename?: 'PageToRevisionConnection'; - /** Edges for the PageToRevisionConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: PageToRevisionConnectionPageInfo; -}; +export type PageToRevisionConnection = Connection & + PageConnection & { + __typename?: 'PageToRevisionConnection' + /** Edges for the PageToRevisionConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: PageToRevisionConnectionPageInfo + } /** An edge in a connection */ -export type PageToRevisionConnectionEdge = Edge & PageConnectionEdge & { - __typename?: 'PageToRevisionConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: Page; -}; +export type PageToRevisionConnectionEdge = Edge & + PageConnectionEdge & { + __typename?: 'PageToRevisionConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: Page + } /** Page Info on the "PageToRevisionConnection" */ -export type PageToRevisionConnectionPageInfo = PageConnectionPageInfo & PageInfo & WpPageInfo & { - __typename?: 'PageToRevisionConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type PageToRevisionConnectionPageInfo = PageConnectionPageInfo & + PageInfo & + WpPageInfo & { + __typename?: 'PageToRevisionConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the PageToRevisionConnection connection */ export type PageToRevisionConnectionWhereArgs = { /** The user that's connected as the author of the object. Use the userId for the author object. */ - author?: InputMaybe; + author?: InputMaybe /** Find objects connected to author(s) in the array of author's userIds */ - authorIn?: InputMaybe>>; + authorIn?: InputMaybe>> /** Find objects connected to the author by the author's nicename */ - authorName?: InputMaybe; + authorName?: InputMaybe /** Find objects NOT connected to author(s) in the array of author's userIds */ - authorNotIn?: InputMaybe>>; + authorNotIn?: InputMaybe>> /** Filter the connection based on dates */ - dateQuery?: InputMaybe; + dateQuery?: InputMaybe /** True for objects with passwords; False for objects without passwords; null for all objects with or without passwords */ - hasPassword?: InputMaybe; + hasPassword?: InputMaybe /** Specific database ID of the object */ - id?: InputMaybe; + id?: InputMaybe /** Array of IDs for the objects to retrieve */ - in?: InputMaybe>>; + in?: InputMaybe>> /** Get objects with a specific mimeType property */ - mimeType?: InputMaybe; + mimeType?: InputMaybe /** Slug / post_name of the object */ - name?: InputMaybe; + name?: InputMaybe /** Specify objects to retrieve. Use slugs */ - nameIn?: InputMaybe>>; + nameIn?: InputMaybe>> /** Specify IDs NOT to retrieve. If this is used in the same query as "in", it will be ignored */ - notIn?: InputMaybe>>; + notIn?: InputMaybe>> /** What parameter to use to order the objects by. */ - orderby?: InputMaybe>>; + orderby?: InputMaybe>> /** Use ID to return only children. Use 0 to return only top-level items */ - parent?: InputMaybe; + parent?: InputMaybe /** Specify objects whose parent is in an array */ - parentIn?: InputMaybe>>; + parentIn?: InputMaybe>> /** Specify posts whose parent is not in an array */ - parentNotIn?: InputMaybe>>; + parentNotIn?: InputMaybe>> /** Show posts with a specific password. */ - password?: InputMaybe; + password?: InputMaybe /** Show Posts based on a keyword search */ - search?: InputMaybe; + search?: InputMaybe /** Retrieve posts where post status is in an array. */ - stati?: InputMaybe>>; + stati?: InputMaybe>> /** Show posts with a specific status. */ - status?: InputMaybe; + status?: InputMaybe /** Title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** An plugin object */ export type Plugin = Node & { - __typename?: 'Plugin'; + __typename?: 'Plugin' /** Name of the plugin author(s), may also be a company name. */ - author?: Maybe; + author?: Maybe /** URI for the related author(s)/company website. */ - authorUri?: Maybe; + authorUri?: Maybe /** Description of the plugin. */ - description?: Maybe; + description?: Maybe /** The globally unique identifier of the plugin object. */ - id: Scalars['ID']['output']; + id: Scalars['ID']['output'] /** Whether the object is restricted from the current viewer */ - isRestricted?: Maybe; + isRestricted?: Maybe /** Display name of the plugin. */ - name?: Maybe; + name?: Maybe /** Plugin path. */ - path?: Maybe; + path?: Maybe /** URI for the plugin website. This is useful for directing users for support requests etc. */ - pluginUri?: Maybe; + pluginUri?: Maybe /** Current version of the plugin. */ - version?: Maybe; -}; + version?: Maybe +} /** Connection to Plugin Nodes */ export type PluginConnection = { /** A list of edges (relational context) between RootQuery and connected Plugin Nodes */ - edges: Array; + edges: Array /** A list of connected Plugin Nodes */ - nodes: Array; + nodes: Array /** Information about pagination in a connection. */ - pageInfo: PluginConnectionPageInfo; -}; + pageInfo: PluginConnectionPageInfo +} /** Edge between a Node and a connected Plugin */ export type PluginConnectionEdge = { /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; + cursor?: Maybe /** The connected Plugin Node */ - node: Plugin; -}; + node: Plugin +} /** Page Info on the connected PluginConnectionEdge */ export type PluginConnectionPageInfo = { /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; + endCursor?: Maybe /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; + hasNextPage: Scalars['Boolean']['output'] /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; + hasPreviousPage: Scalars['Boolean']['output'] /** Raw schema for page */ - seo?: Maybe; + seo?: Maybe /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; + startCursor?: Maybe +} /** The status of the WordPress plugin. */ export enum PluginStatusEnum { @@ -8133,418 +8357,420 @@ export enum PluginStatusEnum { /** The plugin was active recently. */ RecentlyActive = 'RECENTLY_ACTIVE', /** The plugin has an upgrade available. */ - Upgrade = 'UPGRADE' + Upgrade = 'UPGRADE', } /** The post type */ -export type Post = ContentNode & DatabaseIdentifier & MenuItemLinkable & Node & NodeWithAuthor & NodeWithComments & NodeWithContentEditor & NodeWithExcerpt & NodeWithFeaturedImage & NodeWithRevisions & NodeWithTemplate & NodeWithTitle & NodeWithTrackbacks & Previewable & UniformResourceIdentifiable & WithAcfRecords & { - __typename?: 'Post'; - /** Connection between the NodeWithAuthor type and the User type */ - author?: Maybe; - /** The database identifier of the author of the node */ - authorDatabaseId?: Maybe; - /** The globally unique identifier of the author of the node */ - authorId?: Maybe; - /** Connection between the Post type and the category type */ - categories?: Maybe; - /** The number of comments. Even though WPGraphQL denotes this field as an integer, in WordPress this field should be saved as a numeric string for compatibility. */ - commentCount?: Maybe; - /** Whether the comments are open or closed for this particular post. */ - commentStatus?: Maybe; - /** Connection between the Post type and the Comment type */ - comments?: Maybe; - /** The content of the post. */ - content?: Maybe; - /** Connection between the ContentNode type and the ContentType type */ - contentType?: Maybe; - /** The name of the Content Type the node belongs to */ - contentTypeName: Scalars['String']['output']; - /** The unique identifier stored in the database */ - databaseId: Scalars['Int']['output']; - /** Post publishing date. */ - date?: Maybe; - /** The publishing date set in GMT. */ - dateGmt?: Maybe; - /** The desired slug of the post */ - desiredSlug?: Maybe; - /** If a user has edited the node within the past 15 seconds, this will return the user that last edited. Null if the edit lock doesn't exist or is greater than 15 seconds */ - editingLockedBy?: Maybe; - /** The RSS enclosure for the object */ - enclosure?: Maybe; - /** Connection between the ContentNode type and the EnqueuedScript type */ - enqueuedScripts?: Maybe; - /** Connection between the ContentNode type and the EnqueuedStylesheet type */ - enqueuedStylesheets?: Maybe; - /** The excerpt of the post. */ - excerpt?: Maybe; - /** Connection between the NodeWithFeaturedImage type and the MediaItem type */ - featuredImage?: Maybe; - /** The database identifier for the featured image node assigned to the content node */ - featuredImageDatabaseId?: Maybe; - /** Globally unique ID of the featured image assigned to the node */ - featuredImageId?: Maybe; - /** The global unique identifier for this post. This currently matches the value stored in WP_Post->guid and the guid column in the "post_objects" database table. */ - guid?: Maybe; - /** Whether the post object is password protected. */ - hasPassword?: Maybe; - /** The globally unique identifier of the post object. */ - id: Scalars['ID']['output']; - /** Whether the node is a Comment */ - isComment: Scalars['Boolean']['output']; - /** Whether the node is a Content Node */ - isContentNode: Scalars['Boolean']['output']; - /** Whether the node represents the front page. */ - isFrontPage: Scalars['Boolean']['output']; - /** Whether the node represents the blog page. */ - isPostsPage: Scalars['Boolean']['output']; - /** Whether the object is a node in the preview state */ - isPreview?: Maybe; - /** Whether the object is restricted from the current viewer */ - isRestricted?: Maybe; - /** True if the node is a revision of another node */ - isRevision?: Maybe; - /** Whether this page is sticky */ - isSticky: Scalars['Boolean']['output']; - /** Whether the node is a Term */ - isTermNode: Scalars['Boolean']['output']; - /** Polylang language */ - language?: Maybe; - /** The user that most recently edited the node */ - lastEditedBy?: Maybe; - /** The permalink of the post */ - link?: Maybe; - /** The local modified time for a post. If a post was recently updated the modified field will change to match the corresponding time. */ - modified?: Maybe; - /** The GMT modified time for a post. If a post was recently updated the modified field will change to match the corresponding time in GMT. */ - modifiedGmt?: Maybe; - /** The password for the post object. */ - password?: Maybe; - /** Whether the pings are open or closed for this particular post. */ - pingStatus?: Maybe; - /** URLs that have been pinged. */ - pinged?: Maybe>>; - /** Connection between the Post type and the postFormat type */ - postFormats?: Maybe; - /** - * The id field matches the WP_Post->ID field. - * @deprecated Deprecated in favor of the databaseId field - */ - postId: Scalars['Int']['output']; - /** Connection between the Post type and the post type */ - preview?: Maybe; - /** The database id of the preview node */ - previewRevisionDatabaseId?: Maybe; - /** Whether the object is a node in the preview state */ - previewRevisionId?: Maybe; - /** Fields of the Records ACF Field Group */ - records?: Maybe; - /** If the current node is a revision, this field exposes the node this is a revision of. Returns null if the node is not a revision of another node. */ - revisionOf?: Maybe; - /** Connection between the Post type and the post type */ - revisions?: Maybe; - /** The Yoast SEO data of the ContentNode */ - seo?: Maybe; - /** The uri slug for the post. This is equivalent to the WP_Post->post_name field and the post_name column in the database for the "post_objects" table. */ - slug?: Maybe; - /** The current status of the object */ - status?: Maybe; - /** Connection between the Post type and the tag type */ - tags?: Maybe; - /** The template assigned to the node */ - template?: Maybe; - /** Connection between the Post type and the TermNode type */ - terms?: Maybe; - /** The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made. */ - title?: Maybe; - /** URLs queued to be pinged. */ - toPing?: Maybe>>; - /** Get specific translation version of this object */ - translation?: Maybe; - /** List all translated versions of this post */ - translations?: Maybe>>; - /** The unique resource identifier path */ - uri?: Maybe; -}; - +export type Post = ContentNode & + DatabaseIdentifier & + MenuItemLinkable & + Node & + NodeWithAuthor & + NodeWithComments & + NodeWithContentEditor & + NodeWithExcerpt & + NodeWithFeaturedImage & + NodeWithRevisions & + NodeWithTemplate & + NodeWithTitle & + NodeWithTrackbacks & + Previewable & + UniformResourceIdentifiable & + WithAcfRecords & { + __typename?: 'Post' + /** Connection between the NodeWithAuthor type and the User type */ + author?: Maybe + /** The database identifier of the author of the node */ + authorDatabaseId?: Maybe + /** The globally unique identifier of the author of the node */ + authorId?: Maybe + /** Connection between the Post type and the category type */ + categories?: Maybe + /** The number of comments. Even though WPGraphQL denotes this field as an integer, in WordPress this field should be saved as a numeric string for compatibility. */ + commentCount?: Maybe + /** Whether the comments are open or closed for this particular post. */ + commentStatus?: Maybe + /** Connection between the Post type and the Comment type */ + comments?: Maybe + /** The content of the post. */ + content?: Maybe + /** Connection between the ContentNode type and the ContentType type */ + contentType?: Maybe + /** The name of the Content Type the node belongs to */ + contentTypeName: Scalars['String']['output'] + /** The unique identifier stored in the database */ + databaseId: Scalars['Int']['output'] + /** Post publishing date. */ + date?: Maybe + /** The publishing date set in GMT. */ + dateGmt?: Maybe + /** The desired slug of the post */ + desiredSlug?: Maybe + /** If a user has edited the node within the past 15 seconds, this will return the user that last edited. Null if the edit lock doesn't exist or is greater than 15 seconds */ + editingLockedBy?: Maybe + /** The RSS enclosure for the object */ + enclosure?: Maybe + /** Connection between the ContentNode type and the EnqueuedScript type */ + enqueuedScripts?: Maybe + /** Connection between the ContentNode type and the EnqueuedStylesheet type */ + enqueuedStylesheets?: Maybe + /** The excerpt of the post. */ + excerpt?: Maybe + /** Connection between the NodeWithFeaturedImage type and the MediaItem type */ + featuredImage?: Maybe + /** The database identifier for the featured image node assigned to the content node */ + featuredImageDatabaseId?: Maybe + /** Globally unique ID of the featured image assigned to the node */ + featuredImageId?: Maybe + /** The global unique identifier for this post. This currently matches the value stored in WP_Post->guid and the guid column in the "post_objects" database table. */ + guid?: Maybe + /** Whether the post object is password protected. */ + hasPassword?: Maybe + /** The globally unique identifier of the post object. */ + id: Scalars['ID']['output'] + /** Whether the node is a Comment */ + isComment: Scalars['Boolean']['output'] + /** Whether the node is a Content Node */ + isContentNode: Scalars['Boolean']['output'] + /** Whether the node represents the front page. */ + isFrontPage: Scalars['Boolean']['output'] + /** Whether the node represents the blog page. */ + isPostsPage: Scalars['Boolean']['output'] + /** Whether the object is a node in the preview state */ + isPreview?: Maybe + /** Whether the object is restricted from the current viewer */ + isRestricted?: Maybe + /** True if the node is a revision of another node */ + isRevision?: Maybe + /** Whether this page is sticky */ + isSticky: Scalars['Boolean']['output'] + /** Whether the node is a Term */ + isTermNode: Scalars['Boolean']['output'] + /** Polylang language */ + language?: Maybe + /** The user that most recently edited the node */ + lastEditedBy?: Maybe + /** The permalink of the post */ + link?: Maybe + /** The local modified time for a post. If a post was recently updated the modified field will change to match the corresponding time. */ + modified?: Maybe + /** The GMT modified time for a post. If a post was recently updated the modified field will change to match the corresponding time in GMT. */ + modifiedGmt?: Maybe + /** The password for the post object. */ + password?: Maybe + /** Whether the pings are open or closed for this particular post. */ + pingStatus?: Maybe + /** URLs that have been pinged. */ + pinged?: Maybe>> + /** Connection between the Post type and the postFormat type */ + postFormats?: Maybe + /** + * The id field matches the WP_Post->ID field. + * @deprecated Deprecated in favor of the databaseId field + */ + postId: Scalars['Int']['output'] + /** Connection between the Post type and the post type */ + preview?: Maybe + /** The database id of the preview node */ + previewRevisionDatabaseId?: Maybe + /** Whether the object is a node in the preview state */ + previewRevisionId?: Maybe + /** Fields of the Records ACF Field Group */ + records?: Maybe + /** If the current node is a revision, this field exposes the node this is a revision of. Returns null if the node is not a revision of another node. */ + revisionOf?: Maybe + /** Connection between the Post type and the post type */ + revisions?: Maybe + /** The Yoast SEO data of the ContentNode */ + seo?: Maybe + /** The uri slug for the post. This is equivalent to the WP_Post->post_name field and the post_name column in the database for the "post_objects" table. */ + slug?: Maybe + /** The current status of the object */ + status?: Maybe + /** Connection between the Post type and the tag type */ + tags?: Maybe + /** The template assigned to the node */ + template?: Maybe + /** Connection between the Post type and the TermNode type */ + terms?: Maybe + /** The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made. */ + title?: Maybe + /** URLs queued to be pinged. */ + toPing?: Maybe>> + /** Get specific translation version of this object */ + translation?: Maybe + /** List all translated versions of this post */ + translations?: Maybe>> + /** The unique resource identifier path */ + uri?: Maybe + } /** The post type */ export type PostCategoriesArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The post type */ export type PostCommentsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The post type */ export type PostContentArgs = { - format?: InputMaybe; -}; - + format?: InputMaybe +} /** The post type */ export type PostEnqueuedScriptsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** The post type */ export type PostEnqueuedStylesheetsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** The post type */ export type PostExcerptArgs = { - format?: InputMaybe; -}; - + format?: InputMaybe +} /** The post type */ export type PostPostFormatsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The post type */ export type PostRevisionsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The post type */ export type PostTagsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The post type */ export type PostTermsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The post type */ export type PostTitleArgs = { - format?: InputMaybe; -}; - + format?: InputMaybe +} /** The post type */ export type PostTranslationArgs = { - language: LanguageCodeEnum; -}; + language: LanguageCodeEnum +} /** Set relationships between the post to categories */ export type PostCategoriesInput = { /** If true, this will append the category to existing related categories. If false, this will replace existing relationships. Default true. */ - append?: InputMaybe; + append?: InputMaybe /** The input list of items to set. */ - nodes?: InputMaybe>>; -}; + nodes?: InputMaybe>> +} /** List of categories to connect the post to. If an ID is set, it will be used to create the connection. If not, it will look for a slug. If neither are valid existing terms, and the site is configured to allow terms to be created during post mutations, a term will be created using the Name if it exists in the input, then fallback to the slug if it exists. */ export type PostCategoriesNodeInput = { /** The description of the category. This field is used to set a description of the category if a new one is created during the mutation. */ - description?: InputMaybe; + description?: InputMaybe /** The ID of the category. If present, this will be used to connect to the post. If no existing category exists with this ID, no connection will be made. */ - id?: InputMaybe; + id?: InputMaybe /** The name of the category. This field is used to create a new term, if term creation is enabled in nested mutations, and if one does not already exist with the provided slug or ID or if a slug or ID is not provided. If no name is included and a term is created, the creation will fallback to the slug field. */ - name?: InputMaybe; + name?: InputMaybe /** The slug of the category. If no ID is present, this field will be used to make a connection. If no existing term exists with this slug, this field will be used as a fallback to the Name field when creating a new term to connect to, if term creation is enabled as a nested mutation. */ - slug?: InputMaybe; -}; + slug?: InputMaybe +} /** Connection to post Nodes */ export type PostConnection = { /** A list of edges (relational context) between RootQuery and connected post Nodes */ - edges: Array; + edges: Array /** A list of connected post Nodes */ - nodes: Array; + nodes: Array /** Information about pagination in a connection. */ - pageInfo: PostConnectionPageInfo; -}; + pageInfo: PostConnectionPageInfo +} /** Edge between a Node and a connected post */ export type PostConnectionEdge = { /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; + cursor?: Maybe /** The connected post Node */ - node: Post; -}; + node: Post +} /** Page Info on the connected PostConnectionEdge */ export type PostConnectionPageInfo = { /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; + endCursor?: Maybe /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; + hasNextPage: Scalars['Boolean']['output'] /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; + hasPreviousPage: Scalars['Boolean']['output'] /** Raw schema for page */ - seo?: Maybe; + seo?: Maybe /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; + startCursor?: Maybe +} /** The postFormat type */ -export type PostFormat = DatabaseIdentifier & Node & TermNode & UniformResourceIdentifiable & { - __typename?: 'PostFormat'; - /** Connection between the PostFormat type and the ContentNode type */ - contentNodes?: Maybe; - /** The number of objects connected to the object */ - count?: Maybe; - /** The unique identifier stored in the database */ - databaseId: Scalars['Int']['output']; - /** The description of the object */ - description?: Maybe; - /** Connection between the TermNode type and the EnqueuedScript type */ - enqueuedScripts?: Maybe; - /** Connection between the TermNode type and the EnqueuedStylesheet type */ - enqueuedStylesheets?: Maybe; - /** The globally unique ID for the object */ - id: Scalars['ID']['output']; - /** Whether the node is a Comment */ - isComment: Scalars['Boolean']['output']; - /** Whether the node is a Content Node */ - isContentNode: Scalars['Boolean']['output']; - /** Whether the node represents the front page. */ - isFrontPage: Scalars['Boolean']['output']; - /** Whether the node represents the blog page. */ - isPostsPage: Scalars['Boolean']['output']; - /** Whether the object is restricted from the current viewer */ - isRestricted?: Maybe; - /** Whether the node is a Term */ - isTermNode: Scalars['Boolean']['output']; - /** The link to the term */ - link?: Maybe; - /** The human friendly name of the object. */ - name?: Maybe; - /** - * The id field matches the WP_Post->ID field. - * @deprecated Deprecated in favor of databaseId - */ - postFormatId?: Maybe; - /** Connection between the PostFormat type and the post type */ - posts?: Maybe; - /** The Yoast SEO data of the Форматы taxonomy. */ - seo?: Maybe; - /** An alphanumeric identifier for the object unique to its type. */ - slug?: Maybe; - /** Connection between the PostFormat type and the Taxonomy type */ - taxonomy?: Maybe; - /** The name of the taxonomy that the object is associated with */ - taxonomyName?: Maybe; - /** The ID of the term group that this term object belongs to */ - termGroupId?: Maybe; - /** The taxonomy ID that the object is associated with */ - termTaxonomyId?: Maybe; - /** The unique resource identifier path */ - uri?: Maybe; -}; - +export type PostFormat = DatabaseIdentifier & + Node & + TermNode & + UniformResourceIdentifiable & { + __typename?: 'PostFormat' + /** Connection between the PostFormat type and the ContentNode type */ + contentNodes?: Maybe + /** The number of objects connected to the object */ + count?: Maybe + /** The unique identifier stored in the database */ + databaseId: Scalars['Int']['output'] + /** The description of the object */ + description?: Maybe + /** Connection between the TermNode type and the EnqueuedScript type */ + enqueuedScripts?: Maybe + /** Connection between the TermNode type and the EnqueuedStylesheet type */ + enqueuedStylesheets?: Maybe + /** The globally unique ID for the object */ + id: Scalars['ID']['output'] + /** Whether the node is a Comment */ + isComment: Scalars['Boolean']['output'] + /** Whether the node is a Content Node */ + isContentNode: Scalars['Boolean']['output'] + /** Whether the node represents the front page. */ + isFrontPage: Scalars['Boolean']['output'] + /** Whether the node represents the blog page. */ + isPostsPage: Scalars['Boolean']['output'] + /** Whether the object is restricted from the current viewer */ + isRestricted?: Maybe + /** Whether the node is a Term */ + isTermNode: Scalars['Boolean']['output'] + /** The link to the term */ + link?: Maybe + /** The human friendly name of the object. */ + name?: Maybe + /** + * The id field matches the WP_Post->ID field. + * @deprecated Deprecated in favor of databaseId + */ + postFormatId?: Maybe + /** Connection between the PostFormat type and the post type */ + posts?: Maybe + /** The Yoast SEO data of the Форматы taxonomy. */ + seo?: Maybe + /** An alphanumeric identifier for the object unique to its type. */ + slug?: Maybe + /** Connection between the PostFormat type and the Taxonomy type */ + taxonomy?: Maybe + /** The name of the taxonomy that the object is associated with */ + taxonomyName?: Maybe + /** The ID of the term group that this term object belongs to */ + termGroupId?: Maybe + /** The taxonomy ID that the object is associated with */ + termTaxonomyId?: Maybe + /** The unique resource identifier path */ + uri?: Maybe + } /** The postFormat type */ export type PostFormatContentNodesArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The postFormat type */ export type PostFormatEnqueuedScriptsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** The postFormat type */ export type PostFormatEnqueuedStylesheetsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** The postFormat type */ export type PostFormatPostsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** Connection to postFormat Nodes */ export type PostFormatConnection = { /** A list of edges (relational context) between RootQuery and connected postFormat Nodes */ - edges: Array; + edges: Array /** A list of connected postFormat Nodes */ - nodes: Array; + nodes: Array /** Information about pagination in a connection. */ - pageInfo: PostFormatConnectionPageInfo; -}; + pageInfo: PostFormatConnectionPageInfo +} /** Edge between a Node and a connected postFormat */ export type PostFormatConnectionEdge = { /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; + cursor?: Maybe /** The connected postFormat Node */ - node: PostFormat; -}; + node: PostFormat +} /** Page Info on the connected PostFormatConnectionEdge */ export type PostFormatConnectionPageInfo = { /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; + endCursor?: Maybe /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; + hasNextPage: Scalars['Boolean']['output'] /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; + hasPreviousPage: Scalars['Boolean']['output'] /** Raw schema for page */ - seo?: Maybe; + seo?: Maybe /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; + startCursor?: Maybe +} /** The Type of Identifier used to fetch a single resource. Default is ID. */ export enum PostFormatIdType { @@ -8557,193 +8783,203 @@ export enum PostFormatIdType { /** Url friendly name of the node */ Slug = 'SLUG', /** The URI for the node */ - Uri = 'URI' + Uri = 'URI', } /** Connection between the PostFormat type and the ContentNode type */ -export type PostFormatToContentNodeConnection = Connection & ContentNodeConnection & { - __typename?: 'PostFormatToContentNodeConnection'; - /** Edges for the PostFormatToContentNodeConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: PostFormatToContentNodeConnectionPageInfo; -}; +export type PostFormatToContentNodeConnection = Connection & + ContentNodeConnection & { + __typename?: 'PostFormatToContentNodeConnection' + /** Edges for the PostFormatToContentNodeConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: PostFormatToContentNodeConnectionPageInfo + } /** An edge in a connection */ -export type PostFormatToContentNodeConnectionEdge = ContentNodeConnectionEdge & Edge & { - __typename?: 'PostFormatToContentNodeConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: ContentNode; -}; +export type PostFormatToContentNodeConnectionEdge = ContentNodeConnectionEdge & + Edge & { + __typename?: 'PostFormatToContentNodeConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: ContentNode + } /** Page Info on the "PostFormatToContentNodeConnection" */ -export type PostFormatToContentNodeConnectionPageInfo = ContentNodeConnectionPageInfo & PageInfo & WpPageInfo & { - __typename?: 'PostFormatToContentNodeConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type PostFormatToContentNodeConnectionPageInfo = ContentNodeConnectionPageInfo & + PageInfo & + WpPageInfo & { + __typename?: 'PostFormatToContentNodeConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the PostFormatToContentNodeConnection connection */ export type PostFormatToContentNodeConnectionWhereArgs = { /** The Types of content to filter */ - contentTypes?: InputMaybe>>; + contentTypes?: InputMaybe>> /** Filter the connection based on dates */ - dateQuery?: InputMaybe; + dateQuery?: InputMaybe /** True for objects with passwords; False for objects without passwords; null for all objects with or without passwords */ - hasPassword?: InputMaybe; + hasPassword?: InputMaybe /** Specific database ID of the object */ - id?: InputMaybe; + id?: InputMaybe /** Array of IDs for the objects to retrieve */ - in?: InputMaybe>>; + in?: InputMaybe>> /** Get objects with a specific mimeType property */ - mimeType?: InputMaybe; + mimeType?: InputMaybe /** Slug / post_name of the object */ - name?: InputMaybe; + name?: InputMaybe /** Specify objects to retrieve. Use slugs */ - nameIn?: InputMaybe>>; + nameIn?: InputMaybe>> /** Specify IDs NOT to retrieve. If this is used in the same query as "in", it will be ignored */ - notIn?: InputMaybe>>; + notIn?: InputMaybe>> /** What parameter to use to order the objects by. */ - orderby?: InputMaybe>>; + orderby?: InputMaybe>> /** Use ID to return only children. Use 0 to return only top-level items */ - parent?: InputMaybe; + parent?: InputMaybe /** Specify objects whose parent is in an array */ - parentIn?: InputMaybe>>; + parentIn?: InputMaybe>> /** Specify posts whose parent is not in an array */ - parentNotIn?: InputMaybe>>; + parentNotIn?: InputMaybe>> /** Show posts with a specific password. */ - password?: InputMaybe; + password?: InputMaybe /** Show Posts based on a keyword search */ - search?: InputMaybe; + search?: InputMaybe /** Retrieve posts where post status is in an array. */ - stati?: InputMaybe>>; + stati?: InputMaybe>> /** Show posts with a specific status. */ - status?: InputMaybe; + status?: InputMaybe /** Title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** Connection between the PostFormat type and the post type */ -export type PostFormatToPostConnection = Connection & PostConnection & { - __typename?: 'PostFormatToPostConnection'; - /** Edges for the PostFormatToPostConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: PostFormatToPostConnectionPageInfo; -}; +export type PostFormatToPostConnection = Connection & + PostConnection & { + __typename?: 'PostFormatToPostConnection' + /** Edges for the PostFormatToPostConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: PostFormatToPostConnectionPageInfo + } /** An edge in a connection */ -export type PostFormatToPostConnectionEdge = Edge & PostConnectionEdge & { - __typename?: 'PostFormatToPostConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: Post; -}; +export type PostFormatToPostConnectionEdge = Edge & + PostConnectionEdge & { + __typename?: 'PostFormatToPostConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: Post + } /** Page Info on the "PostFormatToPostConnection" */ -export type PostFormatToPostConnectionPageInfo = PageInfo & PostConnectionPageInfo & WpPageInfo & { - __typename?: 'PostFormatToPostConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type PostFormatToPostConnectionPageInfo = PageInfo & + PostConnectionPageInfo & + WpPageInfo & { + __typename?: 'PostFormatToPostConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the PostFormatToPostConnection connection */ export type PostFormatToPostConnectionWhereArgs = { /** The user that's connected as the author of the object. Use the userId for the author object. */ - author?: InputMaybe; + author?: InputMaybe /** Find objects connected to author(s) in the array of author's userIds */ - authorIn?: InputMaybe>>; + authorIn?: InputMaybe>> /** Find objects connected to the author by the author's nicename */ - authorName?: InputMaybe; + authorName?: InputMaybe /** Find objects NOT connected to author(s) in the array of author's userIds */ - authorNotIn?: InputMaybe>>; + authorNotIn?: InputMaybe>> /** Category ID */ - categoryId?: InputMaybe; + categoryId?: InputMaybe /** Array of category IDs, used to display objects from one category OR another */ - categoryIn?: InputMaybe>>; + categoryIn?: InputMaybe>> /** Use Category Slug */ - categoryName?: InputMaybe; + categoryName?: InputMaybe /** Array of category IDs, used to display objects from one category OR another */ - categoryNotIn?: InputMaybe>>; + categoryNotIn?: InputMaybe>> /** Filter the connection based on dates */ - dateQuery?: InputMaybe; + dateQuery?: InputMaybe /** True for objects with passwords; False for objects without passwords; null for all objects with or without passwords */ - hasPassword?: InputMaybe; + hasPassword?: InputMaybe /** Specific database ID of the object */ - id?: InputMaybe; + id?: InputMaybe /** Array of IDs for the objects to retrieve */ - in?: InputMaybe>>; + in?: InputMaybe>> /** Get objects with a specific mimeType property */ - mimeType?: InputMaybe; + mimeType?: InputMaybe /** Slug / post_name of the object */ - name?: InputMaybe; + name?: InputMaybe /** Specify objects to retrieve. Use slugs */ - nameIn?: InputMaybe>>; + nameIn?: InputMaybe>> /** Specify IDs NOT to retrieve. If this is used in the same query as "in", it will be ignored */ - notIn?: InputMaybe>>; + notIn?: InputMaybe>> /** What parameter to use to order the objects by. */ - orderby?: InputMaybe>>; + orderby?: InputMaybe>> /** Use ID to return only children. Use 0 to return only top-level items */ - parent?: InputMaybe; + parent?: InputMaybe /** Specify objects whose parent is in an array */ - parentIn?: InputMaybe>>; + parentIn?: InputMaybe>> /** Specify posts whose parent is not in an array */ - parentNotIn?: InputMaybe>>; + parentNotIn?: InputMaybe>> /** Show posts with a specific password. */ - password?: InputMaybe; + password?: InputMaybe /** Show Posts based on a keyword search */ - search?: InputMaybe; + search?: InputMaybe /** Retrieve posts where post status is in an array. */ - stati?: InputMaybe>>; + stati?: InputMaybe>> /** Show posts with a specific status. */ - status?: InputMaybe; + status?: InputMaybe /** Tag Slug */ - tag?: InputMaybe; + tag?: InputMaybe /** Use Tag ID */ - tagId?: InputMaybe; + tagId?: InputMaybe /** Array of tag IDs, used to display objects from one tag OR another */ - tagIn?: InputMaybe>>; + tagIn?: InputMaybe>> /** Array of tag IDs, used to display objects from one tag OR another */ - tagNotIn?: InputMaybe>>; + tagNotIn?: InputMaybe>> /** Array of tag slugs, used to display objects from one tag AND another */ - tagSlugAnd?: InputMaybe>>; + tagSlugAnd?: InputMaybe>> /** Array of tag slugs, used to include objects in ANY specified tags */ - tagSlugIn?: InputMaybe>>; + tagSlugIn?: InputMaybe>> /** Title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** Connection between the PostFormat type and the Taxonomy type */ -export type PostFormatToTaxonomyConnectionEdge = Edge & OneToOneConnection & TaxonomyConnectionEdge & { - __typename?: 'PostFormatToTaxonomyConnectionEdge'; - /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; - /** The node of the connection, without the edges */ - node: Taxonomy; -}; +export type PostFormatToTaxonomyConnectionEdge = Edge & + OneToOneConnection & + TaxonomyConnectionEdge & { + __typename?: 'PostFormatToTaxonomyConnectionEdge' + /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ + cursor?: Maybe + /** The node of the connection, without the edges */ + node: Taxonomy + } /** The Type of Identifier used to fetch a single resource. Default is ID. */ export enum PostIdType { @@ -8754,7 +8990,7 @@ export enum PostIdType { /** Identify a resource by the slug. Available to non-hierarchcial Types where the slug is a unique identifier. */ Slug = 'SLUG', /** Identify a resource by the URI. */ - Uri = 'URI' + Uri = 'URI', } /** The format of post field data. */ @@ -8762,7 +8998,7 @@ export enum PostObjectFieldFormatEnum { /** Provide the field value directly from database. Null on unauthenticated requests. */ Raw = 'RAW', /** Provide the field value as rendered by WordPress. Default. */ - Rendered = 'RENDERED' + Rendered = 'RENDERED', } /** The column to use when filtering by date */ @@ -8770,7 +9006,7 @@ export enum PostObjectsConnectionDateColumnEnum { /** The date the comment was created in local time. */ Date = 'DATE', /** The most recent modification date of the comment. */ - Modified = 'MODIFIED' + Modified = 'MODIFIED', } /** Field to order the connection by */ @@ -8794,36 +9030,36 @@ export enum PostObjectsConnectionOrderbyEnum { /** Order by slug */ Slug = 'SLUG', /** Order by title */ - Title = 'TITLE' + Title = 'TITLE', } /** Options for ordering the connection */ export type PostObjectsConnectionOrderbyInput = { /** The field to order the connection by */ - field: PostObjectsConnectionOrderbyEnum; + field: PostObjectsConnectionOrderbyEnum /** Possible directions in which to order a list of items */ - order: OrderEnum; -}; + order: OrderEnum +} /** Set relationships between the post to postFormats */ export type PostPostFormatsInput = { /** If true, this will append the postFormat to existing related postFormats. If false, this will replace existing relationships. Default true. */ - append?: InputMaybe; + append?: InputMaybe /** The input list of items to set. */ - nodes?: InputMaybe>>; -}; + nodes?: InputMaybe>> +} /** List of postFormats to connect the post to. If an ID is set, it will be used to create the connection. If not, it will look for a slug. If neither are valid existing terms, and the site is configured to allow terms to be created during post mutations, a term will be created using the Name if it exists in the input, then fallback to the slug if it exists. */ export type PostPostFormatsNodeInput = { /** The description of the postFormat. This field is used to set a description of the postFormat if a new one is created during the mutation. */ - description?: InputMaybe; + description?: InputMaybe /** The ID of the postFormat. If present, this will be used to connect to the post. If no existing postFormat exists with this ID, no connection will be made. */ - id?: InputMaybe; + id?: InputMaybe /** The name of the postFormat. This field is used to create a new term, if term creation is enabled in nested mutations, and if one does not already exist with the provided slug or ID or if a slug or ID is not provided. If no name is included and a term is created, the creation will fallback to the slug field. */ - name?: InputMaybe; + name?: InputMaybe /** The slug of the postFormat. If no ID is present, this field will be used to make a connection. If no existing term exists with this slug, this field will be used as a fallback to the Name field when creating a new term to connect to, if term creation is enabled as a nested mutation. */ - slug?: InputMaybe; -}; + slug?: InputMaybe +} /** The status of the object. */ export enum PostStatusEnum { @@ -8852,823 +9088,854 @@ export enum PostStatusEnum { /** Objects with the request-pending status */ RequestPending = 'REQUEST_PENDING', /** Objects with the trash status */ - Trash = 'TRASH' + Trash = 'TRASH', } /** Set relationships between the post to tags */ export type PostTagsInput = { /** If true, this will append the tag to existing related tags. If false, this will replace existing relationships. Default true. */ - append?: InputMaybe; + append?: InputMaybe /** The input list of items to set. */ - nodes?: InputMaybe>>; -}; + nodes?: InputMaybe>> +} /** List of tags to connect the post to. If an ID is set, it will be used to create the connection. If not, it will look for a slug. If neither are valid existing terms, and the site is configured to allow terms to be created during post mutations, a term will be created using the Name if it exists in the input, then fallback to the slug if it exists. */ export type PostTagsNodeInput = { /** The description of the tag. This field is used to set a description of the tag if a new one is created during the mutation. */ - description?: InputMaybe; + description?: InputMaybe /** The ID of the tag. If present, this will be used to connect to the post. If no existing tag exists with this ID, no connection will be made. */ - id?: InputMaybe; + id?: InputMaybe /** The name of the tag. This field is used to create a new term, if term creation is enabled in nested mutations, and if one does not already exist with the provided slug or ID or if a slug or ID is not provided. If no name is included and a term is created, the creation will fallback to the slug field. */ - name?: InputMaybe; + name?: InputMaybe /** The slug of the tag. If no ID is present, this field will be used to make a connection. If no existing term exists with this slug, this field will be used as a fallback to the Name field when creating a new term to connect to, if term creation is enabled as a nested mutation. */ - slug?: InputMaybe; -}; + slug?: InputMaybe +} /** Connection between the Post type and the category type */ -export type PostToCategoryConnection = CategoryConnection & Connection & { - __typename?: 'PostToCategoryConnection'; - /** Edges for the PostToCategoryConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: PostToCategoryConnectionPageInfo; -}; +export type PostToCategoryConnection = CategoryConnection & + Connection & { + __typename?: 'PostToCategoryConnection' + /** Edges for the PostToCategoryConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: PostToCategoryConnectionPageInfo + } /** An edge in a connection */ -export type PostToCategoryConnectionEdge = CategoryConnectionEdge & Edge & { - __typename?: 'PostToCategoryConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The Yoast SEO Primary category */ - isPrimary?: Maybe; - /** The item at the end of the edge */ - node: Category; -}; +export type PostToCategoryConnectionEdge = CategoryConnectionEdge & + Edge & { + __typename?: 'PostToCategoryConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The Yoast SEO Primary category */ + isPrimary?: Maybe + /** The item at the end of the edge */ + node: Category + } /** Page Info on the "PostToCategoryConnection" */ -export type PostToCategoryConnectionPageInfo = CategoryConnectionPageInfo & PageInfo & WpPageInfo & { - __typename?: 'PostToCategoryConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type PostToCategoryConnectionPageInfo = CategoryConnectionPageInfo & + PageInfo & + WpPageInfo & { + __typename?: 'PostToCategoryConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the PostToCategoryConnection connection */ export type PostToCategoryConnectionWhereArgs = { /** Unique cache key to be produced when this query is stored in an object cache. Default is 'core'. */ - cacheDomain?: InputMaybe; + cacheDomain?: InputMaybe /** Term ID to retrieve child terms of. If multiple taxonomies are passed, $child_of is ignored. Default 0. */ - childOf?: InputMaybe; + childOf?: InputMaybe /** True to limit results to terms that have no children. This parameter has no effect on non-hierarchical taxonomies. Default false. */ - childless?: InputMaybe; + childless?: InputMaybe /** Retrieve terms where the description is LIKE the input value. Default empty. */ - descriptionLike?: InputMaybe; + descriptionLike?: InputMaybe /** Array of term ids to exclude. If $include is non-empty, $exclude is ignored. Default empty array. */ - exclude?: InputMaybe>>; + exclude?: InputMaybe>> /** Array of term ids to exclude along with all of their descendant terms. If $include is non-empty, $exclude_tree is ignored. Default empty array. */ - excludeTree?: InputMaybe>>; + excludeTree?: InputMaybe>> /** Whether to hide terms not assigned to any posts. Accepts true or false. Default false */ - hideEmpty?: InputMaybe; + hideEmpty?: InputMaybe /** Whether to include terms that have non-empty descendants (even if $hide_empty is set to true). Default true. */ - hierarchical?: InputMaybe; + hierarchical?: InputMaybe /** Array of term ids to include. Default empty array. */ - include?: InputMaybe>>; + include?: InputMaybe>> /** Array of names to return term(s) for. Default empty. */ - name?: InputMaybe>>; + name?: InputMaybe>> /** Retrieve terms where the name is LIKE the input value. Default empty. */ - nameLike?: InputMaybe; + nameLike?: InputMaybe /** Array of object IDs. Results will be limited to terms associated with these objects. */ - objectIds?: InputMaybe>>; + objectIds?: InputMaybe>> /** Direction the connection should be ordered in */ - order?: InputMaybe; + order?: InputMaybe /** Field(s) to order terms by. Defaults to 'name'. */ - orderby?: InputMaybe; + orderby?: InputMaybe /** Whether to pad the quantity of a term's children in the quantity of each term's "count" object variable. Default false. */ - padCounts?: InputMaybe; + padCounts?: InputMaybe /** Parent term ID to retrieve direct-child terms of. Default empty. */ - parent?: InputMaybe; + parent?: InputMaybe /** Search criteria to match terms. Will be SQL-formatted with wildcards before and after. Default empty. */ - search?: InputMaybe; + search?: InputMaybe /** Array of slugs to return term(s) for. Default empty. */ - slug?: InputMaybe>>; + slug?: InputMaybe>> /** Array of term taxonomy IDs, to match when querying terms. */ - termTaxonomId?: InputMaybe>>; + termTaxonomId?: InputMaybe>> /** Array of term taxonomy IDs, to match when querying terms. */ - termTaxonomyId?: InputMaybe>>; + termTaxonomyId?: InputMaybe>> /** Whether to prime meta caches for matched terms. Default true. */ - updateTermMetaCache?: InputMaybe; -}; + updateTermMetaCache?: InputMaybe +} /** Connection between the Post type and the Comment type */ -export type PostToCommentConnection = CommentConnection & Connection & { - __typename?: 'PostToCommentConnection'; - /** Edges for the PostToCommentConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: PostToCommentConnectionPageInfo; -}; +export type PostToCommentConnection = CommentConnection & + Connection & { + __typename?: 'PostToCommentConnection' + /** Edges for the PostToCommentConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: PostToCommentConnectionPageInfo + } /** An edge in a connection */ -export type PostToCommentConnectionEdge = CommentConnectionEdge & Edge & { - __typename?: 'PostToCommentConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: Comment; -}; +export type PostToCommentConnectionEdge = CommentConnectionEdge & + Edge & { + __typename?: 'PostToCommentConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: Comment + } /** Page Info on the "PostToCommentConnection" */ -export type PostToCommentConnectionPageInfo = CommentConnectionPageInfo & PageInfo & WpPageInfo & { - __typename?: 'PostToCommentConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type PostToCommentConnectionPageInfo = CommentConnectionPageInfo & + PageInfo & + WpPageInfo & { + __typename?: 'PostToCommentConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the PostToCommentConnection connection */ export type PostToCommentConnectionWhereArgs = { /** Comment author email address. */ - authorEmail?: InputMaybe; + authorEmail?: InputMaybe /** Array of author IDs to include comments for. */ - authorIn?: InputMaybe>>; + authorIn?: InputMaybe>> /** Array of author IDs to exclude comments for. */ - authorNotIn?: InputMaybe>>; + authorNotIn?: InputMaybe>> /** Comment author URL. */ - authorUrl?: InputMaybe; + authorUrl?: InputMaybe /** Array of comment IDs to include. */ - commentIn?: InputMaybe>>; + commentIn?: InputMaybe>> /** Array of IDs of users whose unapproved comments will be returned by the query regardless of status. */ - commentNotIn?: InputMaybe>>; + commentNotIn?: InputMaybe>> /** Include comments of a given type. */ - commentType?: InputMaybe; + commentType?: InputMaybe /** Include comments from a given array of comment types. */ - commentTypeIn?: InputMaybe>>; + commentTypeIn?: InputMaybe>> /** Exclude comments from a given array of comment types. */ - commentTypeNotIn?: InputMaybe; + commentTypeNotIn?: InputMaybe /** Content object author ID to limit results by. */ - contentAuthor?: InputMaybe>>; + contentAuthor?: InputMaybe>> /** Array of author IDs to retrieve comments for. */ - contentAuthorIn?: InputMaybe>>; + contentAuthorIn?: InputMaybe>> /** Array of author IDs *not* to retrieve comments for. */ - contentAuthorNotIn?: InputMaybe>>; + contentAuthorNotIn?: InputMaybe>> /** Limit results to those affiliated with a given content object ID. */ - contentId?: InputMaybe; + contentId?: InputMaybe /** Array of content object IDs to include affiliated comments for. */ - contentIdIn?: InputMaybe>>; + contentIdIn?: InputMaybe>> /** Array of content object IDs to exclude affiliated comments for. */ - contentIdNotIn?: InputMaybe>>; + contentIdNotIn?: InputMaybe>> /** Content object name (i.e. slug ) to retrieve affiliated comments for. */ - contentName?: InputMaybe; + contentName?: InputMaybe /** Content Object parent ID to retrieve affiliated comments for. */ - contentParent?: InputMaybe; + contentParent?: InputMaybe /** Array of content object statuses to retrieve affiliated comments for. Pass 'any' to match any value. */ - contentStatus?: InputMaybe>>; + contentStatus?: InputMaybe>> /** Content object type or array of types to retrieve affiliated comments for. Pass 'any' to match any value. */ - contentType?: InputMaybe>>; + contentType?: InputMaybe>> /** Array of IDs or email addresses of users whose unapproved comments will be returned by the query regardless of $status. Default empty */ - includeUnapproved?: InputMaybe>>; + includeUnapproved?: InputMaybe>> /** Karma score to retrieve matching comments for. */ - karma?: InputMaybe; + karma?: InputMaybe /** The cardinality of the order of the connection */ - order?: InputMaybe; + order?: InputMaybe /** Field to order the comments by. */ - orderby?: InputMaybe; + orderby?: InputMaybe /** Parent ID of comment to retrieve children of. */ - parent?: InputMaybe; + parent?: InputMaybe /** Array of parent IDs of comments to retrieve children for. */ - parentIn?: InputMaybe>>; + parentIn?: InputMaybe>> /** Array of parent IDs of comments *not* to retrieve children for. */ - parentNotIn?: InputMaybe>>; + parentNotIn?: InputMaybe>> /** Search term(s) to retrieve matching comments for. */ - search?: InputMaybe; + search?: InputMaybe /** Comment status to limit results by. */ - status?: InputMaybe; + status?: InputMaybe /** Include comments for a specific user ID. */ - userId?: InputMaybe; -}; + userId?: InputMaybe +} /** Connection between the Post type and the postFormat type */ -export type PostToPostFormatConnection = Connection & PostFormatConnection & { - __typename?: 'PostToPostFormatConnection'; - /** Edges for the PostToPostFormatConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: PostToPostFormatConnectionPageInfo; -}; +export type PostToPostFormatConnection = Connection & + PostFormatConnection & { + __typename?: 'PostToPostFormatConnection' + /** Edges for the PostToPostFormatConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: PostToPostFormatConnectionPageInfo + } /** An edge in a connection */ -export type PostToPostFormatConnectionEdge = Edge & PostFormatConnectionEdge & { - __typename?: 'PostToPostFormatConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The Yoast SEO Primary post_format */ - isPrimary?: Maybe; - /** The item at the end of the edge */ - node: PostFormat; -}; +export type PostToPostFormatConnectionEdge = Edge & + PostFormatConnectionEdge & { + __typename?: 'PostToPostFormatConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The Yoast SEO Primary post_format */ + isPrimary?: Maybe + /** The item at the end of the edge */ + node: PostFormat + } /** Page Info on the "PostToPostFormatConnection" */ -export type PostToPostFormatConnectionPageInfo = PageInfo & PostFormatConnectionPageInfo & WpPageInfo & { - __typename?: 'PostToPostFormatConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type PostToPostFormatConnectionPageInfo = PageInfo & + PostFormatConnectionPageInfo & + WpPageInfo & { + __typename?: 'PostToPostFormatConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the PostToPostFormatConnection connection */ export type PostToPostFormatConnectionWhereArgs = { /** Unique cache key to be produced when this query is stored in an object cache. Default is 'core'. */ - cacheDomain?: InputMaybe; + cacheDomain?: InputMaybe /** Term ID to retrieve child terms of. If multiple taxonomies are passed, $child_of is ignored. Default 0. */ - childOf?: InputMaybe; + childOf?: InputMaybe /** True to limit results to terms that have no children. This parameter has no effect on non-hierarchical taxonomies. Default false. */ - childless?: InputMaybe; + childless?: InputMaybe /** Retrieve terms where the description is LIKE the input value. Default empty. */ - descriptionLike?: InputMaybe; + descriptionLike?: InputMaybe /** Array of term ids to exclude. If $include is non-empty, $exclude is ignored. Default empty array. */ - exclude?: InputMaybe>>; + exclude?: InputMaybe>> /** Array of term ids to exclude along with all of their descendant terms. If $include is non-empty, $exclude_tree is ignored. Default empty array. */ - excludeTree?: InputMaybe>>; + excludeTree?: InputMaybe>> /** Whether to hide terms not assigned to any posts. Accepts true or false. Default false */ - hideEmpty?: InputMaybe; + hideEmpty?: InputMaybe /** Whether to include terms that have non-empty descendants (even if $hide_empty is set to true). Default true. */ - hierarchical?: InputMaybe; + hierarchical?: InputMaybe /** Array of term ids to include. Default empty array. */ - include?: InputMaybe>>; + include?: InputMaybe>> /** Array of names to return term(s) for. Default empty. */ - name?: InputMaybe>>; + name?: InputMaybe>> /** Retrieve terms where the name is LIKE the input value. Default empty. */ - nameLike?: InputMaybe; + nameLike?: InputMaybe /** Array of object IDs. Results will be limited to terms associated with these objects. */ - objectIds?: InputMaybe>>; + objectIds?: InputMaybe>> /** Direction the connection should be ordered in */ - order?: InputMaybe; + order?: InputMaybe /** Field(s) to order terms by. Defaults to 'name'. */ - orderby?: InputMaybe; + orderby?: InputMaybe /** Whether to pad the quantity of a term's children in the quantity of each term's "count" object variable. Default false. */ - padCounts?: InputMaybe; + padCounts?: InputMaybe /** Parent term ID to retrieve direct-child terms of. Default empty. */ - parent?: InputMaybe; + parent?: InputMaybe /** Search criteria to match terms. Will be SQL-formatted with wildcards before and after. Default empty. */ - search?: InputMaybe; + search?: InputMaybe /** Array of slugs to return term(s) for. Default empty. */ - slug?: InputMaybe>>; + slug?: InputMaybe>> /** Array of term taxonomy IDs, to match when querying terms. */ - termTaxonomId?: InputMaybe>>; + termTaxonomId?: InputMaybe>> /** Array of term taxonomy IDs, to match when querying terms. */ - termTaxonomyId?: InputMaybe>>; + termTaxonomyId?: InputMaybe>> /** Whether to prime meta caches for matched terms. Default true. */ - updateTermMetaCache?: InputMaybe; -}; + updateTermMetaCache?: InputMaybe +} /** Connection between the Post type and the post type */ -export type PostToPreviewConnectionEdge = Edge & OneToOneConnection & PostConnectionEdge & { - __typename?: 'PostToPreviewConnectionEdge'; - /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; - /** The node of the connection, without the edges */ - node: Post; -}; +export type PostToPreviewConnectionEdge = Edge & + OneToOneConnection & + PostConnectionEdge & { + __typename?: 'PostToPreviewConnectionEdge' + /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ + cursor?: Maybe + /** The node of the connection, without the edges */ + node: Post + } /** Connection between the Post type and the post type */ -export type PostToRevisionConnection = Connection & PostConnection & { - __typename?: 'PostToRevisionConnection'; - /** Edges for the PostToRevisionConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: PostToRevisionConnectionPageInfo; -}; +export type PostToRevisionConnection = Connection & + PostConnection & { + __typename?: 'PostToRevisionConnection' + /** Edges for the PostToRevisionConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: PostToRevisionConnectionPageInfo + } /** An edge in a connection */ -export type PostToRevisionConnectionEdge = Edge & PostConnectionEdge & { - __typename?: 'PostToRevisionConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: Post; -}; +export type PostToRevisionConnectionEdge = Edge & + PostConnectionEdge & { + __typename?: 'PostToRevisionConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: Post + } /** Page Info on the "PostToRevisionConnection" */ -export type PostToRevisionConnectionPageInfo = PageInfo & PostConnectionPageInfo & WpPageInfo & { - __typename?: 'PostToRevisionConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type PostToRevisionConnectionPageInfo = PageInfo & + PostConnectionPageInfo & + WpPageInfo & { + __typename?: 'PostToRevisionConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the PostToRevisionConnection connection */ export type PostToRevisionConnectionWhereArgs = { /** The user that's connected as the author of the object. Use the userId for the author object. */ - author?: InputMaybe; + author?: InputMaybe /** Find objects connected to author(s) in the array of author's userIds */ - authorIn?: InputMaybe>>; + authorIn?: InputMaybe>> /** Find objects connected to the author by the author's nicename */ - authorName?: InputMaybe; + authorName?: InputMaybe /** Find objects NOT connected to author(s) in the array of author's userIds */ - authorNotIn?: InputMaybe>>; + authorNotIn?: InputMaybe>> /** Category ID */ - categoryId?: InputMaybe; + categoryId?: InputMaybe /** Array of category IDs, used to display objects from one category OR another */ - categoryIn?: InputMaybe>>; + categoryIn?: InputMaybe>> /** Use Category Slug */ - categoryName?: InputMaybe; + categoryName?: InputMaybe /** Array of category IDs, used to display objects from one category OR another */ - categoryNotIn?: InputMaybe>>; + categoryNotIn?: InputMaybe>> /** Filter the connection based on dates */ - dateQuery?: InputMaybe; + dateQuery?: InputMaybe /** True for objects with passwords; False for objects without passwords; null for all objects with or without passwords */ - hasPassword?: InputMaybe; + hasPassword?: InputMaybe /** Specific database ID of the object */ - id?: InputMaybe; + id?: InputMaybe /** Array of IDs for the objects to retrieve */ - in?: InputMaybe>>; + in?: InputMaybe>> /** Get objects with a specific mimeType property */ - mimeType?: InputMaybe; + mimeType?: InputMaybe /** Slug / post_name of the object */ - name?: InputMaybe; + name?: InputMaybe /** Specify objects to retrieve. Use slugs */ - nameIn?: InputMaybe>>; + nameIn?: InputMaybe>> /** Specify IDs NOT to retrieve. If this is used in the same query as "in", it will be ignored */ - notIn?: InputMaybe>>; + notIn?: InputMaybe>> /** What parameter to use to order the objects by. */ - orderby?: InputMaybe>>; + orderby?: InputMaybe>> /** Use ID to return only children. Use 0 to return only top-level items */ - parent?: InputMaybe; + parent?: InputMaybe /** Specify objects whose parent is in an array */ - parentIn?: InputMaybe>>; + parentIn?: InputMaybe>> /** Specify posts whose parent is not in an array */ - parentNotIn?: InputMaybe>>; + parentNotIn?: InputMaybe>> /** Show posts with a specific password. */ - password?: InputMaybe; + password?: InputMaybe /** Show Posts based on a keyword search */ - search?: InputMaybe; + search?: InputMaybe /** Retrieve posts where post status is in an array. */ - stati?: InputMaybe>>; + stati?: InputMaybe>> /** Show posts with a specific status. */ - status?: InputMaybe; + status?: InputMaybe /** Tag Slug */ - tag?: InputMaybe; + tag?: InputMaybe /** Use Tag ID */ - tagId?: InputMaybe; + tagId?: InputMaybe /** Array of tag IDs, used to display objects from one tag OR another */ - tagIn?: InputMaybe>>; + tagIn?: InputMaybe>> /** Array of tag IDs, used to display objects from one tag OR another */ - tagNotIn?: InputMaybe>>; + tagNotIn?: InputMaybe>> /** Array of tag slugs, used to display objects from one tag AND another */ - tagSlugAnd?: InputMaybe>>; + tagSlugAnd?: InputMaybe>> /** Array of tag slugs, used to include objects in ANY specified tags */ - tagSlugIn?: InputMaybe>>; + tagSlugIn?: InputMaybe>> /** Title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** Connection between the Post type and the tag type */ -export type PostToTagConnection = Connection & TagConnection & { - __typename?: 'PostToTagConnection'; - /** Edges for the PostToTagConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: PostToTagConnectionPageInfo; -}; +export type PostToTagConnection = Connection & + TagConnection & { + __typename?: 'PostToTagConnection' + /** Edges for the PostToTagConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: PostToTagConnectionPageInfo + } /** An edge in a connection */ -export type PostToTagConnectionEdge = Edge & TagConnectionEdge & { - __typename?: 'PostToTagConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The Yoast SEO Primary post_tag */ - isPrimary?: Maybe; - /** The item at the end of the edge */ - node: Tag; -}; +export type PostToTagConnectionEdge = Edge & + TagConnectionEdge & { + __typename?: 'PostToTagConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The Yoast SEO Primary post_tag */ + isPrimary?: Maybe + /** The item at the end of the edge */ + node: Tag + } /** Page Info on the "PostToTagConnection" */ -export type PostToTagConnectionPageInfo = PageInfo & TagConnectionPageInfo & WpPageInfo & { - __typename?: 'PostToTagConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type PostToTagConnectionPageInfo = PageInfo & + TagConnectionPageInfo & + WpPageInfo & { + __typename?: 'PostToTagConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the PostToTagConnection connection */ export type PostToTagConnectionWhereArgs = { /** Unique cache key to be produced when this query is stored in an object cache. Default is 'core'. */ - cacheDomain?: InputMaybe; + cacheDomain?: InputMaybe /** Term ID to retrieve child terms of. If multiple taxonomies are passed, $child_of is ignored. Default 0. */ - childOf?: InputMaybe; + childOf?: InputMaybe /** True to limit results to terms that have no children. This parameter has no effect on non-hierarchical taxonomies. Default false. */ - childless?: InputMaybe; + childless?: InputMaybe /** Retrieve terms where the description is LIKE the input value. Default empty. */ - descriptionLike?: InputMaybe; + descriptionLike?: InputMaybe /** Array of term ids to exclude. If $include is non-empty, $exclude is ignored. Default empty array. */ - exclude?: InputMaybe>>; + exclude?: InputMaybe>> /** Array of term ids to exclude along with all of their descendant terms. If $include is non-empty, $exclude_tree is ignored. Default empty array. */ - excludeTree?: InputMaybe>>; + excludeTree?: InputMaybe>> /** Whether to hide terms not assigned to any posts. Accepts true or false. Default false */ - hideEmpty?: InputMaybe; + hideEmpty?: InputMaybe /** Whether to include terms that have non-empty descendants (even if $hide_empty is set to true). Default true. */ - hierarchical?: InputMaybe; + hierarchical?: InputMaybe /** Array of term ids to include. Default empty array. */ - include?: InputMaybe>>; + include?: InputMaybe>> /** Array of names to return term(s) for. Default empty. */ - name?: InputMaybe>>; + name?: InputMaybe>> /** Retrieve terms where the name is LIKE the input value. Default empty. */ - nameLike?: InputMaybe; + nameLike?: InputMaybe /** Array of object IDs. Results will be limited to terms associated with these objects. */ - objectIds?: InputMaybe>>; + objectIds?: InputMaybe>> /** Direction the connection should be ordered in */ - order?: InputMaybe; + order?: InputMaybe /** Field(s) to order terms by. Defaults to 'name'. */ - orderby?: InputMaybe; + orderby?: InputMaybe /** Whether to pad the quantity of a term's children in the quantity of each term's "count" object variable. Default false. */ - padCounts?: InputMaybe; + padCounts?: InputMaybe /** Parent term ID to retrieve direct-child terms of. Default empty. */ - parent?: InputMaybe; + parent?: InputMaybe /** Search criteria to match terms. Will be SQL-formatted with wildcards before and after. Default empty. */ - search?: InputMaybe; + search?: InputMaybe /** Array of slugs to return term(s) for. Default empty. */ - slug?: InputMaybe>>; + slug?: InputMaybe>> /** Array of term taxonomy IDs, to match when querying terms. */ - termTaxonomId?: InputMaybe>>; + termTaxonomId?: InputMaybe>> /** Array of term taxonomy IDs, to match when querying terms. */ - termTaxonomyId?: InputMaybe>>; + termTaxonomyId?: InputMaybe>> /** Whether to prime meta caches for matched terms. Default true. */ - updateTermMetaCache?: InputMaybe; -}; + updateTermMetaCache?: InputMaybe +} /** Connection between the Post type and the TermNode type */ -export type PostToTermNodeConnection = Connection & TermNodeConnection & { - __typename?: 'PostToTermNodeConnection'; - /** Edges for the PostToTermNodeConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: PostToTermNodeConnectionPageInfo; -}; +export type PostToTermNodeConnection = Connection & + TermNodeConnection & { + __typename?: 'PostToTermNodeConnection' + /** Edges for the PostToTermNodeConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: PostToTermNodeConnectionPageInfo + } /** An edge in a connection */ -export type PostToTermNodeConnectionEdge = Edge & TermNodeConnectionEdge & { - __typename?: 'PostToTermNodeConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: TermNode; -}; +export type PostToTermNodeConnectionEdge = Edge & + TermNodeConnectionEdge & { + __typename?: 'PostToTermNodeConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: TermNode + } /** Page Info on the "PostToTermNodeConnection" */ -export type PostToTermNodeConnectionPageInfo = PageInfo & TermNodeConnectionPageInfo & WpPageInfo & { - __typename?: 'PostToTermNodeConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type PostToTermNodeConnectionPageInfo = PageInfo & + TermNodeConnectionPageInfo & + WpPageInfo & { + __typename?: 'PostToTermNodeConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the PostToTermNodeConnection connection */ export type PostToTermNodeConnectionWhereArgs = { /** Unique cache key to be produced when this query is stored in an object cache. Default is 'core'. */ - cacheDomain?: InputMaybe; + cacheDomain?: InputMaybe /** Term ID to retrieve child terms of. If multiple taxonomies are passed, $child_of is ignored. Default 0. */ - childOf?: InputMaybe; + childOf?: InputMaybe /** True to limit results to terms that have no children. This parameter has no effect on non-hierarchical taxonomies. Default false. */ - childless?: InputMaybe; + childless?: InputMaybe /** Retrieve terms where the description is LIKE the input value. Default empty. */ - descriptionLike?: InputMaybe; + descriptionLike?: InputMaybe /** Array of term ids to exclude. If $include is non-empty, $exclude is ignored. Default empty array. */ - exclude?: InputMaybe>>; + exclude?: InputMaybe>> /** Array of term ids to exclude along with all of their descendant terms. If $include is non-empty, $exclude_tree is ignored. Default empty array. */ - excludeTree?: InputMaybe>>; + excludeTree?: InputMaybe>> /** Whether to hide terms not assigned to any posts. Accepts true or false. Default false */ - hideEmpty?: InputMaybe; + hideEmpty?: InputMaybe /** Whether to include terms that have non-empty descendants (even if $hide_empty is set to true). Default true. */ - hierarchical?: InputMaybe; + hierarchical?: InputMaybe /** Array of term ids to include. Default empty array. */ - include?: InputMaybe>>; + include?: InputMaybe>> /** Array of names to return term(s) for. Default empty. */ - name?: InputMaybe>>; + name?: InputMaybe>> /** Retrieve terms where the name is LIKE the input value. Default empty. */ - nameLike?: InputMaybe; + nameLike?: InputMaybe /** Array of object IDs. Results will be limited to terms associated with these objects. */ - objectIds?: InputMaybe>>; + objectIds?: InputMaybe>> /** Direction the connection should be ordered in */ - order?: InputMaybe; + order?: InputMaybe /** Field(s) to order terms by. Defaults to 'name'. */ - orderby?: InputMaybe; + orderby?: InputMaybe /** Whether to pad the quantity of a term's children in the quantity of each term's "count" object variable. Default false. */ - padCounts?: InputMaybe; + padCounts?: InputMaybe /** Parent term ID to retrieve direct-child terms of. Default empty. */ - parent?: InputMaybe; + parent?: InputMaybe /** Search criteria to match terms. Will be SQL-formatted with wildcards before and after. Default empty. */ - search?: InputMaybe; + search?: InputMaybe /** Array of slugs to return term(s) for. Default empty. */ - slug?: InputMaybe>>; + slug?: InputMaybe>> /** The Taxonomy to filter terms by */ - taxonomies?: InputMaybe>>; + taxonomies?: InputMaybe>> /** Array of term taxonomy IDs, to match when querying terms. */ - termTaxonomId?: InputMaybe>>; + termTaxonomId?: InputMaybe>> /** Array of term taxonomy IDs, to match when querying terms. */ - termTaxonomyId?: InputMaybe>>; + termTaxonomyId?: InputMaybe>> /** Whether to prime meta caches for matched terms. Default true. */ - updateTermMetaCache?: InputMaybe; -}; + updateTermMetaCache?: InputMaybe +} /** Details for labels of the PostType */ export type PostTypeLabelDetails = { - __typename?: 'PostTypeLabelDetails'; + __typename?: 'PostTypeLabelDetails' /** Default is ‘Add New’ for both hierarchical and non-hierarchical types. */ - addNew?: Maybe; + addNew?: Maybe /** Label for adding a new singular item. */ - addNewItem?: Maybe; + addNewItem?: Maybe /** Label to signify all items in a submenu link. */ - allItems?: Maybe; + allItems?: Maybe /** Label for archives in nav menus */ - archives?: Maybe; + archives?: Maybe /** Label for the attributes meta box. */ - attributes?: Maybe; + attributes?: Maybe /** Label for editing a singular item. */ - editItem?: Maybe; + editItem?: Maybe /** Label for the Featured Image meta box title. */ - featuredImage?: Maybe; + featuredImage?: Maybe /** Label for the table views hidden heading. */ - filterItemsList?: Maybe; + filterItemsList?: Maybe /** Label for the media frame button. */ - insertIntoItem?: Maybe; + insertIntoItem?: Maybe /** Label for the table hidden heading. */ - itemsList?: Maybe; + itemsList?: Maybe /** Label for the table pagination hidden heading. */ - itemsListNavigation?: Maybe; + itemsListNavigation?: Maybe /** Label for the menu name. */ - menuName?: Maybe; + menuName?: Maybe /** General name for the post type, usually plural. */ - name?: Maybe; + name?: Maybe /** Label for the new item page title. */ - newItem?: Maybe; + newItem?: Maybe /** Label used when no items are found. */ - notFound?: Maybe; + notFound?: Maybe /** Label used when no items are in the trash. */ - notFoundInTrash?: Maybe; + notFoundInTrash?: Maybe /** Label used to prefix parents of hierarchical items. */ - parentItemColon?: Maybe; + parentItemColon?: Maybe /** Label for removing the featured image. */ - removeFeaturedImage?: Maybe; + removeFeaturedImage?: Maybe /** Label for searching plural items. */ - searchItems?: Maybe; + searchItems?: Maybe /** Label for setting the featured image. */ - setFeaturedImage?: Maybe; + setFeaturedImage?: Maybe /** Name for one object of this post type. */ - singularName?: Maybe; + singularName?: Maybe /** Label for the media frame filter. */ - uploadedToThisItem?: Maybe; + uploadedToThisItem?: Maybe /** Label in the media frame for using a featured image. */ - useFeaturedImage?: Maybe; + useFeaturedImage?: Maybe /** Label for viewing a singular item. */ - viewItem?: Maybe; + viewItem?: Maybe /** Label for viewing post type archives. */ - viewItems?: Maybe; -}; + viewItems?: Maybe +} export type PostTypeSeo = { - __typename?: 'PostTypeSEO'; - breadcrumbs?: Maybe>>; - canonical?: Maybe; - cornerstone?: Maybe; - focuskw?: Maybe; - fullHead?: Maybe; - metaDesc?: Maybe; - metaKeywords?: Maybe; - metaRobotsNofollow?: Maybe; - metaRobotsNoindex?: Maybe; - opengraphAuthor?: Maybe; - opengraphDescription?: Maybe; - opengraphImage?: Maybe; - opengraphModifiedTime?: Maybe; - opengraphPublishedTime?: Maybe; - opengraphPublisher?: Maybe; - opengraphSiteName?: Maybe; - opengraphTitle?: Maybe; - opengraphType?: Maybe; - opengraphUrl?: Maybe; - readingTime?: Maybe; - schema?: Maybe; - title?: Maybe; - twitterDescription?: Maybe; - twitterImage?: Maybe; - twitterTitle?: Maybe; -}; + __typename?: 'PostTypeSEO' + breadcrumbs?: Maybe>> + canonical?: Maybe + cornerstone?: Maybe + focuskw?: Maybe + fullHead?: Maybe + metaDesc?: Maybe + metaKeywords?: Maybe + metaRobotsNofollow?: Maybe + metaRobotsNoindex?: Maybe + opengraphAuthor?: Maybe + opengraphDescription?: Maybe + opengraphImage?: Maybe + opengraphModifiedTime?: Maybe + opengraphPublishedTime?: Maybe + opengraphPublisher?: Maybe + opengraphSiteName?: Maybe + opengraphTitle?: Maybe + opengraphType?: Maybe + opengraphUrl?: Maybe + readingTime?: Maybe + schema?: Maybe + title?: Maybe + twitterDescription?: Maybe + twitterImage?: Maybe + twitterTitle?: Maybe +} /** Nodes that can be seen in a preview (unpublished) state. */ export type Previewable = { /** Whether the object is a node in the preview state */ - isPreview?: Maybe; + isPreview?: Maybe /** The database id of the preview node */ - previewRevisionDatabaseId?: Maybe; + previewRevisionDatabaseId?: Maybe /** Whether the object is a node in the preview state */ - previewRevisionId?: Maybe; -}; + previewRevisionId?: Maybe +} /** The PrivacyPolicyItem type */ -export type PrivacyPolicyItem = ContentNode & DatabaseIdentifier & MenuItemLinkable & Node & NodeWithContentEditor & NodeWithFeaturedImage & NodeWithTemplate & NodeWithTitle & Previewable & UniformResourceIdentifiable & WithAcfContentAddons & { - __typename?: 'PrivacyPolicyItem'; - /** The content of the post. */ - content?: Maybe; - /** Fields of the ContentAddons ACF Field Group */ - contentAddons?: Maybe; - /** Connection between the ContentNode type and the ContentType type */ - contentType?: Maybe; - /** The name of the Content Type the node belongs to */ - contentTypeName: Scalars['String']['output']; - /** The unique identifier stored in the database */ - databaseId: Scalars['Int']['output']; - /** Post publishing date. */ - date?: Maybe; - /** The publishing date set in GMT. */ - dateGmt?: Maybe; - /** The desired slug of the post */ - desiredSlug?: Maybe; - /** If a user has edited the node within the past 15 seconds, this will return the user that last edited. Null if the edit lock doesn't exist or is greater than 15 seconds */ - editingLockedBy?: Maybe; - /** The RSS enclosure for the object */ - enclosure?: Maybe; - /** Connection between the ContentNode type and the EnqueuedScript type */ - enqueuedScripts?: Maybe; - /** Connection between the ContentNode type and the EnqueuedStylesheet type */ - enqueuedStylesheets?: Maybe; - /** Connection between the NodeWithFeaturedImage type and the MediaItem type */ - featuredImage?: Maybe; - /** The database identifier for the featured image node assigned to the content node */ - featuredImageDatabaseId?: Maybe; - /** Globally unique ID of the featured image assigned to the node */ - featuredImageId?: Maybe; - /** The global unique identifier for this post. This currently matches the value stored in WP_Post->guid and the guid column in the "post_objects" database table. */ - guid?: Maybe; - /** Whether the privacy_policy object is password protected. */ - hasPassword?: Maybe; - /** The globally unique identifier of the privacy_policy object. */ - id: Scalars['ID']['output']; - /** Whether the node is a Comment */ - isComment: Scalars['Boolean']['output']; - /** Whether the node is a Content Node */ - isContentNode: Scalars['Boolean']['output']; - /** Whether the node represents the front page. */ - isFrontPage: Scalars['Boolean']['output']; - /** Whether the node represents the blog page. */ - isPostsPage: Scalars['Boolean']['output']; - /** Whether the object is a node in the preview state */ - isPreview?: Maybe; - /** Whether the object is restricted from the current viewer */ - isRestricted?: Maybe; - /** Whether the node is a Term */ - isTermNode: Scalars['Boolean']['output']; - /** Polylang language */ - language?: Maybe; - /** The user that most recently edited the node */ - lastEditedBy?: Maybe; - /** The permalink of the post */ - link?: Maybe; - /** The local modified time for a post. If a post was recently updated the modified field will change to match the corresponding time. */ - modified?: Maybe; - /** The GMT modified time for a post. If a post was recently updated the modified field will change to match the corresponding time in GMT. */ - modifiedGmt?: Maybe; - /** The password for the privacy_policy object. */ - password?: Maybe; - /** Connection between the PrivacyPolicyItem type and the PrivacyPolicyItem type */ - preview?: Maybe; - /** The database id of the preview node */ - previewRevisionDatabaseId?: Maybe; - /** Whether the object is a node in the preview state */ - previewRevisionId?: Maybe; - /** - * The id field matches the WP_Post->ID field. - * @deprecated Deprecated in favor of the databaseId field - */ - privacyPolicyItemId: Scalars['Int']['output']; - /** The Yoast SEO data of the ContentNode */ - seo?: Maybe; - /** The uri slug for the post. This is equivalent to the WP_Post->post_name field and the post_name column in the database for the "post_objects" table. */ - slug?: Maybe; - /** The current status of the object */ - status?: Maybe; - /** The template assigned to the node */ - template?: Maybe; - /** The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made. */ - title?: Maybe; - /** Get specific translation version of this object */ - translation?: Maybe; - /** List all translated versions of this post */ - translations?: Maybe>>; - /** The unique resource identifier path */ - uri?: Maybe; -}; - +export type PrivacyPolicyItem = ContentNode & + DatabaseIdentifier & + MenuItemLinkable & + Node & + NodeWithContentEditor & + NodeWithFeaturedImage & + NodeWithTemplate & + NodeWithTitle & + Previewable & + UniformResourceIdentifiable & + WithAcfContentAddons & { + __typename?: 'PrivacyPolicyItem' + /** The content of the post. */ + content?: Maybe + /** Fields of the ContentAddons ACF Field Group */ + contentAddons?: Maybe + /** Connection between the ContentNode type and the ContentType type */ + contentType?: Maybe + /** The name of the Content Type the node belongs to */ + contentTypeName: Scalars['String']['output'] + /** The unique identifier stored in the database */ + databaseId: Scalars['Int']['output'] + /** Post publishing date. */ + date?: Maybe + /** The publishing date set in GMT. */ + dateGmt?: Maybe + /** The desired slug of the post */ + desiredSlug?: Maybe + /** If a user has edited the node within the past 15 seconds, this will return the user that last edited. Null if the edit lock doesn't exist or is greater than 15 seconds */ + editingLockedBy?: Maybe + /** The RSS enclosure for the object */ + enclosure?: Maybe + /** Connection between the ContentNode type and the EnqueuedScript type */ + enqueuedScripts?: Maybe + /** Connection between the ContentNode type and the EnqueuedStylesheet type */ + enqueuedStylesheets?: Maybe + /** Connection between the NodeWithFeaturedImage type and the MediaItem type */ + featuredImage?: Maybe + /** The database identifier for the featured image node assigned to the content node */ + featuredImageDatabaseId?: Maybe + /** Globally unique ID of the featured image assigned to the node */ + featuredImageId?: Maybe + /** The global unique identifier for this post. This currently matches the value stored in WP_Post->guid and the guid column in the "post_objects" database table. */ + guid?: Maybe + /** Whether the privacy_policy object is password protected. */ + hasPassword?: Maybe + /** The globally unique identifier of the privacy_policy object. */ + id: Scalars['ID']['output'] + /** Whether the node is a Comment */ + isComment: Scalars['Boolean']['output'] + /** Whether the node is a Content Node */ + isContentNode: Scalars['Boolean']['output'] + /** Whether the node represents the front page. */ + isFrontPage: Scalars['Boolean']['output'] + /** Whether the node represents the blog page. */ + isPostsPage: Scalars['Boolean']['output'] + /** Whether the object is a node in the preview state */ + isPreview?: Maybe + /** Whether the object is restricted from the current viewer */ + isRestricted?: Maybe + /** Whether the node is a Term */ + isTermNode: Scalars['Boolean']['output'] + /** Polylang language */ + language?: Maybe + /** The user that most recently edited the node */ + lastEditedBy?: Maybe + /** The permalink of the post */ + link?: Maybe + /** The local modified time for a post. If a post was recently updated the modified field will change to match the corresponding time. */ + modified?: Maybe + /** The GMT modified time for a post. If a post was recently updated the modified field will change to match the corresponding time in GMT. */ + modifiedGmt?: Maybe + /** The password for the privacy_policy object. */ + password?: Maybe + /** Connection between the PrivacyPolicyItem type and the PrivacyPolicyItem type */ + preview?: Maybe + /** The database id of the preview node */ + previewRevisionDatabaseId?: Maybe + /** Whether the object is a node in the preview state */ + previewRevisionId?: Maybe + /** + * The id field matches the WP_Post->ID field. + * @deprecated Deprecated in favor of the databaseId field + */ + privacyPolicyItemId: Scalars['Int']['output'] + /** The Yoast SEO data of the ContentNode */ + seo?: Maybe + /** The uri slug for the post. This is equivalent to the WP_Post->post_name field and the post_name column in the database for the "post_objects" table. */ + slug?: Maybe + /** The current status of the object */ + status?: Maybe + /** The template assigned to the node */ + template?: Maybe + /** The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made. */ + title?: Maybe + /** Get specific translation version of this object */ + translation?: Maybe + /** List all translated versions of this post */ + translations?: Maybe>> + /** The unique resource identifier path */ + uri?: Maybe + } /** The PrivacyPolicyItem type */ export type PrivacyPolicyItemContentArgs = { - format?: InputMaybe; -}; - + format?: InputMaybe +} /** The PrivacyPolicyItem type */ export type PrivacyPolicyItemEnqueuedScriptsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** The PrivacyPolicyItem type */ export type PrivacyPolicyItemEnqueuedStylesheetsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** The PrivacyPolicyItem type */ export type PrivacyPolicyItemTitleArgs = { - format?: InputMaybe; -}; - + format?: InputMaybe +} /** The PrivacyPolicyItem type */ export type PrivacyPolicyItemTranslationArgs = { - language: LanguageCodeEnum; -}; + language: LanguageCodeEnum +} /** Connection to PrivacyPolicyItem Nodes */ export type PrivacyPolicyItemConnection = { /** A list of edges (relational context) between RootQuery and connected PrivacyPolicyItem Nodes */ - edges: Array; + edges: Array /** A list of connected PrivacyPolicyItem Nodes */ - nodes: Array; + nodes: Array /** Information about pagination in a connection. */ - pageInfo: PrivacyPolicyItemConnectionPageInfo; -}; + pageInfo: PrivacyPolicyItemConnectionPageInfo +} /** Edge between a Node and a connected PrivacyPolicyItem */ export type PrivacyPolicyItemConnectionEdge = { /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; + cursor?: Maybe /** The connected PrivacyPolicyItem Node */ - node: PrivacyPolicyItem; -}; + node: PrivacyPolicyItem +} /** Page Info on the connected PrivacyPolicyItemConnectionEdge */ export type PrivacyPolicyItemConnectionPageInfo = { /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; + endCursor?: Maybe /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; + hasNextPage: Scalars['Boolean']['output'] /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; + hasPreviousPage: Scalars['Boolean']['output'] /** Raw schema for page */ - seo?: Maybe; + seo?: Maybe /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; + startCursor?: Maybe +} /** The Type of Identifier used to fetch a single resource. Default is ID. */ export enum PrivacyPolicyItemIdType { @@ -9679,249 +9946,255 @@ export enum PrivacyPolicyItemIdType { /** Identify a resource by the slug. Available to non-hierarchcial Types where the slug is a unique identifier. */ Slug = 'SLUG', /** Identify a resource by the URI. */ - Uri = 'URI' + Uri = 'URI', } /** Connection between the PrivacyPolicyItem type and the PrivacyPolicyItem type */ -export type PrivacyPolicyItemToPreviewConnectionEdge = Edge & OneToOneConnection & PrivacyPolicyItemConnectionEdge & { - __typename?: 'PrivacyPolicyItemToPreviewConnectionEdge'; - /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; - /** The node of the connection, without the edges */ - node: PrivacyPolicyItem; -}; +export type PrivacyPolicyItemToPreviewConnectionEdge = Edge & + OneToOneConnection & + PrivacyPolicyItemConnectionEdge & { + __typename?: 'PrivacyPolicyItemToPreviewConnectionEdge' + /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ + cursor?: Maybe + /** The node of the connection, without the edges */ + node: PrivacyPolicyItem + } /** The reading setting type */ export type ReadingSettings = { - __typename?: 'ReadingSettings'; + __typename?: 'ReadingSettings' /** ID страницы, на которой должны отображаться последние записи */ - pageForPosts?: Maybe; + pageForPosts?: Maybe /** ID страницы, которая должна отображаться на главной странице */ - pageOnFront?: Maybe; + pageOnFront?: Maybe /** Максимум страниц блога для показа. */ - postsPerPage?: Maybe; + postsPerPage?: Maybe /** Что показать на главной странице */ - showOnFront?: Maybe; -}; + showOnFront?: Maybe +} /** The "Records" Field Group. Added to the Schema by "WPGraphQL for ACF". */ -export type Records = AcfFieldGroup & AcfFieldGroupFields & Records_Fields & { - __typename?: 'Records'; - /** Field of the "text" Field Type added to the schema as part of the "Records" Field Group */ - button?: Maybe; - /** - * The name of the field group - * @deprecated Use __typename instead - */ - fieldGroupName?: Maybe; - /** Field of the "wysiwyg" Field Type added to the schema as part of the "Records" Field Group */ - html?: Maybe; - /** Field of the "text" Field Type added to the schema as part of the "Records" Field Group */ - link?: Maybe; - /** Field of the "true_false" Field Type added to the schema as part of the "Records" Field Group */ - reverse?: Maybe; -}; +export type Records = AcfFieldGroup & + AcfFieldGroupFields & + Records_Fields & { + __typename?: 'Records' + /** Field of the "text" Field Type added to the schema as part of the "Records" Field Group */ + button?: Maybe + /** + * The name of the field group + * @deprecated Use __typename instead + */ + fieldGroupName?: Maybe + /** Field of the "wysiwyg" Field Type added to the schema as part of the "Records" Field Group */ + html?: Maybe + /** Field of the "text" Field Type added to the schema as part of the "Records" Field Group */ + link?: Maybe + /** Field of the "true_false" Field Type added to the schema as part of the "Records" Field Group */ + reverse?: Maybe + } /** Interface representing fields of the ACF "Records" Field Group */ export type Records_Fields = { /** Field of the "text" Field Type added to the schema as part of the "Records" Field Group */ - button?: Maybe; + button?: Maybe /** * The name of the field group * @deprecated Use __typename instead */ - fieldGroupName?: Maybe; + fieldGroupName?: Maybe /** Field of the "wysiwyg" Field Type added to the schema as part of the "Records" Field Group */ - html?: Maybe; + html?: Maybe /** Field of the "text" Field Type added to the schema as part of the "Records" Field Group */ - link?: Maybe; + link?: Maybe /** Field of the "true_false" Field Type added to the schema as part of the "Records" Field Group */ - reverse?: Maybe; -}; + reverse?: Maybe +} /** The Recruit type */ -export type Recruit = ContentNode & DatabaseIdentifier & MenuItemLinkable & Node & NodeWithContentEditor & NodeWithFeaturedImage & NodeWithTemplate & NodeWithTitle & Previewable & UniformResourceIdentifiable & { - __typename?: 'Recruit'; - /** The content of the post. */ - content?: Maybe; - /** Connection between the ContentNode type and the ContentType type */ - contentType?: Maybe; - /** The name of the Content Type the node belongs to */ - contentTypeName: Scalars['String']['output']; - /** The unique identifier stored in the database */ - databaseId: Scalars['Int']['output']; - /** Post publishing date. */ - date?: Maybe; - /** The publishing date set in GMT. */ - dateGmt?: Maybe; - /** The desired slug of the post */ - desiredSlug?: Maybe; - /** If a user has edited the node within the past 15 seconds, this will return the user that last edited. Null if the edit lock doesn't exist or is greater than 15 seconds */ - editingLockedBy?: Maybe; - /** The RSS enclosure for the object */ - enclosure?: Maybe; - /** Connection between the ContentNode type and the EnqueuedScript type */ - enqueuedScripts?: Maybe; - /** Connection between the ContentNode type and the EnqueuedStylesheet type */ - enqueuedStylesheets?: Maybe; - /** Connection between the NodeWithFeaturedImage type and the MediaItem type */ - featuredImage?: Maybe; - /** The database identifier for the featured image node assigned to the content node */ - featuredImageDatabaseId?: Maybe; - /** Globally unique ID of the featured image assigned to the node */ - featuredImageId?: Maybe; - /** The global unique identifier for this post. This currently matches the value stored in WP_Post->guid and the guid column in the "post_objects" database table. */ - guid?: Maybe; - /** Whether the recruit object is password protected. */ - hasPassword?: Maybe; - /** The globally unique identifier of the recruit object. */ - id: Scalars['ID']['output']; - /** Whether the node is a Comment */ - isComment: Scalars['Boolean']['output']; - /** Whether the node is a Content Node */ - isContentNode: Scalars['Boolean']['output']; - /** Whether the node represents the front page. */ - isFrontPage: Scalars['Boolean']['output']; - /** Whether the node represents the blog page. */ - isPostsPage: Scalars['Boolean']['output']; - /** Whether the object is a node in the preview state */ - isPreview?: Maybe; - /** Whether the object is restricted from the current viewer */ - isRestricted?: Maybe; - /** Whether the node is a Term */ - isTermNode: Scalars['Boolean']['output']; - /** Polylang language */ - language?: Maybe; - /** The user that most recently edited the node */ - lastEditedBy?: Maybe; - /** The permalink of the post */ - link?: Maybe; - /** The local modified time for a post. If a post was recently updated the modified field will change to match the corresponding time. */ - modified?: Maybe; - /** The GMT modified time for a post. If a post was recently updated the modified field will change to match the corresponding time in GMT. */ - modifiedGmt?: Maybe; - /** The password for the recruit object. */ - password?: Maybe; - /** Connection between the Recruit type and the Recruit type */ - preview?: Maybe; - /** The database id of the preview node */ - previewRevisionDatabaseId?: Maybe; - /** Whether the object is a node in the preview state */ - previewRevisionId?: Maybe; - /** - * The id field matches the WP_Post->ID field. - * @deprecated Deprecated in favor of the databaseId field - */ - recruitId: Scalars['Int']['output']; - /** Connection between the Recruit type and the recruitList type */ - recruitLists?: Maybe; - /** The Yoast SEO data of the ContentNode */ - seo?: Maybe; - /** The uri slug for the post. This is equivalent to the WP_Post->post_name field and the post_name column in the database for the "post_objects" table. */ - slug?: Maybe; - /** The current status of the object */ - status?: Maybe; - /** The template assigned to the node */ - template?: Maybe; - /** Connection between the Recruit type and the TermNode type */ - terms?: Maybe; - /** The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made. */ - title?: Maybe; - /** Get specific translation version of this object */ - translation?: Maybe; - /** List all translated versions of this post */ - translations?: Maybe>>; - /** The unique resource identifier path */ - uri?: Maybe; -}; - +export type Recruit = ContentNode & + DatabaseIdentifier & + MenuItemLinkable & + Node & + NodeWithContentEditor & + NodeWithFeaturedImage & + NodeWithTemplate & + NodeWithTitle & + Previewable & + UniformResourceIdentifiable & { + __typename?: 'Recruit' + /** The content of the post. */ + content?: Maybe + /** Connection between the ContentNode type and the ContentType type */ + contentType?: Maybe + /** The name of the Content Type the node belongs to */ + contentTypeName: Scalars['String']['output'] + /** The unique identifier stored in the database */ + databaseId: Scalars['Int']['output'] + /** Post publishing date. */ + date?: Maybe + /** The publishing date set in GMT. */ + dateGmt?: Maybe + /** The desired slug of the post */ + desiredSlug?: Maybe + /** If a user has edited the node within the past 15 seconds, this will return the user that last edited. Null if the edit lock doesn't exist or is greater than 15 seconds */ + editingLockedBy?: Maybe + /** The RSS enclosure for the object */ + enclosure?: Maybe + /** Connection between the ContentNode type and the EnqueuedScript type */ + enqueuedScripts?: Maybe + /** Connection between the ContentNode type and the EnqueuedStylesheet type */ + enqueuedStylesheets?: Maybe + /** Connection between the NodeWithFeaturedImage type and the MediaItem type */ + featuredImage?: Maybe + /** The database identifier for the featured image node assigned to the content node */ + featuredImageDatabaseId?: Maybe + /** Globally unique ID of the featured image assigned to the node */ + featuredImageId?: Maybe + /** The global unique identifier for this post. This currently matches the value stored in WP_Post->guid and the guid column in the "post_objects" database table. */ + guid?: Maybe + /** Whether the recruit object is password protected. */ + hasPassword?: Maybe + /** The globally unique identifier of the recruit object. */ + id: Scalars['ID']['output'] + /** Whether the node is a Comment */ + isComment: Scalars['Boolean']['output'] + /** Whether the node is a Content Node */ + isContentNode: Scalars['Boolean']['output'] + /** Whether the node represents the front page. */ + isFrontPage: Scalars['Boolean']['output'] + /** Whether the node represents the blog page. */ + isPostsPage: Scalars['Boolean']['output'] + /** Whether the object is a node in the preview state */ + isPreview?: Maybe + /** Whether the object is restricted from the current viewer */ + isRestricted?: Maybe + /** Whether the node is a Term */ + isTermNode: Scalars['Boolean']['output'] + /** Polylang language */ + language?: Maybe + /** The user that most recently edited the node */ + lastEditedBy?: Maybe + /** The permalink of the post */ + link?: Maybe + /** The local modified time for a post. If a post was recently updated the modified field will change to match the corresponding time. */ + modified?: Maybe + /** The GMT modified time for a post. If a post was recently updated the modified field will change to match the corresponding time in GMT. */ + modifiedGmt?: Maybe + /** The password for the recruit object. */ + password?: Maybe + /** Connection between the Recruit type and the Recruit type */ + preview?: Maybe + /** The database id of the preview node */ + previewRevisionDatabaseId?: Maybe + /** Whether the object is a node in the preview state */ + previewRevisionId?: Maybe + /** + * The id field matches the WP_Post->ID field. + * @deprecated Deprecated in favor of the databaseId field + */ + recruitId: Scalars['Int']['output'] + /** Connection between the Recruit type and the recruitList type */ + recruitLists?: Maybe + /** The Yoast SEO data of the ContentNode */ + seo?: Maybe + /** The uri slug for the post. This is equivalent to the WP_Post->post_name field and the post_name column in the database for the "post_objects" table. */ + slug?: Maybe + /** The current status of the object */ + status?: Maybe + /** The template assigned to the node */ + template?: Maybe + /** Connection between the Recruit type and the TermNode type */ + terms?: Maybe + /** The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made. */ + title?: Maybe + /** Get specific translation version of this object */ + translation?: Maybe + /** List all translated versions of this post */ + translations?: Maybe>> + /** The unique resource identifier path */ + uri?: Maybe + } /** The Recruit type */ export type RecruitContentArgs = { - format?: InputMaybe; -}; - + format?: InputMaybe +} /** The Recruit type */ export type RecruitEnqueuedScriptsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** The Recruit type */ export type RecruitEnqueuedStylesheetsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** The Recruit type */ export type RecruitRecruitListsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The Recruit type */ export type RecruitTermsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The Recruit type */ export type RecruitTitleArgs = { - format?: InputMaybe; -}; - + format?: InputMaybe +} /** The Recruit type */ export type RecruitTranslationArgs = { - language: LanguageCodeEnum; -}; + language: LanguageCodeEnum +} /** Connection to Recruit Nodes */ export type RecruitConnection = { /** A list of edges (relational context) between RootQuery and connected Recruit Nodes */ - edges: Array; + edges: Array /** A list of connected Recruit Nodes */ - nodes: Array; + nodes: Array /** Information about pagination in a connection. */ - pageInfo: RecruitConnectionPageInfo; -}; + pageInfo: RecruitConnectionPageInfo +} /** Edge between a Node and a connected Recruit */ export type RecruitConnectionEdge = { /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; + cursor?: Maybe /** The connected Recruit Node */ - node: Recruit; -}; + node: Recruit +} /** Page Info on the connected RecruitConnectionEdge */ export type RecruitConnectionPageInfo = { /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; + endCursor?: Maybe /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; + hasNextPage: Scalars['Boolean']['output'] /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; + hasPreviousPage: Scalars['Boolean']['output'] /** Raw schema for page */ - seo?: Maybe; + seo?: Maybe /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; + startCursor?: Maybe +} /** The Type of Identifier used to fetch a single resource. Default is ID. */ export enum RecruitIdType { @@ -9932,146 +10205,145 @@ export enum RecruitIdType { /** Identify a resource by the slug. Available to non-hierarchcial Types where the slug is a unique identifier. */ Slug = 'SLUG', /** Identify a resource by the URI. */ - Uri = 'URI' + Uri = 'URI', } /** The recruitList type */ -export type RecruitList = DatabaseIdentifier & MenuItemLinkable & Node & TermNode & UniformResourceIdentifiable & { - __typename?: 'RecruitList'; - /** Connection between the RecruitList type and the ContentNode type */ - contentNodes?: Maybe; - /** The number of objects connected to the object */ - count?: Maybe; - /** The unique identifier stored in the database */ - databaseId: Scalars['Int']['output']; - /** The description of the object */ - description?: Maybe; - /** Connection between the TermNode type and the EnqueuedScript type */ - enqueuedScripts?: Maybe; - /** Connection between the TermNode type and the EnqueuedStylesheet type */ - enqueuedStylesheets?: Maybe; - /** The globally unique ID for the object */ - id: Scalars['ID']['output']; - /** Whether the node is a Comment */ - isComment: Scalars['Boolean']['output']; - /** Whether the node is a Content Node */ - isContentNode: Scalars['Boolean']['output']; - /** Whether the node represents the front page. */ - isFrontPage: Scalars['Boolean']['output']; - /** Whether the node represents the blog page. */ - isPostsPage: Scalars['Boolean']['output']; - /** Whether the object is restricted from the current viewer */ - isRestricted?: Maybe; - /** Whether the node is a Term */ - isTermNode: Scalars['Boolean']['output']; - /** List available translations for this post */ - language?: Maybe; - /** The link to the term */ - link?: Maybe; - /** The human friendly name of the object. */ - name?: Maybe; - /** - * The id field matches the WP_Post->ID field. - * @deprecated Deprecated in favor of databaseId - */ - recruitListId?: Maybe; - /** Connection between the RecruitList type and the Recruit type */ - recruits?: Maybe; - /** The Yoast SEO data of the Каталог рекрутов taxonomy. */ - seo?: Maybe; - /** An alphanumeric identifier for the object unique to its type. */ - slug?: Maybe; - /** Connection between the RecruitList type and the Taxonomy type */ - taxonomy?: Maybe; - /** The name of the taxonomy that the object is associated with */ - taxonomyName?: Maybe; - /** The ID of the term group that this term object belongs to */ - termGroupId?: Maybe; - /** The taxonomy ID that the object is associated with */ - termTaxonomyId?: Maybe; - /** Get specific translation version of this object */ - translation?: Maybe; - /** List all translated versions of this term */ - translations?: Maybe>>; - /** The unique resource identifier path */ - uri?: Maybe; -}; - +export type RecruitList = DatabaseIdentifier & + MenuItemLinkable & + Node & + TermNode & + UniformResourceIdentifiable & { + __typename?: 'RecruitList' + /** Connection between the RecruitList type and the ContentNode type */ + contentNodes?: Maybe + /** The number of objects connected to the object */ + count?: Maybe + /** The unique identifier stored in the database */ + databaseId: Scalars['Int']['output'] + /** The description of the object */ + description?: Maybe + /** Connection between the TermNode type and the EnqueuedScript type */ + enqueuedScripts?: Maybe + /** Connection between the TermNode type and the EnqueuedStylesheet type */ + enqueuedStylesheets?: Maybe + /** The globally unique ID for the object */ + id: Scalars['ID']['output'] + /** Whether the node is a Comment */ + isComment: Scalars['Boolean']['output'] + /** Whether the node is a Content Node */ + isContentNode: Scalars['Boolean']['output'] + /** Whether the node represents the front page. */ + isFrontPage: Scalars['Boolean']['output'] + /** Whether the node represents the blog page. */ + isPostsPage: Scalars['Boolean']['output'] + /** Whether the object is restricted from the current viewer */ + isRestricted?: Maybe + /** Whether the node is a Term */ + isTermNode: Scalars['Boolean']['output'] + /** List available translations for this post */ + language?: Maybe + /** The link to the term */ + link?: Maybe + /** The human friendly name of the object. */ + name?: Maybe + /** + * The id field matches the WP_Post->ID field. + * @deprecated Deprecated in favor of databaseId + */ + recruitListId?: Maybe + /** Connection between the RecruitList type and the Recruit type */ + recruits?: Maybe + /** The Yoast SEO data of the Каталог рекрутов taxonomy. */ + seo?: Maybe + /** An alphanumeric identifier for the object unique to its type. */ + slug?: Maybe + /** Connection between the RecruitList type and the Taxonomy type */ + taxonomy?: Maybe + /** The name of the taxonomy that the object is associated with */ + taxonomyName?: Maybe + /** The ID of the term group that this term object belongs to */ + termGroupId?: Maybe + /** The taxonomy ID that the object is associated with */ + termTaxonomyId?: Maybe + /** Get specific translation version of this object */ + translation?: Maybe + /** List all translated versions of this term */ + translations?: Maybe>> + /** The unique resource identifier path */ + uri?: Maybe + } /** The recruitList type */ export type RecruitListContentNodesArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The recruitList type */ export type RecruitListEnqueuedScriptsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** The recruitList type */ export type RecruitListEnqueuedStylesheetsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** The recruitList type */ export type RecruitListRecruitsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The recruitList type */ export type RecruitListTranslationArgs = { - language: LanguageCodeEnum; -}; + language: LanguageCodeEnum +} /** Connection to recruitList Nodes */ export type RecruitListConnection = { /** A list of edges (relational context) between RootQuery and connected recruitList Nodes */ - edges: Array; + edges: Array /** A list of connected recruitList Nodes */ - nodes: Array; + nodes: Array /** Information about pagination in a connection. */ - pageInfo: RecruitListConnectionPageInfo; -}; + pageInfo: RecruitListConnectionPageInfo +} /** Edge between a Node and a connected recruitList */ export type RecruitListConnectionEdge = { /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; + cursor?: Maybe /** The connected recruitList Node */ - node: RecruitList; -}; + node: RecruitList +} /** Page Info on the connected RecruitListConnectionEdge */ export type RecruitListConnectionPageInfo = { /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; + endCursor?: Maybe /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; + hasNextPage: Scalars['Boolean']['output'] /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; + hasPreviousPage: Scalars['Boolean']['output'] /** Raw schema for page */ - seo?: Maybe; + seo?: Maybe /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; + startCursor?: Maybe +} /** The Type of Identifier used to fetch a single resource. Default is ID. */ export enum RecruitListIdType { @@ -10084,643 +10356,667 @@ export enum RecruitListIdType { /** Url friendly name of the node */ Slug = 'SLUG', /** The URI for the node */ - Uri = 'URI' + Uri = 'URI', } /** Connection between the RecruitList type and the ContentNode type */ -export type RecruitListToContentNodeConnection = Connection & ContentNodeConnection & { - __typename?: 'RecruitListToContentNodeConnection'; - /** Edges for the RecruitListToContentNodeConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: RecruitListToContentNodeConnectionPageInfo; -}; +export type RecruitListToContentNodeConnection = Connection & + ContentNodeConnection & { + __typename?: 'RecruitListToContentNodeConnection' + /** Edges for the RecruitListToContentNodeConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: RecruitListToContentNodeConnectionPageInfo + } /** An edge in a connection */ -export type RecruitListToContentNodeConnectionEdge = ContentNodeConnectionEdge & Edge & { - __typename?: 'RecruitListToContentNodeConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: ContentNode; -}; +export type RecruitListToContentNodeConnectionEdge = ContentNodeConnectionEdge & + Edge & { + __typename?: 'RecruitListToContentNodeConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: ContentNode + } /** Page Info on the "RecruitListToContentNodeConnection" */ -export type RecruitListToContentNodeConnectionPageInfo = ContentNodeConnectionPageInfo & PageInfo & WpPageInfo & { - __typename?: 'RecruitListToContentNodeConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type RecruitListToContentNodeConnectionPageInfo = ContentNodeConnectionPageInfo & + PageInfo & + WpPageInfo & { + __typename?: 'RecruitListToContentNodeConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the RecruitListToContentNodeConnection connection */ export type RecruitListToContentNodeConnectionWhereArgs = { /** The Types of content to filter */ - contentTypes?: InputMaybe>>; + contentTypes?: InputMaybe>> /** Filter the connection based on dates */ - dateQuery?: InputMaybe; + dateQuery?: InputMaybe /** True for objects with passwords; False for objects without passwords; null for all objects with or without passwords */ - hasPassword?: InputMaybe; + hasPassword?: InputMaybe /** Specific database ID of the object */ - id?: InputMaybe; + id?: InputMaybe /** Array of IDs for the objects to retrieve */ - in?: InputMaybe>>; + in?: InputMaybe>> /** Get objects with a specific mimeType property */ - mimeType?: InputMaybe; + mimeType?: InputMaybe /** Slug / post_name of the object */ - name?: InputMaybe; + name?: InputMaybe /** Specify objects to retrieve. Use slugs */ - nameIn?: InputMaybe>>; + nameIn?: InputMaybe>> /** Specify IDs NOT to retrieve. If this is used in the same query as "in", it will be ignored */ - notIn?: InputMaybe>>; + notIn?: InputMaybe>> /** What parameter to use to order the objects by. */ - orderby?: InputMaybe>>; + orderby?: InputMaybe>> /** Use ID to return only children. Use 0 to return only top-level items */ - parent?: InputMaybe; + parent?: InputMaybe /** Specify objects whose parent is in an array */ - parentIn?: InputMaybe>>; + parentIn?: InputMaybe>> /** Specify posts whose parent is not in an array */ - parentNotIn?: InputMaybe>>; + parentNotIn?: InputMaybe>> /** Show posts with a specific password. */ - password?: InputMaybe; + password?: InputMaybe /** Show Posts based on a keyword search */ - search?: InputMaybe; + search?: InputMaybe /** Retrieve posts where post status is in an array. */ - stati?: InputMaybe>>; + stati?: InputMaybe>> /** Show posts with a specific status. */ - status?: InputMaybe; + status?: InputMaybe /** Title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** Connection between the RecruitList type and the Recruit type */ -export type RecruitListToRecruitConnection = Connection & RecruitConnection & { - __typename?: 'RecruitListToRecruitConnection'; - /** Edges for the RecruitListToRecruitConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: RecruitListToRecruitConnectionPageInfo; -}; +export type RecruitListToRecruitConnection = Connection & + RecruitConnection & { + __typename?: 'RecruitListToRecruitConnection' + /** Edges for the RecruitListToRecruitConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: RecruitListToRecruitConnectionPageInfo + } /** An edge in a connection */ -export type RecruitListToRecruitConnectionEdge = Edge & RecruitConnectionEdge & { - __typename?: 'RecruitListToRecruitConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: Recruit; -}; +export type RecruitListToRecruitConnectionEdge = Edge & + RecruitConnectionEdge & { + __typename?: 'RecruitListToRecruitConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: Recruit + } /** Page Info on the "RecruitListToRecruitConnection" */ -export type RecruitListToRecruitConnectionPageInfo = PageInfo & RecruitConnectionPageInfo & WpPageInfo & { - __typename?: 'RecruitListToRecruitConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type RecruitListToRecruitConnectionPageInfo = PageInfo & + RecruitConnectionPageInfo & + WpPageInfo & { + __typename?: 'RecruitListToRecruitConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the RecruitListToRecruitConnection connection */ export type RecruitListToRecruitConnectionWhereArgs = { /** Filter the connection based on dates */ - dateQuery?: InputMaybe; + dateQuery?: InputMaybe /** True for objects with passwords; False for objects without passwords; null for all objects with or without passwords */ - hasPassword?: InputMaybe; + hasPassword?: InputMaybe /** Specific database ID of the object */ - id?: InputMaybe; + id?: InputMaybe /** Array of IDs for the objects to retrieve */ - in?: InputMaybe>>; + in?: InputMaybe>> /** Get objects with a specific mimeType property */ - mimeType?: InputMaybe; + mimeType?: InputMaybe /** Slug / post_name of the object */ - name?: InputMaybe; + name?: InputMaybe /** Specify objects to retrieve. Use slugs */ - nameIn?: InputMaybe>>; + nameIn?: InputMaybe>> /** Specify IDs NOT to retrieve. If this is used in the same query as "in", it will be ignored */ - notIn?: InputMaybe>>; + notIn?: InputMaybe>> /** What parameter to use to order the objects by. */ - orderby?: InputMaybe>>; + orderby?: InputMaybe>> /** Use ID to return only children. Use 0 to return only top-level items */ - parent?: InputMaybe; + parent?: InputMaybe /** Specify objects whose parent is in an array */ - parentIn?: InputMaybe>>; + parentIn?: InputMaybe>> /** Specify posts whose parent is not in an array */ - parentNotIn?: InputMaybe>>; + parentNotIn?: InputMaybe>> /** Show posts with a specific password. */ - password?: InputMaybe; + password?: InputMaybe /** Show Posts based on a keyword search */ - search?: InputMaybe; + search?: InputMaybe /** Retrieve posts where post status is in an array. */ - stati?: InputMaybe>>; + stati?: InputMaybe>> /** Show posts with a specific status. */ - status?: InputMaybe; + status?: InputMaybe /** Title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** Connection between the RecruitList type and the Taxonomy type */ -export type RecruitListToTaxonomyConnectionEdge = Edge & OneToOneConnection & TaxonomyConnectionEdge & { - __typename?: 'RecruitListToTaxonomyConnectionEdge'; - /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; - /** The node of the connection, without the edges */ - node: Taxonomy; -}; +export type RecruitListToTaxonomyConnectionEdge = Edge & + OneToOneConnection & + TaxonomyConnectionEdge & { + __typename?: 'RecruitListToTaxonomyConnectionEdge' + /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ + cursor?: Maybe + /** The node of the connection, without the edges */ + node: Taxonomy + } /** Set relationships between the Recruit to recruitLists */ export type RecruitRecruitListsInput = { /** If true, this will append the recruitList to existing related recruitLists. If false, this will replace existing relationships. Default true. */ - append?: InputMaybe; + append?: InputMaybe /** The input list of items to set. */ - nodes?: InputMaybe>>; -}; + nodes?: InputMaybe>> +} /** List of recruitLists to connect the Recruit to. If an ID is set, it will be used to create the connection. If not, it will look for a slug. If neither are valid existing terms, and the site is configured to allow terms to be created during post mutations, a term will be created using the Name if it exists in the input, then fallback to the slug if it exists. */ export type RecruitRecruitListsNodeInput = { /** The description of the recruitList. This field is used to set a description of the recruitList if a new one is created during the mutation. */ - description?: InputMaybe; + description?: InputMaybe /** The ID of the recruitList. If present, this will be used to connect to the Recruit. If no existing recruitList exists with this ID, no connection will be made. */ - id?: InputMaybe; + id?: InputMaybe /** The name of the recruitList. This field is used to create a new term, if term creation is enabled in nested mutations, and if one does not already exist with the provided slug or ID or if a slug or ID is not provided. If no name is included and a term is created, the creation will fallback to the slug field. */ - name?: InputMaybe; + name?: InputMaybe /** The slug of the recruitList. If no ID is present, this field will be used to make a connection. If no existing term exists with this slug, this field will be used as a fallback to the Name field when creating a new term to connect to, if term creation is enabled as a nested mutation. */ - slug?: InputMaybe; -}; + slug?: InputMaybe +} /** Connection between the Recruit type and the Recruit type */ -export type RecruitToPreviewConnectionEdge = Edge & OneToOneConnection & RecruitConnectionEdge & { - __typename?: 'RecruitToPreviewConnectionEdge'; - /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; - /** The node of the connection, without the edges */ - node: Recruit; -}; +export type RecruitToPreviewConnectionEdge = Edge & + OneToOneConnection & + RecruitConnectionEdge & { + __typename?: 'RecruitToPreviewConnectionEdge' + /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ + cursor?: Maybe + /** The node of the connection, without the edges */ + node: Recruit + } /** Connection between the Recruit type and the recruitList type */ -export type RecruitToRecruitListConnection = Connection & RecruitListConnection & { - __typename?: 'RecruitToRecruitListConnection'; - /** Edges for the RecruitToRecruitListConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: RecruitToRecruitListConnectionPageInfo; -}; +export type RecruitToRecruitListConnection = Connection & + RecruitListConnection & { + __typename?: 'RecruitToRecruitListConnection' + /** Edges for the RecruitToRecruitListConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: RecruitToRecruitListConnectionPageInfo + } /** An edge in a connection */ -export type RecruitToRecruitListConnectionEdge = Edge & RecruitListConnectionEdge & { - __typename?: 'RecruitToRecruitListConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The Yoast SEO Primary recruit_list */ - isPrimary?: Maybe; - /** The item at the end of the edge */ - node: RecruitList; -}; +export type RecruitToRecruitListConnectionEdge = Edge & + RecruitListConnectionEdge & { + __typename?: 'RecruitToRecruitListConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The Yoast SEO Primary recruit_list */ + isPrimary?: Maybe + /** The item at the end of the edge */ + node: RecruitList + } /** Page Info on the "RecruitToRecruitListConnection" */ -export type RecruitToRecruitListConnectionPageInfo = PageInfo & RecruitListConnectionPageInfo & WpPageInfo & { - __typename?: 'RecruitToRecruitListConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type RecruitToRecruitListConnectionPageInfo = PageInfo & + RecruitListConnectionPageInfo & + WpPageInfo & { + __typename?: 'RecruitToRecruitListConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the RecruitToRecruitListConnection connection */ export type RecruitToRecruitListConnectionWhereArgs = { /** Unique cache key to be produced when this query is stored in an object cache. Default is 'core'. */ - cacheDomain?: InputMaybe; + cacheDomain?: InputMaybe /** Term ID to retrieve child terms of. If multiple taxonomies are passed, $child_of is ignored. Default 0. */ - childOf?: InputMaybe; + childOf?: InputMaybe /** True to limit results to terms that have no children. This parameter has no effect on non-hierarchical taxonomies. Default false. */ - childless?: InputMaybe; + childless?: InputMaybe /** Retrieve terms where the description is LIKE the input value. Default empty. */ - descriptionLike?: InputMaybe; + descriptionLike?: InputMaybe /** Array of term ids to exclude. If $include is non-empty, $exclude is ignored. Default empty array. */ - exclude?: InputMaybe>>; + exclude?: InputMaybe>> /** Array of term ids to exclude along with all of their descendant terms. If $include is non-empty, $exclude_tree is ignored. Default empty array. */ - excludeTree?: InputMaybe>>; + excludeTree?: InputMaybe>> /** Whether to hide terms not assigned to any posts. Accepts true or false. Default false */ - hideEmpty?: InputMaybe; + hideEmpty?: InputMaybe /** Whether to include terms that have non-empty descendants (even if $hide_empty is set to true). Default true. */ - hierarchical?: InputMaybe; + hierarchical?: InputMaybe /** Array of term ids to include. Default empty array. */ - include?: InputMaybe>>; + include?: InputMaybe>> /** Array of names to return term(s) for. Default empty. */ - name?: InputMaybe>>; + name?: InputMaybe>> /** Retrieve terms where the name is LIKE the input value. Default empty. */ - nameLike?: InputMaybe; + nameLike?: InputMaybe /** Array of object IDs. Results will be limited to terms associated with these objects. */ - objectIds?: InputMaybe>>; + objectIds?: InputMaybe>> /** Direction the connection should be ordered in */ - order?: InputMaybe; + order?: InputMaybe /** Field(s) to order terms by. Defaults to 'name'. */ - orderby?: InputMaybe; + orderby?: InputMaybe /** Whether to pad the quantity of a term's children in the quantity of each term's "count" object variable. Default false. */ - padCounts?: InputMaybe; + padCounts?: InputMaybe /** Parent term ID to retrieve direct-child terms of. Default empty. */ - parent?: InputMaybe; + parent?: InputMaybe /** Search criteria to match terms. Will be SQL-formatted with wildcards before and after. Default empty. */ - search?: InputMaybe; + search?: InputMaybe /** Array of slugs to return term(s) for. Default empty. */ - slug?: InputMaybe>>; + slug?: InputMaybe>> /** Array of term taxonomy IDs, to match when querying terms. */ - termTaxonomId?: InputMaybe>>; + termTaxonomId?: InputMaybe>> /** Array of term taxonomy IDs, to match when querying terms. */ - termTaxonomyId?: InputMaybe>>; + termTaxonomyId?: InputMaybe>> /** Whether to prime meta caches for matched terms. Default true. */ - updateTermMetaCache?: InputMaybe; -}; + updateTermMetaCache?: InputMaybe +} /** Connection between the Recruit type and the TermNode type */ -export type RecruitToTermNodeConnection = Connection & TermNodeConnection & { - __typename?: 'RecruitToTermNodeConnection'; - /** Edges for the RecruitToTermNodeConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: RecruitToTermNodeConnectionPageInfo; -}; +export type RecruitToTermNodeConnection = Connection & + TermNodeConnection & { + __typename?: 'RecruitToTermNodeConnection' + /** Edges for the RecruitToTermNodeConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: RecruitToTermNodeConnectionPageInfo + } /** An edge in a connection */ -export type RecruitToTermNodeConnectionEdge = Edge & TermNodeConnectionEdge & { - __typename?: 'RecruitToTermNodeConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: TermNode; -}; +export type RecruitToTermNodeConnectionEdge = Edge & + TermNodeConnectionEdge & { + __typename?: 'RecruitToTermNodeConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: TermNode + } /** Page Info on the "RecruitToTermNodeConnection" */ -export type RecruitToTermNodeConnectionPageInfo = PageInfo & TermNodeConnectionPageInfo & WpPageInfo & { - __typename?: 'RecruitToTermNodeConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type RecruitToTermNodeConnectionPageInfo = PageInfo & + TermNodeConnectionPageInfo & + WpPageInfo & { + __typename?: 'RecruitToTermNodeConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the RecruitToTermNodeConnection connection */ export type RecruitToTermNodeConnectionWhereArgs = { /** Unique cache key to be produced when this query is stored in an object cache. Default is 'core'. */ - cacheDomain?: InputMaybe; + cacheDomain?: InputMaybe /** Term ID to retrieve child terms of. If multiple taxonomies are passed, $child_of is ignored. Default 0. */ - childOf?: InputMaybe; + childOf?: InputMaybe /** True to limit results to terms that have no children. This parameter has no effect on non-hierarchical taxonomies. Default false. */ - childless?: InputMaybe; + childless?: InputMaybe /** Retrieve terms where the description is LIKE the input value. Default empty. */ - descriptionLike?: InputMaybe; + descriptionLike?: InputMaybe /** Array of term ids to exclude. If $include is non-empty, $exclude is ignored. Default empty array. */ - exclude?: InputMaybe>>; + exclude?: InputMaybe>> /** Array of term ids to exclude along with all of their descendant terms. If $include is non-empty, $exclude_tree is ignored. Default empty array. */ - excludeTree?: InputMaybe>>; + excludeTree?: InputMaybe>> /** Whether to hide terms not assigned to any posts. Accepts true or false. Default false */ - hideEmpty?: InputMaybe; + hideEmpty?: InputMaybe /** Whether to include terms that have non-empty descendants (even if $hide_empty is set to true). Default true. */ - hierarchical?: InputMaybe; + hierarchical?: InputMaybe /** Array of term ids to include. Default empty array. */ - include?: InputMaybe>>; + include?: InputMaybe>> /** Array of names to return term(s) for. Default empty. */ - name?: InputMaybe>>; + name?: InputMaybe>> /** Retrieve terms where the name is LIKE the input value. Default empty. */ - nameLike?: InputMaybe; + nameLike?: InputMaybe /** Array of object IDs. Results will be limited to terms associated with these objects. */ - objectIds?: InputMaybe>>; + objectIds?: InputMaybe>> /** Direction the connection should be ordered in */ - order?: InputMaybe; + order?: InputMaybe /** Field(s) to order terms by. Defaults to 'name'. */ - orderby?: InputMaybe; + orderby?: InputMaybe /** Whether to pad the quantity of a term's children in the quantity of each term's "count" object variable. Default false. */ - padCounts?: InputMaybe; + padCounts?: InputMaybe /** Parent term ID to retrieve direct-child terms of. Default empty. */ - parent?: InputMaybe; + parent?: InputMaybe /** Search criteria to match terms. Will be SQL-formatted with wildcards before and after. Default empty. */ - search?: InputMaybe; + search?: InputMaybe /** Array of slugs to return term(s) for. Default empty. */ - slug?: InputMaybe>>; + slug?: InputMaybe>> /** The Taxonomy to filter terms by */ - taxonomies?: InputMaybe>>; + taxonomies?: InputMaybe>> /** Array of term taxonomy IDs, to match when querying terms. */ - termTaxonomId?: InputMaybe>>; + termTaxonomId?: InputMaybe>> /** Array of term taxonomy IDs, to match when querying terms. */ - termTaxonomyId?: InputMaybe>>; + termTaxonomyId?: InputMaybe>> /** Whether to prime meta caches for matched terms. Default true. */ - updateTermMetaCache?: InputMaybe; -}; + updateTermMetaCache?: InputMaybe +} /** Input for the registerUser mutation. */ export type RegisterUserInput = { /** User's AOL IM account. */ - aim?: InputMaybe; + aim?: InputMaybe /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** A string containing content about the user. */ - description?: InputMaybe; + description?: InputMaybe /** A string that will be shown on the site. Defaults to user's username. It is likely that you will want to change this, for both appearance and security through obscurity (that is if you dont use and delete the default admin user). */ - displayName?: InputMaybe; + displayName?: InputMaybe /** A string containing the user's email address. */ - email?: InputMaybe; + email?: InputMaybe /** The user's first name. */ - firstName?: InputMaybe; + firstName?: InputMaybe /** User's Jabber account. */ - jabber?: InputMaybe; + jabber?: InputMaybe /** The user's last name. */ - lastName?: InputMaybe; + lastName?: InputMaybe /** User's locale. */ - locale?: InputMaybe; + locale?: InputMaybe /** A string that contains a URL-friendly name for the user. The default is the user's username. */ - nicename?: InputMaybe; + nicename?: InputMaybe /** The user's nickname, defaults to the user's username. */ - nickname?: InputMaybe; + nickname?: InputMaybe /** A string that contains the plain text password for the user. */ - password?: InputMaybe; + password?: InputMaybe /** The date the user registered. Format is Y-m-d H:i:s. */ - registered?: InputMaybe; + registered?: InputMaybe /** A string for whether to enable the rich editor or not. False if not empty. */ - richEditing?: InputMaybe; + richEditing?: InputMaybe /** A string that contains the user's username. */ - username: Scalars['String']['input']; + username: Scalars['String']['input'] /** A string containing the user's URL for the user's web site. */ - websiteUrl?: InputMaybe; + websiteUrl?: InputMaybe /** User's Yahoo IM account. */ - yim?: InputMaybe; -}; + yim?: InputMaybe +} /** The payload for the registerUser mutation. */ export type RegisterUserPayload = { - __typename?: 'RegisterUserPayload'; + __typename?: 'RegisterUserPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The User object mutation type. */ - user?: Maybe; -}; + user?: Maybe +} /** The logical relation between each item in the array when there are more than one. */ export enum RelationEnum { /** The logical AND condition returns true if both operands are true, otherwise, it returns false. */ And = 'AND', /** The logical OR condition returns false if both operands are false, otherwise, it returns true. */ - Or = 'OR' + Or = 'OR', } /** Input for the resetUserPassword mutation. */ export type ResetUserPasswordInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** Password reset key */ - key?: InputMaybe; + key?: InputMaybe /** The user's login (username). */ - login?: InputMaybe; + login?: InputMaybe /** The new password. */ - password?: InputMaybe; -}; + password?: InputMaybe +} /** The payload for the resetUserPassword mutation. */ export type ResetUserPasswordPayload = { - __typename?: 'ResetUserPasswordPayload'; + __typename?: 'ResetUserPasswordPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The User object mutation type. */ - user?: Maybe; -}; + user?: Maybe +} /** Input for the restoreComment mutation. */ export type RestoreCommentInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** The ID of the comment to be restored */ - id: Scalars['ID']['input']; -}; + id: Scalars['ID']['input'] +} /** The payload for the restoreComment mutation. */ export type RestoreCommentPayload = { - __typename?: 'RestoreCommentPayload'; + __typename?: 'RestoreCommentPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The restored comment object */ - comment?: Maybe; + comment?: Maybe /** The ID of the restored comment */ - restoredId?: Maybe; -}; + restoredId?: Maybe +} /** The review type */ -export type Review = ContentNode & DatabaseIdentifier & MenuItemLinkable & Node & NodeWithContentEditor & NodeWithFeaturedImage & NodeWithPageAttributes & NodeWithTemplate & NodeWithTitle & Previewable & UniformResourceIdentifiable & WithAcfCustomerReview & { - __typename?: 'Review'; - /** The content of the post. */ - content?: Maybe; - /** Connection between the ContentNode type and the ContentType type */ - contentType?: Maybe; - /** The name of the Content Type the node belongs to */ - contentTypeName: Scalars['String']['output']; - /** Fields of the CustomerReview ACF Field Group */ - customerReview?: Maybe; - /** The unique identifier stored in the database */ - databaseId: Scalars['Int']['output']; - /** Post publishing date. */ - date?: Maybe; - /** The publishing date set in GMT. */ - dateGmt?: Maybe; - /** The desired slug of the post */ - desiredSlug?: Maybe; - /** If a user has edited the node within the past 15 seconds, this will return the user that last edited. Null if the edit lock doesn't exist or is greater than 15 seconds */ - editingLockedBy?: Maybe; - /** The RSS enclosure for the object */ - enclosure?: Maybe; - /** Connection between the ContentNode type and the EnqueuedScript type */ - enqueuedScripts?: Maybe; - /** Connection between the ContentNode type and the EnqueuedStylesheet type */ - enqueuedStylesheets?: Maybe; - /** Connection between the NodeWithFeaturedImage type and the MediaItem type */ - featuredImage?: Maybe; - /** The database identifier for the featured image node assigned to the content node */ - featuredImageDatabaseId?: Maybe; - /** Globally unique ID of the featured image assigned to the node */ - featuredImageId?: Maybe; - /** The global unique identifier for this post. This currently matches the value stored in WP_Post->guid and the guid column in the "post_objects" database table. */ - guid?: Maybe; - /** Whether the review object is password protected. */ - hasPassword?: Maybe; - /** The globally unique identifier of the review object. */ - id: Scalars['ID']['output']; - /** Whether the node is a Comment */ - isComment: Scalars['Boolean']['output']; - /** Whether the node is a Content Node */ - isContentNode: Scalars['Boolean']['output']; - /** Whether the node represents the front page. */ - isFrontPage: Scalars['Boolean']['output']; - /** Whether the node represents the blog page. */ - isPostsPage: Scalars['Boolean']['output']; - /** Whether the object is a node in the preview state */ - isPreview?: Maybe; - /** Whether the object is restricted from the current viewer */ - isRestricted?: Maybe; - /** Whether the node is a Term */ - isTermNode: Scalars['Boolean']['output']; - /** Polylang language */ - language?: Maybe; - /** The user that most recently edited the node */ - lastEditedBy?: Maybe; - /** The permalink of the post */ - link?: Maybe; - /** A field used for ordering posts. This is typically used with nav menu items or for special ordering of hierarchical content types. */ - menuOrder?: Maybe; - /** The local modified time for a post. If a post was recently updated the modified field will change to match the corresponding time. */ - modified?: Maybe; - /** The GMT modified time for a post. If a post was recently updated the modified field will change to match the corresponding time in GMT. */ - modifiedGmt?: Maybe; - /** The password for the review object. */ - password?: Maybe; - /** Connection between the Review type and the review type */ - preview?: Maybe; - /** The database id of the preview node */ - previewRevisionDatabaseId?: Maybe; - /** Whether the object is a node in the preview state */ - previewRevisionId?: Maybe; - /** - * The id field matches the WP_Post->ID field. - * @deprecated Deprecated in favor of the databaseId field - */ - reviewId: Scalars['Int']['output']; - /** Connection between the Review type and the reviewList type */ - reviewLists?: Maybe; - /** The Yoast SEO data of the ContentNode */ - seo?: Maybe; - /** The uri slug for the post. This is equivalent to the WP_Post->post_name field and the post_name column in the database for the "post_objects" table. */ - slug?: Maybe; - /** The current status of the object */ - status?: Maybe; - /** The template assigned to the node */ - template?: Maybe; - /** Connection between the Review type and the TermNode type */ - terms?: Maybe; - /** The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made. */ - title?: Maybe; - /** Get specific translation version of this object */ - translation?: Maybe; - /** List all translated versions of this post */ - translations?: Maybe>>; - /** The unique resource identifier path */ - uri?: Maybe; -}; - +export type Review = ContentNode & + DatabaseIdentifier & + MenuItemLinkable & + Node & + NodeWithContentEditor & + NodeWithFeaturedImage & + NodeWithPageAttributes & + NodeWithTemplate & + NodeWithTitle & + Previewable & + UniformResourceIdentifiable & + WithAcfCustomerReview & { + __typename?: 'Review' + /** The content of the post. */ + content?: Maybe + /** Connection between the ContentNode type and the ContentType type */ + contentType?: Maybe + /** The name of the Content Type the node belongs to */ + contentTypeName: Scalars['String']['output'] + /** Fields of the CustomerReview ACF Field Group */ + customerReview?: Maybe + /** The unique identifier stored in the database */ + databaseId: Scalars['Int']['output'] + /** Post publishing date. */ + date?: Maybe + /** The publishing date set in GMT. */ + dateGmt?: Maybe + /** The desired slug of the post */ + desiredSlug?: Maybe + /** If a user has edited the node within the past 15 seconds, this will return the user that last edited. Null if the edit lock doesn't exist or is greater than 15 seconds */ + editingLockedBy?: Maybe + /** The RSS enclosure for the object */ + enclosure?: Maybe + /** Connection between the ContentNode type and the EnqueuedScript type */ + enqueuedScripts?: Maybe + /** Connection between the ContentNode type and the EnqueuedStylesheet type */ + enqueuedStylesheets?: Maybe + /** Connection between the NodeWithFeaturedImage type and the MediaItem type */ + featuredImage?: Maybe + /** The database identifier for the featured image node assigned to the content node */ + featuredImageDatabaseId?: Maybe + /** Globally unique ID of the featured image assigned to the node */ + featuredImageId?: Maybe + /** The global unique identifier for this post. This currently matches the value stored in WP_Post->guid and the guid column in the "post_objects" database table. */ + guid?: Maybe + /** Whether the review object is password protected. */ + hasPassword?: Maybe + /** The globally unique identifier of the review object. */ + id: Scalars['ID']['output'] + /** Whether the node is a Comment */ + isComment: Scalars['Boolean']['output'] + /** Whether the node is a Content Node */ + isContentNode: Scalars['Boolean']['output'] + /** Whether the node represents the front page. */ + isFrontPage: Scalars['Boolean']['output'] + /** Whether the node represents the blog page. */ + isPostsPage: Scalars['Boolean']['output'] + /** Whether the object is a node in the preview state */ + isPreview?: Maybe + /** Whether the object is restricted from the current viewer */ + isRestricted?: Maybe + /** Whether the node is a Term */ + isTermNode: Scalars['Boolean']['output'] + /** Polylang language */ + language?: Maybe + /** The user that most recently edited the node */ + lastEditedBy?: Maybe + /** The permalink of the post */ + link?: Maybe + /** A field used for ordering posts. This is typically used with nav menu items or for special ordering of hierarchical content types. */ + menuOrder?: Maybe + /** The local modified time for a post. If a post was recently updated the modified field will change to match the corresponding time. */ + modified?: Maybe + /** The GMT modified time for a post. If a post was recently updated the modified field will change to match the corresponding time in GMT. */ + modifiedGmt?: Maybe + /** The password for the review object. */ + password?: Maybe + /** Connection between the Review type and the review type */ + preview?: Maybe + /** The database id of the preview node */ + previewRevisionDatabaseId?: Maybe + /** Whether the object is a node in the preview state */ + previewRevisionId?: Maybe + /** + * The id field matches the WP_Post->ID field. + * @deprecated Deprecated in favor of the databaseId field + */ + reviewId: Scalars['Int']['output'] + /** Connection between the Review type and the reviewList type */ + reviewLists?: Maybe + /** The Yoast SEO data of the ContentNode */ + seo?: Maybe + /** The uri slug for the post. This is equivalent to the WP_Post->post_name field and the post_name column in the database for the "post_objects" table. */ + slug?: Maybe + /** The current status of the object */ + status?: Maybe + /** The template assigned to the node */ + template?: Maybe + /** Connection between the Review type and the TermNode type */ + terms?: Maybe + /** The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made. */ + title?: Maybe + /** Get specific translation version of this object */ + translation?: Maybe + /** List all translated versions of this post */ + translations?: Maybe>> + /** The unique resource identifier path */ + uri?: Maybe + } /** The review type */ export type ReviewContentArgs = { - format?: InputMaybe; -}; - + format?: InputMaybe +} /** The review type */ export type ReviewEnqueuedScriptsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** The review type */ export type ReviewEnqueuedStylesheetsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** The review type */ export type ReviewReviewListsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The review type */ export type ReviewTermsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The review type */ export type ReviewTitleArgs = { - format?: InputMaybe; -}; - + format?: InputMaybe +} /** The review type */ export type ReviewTranslationArgs = { - language: LanguageCodeEnum; -}; + language: LanguageCodeEnum +} /** Connection to review Nodes */ export type ReviewConnection = { /** A list of edges (relational context) between RootQuery and connected review Nodes */ - edges: Array; + edges: Array /** A list of connected review Nodes */ - nodes: Array; + nodes: Array /** Information about pagination in a connection. */ - pageInfo: ReviewConnectionPageInfo; -}; + pageInfo: ReviewConnectionPageInfo +} /** Edge between a Node and a connected review */ export type ReviewConnectionEdge = { /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; + cursor?: Maybe /** The connected review Node */ - node: Review; -}; + node: Review +} /** Page Info on the connected ReviewConnectionEdge */ export type ReviewConnectionPageInfo = { /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; + endCursor?: Maybe /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; + hasNextPage: Scalars['Boolean']['output'] /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; + hasPreviousPage: Scalars['Boolean']['output'] /** Raw schema for page */ - seo?: Maybe; + seo?: Maybe /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; + startCursor?: Maybe +} /** The Type of Identifier used to fetch a single resource. Default is ID. */ export enum ReviewIdType { @@ -10731,175 +11027,174 @@ export enum ReviewIdType { /** Identify a resource by the slug. Available to non-hierarchcial Types where the slug is a unique identifier. */ Slug = 'SLUG', /** Identify a resource by the URI. */ - Uri = 'URI' + Uri = 'URI', } /** The reviewList type */ -export type ReviewList = DatabaseIdentifier & HierarchicalNode & HierarchicalTermNode & MenuItemLinkable & Node & TermNode & UniformResourceIdentifiable & { - __typename?: 'ReviewList'; - /** The ancestors of the node. Default ordered as lowest (closest to the child) to highest (closest to the root). */ - ancestors?: Maybe; - /** Connection between the reviewList type and its children reviewLists. */ - children?: Maybe; - /** Connection between the ReviewList type and the ContentNode type */ - contentNodes?: Maybe; - /** The number of objects connected to the object */ - count?: Maybe; - /** The unique identifier stored in the database */ - databaseId: Scalars['Int']['output']; - /** The description of the object */ - description?: Maybe; - /** Connection between the TermNode type and the EnqueuedScript type */ - enqueuedScripts?: Maybe; - /** Connection between the TermNode type and the EnqueuedStylesheet type */ - enqueuedStylesheets?: Maybe; - /** The globally unique ID for the object */ - id: Scalars['ID']['output']; - /** Whether the node is a Comment */ - isComment: Scalars['Boolean']['output']; - /** Whether the node is a Content Node */ - isContentNode: Scalars['Boolean']['output']; - /** Whether the node represents the front page. */ - isFrontPage: Scalars['Boolean']['output']; - /** Whether the node represents the blog page. */ - isPostsPage: Scalars['Boolean']['output']; - /** Whether the object is restricted from the current viewer */ - isRestricted?: Maybe; - /** Whether the node is a Term */ - isTermNode: Scalars['Boolean']['output']; - /** List available translations for this post */ - language?: Maybe; - /** The link to the term */ - link?: Maybe; - /** The human friendly name of the object. */ - name?: Maybe; - /** Connection between the reviewList type and its parent reviewList. */ - parent?: Maybe; - /** Database id of the parent node */ - parentDatabaseId?: Maybe; - /** The globally unique identifier of the parent node. */ - parentId?: Maybe; - /** - * The id field matches the WP_Post->ID field. - * @deprecated Deprecated in favor of databaseId - */ - reviewListId?: Maybe; - /** Connection between the ReviewList type and the review type */ - reviews?: Maybe; - /** The Yoast SEO data of the Категории отзывов taxonomy. */ - seo?: Maybe; - /** An alphanumeric identifier for the object unique to its type. */ - slug?: Maybe; - /** Connection between the ReviewList type and the Taxonomy type */ - taxonomy?: Maybe; - /** The name of the taxonomy that the object is associated with */ - taxonomyName?: Maybe; - /** The ID of the term group that this term object belongs to */ - termGroupId?: Maybe; - /** The taxonomy ID that the object is associated with */ - termTaxonomyId?: Maybe; - /** Get specific translation version of this object */ - translation?: Maybe; - /** List all translated versions of this term */ - translations?: Maybe>>; - /** The unique resource identifier path */ - uri?: Maybe; -}; - +export type ReviewList = DatabaseIdentifier & + HierarchicalNode & + HierarchicalTermNode & + MenuItemLinkable & + Node & + TermNode & + UniformResourceIdentifiable & { + __typename?: 'ReviewList' + /** The ancestors of the node. Default ordered as lowest (closest to the child) to highest (closest to the root). */ + ancestors?: Maybe + /** Connection between the reviewList type and its children reviewLists. */ + children?: Maybe + /** Connection between the ReviewList type and the ContentNode type */ + contentNodes?: Maybe + /** The number of objects connected to the object */ + count?: Maybe + /** The unique identifier stored in the database */ + databaseId: Scalars['Int']['output'] + /** The description of the object */ + description?: Maybe + /** Connection between the TermNode type and the EnqueuedScript type */ + enqueuedScripts?: Maybe + /** Connection between the TermNode type and the EnqueuedStylesheet type */ + enqueuedStylesheets?: Maybe + /** The globally unique ID for the object */ + id: Scalars['ID']['output'] + /** Whether the node is a Comment */ + isComment: Scalars['Boolean']['output'] + /** Whether the node is a Content Node */ + isContentNode: Scalars['Boolean']['output'] + /** Whether the node represents the front page. */ + isFrontPage: Scalars['Boolean']['output'] + /** Whether the node represents the blog page. */ + isPostsPage: Scalars['Boolean']['output'] + /** Whether the object is restricted from the current viewer */ + isRestricted?: Maybe + /** Whether the node is a Term */ + isTermNode: Scalars['Boolean']['output'] + /** List available translations for this post */ + language?: Maybe + /** The link to the term */ + link?: Maybe + /** The human friendly name of the object. */ + name?: Maybe + /** Connection between the reviewList type and its parent reviewList. */ + parent?: Maybe + /** Database id of the parent node */ + parentDatabaseId?: Maybe + /** The globally unique identifier of the parent node. */ + parentId?: Maybe + /** + * The id field matches the WP_Post->ID field. + * @deprecated Deprecated in favor of databaseId + */ + reviewListId?: Maybe + /** Connection between the ReviewList type and the review type */ + reviews?: Maybe + /** The Yoast SEO data of the Категории отзывов taxonomy. */ + seo?: Maybe + /** An alphanumeric identifier for the object unique to its type. */ + slug?: Maybe + /** Connection between the ReviewList type and the Taxonomy type */ + taxonomy?: Maybe + /** The name of the taxonomy that the object is associated with */ + taxonomyName?: Maybe + /** The ID of the term group that this term object belongs to */ + termGroupId?: Maybe + /** The taxonomy ID that the object is associated with */ + termTaxonomyId?: Maybe + /** Get specific translation version of this object */ + translation?: Maybe + /** List all translated versions of this term */ + translations?: Maybe>> + /** The unique resource identifier path */ + uri?: Maybe + } /** The reviewList type */ export type ReviewListAncestorsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** The reviewList type */ export type ReviewListChildrenArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The reviewList type */ export type ReviewListContentNodesArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The reviewList type */ export type ReviewListEnqueuedScriptsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** The reviewList type */ export type ReviewListEnqueuedStylesheetsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** The reviewList type */ export type ReviewListReviewsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The reviewList type */ export type ReviewListTranslationArgs = { - language: LanguageCodeEnum; -}; + language: LanguageCodeEnum +} /** Connection to reviewList Nodes */ export type ReviewListConnection = { /** A list of edges (relational context) between RootQuery and connected reviewList Nodes */ - edges: Array; + edges: Array /** A list of connected reviewList Nodes */ - nodes: Array; + nodes: Array /** Information about pagination in a connection. */ - pageInfo: ReviewListConnectionPageInfo; -}; + pageInfo: ReviewListConnectionPageInfo +} /** Edge between a Node and a connected reviewList */ export type ReviewListConnectionEdge = { /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; + cursor?: Maybe /** The connected reviewList Node */ - node: ReviewList; -}; + node: ReviewList +} /** Page Info on the connected ReviewListConnectionEdge */ export type ReviewListConnectionPageInfo = { /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; + endCursor?: Maybe /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; + hasNextPage: Scalars['Boolean']['output'] /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; + hasPreviousPage: Scalars['Boolean']['output'] /** Raw schema for page */ - seo?: Maybe; + seo?: Maybe /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; + startCursor?: Maybe +} /** The Type of Identifier used to fetch a single resource. Default is ID. */ export enum ReviewListIdType { @@ -10912,534 +11207,568 @@ export enum ReviewListIdType { /** Url friendly name of the node */ Slug = 'SLUG', /** The URI for the node */ - Uri = 'URI' + Uri = 'URI', } /** Connection between the ReviewList type and the reviewList type */ -export type ReviewListToAncestorsReviewListConnection = Connection & ReviewListConnection & { - __typename?: 'ReviewListToAncestorsReviewListConnection'; - /** Edges for the ReviewListToAncestorsReviewListConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: ReviewListToAncestorsReviewListConnectionPageInfo; -}; +export type ReviewListToAncestorsReviewListConnection = Connection & + ReviewListConnection & { + __typename?: 'ReviewListToAncestorsReviewListConnection' + /** Edges for the ReviewListToAncestorsReviewListConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: ReviewListToAncestorsReviewListConnectionPageInfo + } /** An edge in a connection */ -export type ReviewListToAncestorsReviewListConnectionEdge = Edge & ReviewListConnectionEdge & { - __typename?: 'ReviewListToAncestorsReviewListConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: ReviewList; -}; +export type ReviewListToAncestorsReviewListConnectionEdge = Edge & + ReviewListConnectionEdge & { + __typename?: 'ReviewListToAncestorsReviewListConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: ReviewList + } /** Page Info on the "ReviewListToAncestorsReviewListConnection" */ -export type ReviewListToAncestorsReviewListConnectionPageInfo = PageInfo & ReviewListConnectionPageInfo & WpPageInfo & { - __typename?: 'ReviewListToAncestorsReviewListConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type ReviewListToAncestorsReviewListConnectionPageInfo = PageInfo & + ReviewListConnectionPageInfo & + WpPageInfo & { + __typename?: 'ReviewListToAncestorsReviewListConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Connection between the ReviewList type and the ContentNode type */ -export type ReviewListToContentNodeConnection = Connection & ContentNodeConnection & { - __typename?: 'ReviewListToContentNodeConnection'; - /** Edges for the ReviewListToContentNodeConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: ReviewListToContentNodeConnectionPageInfo; -}; +export type ReviewListToContentNodeConnection = Connection & + ContentNodeConnection & { + __typename?: 'ReviewListToContentNodeConnection' + /** Edges for the ReviewListToContentNodeConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: ReviewListToContentNodeConnectionPageInfo + } /** An edge in a connection */ -export type ReviewListToContentNodeConnectionEdge = ContentNodeConnectionEdge & Edge & { - __typename?: 'ReviewListToContentNodeConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: ContentNode; -}; +export type ReviewListToContentNodeConnectionEdge = ContentNodeConnectionEdge & + Edge & { + __typename?: 'ReviewListToContentNodeConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: ContentNode + } /** Page Info on the "ReviewListToContentNodeConnection" */ -export type ReviewListToContentNodeConnectionPageInfo = ContentNodeConnectionPageInfo & PageInfo & WpPageInfo & { - __typename?: 'ReviewListToContentNodeConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type ReviewListToContentNodeConnectionPageInfo = ContentNodeConnectionPageInfo & + PageInfo & + WpPageInfo & { + __typename?: 'ReviewListToContentNodeConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the ReviewListToContentNodeConnection connection */ export type ReviewListToContentNodeConnectionWhereArgs = { /** The Types of content to filter */ - contentTypes?: InputMaybe>>; + contentTypes?: InputMaybe>> /** Filter the connection based on dates */ - dateQuery?: InputMaybe; + dateQuery?: InputMaybe /** True for objects with passwords; False for objects without passwords; null for all objects with or without passwords */ - hasPassword?: InputMaybe; + hasPassword?: InputMaybe /** Specific database ID of the object */ - id?: InputMaybe; + id?: InputMaybe /** Array of IDs for the objects to retrieve */ - in?: InputMaybe>>; + in?: InputMaybe>> /** Get objects with a specific mimeType property */ - mimeType?: InputMaybe; + mimeType?: InputMaybe /** Slug / post_name of the object */ - name?: InputMaybe; + name?: InputMaybe /** Specify objects to retrieve. Use slugs */ - nameIn?: InputMaybe>>; + nameIn?: InputMaybe>> /** Specify IDs NOT to retrieve. If this is used in the same query as "in", it will be ignored */ - notIn?: InputMaybe>>; + notIn?: InputMaybe>> /** What parameter to use to order the objects by. */ - orderby?: InputMaybe>>; + orderby?: InputMaybe>> /** Use ID to return only children. Use 0 to return only top-level items */ - parent?: InputMaybe; + parent?: InputMaybe /** Specify objects whose parent is in an array */ - parentIn?: InputMaybe>>; + parentIn?: InputMaybe>> /** Specify posts whose parent is not in an array */ - parentNotIn?: InputMaybe>>; + parentNotIn?: InputMaybe>> /** Show posts with a specific password. */ - password?: InputMaybe; + password?: InputMaybe /** Show Posts based on a keyword search */ - search?: InputMaybe; + search?: InputMaybe /** Retrieve posts where post status is in an array. */ - stati?: InputMaybe>>; + stati?: InputMaybe>> /** Show posts with a specific status. */ - status?: InputMaybe; + status?: InputMaybe /** Title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** Connection between the ReviewList type and the reviewList type */ -export type ReviewListToParentReviewListConnectionEdge = Edge & OneToOneConnection & ReviewListConnectionEdge & { - __typename?: 'ReviewListToParentReviewListConnectionEdge'; - /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; - /** The node of the connection, without the edges */ - node: ReviewList; -}; +export type ReviewListToParentReviewListConnectionEdge = Edge & + OneToOneConnection & + ReviewListConnectionEdge & { + __typename?: 'ReviewListToParentReviewListConnectionEdge' + /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ + cursor?: Maybe + /** The node of the connection, without the edges */ + node: ReviewList + } /** Connection between the ReviewList type and the review type */ -export type ReviewListToReviewConnection = Connection & ReviewConnection & { - __typename?: 'ReviewListToReviewConnection'; - /** Edges for the ReviewListToReviewConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: ReviewListToReviewConnectionPageInfo; -}; +export type ReviewListToReviewConnection = Connection & + ReviewConnection & { + __typename?: 'ReviewListToReviewConnection' + /** Edges for the ReviewListToReviewConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: ReviewListToReviewConnectionPageInfo + } /** An edge in a connection */ -export type ReviewListToReviewConnectionEdge = Edge & ReviewConnectionEdge & { - __typename?: 'ReviewListToReviewConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: Review; -}; +export type ReviewListToReviewConnectionEdge = Edge & + ReviewConnectionEdge & { + __typename?: 'ReviewListToReviewConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: Review + } /** Page Info on the "ReviewListToReviewConnection" */ -export type ReviewListToReviewConnectionPageInfo = PageInfo & ReviewConnectionPageInfo & WpPageInfo & { - __typename?: 'ReviewListToReviewConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type ReviewListToReviewConnectionPageInfo = PageInfo & + ReviewConnectionPageInfo & + WpPageInfo & { + __typename?: 'ReviewListToReviewConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the ReviewListToReviewConnection connection */ export type ReviewListToReviewConnectionWhereArgs = { /** Filter the connection based on dates */ - dateQuery?: InputMaybe; + dateQuery?: InputMaybe /** True for objects with passwords; False for objects without passwords; null for all objects with or without passwords */ - hasPassword?: InputMaybe; + hasPassword?: InputMaybe /** Specific database ID of the object */ - id?: InputMaybe; + id?: InputMaybe /** Array of IDs for the objects to retrieve */ - in?: InputMaybe>>; + in?: InputMaybe>> /** Get objects with a specific mimeType property */ - mimeType?: InputMaybe; + mimeType?: InputMaybe /** Slug / post_name of the object */ - name?: InputMaybe; + name?: InputMaybe /** Specify objects to retrieve. Use slugs */ - nameIn?: InputMaybe>>; + nameIn?: InputMaybe>> /** Specify IDs NOT to retrieve. If this is used in the same query as "in", it will be ignored */ - notIn?: InputMaybe>>; + notIn?: InputMaybe>> /** What parameter to use to order the objects by. */ - orderby?: InputMaybe>>; + orderby?: InputMaybe>> /** Use ID to return only children. Use 0 to return only top-level items */ - parent?: InputMaybe; + parent?: InputMaybe /** Specify objects whose parent is in an array */ - parentIn?: InputMaybe>>; + parentIn?: InputMaybe>> /** Specify posts whose parent is not in an array */ - parentNotIn?: InputMaybe>>; + parentNotIn?: InputMaybe>> /** Show posts with a specific password. */ - password?: InputMaybe; + password?: InputMaybe /** Show Posts based on a keyword search */ - search?: InputMaybe; + search?: InputMaybe /** Retrieve posts where post status is in an array. */ - stati?: InputMaybe>>; + stati?: InputMaybe>> /** Show posts with a specific status. */ - status?: InputMaybe; + status?: InputMaybe /** Title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** Connection between the ReviewList type and the reviewList type */ -export type ReviewListToReviewListConnection = Connection & ReviewListConnection & { - __typename?: 'ReviewListToReviewListConnection'; - /** Edges for the ReviewListToReviewListConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: ReviewListToReviewListConnectionPageInfo; -}; +export type ReviewListToReviewListConnection = Connection & + ReviewListConnection & { + __typename?: 'ReviewListToReviewListConnection' + /** Edges for the ReviewListToReviewListConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: ReviewListToReviewListConnectionPageInfo + } /** An edge in a connection */ -export type ReviewListToReviewListConnectionEdge = Edge & ReviewListConnectionEdge & { - __typename?: 'ReviewListToReviewListConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: ReviewList; -}; +export type ReviewListToReviewListConnectionEdge = Edge & + ReviewListConnectionEdge & { + __typename?: 'ReviewListToReviewListConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: ReviewList + } /** Page Info on the "ReviewListToReviewListConnection" */ -export type ReviewListToReviewListConnectionPageInfo = PageInfo & ReviewListConnectionPageInfo & WpPageInfo & { - __typename?: 'ReviewListToReviewListConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type ReviewListToReviewListConnectionPageInfo = PageInfo & + ReviewListConnectionPageInfo & + WpPageInfo & { + __typename?: 'ReviewListToReviewListConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the ReviewListToReviewListConnection connection */ export type ReviewListToReviewListConnectionWhereArgs = { /** Unique cache key to be produced when this query is stored in an object cache. Default is 'core'. */ - cacheDomain?: InputMaybe; + cacheDomain?: InputMaybe /** Term ID to retrieve child terms of. If multiple taxonomies are passed, $child_of is ignored. Default 0. */ - childOf?: InputMaybe; + childOf?: InputMaybe /** True to limit results to terms that have no children. This parameter has no effect on non-hierarchical taxonomies. Default false. */ - childless?: InputMaybe; + childless?: InputMaybe /** Retrieve terms where the description is LIKE the input value. Default empty. */ - descriptionLike?: InputMaybe; + descriptionLike?: InputMaybe /** Array of term ids to exclude. If $include is non-empty, $exclude is ignored. Default empty array. */ - exclude?: InputMaybe>>; + exclude?: InputMaybe>> /** Array of term ids to exclude along with all of their descendant terms. If $include is non-empty, $exclude_tree is ignored. Default empty array. */ - excludeTree?: InputMaybe>>; + excludeTree?: InputMaybe>> /** Whether to hide terms not assigned to any posts. Accepts true or false. Default false */ - hideEmpty?: InputMaybe; + hideEmpty?: InputMaybe /** Whether to include terms that have non-empty descendants (even if $hide_empty is set to true). Default true. */ - hierarchical?: InputMaybe; + hierarchical?: InputMaybe /** Array of term ids to include. Default empty array. */ - include?: InputMaybe>>; + include?: InputMaybe>> /** Array of names to return term(s) for. Default empty. */ - name?: InputMaybe>>; + name?: InputMaybe>> /** Retrieve terms where the name is LIKE the input value. Default empty. */ - nameLike?: InputMaybe; + nameLike?: InputMaybe /** Array of object IDs. Results will be limited to terms associated with these objects. */ - objectIds?: InputMaybe>>; + objectIds?: InputMaybe>> /** Direction the connection should be ordered in */ - order?: InputMaybe; + order?: InputMaybe /** Field(s) to order terms by. Defaults to 'name'. */ - orderby?: InputMaybe; + orderby?: InputMaybe /** Whether to pad the quantity of a term's children in the quantity of each term's "count" object variable. Default false. */ - padCounts?: InputMaybe; + padCounts?: InputMaybe /** Parent term ID to retrieve direct-child terms of. Default empty. */ - parent?: InputMaybe; + parent?: InputMaybe /** Search criteria to match terms. Will be SQL-formatted with wildcards before and after. Default empty. */ - search?: InputMaybe; + search?: InputMaybe /** Array of slugs to return term(s) for. Default empty. */ - slug?: InputMaybe>>; + slug?: InputMaybe>> /** Array of term taxonomy IDs, to match when querying terms. */ - termTaxonomId?: InputMaybe>>; + termTaxonomId?: InputMaybe>> /** Array of term taxonomy IDs, to match when querying terms. */ - termTaxonomyId?: InputMaybe>>; + termTaxonomyId?: InputMaybe>> /** Whether to prime meta caches for matched terms. Default true. */ - updateTermMetaCache?: InputMaybe; -}; + updateTermMetaCache?: InputMaybe +} /** Connection between the ReviewList type and the Taxonomy type */ -export type ReviewListToTaxonomyConnectionEdge = Edge & OneToOneConnection & TaxonomyConnectionEdge & { - __typename?: 'ReviewListToTaxonomyConnectionEdge'; - /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; - /** The node of the connection, without the edges */ - node: Taxonomy; -}; +export type ReviewListToTaxonomyConnectionEdge = Edge & + OneToOneConnection & + TaxonomyConnectionEdge & { + __typename?: 'ReviewListToTaxonomyConnectionEdge' + /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ + cursor?: Maybe + /** The node of the connection, without the edges */ + node: Taxonomy + } /** Set relationships between the review to reviewLists */ export type ReviewReviewListsInput = { /** If true, this will append the reviewList to existing related reviewLists. If false, this will replace existing relationships. Default true. */ - append?: InputMaybe; + append?: InputMaybe /** The input list of items to set. */ - nodes?: InputMaybe>>; -}; + nodes?: InputMaybe>> +} /** List of reviewLists to connect the review to. If an ID is set, it will be used to create the connection. If not, it will look for a slug. If neither are valid existing terms, and the site is configured to allow terms to be created during post mutations, a term will be created using the Name if it exists in the input, then fallback to the slug if it exists. */ export type ReviewReviewListsNodeInput = { /** The description of the reviewList. This field is used to set a description of the reviewList if a new one is created during the mutation. */ - description?: InputMaybe; + description?: InputMaybe /** The ID of the reviewList. If present, this will be used to connect to the review. If no existing reviewList exists with this ID, no connection will be made. */ - id?: InputMaybe; + id?: InputMaybe /** The name of the reviewList. This field is used to create a new term, if term creation is enabled in nested mutations, and if one does not already exist with the provided slug or ID or if a slug or ID is not provided. If no name is included and a term is created, the creation will fallback to the slug field. */ - name?: InputMaybe; + name?: InputMaybe /** The slug of the reviewList. If no ID is present, this field will be used to make a connection. If no existing term exists with this slug, this field will be used as a fallback to the Name field when creating a new term to connect to, if term creation is enabled as a nested mutation. */ - slug?: InputMaybe; -}; + slug?: InputMaybe +} /** Connection between the Review type and the review type */ -export type ReviewToPreviewConnectionEdge = Edge & OneToOneConnection & ReviewConnectionEdge & { - __typename?: 'ReviewToPreviewConnectionEdge'; - /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; - /** The node of the connection, without the edges */ - node: Review; -}; +export type ReviewToPreviewConnectionEdge = Edge & + OneToOneConnection & + ReviewConnectionEdge & { + __typename?: 'ReviewToPreviewConnectionEdge' + /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ + cursor?: Maybe + /** The node of the connection, without the edges */ + node: Review + } /** Connection between the Review type and the reviewList type */ -export type ReviewToReviewListConnection = Connection & ReviewListConnection & { - __typename?: 'ReviewToReviewListConnection'; - /** Edges for the ReviewToReviewListConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: ReviewToReviewListConnectionPageInfo; -}; +export type ReviewToReviewListConnection = Connection & + ReviewListConnection & { + __typename?: 'ReviewToReviewListConnection' + /** Edges for the ReviewToReviewListConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: ReviewToReviewListConnectionPageInfo + } /** An edge in a connection */ -export type ReviewToReviewListConnectionEdge = Edge & ReviewListConnectionEdge & { - __typename?: 'ReviewToReviewListConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The Yoast SEO Primary review_list */ - isPrimary?: Maybe; - /** The item at the end of the edge */ - node: ReviewList; -}; +export type ReviewToReviewListConnectionEdge = Edge & + ReviewListConnectionEdge & { + __typename?: 'ReviewToReviewListConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The Yoast SEO Primary review_list */ + isPrimary?: Maybe + /** The item at the end of the edge */ + node: ReviewList + } /** Page Info on the "ReviewToReviewListConnection" */ -export type ReviewToReviewListConnectionPageInfo = PageInfo & ReviewListConnectionPageInfo & WpPageInfo & { - __typename?: 'ReviewToReviewListConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type ReviewToReviewListConnectionPageInfo = PageInfo & + ReviewListConnectionPageInfo & + WpPageInfo & { + __typename?: 'ReviewToReviewListConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the ReviewToReviewListConnection connection */ export type ReviewToReviewListConnectionWhereArgs = { /** Unique cache key to be produced when this query is stored in an object cache. Default is 'core'. */ - cacheDomain?: InputMaybe; + cacheDomain?: InputMaybe /** Term ID to retrieve child terms of. If multiple taxonomies are passed, $child_of is ignored. Default 0. */ - childOf?: InputMaybe; + childOf?: InputMaybe /** True to limit results to terms that have no children. This parameter has no effect on non-hierarchical taxonomies. Default false. */ - childless?: InputMaybe; + childless?: InputMaybe /** Retrieve terms where the description is LIKE the input value. Default empty. */ - descriptionLike?: InputMaybe; + descriptionLike?: InputMaybe /** Array of term ids to exclude. If $include is non-empty, $exclude is ignored. Default empty array. */ - exclude?: InputMaybe>>; + exclude?: InputMaybe>> /** Array of term ids to exclude along with all of their descendant terms. If $include is non-empty, $exclude_tree is ignored. Default empty array. */ - excludeTree?: InputMaybe>>; + excludeTree?: InputMaybe>> /** Whether to hide terms not assigned to any posts. Accepts true or false. Default false */ - hideEmpty?: InputMaybe; + hideEmpty?: InputMaybe /** Whether to include terms that have non-empty descendants (even if $hide_empty is set to true). Default true. */ - hierarchical?: InputMaybe; + hierarchical?: InputMaybe /** Array of term ids to include. Default empty array. */ - include?: InputMaybe>>; + include?: InputMaybe>> /** Array of names to return term(s) for. Default empty. */ - name?: InputMaybe>>; + name?: InputMaybe>> /** Retrieve terms where the name is LIKE the input value. Default empty. */ - nameLike?: InputMaybe; + nameLike?: InputMaybe /** Array of object IDs. Results will be limited to terms associated with these objects. */ - objectIds?: InputMaybe>>; + objectIds?: InputMaybe>> /** Direction the connection should be ordered in */ - order?: InputMaybe; + order?: InputMaybe /** Field(s) to order terms by. Defaults to 'name'. */ - orderby?: InputMaybe; + orderby?: InputMaybe /** Whether to pad the quantity of a term's children in the quantity of each term's "count" object variable. Default false. */ - padCounts?: InputMaybe; + padCounts?: InputMaybe /** Parent term ID to retrieve direct-child terms of. Default empty. */ - parent?: InputMaybe; + parent?: InputMaybe /** Search criteria to match terms. Will be SQL-formatted with wildcards before and after. Default empty. */ - search?: InputMaybe; + search?: InputMaybe /** Array of slugs to return term(s) for. Default empty. */ - slug?: InputMaybe>>; + slug?: InputMaybe>> /** Array of term taxonomy IDs, to match when querying terms. */ - termTaxonomId?: InputMaybe>>; + termTaxonomId?: InputMaybe>> /** Array of term taxonomy IDs, to match when querying terms. */ - termTaxonomyId?: InputMaybe>>; + termTaxonomyId?: InputMaybe>> /** Whether to prime meta caches for matched terms. Default true. */ - updateTermMetaCache?: InputMaybe; -}; + updateTermMetaCache?: InputMaybe +} /** Connection between the Review type and the TermNode type */ -export type ReviewToTermNodeConnection = Connection & TermNodeConnection & { - __typename?: 'ReviewToTermNodeConnection'; - /** Edges for the ReviewToTermNodeConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: ReviewToTermNodeConnectionPageInfo; -}; +export type ReviewToTermNodeConnection = Connection & + TermNodeConnection & { + __typename?: 'ReviewToTermNodeConnection' + /** Edges for the ReviewToTermNodeConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: ReviewToTermNodeConnectionPageInfo + } /** An edge in a connection */ -export type ReviewToTermNodeConnectionEdge = Edge & TermNodeConnectionEdge & { - __typename?: 'ReviewToTermNodeConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: TermNode; -}; +export type ReviewToTermNodeConnectionEdge = Edge & + TermNodeConnectionEdge & { + __typename?: 'ReviewToTermNodeConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: TermNode + } /** Page Info on the "ReviewToTermNodeConnection" */ -export type ReviewToTermNodeConnectionPageInfo = PageInfo & TermNodeConnectionPageInfo & WpPageInfo & { - __typename?: 'ReviewToTermNodeConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type ReviewToTermNodeConnectionPageInfo = PageInfo & + TermNodeConnectionPageInfo & + WpPageInfo & { + __typename?: 'ReviewToTermNodeConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the ReviewToTermNodeConnection connection */ export type ReviewToTermNodeConnectionWhereArgs = { /** Unique cache key to be produced when this query is stored in an object cache. Default is 'core'. */ - cacheDomain?: InputMaybe; + cacheDomain?: InputMaybe /** Term ID to retrieve child terms of. If multiple taxonomies are passed, $child_of is ignored. Default 0. */ - childOf?: InputMaybe; + childOf?: InputMaybe /** True to limit results to terms that have no children. This parameter has no effect on non-hierarchical taxonomies. Default false. */ - childless?: InputMaybe; + childless?: InputMaybe /** Retrieve terms where the description is LIKE the input value. Default empty. */ - descriptionLike?: InputMaybe; + descriptionLike?: InputMaybe /** Array of term ids to exclude. If $include is non-empty, $exclude is ignored. Default empty array. */ - exclude?: InputMaybe>>; + exclude?: InputMaybe>> /** Array of term ids to exclude along with all of their descendant terms. If $include is non-empty, $exclude_tree is ignored. Default empty array. */ - excludeTree?: InputMaybe>>; + excludeTree?: InputMaybe>> /** Whether to hide terms not assigned to any posts. Accepts true or false. Default false */ - hideEmpty?: InputMaybe; + hideEmpty?: InputMaybe /** Whether to include terms that have non-empty descendants (even if $hide_empty is set to true). Default true. */ - hierarchical?: InputMaybe; + hierarchical?: InputMaybe /** Array of term ids to include. Default empty array. */ - include?: InputMaybe>>; + include?: InputMaybe>> /** Array of names to return term(s) for. Default empty. */ - name?: InputMaybe>>; + name?: InputMaybe>> /** Retrieve terms where the name is LIKE the input value. Default empty. */ - nameLike?: InputMaybe; + nameLike?: InputMaybe /** Array of object IDs. Results will be limited to terms associated with these objects. */ - objectIds?: InputMaybe>>; + objectIds?: InputMaybe>> /** Direction the connection should be ordered in */ - order?: InputMaybe; + order?: InputMaybe /** Field(s) to order terms by. Defaults to 'name'. */ - orderby?: InputMaybe; + orderby?: InputMaybe /** Whether to pad the quantity of a term's children in the quantity of each term's "count" object variable. Default false. */ - padCounts?: InputMaybe; + padCounts?: InputMaybe /** Parent term ID to retrieve direct-child terms of. Default empty. */ - parent?: InputMaybe; + parent?: InputMaybe /** Search criteria to match terms. Will be SQL-formatted with wildcards before and after. Default empty. */ - search?: InputMaybe; + search?: InputMaybe /** Array of slugs to return term(s) for. Default empty. */ - slug?: InputMaybe>>; + slug?: InputMaybe>> /** The Taxonomy to filter terms by */ - taxonomies?: InputMaybe>>; + taxonomies?: InputMaybe>> /** Array of term taxonomy IDs, to match when querying terms. */ - termTaxonomId?: InputMaybe>>; + termTaxonomId?: InputMaybe>> /** Array of term taxonomy IDs, to match when querying terms. */ - termTaxonomyId?: InputMaybe>>; + termTaxonomyId?: InputMaybe>> /** Whether to prime meta caches for matched terms. Default true. */ - updateTermMetaCache?: InputMaybe; -}; + updateTermMetaCache?: InputMaybe +} /** The "Reviews" Field Group. Added to the Schema by "WPGraphQL for ACF". */ -export type Reviews = AcfFieldGroup & AcfFieldGroupFields & Reviews_Fields & { - __typename?: 'Reviews'; - /** - * The name of the field group - * @deprecated Use __typename instead - */ - fieldGroupName?: Maybe; - /** Field of the "repeater" Field Type added to the schema as part of the "Reviews" Field Group */ - review?: Maybe>>; - /** Field of the "text" Field Type added to the schema as part of the "Reviews" Field Group */ - title?: Maybe; -}; +export type Reviews = AcfFieldGroup & + AcfFieldGroupFields & + Reviews_Fields & { + __typename?: 'Reviews' + /** + * The name of the field group + * @deprecated Use __typename instead + */ + fieldGroupName?: Maybe + /** Field of the "repeater" Field Type added to the schema as part of the "Reviews" Field Group */ + review?: Maybe>> + /** Field of the "text" Field Type added to the schema as part of the "Reviews" Field Group */ + title?: Maybe + } /** The "ReviewsReview" Field Group. Added to the Schema by "WPGraphQL for ACF". */ -export type ReviewsReview = AcfFieldGroup & AcfFieldGroupFields & ReviewsReview_Fields & { - __typename?: 'ReviewsReview'; - /** Field of the "text" Field Type added to the schema as part of the "ReviewsReview" Field Group */ - cta?: Maybe; - /** - * The name of the field group - * @deprecated Use __typename instead - */ - fieldGroupName?: Maybe; - /** Field of the "text" Field Type added to the schema as part of the "ReviewsReview" Field Group */ - subtitle?: Maybe; - /** Field of the "text" Field Type added to the schema as part of the "ReviewsReview" Field Group */ - text?: Maybe; - /** Field of the "text" Field Type added to the schema as part of the "ReviewsReview" Field Group */ - title?: Maybe; -}; +export type ReviewsReview = AcfFieldGroup & + AcfFieldGroupFields & + ReviewsReview_Fields & { + __typename?: 'ReviewsReview' + /** Field of the "text" Field Type added to the schema as part of the "ReviewsReview" Field Group */ + cta?: Maybe + /** + * The name of the field group + * @deprecated Use __typename instead + */ + fieldGroupName?: Maybe + /** Field of the "text" Field Type added to the schema as part of the "ReviewsReview" Field Group */ + subtitle?: Maybe + /** Field of the "text" Field Type added to the schema as part of the "ReviewsReview" Field Group */ + text?: Maybe + /** Field of the "text" Field Type added to the schema as part of the "ReviewsReview" Field Group */ + title?: Maybe + } /** Interface representing fields of the ACF "ReviewsReview" Field Group */ export type ReviewsReview_Fields = { /** Field of the "text" Field Type added to the schema as part of the "ReviewsReview" Field Group */ - cta?: Maybe; + cta?: Maybe /** * The name of the field group * @deprecated Use __typename instead */ - fieldGroupName?: Maybe; + fieldGroupName?: Maybe /** Field of the "text" Field Type added to the schema as part of the "ReviewsReview" Field Group */ - subtitle?: Maybe; + subtitle?: Maybe /** Field of the "text" Field Type added to the schema as part of the "ReviewsReview" Field Group */ - text?: Maybe; + text?: Maybe /** Field of the "text" Field Type added to the schema as part of the "ReviewsReview" Field Group */ - title?: Maybe; -}; + title?: Maybe +} /** Interface representing fields of the ACF "Reviews" Field Group */ export type Reviews_Fields = { @@ -11447,5447 +11776,5421 @@ export type Reviews_Fields = { * The name of the field group * @deprecated Use __typename instead */ - fieldGroupName?: Maybe; + fieldGroupName?: Maybe /** Field of the "repeater" Field Type added to the schema as part of the "Reviews" Field Group */ - review?: Maybe>>; + review?: Maybe>> /** Field of the "text" Field Type added to the schema as part of the "Reviews" Field Group */ - title?: Maybe; -}; + title?: Maybe +} /** The root mutation */ export type RootMutation = { - __typename?: 'RootMutation'; + __typename?: 'RootMutation' /** The createAboutItem mutation */ - createAboutItem?: Maybe; + createAboutItem?: Maybe /** The createCategory mutation */ - createCategory?: Maybe; + createCategory?: Maybe /** The createComment mutation */ - createComment?: Maybe; + createComment?: Maybe /** The createCommonFragment mutation */ - createCommonFragment?: Maybe; + createCommonFragment?: Maybe /** The createConfidentialityPolicy mutation */ - createConfidentialityPolicy?: Maybe; + createConfidentialityPolicy?: Maybe /** The createContact mutation */ - createContact?: Maybe; + createContact?: Maybe /** The createContactItem mutation */ - createContactItem?: Maybe; + createContactItem?: Maybe /** The createFeedbackItem mutation */ - createFeedbackItem?: Maybe; + createFeedbackItem?: Maybe /** The createFooterItem mutation */ - createFooterItem?: Maybe; + createFooterItem?: Maybe /** The createFragment mutation */ - createFragment?: Maybe; + createFragment?: Maybe /** The createHeroItem mutation */ - createHeroItem?: Maybe; + createHeroItem?: Maybe /** The createMain mutation */ - createMain?: Maybe; + createMain?: Maybe /** The createMediaItem mutation */ - createMediaItem?: Maybe; + createMediaItem?: Maybe /** The createMessenger mutation */ - createMessenger?: Maybe; + createMessenger?: Maybe /** The createNavigationItem mutation */ - createNavigationItem?: Maybe; + createNavigationItem?: Maybe /** The createNotFound mutation */ - createNotFound?: Maybe; + createNotFound?: Maybe /** The createPage mutation */ - createPage?: Maybe; + createPage?: Maybe /** The createPost mutation */ - createPost?: Maybe; + createPost?: Maybe /** The createPostFormat mutation */ - createPostFormat?: Maybe; + createPostFormat?: Maybe /** The createPrivacyPolicyItem mutation */ - createPrivacyPolicyItem?: Maybe; + createPrivacyPolicyItem?: Maybe /** The createRecruit mutation */ - createRecruit?: Maybe; + createRecruit?: Maybe /** The createRecruitList mutation */ - createRecruitList?: Maybe; + createRecruitList?: Maybe /** The createReview mutation */ - createReview?: Maybe; + createReview?: Maybe /** The createReviewList mutation */ - createReviewList?: Maybe; + createReviewList?: Maybe /** The createSkill mutation */ - createSkill?: Maybe; + createSkill?: Maybe /** The createSkillCategory mutation */ - createSkillCategory?: Maybe; + createSkillCategory?: Maybe /** The createSocialNetwork mutation */ - createSocialNetwork?: Maybe; + createSocialNetwork?: Maybe /** The createTag mutation */ - createTag?: Maybe; + createTag?: Maybe /** The createUser mutation */ - createUser?: Maybe; + createUser?: Maybe /** The deleteAboutItem mutation */ - deleteAboutItem?: Maybe; + deleteAboutItem?: Maybe /** The deleteCategory mutation */ - deleteCategory?: Maybe; + deleteCategory?: Maybe /** The deleteComment mutation */ - deleteComment?: Maybe; + deleteComment?: Maybe /** The deleteCommonFragment mutation */ - deleteCommonFragment?: Maybe; + deleteCommonFragment?: Maybe /** The deleteConfidentialityPolicy mutation */ - deleteConfidentialityPolicy?: Maybe; + deleteConfidentialityPolicy?: Maybe /** The deleteContact mutation */ - deleteContact?: Maybe; + deleteContact?: Maybe /** The deleteContactItem mutation */ - deleteContactItem?: Maybe; + deleteContactItem?: Maybe /** The deleteFeedbackItem mutation */ - deleteFeedbackItem?: Maybe; + deleteFeedbackItem?: Maybe /** The deleteFooterItem mutation */ - deleteFooterItem?: Maybe; + deleteFooterItem?: Maybe /** The deleteFragment mutation */ - deleteFragment?: Maybe; + deleteFragment?: Maybe /** The deleteHeroItem mutation */ - deleteHeroItem?: Maybe; + deleteHeroItem?: Maybe /** The deleteMain mutation */ - deleteMain?: Maybe; + deleteMain?: Maybe /** The deleteMediaItem mutation */ - deleteMediaItem?: Maybe; + deleteMediaItem?: Maybe /** The deleteMessenger mutation */ - deleteMessenger?: Maybe; + deleteMessenger?: Maybe /** The deleteNavigationItem mutation */ - deleteNavigationItem?: Maybe; + deleteNavigationItem?: Maybe /** The deleteNotFound mutation */ - deleteNotFound?: Maybe; + deleteNotFound?: Maybe /** The deletePage mutation */ - deletePage?: Maybe; + deletePage?: Maybe /** The deletePost mutation */ - deletePost?: Maybe; + deletePost?: Maybe /** The deletePostFormat mutation */ - deletePostFormat?: Maybe; + deletePostFormat?: Maybe /** The deletePrivacyPolicyItem mutation */ - deletePrivacyPolicyItem?: Maybe; + deletePrivacyPolicyItem?: Maybe /** The deleteRecruit mutation */ - deleteRecruit?: Maybe; + deleteRecruit?: Maybe /** The deleteRecruitList mutation */ - deleteRecruitList?: Maybe; + deleteRecruitList?: Maybe /** The deleteReview mutation */ - deleteReview?: Maybe; + deleteReview?: Maybe /** The deleteReviewList mutation */ - deleteReviewList?: Maybe; + deleteReviewList?: Maybe /** The deleteSkill mutation */ - deleteSkill?: Maybe; + deleteSkill?: Maybe /** The deleteSkillCategory mutation */ - deleteSkillCategory?: Maybe; + deleteSkillCategory?: Maybe /** The deleteSocialNetwork mutation */ - deleteSocialNetwork?: Maybe; + deleteSocialNetwork?: Maybe /** The deleteTag mutation */ - deleteTag?: Maybe; + deleteTag?: Maybe /** The deleteUser mutation */ - deleteUser?: Maybe; + deleteUser?: Maybe /** Increase the count. */ - increaseCount?: Maybe; + increaseCount?: Maybe /** The registerUser mutation */ - registerUser?: Maybe; + registerUser?: Maybe /** The resetUserPassword mutation */ - resetUserPassword?: Maybe; + resetUserPassword?: Maybe /** The restoreComment mutation */ - restoreComment?: Maybe; + restoreComment?: Maybe /** Send password reset email to user */ - sendPasswordResetEmail?: Maybe; + sendPasswordResetEmail?: Maybe /** The submitForm mutation */ - submitForm?: Maybe; + submitForm?: Maybe /** The updateAboutItem mutation */ - updateAboutItem?: Maybe; + updateAboutItem?: Maybe /** The updateCategory mutation */ - updateCategory?: Maybe; + updateCategory?: Maybe /** The updateComment mutation */ - updateComment?: Maybe; + updateComment?: Maybe /** The updateCommonFragment mutation */ - updateCommonFragment?: Maybe; + updateCommonFragment?: Maybe /** The updateConfidentialityPolicy mutation */ - updateConfidentialityPolicy?: Maybe; + updateConfidentialityPolicy?: Maybe /** The updateContact mutation */ - updateContact?: Maybe; + updateContact?: Maybe /** The updateContactItem mutation */ - updateContactItem?: Maybe; + updateContactItem?: Maybe /** The updateFeedbackItem mutation */ - updateFeedbackItem?: Maybe; + updateFeedbackItem?: Maybe /** The updateFooterItem mutation */ - updateFooterItem?: Maybe; + updateFooterItem?: Maybe /** The updateFragment mutation */ - updateFragment?: Maybe; + updateFragment?: Maybe /** The updateHeroItem mutation */ - updateHeroItem?: Maybe; + updateHeroItem?: Maybe /** The updateMain mutation */ - updateMain?: Maybe; + updateMain?: Maybe /** The updateMediaItem mutation */ - updateMediaItem?: Maybe; + updateMediaItem?: Maybe /** The updateMessenger mutation */ - updateMessenger?: Maybe; + updateMessenger?: Maybe /** The updateNavigationItem mutation */ - updateNavigationItem?: Maybe; + updateNavigationItem?: Maybe /** The updateNotFound mutation */ - updateNotFound?: Maybe; + updateNotFound?: Maybe /** The updatePage mutation */ - updatePage?: Maybe; + updatePage?: Maybe /** The updatePost mutation */ - updatePost?: Maybe; + updatePost?: Maybe /** The updatePostFormat mutation */ - updatePostFormat?: Maybe; + updatePostFormat?: Maybe /** The updatePrivacyPolicyItem mutation */ - updatePrivacyPolicyItem?: Maybe; + updatePrivacyPolicyItem?: Maybe /** The updateRecruit mutation */ - updateRecruit?: Maybe; + updateRecruit?: Maybe /** The updateRecruitList mutation */ - updateRecruitList?: Maybe; + updateRecruitList?: Maybe /** The updateReview mutation */ - updateReview?: Maybe; + updateReview?: Maybe /** The updateReviewList mutation */ - updateReviewList?: Maybe; + updateReviewList?: Maybe /** The updateSettings mutation */ - updateSettings?: Maybe; + updateSettings?: Maybe /** The updateSkill mutation */ - updateSkill?: Maybe; + updateSkill?: Maybe /** The updateSkillCategory mutation */ - updateSkillCategory?: Maybe; + updateSkillCategory?: Maybe /** The updateSocialNetwork mutation */ - updateSocialNetwork?: Maybe; + updateSocialNetwork?: Maybe /** The updateTag mutation */ - updateTag?: Maybe; + updateTag?: Maybe /** The updateUser mutation */ - updateUser?: Maybe; -}; - + updateUser?: Maybe +} /** The root mutation */ export type RootMutationCreateAboutItemArgs = { - input: CreateAboutItemInput; -}; - + input: CreateAboutItemInput +} /** The root mutation */ export type RootMutationCreateCategoryArgs = { - input: CreateCategoryInput; -}; - + input: CreateCategoryInput +} /** The root mutation */ export type RootMutationCreateCommentArgs = { - input: CreateCommentInput; -}; - + input: CreateCommentInput +} /** The root mutation */ export type RootMutationCreateCommonFragmentArgs = { - input: CreateCommonFragmentInput; -}; - + input: CreateCommonFragmentInput +} /** The root mutation */ export type RootMutationCreateConfidentialityPolicyArgs = { - input: CreateConfidentialityPolicyInput; -}; - + input: CreateConfidentialityPolicyInput +} /** The root mutation */ export type RootMutationCreateContactArgs = { - input: CreateContactInput; -}; - + input: CreateContactInput +} /** The root mutation */ export type RootMutationCreateContactItemArgs = { - input: CreateContactItemInput; -}; - + input: CreateContactItemInput +} /** The root mutation */ export type RootMutationCreateFeedbackItemArgs = { - input: CreateFeedbackItemInput; -}; - + input: CreateFeedbackItemInput +} /** The root mutation */ export type RootMutationCreateFooterItemArgs = { - input: CreateFooterItemInput; -}; - + input: CreateFooterItemInput +} /** The root mutation */ export type RootMutationCreateFragmentArgs = { - input: CreateFragmentInput; -}; - + input: CreateFragmentInput +} /** The root mutation */ export type RootMutationCreateHeroItemArgs = { - input: CreateHeroItemInput; -}; - + input: CreateHeroItemInput +} /** The root mutation */ export type RootMutationCreateMainArgs = { - input: CreateMainInput; -}; - + input: CreateMainInput +} /** The root mutation */ export type RootMutationCreateMediaItemArgs = { - input: CreateMediaItemInput; -}; - + input: CreateMediaItemInput +} /** The root mutation */ export type RootMutationCreateMessengerArgs = { - input: CreateMessengerInput; -}; - + input: CreateMessengerInput +} /** The root mutation */ export type RootMutationCreateNavigationItemArgs = { - input: CreateNavigationItemInput; -}; - + input: CreateNavigationItemInput +} /** The root mutation */ export type RootMutationCreateNotFoundArgs = { - input: CreateNotFoundInput; -}; - + input: CreateNotFoundInput +} /** The root mutation */ export type RootMutationCreatePageArgs = { - input: CreatePageInput; -}; - + input: CreatePageInput +} /** The root mutation */ export type RootMutationCreatePostArgs = { - input: CreatePostInput; -}; - + input: CreatePostInput +} /** The root mutation */ export type RootMutationCreatePostFormatArgs = { - input: CreatePostFormatInput; -}; - + input: CreatePostFormatInput +} /** The root mutation */ export type RootMutationCreatePrivacyPolicyItemArgs = { - input: CreatePrivacyPolicyItemInput; -}; - + input: CreatePrivacyPolicyItemInput +} /** The root mutation */ export type RootMutationCreateRecruitArgs = { - input: CreateRecruitInput; -}; - + input: CreateRecruitInput +} /** The root mutation */ export type RootMutationCreateRecruitListArgs = { - input: CreateRecruitListInput; -}; - + input: CreateRecruitListInput +} /** The root mutation */ export type RootMutationCreateReviewArgs = { - input: CreateReviewInput; -}; - + input: CreateReviewInput +} /** The root mutation */ export type RootMutationCreateReviewListArgs = { - input: CreateReviewListInput; -}; - + input: CreateReviewListInput +} /** The root mutation */ export type RootMutationCreateSkillArgs = { - input: CreateSkillInput; -}; - + input: CreateSkillInput +} /** The root mutation */ export type RootMutationCreateSkillCategoryArgs = { - input: CreateSkillCategoryInput; -}; - + input: CreateSkillCategoryInput +} /** The root mutation */ export type RootMutationCreateSocialNetworkArgs = { - input: CreateSocialNetworkInput; -}; - + input: CreateSocialNetworkInput +} /** The root mutation */ export type RootMutationCreateTagArgs = { - input: CreateTagInput; -}; - + input: CreateTagInput +} /** The root mutation */ export type RootMutationCreateUserArgs = { - input: CreateUserInput; -}; - + input: CreateUserInput +} /** The root mutation */ export type RootMutationDeleteAboutItemArgs = { - input: DeleteAboutItemInput; -}; - + input: DeleteAboutItemInput +} /** The root mutation */ export type RootMutationDeleteCategoryArgs = { - input: DeleteCategoryInput; -}; - + input: DeleteCategoryInput +} /** The root mutation */ export type RootMutationDeleteCommentArgs = { - input: DeleteCommentInput; -}; - + input: DeleteCommentInput +} /** The root mutation */ export type RootMutationDeleteCommonFragmentArgs = { - input: DeleteCommonFragmentInput; -}; - + input: DeleteCommonFragmentInput +} /** The root mutation */ export type RootMutationDeleteConfidentialityPolicyArgs = { - input: DeleteConfidentialityPolicyInput; -}; - + input: DeleteConfidentialityPolicyInput +} /** The root mutation */ export type RootMutationDeleteContactArgs = { - input: DeleteContactInput; -}; - + input: DeleteContactInput +} /** The root mutation */ export type RootMutationDeleteContactItemArgs = { - input: DeleteContactItemInput; -}; - + input: DeleteContactItemInput +} /** The root mutation */ export type RootMutationDeleteFeedbackItemArgs = { - input: DeleteFeedbackItemInput; -}; - + input: DeleteFeedbackItemInput +} /** The root mutation */ export type RootMutationDeleteFooterItemArgs = { - input: DeleteFooterItemInput; -}; - + input: DeleteFooterItemInput +} /** The root mutation */ export type RootMutationDeleteFragmentArgs = { - input: DeleteFragmentInput; -}; - + input: DeleteFragmentInput +} /** The root mutation */ export type RootMutationDeleteHeroItemArgs = { - input: DeleteHeroItemInput; -}; - + input: DeleteHeroItemInput +} /** The root mutation */ export type RootMutationDeleteMainArgs = { - input: DeleteMainInput; -}; - + input: DeleteMainInput +} /** The root mutation */ export type RootMutationDeleteMediaItemArgs = { - input: DeleteMediaItemInput; -}; - + input: DeleteMediaItemInput +} /** The root mutation */ export type RootMutationDeleteMessengerArgs = { - input: DeleteMessengerInput; -}; - + input: DeleteMessengerInput +} /** The root mutation */ export type RootMutationDeleteNavigationItemArgs = { - input: DeleteNavigationItemInput; -}; - + input: DeleteNavigationItemInput +} /** The root mutation */ export type RootMutationDeleteNotFoundArgs = { - input: DeleteNotFoundInput; -}; - + input: DeleteNotFoundInput +} /** The root mutation */ export type RootMutationDeletePageArgs = { - input: DeletePageInput; -}; - + input: DeletePageInput +} /** The root mutation */ export type RootMutationDeletePostArgs = { - input: DeletePostInput; -}; - + input: DeletePostInput +} /** The root mutation */ export type RootMutationDeletePostFormatArgs = { - input: DeletePostFormatInput; -}; - + input: DeletePostFormatInput +} /** The root mutation */ export type RootMutationDeletePrivacyPolicyItemArgs = { - input: DeletePrivacyPolicyItemInput; -}; - + input: DeletePrivacyPolicyItemInput +} /** The root mutation */ export type RootMutationDeleteRecruitArgs = { - input: DeleteRecruitInput; -}; - + input: DeleteRecruitInput +} /** The root mutation */ export type RootMutationDeleteRecruitListArgs = { - input: DeleteRecruitListInput; -}; - + input: DeleteRecruitListInput +} /** The root mutation */ export type RootMutationDeleteReviewArgs = { - input: DeleteReviewInput; -}; - + input: DeleteReviewInput +} /** The root mutation */ export type RootMutationDeleteReviewListArgs = { - input: DeleteReviewListInput; -}; - + input: DeleteReviewListInput +} /** The root mutation */ export type RootMutationDeleteSkillArgs = { - input: DeleteSkillInput; -}; - + input: DeleteSkillInput +} /** The root mutation */ export type RootMutationDeleteSkillCategoryArgs = { - input: DeleteSkillCategoryInput; -}; - + input: DeleteSkillCategoryInput +} /** The root mutation */ export type RootMutationDeleteSocialNetworkArgs = { - input: DeleteSocialNetworkInput; -}; - + input: DeleteSocialNetworkInput +} /** The root mutation */ export type RootMutationDeleteTagArgs = { - input: DeleteTagInput; -}; - + input: DeleteTagInput +} /** The root mutation */ export type RootMutationDeleteUserArgs = { - input: DeleteUserInput; -}; - + input: DeleteUserInput +} /** The root mutation */ export type RootMutationIncreaseCountArgs = { - count?: InputMaybe; -}; - + count?: InputMaybe +} /** The root mutation */ export type RootMutationRegisterUserArgs = { - input: RegisterUserInput; -}; - + input: RegisterUserInput +} /** The root mutation */ export type RootMutationResetUserPasswordArgs = { - input: ResetUserPasswordInput; -}; - + input: ResetUserPasswordInput +} /** The root mutation */ export type RootMutationRestoreCommentArgs = { - input: RestoreCommentInput; -}; - + input: RestoreCommentInput +} /** The root mutation */ export type RootMutationSendPasswordResetEmailArgs = { - input: SendPasswordResetEmailInput; -}; - + input: SendPasswordResetEmailInput +} /** The root mutation */ export type RootMutationSubmitFormArgs = { - input: SubmitFormInput; -}; - + input: SubmitFormInput +} /** The root mutation */ export type RootMutationUpdateAboutItemArgs = { - input: UpdateAboutItemInput; -}; - + input: UpdateAboutItemInput +} /** The root mutation */ export type RootMutationUpdateCategoryArgs = { - input: UpdateCategoryInput; -}; - + input: UpdateCategoryInput +} /** The root mutation */ export type RootMutationUpdateCommentArgs = { - input: UpdateCommentInput; -}; - + input: UpdateCommentInput +} /** The root mutation */ export type RootMutationUpdateCommonFragmentArgs = { - input: UpdateCommonFragmentInput; -}; - + input: UpdateCommonFragmentInput +} /** The root mutation */ export type RootMutationUpdateConfidentialityPolicyArgs = { - input: UpdateConfidentialityPolicyInput; -}; - + input: UpdateConfidentialityPolicyInput +} /** The root mutation */ export type RootMutationUpdateContactArgs = { - input: UpdateContactInput; -}; - + input: UpdateContactInput +} /** The root mutation */ export type RootMutationUpdateContactItemArgs = { - input: UpdateContactItemInput; -}; - + input: UpdateContactItemInput +} /** The root mutation */ export type RootMutationUpdateFeedbackItemArgs = { - input: UpdateFeedbackItemInput; -}; - + input: UpdateFeedbackItemInput +} /** The root mutation */ export type RootMutationUpdateFooterItemArgs = { - input: UpdateFooterItemInput; -}; - + input: UpdateFooterItemInput +} /** The root mutation */ export type RootMutationUpdateFragmentArgs = { - input: UpdateFragmentInput; -}; - + input: UpdateFragmentInput +} /** The root mutation */ export type RootMutationUpdateHeroItemArgs = { - input: UpdateHeroItemInput; -}; - + input: UpdateHeroItemInput +} /** The root mutation */ export type RootMutationUpdateMainArgs = { - input: UpdateMainInput; -}; - + input: UpdateMainInput +} /** The root mutation */ export type RootMutationUpdateMediaItemArgs = { - input: UpdateMediaItemInput; -}; - + input: UpdateMediaItemInput +} /** The root mutation */ export type RootMutationUpdateMessengerArgs = { - input: UpdateMessengerInput; -}; - + input: UpdateMessengerInput +} /** The root mutation */ export type RootMutationUpdateNavigationItemArgs = { - input: UpdateNavigationItemInput; -}; - + input: UpdateNavigationItemInput +} /** The root mutation */ export type RootMutationUpdateNotFoundArgs = { - input: UpdateNotFoundInput; -}; - + input: UpdateNotFoundInput +} /** The root mutation */ export type RootMutationUpdatePageArgs = { - input: UpdatePageInput; -}; - + input: UpdatePageInput +} /** The root mutation */ export type RootMutationUpdatePostArgs = { - input: UpdatePostInput; -}; - + input: UpdatePostInput +} /** The root mutation */ export type RootMutationUpdatePostFormatArgs = { - input: UpdatePostFormatInput; -}; - + input: UpdatePostFormatInput +} /** The root mutation */ export type RootMutationUpdatePrivacyPolicyItemArgs = { - input: UpdatePrivacyPolicyItemInput; -}; - + input: UpdatePrivacyPolicyItemInput +} /** The root mutation */ export type RootMutationUpdateRecruitArgs = { - input: UpdateRecruitInput; -}; - + input: UpdateRecruitInput +} /** The root mutation */ export type RootMutationUpdateRecruitListArgs = { - input: UpdateRecruitListInput; -}; - + input: UpdateRecruitListInput +} /** The root mutation */ export type RootMutationUpdateReviewArgs = { - input: UpdateReviewInput; -}; - + input: UpdateReviewInput +} /** The root mutation */ export type RootMutationUpdateReviewListArgs = { - input: UpdateReviewListInput; -}; - + input: UpdateReviewListInput +} /** The root mutation */ export type RootMutationUpdateSettingsArgs = { - input: UpdateSettingsInput; -}; - + input: UpdateSettingsInput +} /** The root mutation */ export type RootMutationUpdateSkillArgs = { - input: UpdateSkillInput; -}; - + input: UpdateSkillInput +} /** The root mutation */ export type RootMutationUpdateSkillCategoryArgs = { - input: UpdateSkillCategoryInput; -}; - + input: UpdateSkillCategoryInput +} /** The root mutation */ export type RootMutationUpdateSocialNetworkArgs = { - input: UpdateSocialNetworkInput; -}; - + input: UpdateSocialNetworkInput +} /** The root mutation */ export type RootMutationUpdateTagArgs = { - input: UpdateTagInput; -}; - + input: UpdateTagInput +} /** The root mutation */ export type RootMutationUpdateUserArgs = { - input: UpdateUserInput; -}; + input: UpdateUserInput +} /** The root entry point into the Graph */ export type RootQuery = { - __typename?: 'RootQuery'; + __typename?: 'RootQuery' /** An object of the AboutItem Type. */ - aboutItem?: Maybe; + aboutItem?: Maybe /** * A AboutItem object * @deprecated Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "") */ - aboutItemBy?: Maybe; + aboutItemBy?: Maybe /** Connection between the RootQuery type and the AboutItem type */ - aboutItems?: Maybe; + aboutItems?: Maybe /** Connection between the RootQuery type and the confidentialityPolicy type */ - allConfidentialityPolicy?: Maybe; + allConfidentialityPolicy?: Maybe /** Entry point to get all settings for the site */ - allSettings?: Maybe; + allSettings?: Maybe /** Connection between the RootQuery type and the category type */ - categories?: Maybe; + categories?: Maybe /** A 0bject */ - category?: Maybe; + category?: Maybe /** Returns a Comment */ - comment?: Maybe; + comment?: Maybe /** Connection between the RootQuery type and the Comment type */ - comments?: Maybe; + comments?: Maybe /** An object of the CommonFragment Type. */ - commonFragment?: Maybe; + commonFragment?: Maybe /** * A CommonFragment object * @deprecated Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "") */ - commonFragmentBy?: Maybe; + commonFragmentBy?: Maybe /** Connection between the RootQuery type and the CommonFragment type */ - commonFragments?: Maybe; + commonFragments?: Maybe /** An object of the confidentialityPolicy Type. */ - confidentialityPolicy?: Maybe; + confidentialityPolicy?: Maybe /** * A confidentialityPolicy object * @deprecated Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "") */ - confidentialityPolicyBy?: Maybe; + confidentialityPolicyBy?: Maybe /** An object of the Contact Type. */ - contact?: Maybe; + contact?: Maybe /** * A Contact object * @deprecated Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "") */ - contactBy?: Maybe; + contactBy?: Maybe /** An object of the ContactItem Type. */ - contactItem?: Maybe; + contactItem?: Maybe /** * A ContactItem object * @deprecated Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "") */ - contactItemBy?: Maybe; + contactItemBy?: Maybe /** Connection between the RootQuery type and the ContactItem type */ - contactItems?: Maybe; + contactItems?: Maybe /** Connection between the RootQuery type and the Contact type */ - contacts?: Maybe; + contacts?: Maybe /** A node used to manage content */ - contentNode?: Maybe; + contentNode?: Maybe /** Connection between the RootQuery type and the ContentNode type */ - contentNodes?: Maybe; + contentNodes?: Maybe /** Fetch a Content Type node by unique Identifier */ - contentType?: Maybe; + contentType?: Maybe /** Connection between the RootQuery type and the ContentType type */ - contentTypes?: Maybe; + contentTypes?: Maybe /** Get language list */ - defaultLanguage?: Maybe; + defaultLanguage?: Maybe /** Fields of the 'DiscussionSettings' settings group */ - discussionSettings?: Maybe; + discussionSettings?: Maybe /** An object of the FeedbackItem Type. */ - feedbackItem?: Maybe; + feedbackItem?: Maybe /** * A FeedbackItem object * @deprecated Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "") */ - feedbackItemBy?: Maybe; + feedbackItemBy?: Maybe /** Connection between the RootQuery type and the FeedbackItem type */ - feedbackItems?: Maybe; + feedbackItems?: Maybe /** An object of the FooterItem Type. */ - footerItem?: Maybe; + footerItem?: Maybe /** * A FooterItem object * @deprecated Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "") */ - footerItemBy?: Maybe; + footerItemBy?: Maybe /** Connection between the RootQuery type and the FooterItem type */ - footerItems?: Maybe; + footerItems?: Maybe /** Ninja form object data. */ - form?: Maybe; - formField?: Maybe; + form?: Maybe + formField?: Maybe /** Connection between the RootQuery type and the Form type */ - forms?: Maybe; + forms?: Maybe /** An object of the Fragment Type. */ - fragment?: Maybe; + fragment?: Maybe /** * A Fragment object * @deprecated Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "") */ - fragmentBy?: Maybe; + fragmentBy?: Maybe /** Connection between the RootQuery type and the Fragment type */ - fragments?: Maybe; + fragments?: Maybe /** Fields of the 'GeneralSettings' settings group */ - generalSettings?: Maybe; + generalSettings?: Maybe /** An object of the HeroItem Type. */ - heroItem?: Maybe; + heroItem?: Maybe /** * A HeroItem object * @deprecated Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "") */ - heroItemBy?: Maybe; + heroItemBy?: Maybe /** Connection between the RootQuery type and the HeroItem type */ - heroItems?: Maybe; + heroItems?: Maybe /** List available languages */ - languages?: Maybe>>; + languages?: Maybe>> /** An object of the Main Type. */ - main?: Maybe
; + main?: Maybe
/** * A Main object * @deprecated Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "") */ - mainBy?: Maybe
; + mainBy?: Maybe
/** Connection between the RootQuery type and the Main type */ - mains?: Maybe; + mains?: Maybe /** An object of the mediaItem Type. */ - mediaItem?: Maybe; + mediaItem?: Maybe /** * A mediaItem object * @deprecated Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "") */ - mediaItemBy?: Maybe; + mediaItemBy?: Maybe /** Connection between the RootQuery type and the mediaItem type */ - mediaItems?: Maybe; + mediaItems?: Maybe /** A WordPress navigation menu */ - menu?: Maybe; + menu?: Maybe /** A WordPress navigation menu item */ - menuItem?: Maybe; + menuItem?: Maybe /** Connection between the RootQuery type and the MenuItem type */ - menuItems?: Maybe; + menuItems?: Maybe /** Connection between the RootQuery type and the Menu type */ - menus?: Maybe; + menus?: Maybe /** An object of the Messenger Type. */ - messenger?: Maybe; + messenger?: Maybe /** * A Messenger object * @deprecated Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "") */ - messengerBy?: Maybe; + messengerBy?: Maybe /** Connection between the RootQuery type and the Messenger type */ - messengers?: Maybe; + messengers?: Maybe /** An object of the NavigationItem Type. */ - navigationItem?: Maybe; + navigationItem?: Maybe /** * A NavigationItem object * @deprecated Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "") */ - navigationItemBy?: Maybe; + navigationItemBy?: Maybe /** Connection between the RootQuery type and the NavigationItem type */ - navigationItems?: Maybe; + navigationItems?: Maybe /** Fetches an object given its ID */ - node?: Maybe; + node?: Maybe /** Fetches an object given its Unique Resource Identifier */ - nodeByUri?: Maybe; + nodeByUri?: Maybe /** An object of the NotFound Type. */ - notFound?: Maybe; + notFound?: Maybe /** * A NotFound object * @deprecated Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "") */ - notFoundBy?: Maybe; + notFoundBy?: Maybe /** Connection between the RootQuery type and the NotFound type */ - notFounds?: Maybe; + notFounds?: Maybe /** An object of the page Type. */ - page?: Maybe; + page?: Maybe /** * A page object * @deprecated Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "") */ - pageBy?: Maybe; + pageBy?: Maybe /** Connection between the RootQuery type and the page type */ - pages?: Maybe; + pages?: Maybe /** A WordPress plugin */ - plugin?: Maybe; + plugin?: Maybe /** Connection between the RootQuery type and the Plugin type */ - plugins?: Maybe; + plugins?: Maybe /** An object of the post Type. */ - post?: Maybe; + post?: Maybe /** * A post object * @deprecated Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "") */ - postBy?: Maybe; + postBy?: Maybe /** A 0bject */ - postFormat?: Maybe; + postFormat?: Maybe /** Connection between the RootQuery type and the postFormat type */ - postFormats?: Maybe; + postFormats?: Maybe /** Connection between the RootQuery type and the post type */ - posts?: Maybe; + posts?: Maybe /** An object of the PrivacyPolicyItem Type. */ - privacyPolicyItem?: Maybe; + privacyPolicyItem?: Maybe /** * A PrivacyPolicyItem object * @deprecated Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "") */ - privacyPolicyItemBy?: Maybe; + privacyPolicyItemBy?: Maybe /** Connection between the RootQuery type and the PrivacyPolicyItem type */ - privacyPolicyItems?: Maybe; + privacyPolicyItems?: Maybe /** Fields of the 'ReadingSettings' settings group */ - readingSettings?: Maybe; + readingSettings?: Maybe /** An object of the Recruit Type. */ - recruit?: Maybe; + recruit?: Maybe /** * A Recruit object * @deprecated Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "") */ - recruitBy?: Maybe; + recruitBy?: Maybe /** A 0bject */ - recruitList?: Maybe; + recruitList?: Maybe /** Connection between the RootQuery type and the recruitList type */ - recruitLists?: Maybe; + recruitLists?: Maybe /** Connection between the RootQuery type and the Recruit type */ - recruits?: Maybe; + recruits?: Maybe /** Connection between the RootQuery type and the EnqueuedScript type */ - registeredScripts?: Maybe; + registeredScripts?: Maybe /** Connection between the RootQuery type and the EnqueuedStylesheet type */ - registeredStylesheets?: Maybe; + registeredStylesheets?: Maybe /** An object of the review Type. */ - review?: Maybe; + review?: Maybe /** * A review object * @deprecated Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "") */ - reviewBy?: Maybe; + reviewBy?: Maybe /** A 0bject */ - reviewList?: Maybe; + reviewList?: Maybe /** Connection between the RootQuery type and the reviewList type */ - reviewLists?: Maybe; + reviewLists?: Maybe /** Connection between the RootQuery type and the review type */ - reviews?: Maybe; + reviews?: Maybe /** Connection between the RootQuery type and the ContentNode type */ - revisions?: Maybe; + revisions?: Maybe /** Returns seo site data */ - seo?: Maybe; + seo?: Maybe /** An object of the Skill Type. */ - skill?: Maybe; + skill?: Maybe /** * A Skill object * @deprecated Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "") */ - skillBy?: Maybe; + skillBy?: Maybe /** Connection between the RootQuery type and the SkillCategory type */ - skillCategories?: Maybe; + skillCategories?: Maybe /** A 0bject */ - skillCategory?: Maybe; + skillCategory?: Maybe /** Connection between the RootQuery type and the Skill type */ - skills?: Maybe; + skills?: Maybe /** An object of the SocialNetwork Type. */ - socialNetwork?: Maybe; + socialNetwork?: Maybe /** * A SocialNetwork object * @deprecated Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "") */ - socialNetworkBy?: Maybe; + socialNetworkBy?: Maybe /** Connection between the RootQuery type and the SocialNetwork type */ - socialNetworks?: Maybe; + socialNetworks?: Maybe /** A 0bject */ - tag?: Maybe; + tag?: Maybe /** Connection between the RootQuery type and the tag type */ - tags?: Maybe; + tags?: Maybe /** Connection between the RootQuery type and the Taxonomy type */ - taxonomies?: Maybe; + taxonomies?: Maybe /** Fetch a Taxonomy node by unique Identifier */ - taxonomy?: Maybe; + taxonomy?: Maybe /** A node in a taxonomy used to group and relate content nodes */ - termNode?: Maybe; + termNode?: Maybe /** Connection between the RootQuery type and the TermNode type */ - terms?: Maybe; + terms?: Maybe /** A Theme object */ - theme?: Maybe; + theme?: Maybe /** Connection between the RootQuery type and the Theme type */ - themes?: Maybe; + themes?: Maybe /** Translate string using pll_translate_string() (Polylang) */ - translateString?: Maybe; + translateString?: Maybe /** Returns a user */ - user?: Maybe; + user?: Maybe /** Returns a user role */ - userRole?: Maybe; + userRole?: Maybe /** Connection between the RootQuery type and the UserRole type */ - userRoles?: Maybe; + userRoles?: Maybe /** Connection between the RootQuery type and the User type */ - users?: Maybe; + users?: Maybe /** Returns the current user */ - viewer?: Maybe; + viewer?: Maybe /** Fields of the 'WritingSettings' settings group */ - writingSettings?: Maybe; -}; - + writingSettings?: Maybe +} /** The root entry point into the Graph */ export type RootQueryAboutItemArgs = { - asPreview?: InputMaybe; - id: Scalars['ID']['input']; - idType?: InputMaybe; -}; - + asPreview?: InputMaybe + id: Scalars['ID']['input'] + idType?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryAboutItemByArgs = { - aboutItemId?: InputMaybe; - id?: InputMaybe; - slug?: InputMaybe; - uri?: InputMaybe; -}; - + aboutItemId?: InputMaybe + id?: InputMaybe + slug?: InputMaybe + uri?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryAboutItemsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryAllConfidentialityPolicyArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryCategoriesArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryCategoryArgs = { - id: Scalars['ID']['input']; - idType?: InputMaybe; -}; - + id: Scalars['ID']['input'] + idType?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryCommentArgs = { - id: Scalars['ID']['input']; - idType?: InputMaybe; -}; - + id: Scalars['ID']['input'] + idType?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryCommentsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryCommonFragmentArgs = { - asPreview?: InputMaybe; - id: Scalars['ID']['input']; - idType?: InputMaybe; -}; - + asPreview?: InputMaybe + id: Scalars['ID']['input'] + idType?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryCommonFragmentByArgs = { - commonFragmentId?: InputMaybe; - id?: InputMaybe; - slug?: InputMaybe; - uri?: InputMaybe; -}; - + commonFragmentId?: InputMaybe + id?: InputMaybe + slug?: InputMaybe + uri?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryCommonFragmentsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryConfidentialityPolicyArgs = { - asPreview?: InputMaybe; - id: Scalars['ID']['input']; - idType?: InputMaybe; -}; - + asPreview?: InputMaybe + id: Scalars['ID']['input'] + idType?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryConfidentialityPolicyByArgs = { - confidentialityPolicyId?: InputMaybe; - id?: InputMaybe; - slug?: InputMaybe; - uri?: InputMaybe; -}; - + confidentialityPolicyId?: InputMaybe + id?: InputMaybe + slug?: InputMaybe + uri?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryContactArgs = { - asPreview?: InputMaybe; - id: Scalars['ID']['input']; - idType?: InputMaybe; -}; - + asPreview?: InputMaybe + id: Scalars['ID']['input'] + idType?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryContactByArgs = { - contactId?: InputMaybe; - id?: InputMaybe; - slug?: InputMaybe; - uri?: InputMaybe; -}; - + contactId?: InputMaybe + id?: InputMaybe + slug?: InputMaybe + uri?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryContactItemArgs = { - asPreview?: InputMaybe; - id: Scalars['ID']['input']; - idType?: InputMaybe; -}; - + asPreview?: InputMaybe + id: Scalars['ID']['input'] + idType?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryContactItemByArgs = { - contactItemId?: InputMaybe; - id?: InputMaybe; - slug?: InputMaybe; - uri?: InputMaybe; -}; - + contactItemId?: InputMaybe + id?: InputMaybe + slug?: InputMaybe + uri?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryContactItemsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryContactsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryContentNodeArgs = { - asPreview?: InputMaybe; - contentType?: InputMaybe; - id: Scalars['ID']['input']; - idType?: InputMaybe; -}; - + asPreview?: InputMaybe + contentType?: InputMaybe + id: Scalars['ID']['input'] + idType?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryContentNodesArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryContentTypeArgs = { - id: Scalars['ID']['input']; - idType?: InputMaybe; -}; - + id: Scalars['ID']['input'] + idType?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryContentTypesArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryFeedbackItemArgs = { - asPreview?: InputMaybe; - id: Scalars['ID']['input']; - idType?: InputMaybe; -}; - + asPreview?: InputMaybe + id: Scalars['ID']['input'] + idType?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryFeedbackItemByArgs = { - feedbackItemId?: InputMaybe; - id?: InputMaybe; - slug?: InputMaybe; - uri?: InputMaybe; -}; - + feedbackItemId?: InputMaybe + id?: InputMaybe + slug?: InputMaybe + uri?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryFeedbackItemsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryFooterItemArgs = { - asPreview?: InputMaybe; - id: Scalars['ID']['input']; - idType?: InputMaybe; -}; - + asPreview?: InputMaybe + id: Scalars['ID']['input'] + idType?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryFooterItemByArgs = { - footerItemId?: InputMaybe; - id?: InputMaybe; - slug?: InputMaybe; - uri?: InputMaybe; -}; - + footerItemId?: InputMaybe + id?: InputMaybe + slug?: InputMaybe + uri?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryFooterItemsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryFormArgs = { - id: Scalars['ID']['input']; - idType?: InputMaybe; -}; - + id: Scalars['ID']['input'] + idType?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryFormFieldArgs = { - id: Scalars['ID']['input']; - idType?: InputMaybe; -}; - + id: Scalars['ID']['input'] + idType?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryFormsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryFragmentArgs = { - asPreview?: InputMaybe; - id: Scalars['ID']['input']; - idType?: InputMaybe; -}; - + asPreview?: InputMaybe + id: Scalars['ID']['input'] + idType?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryFragmentByArgs = { - fragmentId?: InputMaybe; - id?: InputMaybe; - slug?: InputMaybe; - uri?: InputMaybe; -}; - + fragmentId?: InputMaybe + id?: InputMaybe + slug?: InputMaybe + uri?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryFragmentsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryHeroItemArgs = { - asPreview?: InputMaybe; - id: Scalars['ID']['input']; - idType?: InputMaybe; -}; - + asPreview?: InputMaybe + id: Scalars['ID']['input'] + idType?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryHeroItemByArgs = { - heroItemId?: InputMaybe; - id?: InputMaybe; - slug?: InputMaybe; - uri?: InputMaybe; -}; - + heroItemId?: InputMaybe + id?: InputMaybe + slug?: InputMaybe + uri?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryHeroItemsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryMainArgs = { - asPreview?: InputMaybe; - id: Scalars['ID']['input']; - idType?: InputMaybe; -}; - + asPreview?: InputMaybe + id: Scalars['ID']['input'] + idType?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryMainByArgs = { - id?: InputMaybe; - mainId?: InputMaybe; - slug?: InputMaybe; - uri?: InputMaybe; -}; - + id?: InputMaybe + mainId?: InputMaybe + slug?: InputMaybe + uri?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryMainsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryMediaItemArgs = { - asPreview?: InputMaybe; - id: Scalars['ID']['input']; - idType?: InputMaybe; -}; - + asPreview?: InputMaybe + id: Scalars['ID']['input'] + idType?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryMediaItemByArgs = { - id?: InputMaybe; - mediaItemId?: InputMaybe; - slug?: InputMaybe; - uri?: InputMaybe; -}; - + id?: InputMaybe + mediaItemId?: InputMaybe + slug?: InputMaybe + uri?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryMediaItemsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryMenuArgs = { - id: Scalars['ID']['input']; - idType?: InputMaybe; -}; - + id: Scalars['ID']['input'] + idType?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryMenuItemArgs = { - id: Scalars['ID']['input']; - idType?: InputMaybe; -}; - + id: Scalars['ID']['input'] + idType?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryMenuItemsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryMenusArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryMessengerArgs = { - asPreview?: InputMaybe; - id: Scalars['ID']['input']; - idType?: InputMaybe; -}; - + asPreview?: InputMaybe + id: Scalars['ID']['input'] + idType?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryMessengerByArgs = { - id?: InputMaybe; - messengerId?: InputMaybe; - slug?: InputMaybe; - uri?: InputMaybe; -}; - + id?: InputMaybe + messengerId?: InputMaybe + slug?: InputMaybe + uri?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryMessengersArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryNavigationItemArgs = { - asPreview?: InputMaybe; - id: Scalars['ID']['input']; - idType?: InputMaybe; -}; - + asPreview?: InputMaybe + id: Scalars['ID']['input'] + idType?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryNavigationItemByArgs = { - id?: InputMaybe; - navigationItemId?: InputMaybe; - slug?: InputMaybe; - uri?: InputMaybe; -}; - + id?: InputMaybe + navigationItemId?: InputMaybe + slug?: InputMaybe + uri?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryNavigationItemsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryNodeArgs = { - id?: InputMaybe; -}; - + id?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryNodeByUriArgs = { - uri: Scalars['String']['input']; -}; - + uri: Scalars['String']['input'] +} /** The root entry point into the Graph */ export type RootQueryNotFoundArgs = { - asPreview?: InputMaybe; - id: Scalars['ID']['input']; - idType?: InputMaybe; -}; - + asPreview?: InputMaybe + id: Scalars['ID']['input'] + idType?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryNotFoundByArgs = { - id?: InputMaybe; - notFoundId?: InputMaybe; - slug?: InputMaybe; - uri?: InputMaybe; -}; - + id?: InputMaybe + notFoundId?: InputMaybe + slug?: InputMaybe + uri?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryNotFoundsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryPageArgs = { - asPreview?: InputMaybe; - id: Scalars['ID']['input']; - idType?: InputMaybe; -}; - + asPreview?: InputMaybe + id: Scalars['ID']['input'] + idType?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryPageByArgs = { - id?: InputMaybe; - pageId?: InputMaybe; - uri?: InputMaybe; -}; - + id?: InputMaybe + pageId?: InputMaybe + uri?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryPagesArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryPluginArgs = { - id: Scalars['ID']['input']; -}; - + id: Scalars['ID']['input'] +} /** The root entry point into the Graph */ export type RootQueryPluginsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryPostArgs = { - asPreview?: InputMaybe; - id: Scalars['ID']['input']; - idType?: InputMaybe; -}; - + asPreview?: InputMaybe + id: Scalars['ID']['input'] + idType?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryPostByArgs = { - id?: InputMaybe; - postId?: InputMaybe; - slug?: InputMaybe; - uri?: InputMaybe; -}; - + id?: InputMaybe + postId?: InputMaybe + slug?: InputMaybe + uri?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryPostFormatArgs = { - id: Scalars['ID']['input']; - idType?: InputMaybe; -}; - + id: Scalars['ID']['input'] + idType?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryPostFormatsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryPostsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryPrivacyPolicyItemArgs = { - asPreview?: InputMaybe; - id: Scalars['ID']['input']; - idType?: InputMaybe; -}; - + asPreview?: InputMaybe + id: Scalars['ID']['input'] + idType?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryPrivacyPolicyItemByArgs = { - id?: InputMaybe; - privacyPolicyItemId?: InputMaybe; - slug?: InputMaybe; - uri?: InputMaybe; -}; - + id?: InputMaybe + privacyPolicyItemId?: InputMaybe + slug?: InputMaybe + uri?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryPrivacyPolicyItemsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryRecruitArgs = { - asPreview?: InputMaybe; - id: Scalars['ID']['input']; - idType?: InputMaybe; -}; - + asPreview?: InputMaybe + id: Scalars['ID']['input'] + idType?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryRecruitByArgs = { - id?: InputMaybe; - recruitId?: InputMaybe; - slug?: InputMaybe; - uri?: InputMaybe; -}; - + id?: InputMaybe + recruitId?: InputMaybe + slug?: InputMaybe + uri?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryRecruitListArgs = { - id: Scalars['ID']['input']; - idType?: InputMaybe; -}; - + id: Scalars['ID']['input'] + idType?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryRecruitListsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryRecruitsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryRegisteredScriptsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryRegisteredStylesheetsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryReviewArgs = { - asPreview?: InputMaybe; - id: Scalars['ID']['input']; - idType?: InputMaybe; -}; - + asPreview?: InputMaybe + id: Scalars['ID']['input'] + idType?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryReviewByArgs = { - id?: InputMaybe; - reviewId?: InputMaybe; - slug?: InputMaybe; - uri?: InputMaybe; -}; - + id?: InputMaybe + reviewId?: InputMaybe + slug?: InputMaybe + uri?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryReviewListArgs = { - id: Scalars['ID']['input']; - idType?: InputMaybe; -}; - + id: Scalars['ID']['input'] + idType?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryReviewListsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryReviewsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryRevisionsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The root entry point into the Graph */ export type RootQuerySkillArgs = { - asPreview?: InputMaybe; - id: Scalars['ID']['input']; - idType?: InputMaybe; -}; - + asPreview?: InputMaybe + id: Scalars['ID']['input'] + idType?: InputMaybe +} /** The root entry point into the Graph */ export type RootQuerySkillByArgs = { - id?: InputMaybe; - skillId?: InputMaybe; - uri?: InputMaybe; -}; - + id?: InputMaybe + skillId?: InputMaybe + uri?: InputMaybe +} /** The root entry point into the Graph */ export type RootQuerySkillCategoriesArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The root entry point into the Graph */ export type RootQuerySkillCategoryArgs = { - id: Scalars['ID']['input']; - idType?: InputMaybe; -}; - + id: Scalars['ID']['input'] + idType?: InputMaybe +} /** The root entry point into the Graph */ export type RootQuerySkillsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The root entry point into the Graph */ export type RootQuerySocialNetworkArgs = { - asPreview?: InputMaybe; - id: Scalars['ID']['input']; - idType?: InputMaybe; -}; - + asPreview?: InputMaybe + id: Scalars['ID']['input'] + idType?: InputMaybe +} /** The root entry point into the Graph */ export type RootQuerySocialNetworkByArgs = { - id?: InputMaybe; - slug?: InputMaybe; - socialNetworkId?: InputMaybe; - uri?: InputMaybe; -}; - + id?: InputMaybe + slug?: InputMaybe + socialNetworkId?: InputMaybe + uri?: InputMaybe +} /** The root entry point into the Graph */ export type RootQuerySocialNetworksArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryTagArgs = { - id: Scalars['ID']['input']; - idType?: InputMaybe; -}; - + id: Scalars['ID']['input'] + idType?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryTagsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryTaxonomiesArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryTaxonomyArgs = { - id: Scalars['ID']['input']; - idType?: InputMaybe; -}; - + id: Scalars['ID']['input'] + idType?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryTermNodeArgs = { - id: Scalars['ID']['input']; - idType?: InputMaybe; - taxonomy?: InputMaybe; -}; - + id: Scalars['ID']['input'] + idType?: InputMaybe + taxonomy?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryTermsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryThemeArgs = { - id: Scalars['ID']['input']; -}; - + id: Scalars['ID']['input'] +} /** The root entry point into the Graph */ export type RootQueryThemesArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryTranslateStringArgs = { - language: LanguageCodeEnum; - string: Scalars['String']['input']; -}; - + language: LanguageCodeEnum + string: Scalars['String']['input'] +} /** The root entry point into the Graph */ export type RootQueryUserArgs = { - id: Scalars['ID']['input']; - idType?: InputMaybe; -}; - + id: Scalars['ID']['input'] + idType?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryUserRoleArgs = { - id: Scalars['ID']['input']; -}; - + id: Scalars['ID']['input'] +} /** The root entry point into the Graph */ export type RootQueryUserRolesArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** The root entry point into the Graph */ export type RootQueryUsersArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** Connection between the RootQuery type and the AboutItem type */ -export type RootQueryToAboutItemConnection = AboutItemConnection & Connection & { - __typename?: 'RootQueryToAboutItemConnection'; - /** Edges for the RootQueryToAboutItemConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: RootQueryToAboutItemConnectionPageInfo; -}; +export type RootQueryToAboutItemConnection = AboutItemConnection & + Connection & { + __typename?: 'RootQueryToAboutItemConnection' + /** Edges for the RootQueryToAboutItemConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: RootQueryToAboutItemConnectionPageInfo + } /** An edge in a connection */ -export type RootQueryToAboutItemConnectionEdge = AboutItemConnectionEdge & Edge & { - __typename?: 'RootQueryToAboutItemConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: AboutItem; -}; +export type RootQueryToAboutItemConnectionEdge = AboutItemConnectionEdge & + Edge & { + __typename?: 'RootQueryToAboutItemConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: AboutItem + } /** Page Info on the "RootQueryToAboutItemConnection" */ -export type RootQueryToAboutItemConnectionPageInfo = AboutItemConnectionPageInfo & PageInfo & WpPageInfo & { - __typename?: 'RootQueryToAboutItemConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type RootQueryToAboutItemConnectionPageInfo = AboutItemConnectionPageInfo & + PageInfo & + WpPageInfo & { + __typename?: 'RootQueryToAboutItemConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the RootQueryToAboutItemConnection connection */ export type RootQueryToAboutItemConnectionWhereArgs = { /** Filter the connection based on dates */ - dateQuery?: InputMaybe; + dateQuery?: InputMaybe /** True for objects with passwords; False for objects without passwords; null for all objects with or without passwords */ - hasPassword?: InputMaybe; + hasPassword?: InputMaybe /** Specific database ID of the object */ - id?: InputMaybe; + id?: InputMaybe /** Array of IDs for the objects to retrieve */ - in?: InputMaybe>>; + in?: InputMaybe>> /** Filter by AboutItems by language code (Polylang) */ - language?: InputMaybe; + language?: InputMaybe /** Get objects with a specific mimeType property */ - mimeType?: InputMaybe; + mimeType?: InputMaybe /** Slug / post_name of the object */ - name?: InputMaybe; + name?: InputMaybe /** Specify objects to retrieve. Use slugs */ - nameIn?: InputMaybe>>; + nameIn?: InputMaybe>> /** Specify IDs NOT to retrieve. If this is used in the same query as "in", it will be ignored */ - notIn?: InputMaybe>>; + notIn?: InputMaybe>> /** What parameter to use to order the objects by. */ - orderby?: InputMaybe>>; + orderby?: InputMaybe>> /** Use ID to return only children. Use 0 to return only top-level items */ - parent?: InputMaybe; + parent?: InputMaybe /** Specify objects whose parent is in an array */ - parentIn?: InputMaybe>>; + parentIn?: InputMaybe>> /** Specify posts whose parent is not in an array */ - parentNotIn?: InputMaybe>>; + parentNotIn?: InputMaybe>> /** Show posts with a specific password. */ - password?: InputMaybe; + password?: InputMaybe /** Show Posts based on a keyword search */ - search?: InputMaybe; + search?: InputMaybe /** Retrieve posts where post status is in an array. */ - stati?: InputMaybe>>; + stati?: InputMaybe>> /** Show posts with a specific status. */ - status?: InputMaybe; + status?: InputMaybe /** Title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** Connection between the RootQuery type and the category type */ -export type RootQueryToCategoryConnection = CategoryConnection & Connection & { - __typename?: 'RootQueryToCategoryConnection'; - /** Edges for the RootQueryToCategoryConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: RootQueryToCategoryConnectionPageInfo; -}; +export type RootQueryToCategoryConnection = CategoryConnection & + Connection & { + __typename?: 'RootQueryToCategoryConnection' + /** Edges for the RootQueryToCategoryConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: RootQueryToCategoryConnectionPageInfo + } /** An edge in a connection */ -export type RootQueryToCategoryConnectionEdge = CategoryConnectionEdge & Edge & { - __typename?: 'RootQueryToCategoryConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: Category; -}; +export type RootQueryToCategoryConnectionEdge = CategoryConnectionEdge & + Edge & { + __typename?: 'RootQueryToCategoryConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: Category + } /** Page Info on the "RootQueryToCategoryConnection" */ -export type RootQueryToCategoryConnectionPageInfo = CategoryConnectionPageInfo & PageInfo & WpPageInfo & { - __typename?: 'RootQueryToCategoryConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type RootQueryToCategoryConnectionPageInfo = CategoryConnectionPageInfo & + PageInfo & + WpPageInfo & { + __typename?: 'RootQueryToCategoryConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the RootQueryToCategoryConnection connection */ export type RootQueryToCategoryConnectionWhereArgs = { /** Unique cache key to be produced when this query is stored in an object cache. Default is 'core'. */ - cacheDomain?: InputMaybe; + cacheDomain?: InputMaybe /** Term ID to retrieve child terms of. If multiple taxonomies are passed, $child_of is ignored. Default 0. */ - childOf?: InputMaybe; + childOf?: InputMaybe /** True to limit results to terms that have no children. This parameter has no effect on non-hierarchical taxonomies. Default false. */ - childless?: InputMaybe; + childless?: InputMaybe /** Retrieve terms where the description is LIKE the input value. Default empty. */ - descriptionLike?: InputMaybe; + descriptionLike?: InputMaybe /** Array of term ids to exclude. If $include is non-empty, $exclude is ignored. Default empty array. */ - exclude?: InputMaybe>>; + exclude?: InputMaybe>> /** Array of term ids to exclude along with all of their descendant terms. If $include is non-empty, $exclude_tree is ignored. Default empty array. */ - excludeTree?: InputMaybe>>; + excludeTree?: InputMaybe>> /** Whether to hide terms not assigned to any posts. Accepts true or false. Default false */ - hideEmpty?: InputMaybe; + hideEmpty?: InputMaybe /** Whether to include terms that have non-empty descendants (even if $hide_empty is set to true). Default true. */ - hierarchical?: InputMaybe; + hierarchical?: InputMaybe /** Array of term ids to include. Default empty array. */ - include?: InputMaybe>>; + include?: InputMaybe>> /** Filter by Categorys by language code (Polylang) */ - language?: InputMaybe; + language?: InputMaybe /** Array of names to return term(s) for. Default empty. */ - name?: InputMaybe>>; + name?: InputMaybe>> /** Retrieve terms where the name is LIKE the input value. Default empty. */ - nameLike?: InputMaybe; + nameLike?: InputMaybe /** Array of object IDs. Results will be limited to terms associated with these objects. */ - objectIds?: InputMaybe>>; + objectIds?: InputMaybe>> /** Direction the connection should be ordered in */ - order?: InputMaybe; + order?: InputMaybe /** Field(s) to order terms by. Defaults to 'name'. */ - orderby?: InputMaybe; + orderby?: InputMaybe /** Whether to pad the quantity of a term's children in the quantity of each term's "count" object variable. Default false. */ - padCounts?: InputMaybe; + padCounts?: InputMaybe /** Parent term ID to retrieve direct-child terms of. Default empty. */ - parent?: InputMaybe; + parent?: InputMaybe /** Search criteria to match terms. Will be SQL-formatted with wildcards before and after. Default empty. */ - search?: InputMaybe; + search?: InputMaybe /** Array of slugs to return term(s) for. Default empty. */ - slug?: InputMaybe>>; + slug?: InputMaybe>> /** Array of term taxonomy IDs, to match when querying terms. */ - termTaxonomId?: InputMaybe>>; + termTaxonomId?: InputMaybe>> /** Array of term taxonomy IDs, to match when querying terms. */ - termTaxonomyId?: InputMaybe>>; + termTaxonomyId?: InputMaybe>> /** Whether to prime meta caches for matched terms. Default true. */ - updateTermMetaCache?: InputMaybe; -}; + updateTermMetaCache?: InputMaybe +} /** Connection between the RootQuery type and the Comment type */ -export type RootQueryToCommentConnection = CommentConnection & Connection & { - __typename?: 'RootQueryToCommentConnection'; - /** Edges for the RootQueryToCommentConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: RootQueryToCommentConnectionPageInfo; -}; +export type RootQueryToCommentConnection = CommentConnection & + Connection & { + __typename?: 'RootQueryToCommentConnection' + /** Edges for the RootQueryToCommentConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: RootQueryToCommentConnectionPageInfo + } /** An edge in a connection */ -export type RootQueryToCommentConnectionEdge = CommentConnectionEdge & Edge & { - __typename?: 'RootQueryToCommentConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: Comment; -}; +export type RootQueryToCommentConnectionEdge = CommentConnectionEdge & + Edge & { + __typename?: 'RootQueryToCommentConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: Comment + } /** Page Info on the "RootQueryToCommentConnection" */ -export type RootQueryToCommentConnectionPageInfo = CommentConnectionPageInfo & PageInfo & WpPageInfo & { - __typename?: 'RootQueryToCommentConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type RootQueryToCommentConnectionPageInfo = CommentConnectionPageInfo & + PageInfo & + WpPageInfo & { + __typename?: 'RootQueryToCommentConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the RootQueryToCommentConnection connection */ export type RootQueryToCommentConnectionWhereArgs = { /** Comment author email address. */ - authorEmail?: InputMaybe; + authorEmail?: InputMaybe /** Array of author IDs to include comments for. */ - authorIn?: InputMaybe>>; + authorIn?: InputMaybe>> /** Array of author IDs to exclude comments for. */ - authorNotIn?: InputMaybe>>; + authorNotIn?: InputMaybe>> /** Comment author URL. */ - authorUrl?: InputMaybe; + authorUrl?: InputMaybe /** Array of comment IDs to include. */ - commentIn?: InputMaybe>>; + commentIn?: InputMaybe>> /** Array of IDs of users whose unapproved comments will be returned by the query regardless of status. */ - commentNotIn?: InputMaybe>>; + commentNotIn?: InputMaybe>> /** Include comments of a given type. */ - commentType?: InputMaybe; + commentType?: InputMaybe /** Include comments from a given array of comment types. */ - commentTypeIn?: InputMaybe>>; + commentTypeIn?: InputMaybe>> /** Exclude comments from a given array of comment types. */ - commentTypeNotIn?: InputMaybe; + commentTypeNotIn?: InputMaybe /** Content object author ID to limit results by. */ - contentAuthor?: InputMaybe>>; + contentAuthor?: InputMaybe>> /** Array of author IDs to retrieve comments for. */ - contentAuthorIn?: InputMaybe>>; + contentAuthorIn?: InputMaybe>> /** Array of author IDs *not* to retrieve comments for. */ - contentAuthorNotIn?: InputMaybe>>; + contentAuthorNotIn?: InputMaybe>> /** Limit results to those affiliated with a given content object ID. */ - contentId?: InputMaybe; + contentId?: InputMaybe /** Array of content object IDs to include affiliated comments for. */ - contentIdIn?: InputMaybe>>; + contentIdIn?: InputMaybe>> /** Array of content object IDs to exclude affiliated comments for. */ - contentIdNotIn?: InputMaybe>>; + contentIdNotIn?: InputMaybe>> /** Content object name (i.e. slug ) to retrieve affiliated comments for. */ - contentName?: InputMaybe; + contentName?: InputMaybe /** Content Object parent ID to retrieve affiliated comments for. */ - contentParent?: InputMaybe; + contentParent?: InputMaybe /** Array of content object statuses to retrieve affiliated comments for. Pass 'any' to match any value. */ - contentStatus?: InputMaybe>>; + contentStatus?: InputMaybe>> /** Content object type or array of types to retrieve affiliated comments for. Pass 'any' to match any value. */ - contentType?: InputMaybe>>; + contentType?: InputMaybe>> /** Array of IDs or email addresses of users whose unapproved comments will be returned by the query regardless of $status. Default empty */ - includeUnapproved?: InputMaybe>>; + includeUnapproved?: InputMaybe>> /** Karma score to retrieve matching comments for. */ - karma?: InputMaybe; + karma?: InputMaybe /** The cardinality of the order of the connection */ - order?: InputMaybe; + order?: InputMaybe /** Field to order the comments by. */ - orderby?: InputMaybe; + orderby?: InputMaybe /** Parent ID of comment to retrieve children of. */ - parent?: InputMaybe; + parent?: InputMaybe /** Array of parent IDs of comments to retrieve children for. */ - parentIn?: InputMaybe>>; + parentIn?: InputMaybe>> /** Array of parent IDs of comments *not* to retrieve children for. */ - parentNotIn?: InputMaybe>>; + parentNotIn?: InputMaybe>> /** Search term(s) to retrieve matching comments for. */ - search?: InputMaybe; + search?: InputMaybe /** Comment status to limit results by. */ - status?: InputMaybe; + status?: InputMaybe /** Include comments for a specific user ID. */ - userId?: InputMaybe; -}; + userId?: InputMaybe +} /** Connection between the RootQuery type and the CommonFragment type */ -export type RootQueryToCommonFragmentConnection = CommonFragmentConnection & Connection & { - __typename?: 'RootQueryToCommonFragmentConnection'; - /** Edges for the RootQueryToCommonFragmentConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: RootQueryToCommonFragmentConnectionPageInfo; -}; +export type RootQueryToCommonFragmentConnection = CommonFragmentConnection & + Connection & { + __typename?: 'RootQueryToCommonFragmentConnection' + /** Edges for the RootQueryToCommonFragmentConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: RootQueryToCommonFragmentConnectionPageInfo + } /** An edge in a connection */ -export type RootQueryToCommonFragmentConnectionEdge = CommonFragmentConnectionEdge & Edge & { - __typename?: 'RootQueryToCommonFragmentConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: CommonFragment; -}; +export type RootQueryToCommonFragmentConnectionEdge = CommonFragmentConnectionEdge & + Edge & { + __typename?: 'RootQueryToCommonFragmentConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: CommonFragment + } /** Page Info on the "RootQueryToCommonFragmentConnection" */ -export type RootQueryToCommonFragmentConnectionPageInfo = CommonFragmentConnectionPageInfo & PageInfo & WpPageInfo & { - __typename?: 'RootQueryToCommonFragmentConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type RootQueryToCommonFragmentConnectionPageInfo = CommonFragmentConnectionPageInfo & + PageInfo & + WpPageInfo & { + __typename?: 'RootQueryToCommonFragmentConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the RootQueryToCommonFragmentConnection connection */ export type RootQueryToCommonFragmentConnectionWhereArgs = { /** Filter the connection based on dates */ - dateQuery?: InputMaybe; + dateQuery?: InputMaybe /** True for objects with passwords; False for objects without passwords; null for all objects with or without passwords */ - hasPassword?: InputMaybe; + hasPassword?: InputMaybe /** Specific database ID of the object */ - id?: InputMaybe; + id?: InputMaybe /** Array of IDs for the objects to retrieve */ - in?: InputMaybe>>; + in?: InputMaybe>> /** Get objects with a specific mimeType property */ - mimeType?: InputMaybe; + mimeType?: InputMaybe /** Slug / post_name of the object */ - name?: InputMaybe; + name?: InputMaybe /** Specify objects to retrieve. Use slugs */ - nameIn?: InputMaybe>>; + nameIn?: InputMaybe>> /** Specify IDs NOT to retrieve. If this is used in the same query as "in", it will be ignored */ - notIn?: InputMaybe>>; + notIn?: InputMaybe>> /** What parameter to use to order the objects by. */ - orderby?: InputMaybe>>; + orderby?: InputMaybe>> /** Use ID to return only children. Use 0 to return only top-level items */ - parent?: InputMaybe; + parent?: InputMaybe /** Specify objects whose parent is in an array */ - parentIn?: InputMaybe>>; + parentIn?: InputMaybe>> /** Specify posts whose parent is not in an array */ - parentNotIn?: InputMaybe>>; + parentNotIn?: InputMaybe>> /** Show posts with a specific password. */ - password?: InputMaybe; + password?: InputMaybe /** Show Posts based on a keyword search */ - search?: InputMaybe; + search?: InputMaybe /** Retrieve posts where post status is in an array. */ - stati?: InputMaybe>>; + stati?: InputMaybe>> /** Show posts with a specific status. */ - status?: InputMaybe; + status?: InputMaybe /** Title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** Connection between the RootQuery type and the confidentialityPolicy type */ -export type RootQueryToConfidentialityPolicyConnection = ConfidentialityPolicyConnection & Connection & { - __typename?: 'RootQueryToConfidentialityPolicyConnection'; - /** Edges for the RootQueryToConfidentialityPolicyConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: RootQueryToConfidentialityPolicyConnectionPageInfo; -}; +export type RootQueryToConfidentialityPolicyConnection = ConfidentialityPolicyConnection & + Connection & { + __typename?: 'RootQueryToConfidentialityPolicyConnection' + /** Edges for the RootQueryToConfidentialityPolicyConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: RootQueryToConfidentialityPolicyConnectionPageInfo + } /** An edge in a connection */ -export type RootQueryToConfidentialityPolicyConnectionEdge = ConfidentialityPolicyConnectionEdge & Edge & { - __typename?: 'RootQueryToConfidentialityPolicyConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: ConfidentialityPolicy; -}; +export type RootQueryToConfidentialityPolicyConnectionEdge = ConfidentialityPolicyConnectionEdge & + Edge & { + __typename?: 'RootQueryToConfidentialityPolicyConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: ConfidentialityPolicy + } /** Page Info on the "RootQueryToConfidentialityPolicyConnection" */ -export type RootQueryToConfidentialityPolicyConnectionPageInfo = ConfidentialityPolicyConnectionPageInfo & PageInfo & WpPageInfo & { - __typename?: 'RootQueryToConfidentialityPolicyConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type RootQueryToConfidentialityPolicyConnectionPageInfo = + ConfidentialityPolicyConnectionPageInfo & + PageInfo & + WpPageInfo & { + __typename?: 'RootQueryToConfidentialityPolicyConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the RootQueryToConfidentialityPolicyConnection connection */ export type RootQueryToConfidentialityPolicyConnectionWhereArgs = { /** Filter the connection based on dates */ - dateQuery?: InputMaybe; + dateQuery?: InputMaybe /** True for objects with passwords; False for objects without passwords; null for all objects with or without passwords */ - hasPassword?: InputMaybe; + hasPassword?: InputMaybe /** Specific database ID of the object */ - id?: InputMaybe; + id?: InputMaybe /** Array of IDs for the objects to retrieve */ - in?: InputMaybe>>; + in?: InputMaybe>> /** Get objects with a specific mimeType property */ - mimeType?: InputMaybe; + mimeType?: InputMaybe /** Slug / post_name of the object */ - name?: InputMaybe; + name?: InputMaybe /** Specify objects to retrieve. Use slugs */ - nameIn?: InputMaybe>>; + nameIn?: InputMaybe>> /** Specify IDs NOT to retrieve. If this is used in the same query as "in", it will be ignored */ - notIn?: InputMaybe>>; + notIn?: InputMaybe>> /** What parameter to use to order the objects by. */ - orderby?: InputMaybe>>; + orderby?: InputMaybe>> /** Use ID to return only children. Use 0 to return only top-level items */ - parent?: InputMaybe; + parent?: InputMaybe /** Specify objects whose parent is in an array */ - parentIn?: InputMaybe>>; + parentIn?: InputMaybe>> /** Specify posts whose parent is not in an array */ - parentNotIn?: InputMaybe>>; + parentNotIn?: InputMaybe>> /** Show posts with a specific password. */ - password?: InputMaybe; + password?: InputMaybe /** Show Posts based on a keyword search */ - search?: InputMaybe; + search?: InputMaybe /** Retrieve posts where post status is in an array. */ - stati?: InputMaybe>>; + stati?: InputMaybe>> /** Show posts with a specific status. */ - status?: InputMaybe; + status?: InputMaybe /** Title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** Connection between the RootQuery type and the Contact type */ -export type RootQueryToContactConnection = Connection & ContactConnection & { - __typename?: 'RootQueryToContactConnection'; - /** Edges for the RootQueryToContactConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: RootQueryToContactConnectionPageInfo; -}; +export type RootQueryToContactConnection = Connection & + ContactConnection & { + __typename?: 'RootQueryToContactConnection' + /** Edges for the RootQueryToContactConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: RootQueryToContactConnectionPageInfo + } /** An edge in a connection */ -export type RootQueryToContactConnectionEdge = ContactConnectionEdge & Edge & { - __typename?: 'RootQueryToContactConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: Contact; -}; +export type RootQueryToContactConnectionEdge = ContactConnectionEdge & + Edge & { + __typename?: 'RootQueryToContactConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: Contact + } /** Page Info on the "RootQueryToContactConnection" */ -export type RootQueryToContactConnectionPageInfo = ContactConnectionPageInfo & PageInfo & WpPageInfo & { - __typename?: 'RootQueryToContactConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type RootQueryToContactConnectionPageInfo = ContactConnectionPageInfo & + PageInfo & + WpPageInfo & { + __typename?: 'RootQueryToContactConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the RootQueryToContactConnection connection */ export type RootQueryToContactConnectionWhereArgs = { /** Filter the connection based on dates */ - dateQuery?: InputMaybe; + dateQuery?: InputMaybe /** True for objects with passwords; False for objects without passwords; null for all objects with or without passwords */ - hasPassword?: InputMaybe; + hasPassword?: InputMaybe /** Specific database ID of the object */ - id?: InputMaybe; + id?: InputMaybe /** Array of IDs for the objects to retrieve */ - in?: InputMaybe>>; + in?: InputMaybe>> /** Get objects with a specific mimeType property */ - mimeType?: InputMaybe; + mimeType?: InputMaybe /** Slug / post_name of the object */ - name?: InputMaybe; + name?: InputMaybe /** Specify objects to retrieve. Use slugs */ - nameIn?: InputMaybe>>; + nameIn?: InputMaybe>> /** Specify IDs NOT to retrieve. If this is used in the same query as "in", it will be ignored */ - notIn?: InputMaybe>>; + notIn?: InputMaybe>> /** What parameter to use to order the objects by. */ - orderby?: InputMaybe>>; + orderby?: InputMaybe>> /** Use ID to return only children. Use 0 to return only top-level items */ - parent?: InputMaybe; + parent?: InputMaybe /** Specify objects whose parent is in an array */ - parentIn?: InputMaybe>>; + parentIn?: InputMaybe>> /** Specify posts whose parent is not in an array */ - parentNotIn?: InputMaybe>>; + parentNotIn?: InputMaybe>> /** Show posts with a specific password. */ - password?: InputMaybe; + password?: InputMaybe /** Show Posts based on a keyword search */ - search?: InputMaybe; + search?: InputMaybe /** Retrieve posts where post status is in an array. */ - stati?: InputMaybe>>; + stati?: InputMaybe>> /** Show posts with a specific status. */ - status?: InputMaybe; + status?: InputMaybe /** Title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** Connection between the RootQuery type and the ContactItem type */ -export type RootQueryToContactItemConnection = Connection & ContactItemConnection & { - __typename?: 'RootQueryToContactItemConnection'; - /** Edges for the RootQueryToContactItemConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: RootQueryToContactItemConnectionPageInfo; -}; +export type RootQueryToContactItemConnection = Connection & + ContactItemConnection & { + __typename?: 'RootQueryToContactItemConnection' + /** Edges for the RootQueryToContactItemConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: RootQueryToContactItemConnectionPageInfo + } /** An edge in a connection */ -export type RootQueryToContactItemConnectionEdge = ContactItemConnectionEdge & Edge & { - __typename?: 'RootQueryToContactItemConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: ContactItem; -}; +export type RootQueryToContactItemConnectionEdge = ContactItemConnectionEdge & + Edge & { + __typename?: 'RootQueryToContactItemConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: ContactItem + } /** Page Info on the "RootQueryToContactItemConnection" */ -export type RootQueryToContactItemConnectionPageInfo = ContactItemConnectionPageInfo & PageInfo & WpPageInfo & { - __typename?: 'RootQueryToContactItemConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type RootQueryToContactItemConnectionPageInfo = ContactItemConnectionPageInfo & + PageInfo & + WpPageInfo & { + __typename?: 'RootQueryToContactItemConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the RootQueryToContactItemConnection connection */ export type RootQueryToContactItemConnectionWhereArgs = { /** Filter the connection based on dates */ - dateQuery?: InputMaybe; + dateQuery?: InputMaybe /** True for objects with passwords; False for objects without passwords; null for all objects with or without passwords */ - hasPassword?: InputMaybe; + hasPassword?: InputMaybe /** Specific database ID of the object */ - id?: InputMaybe; + id?: InputMaybe /** Array of IDs for the objects to retrieve */ - in?: InputMaybe>>; + in?: InputMaybe>> /** Filter by ContactItems by language code (Polylang) */ - language?: InputMaybe; + language?: InputMaybe /** Get objects with a specific mimeType property */ - mimeType?: InputMaybe; + mimeType?: InputMaybe /** Slug / post_name of the object */ - name?: InputMaybe; + name?: InputMaybe /** Specify objects to retrieve. Use slugs */ - nameIn?: InputMaybe>>; + nameIn?: InputMaybe>> /** Specify IDs NOT to retrieve. If this is used in the same query as "in", it will be ignored */ - notIn?: InputMaybe>>; + notIn?: InputMaybe>> /** What parameter to use to order the objects by. */ - orderby?: InputMaybe>>; + orderby?: InputMaybe>> /** Use ID to return only children. Use 0 to return only top-level items */ - parent?: InputMaybe; + parent?: InputMaybe /** Specify objects whose parent is in an array */ - parentIn?: InputMaybe>>; + parentIn?: InputMaybe>> /** Specify posts whose parent is not in an array */ - parentNotIn?: InputMaybe>>; + parentNotIn?: InputMaybe>> /** Show posts with a specific password. */ - password?: InputMaybe; + password?: InputMaybe /** Show Posts based on a keyword search */ - search?: InputMaybe; + search?: InputMaybe /** Retrieve posts where post status is in an array. */ - stati?: InputMaybe>>; + stati?: InputMaybe>> /** Show posts with a specific status. */ - status?: InputMaybe; + status?: InputMaybe /** Title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** Connection between the RootQuery type and the ContentNode type */ -export type RootQueryToContentNodeConnection = Connection & ContentNodeConnection & { - __typename?: 'RootQueryToContentNodeConnection'; - /** Edges for the RootQueryToContentNodeConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: RootQueryToContentNodeConnectionPageInfo; -}; +export type RootQueryToContentNodeConnection = Connection & + ContentNodeConnection & { + __typename?: 'RootQueryToContentNodeConnection' + /** Edges for the RootQueryToContentNodeConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: RootQueryToContentNodeConnectionPageInfo + } /** An edge in a connection */ -export type RootQueryToContentNodeConnectionEdge = ContentNodeConnectionEdge & Edge & { - __typename?: 'RootQueryToContentNodeConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: ContentNode; -}; +export type RootQueryToContentNodeConnectionEdge = ContentNodeConnectionEdge & + Edge & { + __typename?: 'RootQueryToContentNodeConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: ContentNode + } /** Page Info on the "RootQueryToContentNodeConnection" */ -export type RootQueryToContentNodeConnectionPageInfo = ContentNodeConnectionPageInfo & PageInfo & WpPageInfo & { - __typename?: 'RootQueryToContentNodeConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type RootQueryToContentNodeConnectionPageInfo = ContentNodeConnectionPageInfo & + PageInfo & + WpPageInfo & { + __typename?: 'RootQueryToContentNodeConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the RootQueryToContentNodeConnection connection */ export type RootQueryToContentNodeConnectionWhereArgs = { /** The Types of content to filter */ - contentTypes?: InputMaybe>>; + contentTypes?: InputMaybe>> /** Filter the connection based on dates */ - dateQuery?: InputMaybe; + dateQuery?: InputMaybe /** True for objects with passwords; False for objects without passwords; null for all objects with or without passwords */ - hasPassword?: InputMaybe; + hasPassword?: InputMaybe /** Specific database ID of the object */ - id?: InputMaybe; + id?: InputMaybe /** Array of IDs for the objects to retrieve */ - in?: InputMaybe>>; + in?: InputMaybe>> /** Filter content nodes by language code (Polylang) */ - language?: InputMaybe; + language?: InputMaybe /** Get objects with a specific mimeType property */ - mimeType?: InputMaybe; + mimeType?: InputMaybe /** Slug / post_name of the object */ - name?: InputMaybe; + name?: InputMaybe /** Specify objects to retrieve. Use slugs */ - nameIn?: InputMaybe>>; + nameIn?: InputMaybe>> /** Specify IDs NOT to retrieve. If this is used in the same query as "in", it will be ignored */ - notIn?: InputMaybe>>; + notIn?: InputMaybe>> /** What parameter to use to order the objects by. */ - orderby?: InputMaybe>>; + orderby?: InputMaybe>> /** Use ID to return only children. Use 0 to return only top-level items */ - parent?: InputMaybe; + parent?: InputMaybe /** Specify objects whose parent is in an array */ - parentIn?: InputMaybe>>; + parentIn?: InputMaybe>> /** Specify posts whose parent is not in an array */ - parentNotIn?: InputMaybe>>; + parentNotIn?: InputMaybe>> /** Show posts with a specific password. */ - password?: InputMaybe; + password?: InputMaybe /** Show Posts based on a keyword search */ - search?: InputMaybe; + search?: InputMaybe /** Retrieve posts where post status is in an array. */ - stati?: InputMaybe>>; + stati?: InputMaybe>> /** Show posts with a specific status. */ - status?: InputMaybe; + status?: InputMaybe /** Title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** Connection between the RootQuery type and the ContentType type */ -export type RootQueryToContentTypeConnection = Connection & ContentTypeConnection & { - __typename?: 'RootQueryToContentTypeConnection'; - /** Edges for the RootQueryToContentTypeConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: RootQueryToContentTypeConnectionPageInfo; -}; +export type RootQueryToContentTypeConnection = Connection & + ContentTypeConnection & { + __typename?: 'RootQueryToContentTypeConnection' + /** Edges for the RootQueryToContentTypeConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: RootQueryToContentTypeConnectionPageInfo + } /** An edge in a connection */ -export type RootQueryToContentTypeConnectionEdge = ContentTypeConnectionEdge & Edge & { - __typename?: 'RootQueryToContentTypeConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: ContentType; -}; +export type RootQueryToContentTypeConnectionEdge = ContentTypeConnectionEdge & + Edge & { + __typename?: 'RootQueryToContentTypeConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: ContentType + } /** Page Info on the "RootQueryToContentTypeConnection" */ -export type RootQueryToContentTypeConnectionPageInfo = ContentTypeConnectionPageInfo & PageInfo & WpPageInfo & { - __typename?: 'RootQueryToContentTypeConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type RootQueryToContentTypeConnectionPageInfo = ContentTypeConnectionPageInfo & + PageInfo & + WpPageInfo & { + __typename?: 'RootQueryToContentTypeConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Connection between the RootQuery type and the EnqueuedScript type */ -export type RootQueryToEnqueuedScriptConnection = Connection & EnqueuedScriptConnection & { - __typename?: 'RootQueryToEnqueuedScriptConnection'; - /** Edges for the RootQueryToEnqueuedScriptConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: RootQueryToEnqueuedScriptConnectionPageInfo; -}; +export type RootQueryToEnqueuedScriptConnection = Connection & + EnqueuedScriptConnection & { + __typename?: 'RootQueryToEnqueuedScriptConnection' + /** Edges for the RootQueryToEnqueuedScriptConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: RootQueryToEnqueuedScriptConnectionPageInfo + } /** An edge in a connection */ -export type RootQueryToEnqueuedScriptConnectionEdge = Edge & EnqueuedScriptConnectionEdge & { - __typename?: 'RootQueryToEnqueuedScriptConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: EnqueuedScript; -}; +export type RootQueryToEnqueuedScriptConnectionEdge = Edge & + EnqueuedScriptConnectionEdge & { + __typename?: 'RootQueryToEnqueuedScriptConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: EnqueuedScript + } /** Page Info on the "RootQueryToEnqueuedScriptConnection" */ -export type RootQueryToEnqueuedScriptConnectionPageInfo = EnqueuedScriptConnectionPageInfo & PageInfo & WpPageInfo & { - __typename?: 'RootQueryToEnqueuedScriptConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type RootQueryToEnqueuedScriptConnectionPageInfo = EnqueuedScriptConnectionPageInfo & + PageInfo & + WpPageInfo & { + __typename?: 'RootQueryToEnqueuedScriptConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Connection between the RootQuery type and the EnqueuedStylesheet type */ -export type RootQueryToEnqueuedStylesheetConnection = Connection & EnqueuedStylesheetConnection & { - __typename?: 'RootQueryToEnqueuedStylesheetConnection'; - /** Edges for the RootQueryToEnqueuedStylesheetConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: RootQueryToEnqueuedStylesheetConnectionPageInfo; -}; +export type RootQueryToEnqueuedStylesheetConnection = Connection & + EnqueuedStylesheetConnection & { + __typename?: 'RootQueryToEnqueuedStylesheetConnection' + /** Edges for the RootQueryToEnqueuedStylesheetConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: RootQueryToEnqueuedStylesheetConnectionPageInfo + } /** An edge in a connection */ -export type RootQueryToEnqueuedStylesheetConnectionEdge = Edge & EnqueuedStylesheetConnectionEdge & { - __typename?: 'RootQueryToEnqueuedStylesheetConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: EnqueuedStylesheet; -}; +export type RootQueryToEnqueuedStylesheetConnectionEdge = Edge & + EnqueuedStylesheetConnectionEdge & { + __typename?: 'RootQueryToEnqueuedStylesheetConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: EnqueuedStylesheet + } /** Page Info on the "RootQueryToEnqueuedStylesheetConnection" */ -export type RootQueryToEnqueuedStylesheetConnectionPageInfo = EnqueuedStylesheetConnectionPageInfo & PageInfo & WpPageInfo & { - __typename?: 'RootQueryToEnqueuedStylesheetConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type RootQueryToEnqueuedStylesheetConnectionPageInfo = EnqueuedStylesheetConnectionPageInfo & + PageInfo & + WpPageInfo & { + __typename?: 'RootQueryToEnqueuedStylesheetConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Connection between the RootQuery type and the FeedbackItem type */ -export type RootQueryToFeedbackItemConnection = Connection & FeedbackItemConnection & { - __typename?: 'RootQueryToFeedbackItemConnection'; - /** Edges for the RootQueryToFeedbackItemConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: RootQueryToFeedbackItemConnectionPageInfo; -}; +export type RootQueryToFeedbackItemConnection = Connection & + FeedbackItemConnection & { + __typename?: 'RootQueryToFeedbackItemConnection' + /** Edges for the RootQueryToFeedbackItemConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: RootQueryToFeedbackItemConnectionPageInfo + } /** An edge in a connection */ -export type RootQueryToFeedbackItemConnectionEdge = Edge & FeedbackItemConnectionEdge & { - __typename?: 'RootQueryToFeedbackItemConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: FeedbackItem; -}; +export type RootQueryToFeedbackItemConnectionEdge = Edge & + FeedbackItemConnectionEdge & { + __typename?: 'RootQueryToFeedbackItemConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: FeedbackItem + } /** Page Info on the "RootQueryToFeedbackItemConnection" */ -export type RootQueryToFeedbackItemConnectionPageInfo = FeedbackItemConnectionPageInfo & PageInfo & WpPageInfo & { - __typename?: 'RootQueryToFeedbackItemConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type RootQueryToFeedbackItemConnectionPageInfo = FeedbackItemConnectionPageInfo & + PageInfo & + WpPageInfo & { + __typename?: 'RootQueryToFeedbackItemConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the RootQueryToFeedbackItemConnection connection */ export type RootQueryToFeedbackItemConnectionWhereArgs = { /** Filter the connection based on dates */ - dateQuery?: InputMaybe; + dateQuery?: InputMaybe /** True for objects with passwords; False for objects without passwords; null for all objects with or without passwords */ - hasPassword?: InputMaybe; + hasPassword?: InputMaybe /** Specific database ID of the object */ - id?: InputMaybe; + id?: InputMaybe /** Array of IDs for the objects to retrieve */ - in?: InputMaybe>>; + in?: InputMaybe>> /** Filter by FeedbackItems by language code (Polylang) */ - language?: InputMaybe; + language?: InputMaybe /** Get objects with a specific mimeType property */ - mimeType?: InputMaybe; + mimeType?: InputMaybe /** Slug / post_name of the object */ - name?: InputMaybe; + name?: InputMaybe /** Specify objects to retrieve. Use slugs */ - nameIn?: InputMaybe>>; + nameIn?: InputMaybe>> /** Specify IDs NOT to retrieve. If this is used in the same query as "in", it will be ignored */ - notIn?: InputMaybe>>; + notIn?: InputMaybe>> /** What parameter to use to order the objects by. */ - orderby?: InputMaybe>>; + orderby?: InputMaybe>> /** Use ID to return only children. Use 0 to return only top-level items */ - parent?: InputMaybe; + parent?: InputMaybe /** Specify objects whose parent is in an array */ - parentIn?: InputMaybe>>; + parentIn?: InputMaybe>> /** Specify posts whose parent is not in an array */ - parentNotIn?: InputMaybe>>; + parentNotIn?: InputMaybe>> /** Show posts with a specific password. */ - password?: InputMaybe; + password?: InputMaybe /** Show Posts based on a keyword search */ - search?: InputMaybe; + search?: InputMaybe /** Retrieve posts where post status is in an array. */ - stati?: InputMaybe>>; + stati?: InputMaybe>> /** Show posts with a specific status. */ - status?: InputMaybe; + status?: InputMaybe /** Title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** Connection between the RootQuery type and the FooterItem type */ -export type RootQueryToFooterItemConnection = Connection & FooterItemConnection & { - __typename?: 'RootQueryToFooterItemConnection'; - /** Edges for the RootQueryToFooterItemConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: RootQueryToFooterItemConnectionPageInfo; -}; +export type RootQueryToFooterItemConnection = Connection & + FooterItemConnection & { + __typename?: 'RootQueryToFooterItemConnection' + /** Edges for the RootQueryToFooterItemConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: RootQueryToFooterItemConnectionPageInfo + } /** An edge in a connection */ -export type RootQueryToFooterItemConnectionEdge = Edge & FooterItemConnectionEdge & { - __typename?: 'RootQueryToFooterItemConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: FooterItem; -}; +export type RootQueryToFooterItemConnectionEdge = Edge & + FooterItemConnectionEdge & { + __typename?: 'RootQueryToFooterItemConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: FooterItem + } /** Page Info on the "RootQueryToFooterItemConnection" */ -export type RootQueryToFooterItemConnectionPageInfo = FooterItemConnectionPageInfo & PageInfo & WpPageInfo & { - __typename?: 'RootQueryToFooterItemConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type RootQueryToFooterItemConnectionPageInfo = FooterItemConnectionPageInfo & + PageInfo & + WpPageInfo & { + __typename?: 'RootQueryToFooterItemConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the RootQueryToFooterItemConnection connection */ export type RootQueryToFooterItemConnectionWhereArgs = { /** Filter the connection based on dates */ - dateQuery?: InputMaybe; + dateQuery?: InputMaybe /** True for objects with passwords; False for objects without passwords; null for all objects with or without passwords */ - hasPassword?: InputMaybe; + hasPassword?: InputMaybe /** Specific database ID of the object */ - id?: InputMaybe; + id?: InputMaybe /** Array of IDs for the objects to retrieve */ - in?: InputMaybe>>; + in?: InputMaybe>> /** Filter by FooterItems by language code (Polylang) */ - language?: InputMaybe; + language?: InputMaybe /** Get objects with a specific mimeType property */ - mimeType?: InputMaybe; + mimeType?: InputMaybe /** Slug / post_name of the object */ - name?: InputMaybe; + name?: InputMaybe /** Specify objects to retrieve. Use slugs */ - nameIn?: InputMaybe>>; + nameIn?: InputMaybe>> /** Specify IDs NOT to retrieve. If this is used in the same query as "in", it will be ignored */ - notIn?: InputMaybe>>; + notIn?: InputMaybe>> /** What parameter to use to order the objects by. */ - orderby?: InputMaybe>>; + orderby?: InputMaybe>> /** Use ID to return only children. Use 0 to return only top-level items */ - parent?: InputMaybe; + parent?: InputMaybe /** Specify objects whose parent is in an array */ - parentIn?: InputMaybe>>; + parentIn?: InputMaybe>> /** Specify posts whose parent is not in an array */ - parentNotIn?: InputMaybe>>; + parentNotIn?: InputMaybe>> /** Show posts with a specific password. */ - password?: InputMaybe; + password?: InputMaybe /** Show Posts based on a keyword search */ - search?: InputMaybe; + search?: InputMaybe /** Retrieve posts where post status is in an array. */ - stati?: InputMaybe>>; + stati?: InputMaybe>> /** Show posts with a specific status. */ - status?: InputMaybe; + status?: InputMaybe /** Title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** Connection between the RootQuery type and the Form type */ -export type RootQueryToFormConnection = Connection & FormConnection & { - __typename?: 'RootQueryToFormConnection'; - /** Edges for the RootQueryToFormConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: RootQueryToFormConnectionPageInfo; -}; +export type RootQueryToFormConnection = Connection & + FormConnection & { + __typename?: 'RootQueryToFormConnection' + /** Edges for the RootQueryToFormConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: RootQueryToFormConnectionPageInfo + } /** An edge in a connection */ -export type RootQueryToFormConnectionEdge = Edge & FormConnectionEdge & { - __typename?: 'RootQueryToFormConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: Form; -}; +export type RootQueryToFormConnectionEdge = Edge & + FormConnectionEdge & { + __typename?: 'RootQueryToFormConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: Form + } /** Page Info on the "RootQueryToFormConnection" */ -export type RootQueryToFormConnectionPageInfo = FormConnectionPageInfo & PageInfo & WpPageInfo & { - __typename?: 'RootQueryToFormConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type RootQueryToFormConnectionPageInfo = FormConnectionPageInfo & + PageInfo & + WpPageInfo & { + __typename?: 'RootQueryToFormConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Connection between the RootQuery type and the Fragment type */ -export type RootQueryToFragmentConnection = Connection & FragmentConnection & { - __typename?: 'RootQueryToFragmentConnection'; - /** Edges for the RootQueryToFragmentConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: RootQueryToFragmentConnectionPageInfo; -}; +export type RootQueryToFragmentConnection = Connection & + FragmentConnection & { + __typename?: 'RootQueryToFragmentConnection' + /** Edges for the RootQueryToFragmentConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: RootQueryToFragmentConnectionPageInfo + } /** An edge in a connection */ -export type RootQueryToFragmentConnectionEdge = Edge & FragmentConnectionEdge & { - __typename?: 'RootQueryToFragmentConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: Fragment; -}; +export type RootQueryToFragmentConnectionEdge = Edge & + FragmentConnectionEdge & { + __typename?: 'RootQueryToFragmentConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: Fragment + } /** Page Info on the "RootQueryToFragmentConnection" */ -export type RootQueryToFragmentConnectionPageInfo = FragmentConnectionPageInfo & PageInfo & WpPageInfo & { - __typename?: 'RootQueryToFragmentConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type RootQueryToFragmentConnectionPageInfo = FragmentConnectionPageInfo & + PageInfo & + WpPageInfo & { + __typename?: 'RootQueryToFragmentConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the RootQueryToFragmentConnection connection */ export type RootQueryToFragmentConnectionWhereArgs = { /** Filter the connection based on dates */ - dateQuery?: InputMaybe; + dateQuery?: InputMaybe /** True for objects with passwords; False for objects without passwords; null for all objects with or without passwords */ - hasPassword?: InputMaybe; + hasPassword?: InputMaybe /** Specific database ID of the object */ - id?: InputMaybe; + id?: InputMaybe /** Array of IDs for the objects to retrieve */ - in?: InputMaybe>>; + in?: InputMaybe>> /** Filter by Fragments by language code (Polylang) */ - language?: InputMaybe; + language?: InputMaybe /** Get objects with a specific mimeType property */ - mimeType?: InputMaybe; + mimeType?: InputMaybe /** Slug / post_name of the object */ - name?: InputMaybe; + name?: InputMaybe /** Specify objects to retrieve. Use slugs */ - nameIn?: InputMaybe>>; + nameIn?: InputMaybe>> /** Specify IDs NOT to retrieve. If this is used in the same query as "in", it will be ignored */ - notIn?: InputMaybe>>; + notIn?: InputMaybe>> /** What parameter to use to order the objects by. */ - orderby?: InputMaybe>>; + orderby?: InputMaybe>> /** Use ID to return only children. Use 0 to return only top-level items */ - parent?: InputMaybe; + parent?: InputMaybe /** Specify objects whose parent is in an array */ - parentIn?: InputMaybe>>; + parentIn?: InputMaybe>> /** Specify posts whose parent is not in an array */ - parentNotIn?: InputMaybe>>; + parentNotIn?: InputMaybe>> /** Show posts with a specific password. */ - password?: InputMaybe; + password?: InputMaybe /** Show Posts based on a keyword search */ - search?: InputMaybe; + search?: InputMaybe /** Retrieve posts where post status is in an array. */ - stati?: InputMaybe>>; + stati?: InputMaybe>> /** Show posts with a specific status. */ - status?: InputMaybe; + status?: InputMaybe /** Title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** Connection between the RootQuery type and the HeroItem type */ -export type RootQueryToHeroItemConnection = Connection & HeroItemConnection & { - __typename?: 'RootQueryToHeroItemConnection'; - /** Edges for the RootQueryToHeroItemConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: RootQueryToHeroItemConnectionPageInfo; -}; +export type RootQueryToHeroItemConnection = Connection & + HeroItemConnection & { + __typename?: 'RootQueryToHeroItemConnection' + /** Edges for the RootQueryToHeroItemConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: RootQueryToHeroItemConnectionPageInfo + } /** An edge in a connection */ -export type RootQueryToHeroItemConnectionEdge = Edge & HeroItemConnectionEdge & { - __typename?: 'RootQueryToHeroItemConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: HeroItem; -}; +export type RootQueryToHeroItemConnectionEdge = Edge & + HeroItemConnectionEdge & { + __typename?: 'RootQueryToHeroItemConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: HeroItem + } /** Page Info on the "RootQueryToHeroItemConnection" */ -export type RootQueryToHeroItemConnectionPageInfo = HeroItemConnectionPageInfo & PageInfo & WpPageInfo & { - __typename?: 'RootQueryToHeroItemConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type RootQueryToHeroItemConnectionPageInfo = HeroItemConnectionPageInfo & + PageInfo & + WpPageInfo & { + __typename?: 'RootQueryToHeroItemConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the RootQueryToHeroItemConnection connection */ export type RootQueryToHeroItemConnectionWhereArgs = { /** Filter the connection based on dates */ - dateQuery?: InputMaybe; + dateQuery?: InputMaybe /** True for objects with passwords; False for objects without passwords; null for all objects with or without passwords */ - hasPassword?: InputMaybe; + hasPassword?: InputMaybe /** Specific database ID of the object */ - id?: InputMaybe; + id?: InputMaybe /** Array of IDs for the objects to retrieve */ - in?: InputMaybe>>; + in?: InputMaybe>> /** Filter by HeroItems by language code (Polylang) */ - language?: InputMaybe; + language?: InputMaybe /** Get objects with a specific mimeType property */ - mimeType?: InputMaybe; + mimeType?: InputMaybe /** Slug / post_name of the object */ - name?: InputMaybe; + name?: InputMaybe /** Specify objects to retrieve. Use slugs */ - nameIn?: InputMaybe>>; + nameIn?: InputMaybe>> /** Specify IDs NOT to retrieve. If this is used in the same query as "in", it will be ignored */ - notIn?: InputMaybe>>; + notIn?: InputMaybe>> /** What parameter to use to order the objects by. */ - orderby?: InputMaybe>>; + orderby?: InputMaybe>> /** Use ID to return only children. Use 0 to return only top-level items */ - parent?: InputMaybe; + parent?: InputMaybe /** Specify objects whose parent is in an array */ - parentIn?: InputMaybe>>; + parentIn?: InputMaybe>> /** Specify posts whose parent is not in an array */ - parentNotIn?: InputMaybe>>; + parentNotIn?: InputMaybe>> /** Show posts with a specific password. */ - password?: InputMaybe; + password?: InputMaybe /** Show Posts based on a keyword search */ - search?: InputMaybe; + search?: InputMaybe /** Retrieve posts where post status is in an array. */ - stati?: InputMaybe>>; + stati?: InputMaybe>> /** Show posts with a specific status. */ - status?: InputMaybe; + status?: InputMaybe /** Title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** Connection between the RootQuery type and the Main type */ -export type RootQueryToMainConnection = Connection & MainConnection & { - __typename?: 'RootQueryToMainConnection'; - /** Edges for the RootQueryToMainConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array
; - /** Information about pagination in a connection. */ - pageInfo: RootQueryToMainConnectionPageInfo; -}; +export type RootQueryToMainConnection = Connection & + MainConnection & { + __typename?: 'RootQueryToMainConnection' + /** Edges for the RootQueryToMainConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array
+ /** Information about pagination in a connection. */ + pageInfo: RootQueryToMainConnectionPageInfo + } /** An edge in a connection */ -export type RootQueryToMainConnectionEdge = Edge & MainConnectionEdge & { - __typename?: 'RootQueryToMainConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: Main; -}; +export type RootQueryToMainConnectionEdge = Edge & + MainConnectionEdge & { + __typename?: 'RootQueryToMainConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: Main + } /** Page Info on the "RootQueryToMainConnection" */ -export type RootQueryToMainConnectionPageInfo = MainConnectionPageInfo & PageInfo & WpPageInfo & { - __typename?: 'RootQueryToMainConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type RootQueryToMainConnectionPageInfo = MainConnectionPageInfo & + PageInfo & + WpPageInfo & { + __typename?: 'RootQueryToMainConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the RootQueryToMainConnection connection */ export type RootQueryToMainConnectionWhereArgs = { /** Filter the connection based on dates */ - dateQuery?: InputMaybe; + dateQuery?: InputMaybe /** True for objects with passwords; False for objects without passwords; null for all objects with or without passwords */ - hasPassword?: InputMaybe; + hasPassword?: InputMaybe /** Specific database ID of the object */ - id?: InputMaybe; + id?: InputMaybe /** Array of IDs for the objects to retrieve */ - in?: InputMaybe>>; + in?: InputMaybe>> /** Get objects with a specific mimeType property */ - mimeType?: InputMaybe; + mimeType?: InputMaybe /** Slug / post_name of the object */ - name?: InputMaybe; + name?: InputMaybe /** Specify objects to retrieve. Use slugs */ - nameIn?: InputMaybe>>; + nameIn?: InputMaybe>> /** Specify IDs NOT to retrieve. If this is used in the same query as "in", it will be ignored */ - notIn?: InputMaybe>>; + notIn?: InputMaybe>> /** What parameter to use to order the objects by. */ - orderby?: InputMaybe>>; + orderby?: InputMaybe>> /** Use ID to return only children. Use 0 to return only top-level items */ - parent?: InputMaybe; + parent?: InputMaybe /** Specify objects whose parent is in an array */ - parentIn?: InputMaybe>>; + parentIn?: InputMaybe>> /** Specify posts whose parent is not in an array */ - parentNotIn?: InputMaybe>>; + parentNotIn?: InputMaybe>> /** Show posts with a specific password. */ - password?: InputMaybe; + password?: InputMaybe /** Show Posts based on a keyword search */ - search?: InputMaybe; + search?: InputMaybe /** Retrieve posts where post status is in an array. */ - stati?: InputMaybe>>; + stati?: InputMaybe>> /** Show posts with a specific status. */ - status?: InputMaybe; + status?: InputMaybe /** Title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** Connection between the RootQuery type and the mediaItem type */ -export type RootQueryToMediaItemConnection = Connection & MediaItemConnection & { - __typename?: 'RootQueryToMediaItemConnection'; - /** Edges for the RootQueryToMediaItemConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: RootQueryToMediaItemConnectionPageInfo; -}; +export type RootQueryToMediaItemConnection = Connection & + MediaItemConnection & { + __typename?: 'RootQueryToMediaItemConnection' + /** Edges for the RootQueryToMediaItemConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: RootQueryToMediaItemConnectionPageInfo + } /** An edge in a connection */ -export type RootQueryToMediaItemConnectionEdge = Edge & MediaItemConnectionEdge & { - __typename?: 'RootQueryToMediaItemConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: MediaItem; -}; +export type RootQueryToMediaItemConnectionEdge = Edge & + MediaItemConnectionEdge & { + __typename?: 'RootQueryToMediaItemConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: MediaItem + } /** Page Info on the "RootQueryToMediaItemConnection" */ -export type RootQueryToMediaItemConnectionPageInfo = MediaItemConnectionPageInfo & PageInfo & WpPageInfo & { - __typename?: 'RootQueryToMediaItemConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type RootQueryToMediaItemConnectionPageInfo = MediaItemConnectionPageInfo & + PageInfo & + WpPageInfo & { + __typename?: 'RootQueryToMediaItemConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the RootQueryToMediaItemConnection connection */ export type RootQueryToMediaItemConnectionWhereArgs = { /** The user that's connected as the author of the object. Use the userId for the author object. */ - author?: InputMaybe; + author?: InputMaybe /** Find objects connected to author(s) in the array of author's userIds */ - authorIn?: InputMaybe>>; + authorIn?: InputMaybe>> /** Find objects connected to the author by the author's nicename */ - authorName?: InputMaybe; + authorName?: InputMaybe /** Find objects NOT connected to author(s) in the array of author's userIds */ - authorNotIn?: InputMaybe>>; + authorNotIn?: InputMaybe>> /** Filter the connection based on dates */ - dateQuery?: InputMaybe; + dateQuery?: InputMaybe /** True for objects with passwords; False for objects without passwords; null for all objects with or without passwords */ - hasPassword?: InputMaybe; + hasPassword?: InputMaybe /** Specific database ID of the object */ - id?: InputMaybe; + id?: InputMaybe /** Array of IDs for the objects to retrieve */ - in?: InputMaybe>>; + in?: InputMaybe>> /** Filter by MediaItems by language code (Polylang) */ - language?: InputMaybe; + language?: InputMaybe /** Get objects with a specific mimeType property */ - mimeType?: InputMaybe; + mimeType?: InputMaybe /** Slug / post_name of the object */ - name?: InputMaybe; + name?: InputMaybe /** Specify objects to retrieve. Use slugs */ - nameIn?: InputMaybe>>; + nameIn?: InputMaybe>> /** Specify IDs NOT to retrieve. If this is used in the same query as "in", it will be ignored */ - notIn?: InputMaybe>>; + notIn?: InputMaybe>> /** What parameter to use to order the objects by. */ - orderby?: InputMaybe>>; + orderby?: InputMaybe>> /** Use ID to return only children. Use 0 to return only top-level items */ - parent?: InputMaybe; + parent?: InputMaybe /** Specify objects whose parent is in an array */ - parentIn?: InputMaybe>>; + parentIn?: InputMaybe>> /** Specify posts whose parent is not in an array */ - parentNotIn?: InputMaybe>>; + parentNotIn?: InputMaybe>> /** Show posts with a specific password. */ - password?: InputMaybe; + password?: InputMaybe /** Show Posts based on a keyword search */ - search?: InputMaybe; + search?: InputMaybe /** Retrieve posts where post status is in an array. */ - stati?: InputMaybe>>; + stati?: InputMaybe>> /** Show posts with a specific status. */ - status?: InputMaybe; + status?: InputMaybe /** Title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** Connection between the RootQuery type and the Menu type */ -export type RootQueryToMenuConnection = Connection & MenuConnection & { - __typename?: 'RootQueryToMenuConnection'; - /** Edges for the RootQueryToMenuConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: RootQueryToMenuConnectionPageInfo; -}; +export type RootQueryToMenuConnection = Connection & + MenuConnection & { + __typename?: 'RootQueryToMenuConnection' + /** Edges for the RootQueryToMenuConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: RootQueryToMenuConnectionPageInfo + } /** An edge in a connection */ -export type RootQueryToMenuConnectionEdge = Edge & MenuConnectionEdge & { - __typename?: 'RootQueryToMenuConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: Menu; -}; +export type RootQueryToMenuConnectionEdge = Edge & + MenuConnectionEdge & { + __typename?: 'RootQueryToMenuConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: Menu + } /** Page Info on the "RootQueryToMenuConnection" */ -export type RootQueryToMenuConnectionPageInfo = MenuConnectionPageInfo & PageInfo & WpPageInfo & { - __typename?: 'RootQueryToMenuConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type RootQueryToMenuConnectionPageInfo = MenuConnectionPageInfo & + PageInfo & + WpPageInfo & { + __typename?: 'RootQueryToMenuConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the RootQueryToMenuConnection connection */ export type RootQueryToMenuConnectionWhereArgs = { /** The database ID of the object */ - id?: InputMaybe; + id?: InputMaybe /** The menu location for the menu being queried */ - location?: InputMaybe; + location?: InputMaybe /** The slug of the menu to query items for */ - slug?: InputMaybe; -}; + slug?: InputMaybe +} /** Connection between the RootQuery type and the MenuItem type */ -export type RootQueryToMenuItemConnection = Connection & MenuItemConnection & { - __typename?: 'RootQueryToMenuItemConnection'; - /** Edges for the RootQueryToMenuItemConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: RootQueryToMenuItemConnectionPageInfo; -}; +export type RootQueryToMenuItemConnection = Connection & + MenuItemConnection & { + __typename?: 'RootQueryToMenuItemConnection' + /** Edges for the RootQueryToMenuItemConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: RootQueryToMenuItemConnectionPageInfo + } /** An edge in a connection */ -export type RootQueryToMenuItemConnectionEdge = Edge & MenuItemConnectionEdge & { - __typename?: 'RootQueryToMenuItemConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: MenuItem; -}; +export type RootQueryToMenuItemConnectionEdge = Edge & + MenuItemConnectionEdge & { + __typename?: 'RootQueryToMenuItemConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: MenuItem + } /** Page Info on the "RootQueryToMenuItemConnection" */ -export type RootQueryToMenuItemConnectionPageInfo = MenuItemConnectionPageInfo & PageInfo & WpPageInfo & { - __typename?: 'RootQueryToMenuItemConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type RootQueryToMenuItemConnectionPageInfo = MenuItemConnectionPageInfo & + PageInfo & + WpPageInfo & { + __typename?: 'RootQueryToMenuItemConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the RootQueryToMenuItemConnection connection */ export type RootQueryToMenuItemConnectionWhereArgs = { /** The database ID of the object */ - id?: InputMaybe; - language?: InputMaybe; + id?: InputMaybe + language?: InputMaybe /** The menu location for the menu being queried */ - location?: InputMaybe; + location?: InputMaybe /** The database ID of the parent menu object */ - parentDatabaseId?: InputMaybe; + parentDatabaseId?: InputMaybe /** The ID of the parent menu object */ - parentId?: InputMaybe; -}; + parentId?: InputMaybe +} /** Connection between the RootQuery type and the Messenger type */ -export type RootQueryToMessengerConnection = Connection & MessengerConnection & { - __typename?: 'RootQueryToMessengerConnection'; - /** Edges for the RootQueryToMessengerConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: RootQueryToMessengerConnectionPageInfo; -}; +export type RootQueryToMessengerConnection = Connection & + MessengerConnection & { + __typename?: 'RootQueryToMessengerConnection' + /** Edges for the RootQueryToMessengerConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: RootQueryToMessengerConnectionPageInfo + } /** An edge in a connection */ -export type RootQueryToMessengerConnectionEdge = Edge & MessengerConnectionEdge & { - __typename?: 'RootQueryToMessengerConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: Messenger; -}; +export type RootQueryToMessengerConnectionEdge = Edge & + MessengerConnectionEdge & { + __typename?: 'RootQueryToMessengerConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: Messenger + } /** Page Info on the "RootQueryToMessengerConnection" */ -export type RootQueryToMessengerConnectionPageInfo = MessengerConnectionPageInfo & PageInfo & WpPageInfo & { - __typename?: 'RootQueryToMessengerConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type RootQueryToMessengerConnectionPageInfo = MessengerConnectionPageInfo & + PageInfo & + WpPageInfo & { + __typename?: 'RootQueryToMessengerConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the RootQueryToMessengerConnection connection */ export type RootQueryToMessengerConnectionWhereArgs = { /** Filter the connection based on dates */ - dateQuery?: InputMaybe; + dateQuery?: InputMaybe /** True for objects with passwords; False for objects without passwords; null for all objects with or without passwords */ - hasPassword?: InputMaybe; + hasPassword?: InputMaybe /** Specific database ID of the object */ - id?: InputMaybe; + id?: InputMaybe /** Array of IDs for the objects to retrieve */ - in?: InputMaybe>>; + in?: InputMaybe>> /** Get objects with a specific mimeType property */ - mimeType?: InputMaybe; + mimeType?: InputMaybe /** Slug / post_name of the object */ - name?: InputMaybe; + name?: InputMaybe /** Specify objects to retrieve. Use slugs */ - nameIn?: InputMaybe>>; + nameIn?: InputMaybe>> /** Specify IDs NOT to retrieve. If this is used in the same query as "in", it will be ignored */ - notIn?: InputMaybe>>; + notIn?: InputMaybe>> /** What parameter to use to order the objects by. */ - orderby?: InputMaybe>>; + orderby?: InputMaybe>> /** Use ID to return only children. Use 0 to return only top-level items */ - parent?: InputMaybe; + parent?: InputMaybe /** Specify objects whose parent is in an array */ - parentIn?: InputMaybe>>; + parentIn?: InputMaybe>> /** Specify posts whose parent is not in an array */ - parentNotIn?: InputMaybe>>; + parentNotIn?: InputMaybe>> /** Show posts with a specific password. */ - password?: InputMaybe; + password?: InputMaybe /** Show Posts based on a keyword search */ - search?: InputMaybe; + search?: InputMaybe /** Retrieve posts where post status is in an array. */ - stati?: InputMaybe>>; + stati?: InputMaybe>> /** Show posts with a specific status. */ - status?: InputMaybe; + status?: InputMaybe /** Title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** Connection between the RootQuery type and the NavigationItem type */ -export type RootQueryToNavigationItemConnection = Connection & NavigationItemConnection & { - __typename?: 'RootQueryToNavigationItemConnection'; - /** Edges for the RootQueryToNavigationItemConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: RootQueryToNavigationItemConnectionPageInfo; -}; +export type RootQueryToNavigationItemConnection = Connection & + NavigationItemConnection & { + __typename?: 'RootQueryToNavigationItemConnection' + /** Edges for the RootQueryToNavigationItemConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: RootQueryToNavigationItemConnectionPageInfo + } /** An edge in a connection */ -export type RootQueryToNavigationItemConnectionEdge = Edge & NavigationItemConnectionEdge & { - __typename?: 'RootQueryToNavigationItemConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: NavigationItem; -}; +export type RootQueryToNavigationItemConnectionEdge = Edge & + NavigationItemConnectionEdge & { + __typename?: 'RootQueryToNavigationItemConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: NavigationItem + } /** Page Info on the "RootQueryToNavigationItemConnection" */ -export type RootQueryToNavigationItemConnectionPageInfo = NavigationItemConnectionPageInfo & PageInfo & WpPageInfo & { - __typename?: 'RootQueryToNavigationItemConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type RootQueryToNavigationItemConnectionPageInfo = NavigationItemConnectionPageInfo & + PageInfo & + WpPageInfo & { + __typename?: 'RootQueryToNavigationItemConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the RootQueryToNavigationItemConnection connection */ export type RootQueryToNavigationItemConnectionWhereArgs = { /** Filter the connection based on dates */ - dateQuery?: InputMaybe; + dateQuery?: InputMaybe /** True for objects with passwords; False for objects without passwords; null for all objects with or without passwords */ - hasPassword?: InputMaybe; + hasPassword?: InputMaybe /** Specific database ID of the object */ - id?: InputMaybe; + id?: InputMaybe /** Array of IDs for the objects to retrieve */ - in?: InputMaybe>>; + in?: InputMaybe>> /** Filter by NavigationItems by language code (Polylang) */ - language?: InputMaybe; + language?: InputMaybe /** Get objects with a specific mimeType property */ - mimeType?: InputMaybe; + mimeType?: InputMaybe /** Slug / post_name of the object */ - name?: InputMaybe; + name?: InputMaybe /** Specify objects to retrieve. Use slugs */ - nameIn?: InputMaybe>>; + nameIn?: InputMaybe>> /** Specify IDs NOT to retrieve. If this is used in the same query as "in", it will be ignored */ - notIn?: InputMaybe>>; + notIn?: InputMaybe>> /** What parameter to use to order the objects by. */ - orderby?: InputMaybe>>; + orderby?: InputMaybe>> /** Use ID to return only children. Use 0 to return only top-level items */ - parent?: InputMaybe; + parent?: InputMaybe /** Specify objects whose parent is in an array */ - parentIn?: InputMaybe>>; + parentIn?: InputMaybe>> /** Specify posts whose parent is not in an array */ - parentNotIn?: InputMaybe>>; + parentNotIn?: InputMaybe>> /** Show posts with a specific password. */ - password?: InputMaybe; + password?: InputMaybe /** Show Posts based on a keyword search */ - search?: InputMaybe; + search?: InputMaybe /** Retrieve posts where post status is in an array. */ - stati?: InputMaybe>>; + stati?: InputMaybe>> /** Show posts with a specific status. */ - status?: InputMaybe; + status?: InputMaybe /** Title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** Connection between the RootQuery type and the NotFound type */ -export type RootQueryToNotFoundConnection = Connection & NotFoundConnection & { - __typename?: 'RootQueryToNotFoundConnection'; - /** Edges for the RootQueryToNotFoundConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: RootQueryToNotFoundConnectionPageInfo; -}; +export type RootQueryToNotFoundConnection = Connection & + NotFoundConnection & { + __typename?: 'RootQueryToNotFoundConnection' + /** Edges for the RootQueryToNotFoundConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: RootQueryToNotFoundConnectionPageInfo + } /** An edge in a connection */ -export type RootQueryToNotFoundConnectionEdge = Edge & NotFoundConnectionEdge & { - __typename?: 'RootQueryToNotFoundConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: NotFound; -}; +export type RootQueryToNotFoundConnectionEdge = Edge & + NotFoundConnectionEdge & { + __typename?: 'RootQueryToNotFoundConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: NotFound + } /** Page Info on the "RootQueryToNotFoundConnection" */ -export type RootQueryToNotFoundConnectionPageInfo = NotFoundConnectionPageInfo & PageInfo & WpPageInfo & { - __typename?: 'RootQueryToNotFoundConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type RootQueryToNotFoundConnectionPageInfo = NotFoundConnectionPageInfo & + PageInfo & + WpPageInfo & { + __typename?: 'RootQueryToNotFoundConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the RootQueryToNotFoundConnection connection */ export type RootQueryToNotFoundConnectionWhereArgs = { /** Filter the connection based on dates */ - dateQuery?: InputMaybe; + dateQuery?: InputMaybe /** True for objects with passwords; False for objects without passwords; null for all objects with or without passwords */ - hasPassword?: InputMaybe; + hasPassword?: InputMaybe /** Specific database ID of the object */ - id?: InputMaybe; + id?: InputMaybe /** Array of IDs for the objects to retrieve */ - in?: InputMaybe>>; + in?: InputMaybe>> /** Get objects with a specific mimeType property */ - mimeType?: InputMaybe; + mimeType?: InputMaybe /** Slug / post_name of the object */ - name?: InputMaybe; + name?: InputMaybe /** Specify objects to retrieve. Use slugs */ - nameIn?: InputMaybe>>; + nameIn?: InputMaybe>> /** Specify IDs NOT to retrieve. If this is used in the same query as "in", it will be ignored */ - notIn?: InputMaybe>>; + notIn?: InputMaybe>> /** What parameter to use to order the objects by. */ - orderby?: InputMaybe>>; + orderby?: InputMaybe>> /** Use ID to return only children. Use 0 to return only top-level items */ - parent?: InputMaybe; + parent?: InputMaybe /** Specify objects whose parent is in an array */ - parentIn?: InputMaybe>>; + parentIn?: InputMaybe>> /** Specify posts whose parent is not in an array */ - parentNotIn?: InputMaybe>>; + parentNotIn?: InputMaybe>> /** Show posts with a specific password. */ - password?: InputMaybe; + password?: InputMaybe /** Show Posts based on a keyword search */ - search?: InputMaybe; + search?: InputMaybe /** Retrieve posts where post status is in an array. */ - stati?: InputMaybe>>; + stati?: InputMaybe>> /** Show posts with a specific status. */ - status?: InputMaybe; + status?: InputMaybe /** Title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** Connection between the RootQuery type and the page type */ -export type RootQueryToPageConnection = Connection & PageConnection & { - __typename?: 'RootQueryToPageConnection'; - /** Edges for the RootQueryToPageConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: RootQueryToPageConnectionPageInfo; -}; +export type RootQueryToPageConnection = Connection & + PageConnection & { + __typename?: 'RootQueryToPageConnection' + /** Edges for the RootQueryToPageConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: RootQueryToPageConnectionPageInfo + } /** An edge in a connection */ -export type RootQueryToPageConnectionEdge = Edge & PageConnectionEdge & { - __typename?: 'RootQueryToPageConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: Page; -}; +export type RootQueryToPageConnectionEdge = Edge & + PageConnectionEdge & { + __typename?: 'RootQueryToPageConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: Page + } /** Page Info on the "RootQueryToPageConnection" */ -export type RootQueryToPageConnectionPageInfo = PageConnectionPageInfo & PageInfo & WpPageInfo & { - __typename?: 'RootQueryToPageConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type RootQueryToPageConnectionPageInfo = PageConnectionPageInfo & + PageInfo & + WpPageInfo & { + __typename?: 'RootQueryToPageConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the RootQueryToPageConnection connection */ export type RootQueryToPageConnectionWhereArgs = { /** The user that's connected as the author of the object. Use the userId for the author object. */ - author?: InputMaybe; + author?: InputMaybe /** Find objects connected to author(s) in the array of author's userIds */ - authorIn?: InputMaybe>>; + authorIn?: InputMaybe>> /** Find objects connected to the author by the author's nicename */ - authorName?: InputMaybe; + authorName?: InputMaybe /** Find objects NOT connected to author(s) in the array of author's userIds */ - authorNotIn?: InputMaybe>>; + authorNotIn?: InputMaybe>> /** Filter the connection based on dates */ - dateQuery?: InputMaybe; + dateQuery?: InputMaybe /** True for objects with passwords; False for objects without passwords; null for all objects with or without passwords */ - hasPassword?: InputMaybe; + hasPassword?: InputMaybe /** Specific database ID of the object */ - id?: InputMaybe; + id?: InputMaybe /** Array of IDs for the objects to retrieve */ - in?: InputMaybe>>; + in?: InputMaybe>> /** Filter by Pages by language code (Polylang) */ - language?: InputMaybe; + language?: InputMaybe /** Get objects with a specific mimeType property */ - mimeType?: InputMaybe; + mimeType?: InputMaybe /** Slug / post_name of the object */ - name?: InputMaybe; + name?: InputMaybe /** Specify objects to retrieve. Use slugs */ - nameIn?: InputMaybe>>; + nameIn?: InputMaybe>> /** Specify IDs NOT to retrieve. If this is used in the same query as "in", it will be ignored */ - notIn?: InputMaybe>>; + notIn?: InputMaybe>> /** What parameter to use to order the objects by. */ - orderby?: InputMaybe>>; + orderby?: InputMaybe>> /** Use ID to return only children. Use 0 to return only top-level items */ - parent?: InputMaybe; + parent?: InputMaybe /** Specify objects whose parent is in an array */ - parentIn?: InputMaybe>>; + parentIn?: InputMaybe>> /** Specify posts whose parent is not in an array */ - parentNotIn?: InputMaybe>>; + parentNotIn?: InputMaybe>> /** Show posts with a specific password. */ - password?: InputMaybe; + password?: InputMaybe /** Show Posts based on a keyword search */ - search?: InputMaybe; + search?: InputMaybe /** Retrieve posts where post status is in an array. */ - stati?: InputMaybe>>; + stati?: InputMaybe>> /** Show posts with a specific status. */ - status?: InputMaybe; + status?: InputMaybe /** Title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** Connection between the RootQuery type and the Plugin type */ -export type RootQueryToPluginConnection = Connection & PluginConnection & { - __typename?: 'RootQueryToPluginConnection'; - /** Edges for the RootQueryToPluginConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: RootQueryToPluginConnectionPageInfo; -}; +export type RootQueryToPluginConnection = Connection & + PluginConnection & { + __typename?: 'RootQueryToPluginConnection' + /** Edges for the RootQueryToPluginConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: RootQueryToPluginConnectionPageInfo + } /** An edge in a connection */ -export type RootQueryToPluginConnectionEdge = Edge & PluginConnectionEdge & { - __typename?: 'RootQueryToPluginConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: Plugin; -}; +export type RootQueryToPluginConnectionEdge = Edge & + PluginConnectionEdge & { + __typename?: 'RootQueryToPluginConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: Plugin + } /** Page Info on the "RootQueryToPluginConnection" */ -export type RootQueryToPluginConnectionPageInfo = PageInfo & PluginConnectionPageInfo & WpPageInfo & { - __typename?: 'RootQueryToPluginConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type RootQueryToPluginConnectionPageInfo = PageInfo & + PluginConnectionPageInfo & + WpPageInfo & { + __typename?: 'RootQueryToPluginConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the RootQueryToPluginConnection connection */ export type RootQueryToPluginConnectionWhereArgs = { /** Show plugin based on a keyword search. */ - search?: InputMaybe; + search?: InputMaybe /** Retrieve plugins where plugin status is in an array. */ - stati?: InputMaybe>>; + stati?: InputMaybe>> /** Show plugins with a specific status. */ - status?: InputMaybe; -}; + status?: InputMaybe +} /** Connection between the RootQuery type and the post type */ -export type RootQueryToPostConnection = Connection & PostConnection & { - __typename?: 'RootQueryToPostConnection'; - /** Edges for the RootQueryToPostConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: RootQueryToPostConnectionPageInfo; -}; +export type RootQueryToPostConnection = Connection & + PostConnection & { + __typename?: 'RootQueryToPostConnection' + /** Edges for the RootQueryToPostConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: RootQueryToPostConnectionPageInfo + } /** An edge in a connection */ -export type RootQueryToPostConnectionEdge = Edge & PostConnectionEdge & { - __typename?: 'RootQueryToPostConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: Post; -}; +export type RootQueryToPostConnectionEdge = Edge & + PostConnectionEdge & { + __typename?: 'RootQueryToPostConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: Post + } /** Page Info on the "RootQueryToPostConnection" */ -export type RootQueryToPostConnectionPageInfo = PageInfo & PostConnectionPageInfo & WpPageInfo & { - __typename?: 'RootQueryToPostConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type RootQueryToPostConnectionPageInfo = PageInfo & + PostConnectionPageInfo & + WpPageInfo & { + __typename?: 'RootQueryToPostConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the RootQueryToPostConnection connection */ export type RootQueryToPostConnectionWhereArgs = { /** The user that's connected as the author of the object. Use the userId for the author object. */ - author?: InputMaybe; + author?: InputMaybe /** Find objects connected to author(s) in the array of author's userIds */ - authorIn?: InputMaybe>>; + authorIn?: InputMaybe>> /** Find objects connected to the author by the author's nicename */ - authorName?: InputMaybe; + authorName?: InputMaybe /** Find objects NOT connected to author(s) in the array of author's userIds */ - authorNotIn?: InputMaybe>>; + authorNotIn?: InputMaybe>> /** Category ID */ - categoryId?: InputMaybe; + categoryId?: InputMaybe /** Array of category IDs, used to display objects from one category OR another */ - categoryIn?: InputMaybe>>; + categoryIn?: InputMaybe>> /** Use Category Slug */ - categoryName?: InputMaybe; + categoryName?: InputMaybe /** Array of category IDs, used to display objects from one category OR another */ - categoryNotIn?: InputMaybe>>; + categoryNotIn?: InputMaybe>> /** Filter the connection based on dates */ - dateQuery?: InputMaybe; + dateQuery?: InputMaybe /** True for objects with passwords; False for objects without passwords; null for all objects with or without passwords */ - hasPassword?: InputMaybe; + hasPassword?: InputMaybe /** Specific database ID of the object */ - id?: InputMaybe; + id?: InputMaybe /** Array of IDs for the objects to retrieve */ - in?: InputMaybe>>; + in?: InputMaybe>> /** Filter by Posts by language code (Polylang) */ - language?: InputMaybe; + language?: InputMaybe /** Get objects with a specific mimeType property */ - mimeType?: InputMaybe; + mimeType?: InputMaybe /** Slug / post_name of the object */ - name?: InputMaybe; + name?: InputMaybe /** Specify objects to retrieve. Use slugs */ - nameIn?: InputMaybe>>; + nameIn?: InputMaybe>> /** Specify IDs NOT to retrieve. If this is used in the same query as "in", it will be ignored */ - notIn?: InputMaybe>>; + notIn?: InputMaybe>> /** What parameter to use to order the objects by. */ - orderby?: InputMaybe>>; + orderby?: InputMaybe>> /** Use ID to return only children. Use 0 to return only top-level items */ - parent?: InputMaybe; + parent?: InputMaybe /** Specify objects whose parent is in an array */ - parentIn?: InputMaybe>>; + parentIn?: InputMaybe>> /** Specify posts whose parent is not in an array */ - parentNotIn?: InputMaybe>>; + parentNotIn?: InputMaybe>> /** Show posts with a specific password. */ - password?: InputMaybe; + password?: InputMaybe /** Show Posts based on a keyword search */ - search?: InputMaybe; + search?: InputMaybe /** Retrieve posts where post status is in an array. */ - stati?: InputMaybe>>; + stati?: InputMaybe>> /** Show posts with a specific status. */ - status?: InputMaybe; + status?: InputMaybe /** Tag Slug */ - tag?: InputMaybe; + tag?: InputMaybe /** Use Tag ID */ - tagId?: InputMaybe; + tagId?: InputMaybe /** Array of tag IDs, used to display objects from one tag OR another */ - tagIn?: InputMaybe>>; + tagIn?: InputMaybe>> /** Array of tag IDs, used to display objects from one tag OR another */ - tagNotIn?: InputMaybe>>; + tagNotIn?: InputMaybe>> /** Array of tag slugs, used to display objects from one tag AND another */ - tagSlugAnd?: InputMaybe>>; + tagSlugAnd?: InputMaybe>> /** Array of tag slugs, used to include objects in ANY specified tags */ - tagSlugIn?: InputMaybe>>; + tagSlugIn?: InputMaybe>> /** Title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** Connection between the RootQuery type and the postFormat type */ -export type RootQueryToPostFormatConnection = Connection & PostFormatConnection & { - __typename?: 'RootQueryToPostFormatConnection'; - /** Edges for the RootQueryToPostFormatConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: RootQueryToPostFormatConnectionPageInfo; -}; +export type RootQueryToPostFormatConnection = Connection & + PostFormatConnection & { + __typename?: 'RootQueryToPostFormatConnection' + /** Edges for the RootQueryToPostFormatConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: RootQueryToPostFormatConnectionPageInfo + } /** An edge in a connection */ -export type RootQueryToPostFormatConnectionEdge = Edge & PostFormatConnectionEdge & { - __typename?: 'RootQueryToPostFormatConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: PostFormat; -}; +export type RootQueryToPostFormatConnectionEdge = Edge & + PostFormatConnectionEdge & { + __typename?: 'RootQueryToPostFormatConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: PostFormat + } /** Page Info on the "RootQueryToPostFormatConnection" */ -export type RootQueryToPostFormatConnectionPageInfo = PageInfo & PostFormatConnectionPageInfo & WpPageInfo & { - __typename?: 'RootQueryToPostFormatConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type RootQueryToPostFormatConnectionPageInfo = PageInfo & + PostFormatConnectionPageInfo & + WpPageInfo & { + __typename?: 'RootQueryToPostFormatConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the RootQueryToPostFormatConnection connection */ export type RootQueryToPostFormatConnectionWhereArgs = { /** Unique cache key to be produced when this query is stored in an object cache. Default is 'core'. */ - cacheDomain?: InputMaybe; + cacheDomain?: InputMaybe /** Term ID to retrieve child terms of. If multiple taxonomies are passed, $child_of is ignored. Default 0. */ - childOf?: InputMaybe; + childOf?: InputMaybe /** True to limit results to terms that have no children. This parameter has no effect on non-hierarchical taxonomies. Default false. */ - childless?: InputMaybe; + childless?: InputMaybe /** Retrieve terms where the description is LIKE the input value. Default empty. */ - descriptionLike?: InputMaybe; + descriptionLike?: InputMaybe /** Array of term ids to exclude. If $include is non-empty, $exclude is ignored. Default empty array. */ - exclude?: InputMaybe>>; + exclude?: InputMaybe>> /** Array of term ids to exclude along with all of their descendant terms. If $include is non-empty, $exclude_tree is ignored. Default empty array. */ - excludeTree?: InputMaybe>>; + excludeTree?: InputMaybe>> /** Whether to hide terms not assigned to any posts. Accepts true or false. Default false */ - hideEmpty?: InputMaybe; + hideEmpty?: InputMaybe /** Whether to include terms that have non-empty descendants (even if $hide_empty is set to true). Default true. */ - hierarchical?: InputMaybe; + hierarchical?: InputMaybe /** Array of term ids to include. Default empty array. */ - include?: InputMaybe>>; + include?: InputMaybe>> /** Array of names to return term(s) for. Default empty. */ - name?: InputMaybe>>; + name?: InputMaybe>> /** Retrieve terms where the name is LIKE the input value. Default empty. */ - nameLike?: InputMaybe; + nameLike?: InputMaybe /** Array of object IDs. Results will be limited to terms associated with these objects. */ - objectIds?: InputMaybe>>; + objectIds?: InputMaybe>> /** Direction the connection should be ordered in */ - order?: InputMaybe; + order?: InputMaybe /** Field(s) to order terms by. Defaults to 'name'. */ - orderby?: InputMaybe; + orderby?: InputMaybe /** Whether to pad the quantity of a term's children in the quantity of each term's "count" object variable. Default false. */ - padCounts?: InputMaybe; + padCounts?: InputMaybe /** Parent term ID to retrieve direct-child terms of. Default empty. */ - parent?: InputMaybe; + parent?: InputMaybe /** Search criteria to match terms. Will be SQL-formatted with wildcards before and after. Default empty. */ - search?: InputMaybe; + search?: InputMaybe /** Array of slugs to return term(s) for. Default empty. */ - slug?: InputMaybe>>; + slug?: InputMaybe>> /** Array of term taxonomy IDs, to match when querying terms. */ - termTaxonomId?: InputMaybe>>; + termTaxonomId?: InputMaybe>> /** Array of term taxonomy IDs, to match when querying terms. */ - termTaxonomyId?: InputMaybe>>; + termTaxonomyId?: InputMaybe>> /** Whether to prime meta caches for matched terms. Default true. */ - updateTermMetaCache?: InputMaybe; -}; + updateTermMetaCache?: InputMaybe +} /** Connection between the RootQuery type and the PrivacyPolicyItem type */ -export type RootQueryToPrivacyPolicyItemConnection = Connection & PrivacyPolicyItemConnection & { - __typename?: 'RootQueryToPrivacyPolicyItemConnection'; - /** Edges for the RootQueryToPrivacyPolicyItemConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: RootQueryToPrivacyPolicyItemConnectionPageInfo; -}; +export type RootQueryToPrivacyPolicyItemConnection = Connection & + PrivacyPolicyItemConnection & { + __typename?: 'RootQueryToPrivacyPolicyItemConnection' + /** Edges for the RootQueryToPrivacyPolicyItemConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: RootQueryToPrivacyPolicyItemConnectionPageInfo + } /** An edge in a connection */ -export type RootQueryToPrivacyPolicyItemConnectionEdge = Edge & PrivacyPolicyItemConnectionEdge & { - __typename?: 'RootQueryToPrivacyPolicyItemConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: PrivacyPolicyItem; -}; +export type RootQueryToPrivacyPolicyItemConnectionEdge = Edge & + PrivacyPolicyItemConnectionEdge & { + __typename?: 'RootQueryToPrivacyPolicyItemConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: PrivacyPolicyItem + } /** Page Info on the "RootQueryToPrivacyPolicyItemConnection" */ -export type RootQueryToPrivacyPolicyItemConnectionPageInfo = PageInfo & PrivacyPolicyItemConnectionPageInfo & WpPageInfo & { - __typename?: 'RootQueryToPrivacyPolicyItemConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type RootQueryToPrivacyPolicyItemConnectionPageInfo = PageInfo & + PrivacyPolicyItemConnectionPageInfo & + WpPageInfo & { + __typename?: 'RootQueryToPrivacyPolicyItemConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the RootQueryToPrivacyPolicyItemConnection connection */ export type RootQueryToPrivacyPolicyItemConnectionWhereArgs = { /** Filter the connection based on dates */ - dateQuery?: InputMaybe; + dateQuery?: InputMaybe /** True for objects with passwords; False for objects without passwords; null for all objects with or without passwords */ - hasPassword?: InputMaybe; + hasPassword?: InputMaybe /** Specific database ID of the object */ - id?: InputMaybe; + id?: InputMaybe /** Array of IDs for the objects to retrieve */ - in?: InputMaybe>>; + in?: InputMaybe>> /** Filter by PrivacyPolicyItems by language code (Polylang) */ - language?: InputMaybe; + language?: InputMaybe /** Get objects with a specific mimeType property */ - mimeType?: InputMaybe; + mimeType?: InputMaybe /** Slug / post_name of the object */ - name?: InputMaybe; + name?: InputMaybe /** Specify objects to retrieve. Use slugs */ - nameIn?: InputMaybe>>; + nameIn?: InputMaybe>> /** Specify IDs NOT to retrieve. If this is used in the same query as "in", it will be ignored */ - notIn?: InputMaybe>>; + notIn?: InputMaybe>> /** What parameter to use to order the objects by. */ - orderby?: InputMaybe>>; + orderby?: InputMaybe>> /** Use ID to return only children. Use 0 to return only top-level items */ - parent?: InputMaybe; + parent?: InputMaybe /** Specify objects whose parent is in an array */ - parentIn?: InputMaybe>>; + parentIn?: InputMaybe>> /** Specify posts whose parent is not in an array */ - parentNotIn?: InputMaybe>>; + parentNotIn?: InputMaybe>> /** Show posts with a specific password. */ - password?: InputMaybe; + password?: InputMaybe /** Show Posts based on a keyword search */ - search?: InputMaybe; + search?: InputMaybe /** Retrieve posts where post status is in an array. */ - stati?: InputMaybe>>; + stati?: InputMaybe>> /** Show posts with a specific status. */ - status?: InputMaybe; + status?: InputMaybe /** Title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** Connection between the RootQuery type and the Recruit type */ -export type RootQueryToRecruitConnection = Connection & RecruitConnection & { - __typename?: 'RootQueryToRecruitConnection'; - /** Edges for the RootQueryToRecruitConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: RootQueryToRecruitConnectionPageInfo; -}; +export type RootQueryToRecruitConnection = Connection & + RecruitConnection & { + __typename?: 'RootQueryToRecruitConnection' + /** Edges for the RootQueryToRecruitConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: RootQueryToRecruitConnectionPageInfo + } /** An edge in a connection */ -export type RootQueryToRecruitConnectionEdge = Edge & RecruitConnectionEdge & { - __typename?: 'RootQueryToRecruitConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: Recruit; -}; +export type RootQueryToRecruitConnectionEdge = Edge & + RecruitConnectionEdge & { + __typename?: 'RootQueryToRecruitConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: Recruit + } /** Page Info on the "RootQueryToRecruitConnection" */ -export type RootQueryToRecruitConnectionPageInfo = PageInfo & RecruitConnectionPageInfo & WpPageInfo & { - __typename?: 'RootQueryToRecruitConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type RootQueryToRecruitConnectionPageInfo = PageInfo & + RecruitConnectionPageInfo & + WpPageInfo & { + __typename?: 'RootQueryToRecruitConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the RootQueryToRecruitConnection connection */ export type RootQueryToRecruitConnectionWhereArgs = { /** Filter the connection based on dates */ - dateQuery?: InputMaybe; + dateQuery?: InputMaybe /** True for objects with passwords; False for objects without passwords; null for all objects with or without passwords */ - hasPassword?: InputMaybe; + hasPassword?: InputMaybe /** Specific database ID of the object */ - id?: InputMaybe; + id?: InputMaybe /** Array of IDs for the objects to retrieve */ - in?: InputMaybe>>; + in?: InputMaybe>> /** Filter by Recruits by language code (Polylang) */ - language?: InputMaybe; + language?: InputMaybe /** Get objects with a specific mimeType property */ - mimeType?: InputMaybe; + mimeType?: InputMaybe /** Slug / post_name of the object */ - name?: InputMaybe; + name?: InputMaybe /** Specify objects to retrieve. Use slugs */ - nameIn?: InputMaybe>>; + nameIn?: InputMaybe>> /** Specify IDs NOT to retrieve. If this is used in the same query as "in", it will be ignored */ - notIn?: InputMaybe>>; + notIn?: InputMaybe>> /** What parameter to use to order the objects by. */ - orderby?: InputMaybe>>; + orderby?: InputMaybe>> /** Use ID to return only children. Use 0 to return only top-level items */ - parent?: InputMaybe; + parent?: InputMaybe /** Specify objects whose parent is in an array */ - parentIn?: InputMaybe>>; + parentIn?: InputMaybe>> /** Specify posts whose parent is not in an array */ - parentNotIn?: InputMaybe>>; + parentNotIn?: InputMaybe>> /** Show posts with a specific password. */ - password?: InputMaybe; + password?: InputMaybe /** Show Posts based on a keyword search */ - search?: InputMaybe; + search?: InputMaybe /** Retrieve posts where post status is in an array. */ - stati?: InputMaybe>>; + stati?: InputMaybe>> /** Show posts with a specific status. */ - status?: InputMaybe; + status?: InputMaybe /** Title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** Connection between the RootQuery type and the recruitList type */ -export type RootQueryToRecruitListConnection = Connection & RecruitListConnection & { - __typename?: 'RootQueryToRecruitListConnection'; - /** Edges for the RootQueryToRecruitListConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: RootQueryToRecruitListConnectionPageInfo; -}; +export type RootQueryToRecruitListConnection = Connection & + RecruitListConnection & { + __typename?: 'RootQueryToRecruitListConnection' + /** Edges for the RootQueryToRecruitListConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: RootQueryToRecruitListConnectionPageInfo + } /** An edge in a connection */ -export type RootQueryToRecruitListConnectionEdge = Edge & RecruitListConnectionEdge & { - __typename?: 'RootQueryToRecruitListConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: RecruitList; -}; +export type RootQueryToRecruitListConnectionEdge = Edge & + RecruitListConnectionEdge & { + __typename?: 'RootQueryToRecruitListConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: RecruitList + } /** Page Info on the "RootQueryToRecruitListConnection" */ -export type RootQueryToRecruitListConnectionPageInfo = PageInfo & RecruitListConnectionPageInfo & WpPageInfo & { - __typename?: 'RootQueryToRecruitListConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type RootQueryToRecruitListConnectionPageInfo = PageInfo & + RecruitListConnectionPageInfo & + WpPageInfo & { + __typename?: 'RootQueryToRecruitListConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the RootQueryToRecruitListConnection connection */ export type RootQueryToRecruitListConnectionWhereArgs = { /** Unique cache key to be produced when this query is stored in an object cache. Default is 'core'. */ - cacheDomain?: InputMaybe; + cacheDomain?: InputMaybe /** Term ID to retrieve child terms of. If multiple taxonomies are passed, $child_of is ignored. Default 0. */ - childOf?: InputMaybe; + childOf?: InputMaybe /** True to limit results to terms that have no children. This parameter has no effect on non-hierarchical taxonomies. Default false. */ - childless?: InputMaybe; + childless?: InputMaybe /** Retrieve terms where the description is LIKE the input value. Default empty. */ - descriptionLike?: InputMaybe; + descriptionLike?: InputMaybe /** Array of term ids to exclude. If $include is non-empty, $exclude is ignored. Default empty array. */ - exclude?: InputMaybe>>; + exclude?: InputMaybe>> /** Array of term ids to exclude along with all of their descendant terms. If $include is non-empty, $exclude_tree is ignored. Default empty array. */ - excludeTree?: InputMaybe>>; + excludeTree?: InputMaybe>> /** Whether to hide terms not assigned to any posts. Accepts true or false. Default false */ - hideEmpty?: InputMaybe; + hideEmpty?: InputMaybe /** Whether to include terms that have non-empty descendants (even if $hide_empty is set to true). Default true. */ - hierarchical?: InputMaybe; + hierarchical?: InputMaybe /** Array of term ids to include. Default empty array. */ - include?: InputMaybe>>; + include?: InputMaybe>> /** Filter by RecruitLists by language code (Polylang) */ - language?: InputMaybe; + language?: InputMaybe /** Array of names to return term(s) for. Default empty. */ - name?: InputMaybe>>; + name?: InputMaybe>> /** Retrieve terms where the name is LIKE the input value. Default empty. */ - nameLike?: InputMaybe; + nameLike?: InputMaybe /** Array of object IDs. Results will be limited to terms associated with these objects. */ - objectIds?: InputMaybe>>; + objectIds?: InputMaybe>> /** Direction the connection should be ordered in */ - order?: InputMaybe; + order?: InputMaybe /** Field(s) to order terms by. Defaults to 'name'. */ - orderby?: InputMaybe; + orderby?: InputMaybe /** Whether to pad the quantity of a term's children in the quantity of each term's "count" object variable. Default false. */ - padCounts?: InputMaybe; + padCounts?: InputMaybe /** Parent term ID to retrieve direct-child terms of. Default empty. */ - parent?: InputMaybe; + parent?: InputMaybe /** Search criteria to match terms. Will be SQL-formatted with wildcards before and after. Default empty. */ - search?: InputMaybe; + search?: InputMaybe /** Array of slugs to return term(s) for. Default empty. */ - slug?: InputMaybe>>; + slug?: InputMaybe>> /** Array of term taxonomy IDs, to match when querying terms. */ - termTaxonomId?: InputMaybe>>; + termTaxonomId?: InputMaybe>> /** Array of term taxonomy IDs, to match when querying terms. */ - termTaxonomyId?: InputMaybe>>; + termTaxonomyId?: InputMaybe>> /** Whether to prime meta caches for matched terms. Default true. */ - updateTermMetaCache?: InputMaybe; -}; + updateTermMetaCache?: InputMaybe +} /** Connection between the RootQuery type and the review type */ -export type RootQueryToReviewConnection = Connection & ReviewConnection & { - __typename?: 'RootQueryToReviewConnection'; - /** Edges for the RootQueryToReviewConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: RootQueryToReviewConnectionPageInfo; -}; +export type RootQueryToReviewConnection = Connection & + ReviewConnection & { + __typename?: 'RootQueryToReviewConnection' + /** Edges for the RootQueryToReviewConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: RootQueryToReviewConnectionPageInfo + } /** An edge in a connection */ -export type RootQueryToReviewConnectionEdge = Edge & ReviewConnectionEdge & { - __typename?: 'RootQueryToReviewConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: Review; -}; +export type RootQueryToReviewConnectionEdge = Edge & + ReviewConnectionEdge & { + __typename?: 'RootQueryToReviewConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: Review + } /** Page Info on the "RootQueryToReviewConnection" */ -export type RootQueryToReviewConnectionPageInfo = PageInfo & ReviewConnectionPageInfo & WpPageInfo & { - __typename?: 'RootQueryToReviewConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type RootQueryToReviewConnectionPageInfo = PageInfo & + ReviewConnectionPageInfo & + WpPageInfo & { + __typename?: 'RootQueryToReviewConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the RootQueryToReviewConnection connection */ export type RootQueryToReviewConnectionWhereArgs = { /** Filter the connection based on dates */ - dateQuery?: InputMaybe; + dateQuery?: InputMaybe /** True for objects with passwords; False for objects without passwords; null for all objects with or without passwords */ - hasPassword?: InputMaybe; + hasPassword?: InputMaybe /** Specific database ID of the object */ - id?: InputMaybe; + id?: InputMaybe /** Array of IDs for the objects to retrieve */ - in?: InputMaybe>>; + in?: InputMaybe>> /** Filter by Reviews by language code (Polylang) */ - language?: InputMaybe; + language?: InputMaybe /** Get objects with a specific mimeType property */ - mimeType?: InputMaybe; + mimeType?: InputMaybe /** Slug / post_name of the object */ - name?: InputMaybe; + name?: InputMaybe /** Specify objects to retrieve. Use slugs */ - nameIn?: InputMaybe>>; + nameIn?: InputMaybe>> /** Specify IDs NOT to retrieve. If this is used in the same query as "in", it will be ignored */ - notIn?: InputMaybe>>; + notIn?: InputMaybe>> /** What parameter to use to order the objects by. */ - orderby?: InputMaybe>>; + orderby?: InputMaybe>> /** Use ID to return only children. Use 0 to return only top-level items */ - parent?: InputMaybe; + parent?: InputMaybe /** Specify objects whose parent is in an array */ - parentIn?: InputMaybe>>; + parentIn?: InputMaybe>> /** Specify posts whose parent is not in an array */ - parentNotIn?: InputMaybe>>; + parentNotIn?: InputMaybe>> /** Show posts with a specific password. */ - password?: InputMaybe; + password?: InputMaybe /** Show Posts based on a keyword search */ - search?: InputMaybe; + search?: InputMaybe /** Retrieve posts where post status is in an array. */ - stati?: InputMaybe>>; + stati?: InputMaybe>> /** Show posts with a specific status. */ - status?: InputMaybe; + status?: InputMaybe /** Title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** Connection between the RootQuery type and the reviewList type */ -export type RootQueryToReviewListConnection = Connection & ReviewListConnection & { - __typename?: 'RootQueryToReviewListConnection'; - /** Edges for the RootQueryToReviewListConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: RootQueryToReviewListConnectionPageInfo; -}; +export type RootQueryToReviewListConnection = Connection & + ReviewListConnection & { + __typename?: 'RootQueryToReviewListConnection' + /** Edges for the RootQueryToReviewListConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: RootQueryToReviewListConnectionPageInfo + } /** An edge in a connection */ -export type RootQueryToReviewListConnectionEdge = Edge & ReviewListConnectionEdge & { - __typename?: 'RootQueryToReviewListConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: ReviewList; -}; +export type RootQueryToReviewListConnectionEdge = Edge & + ReviewListConnectionEdge & { + __typename?: 'RootQueryToReviewListConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: ReviewList + } /** Page Info on the "RootQueryToReviewListConnection" */ -export type RootQueryToReviewListConnectionPageInfo = PageInfo & ReviewListConnectionPageInfo & WpPageInfo & { - __typename?: 'RootQueryToReviewListConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type RootQueryToReviewListConnectionPageInfo = PageInfo & + ReviewListConnectionPageInfo & + WpPageInfo & { + __typename?: 'RootQueryToReviewListConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the RootQueryToReviewListConnection connection */ export type RootQueryToReviewListConnectionWhereArgs = { /** Unique cache key to be produced when this query is stored in an object cache. Default is 'core'. */ - cacheDomain?: InputMaybe; + cacheDomain?: InputMaybe /** Term ID to retrieve child terms of. If multiple taxonomies are passed, $child_of is ignored. Default 0. */ - childOf?: InputMaybe; + childOf?: InputMaybe /** True to limit results to terms that have no children. This parameter has no effect on non-hierarchical taxonomies. Default false. */ - childless?: InputMaybe; + childless?: InputMaybe /** Retrieve terms where the description is LIKE the input value. Default empty. */ - descriptionLike?: InputMaybe; + descriptionLike?: InputMaybe /** Array of term ids to exclude. If $include is non-empty, $exclude is ignored. Default empty array. */ - exclude?: InputMaybe>>; + exclude?: InputMaybe>> /** Array of term ids to exclude along with all of their descendant terms. If $include is non-empty, $exclude_tree is ignored. Default empty array. */ - excludeTree?: InputMaybe>>; + excludeTree?: InputMaybe>> /** Whether to hide terms not assigned to any posts. Accepts true or false. Default false */ - hideEmpty?: InputMaybe; + hideEmpty?: InputMaybe /** Whether to include terms that have non-empty descendants (even if $hide_empty is set to true). Default true. */ - hierarchical?: InputMaybe; + hierarchical?: InputMaybe /** Array of term ids to include. Default empty array. */ - include?: InputMaybe>>; + include?: InputMaybe>> /** Filter by ReviewLists by language code (Polylang) */ - language?: InputMaybe; + language?: InputMaybe /** Array of names to return term(s) for. Default empty. */ - name?: InputMaybe>>; + name?: InputMaybe>> /** Retrieve terms where the name is LIKE the input value. Default empty. */ - nameLike?: InputMaybe; + nameLike?: InputMaybe /** Array of object IDs. Results will be limited to terms associated with these objects. */ - objectIds?: InputMaybe>>; + objectIds?: InputMaybe>> /** Direction the connection should be ordered in */ - order?: InputMaybe; + order?: InputMaybe /** Field(s) to order terms by. Defaults to 'name'. */ - orderby?: InputMaybe; + orderby?: InputMaybe /** Whether to pad the quantity of a term's children in the quantity of each term's "count" object variable. Default false. */ - padCounts?: InputMaybe; + padCounts?: InputMaybe /** Parent term ID to retrieve direct-child terms of. Default empty. */ - parent?: InputMaybe; + parent?: InputMaybe /** Search criteria to match terms. Will be SQL-formatted with wildcards before and after. Default empty. */ - search?: InputMaybe; + search?: InputMaybe /** Array of slugs to return term(s) for. Default empty. */ - slug?: InputMaybe>>; + slug?: InputMaybe>> /** Array of term taxonomy IDs, to match when querying terms. */ - termTaxonomId?: InputMaybe>>; + termTaxonomId?: InputMaybe>> /** Array of term taxonomy IDs, to match when querying terms. */ - termTaxonomyId?: InputMaybe>>; + termTaxonomyId?: InputMaybe>> /** Whether to prime meta caches for matched terms. Default true. */ - updateTermMetaCache?: InputMaybe; -}; + updateTermMetaCache?: InputMaybe +} /** Connection between the RootQuery type and the ContentNode type */ -export type RootQueryToRevisionsConnection = Connection & ContentNodeConnection & { - __typename?: 'RootQueryToRevisionsConnection'; - /** Edges for the RootQueryToRevisionsConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: RootQueryToRevisionsConnectionPageInfo; -}; +export type RootQueryToRevisionsConnection = Connection & + ContentNodeConnection & { + __typename?: 'RootQueryToRevisionsConnection' + /** Edges for the RootQueryToRevisionsConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: RootQueryToRevisionsConnectionPageInfo + } /** An edge in a connection */ -export type RootQueryToRevisionsConnectionEdge = ContentNodeConnectionEdge & Edge & { - __typename?: 'RootQueryToRevisionsConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: ContentNode; -}; +export type RootQueryToRevisionsConnectionEdge = ContentNodeConnectionEdge & + Edge & { + __typename?: 'RootQueryToRevisionsConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: ContentNode + } /** Page Info on the "RootQueryToRevisionsConnection" */ -export type RootQueryToRevisionsConnectionPageInfo = ContentNodeConnectionPageInfo & PageInfo & WpPageInfo & { - __typename?: 'RootQueryToRevisionsConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type RootQueryToRevisionsConnectionPageInfo = ContentNodeConnectionPageInfo & + PageInfo & + WpPageInfo & { + __typename?: 'RootQueryToRevisionsConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the RootQueryToRevisionsConnection connection */ export type RootQueryToRevisionsConnectionWhereArgs = { /** The Types of content to filter */ - contentTypes?: InputMaybe>>; + contentTypes?: InputMaybe>> /** Filter the connection based on dates */ - dateQuery?: InputMaybe; + dateQuery?: InputMaybe /** True for objects with passwords; False for objects without passwords; null for all objects with or without passwords */ - hasPassword?: InputMaybe; + hasPassword?: InputMaybe /** Specific database ID of the object */ - id?: InputMaybe; + id?: InputMaybe /** Array of IDs for the objects to retrieve */ - in?: InputMaybe>>; + in?: InputMaybe>> /** Get objects with a specific mimeType property */ - mimeType?: InputMaybe; + mimeType?: InputMaybe /** Slug / post_name of the object */ - name?: InputMaybe; + name?: InputMaybe /** Specify objects to retrieve. Use slugs */ - nameIn?: InputMaybe>>; + nameIn?: InputMaybe>> /** Specify IDs NOT to retrieve. If this is used in the same query as "in", it will be ignored */ - notIn?: InputMaybe>>; + notIn?: InputMaybe>> /** What parameter to use to order the objects by. */ - orderby?: InputMaybe>>; + orderby?: InputMaybe>> /** Use ID to return only children. Use 0 to return only top-level items */ - parent?: InputMaybe; + parent?: InputMaybe /** Specify objects whose parent is in an array */ - parentIn?: InputMaybe>>; + parentIn?: InputMaybe>> /** Specify posts whose parent is not in an array */ - parentNotIn?: InputMaybe>>; + parentNotIn?: InputMaybe>> /** Show posts with a specific password. */ - password?: InputMaybe; + password?: InputMaybe /** Show Posts based on a keyword search */ - search?: InputMaybe; + search?: InputMaybe /** Retrieve posts where post status is in an array. */ - stati?: InputMaybe>>; + stati?: InputMaybe>> /** Show posts with a specific status. */ - status?: InputMaybe; + status?: InputMaybe /** Title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** Connection between the RootQuery type and the SkillCategory type */ -export type RootQueryToSkillCategoryConnection = Connection & SkillCategoryConnection & { - __typename?: 'RootQueryToSkillCategoryConnection'; - /** Edges for the RootQueryToSkillCategoryConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: RootQueryToSkillCategoryConnectionPageInfo; -}; +export type RootQueryToSkillCategoryConnection = Connection & + SkillCategoryConnection & { + __typename?: 'RootQueryToSkillCategoryConnection' + /** Edges for the RootQueryToSkillCategoryConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: RootQueryToSkillCategoryConnectionPageInfo + } /** An edge in a connection */ -export type RootQueryToSkillCategoryConnectionEdge = Edge & SkillCategoryConnectionEdge & { - __typename?: 'RootQueryToSkillCategoryConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: SkillCategory; -}; +export type RootQueryToSkillCategoryConnectionEdge = Edge & + SkillCategoryConnectionEdge & { + __typename?: 'RootQueryToSkillCategoryConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: SkillCategory + } /** Page Info on the "RootQueryToSkillCategoryConnection" */ -export type RootQueryToSkillCategoryConnectionPageInfo = PageInfo & SkillCategoryConnectionPageInfo & WpPageInfo & { - __typename?: 'RootQueryToSkillCategoryConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type RootQueryToSkillCategoryConnectionPageInfo = PageInfo & + SkillCategoryConnectionPageInfo & + WpPageInfo & { + __typename?: 'RootQueryToSkillCategoryConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the RootQueryToSkillCategoryConnection connection */ export type RootQueryToSkillCategoryConnectionWhereArgs = { /** Unique cache key to be produced when this query is stored in an object cache. Default is 'core'. */ - cacheDomain?: InputMaybe; + cacheDomain?: InputMaybe /** Term ID to retrieve child terms of. If multiple taxonomies are passed, $child_of is ignored. Default 0. */ - childOf?: InputMaybe; + childOf?: InputMaybe /** True to limit results to terms that have no children. This parameter has no effect on non-hierarchical taxonomies. Default false. */ - childless?: InputMaybe; + childless?: InputMaybe /** Retrieve terms where the description is LIKE the input value. Default empty. */ - descriptionLike?: InputMaybe; + descriptionLike?: InputMaybe /** Array of term ids to exclude. If $include is non-empty, $exclude is ignored. Default empty array. */ - exclude?: InputMaybe>>; + exclude?: InputMaybe>> /** Array of term ids to exclude along with all of their descendant terms. If $include is non-empty, $exclude_tree is ignored. Default empty array. */ - excludeTree?: InputMaybe>>; + excludeTree?: InputMaybe>> /** Whether to hide terms not assigned to any posts. Accepts true or false. Default false */ - hideEmpty?: InputMaybe; + hideEmpty?: InputMaybe /** Whether to include terms that have non-empty descendants (even if $hide_empty is set to true). Default true. */ - hierarchical?: InputMaybe; + hierarchical?: InputMaybe /** Array of term ids to include. Default empty array. */ - include?: InputMaybe>>; + include?: InputMaybe>> /** Filter by SkillCategorys by language code (Polylang) */ - language?: InputMaybe; + language?: InputMaybe /** Array of names to return term(s) for. Default empty. */ - name?: InputMaybe>>; + name?: InputMaybe>> /** Retrieve terms where the name is LIKE the input value. Default empty. */ - nameLike?: InputMaybe; + nameLike?: InputMaybe /** Array of object IDs. Results will be limited to terms associated with these objects. */ - objectIds?: InputMaybe>>; + objectIds?: InputMaybe>> /** Direction the connection should be ordered in */ - order?: InputMaybe; + order?: InputMaybe /** Field(s) to order terms by. Defaults to 'name'. */ - orderby?: InputMaybe; + orderby?: InputMaybe /** Whether to pad the quantity of a term's children in the quantity of each term's "count" object variable. Default false. */ - padCounts?: InputMaybe; + padCounts?: InputMaybe /** Parent term ID to retrieve direct-child terms of. Default empty. */ - parent?: InputMaybe; + parent?: InputMaybe /** Search criteria to match terms. Will be SQL-formatted with wildcards before and after. Default empty. */ - search?: InputMaybe; + search?: InputMaybe /** Array of slugs to return term(s) for. Default empty. */ - slug?: InputMaybe>>; + slug?: InputMaybe>> /** Array of term taxonomy IDs, to match when querying terms. */ - termTaxonomId?: InputMaybe>>; + termTaxonomId?: InputMaybe>> /** Array of term taxonomy IDs, to match when querying terms. */ - termTaxonomyId?: InputMaybe>>; + termTaxonomyId?: InputMaybe>> /** Whether to prime meta caches for matched terms. Default true. */ - updateTermMetaCache?: InputMaybe; -}; + updateTermMetaCache?: InputMaybe +} /** Connection between the RootQuery type and the Skill type */ -export type RootQueryToSkillConnection = Connection & SkillConnection & { - __typename?: 'RootQueryToSkillConnection'; - /** Edges for the RootQueryToSkillConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: RootQueryToSkillConnectionPageInfo; -}; +export type RootQueryToSkillConnection = Connection & + SkillConnection & { + __typename?: 'RootQueryToSkillConnection' + /** Edges for the RootQueryToSkillConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: RootQueryToSkillConnectionPageInfo + } /** An edge in a connection */ -export type RootQueryToSkillConnectionEdge = Edge & SkillConnectionEdge & { - __typename?: 'RootQueryToSkillConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: Skill; -}; +export type RootQueryToSkillConnectionEdge = Edge & + SkillConnectionEdge & { + __typename?: 'RootQueryToSkillConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: Skill + } /** Page Info on the "RootQueryToSkillConnection" */ -export type RootQueryToSkillConnectionPageInfo = PageInfo & SkillConnectionPageInfo & WpPageInfo & { - __typename?: 'RootQueryToSkillConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type RootQueryToSkillConnectionPageInfo = PageInfo & + SkillConnectionPageInfo & + WpPageInfo & { + __typename?: 'RootQueryToSkillConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the RootQueryToSkillConnection connection */ export type RootQueryToSkillConnectionWhereArgs = { /** Filter the connection based on dates */ - dateQuery?: InputMaybe; + dateQuery?: InputMaybe /** True for objects with passwords; False for objects without passwords; null for all objects with or without passwords */ - hasPassword?: InputMaybe; + hasPassword?: InputMaybe /** Specific database ID of the object */ - id?: InputMaybe; + id?: InputMaybe /** Array of IDs for the objects to retrieve */ - in?: InputMaybe>>; + in?: InputMaybe>> /** Filter by Skills by language code (Polylang) */ - language?: InputMaybe; + language?: InputMaybe /** Get objects with a specific mimeType property */ - mimeType?: InputMaybe; + mimeType?: InputMaybe /** Slug / post_name of the object */ - name?: InputMaybe; + name?: InputMaybe /** Specify objects to retrieve. Use slugs */ - nameIn?: InputMaybe>>; + nameIn?: InputMaybe>> /** Specify IDs NOT to retrieve. If this is used in the same query as "in", it will be ignored */ - notIn?: InputMaybe>>; + notIn?: InputMaybe>> /** What parameter to use to order the objects by. */ - orderby?: InputMaybe>>; + orderby?: InputMaybe>> /** Use ID to return only children. Use 0 to return only top-level items */ - parent?: InputMaybe; + parent?: InputMaybe /** Specify objects whose parent is in an array */ - parentIn?: InputMaybe>>; + parentIn?: InputMaybe>> /** Specify posts whose parent is not in an array */ - parentNotIn?: InputMaybe>>; + parentNotIn?: InputMaybe>> /** Show posts with a specific password. */ - password?: InputMaybe; + password?: InputMaybe /** Show Posts based on a keyword search */ - search?: InputMaybe; + search?: InputMaybe /** Retrieve posts where post status is in an array. */ - stati?: InputMaybe>>; + stati?: InputMaybe>> /** Show posts with a specific status. */ - status?: InputMaybe; + status?: InputMaybe /** Title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** Connection between the RootQuery type and the SocialNetwork type */ -export type RootQueryToSocialNetworkConnection = Connection & SocialNetworkConnection & { - __typename?: 'RootQueryToSocialNetworkConnection'; - /** Edges for the RootQueryToSocialNetworkConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: RootQueryToSocialNetworkConnectionPageInfo; -}; +export type RootQueryToSocialNetworkConnection = Connection & + SocialNetworkConnection & { + __typename?: 'RootQueryToSocialNetworkConnection' + /** Edges for the RootQueryToSocialNetworkConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: RootQueryToSocialNetworkConnectionPageInfo + } /** An edge in a connection */ -export type RootQueryToSocialNetworkConnectionEdge = Edge & SocialNetworkConnectionEdge & { - __typename?: 'RootQueryToSocialNetworkConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: SocialNetwork; -}; +export type RootQueryToSocialNetworkConnectionEdge = Edge & + SocialNetworkConnectionEdge & { + __typename?: 'RootQueryToSocialNetworkConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: SocialNetwork + } /** Page Info on the "RootQueryToSocialNetworkConnection" */ -export type RootQueryToSocialNetworkConnectionPageInfo = PageInfo & SocialNetworkConnectionPageInfo & WpPageInfo & { - __typename?: 'RootQueryToSocialNetworkConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type RootQueryToSocialNetworkConnectionPageInfo = PageInfo & + SocialNetworkConnectionPageInfo & + WpPageInfo & { + __typename?: 'RootQueryToSocialNetworkConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the RootQueryToSocialNetworkConnection connection */ export type RootQueryToSocialNetworkConnectionWhereArgs = { /** Filter the connection based on dates */ - dateQuery?: InputMaybe; + dateQuery?: InputMaybe /** True for objects with passwords; False for objects without passwords; null for all objects with or without passwords */ - hasPassword?: InputMaybe; + hasPassword?: InputMaybe /** Specific database ID of the object */ - id?: InputMaybe; + id?: InputMaybe /** Array of IDs for the objects to retrieve */ - in?: InputMaybe>>; + in?: InputMaybe>> /** Get objects with a specific mimeType property */ - mimeType?: InputMaybe; + mimeType?: InputMaybe /** Slug / post_name of the object */ - name?: InputMaybe; + name?: InputMaybe /** Specify objects to retrieve. Use slugs */ - nameIn?: InputMaybe>>; + nameIn?: InputMaybe>> /** Specify IDs NOT to retrieve. If this is used in the same query as "in", it will be ignored */ - notIn?: InputMaybe>>; + notIn?: InputMaybe>> /** What parameter to use to order the objects by. */ - orderby?: InputMaybe>>; + orderby?: InputMaybe>> /** Use ID to return only children. Use 0 to return only top-level items */ - parent?: InputMaybe; + parent?: InputMaybe /** Specify objects whose parent is in an array */ - parentIn?: InputMaybe>>; + parentIn?: InputMaybe>> /** Specify posts whose parent is not in an array */ - parentNotIn?: InputMaybe>>; + parentNotIn?: InputMaybe>> /** Show posts with a specific password. */ - password?: InputMaybe; + password?: InputMaybe /** Show Posts based on a keyword search */ - search?: InputMaybe; + search?: InputMaybe /** Retrieve posts where post status is in an array. */ - stati?: InputMaybe>>; + stati?: InputMaybe>> /** Show posts with a specific status. */ - status?: InputMaybe; + status?: InputMaybe /** Title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** Connection between the RootQuery type and the tag type */ -export type RootQueryToTagConnection = Connection & TagConnection & { - __typename?: 'RootQueryToTagConnection'; - /** Edges for the RootQueryToTagConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: RootQueryToTagConnectionPageInfo; -}; +export type RootQueryToTagConnection = Connection & + TagConnection & { + __typename?: 'RootQueryToTagConnection' + /** Edges for the RootQueryToTagConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: RootQueryToTagConnectionPageInfo + } /** An edge in a connection */ -export type RootQueryToTagConnectionEdge = Edge & TagConnectionEdge & { - __typename?: 'RootQueryToTagConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: Tag; -}; +export type RootQueryToTagConnectionEdge = Edge & + TagConnectionEdge & { + __typename?: 'RootQueryToTagConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: Tag + } /** Page Info on the "RootQueryToTagConnection" */ -export type RootQueryToTagConnectionPageInfo = PageInfo & TagConnectionPageInfo & WpPageInfo & { - __typename?: 'RootQueryToTagConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type RootQueryToTagConnectionPageInfo = PageInfo & + TagConnectionPageInfo & + WpPageInfo & { + __typename?: 'RootQueryToTagConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the RootQueryToTagConnection connection */ export type RootQueryToTagConnectionWhereArgs = { /** Unique cache key to be produced when this query is stored in an object cache. Default is 'core'. */ - cacheDomain?: InputMaybe; + cacheDomain?: InputMaybe /** Term ID to retrieve child terms of. If multiple taxonomies are passed, $child_of is ignored. Default 0. */ - childOf?: InputMaybe; + childOf?: InputMaybe /** True to limit results to terms that have no children. This parameter has no effect on non-hierarchical taxonomies. Default false. */ - childless?: InputMaybe; + childless?: InputMaybe /** Retrieve terms where the description is LIKE the input value. Default empty. */ - descriptionLike?: InputMaybe; + descriptionLike?: InputMaybe /** Array of term ids to exclude. If $include is non-empty, $exclude is ignored. Default empty array. */ - exclude?: InputMaybe>>; + exclude?: InputMaybe>> /** Array of term ids to exclude along with all of their descendant terms. If $include is non-empty, $exclude_tree is ignored. Default empty array. */ - excludeTree?: InputMaybe>>; + excludeTree?: InputMaybe>> /** Whether to hide terms not assigned to any posts. Accepts true or false. Default false */ - hideEmpty?: InputMaybe; + hideEmpty?: InputMaybe /** Whether to include terms that have non-empty descendants (even if $hide_empty is set to true). Default true. */ - hierarchical?: InputMaybe; + hierarchical?: InputMaybe /** Array of term ids to include. Default empty array. */ - include?: InputMaybe>>; + include?: InputMaybe>> /** Filter by Tags by language code (Polylang) */ - language?: InputMaybe; + language?: InputMaybe /** Array of names to return term(s) for. Default empty. */ - name?: InputMaybe>>; + name?: InputMaybe>> /** Retrieve terms where the name is LIKE the input value. Default empty. */ - nameLike?: InputMaybe; + nameLike?: InputMaybe /** Array of object IDs. Results will be limited to terms associated with these objects. */ - objectIds?: InputMaybe>>; + objectIds?: InputMaybe>> /** Direction the connection should be ordered in */ - order?: InputMaybe; + order?: InputMaybe /** Field(s) to order terms by. Defaults to 'name'. */ - orderby?: InputMaybe; + orderby?: InputMaybe /** Whether to pad the quantity of a term's children in the quantity of each term's "count" object variable. Default false. */ - padCounts?: InputMaybe; + padCounts?: InputMaybe /** Parent term ID to retrieve direct-child terms of. Default empty. */ - parent?: InputMaybe; + parent?: InputMaybe /** Search criteria to match terms. Will be SQL-formatted with wildcards before and after. Default empty. */ - search?: InputMaybe; + search?: InputMaybe /** Array of slugs to return term(s) for. Default empty. */ - slug?: InputMaybe>>; + slug?: InputMaybe>> /** Array of term taxonomy IDs, to match when querying terms. */ - termTaxonomId?: InputMaybe>>; + termTaxonomId?: InputMaybe>> /** Array of term taxonomy IDs, to match when querying terms. */ - termTaxonomyId?: InputMaybe>>; + termTaxonomyId?: InputMaybe>> /** Whether to prime meta caches for matched terms. Default true. */ - updateTermMetaCache?: InputMaybe; -}; + updateTermMetaCache?: InputMaybe +} /** Connection between the RootQuery type and the Taxonomy type */ -export type RootQueryToTaxonomyConnection = Connection & TaxonomyConnection & { - __typename?: 'RootQueryToTaxonomyConnection'; - /** Edges for the RootQueryToTaxonomyConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: RootQueryToTaxonomyConnectionPageInfo; -}; +export type RootQueryToTaxonomyConnection = Connection & + TaxonomyConnection & { + __typename?: 'RootQueryToTaxonomyConnection' + /** Edges for the RootQueryToTaxonomyConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: RootQueryToTaxonomyConnectionPageInfo + } /** An edge in a connection */ -export type RootQueryToTaxonomyConnectionEdge = Edge & TaxonomyConnectionEdge & { - __typename?: 'RootQueryToTaxonomyConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: Taxonomy; -}; +export type RootQueryToTaxonomyConnectionEdge = Edge & + TaxonomyConnectionEdge & { + __typename?: 'RootQueryToTaxonomyConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: Taxonomy + } /** Page Info on the "RootQueryToTaxonomyConnection" */ -export type RootQueryToTaxonomyConnectionPageInfo = PageInfo & TaxonomyConnectionPageInfo & WpPageInfo & { - __typename?: 'RootQueryToTaxonomyConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type RootQueryToTaxonomyConnectionPageInfo = PageInfo & + TaxonomyConnectionPageInfo & + WpPageInfo & { + __typename?: 'RootQueryToTaxonomyConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Connection between the RootQuery type and the TermNode type */ -export type RootQueryToTermNodeConnection = Connection & TermNodeConnection & { - __typename?: 'RootQueryToTermNodeConnection'; - /** Edges for the RootQueryToTermNodeConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: RootQueryToTermNodeConnectionPageInfo; -}; +export type RootQueryToTermNodeConnection = Connection & + TermNodeConnection & { + __typename?: 'RootQueryToTermNodeConnection' + /** Edges for the RootQueryToTermNodeConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: RootQueryToTermNodeConnectionPageInfo + } /** An edge in a connection */ -export type RootQueryToTermNodeConnectionEdge = Edge & TermNodeConnectionEdge & { - __typename?: 'RootQueryToTermNodeConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: TermNode; -}; +export type RootQueryToTermNodeConnectionEdge = Edge & + TermNodeConnectionEdge & { + __typename?: 'RootQueryToTermNodeConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: TermNode + } /** Page Info on the "RootQueryToTermNodeConnection" */ -export type RootQueryToTermNodeConnectionPageInfo = PageInfo & TermNodeConnectionPageInfo & WpPageInfo & { - __typename?: 'RootQueryToTermNodeConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type RootQueryToTermNodeConnectionPageInfo = PageInfo & + TermNodeConnectionPageInfo & + WpPageInfo & { + __typename?: 'RootQueryToTermNodeConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the RootQueryToTermNodeConnection connection */ export type RootQueryToTermNodeConnectionWhereArgs = { /** Unique cache key to be produced when this query is stored in an object cache. Default is 'core'. */ - cacheDomain?: InputMaybe; + cacheDomain?: InputMaybe /** Term ID to retrieve child terms of. If multiple taxonomies are passed, $child_of is ignored. Default 0. */ - childOf?: InputMaybe; + childOf?: InputMaybe /** True to limit results to terms that have no children. This parameter has no effect on non-hierarchical taxonomies. Default false. */ - childless?: InputMaybe; + childless?: InputMaybe /** Retrieve terms where the description is LIKE the input value. Default empty. */ - descriptionLike?: InputMaybe; + descriptionLike?: InputMaybe /** Array of term ids to exclude. If $include is non-empty, $exclude is ignored. Default empty array. */ - exclude?: InputMaybe>>; + exclude?: InputMaybe>> /** Array of term ids to exclude along with all of their descendant terms. If $include is non-empty, $exclude_tree is ignored. Default empty array. */ - excludeTree?: InputMaybe>>; + excludeTree?: InputMaybe>> /** Whether to hide terms not assigned to any posts. Accepts true or false. Default false */ - hideEmpty?: InputMaybe; + hideEmpty?: InputMaybe /** Whether to include terms that have non-empty descendants (even if $hide_empty is set to true). Default true. */ - hierarchical?: InputMaybe; + hierarchical?: InputMaybe /** Array of term ids to include. Default empty array. */ - include?: InputMaybe>>; + include?: InputMaybe>> /** Array of names to return term(s) for. Default empty. */ - name?: InputMaybe>>; + name?: InputMaybe>> /** Retrieve terms where the name is LIKE the input value. Default empty. */ - nameLike?: InputMaybe; + nameLike?: InputMaybe /** Array of object IDs. Results will be limited to terms associated with these objects. */ - objectIds?: InputMaybe>>; + objectIds?: InputMaybe>> /** Direction the connection should be ordered in */ - order?: InputMaybe; + order?: InputMaybe /** Field(s) to order terms by. Defaults to 'name'. */ - orderby?: InputMaybe; + orderby?: InputMaybe /** Whether to pad the quantity of a term's children in the quantity of each term's "count" object variable. Default false. */ - padCounts?: InputMaybe; + padCounts?: InputMaybe /** Parent term ID to retrieve direct-child terms of. Default empty. */ - parent?: InputMaybe; + parent?: InputMaybe /** Search criteria to match terms. Will be SQL-formatted with wildcards before and after. Default empty. */ - search?: InputMaybe; + search?: InputMaybe /** Array of slugs to return term(s) for. Default empty. */ - slug?: InputMaybe>>; + slug?: InputMaybe>> /** The Taxonomy to filter terms by */ - taxonomies?: InputMaybe>>; + taxonomies?: InputMaybe>> /** Array of term taxonomy IDs, to match when querying terms. */ - termTaxonomId?: InputMaybe>>; + termTaxonomId?: InputMaybe>> /** Array of term taxonomy IDs, to match when querying terms. */ - termTaxonomyId?: InputMaybe>>; + termTaxonomyId?: InputMaybe>> /** Whether to prime meta caches for matched terms. Default true. */ - updateTermMetaCache?: InputMaybe; -}; + updateTermMetaCache?: InputMaybe +} /** Connection between the RootQuery type and the Theme type */ -export type RootQueryToThemeConnection = Connection & ThemeConnection & { - __typename?: 'RootQueryToThemeConnection'; - /** Edges for the RootQueryToThemeConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: RootQueryToThemeConnectionPageInfo; -}; +export type RootQueryToThemeConnection = Connection & + ThemeConnection & { + __typename?: 'RootQueryToThemeConnection' + /** Edges for the RootQueryToThemeConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: RootQueryToThemeConnectionPageInfo + } /** An edge in a connection */ -export type RootQueryToThemeConnectionEdge = Edge & ThemeConnectionEdge & { - __typename?: 'RootQueryToThemeConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: Theme; -}; +export type RootQueryToThemeConnectionEdge = Edge & + ThemeConnectionEdge & { + __typename?: 'RootQueryToThemeConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: Theme + } /** Page Info on the "RootQueryToThemeConnection" */ -export type RootQueryToThemeConnectionPageInfo = PageInfo & ThemeConnectionPageInfo & WpPageInfo & { - __typename?: 'RootQueryToThemeConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type RootQueryToThemeConnectionPageInfo = PageInfo & + ThemeConnectionPageInfo & + WpPageInfo & { + __typename?: 'RootQueryToThemeConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Connection between the RootQuery type and the User type */ -export type RootQueryToUserConnection = Connection & UserConnection & { - __typename?: 'RootQueryToUserConnection'; - /** Edges for the RootQueryToUserConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: RootQueryToUserConnectionPageInfo; -}; +export type RootQueryToUserConnection = Connection & + UserConnection & { + __typename?: 'RootQueryToUserConnection' + /** Edges for the RootQueryToUserConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: RootQueryToUserConnectionPageInfo + } /** An edge in a connection */ -export type RootQueryToUserConnectionEdge = Edge & UserConnectionEdge & { - __typename?: 'RootQueryToUserConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: User; -}; +export type RootQueryToUserConnectionEdge = Edge & + UserConnectionEdge & { + __typename?: 'RootQueryToUserConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: User + } /** Page Info on the "RootQueryToUserConnection" */ -export type RootQueryToUserConnectionPageInfo = PageInfo & UserConnectionPageInfo & WpPageInfo & { - __typename?: 'RootQueryToUserConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type RootQueryToUserConnectionPageInfo = PageInfo & + UserConnectionPageInfo & + WpPageInfo & { + __typename?: 'RootQueryToUserConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the RootQueryToUserConnection connection */ export type RootQueryToUserConnectionWhereArgs = { /** Array of userIds to exclude. */ - exclude?: InputMaybe>>; + exclude?: InputMaybe>> /** Pass an array of post types to filter results to users who have published posts in those post types. */ - hasPublishedPosts?: InputMaybe>>; + hasPublishedPosts?: InputMaybe>> /** Array of userIds to include. */ - include?: InputMaybe>>; + include?: InputMaybe>> /** The user login. */ - login?: InputMaybe; + login?: InputMaybe /** An array of logins to include. Users matching one of these logins will be included in results. */ - loginIn?: InputMaybe>>; + loginIn?: InputMaybe>> /** An array of logins to exclude. Users matching one of these logins will not be included in results. */ - loginNotIn?: InputMaybe>>; + loginNotIn?: InputMaybe>> /** The user nicename. */ - nicename?: InputMaybe; + nicename?: InputMaybe /** An array of nicenames to include. Users matching one of these nicenames will be included in results. */ - nicenameIn?: InputMaybe>>; + nicenameIn?: InputMaybe>> /** An array of nicenames to exclude. Users matching one of these nicenames will not be included in results. */ - nicenameNotIn?: InputMaybe>>; + nicenameNotIn?: InputMaybe>> /** What parameter to use to order the objects by. */ - orderby?: InputMaybe>>; + orderby?: InputMaybe>> /** An array of role names that users must match to be included in results. Note that this is an inclusive list: users must match *each* role. */ - role?: InputMaybe; + role?: InputMaybe /** An array of role names. Matched users must have at least one of these roles. */ - roleIn?: InputMaybe>>; + roleIn?: InputMaybe>> /** An array of role names to exclude. Users matching one or more of these roles will not be included in results. */ - roleNotIn?: InputMaybe>>; + roleNotIn?: InputMaybe>> /** Search keyword. Searches for possible string matches on columns. When "searchColumns" is left empty, it tries to determine which column to search in based on search string. */ - search?: InputMaybe; + search?: InputMaybe /** Array of column names to be searched. Accepts 'ID', 'login', 'nicename', 'email', 'url'. */ - searchColumns?: InputMaybe>>; -}; + searchColumns?: InputMaybe>> +} /** Connection between the RootQuery type and the UserRole type */ -export type RootQueryToUserRoleConnection = Connection & UserRoleConnection & { - __typename?: 'RootQueryToUserRoleConnection'; - /** Edges for the RootQueryToUserRoleConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: RootQueryToUserRoleConnectionPageInfo; -}; +export type RootQueryToUserRoleConnection = Connection & + UserRoleConnection & { + __typename?: 'RootQueryToUserRoleConnection' + /** Edges for the RootQueryToUserRoleConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: RootQueryToUserRoleConnectionPageInfo + } /** An edge in a connection */ -export type RootQueryToUserRoleConnectionEdge = Edge & UserRoleConnectionEdge & { - __typename?: 'RootQueryToUserRoleConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: UserRole; -}; +export type RootQueryToUserRoleConnectionEdge = Edge & + UserRoleConnectionEdge & { + __typename?: 'RootQueryToUserRoleConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: UserRole + } /** Page Info on the "RootQueryToUserRoleConnection" */ -export type RootQueryToUserRoleConnectionPageInfo = PageInfo & UserRoleConnectionPageInfo & WpPageInfo & { - __typename?: 'RootQueryToUserRoleConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type RootQueryToUserRoleConnectionPageInfo = PageInfo & + UserRoleConnectionPageInfo & + WpPageInfo & { + __typename?: 'RootQueryToUserRoleConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** The Yoast SEO breadcrumb config */ export type SeoBreadcrumbs = { - __typename?: 'SEOBreadcrumbs'; - archivePrefix?: Maybe; - boldLast?: Maybe; - enabled?: Maybe; - homeText?: Maybe; - notFoundText?: Maybe; - prefix?: Maybe; - searchPrefix?: Maybe; - separator?: Maybe; - showBlogPage?: Maybe; -}; + __typename?: 'SEOBreadcrumbs' + archivePrefix?: Maybe + boldLast?: Maybe + enabled?: Maybe + homeText?: Maybe + notFoundText?: Maybe + prefix?: Maybe + searchPrefix?: Maybe + separator?: Maybe + showBlogPage?: Maybe +} /** Types of cards */ export enum SeoCardType { Summary = 'summary', - SummaryLargeImage = 'summary_large_image' + SummaryLargeImage = 'summary_large_image', } /** The Yoast SEO site level configuration data */ export type SeoConfig = { - __typename?: 'SEOConfig'; - breadcrumbs?: Maybe; - contentTypes?: Maybe; - meta?: Maybe; - openGraph?: Maybe; - redirects?: Maybe>>; - schema?: Maybe; - social?: Maybe; - webmaster?: Maybe; -}; + __typename?: 'SEOConfig' + breadcrumbs?: Maybe + contentTypes?: Maybe + meta?: Maybe + openGraph?: Maybe + redirects?: Maybe>> + schema?: Maybe + social?: Maybe + webmaster?: Maybe +} /** The Yoast SEO search appearance content types fields */ export type SeoContentType = { - __typename?: 'SEOContentType'; - archive?: Maybe; - metaDesc?: Maybe; - metaRobotsNoindex?: Maybe; - schema?: Maybe; - schemaType?: Maybe; - title?: Maybe; -}; + __typename?: 'SEOContentType' + archive?: Maybe + metaDesc?: Maybe + metaRobotsNoindex?: Maybe + schema?: Maybe + schemaType?: Maybe + title?: Maybe +} /** The Yoast SEO search appearance content types fields */ export type SeoContentTypeArchive = { - __typename?: 'SEOContentTypeArchive'; - archiveLink?: Maybe; - breadcrumbTitle?: Maybe; - fullHead?: Maybe; - hasArchive?: Maybe; - metaDesc?: Maybe; - metaRobotsFollow?: Maybe; - metaRobotsIndex?: Maybe; - metaRobotsNofollow?: Maybe; - metaRobotsNoindex?: Maybe; - title?: Maybe; -}; + __typename?: 'SEOContentTypeArchive' + archiveLink?: Maybe + breadcrumbTitle?: Maybe + fullHead?: Maybe + hasArchive?: Maybe + metaDesc?: Maybe + metaRobotsFollow?: Maybe + metaRobotsIndex?: Maybe + metaRobotsNofollow?: Maybe + metaRobotsNoindex?: Maybe + title?: Maybe +} /** The Yoast SEO search appearance content types */ export type SeoContentTypes = { - __typename?: 'SEOContentTypes'; - aboutItem?: Maybe; - commonFragment?: Maybe; - confidentialityPolicy?: Maybe; - contact?: Maybe; - contactItem?: Maybe; - feedbackItem?: Maybe; - footerItem?: Maybe; - fragment?: Maybe; - heroItem?: Maybe; - main?: Maybe; - mediaItem?: Maybe; - messenger?: Maybe; - navigationItem?: Maybe; - notFound?: Maybe; - page?: Maybe; - post?: Maybe; - privacyPolicyItem?: Maybe; - recruit?: Maybe; - review?: Maybe; - skill?: Maybe; - socialNetwork?: Maybe; -}; + __typename?: 'SEOContentTypes' + aboutItem?: Maybe + commonFragment?: Maybe + confidentialityPolicy?: Maybe + contact?: Maybe + contactItem?: Maybe + feedbackItem?: Maybe + footerItem?: Maybe + fragment?: Maybe + heroItem?: Maybe + main?: Maybe + mediaItem?: Maybe + messenger?: Maybe + navigationItem?: Maybe + notFound?: Maybe + page?: Maybe + post?: Maybe + privacyPolicyItem?: Maybe + recruit?: Maybe + review?: Maybe + skill?: Maybe + socialNetwork?: Maybe +} /** The Yoast SEO meta data */ export type SeoGlobalMeta = { - __typename?: 'SEOGlobalMeta'; - author?: Maybe; - config?: Maybe; - date?: Maybe; - homepage?: Maybe; - notFound?: Maybe; -}; + __typename?: 'SEOGlobalMeta' + author?: Maybe + config?: Maybe + date?: Maybe + homepage?: Maybe + notFound?: Maybe +} /** The Yoast SEO meta 404 data */ export type SeoGlobalMeta404 = { - __typename?: 'SEOGlobalMeta404'; - breadcrumb?: Maybe; - title?: Maybe; -}; + __typename?: 'SEOGlobalMeta404' + breadcrumb?: Maybe + title?: Maybe +} /** The Yoast SEO Author data */ export type SeoGlobalMetaAuthor = { - __typename?: 'SEOGlobalMetaAuthor'; - description?: Maybe; - title?: Maybe; -}; + __typename?: 'SEOGlobalMetaAuthor' + description?: Maybe + title?: Maybe +} /** The Yoast SEO meta config data */ export type SeoGlobalMetaConfig = { - __typename?: 'SEOGlobalMetaConfig'; - separator?: Maybe; -}; + __typename?: 'SEOGlobalMetaConfig' + separator?: Maybe +} /** The Yoast SEO Date data */ export type SeoGlobalMetaDate = { - __typename?: 'SEOGlobalMetaDate'; - description?: Maybe; - title?: Maybe; -}; + __typename?: 'SEOGlobalMetaDate' + description?: Maybe + title?: Maybe +} /** The Yoast SEO homepage data */ export type SeoGlobalMetaHome = { - __typename?: 'SEOGlobalMetaHome'; - description?: Maybe; - title?: Maybe; -}; + __typename?: 'SEOGlobalMetaHome' + description?: Maybe + title?: Maybe +} /** The Open Graph data */ export type SeoOpenGraph = { - __typename?: 'SEOOpenGraph'; - defaultImage?: Maybe; - frontPage?: Maybe; -}; + __typename?: 'SEOOpenGraph' + defaultImage?: Maybe + frontPage?: Maybe +} /** The Open Graph Front page data */ export type SeoOpenGraphFrontPage = { - __typename?: 'SEOOpenGraphFrontPage'; - description?: Maybe; - image?: Maybe; - title?: Maybe; -}; + __typename?: 'SEOOpenGraphFrontPage' + description?: Maybe + image?: Maybe + title?: Maybe +} /** The Schema for post type */ export type SeoPageInfoSchema = { - __typename?: 'SEOPageInfoSchema'; - raw?: Maybe; -}; + __typename?: 'SEOPageInfoSchema' + raw?: Maybe +} export type SeoPostTypeBreadcrumbs = { - __typename?: 'SEOPostTypeBreadcrumbs'; - text?: Maybe; - url?: Maybe; -}; + __typename?: 'SEOPostTypeBreadcrumbs' + text?: Maybe + url?: Maybe +} /** The page info SEO details */ export type SeoPostTypePageInfo = { - __typename?: 'SEOPostTypePageInfo'; - schema?: Maybe; -}; + __typename?: 'SEOPostTypePageInfo' + schema?: Maybe +} /** The Schema types */ export type SeoPostTypeSchema = { - __typename?: 'SEOPostTypeSchema'; - articleType?: Maybe>>; - pageType?: Maybe>>; - raw?: Maybe; -}; + __typename?: 'SEOPostTypeSchema' + articleType?: Maybe>> + pageType?: Maybe>> + raw?: Maybe +} /** The Yoast redirect data (Yoast Premium only) */ export type SeoRedirect = { - __typename?: 'SEORedirect'; - format?: Maybe; - origin?: Maybe; - target?: Maybe; - type?: Maybe; -}; + __typename?: 'SEORedirect' + format?: Maybe + origin?: Maybe + target?: Maybe + type?: Maybe +} /** The Yoast SEO schema data */ export type SeoSchema = { - __typename?: 'SEOSchema'; - companyLogo?: Maybe; - companyName?: Maybe; - companyOrPerson?: Maybe; - homeUrl?: Maybe; - inLanguage?: Maybe; - logo?: Maybe; - personLogo?: Maybe; - personName?: Maybe; - siteName?: Maybe; - siteUrl?: Maybe; - wordpressSiteName?: Maybe; -}; + __typename?: 'SEOSchema' + companyLogo?: Maybe + companyName?: Maybe + companyOrPerson?: Maybe + homeUrl?: Maybe + inLanguage?: Maybe + logo?: Maybe + personLogo?: Maybe + personName?: Maybe + siteName?: Maybe + siteUrl?: Maybe + wordpressSiteName?: Maybe +} /** The Yoast SEO Social media links */ export type SeoSocial = { - __typename?: 'SEOSocial'; - facebook?: Maybe; - instagram?: Maybe; - linkedIn?: Maybe; - mySpace?: Maybe; - otherSocials?: Maybe>>; - pinterest?: Maybe; - twitter?: Maybe; - wikipedia?: Maybe; - youTube?: Maybe; -}; + __typename?: 'SEOSocial' + facebook?: Maybe + instagram?: Maybe + linkedIn?: Maybe + mySpace?: Maybe + otherSocials?: Maybe>> + pinterest?: Maybe + twitter?: Maybe + wikipedia?: Maybe + youTube?: Maybe +} export type SeoSocialFacebook = { - __typename?: 'SEOSocialFacebook'; - defaultImage?: Maybe; - url?: Maybe; -}; + __typename?: 'SEOSocialFacebook' + defaultImage?: Maybe + url?: Maybe +} export type SeoSocialInstagram = { - __typename?: 'SEOSocialInstagram'; - url?: Maybe; -}; + __typename?: 'SEOSocialInstagram' + url?: Maybe +} export type SeoSocialLinkedIn = { - __typename?: 'SEOSocialLinkedIn'; - url?: Maybe; -}; + __typename?: 'SEOSocialLinkedIn' + url?: Maybe +} export type SeoSocialMySpace = { - __typename?: 'SEOSocialMySpace'; - url?: Maybe; -}; + __typename?: 'SEOSocialMySpace' + url?: Maybe +} export type SeoSocialPinterest = { - __typename?: 'SEOSocialPinterest'; - metaTag?: Maybe; - url?: Maybe; -}; + __typename?: 'SEOSocialPinterest' + metaTag?: Maybe + url?: Maybe +} export type SeoSocialTwitter = { - __typename?: 'SEOSocialTwitter'; - cardType?: Maybe; - username?: Maybe; -}; + __typename?: 'SEOSocialTwitter' + cardType?: Maybe + username?: Maybe +} export type SeoSocialWikipedia = { - __typename?: 'SEOSocialWikipedia'; - url?: Maybe; -}; + __typename?: 'SEOSocialWikipedia' + url?: Maybe +} export type SeoSocialYoutube = { - __typename?: 'SEOSocialYoutube'; - url?: Maybe; -}; + __typename?: 'SEOSocialYoutube' + url?: Maybe +} /** The Schema types for Taxonomy */ export type SeoTaxonomySchema = { - __typename?: 'SEOTaxonomySchema'; - raw?: Maybe; -}; + __typename?: 'SEOTaxonomySchema' + raw?: Maybe +} export type SeoUser = { - __typename?: 'SEOUser'; - breadcrumbTitle?: Maybe; - canonical?: Maybe; - fullHead?: Maybe; - language?: Maybe; - metaDesc?: Maybe; - metaRobotsNofollow?: Maybe; - metaRobotsNoindex?: Maybe; - opengraphDescription?: Maybe; - opengraphImage?: Maybe; - opengraphTitle?: Maybe; - region?: Maybe; - schema?: Maybe; - social?: Maybe; - title?: Maybe; - twitterDescription?: Maybe; - twitterImage?: Maybe; - twitterTitle?: Maybe; -}; + __typename?: 'SEOUser' + breadcrumbTitle?: Maybe + canonical?: Maybe + fullHead?: Maybe + language?: Maybe + metaDesc?: Maybe + metaRobotsNofollow?: Maybe + metaRobotsNoindex?: Maybe + opengraphDescription?: Maybe + opengraphImage?: Maybe + opengraphTitle?: Maybe + region?: Maybe + schema?: Maybe + social?: Maybe + title?: Maybe + twitterDescription?: Maybe + twitterImage?: Maybe + twitterTitle?: Maybe +} /** The Schema types for User */ export type SeoUserSchema = { - __typename?: 'SEOUserSchema'; - articleType?: Maybe>>; - pageType?: Maybe>>; - raw?: Maybe; -}; + __typename?: 'SEOUserSchema' + articleType?: Maybe>> + pageType?: Maybe>> + raw?: Maybe +} export type SeoUserSocial = { - __typename?: 'SEOUserSocial'; - facebook?: Maybe; - instagram?: Maybe; - linkedIn?: Maybe; - mySpace?: Maybe; - pinterest?: Maybe; - soundCloud?: Maybe; - twitter?: Maybe; - wikipedia?: Maybe; - youTube?: Maybe; -}; + __typename?: 'SEOUserSocial' + facebook?: Maybe + instagram?: Maybe + linkedIn?: Maybe + mySpace?: Maybe + pinterest?: Maybe + soundCloud?: Maybe + twitter?: Maybe + wikipedia?: Maybe + youTube?: Maybe +} /** The Yoast SEO webmaster fields */ export type SeoWebmaster = { - __typename?: 'SEOWebmaster'; - baiduVerify?: Maybe; - googleVerify?: Maybe; - msVerify?: Maybe; - yandexVerify?: Maybe; -}; + __typename?: 'SEOWebmaster' + baiduVerify?: Maybe + googleVerify?: Maybe + msVerify?: Maybe + yandexVerify?: Maybe +} /** The strategy to use when loading the script */ export enum ScriptLoadingStrategyEnum { /** Use the script `async` attribute */ Async = 'ASYNC', /** Use the script `defer` attribute */ - Defer = 'DEFER' + Defer = 'DEFER', } /** Input for the sendPasswordResetEmail mutation. */ export type SendPasswordResetEmailInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** A string that contains the user's username or email address. */ - username: Scalars['String']['input']; -}; + username: Scalars['String']['input'] +} /** The payload for the sendPasswordResetEmail mutation. */ export type SendPasswordResetEmailPayload = { - __typename?: 'SendPasswordResetEmailPayload'; + __typename?: 'SendPasswordResetEmailPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** Whether the mutation completed successfully. This does NOT necessarily mean that an email was sent. */ - success?: Maybe; + success?: Maybe /** * The user that the password reset email was sent to * @deprecated This field will be removed in a future version of WPGraphQL */ - user?: Maybe; -}; + user?: Maybe +} /** All of the registered settings */ export type Settings = { - __typename?: 'Settings'; + __typename?: 'Settings' /** Settings of the the string Settings Group */ - discussionSettingsDefaultCommentStatus?: Maybe; + discussionSettingsDefaultCommentStatus?: Maybe /** Settings of the the string Settings Group */ - discussionSettingsDefaultPingStatus?: Maybe; + discussionSettingsDefaultPingStatus?: Maybe /** Settings of the the string Settings Group */ - generalSettingsDateFormat?: Maybe; + generalSettingsDateFormat?: Maybe /** Settings of the the string Settings Group */ - generalSettingsDescription?: Maybe; + generalSettingsDescription?: Maybe /** Settings of the the string Settings Group */ - generalSettingsEmail?: Maybe; + generalSettingsEmail?: Maybe /** Settings of the the string Settings Group */ - generalSettingsLanguage?: Maybe; + generalSettingsLanguage?: Maybe /** Settings of the the integer Settings Group */ - generalSettingsStartOfWeek?: Maybe; + generalSettingsStartOfWeek?: Maybe /** Settings of the the string Settings Group */ - generalSettingsTimeFormat?: Maybe; + generalSettingsTimeFormat?: Maybe /** Settings of the the string Settings Group */ - generalSettingsTimezone?: Maybe; + generalSettingsTimezone?: Maybe /** Settings of the the string Settings Group */ - generalSettingsTitle?: Maybe; + generalSettingsTitle?: Maybe /** Settings of the the string Settings Group */ - generalSettingsUrl?: Maybe; + generalSettingsUrl?: Maybe /** Settings of the the integer Settings Group */ - readingSettingsPageForPosts?: Maybe; + readingSettingsPageForPosts?: Maybe /** Settings of the the integer Settings Group */ - readingSettingsPageOnFront?: Maybe; + readingSettingsPageOnFront?: Maybe /** Settings of the the integer Settings Group */ - readingSettingsPostsPerPage?: Maybe; + readingSettingsPostsPerPage?: Maybe /** Settings of the the string Settings Group */ - readingSettingsShowOnFront?: Maybe; + readingSettingsShowOnFront?: Maybe /** Settings of the the integer Settings Group */ - writingSettingsDefaultCategory?: Maybe; + writingSettingsDefaultCategory?: Maybe /** Settings of the the string Settings Group */ - writingSettingsDefaultPostFormat?: Maybe; + writingSettingsDefaultPostFormat?: Maybe /** Settings of the the boolean Settings Group */ - writingSettingsUseSmilies?: Maybe; -}; + writingSettingsUseSmilies?: Maybe +} /** The Skill type */ -export type Skill = ContentNode & DatabaseIdentifier & HierarchicalContentNode & HierarchicalNode & MenuItemLinkable & Node & NodeWithContentEditor & NodeWithFeaturedImage & NodeWithPageAttributes & NodeWithTemplate & NodeWithTitle & Previewable & UniformResourceIdentifiable & { - __typename?: 'Skill'; - /** Returns ancestors of the node. Default ordered as lowest (closest to the child) to highest (closest to the root). */ - ancestors?: Maybe; - /** Connection between the HierarchicalContentNode type and the ContentNode type */ - children?: Maybe; - /** The content of the post. */ - content?: Maybe; - /** Connection between the ContentNode type and the ContentType type */ - contentType?: Maybe; - /** The name of the Content Type the node belongs to */ - contentTypeName: Scalars['String']['output']; - /** The unique identifier stored in the database */ - databaseId: Scalars['Int']['output']; - /** Post publishing date. */ - date?: Maybe; - /** The publishing date set in GMT. */ - dateGmt?: Maybe; - /** The desired slug of the post */ - desiredSlug?: Maybe; - /** If a user has edited the node within the past 15 seconds, this will return the user that last edited. Null if the edit lock doesn't exist or is greater than 15 seconds */ - editingLockedBy?: Maybe; - /** The RSS enclosure for the object */ - enclosure?: Maybe; - /** Connection between the ContentNode type and the EnqueuedScript type */ - enqueuedScripts?: Maybe; - /** Connection between the ContentNode type and the EnqueuedStylesheet type */ - enqueuedStylesheets?: Maybe; - /** Connection between the NodeWithFeaturedImage type and the MediaItem type */ - featuredImage?: Maybe; - /** The database identifier for the featured image node assigned to the content node */ - featuredImageDatabaseId?: Maybe; - /** Globally unique ID of the featured image assigned to the node */ - featuredImageId?: Maybe; - /** The global unique identifier for this post. This currently matches the value stored in WP_Post->guid and the guid column in the "post_objects" database table. */ - guid?: Maybe; - /** Whether the skill object is password protected. */ - hasPassword?: Maybe; - /** The globally unique identifier of the skill object. */ - id: Scalars['ID']['output']; - /** Whether the node is a Comment */ - isComment: Scalars['Boolean']['output']; - /** Whether the node is a Content Node */ - isContentNode: Scalars['Boolean']['output']; - /** Whether the node represents the front page. */ - isFrontPage: Scalars['Boolean']['output']; - /** Whether the node represents the blog page. */ - isPostsPage: Scalars['Boolean']['output']; - /** Whether the object is a node in the preview state */ - isPreview?: Maybe; - /** Whether the object is restricted from the current viewer */ - isRestricted?: Maybe; - /** Whether the node is a Term */ - isTermNode: Scalars['Boolean']['output']; - /** Polylang language */ - language?: Maybe; - /** The user that most recently edited the node */ - lastEditedBy?: Maybe; - /** The permalink of the post */ - link?: Maybe; - /** A field used for ordering posts. This is typically used with nav menu items or for special ordering of hierarchical content types. */ - menuOrder?: Maybe; - /** The local modified time for a post. If a post was recently updated the modified field will change to match the corresponding time. */ - modified?: Maybe; - /** The GMT modified time for a post. If a post was recently updated the modified field will change to match the corresponding time in GMT. */ - modifiedGmt?: Maybe; - /** The parent of the node. The parent object can be of various types */ - parent?: Maybe; - /** Database id of the parent node */ - parentDatabaseId?: Maybe; - /** The globally unique identifier of the parent node. */ - parentId?: Maybe; - /** The password for the skill object. */ - password?: Maybe; - /** Connection between the Skill type and the Skill type */ - preview?: Maybe; - /** The database id of the preview node */ - previewRevisionDatabaseId?: Maybe; - /** Whether the object is a node in the preview state */ - previewRevisionId?: Maybe; - /** The Yoast SEO data of the ContentNode */ - seo?: Maybe; - /** Connection between the Skill type and the SkillCategory type */ - skillCategories?: Maybe; - /** - * The id field matches the WP_Post->ID field. - * @deprecated Deprecated in favor of the databaseId field - */ - skillId: Scalars['Int']['output']; - /** The uri slug for the post. This is equivalent to the WP_Post->post_name field and the post_name column in the database for the "post_objects" table. */ - slug?: Maybe; - /** The current status of the object */ - status?: Maybe; - /** The template assigned to a node of content */ - template?: Maybe; - /** Connection between the Skill type and the TermNode type */ - terms?: Maybe; - /** The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made. */ - title?: Maybe; - /** Get specific translation version of this object */ - translation?: Maybe; - /** List all translated versions of this post */ - translations?: Maybe>>; - /** The unique resource identifier path */ - uri?: Maybe; -}; - +export type Skill = ContentNode & + DatabaseIdentifier & + HierarchicalContentNode & + HierarchicalNode & + MenuItemLinkable & + Node & + NodeWithContentEditor & + NodeWithFeaturedImage & + NodeWithPageAttributes & + NodeWithTemplate & + NodeWithTitle & + Previewable & + UniformResourceIdentifiable & { + __typename?: 'Skill' + /** Returns ancestors of the node. Default ordered as lowest (closest to the child) to highest (closest to the root). */ + ancestors?: Maybe + /** Connection between the HierarchicalContentNode type and the ContentNode type */ + children?: Maybe + /** The content of the post. */ + content?: Maybe + /** Connection between the ContentNode type and the ContentType type */ + contentType?: Maybe + /** The name of the Content Type the node belongs to */ + contentTypeName: Scalars['String']['output'] + /** The unique identifier stored in the database */ + databaseId: Scalars['Int']['output'] + /** Post publishing date. */ + date?: Maybe + /** The publishing date set in GMT. */ + dateGmt?: Maybe + /** The desired slug of the post */ + desiredSlug?: Maybe + /** If a user has edited the node within the past 15 seconds, this will return the user that last edited. Null if the edit lock doesn't exist or is greater than 15 seconds */ + editingLockedBy?: Maybe + /** The RSS enclosure for the object */ + enclosure?: Maybe + /** Connection between the ContentNode type and the EnqueuedScript type */ + enqueuedScripts?: Maybe + /** Connection between the ContentNode type and the EnqueuedStylesheet type */ + enqueuedStylesheets?: Maybe + /** Connection between the NodeWithFeaturedImage type and the MediaItem type */ + featuredImage?: Maybe + /** The database identifier for the featured image node assigned to the content node */ + featuredImageDatabaseId?: Maybe + /** Globally unique ID of the featured image assigned to the node */ + featuredImageId?: Maybe + /** The global unique identifier for this post. This currently matches the value stored in WP_Post->guid and the guid column in the "post_objects" database table. */ + guid?: Maybe + /** Whether the skill object is password protected. */ + hasPassword?: Maybe + /** The globally unique identifier of the skill object. */ + id: Scalars['ID']['output'] + /** Whether the node is a Comment */ + isComment: Scalars['Boolean']['output'] + /** Whether the node is a Content Node */ + isContentNode: Scalars['Boolean']['output'] + /** Whether the node represents the front page. */ + isFrontPage: Scalars['Boolean']['output'] + /** Whether the node represents the blog page. */ + isPostsPage: Scalars['Boolean']['output'] + /** Whether the object is a node in the preview state */ + isPreview?: Maybe + /** Whether the object is restricted from the current viewer */ + isRestricted?: Maybe + /** Whether the node is a Term */ + isTermNode: Scalars['Boolean']['output'] + /** Polylang language */ + language?: Maybe + /** The user that most recently edited the node */ + lastEditedBy?: Maybe + /** The permalink of the post */ + link?: Maybe + /** A field used for ordering posts. This is typically used with nav menu items or for special ordering of hierarchical content types. */ + menuOrder?: Maybe + /** The local modified time for a post. If a post was recently updated the modified field will change to match the corresponding time. */ + modified?: Maybe + /** The GMT modified time for a post. If a post was recently updated the modified field will change to match the corresponding time in GMT. */ + modifiedGmt?: Maybe + /** The parent of the node. The parent object can be of various types */ + parent?: Maybe + /** Database id of the parent node */ + parentDatabaseId?: Maybe + /** The globally unique identifier of the parent node. */ + parentId?: Maybe + /** The password for the skill object. */ + password?: Maybe + /** Connection between the Skill type and the Skill type */ + preview?: Maybe + /** The database id of the preview node */ + previewRevisionDatabaseId?: Maybe + /** Whether the object is a node in the preview state */ + previewRevisionId?: Maybe + /** The Yoast SEO data of the ContentNode */ + seo?: Maybe + /** Connection between the Skill type and the SkillCategory type */ + skillCategories?: Maybe + /** + * The id field matches the WP_Post->ID field. + * @deprecated Deprecated in favor of the databaseId field + */ + skillId: Scalars['Int']['output'] + /** The uri slug for the post. This is equivalent to the WP_Post->post_name field and the post_name column in the database for the "post_objects" table. */ + slug?: Maybe + /** The current status of the object */ + status?: Maybe + /** The template assigned to a node of content */ + template?: Maybe + /** Connection between the Skill type and the TermNode type */ + terms?: Maybe + /** The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made. */ + title?: Maybe + /** Get specific translation version of this object */ + translation?: Maybe + /** List all translated versions of this post */ + translations?: Maybe>> + /** The unique resource identifier path */ + uri?: Maybe + } /** The Skill type */ export type SkillAncestorsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The Skill type */ export type SkillChildrenArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The Skill type */ export type SkillContentArgs = { - format?: InputMaybe; -}; - + format?: InputMaybe +} /** The Skill type */ export type SkillEnqueuedScriptsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** The Skill type */ export type SkillEnqueuedStylesheetsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** The Skill type */ export type SkillSkillCategoriesArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The Skill type */ export type SkillTermsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The Skill type */ export type SkillTitleArgs = { - format?: InputMaybe; -}; - + format?: InputMaybe +} /** The Skill type */ export type SkillTranslationArgs = { - language: LanguageCodeEnum; -}; + language: LanguageCodeEnum +} /** The "SkillAddons" Field Group. Added to the Schema by "WPGraphQL for ACF". */ -export type SkillAddons = AcfFieldGroup & AcfFieldGroupFields & SkillAddons_Fields & { - __typename?: 'SkillAddons'; - /** - * The name of the field group - * @deprecated Use __typename instead - */ - fieldGroupName?: Maybe; - /** Field of the "image" Field Type added to the schema as part of the "SkillAddons" Field Group */ - icon?: Maybe; -}; +export type SkillAddons = AcfFieldGroup & + AcfFieldGroupFields & + SkillAddons_Fields & { + __typename?: 'SkillAddons' + /** + * The name of the field group + * @deprecated Use __typename instead + */ + fieldGroupName?: Maybe + /** Field of the "image" Field Type added to the schema as part of the "SkillAddons" Field Group */ + icon?: Maybe + } /** Interface representing fields of the ACF "SkillAddons" Field Group */ export type SkillAddons_Fields = { @@ -16895,179 +17198,179 @@ export type SkillAddons_Fields = { * The name of the field group * @deprecated Use __typename instead */ - fieldGroupName?: Maybe; + fieldGroupName?: Maybe /** Field of the "image" Field Type added to the schema as part of the "SkillAddons" Field Group */ - icon?: Maybe; -}; + icon?: Maybe +} /** The SkillCategory type */ -export type SkillCategory = DatabaseIdentifier & HierarchicalNode & HierarchicalTermNode & MenuItemLinkable & Node & TermNode & UniformResourceIdentifiable & WithAcfSkillAddons & { - __typename?: 'SkillCategory'; - /** The ancestors of the node. Default ordered as lowest (closest to the child) to highest (closest to the root). */ - ancestors?: Maybe; - /** Connection between the SkillCategory type and its children SkillCategories. */ - children?: Maybe; - /** Connection between the SkillCategory type and the ContentNode type */ - contentNodes?: Maybe; - /** The number of objects connected to the object */ - count?: Maybe; - /** The unique identifier stored in the database */ - databaseId: Scalars['Int']['output']; - /** The description of the object */ - description?: Maybe; - /** Connection between the TermNode type and the EnqueuedScript type */ - enqueuedScripts?: Maybe; - /** Connection between the TermNode type and the EnqueuedStylesheet type */ - enqueuedStylesheets?: Maybe; - /** The globally unique ID for the object */ - id: Scalars['ID']['output']; - /** Whether the node is a Comment */ - isComment: Scalars['Boolean']['output']; - /** Whether the node is a Content Node */ - isContentNode: Scalars['Boolean']['output']; - /** Whether the node represents the front page. */ - isFrontPage: Scalars['Boolean']['output']; - /** Whether the node represents the blog page. */ - isPostsPage: Scalars['Boolean']['output']; - /** Whether the object is restricted from the current viewer */ - isRestricted?: Maybe; - /** Whether the node is a Term */ - isTermNode: Scalars['Boolean']['output']; - /** List available translations for this post */ - language?: Maybe; - /** The link to the term */ - link?: Maybe; - /** The human friendly name of the object. */ - name?: Maybe; - /** Connection between the SkillCategory type and its parent SkillCategory. */ - parent?: Maybe; - /** Database id of the parent node */ - parentDatabaseId?: Maybe; - /** The globally unique identifier of the parent node. */ - parentId?: Maybe; - /** The Yoast SEO data of the Списки скиллов taxonomy. */ - seo?: Maybe; - /** Fields of the SkillAddons ACF Field Group */ - skillAddons?: Maybe; - /** - * The id field matches the WP_Post->ID field. - * @deprecated Deprecated in favor of databaseId - */ - skillCategoryId?: Maybe; - /** Connection between the SkillCategory type and the Skill type */ - skills?: Maybe; - /** An alphanumeric identifier for the object unique to its type. */ - slug?: Maybe; - /** Connection between the SkillCategory type and the Taxonomy type */ - taxonomy?: Maybe; - /** The name of the taxonomy that the object is associated with */ - taxonomyName?: Maybe; - /** The ID of the term group that this term object belongs to */ - termGroupId?: Maybe; - /** The taxonomy ID that the object is associated with */ - termTaxonomyId?: Maybe; - /** Get specific translation version of this object */ - translation?: Maybe; - /** List all translated versions of this term */ - translations?: Maybe>>; - /** The unique resource identifier path */ - uri?: Maybe; -}; - +export type SkillCategory = DatabaseIdentifier & + HierarchicalNode & + HierarchicalTermNode & + MenuItemLinkable & + Node & + TermNode & + UniformResourceIdentifiable & + WithAcfSkillAddons & { + __typename?: 'SkillCategory' + /** The ancestors of the node. Default ordered as lowest (closest to the child) to highest (closest to the root). */ + ancestors?: Maybe + /** Connection between the SkillCategory type and its children SkillCategories. */ + children?: Maybe + /** Connection between the SkillCategory type and the ContentNode type */ + contentNodes?: Maybe + /** The number of objects connected to the object */ + count?: Maybe + /** The unique identifier stored in the database */ + databaseId: Scalars['Int']['output'] + /** The description of the object */ + description?: Maybe + /** Connection between the TermNode type and the EnqueuedScript type */ + enqueuedScripts?: Maybe + /** Connection between the TermNode type and the EnqueuedStylesheet type */ + enqueuedStylesheets?: Maybe + /** The globally unique ID for the object */ + id: Scalars['ID']['output'] + /** Whether the node is a Comment */ + isComment: Scalars['Boolean']['output'] + /** Whether the node is a Content Node */ + isContentNode: Scalars['Boolean']['output'] + /** Whether the node represents the front page. */ + isFrontPage: Scalars['Boolean']['output'] + /** Whether the node represents the blog page. */ + isPostsPage: Scalars['Boolean']['output'] + /** Whether the object is restricted from the current viewer */ + isRestricted?: Maybe + /** Whether the node is a Term */ + isTermNode: Scalars['Boolean']['output'] + /** List available translations for this post */ + language?: Maybe + /** The link to the term */ + link?: Maybe + /** The human friendly name of the object. */ + name?: Maybe + /** Connection between the SkillCategory type and its parent SkillCategory. */ + parent?: Maybe + /** Database id of the parent node */ + parentDatabaseId?: Maybe + /** The globally unique identifier of the parent node. */ + parentId?: Maybe + /** The Yoast SEO data of the Списки скиллов taxonomy. */ + seo?: Maybe + /** Fields of the SkillAddons ACF Field Group */ + skillAddons?: Maybe + /** + * The id field matches the WP_Post->ID field. + * @deprecated Deprecated in favor of databaseId + */ + skillCategoryId?: Maybe + /** Connection between the SkillCategory type and the Skill type */ + skills?: Maybe + /** An alphanumeric identifier for the object unique to its type. */ + slug?: Maybe + /** Connection between the SkillCategory type and the Taxonomy type */ + taxonomy?: Maybe + /** The name of the taxonomy that the object is associated with */ + taxonomyName?: Maybe + /** The ID of the term group that this term object belongs to */ + termGroupId?: Maybe + /** The taxonomy ID that the object is associated with */ + termTaxonomyId?: Maybe + /** Get specific translation version of this object */ + translation?: Maybe + /** List all translated versions of this term */ + translations?: Maybe>> + /** The unique resource identifier path */ + uri?: Maybe + } /** The SkillCategory type */ export type SkillCategoryAncestorsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** The SkillCategory type */ export type SkillCategoryChildrenArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The SkillCategory type */ export type SkillCategoryContentNodesArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The SkillCategory type */ export type SkillCategoryEnqueuedScriptsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** The SkillCategory type */ export type SkillCategoryEnqueuedStylesheetsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** The SkillCategory type */ export type SkillCategorySkillsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The SkillCategory type */ export type SkillCategoryTranslationArgs = { - language: LanguageCodeEnum; -}; + language: LanguageCodeEnum +} /** Connection to SkillCategory Nodes */ export type SkillCategoryConnection = { /** A list of edges (relational context) between RootQuery and connected SkillCategory Nodes */ - edges: Array; + edges: Array /** A list of connected SkillCategory Nodes */ - nodes: Array; + nodes: Array /** Information about pagination in a connection. */ - pageInfo: SkillCategoryConnectionPageInfo; -}; + pageInfo: SkillCategoryConnectionPageInfo +} /** Edge between a Node and a connected SkillCategory */ export type SkillCategoryConnectionEdge = { /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; + cursor?: Maybe /** The connected SkillCategory Node */ - node: SkillCategory; -}; + node: SkillCategory +} /** Page Info on the connected SkillCategoryConnectionEdge */ export type SkillCategoryConnectionPageInfo = { /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; + endCursor?: Maybe /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; + hasNextPage: Scalars['Boolean']['output'] /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; + hasPreviousPage: Scalars['Boolean']['output'] /** Raw schema for page */ - seo?: Maybe; + seo?: Maybe /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; + startCursor?: Maybe +} /** The Type of Identifier used to fetch a single resource. Default is ID. */ export enum SkillCategoryIdType { @@ -17080,322 +17383,342 @@ export enum SkillCategoryIdType { /** Url friendly name of the node */ Slug = 'SLUG', /** The URI for the node */ - Uri = 'URI' + Uri = 'URI', } /** Connection between the SkillCategory type and the SkillCategory type */ -export type SkillCategoryToAncestorsSkillCategoryConnection = Connection & SkillCategoryConnection & { - __typename?: 'SkillCategoryToAncestorsSkillCategoryConnection'; - /** Edges for the SkillCategoryToAncestorsSkillCategoryConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: SkillCategoryToAncestorsSkillCategoryConnectionPageInfo; -}; +export type SkillCategoryToAncestorsSkillCategoryConnection = Connection & + SkillCategoryConnection & { + __typename?: 'SkillCategoryToAncestorsSkillCategoryConnection' + /** Edges for the SkillCategoryToAncestorsSkillCategoryConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: SkillCategoryToAncestorsSkillCategoryConnectionPageInfo + } /** An edge in a connection */ -export type SkillCategoryToAncestorsSkillCategoryConnectionEdge = Edge & SkillCategoryConnectionEdge & { - __typename?: 'SkillCategoryToAncestorsSkillCategoryConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: SkillCategory; -}; +export type SkillCategoryToAncestorsSkillCategoryConnectionEdge = Edge & + SkillCategoryConnectionEdge & { + __typename?: 'SkillCategoryToAncestorsSkillCategoryConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: SkillCategory + } /** Page Info on the "SkillCategoryToAncestorsSkillCategoryConnection" */ -export type SkillCategoryToAncestorsSkillCategoryConnectionPageInfo = PageInfo & SkillCategoryConnectionPageInfo & WpPageInfo & { - __typename?: 'SkillCategoryToAncestorsSkillCategoryConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type SkillCategoryToAncestorsSkillCategoryConnectionPageInfo = PageInfo & + SkillCategoryConnectionPageInfo & + WpPageInfo & { + __typename?: 'SkillCategoryToAncestorsSkillCategoryConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Connection between the SkillCategory type and the ContentNode type */ -export type SkillCategoryToContentNodeConnection = Connection & ContentNodeConnection & { - __typename?: 'SkillCategoryToContentNodeConnection'; - /** Edges for the SkillCategoryToContentNodeConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: SkillCategoryToContentNodeConnectionPageInfo; -}; +export type SkillCategoryToContentNodeConnection = Connection & + ContentNodeConnection & { + __typename?: 'SkillCategoryToContentNodeConnection' + /** Edges for the SkillCategoryToContentNodeConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: SkillCategoryToContentNodeConnectionPageInfo + } /** An edge in a connection */ -export type SkillCategoryToContentNodeConnectionEdge = ContentNodeConnectionEdge & Edge & { - __typename?: 'SkillCategoryToContentNodeConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: ContentNode; -}; +export type SkillCategoryToContentNodeConnectionEdge = ContentNodeConnectionEdge & + Edge & { + __typename?: 'SkillCategoryToContentNodeConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: ContentNode + } /** Page Info on the "SkillCategoryToContentNodeConnection" */ -export type SkillCategoryToContentNodeConnectionPageInfo = ContentNodeConnectionPageInfo & PageInfo & WpPageInfo & { - __typename?: 'SkillCategoryToContentNodeConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type SkillCategoryToContentNodeConnectionPageInfo = ContentNodeConnectionPageInfo & + PageInfo & + WpPageInfo & { + __typename?: 'SkillCategoryToContentNodeConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the SkillCategoryToContentNodeConnection connection */ export type SkillCategoryToContentNodeConnectionWhereArgs = { /** The Types of content to filter */ - contentTypes?: InputMaybe>>; + contentTypes?: InputMaybe>> /** Filter the connection based on dates */ - dateQuery?: InputMaybe; + dateQuery?: InputMaybe /** True for objects with passwords; False for objects without passwords; null for all objects with or without passwords */ - hasPassword?: InputMaybe; + hasPassword?: InputMaybe /** Specific database ID of the object */ - id?: InputMaybe; + id?: InputMaybe /** Array of IDs for the objects to retrieve */ - in?: InputMaybe>>; + in?: InputMaybe>> /** Get objects with a specific mimeType property */ - mimeType?: InputMaybe; + mimeType?: InputMaybe /** Slug / post_name of the object */ - name?: InputMaybe; + name?: InputMaybe /** Specify objects to retrieve. Use slugs */ - nameIn?: InputMaybe>>; + nameIn?: InputMaybe>> /** Specify IDs NOT to retrieve. If this is used in the same query as "in", it will be ignored */ - notIn?: InputMaybe>>; + notIn?: InputMaybe>> /** What parameter to use to order the objects by. */ - orderby?: InputMaybe>>; + orderby?: InputMaybe>> /** Use ID to return only children. Use 0 to return only top-level items */ - parent?: InputMaybe; + parent?: InputMaybe /** Specify objects whose parent is in an array */ - parentIn?: InputMaybe>>; + parentIn?: InputMaybe>> /** Specify posts whose parent is not in an array */ - parentNotIn?: InputMaybe>>; + parentNotIn?: InputMaybe>> /** Show posts with a specific password. */ - password?: InputMaybe; + password?: InputMaybe /** Show Posts based on a keyword search */ - search?: InputMaybe; + search?: InputMaybe /** Retrieve posts where post status is in an array. */ - stati?: InputMaybe>>; + stati?: InputMaybe>> /** Show posts with a specific status. */ - status?: InputMaybe; + status?: InputMaybe /** Title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** Connection between the SkillCategory type and the SkillCategory type */ -export type SkillCategoryToParentSkillCategoryConnectionEdge = Edge & OneToOneConnection & SkillCategoryConnectionEdge & { - __typename?: 'SkillCategoryToParentSkillCategoryConnectionEdge'; - /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; - /** The node of the connection, without the edges */ - node: SkillCategory; -}; +export type SkillCategoryToParentSkillCategoryConnectionEdge = Edge & + OneToOneConnection & + SkillCategoryConnectionEdge & { + __typename?: 'SkillCategoryToParentSkillCategoryConnectionEdge' + /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ + cursor?: Maybe + /** The node of the connection, without the edges */ + node: SkillCategory + } /** Connection between the SkillCategory type and the SkillCategory type */ -export type SkillCategoryToSkillCategoryConnection = Connection & SkillCategoryConnection & { - __typename?: 'SkillCategoryToSkillCategoryConnection'; - /** Edges for the SkillCategoryToSkillCategoryConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: SkillCategoryToSkillCategoryConnectionPageInfo; -}; +export type SkillCategoryToSkillCategoryConnection = Connection & + SkillCategoryConnection & { + __typename?: 'SkillCategoryToSkillCategoryConnection' + /** Edges for the SkillCategoryToSkillCategoryConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: SkillCategoryToSkillCategoryConnectionPageInfo + } /** An edge in a connection */ -export type SkillCategoryToSkillCategoryConnectionEdge = Edge & SkillCategoryConnectionEdge & { - __typename?: 'SkillCategoryToSkillCategoryConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: SkillCategory; -}; +export type SkillCategoryToSkillCategoryConnectionEdge = Edge & + SkillCategoryConnectionEdge & { + __typename?: 'SkillCategoryToSkillCategoryConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: SkillCategory + } /** Page Info on the "SkillCategoryToSkillCategoryConnection" */ -export type SkillCategoryToSkillCategoryConnectionPageInfo = PageInfo & SkillCategoryConnectionPageInfo & WpPageInfo & { - __typename?: 'SkillCategoryToSkillCategoryConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type SkillCategoryToSkillCategoryConnectionPageInfo = PageInfo & + SkillCategoryConnectionPageInfo & + WpPageInfo & { + __typename?: 'SkillCategoryToSkillCategoryConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the SkillCategoryToSkillCategoryConnection connection */ export type SkillCategoryToSkillCategoryConnectionWhereArgs = { /** Unique cache key to be produced when this query is stored in an object cache. Default is 'core'. */ - cacheDomain?: InputMaybe; + cacheDomain?: InputMaybe /** Term ID to retrieve child terms of. If multiple taxonomies are passed, $child_of is ignored. Default 0. */ - childOf?: InputMaybe; + childOf?: InputMaybe /** True to limit results to terms that have no children. This parameter has no effect on non-hierarchical taxonomies. Default false. */ - childless?: InputMaybe; + childless?: InputMaybe /** Retrieve terms where the description is LIKE the input value. Default empty. */ - descriptionLike?: InputMaybe; + descriptionLike?: InputMaybe /** Array of term ids to exclude. If $include is non-empty, $exclude is ignored. Default empty array. */ - exclude?: InputMaybe>>; + exclude?: InputMaybe>> /** Array of term ids to exclude along with all of their descendant terms. If $include is non-empty, $exclude_tree is ignored. Default empty array. */ - excludeTree?: InputMaybe>>; + excludeTree?: InputMaybe>> /** Whether to hide terms not assigned to any posts. Accepts true or false. Default false */ - hideEmpty?: InputMaybe; + hideEmpty?: InputMaybe /** Whether to include terms that have non-empty descendants (even if $hide_empty is set to true). Default true. */ - hierarchical?: InputMaybe; + hierarchical?: InputMaybe /** Array of term ids to include. Default empty array. */ - include?: InputMaybe>>; + include?: InputMaybe>> /** Array of names to return term(s) for. Default empty. */ - name?: InputMaybe>>; + name?: InputMaybe>> /** Retrieve terms where the name is LIKE the input value. Default empty. */ - nameLike?: InputMaybe; + nameLike?: InputMaybe /** Array of object IDs. Results will be limited to terms associated with these objects. */ - objectIds?: InputMaybe>>; + objectIds?: InputMaybe>> /** Direction the connection should be ordered in */ - order?: InputMaybe; + order?: InputMaybe /** Field(s) to order terms by. Defaults to 'name'. */ - orderby?: InputMaybe; + orderby?: InputMaybe /** Whether to pad the quantity of a term's children in the quantity of each term's "count" object variable. Default false. */ - padCounts?: InputMaybe; + padCounts?: InputMaybe /** Parent term ID to retrieve direct-child terms of. Default empty. */ - parent?: InputMaybe; + parent?: InputMaybe /** Search criteria to match terms. Will be SQL-formatted with wildcards before and after. Default empty. */ - search?: InputMaybe; + search?: InputMaybe /** Array of slugs to return term(s) for. Default empty. */ - slug?: InputMaybe>>; + slug?: InputMaybe>> /** Array of term taxonomy IDs, to match when querying terms. */ - termTaxonomId?: InputMaybe>>; + termTaxonomId?: InputMaybe>> /** Array of term taxonomy IDs, to match when querying terms. */ - termTaxonomyId?: InputMaybe>>; + termTaxonomyId?: InputMaybe>> /** Whether to prime meta caches for matched terms. Default true. */ - updateTermMetaCache?: InputMaybe; -}; + updateTermMetaCache?: InputMaybe +} /** Connection between the SkillCategory type and the Skill type */ -export type SkillCategoryToSkillConnection = Connection & SkillConnection & { - __typename?: 'SkillCategoryToSkillConnection'; - /** Edges for the SkillCategoryToSkillConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: SkillCategoryToSkillConnectionPageInfo; -}; +export type SkillCategoryToSkillConnection = Connection & + SkillConnection & { + __typename?: 'SkillCategoryToSkillConnection' + /** Edges for the SkillCategoryToSkillConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: SkillCategoryToSkillConnectionPageInfo + } /** An edge in a connection */ -export type SkillCategoryToSkillConnectionEdge = Edge & SkillConnectionEdge & { - __typename?: 'SkillCategoryToSkillConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: Skill; -}; +export type SkillCategoryToSkillConnectionEdge = Edge & + SkillConnectionEdge & { + __typename?: 'SkillCategoryToSkillConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: Skill + } /** Page Info on the "SkillCategoryToSkillConnection" */ -export type SkillCategoryToSkillConnectionPageInfo = PageInfo & SkillConnectionPageInfo & WpPageInfo & { - __typename?: 'SkillCategoryToSkillConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type SkillCategoryToSkillConnectionPageInfo = PageInfo & + SkillConnectionPageInfo & + WpPageInfo & { + __typename?: 'SkillCategoryToSkillConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the SkillCategoryToSkillConnection connection */ export type SkillCategoryToSkillConnectionWhereArgs = { /** Filter the connection based on dates */ - dateQuery?: InputMaybe; + dateQuery?: InputMaybe /** True for objects with passwords; False for objects without passwords; null for all objects with or without passwords */ - hasPassword?: InputMaybe; + hasPassword?: InputMaybe /** Specific database ID of the object */ - id?: InputMaybe; + id?: InputMaybe /** Array of IDs for the objects to retrieve */ - in?: InputMaybe>>; + in?: InputMaybe>> /** Get objects with a specific mimeType property */ - mimeType?: InputMaybe; + mimeType?: InputMaybe /** Slug / post_name of the object */ - name?: InputMaybe; + name?: InputMaybe /** Specify objects to retrieve. Use slugs */ - nameIn?: InputMaybe>>; + nameIn?: InputMaybe>> /** Specify IDs NOT to retrieve. If this is used in the same query as "in", it will be ignored */ - notIn?: InputMaybe>>; + notIn?: InputMaybe>> /** What parameter to use to order the objects by. */ - orderby?: InputMaybe>>; + orderby?: InputMaybe>> /** Use ID to return only children. Use 0 to return only top-level items */ - parent?: InputMaybe; + parent?: InputMaybe /** Specify objects whose parent is in an array */ - parentIn?: InputMaybe>>; + parentIn?: InputMaybe>> /** Specify posts whose parent is not in an array */ - parentNotIn?: InputMaybe>>; + parentNotIn?: InputMaybe>> /** Show posts with a specific password. */ - password?: InputMaybe; + password?: InputMaybe /** Show Posts based on a keyword search */ - search?: InputMaybe; + search?: InputMaybe /** Retrieve posts where post status is in an array. */ - stati?: InputMaybe>>; + stati?: InputMaybe>> /** Show posts with a specific status. */ - status?: InputMaybe; + status?: InputMaybe /** Title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** Connection between the SkillCategory type and the Taxonomy type */ -export type SkillCategoryToTaxonomyConnectionEdge = Edge & OneToOneConnection & TaxonomyConnectionEdge & { - __typename?: 'SkillCategoryToTaxonomyConnectionEdge'; - /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; - /** The node of the connection, without the edges */ - node: Taxonomy; -}; +export type SkillCategoryToTaxonomyConnectionEdge = Edge & + OneToOneConnection & + TaxonomyConnectionEdge & { + __typename?: 'SkillCategoryToTaxonomyConnectionEdge' + /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ + cursor?: Maybe + /** The node of the connection, without the edges */ + node: Taxonomy + } /** Connection to Skill Nodes */ export type SkillConnection = { /** A list of edges (relational context) between RootQuery and connected Skill Nodes */ - edges: Array; + edges: Array /** A list of connected Skill Nodes */ - nodes: Array; + nodes: Array /** Information about pagination in a connection. */ - pageInfo: SkillConnectionPageInfo; -}; + pageInfo: SkillConnectionPageInfo +} /** Edge between a Node and a connected Skill */ export type SkillConnectionEdge = { /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; + cursor?: Maybe /** The connected Skill Node */ - node: Skill; -}; + node: Skill +} /** Page Info on the connected SkillConnectionEdge */ export type SkillConnectionPageInfo = { /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; + endCursor?: Maybe /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; + hasNextPage: Scalars['Boolean']['output'] /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; + hasPreviousPage: Scalars['Boolean']['output'] /** Raw schema for page */ - seo?: Maybe; + seo?: Maybe /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; + startCursor?: Maybe +} /** The Type of Identifier used to fetch a single resource. Default is ID. */ export enum SkillIdType { @@ -17404,353 +17727,369 @@ export enum SkillIdType { /** Identify a resource by the (hashed) Global ID. */ Id = 'ID', /** Identify a resource by the URI. */ - Uri = 'URI' + Uri = 'URI', } /** Set relationships between the Skill to SkillCategories */ export type SkillSkillCategoriesInput = { /** If true, this will append the SkillCategory to existing related SkillCategories. If false, this will replace existing relationships. Default true. */ - append?: InputMaybe; + append?: InputMaybe /** The input list of items to set. */ - nodes?: InputMaybe>>; -}; + nodes?: InputMaybe>> +} /** List of SkillCategories to connect the Skill to. If an ID is set, it will be used to create the connection. If not, it will look for a slug. If neither are valid existing terms, and the site is configured to allow terms to be created during post mutations, a term will be created using the Name if it exists in the input, then fallback to the slug if it exists. */ export type SkillSkillCategoriesNodeInput = { /** The description of the SkillCategory. This field is used to set a description of the SkillCategory if a new one is created during the mutation. */ - description?: InputMaybe; + description?: InputMaybe /** The ID of the SkillCategory. If present, this will be used to connect to the Skill. If no existing SkillCategory exists with this ID, no connection will be made. */ - id?: InputMaybe; + id?: InputMaybe /** The name of the SkillCategory. This field is used to create a new term, if term creation is enabled in nested mutations, and if one does not already exist with the provided slug or ID or if a slug or ID is not provided. If no name is included and a term is created, the creation will fallback to the slug field. */ - name?: InputMaybe; + name?: InputMaybe /** The slug of the SkillCategory. If no ID is present, this field will be used to make a connection. If no existing term exists with this slug, this field will be used as a fallback to the Name field when creating a new term to connect to, if term creation is enabled as a nested mutation. */ - slug?: InputMaybe; -}; + slug?: InputMaybe +} /** Connection between the Skill type and the Skill type */ -export type SkillToPreviewConnectionEdge = Edge & OneToOneConnection & SkillConnectionEdge & { - __typename?: 'SkillToPreviewConnectionEdge'; - /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; - /** The node of the connection, without the edges */ - node: Skill; -}; +export type SkillToPreviewConnectionEdge = Edge & + OneToOneConnection & + SkillConnectionEdge & { + __typename?: 'SkillToPreviewConnectionEdge' + /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ + cursor?: Maybe + /** The node of the connection, without the edges */ + node: Skill + } /** Connection between the Skill type and the SkillCategory type */ -export type SkillToSkillCategoryConnection = Connection & SkillCategoryConnection & { - __typename?: 'SkillToSkillCategoryConnection'; - /** Edges for the SkillToSkillCategoryConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: SkillToSkillCategoryConnectionPageInfo; -}; +export type SkillToSkillCategoryConnection = Connection & + SkillCategoryConnection & { + __typename?: 'SkillToSkillCategoryConnection' + /** Edges for the SkillToSkillCategoryConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: SkillToSkillCategoryConnectionPageInfo + } /** An edge in a connection */ -export type SkillToSkillCategoryConnectionEdge = Edge & SkillCategoryConnectionEdge & { - __typename?: 'SkillToSkillCategoryConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The Yoast SEO Primary skill_list */ - isPrimary?: Maybe; - /** The item at the end of the edge */ - node: SkillCategory; -}; +export type SkillToSkillCategoryConnectionEdge = Edge & + SkillCategoryConnectionEdge & { + __typename?: 'SkillToSkillCategoryConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The Yoast SEO Primary skill_list */ + isPrimary?: Maybe + /** The item at the end of the edge */ + node: SkillCategory + } /** Page Info on the "SkillToSkillCategoryConnection" */ -export type SkillToSkillCategoryConnectionPageInfo = PageInfo & SkillCategoryConnectionPageInfo & WpPageInfo & { - __typename?: 'SkillToSkillCategoryConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type SkillToSkillCategoryConnectionPageInfo = PageInfo & + SkillCategoryConnectionPageInfo & + WpPageInfo & { + __typename?: 'SkillToSkillCategoryConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the SkillToSkillCategoryConnection connection */ export type SkillToSkillCategoryConnectionWhereArgs = { /** Unique cache key to be produced when this query is stored in an object cache. Default is 'core'. */ - cacheDomain?: InputMaybe; + cacheDomain?: InputMaybe /** Term ID to retrieve child terms of. If multiple taxonomies are passed, $child_of is ignored. Default 0. */ - childOf?: InputMaybe; + childOf?: InputMaybe /** True to limit results to terms that have no children. This parameter has no effect on non-hierarchical taxonomies. Default false. */ - childless?: InputMaybe; + childless?: InputMaybe /** Retrieve terms where the description is LIKE the input value. Default empty. */ - descriptionLike?: InputMaybe; + descriptionLike?: InputMaybe /** Array of term ids to exclude. If $include is non-empty, $exclude is ignored. Default empty array. */ - exclude?: InputMaybe>>; + exclude?: InputMaybe>> /** Array of term ids to exclude along with all of their descendant terms. If $include is non-empty, $exclude_tree is ignored. Default empty array. */ - excludeTree?: InputMaybe>>; + excludeTree?: InputMaybe>> /** Whether to hide terms not assigned to any posts. Accepts true or false. Default false */ - hideEmpty?: InputMaybe; + hideEmpty?: InputMaybe /** Whether to include terms that have non-empty descendants (even if $hide_empty is set to true). Default true. */ - hierarchical?: InputMaybe; + hierarchical?: InputMaybe /** Array of term ids to include. Default empty array. */ - include?: InputMaybe>>; + include?: InputMaybe>> /** Array of names to return term(s) for. Default empty. */ - name?: InputMaybe>>; + name?: InputMaybe>> /** Retrieve terms where the name is LIKE the input value. Default empty. */ - nameLike?: InputMaybe; + nameLike?: InputMaybe /** Array of object IDs. Results will be limited to terms associated with these objects. */ - objectIds?: InputMaybe>>; + objectIds?: InputMaybe>> /** Direction the connection should be ordered in */ - order?: InputMaybe; + order?: InputMaybe /** Field(s) to order terms by. Defaults to 'name'. */ - orderby?: InputMaybe; + orderby?: InputMaybe /** Whether to pad the quantity of a term's children in the quantity of each term's "count" object variable. Default false. */ - padCounts?: InputMaybe; + padCounts?: InputMaybe /** Parent term ID to retrieve direct-child terms of. Default empty. */ - parent?: InputMaybe; + parent?: InputMaybe /** Search criteria to match terms. Will be SQL-formatted with wildcards before and after. Default empty. */ - search?: InputMaybe; + search?: InputMaybe /** Array of slugs to return term(s) for. Default empty. */ - slug?: InputMaybe>>; + slug?: InputMaybe>> /** Array of term taxonomy IDs, to match when querying terms. */ - termTaxonomId?: InputMaybe>>; + termTaxonomId?: InputMaybe>> /** Array of term taxonomy IDs, to match when querying terms. */ - termTaxonomyId?: InputMaybe>>; + termTaxonomyId?: InputMaybe>> /** Whether to prime meta caches for matched terms. Default true. */ - updateTermMetaCache?: InputMaybe; -}; + updateTermMetaCache?: InputMaybe +} /** Connection between the Skill type and the TermNode type */ -export type SkillToTermNodeConnection = Connection & TermNodeConnection & { - __typename?: 'SkillToTermNodeConnection'; - /** Edges for the SkillToTermNodeConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: SkillToTermNodeConnectionPageInfo; -}; +export type SkillToTermNodeConnection = Connection & + TermNodeConnection & { + __typename?: 'SkillToTermNodeConnection' + /** Edges for the SkillToTermNodeConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: SkillToTermNodeConnectionPageInfo + } /** An edge in a connection */ -export type SkillToTermNodeConnectionEdge = Edge & TermNodeConnectionEdge & { - __typename?: 'SkillToTermNodeConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: TermNode; -}; +export type SkillToTermNodeConnectionEdge = Edge & + TermNodeConnectionEdge & { + __typename?: 'SkillToTermNodeConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: TermNode + } /** Page Info on the "SkillToTermNodeConnection" */ -export type SkillToTermNodeConnectionPageInfo = PageInfo & TermNodeConnectionPageInfo & WpPageInfo & { - __typename?: 'SkillToTermNodeConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type SkillToTermNodeConnectionPageInfo = PageInfo & + TermNodeConnectionPageInfo & + WpPageInfo & { + __typename?: 'SkillToTermNodeConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the SkillToTermNodeConnection connection */ export type SkillToTermNodeConnectionWhereArgs = { /** Unique cache key to be produced when this query is stored in an object cache. Default is 'core'. */ - cacheDomain?: InputMaybe; + cacheDomain?: InputMaybe /** Term ID to retrieve child terms of. If multiple taxonomies are passed, $child_of is ignored. Default 0. */ - childOf?: InputMaybe; + childOf?: InputMaybe /** True to limit results to terms that have no children. This parameter has no effect on non-hierarchical taxonomies. Default false. */ - childless?: InputMaybe; + childless?: InputMaybe /** Retrieve terms where the description is LIKE the input value. Default empty. */ - descriptionLike?: InputMaybe; + descriptionLike?: InputMaybe /** Array of term ids to exclude. If $include is non-empty, $exclude is ignored. Default empty array. */ - exclude?: InputMaybe>>; + exclude?: InputMaybe>> /** Array of term ids to exclude along with all of their descendant terms. If $include is non-empty, $exclude_tree is ignored. Default empty array. */ - excludeTree?: InputMaybe>>; + excludeTree?: InputMaybe>> /** Whether to hide terms not assigned to any posts. Accepts true or false. Default false */ - hideEmpty?: InputMaybe; + hideEmpty?: InputMaybe /** Whether to include terms that have non-empty descendants (even if $hide_empty is set to true). Default true. */ - hierarchical?: InputMaybe; + hierarchical?: InputMaybe /** Array of term ids to include. Default empty array. */ - include?: InputMaybe>>; + include?: InputMaybe>> /** Array of names to return term(s) for. Default empty. */ - name?: InputMaybe>>; + name?: InputMaybe>> /** Retrieve terms where the name is LIKE the input value. Default empty. */ - nameLike?: InputMaybe; + nameLike?: InputMaybe /** Array of object IDs. Results will be limited to terms associated with these objects. */ - objectIds?: InputMaybe>>; + objectIds?: InputMaybe>> /** Direction the connection should be ordered in */ - order?: InputMaybe; + order?: InputMaybe /** Field(s) to order terms by. Defaults to 'name'. */ - orderby?: InputMaybe; + orderby?: InputMaybe /** Whether to pad the quantity of a term's children in the quantity of each term's "count" object variable. Default false. */ - padCounts?: InputMaybe; + padCounts?: InputMaybe /** Parent term ID to retrieve direct-child terms of. Default empty. */ - parent?: InputMaybe; + parent?: InputMaybe /** Search criteria to match terms. Will be SQL-formatted with wildcards before and after. Default empty. */ - search?: InputMaybe; + search?: InputMaybe /** Array of slugs to return term(s) for. Default empty. */ - slug?: InputMaybe>>; + slug?: InputMaybe>> /** The Taxonomy to filter terms by */ - taxonomies?: InputMaybe>>; + taxonomies?: InputMaybe>> /** Array of term taxonomy IDs, to match when querying terms. */ - termTaxonomId?: InputMaybe>>; + termTaxonomId?: InputMaybe>> /** Array of term taxonomy IDs, to match when querying terms. */ - termTaxonomyId?: InputMaybe>>; + termTaxonomyId?: InputMaybe>> /** Whether to prime meta caches for matched terms. Default true. */ - updateTermMetaCache?: InputMaybe; -}; + updateTermMetaCache?: InputMaybe +} /** The SocialNetwork type */ -export type SocialNetwork = ContentNode & DatabaseIdentifier & MenuItemLinkable & Node & NodeWithContentEditor & NodeWithFeaturedImage & NodeWithTemplate & NodeWithTitle & Previewable & UniformResourceIdentifiable & WithAcfContentAddons & { - __typename?: 'SocialNetwork'; - /** The content of the post. */ - content?: Maybe; - /** Fields of the ContentAddons ACF Field Group */ - contentAddons?: Maybe; - /** Connection between the ContentNode type and the ContentType type */ - contentType?: Maybe; - /** The name of the Content Type the node belongs to */ - contentTypeName: Scalars['String']['output']; - /** The unique identifier stored in the database */ - databaseId: Scalars['Int']['output']; - /** Post publishing date. */ - date?: Maybe; - /** The publishing date set in GMT. */ - dateGmt?: Maybe; - /** The desired slug of the post */ - desiredSlug?: Maybe; - /** If a user has edited the node within the past 15 seconds, this will return the user that last edited. Null if the edit lock doesn't exist or is greater than 15 seconds */ - editingLockedBy?: Maybe; - /** The RSS enclosure for the object */ - enclosure?: Maybe; - /** Connection between the ContentNode type and the EnqueuedScript type */ - enqueuedScripts?: Maybe; - /** Connection between the ContentNode type and the EnqueuedStylesheet type */ - enqueuedStylesheets?: Maybe; - /** Connection between the NodeWithFeaturedImage type and the MediaItem type */ - featuredImage?: Maybe; - /** The database identifier for the featured image node assigned to the content node */ - featuredImageDatabaseId?: Maybe; - /** Globally unique ID of the featured image assigned to the node */ - featuredImageId?: Maybe; - /** The global unique identifier for this post. This currently matches the value stored in WP_Post->guid and the guid column in the "post_objects" database table. */ - guid?: Maybe; - /** Whether the social_networks object is password protected. */ - hasPassword?: Maybe; - /** The globally unique identifier of the social_networks object. */ - id: Scalars['ID']['output']; - /** Whether the node is a Comment */ - isComment: Scalars['Boolean']['output']; - /** Whether the node is a Content Node */ - isContentNode: Scalars['Boolean']['output']; - /** Whether the node represents the front page. */ - isFrontPage: Scalars['Boolean']['output']; - /** Whether the node represents the blog page. */ - isPostsPage: Scalars['Boolean']['output']; - /** Whether the object is a node in the preview state */ - isPreview?: Maybe; - /** Whether the object is restricted from the current viewer */ - isRestricted?: Maybe; - /** Whether the node is a Term */ - isTermNode: Scalars['Boolean']['output']; - /** The user that most recently edited the node */ - lastEditedBy?: Maybe; - /** The permalink of the post */ - link?: Maybe; - /** The local modified time for a post. If a post was recently updated the modified field will change to match the corresponding time. */ - modified?: Maybe; - /** The GMT modified time for a post. If a post was recently updated the modified field will change to match the corresponding time in GMT. */ - modifiedGmt?: Maybe; - /** The password for the social_networks object. */ - password?: Maybe; - /** Connection between the SocialNetwork type and the SocialNetwork type */ - preview?: Maybe; - /** The database id of the preview node */ - previewRevisionDatabaseId?: Maybe; - /** Whether the object is a node in the preview state */ - previewRevisionId?: Maybe; - /** The Yoast SEO data of the ContentNode */ - seo?: Maybe; - /** The uri slug for the post. This is equivalent to the WP_Post->post_name field and the post_name column in the database for the "post_objects" table. */ - slug?: Maybe; - /** - * The id field matches the WP_Post->ID field. - * @deprecated Deprecated in favor of the databaseId field - */ - socialNetworkId: Scalars['Int']['output']; - /** The current status of the object */ - status?: Maybe; - /** The template assigned to the node */ - template?: Maybe; - /** The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made. */ - title?: Maybe; - /** The unique resource identifier path */ - uri?: Maybe; -}; - +export type SocialNetwork = ContentNode & + DatabaseIdentifier & + MenuItemLinkable & + Node & + NodeWithContentEditor & + NodeWithFeaturedImage & + NodeWithTemplate & + NodeWithTitle & + Previewable & + UniformResourceIdentifiable & + WithAcfContentAddons & { + __typename?: 'SocialNetwork' + /** The content of the post. */ + content?: Maybe + /** Fields of the ContentAddons ACF Field Group */ + contentAddons?: Maybe + /** Connection between the ContentNode type and the ContentType type */ + contentType?: Maybe + /** The name of the Content Type the node belongs to */ + contentTypeName: Scalars['String']['output'] + /** The unique identifier stored in the database */ + databaseId: Scalars['Int']['output'] + /** Post publishing date. */ + date?: Maybe + /** The publishing date set in GMT. */ + dateGmt?: Maybe + /** The desired slug of the post */ + desiredSlug?: Maybe + /** If a user has edited the node within the past 15 seconds, this will return the user that last edited. Null if the edit lock doesn't exist or is greater than 15 seconds */ + editingLockedBy?: Maybe + /** The RSS enclosure for the object */ + enclosure?: Maybe + /** Connection between the ContentNode type and the EnqueuedScript type */ + enqueuedScripts?: Maybe + /** Connection between the ContentNode type and the EnqueuedStylesheet type */ + enqueuedStylesheets?: Maybe + /** Connection between the NodeWithFeaturedImage type and the MediaItem type */ + featuredImage?: Maybe + /** The database identifier for the featured image node assigned to the content node */ + featuredImageDatabaseId?: Maybe + /** Globally unique ID of the featured image assigned to the node */ + featuredImageId?: Maybe + /** The global unique identifier for this post. This currently matches the value stored in WP_Post->guid and the guid column in the "post_objects" database table. */ + guid?: Maybe + /** Whether the social_networks object is password protected. */ + hasPassword?: Maybe + /** The globally unique identifier of the social_networks object. */ + id: Scalars['ID']['output'] + /** Whether the node is a Comment */ + isComment: Scalars['Boolean']['output'] + /** Whether the node is a Content Node */ + isContentNode: Scalars['Boolean']['output'] + /** Whether the node represents the front page. */ + isFrontPage: Scalars['Boolean']['output'] + /** Whether the node represents the blog page. */ + isPostsPage: Scalars['Boolean']['output'] + /** Whether the object is a node in the preview state */ + isPreview?: Maybe + /** Whether the object is restricted from the current viewer */ + isRestricted?: Maybe + /** Whether the node is a Term */ + isTermNode: Scalars['Boolean']['output'] + /** The user that most recently edited the node */ + lastEditedBy?: Maybe + /** The permalink of the post */ + link?: Maybe + /** The local modified time for a post. If a post was recently updated the modified field will change to match the corresponding time. */ + modified?: Maybe + /** The GMT modified time for a post. If a post was recently updated the modified field will change to match the corresponding time in GMT. */ + modifiedGmt?: Maybe + /** The password for the social_networks object. */ + password?: Maybe + /** Connection between the SocialNetwork type and the SocialNetwork type */ + preview?: Maybe + /** The database id of the preview node */ + previewRevisionDatabaseId?: Maybe + /** Whether the object is a node in the preview state */ + previewRevisionId?: Maybe + /** The Yoast SEO data of the ContentNode */ + seo?: Maybe + /** The uri slug for the post. This is equivalent to the WP_Post->post_name field and the post_name column in the database for the "post_objects" table. */ + slug?: Maybe + /** + * The id field matches the WP_Post->ID field. + * @deprecated Deprecated in favor of the databaseId field + */ + socialNetworkId: Scalars['Int']['output'] + /** The current status of the object */ + status?: Maybe + /** The template assigned to the node */ + template?: Maybe + /** The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made. */ + title?: Maybe + /** The unique resource identifier path */ + uri?: Maybe + } /** The SocialNetwork type */ export type SocialNetworkContentArgs = { - format?: InputMaybe; -}; - + format?: InputMaybe +} /** The SocialNetwork type */ export type SocialNetworkEnqueuedScriptsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** The SocialNetwork type */ export type SocialNetworkEnqueuedStylesheetsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** The SocialNetwork type */ export type SocialNetworkTitleArgs = { - format?: InputMaybe; -}; + format?: InputMaybe +} /** Connection to SocialNetwork Nodes */ export type SocialNetworkConnection = { /** A list of edges (relational context) between RootQuery and connected SocialNetwork Nodes */ - edges: Array; + edges: Array /** A list of connected SocialNetwork Nodes */ - nodes: Array; + nodes: Array /** Information about pagination in a connection. */ - pageInfo: SocialNetworkConnectionPageInfo; -}; + pageInfo: SocialNetworkConnectionPageInfo +} /** Edge between a Node and a connected SocialNetwork */ export type SocialNetworkConnectionEdge = { /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; + cursor?: Maybe /** The connected SocialNetwork Node */ - node: SocialNetwork; -}; + node: SocialNetwork +} /** Page Info on the connected SocialNetworkConnectionEdge */ export type SocialNetworkConnectionPageInfo = { /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; + endCursor?: Maybe /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; + hasNextPage: Scalars['Boolean']['output'] /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; + hasPreviousPage: Scalars['Boolean']['output'] /** Raw schema for page */ - seo?: Maybe; + seo?: Maybe /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; + startCursor?: Maybe +} /** The Type of Identifier used to fetch a single resource. Default is ID. */ export enum SocialNetworkIdType { @@ -17761,178 +18100,179 @@ export enum SocialNetworkIdType { /** Identify a resource by the slug. Available to non-hierarchcial Types where the slug is a unique identifier. */ Slug = 'SLUG', /** Identify a resource by the URI. */ - Uri = 'URI' + Uri = 'URI', } -/** Connection between the SocialNetwork type and the SocialNetwork type */ -export type SocialNetworkToPreviewConnectionEdge = Edge & OneToOneConnection & SocialNetworkConnectionEdge & { - __typename?: 'SocialNetworkToPreviewConnectionEdge'; - /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; - /** The node of the connection, without the edges */ - node: SocialNetwork; -}; - -/** Input for the submitForm mutation. */ -export type SubmitFormInput = { - /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; - /** Submited form data */ - data?: InputMaybe>>; - /** Submited form Id */ - formId?: InputMaybe; -}; - -/** The payload for the submitForm mutation. */ -export type SubmitFormPayload = { - __typename?: 'SubmitFormPayload'; - /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; - /** Field errors */ - errors?: Maybe>>; - /** Generic operation message */ - message?: Maybe; - /** Form submitted successfuly */ - success?: Maybe; -}; - -/** The tag type */ -export type Tag = DatabaseIdentifier & MenuItemLinkable & Node & TermNode & UniformResourceIdentifiable & { - __typename?: 'Tag'; - /** Connection between the Tag type and the ContentNode type */ - contentNodes?: Maybe; - /** The number of objects connected to the object */ - count?: Maybe; - /** The unique identifier stored in the database */ - databaseId: Scalars['Int']['output']; - /** The description of the object */ - description?: Maybe; - /** Connection between the TermNode type and the EnqueuedScript type */ - enqueuedScripts?: Maybe; - /** Connection between the TermNode type and the EnqueuedStylesheet type */ - enqueuedStylesheets?: Maybe; - /** The globally unique ID for the object */ - id: Scalars['ID']['output']; - /** Whether the node is a Comment */ - isComment: Scalars['Boolean']['output']; - /** Whether the node is a Content Node */ - isContentNode: Scalars['Boolean']['output']; - /** Whether the node represents the front page. */ - isFrontPage: Scalars['Boolean']['output']; - /** Whether the node represents the blog page. */ - isPostsPage: Scalars['Boolean']['output']; - /** Whether the object is restricted from the current viewer */ - isRestricted?: Maybe; - /** Whether the node is a Term */ - isTermNode: Scalars['Boolean']['output']; - /** List available translations for this post */ - language?: Maybe; - /** The link to the term */ - link?: Maybe; - /** The human friendly name of the object. */ - name?: Maybe; - /** Connection between the Tag type and the post type */ - posts?: Maybe; - /** The Yoast SEO data of the Метки taxonomy. */ - seo?: Maybe; - /** An alphanumeric identifier for the object unique to its type. */ - slug?: Maybe; - /** - * The id field matches the WP_Post->ID field. - * @deprecated Deprecated in favor of databaseId - */ - tagId?: Maybe; - /** Connection between the Tag type and the Taxonomy type */ - taxonomy?: Maybe; - /** The name of the taxonomy that the object is associated with */ - taxonomyName?: Maybe; - /** The ID of the term group that this term object belongs to */ - termGroupId?: Maybe; - /** The taxonomy ID that the object is associated with */ - termTaxonomyId?: Maybe; - /** Get specific translation version of this object */ - translation?: Maybe; - /** List all translated versions of this term */ - translations?: Maybe>>; - /** The unique resource identifier path */ - uri?: Maybe; -}; - +/** Connection between the SocialNetwork type and the SocialNetwork type */ +export type SocialNetworkToPreviewConnectionEdge = Edge & + OneToOneConnection & + SocialNetworkConnectionEdge & { + __typename?: 'SocialNetworkToPreviewConnectionEdge' + /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ + cursor?: Maybe + /** The node of the connection, without the edges */ + node: SocialNetwork + } + +/** Input for the submitForm mutation. */ +export type SubmitFormInput = { + /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ + clientMutationId?: InputMaybe + /** Submited form data */ + data?: InputMaybe>> + /** Submited form Id */ + formId?: InputMaybe +} + +/** The payload for the submitForm mutation. */ +export type SubmitFormPayload = { + __typename?: 'SubmitFormPayload' + /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ + clientMutationId?: Maybe + /** Field errors */ + errors?: Maybe>> + /** Generic operation message */ + message?: Maybe + /** Form submitted successfuly */ + success?: Maybe +} /** The tag type */ -export type TagContentNodesArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; +export type Tag = DatabaseIdentifier & + MenuItemLinkable & + Node & + TermNode & + UniformResourceIdentifiable & { + __typename?: 'Tag' + /** Connection between the Tag type and the ContentNode type */ + contentNodes?: Maybe + /** The number of objects connected to the object */ + count?: Maybe + /** The unique identifier stored in the database */ + databaseId: Scalars['Int']['output'] + /** The description of the object */ + description?: Maybe + /** Connection between the TermNode type and the EnqueuedScript type */ + enqueuedScripts?: Maybe + /** Connection between the TermNode type and the EnqueuedStylesheet type */ + enqueuedStylesheets?: Maybe + /** The globally unique ID for the object */ + id: Scalars['ID']['output'] + /** Whether the node is a Comment */ + isComment: Scalars['Boolean']['output'] + /** Whether the node is a Content Node */ + isContentNode: Scalars['Boolean']['output'] + /** Whether the node represents the front page. */ + isFrontPage: Scalars['Boolean']['output'] + /** Whether the node represents the blog page. */ + isPostsPage: Scalars['Boolean']['output'] + /** Whether the object is restricted from the current viewer */ + isRestricted?: Maybe + /** Whether the node is a Term */ + isTermNode: Scalars['Boolean']['output'] + /** List available translations for this post */ + language?: Maybe + /** The link to the term */ + link?: Maybe + /** The human friendly name of the object. */ + name?: Maybe + /** Connection between the Tag type and the post type */ + posts?: Maybe + /** The Yoast SEO data of the Метки taxonomy. */ + seo?: Maybe + /** An alphanumeric identifier for the object unique to its type. */ + slug?: Maybe + /** + * The id field matches the WP_Post->ID field. + * @deprecated Deprecated in favor of databaseId + */ + tagId?: Maybe + /** Connection between the Tag type and the Taxonomy type */ + taxonomy?: Maybe + /** The name of the taxonomy that the object is associated with */ + taxonomyName?: Maybe + /** The ID of the term group that this term object belongs to */ + termGroupId?: Maybe + /** The taxonomy ID that the object is associated with */ + termTaxonomyId?: Maybe + /** Get specific translation version of this object */ + translation?: Maybe + /** List all translated versions of this term */ + translations?: Maybe>> + /** The unique resource identifier path */ + uri?: Maybe + } +/** The tag type */ +export type TagContentNodesArgs = { + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The tag type */ export type TagEnqueuedScriptsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** The tag type */ export type TagEnqueuedStylesheetsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** The tag type */ export type TagPostsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** The tag type */ export type TagTranslationArgs = { - language: LanguageCodeEnum; -}; + language: LanguageCodeEnum +} /** Connection to tag Nodes */ export type TagConnection = { /** A list of edges (relational context) between RootQuery and connected tag Nodes */ - edges: Array; + edges: Array /** A list of connected tag Nodes */ - nodes: Array; + nodes: Array /** Information about pagination in a connection. */ - pageInfo: TagConnectionPageInfo; -}; + pageInfo: TagConnectionPageInfo +} /** Edge between a Node and a connected tag */ export type TagConnectionEdge = { /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; + cursor?: Maybe /** The connected tag Node */ - node: Tag; -}; + node: Tag +} /** Page Info on the connected TagConnectionEdge */ export type TagConnectionPageInfo = { /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; + endCursor?: Maybe /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; + hasNextPage: Scalars['Boolean']['output'] /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; + hasPreviousPage: Scalars['Boolean']['output'] /** Raw schema for page */ - seo?: Maybe; + seo?: Maybe /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; + startCursor?: Maybe +} /** The Type of Identifier used to fetch a single resource. Default is ID. */ export enum TagIdType { @@ -17945,290 +18285,298 @@ export enum TagIdType { /** Url friendly name of the node */ Slug = 'SLUG', /** The URI for the node */ - Uri = 'URI' + Uri = 'URI', } /** Connection between the Tag type and the ContentNode type */ -export type TagToContentNodeConnection = Connection & ContentNodeConnection & { - __typename?: 'TagToContentNodeConnection'; - /** Edges for the TagToContentNodeConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: TagToContentNodeConnectionPageInfo; -}; +export type TagToContentNodeConnection = Connection & + ContentNodeConnection & { + __typename?: 'TagToContentNodeConnection' + /** Edges for the TagToContentNodeConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: TagToContentNodeConnectionPageInfo + } /** An edge in a connection */ -export type TagToContentNodeConnectionEdge = ContentNodeConnectionEdge & Edge & { - __typename?: 'TagToContentNodeConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: ContentNode; -}; +export type TagToContentNodeConnectionEdge = ContentNodeConnectionEdge & + Edge & { + __typename?: 'TagToContentNodeConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: ContentNode + } /** Page Info on the "TagToContentNodeConnection" */ -export type TagToContentNodeConnectionPageInfo = ContentNodeConnectionPageInfo & PageInfo & WpPageInfo & { - __typename?: 'TagToContentNodeConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type TagToContentNodeConnectionPageInfo = ContentNodeConnectionPageInfo & + PageInfo & + WpPageInfo & { + __typename?: 'TagToContentNodeConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the TagToContentNodeConnection connection */ export type TagToContentNodeConnectionWhereArgs = { /** The Types of content to filter */ - contentTypes?: InputMaybe>>; + contentTypes?: InputMaybe>> /** Filter the connection based on dates */ - dateQuery?: InputMaybe; + dateQuery?: InputMaybe /** True for objects with passwords; False for objects without passwords; null for all objects with or without passwords */ - hasPassword?: InputMaybe; + hasPassword?: InputMaybe /** Specific database ID of the object */ - id?: InputMaybe; + id?: InputMaybe /** Array of IDs for the objects to retrieve */ - in?: InputMaybe>>; + in?: InputMaybe>> /** Get objects with a specific mimeType property */ - mimeType?: InputMaybe; + mimeType?: InputMaybe /** Slug / post_name of the object */ - name?: InputMaybe; + name?: InputMaybe /** Specify objects to retrieve. Use slugs */ - nameIn?: InputMaybe>>; + nameIn?: InputMaybe>> /** Specify IDs NOT to retrieve. If this is used in the same query as "in", it will be ignored */ - notIn?: InputMaybe>>; + notIn?: InputMaybe>> /** What parameter to use to order the objects by. */ - orderby?: InputMaybe>>; + orderby?: InputMaybe>> /** Use ID to return only children. Use 0 to return only top-level items */ - parent?: InputMaybe; + parent?: InputMaybe /** Specify objects whose parent is in an array */ - parentIn?: InputMaybe>>; + parentIn?: InputMaybe>> /** Specify posts whose parent is not in an array */ - parentNotIn?: InputMaybe>>; + parentNotIn?: InputMaybe>> /** Show posts with a specific password. */ - password?: InputMaybe; + password?: InputMaybe /** Show Posts based on a keyword search */ - search?: InputMaybe; + search?: InputMaybe /** Retrieve posts where post status is in an array. */ - stati?: InputMaybe>>; + stati?: InputMaybe>> /** Show posts with a specific status. */ - status?: InputMaybe; + status?: InputMaybe /** Title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** Connection between the Tag type and the post type */ -export type TagToPostConnection = Connection & PostConnection & { - __typename?: 'TagToPostConnection'; - /** Edges for the TagToPostConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: TagToPostConnectionPageInfo; -}; +export type TagToPostConnection = Connection & + PostConnection & { + __typename?: 'TagToPostConnection' + /** Edges for the TagToPostConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: TagToPostConnectionPageInfo + } /** An edge in a connection */ -export type TagToPostConnectionEdge = Edge & PostConnectionEdge & { - __typename?: 'TagToPostConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: Post; -}; +export type TagToPostConnectionEdge = Edge & + PostConnectionEdge & { + __typename?: 'TagToPostConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: Post + } /** Page Info on the "TagToPostConnection" */ -export type TagToPostConnectionPageInfo = PageInfo & PostConnectionPageInfo & WpPageInfo & { - __typename?: 'TagToPostConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type TagToPostConnectionPageInfo = PageInfo & + PostConnectionPageInfo & + WpPageInfo & { + __typename?: 'TagToPostConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the TagToPostConnection connection */ export type TagToPostConnectionWhereArgs = { /** The user that's connected as the author of the object. Use the userId for the author object. */ - author?: InputMaybe; + author?: InputMaybe /** Find objects connected to author(s) in the array of author's userIds */ - authorIn?: InputMaybe>>; + authorIn?: InputMaybe>> /** Find objects connected to the author by the author's nicename */ - authorName?: InputMaybe; + authorName?: InputMaybe /** Find objects NOT connected to author(s) in the array of author's userIds */ - authorNotIn?: InputMaybe>>; + authorNotIn?: InputMaybe>> /** Category ID */ - categoryId?: InputMaybe; + categoryId?: InputMaybe /** Array of category IDs, used to display objects from one category OR another */ - categoryIn?: InputMaybe>>; + categoryIn?: InputMaybe>> /** Use Category Slug */ - categoryName?: InputMaybe; + categoryName?: InputMaybe /** Array of category IDs, used to display objects from one category OR another */ - categoryNotIn?: InputMaybe>>; + categoryNotIn?: InputMaybe>> /** Filter the connection based on dates */ - dateQuery?: InputMaybe; + dateQuery?: InputMaybe /** True for objects with passwords; False for objects without passwords; null for all objects with or without passwords */ - hasPassword?: InputMaybe; + hasPassword?: InputMaybe /** Specific database ID of the object */ - id?: InputMaybe; + id?: InputMaybe /** Array of IDs for the objects to retrieve */ - in?: InputMaybe>>; + in?: InputMaybe>> /** Get objects with a specific mimeType property */ - mimeType?: InputMaybe; + mimeType?: InputMaybe /** Slug / post_name of the object */ - name?: InputMaybe; + name?: InputMaybe /** Specify objects to retrieve. Use slugs */ - nameIn?: InputMaybe>>; + nameIn?: InputMaybe>> /** Specify IDs NOT to retrieve. If this is used in the same query as "in", it will be ignored */ - notIn?: InputMaybe>>; + notIn?: InputMaybe>> /** What parameter to use to order the objects by. */ - orderby?: InputMaybe>>; + orderby?: InputMaybe>> /** Use ID to return only children. Use 0 to return only top-level items */ - parent?: InputMaybe; + parent?: InputMaybe /** Specify objects whose parent is in an array */ - parentIn?: InputMaybe>>; + parentIn?: InputMaybe>> /** Specify posts whose parent is not in an array */ - parentNotIn?: InputMaybe>>; + parentNotIn?: InputMaybe>> /** Show posts with a specific password. */ - password?: InputMaybe; + password?: InputMaybe /** Show Posts based on a keyword search */ - search?: InputMaybe; + search?: InputMaybe /** Retrieve posts where post status is in an array. */ - stati?: InputMaybe>>; + stati?: InputMaybe>> /** Show posts with a specific status. */ - status?: InputMaybe; + status?: InputMaybe /** Tag Slug */ - tag?: InputMaybe; + tag?: InputMaybe /** Use Tag ID */ - tagId?: InputMaybe; + tagId?: InputMaybe /** Array of tag IDs, used to display objects from one tag OR another */ - tagIn?: InputMaybe>>; + tagIn?: InputMaybe>> /** Array of tag IDs, used to display objects from one tag OR another */ - tagNotIn?: InputMaybe>>; + tagNotIn?: InputMaybe>> /** Array of tag slugs, used to display objects from one tag AND another */ - tagSlugAnd?: InputMaybe>>; + tagSlugAnd?: InputMaybe>> /** Array of tag slugs, used to include objects in ANY specified tags */ - tagSlugIn?: InputMaybe>>; + tagSlugIn?: InputMaybe>> /** Title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** Connection between the Tag type and the Taxonomy type */ -export type TagToTaxonomyConnectionEdge = Edge & OneToOneConnection & TaxonomyConnectionEdge & { - __typename?: 'TagToTaxonomyConnectionEdge'; - /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; - /** The node of the connection, without the edges */ - node: Taxonomy; -}; +export type TagToTaxonomyConnectionEdge = Edge & + OneToOneConnection & + TaxonomyConnectionEdge & { + __typename?: 'TagToTaxonomyConnectionEdge' + /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ + cursor?: Maybe + /** The node of the connection, without the edges */ + node: Taxonomy + } /** A taxonomy object */ export type Taxonomy = Node & { - __typename?: 'Taxonomy'; + __typename?: 'Taxonomy' /** List of Content Types associated with the Taxonomy */ - connectedContentTypes?: Maybe; + connectedContentTypes?: Maybe /** List of Term Nodes associated with the Taxonomy */ - connectedTerms?: Maybe; + connectedTerms?: Maybe /** Description of the taxonomy. This field is equivalent to WP_Taxonomy->description */ - description?: Maybe; + description?: Maybe /** The plural name of the post type within the GraphQL Schema. */ - graphqlPluralName?: Maybe; + graphqlPluralName?: Maybe /** The singular name of the post type within the GraphQL Schema. */ - graphqlSingleName?: Maybe; + graphqlSingleName?: Maybe /** Whether the taxonomy is hierarchical */ - hierarchical?: Maybe; + hierarchical?: Maybe /** The globally unique identifier of the taxonomy object. */ - id: Scalars['ID']['output']; + id: Scalars['ID']['output'] /** Whether the object is restricted from the current viewer */ - isRestricted?: Maybe; + isRestricted?: Maybe /** Name of the taxonomy shown in the menu. Usually plural. */ - label?: Maybe; + label?: Maybe /** The display name of the taxonomy. This field is equivalent to WP_Taxonomy->label */ - name?: Maybe; + name?: Maybe /** Whether the taxonomy is publicly queryable */ - public?: Maybe; + public?: Maybe /** Name of content type to display in REST API "wp/v2" namespace. */ - restBase?: Maybe; + restBase?: Maybe /** The REST Controller class assigned to handling this content type. */ - restControllerClass?: Maybe; + restControllerClass?: Maybe /** Whether to show the taxonomy as part of a tag cloud widget. This field is equivalent to WP_Taxonomy->show_tagcloud */ - showCloud?: Maybe; + showCloud?: Maybe /** Whether to display a column for the taxonomy on its post type listing screens. */ - showInAdminColumn?: Maybe; + showInAdminColumn?: Maybe /** Whether to add the post type to the GraphQL Schema. */ - showInGraphql?: Maybe; + showInGraphql?: Maybe /** Whether to show the taxonomy in the admin menu */ - showInMenu?: Maybe; + showInMenu?: Maybe /** Whether the taxonomy is available for selection in navigation menus. */ - showInNavMenus?: Maybe; + showInNavMenus?: Maybe /** Whether to show the taxonomy in the quick/bulk edit panel. */ - showInQuickEdit?: Maybe; + showInQuickEdit?: Maybe /** Whether to add the post type route in the REST API "wp/v2" namespace. */ - showInRest?: Maybe; + showInRest?: Maybe /** Whether to generate and allow a UI for managing terms in this taxonomy in the admin */ - showUi?: Maybe; -}; - + showUi?: Maybe +} /** A taxonomy object */ export type TaxonomyConnectedContentTypesArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** A taxonomy object */ export type TaxonomyConnectedTermsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** Connection to Taxonomy Nodes */ export type TaxonomyConnection = { /** A list of edges (relational context) between RootQuery and connected Taxonomy Nodes */ - edges: Array; + edges: Array /** A list of connected Taxonomy Nodes */ - nodes: Array; + nodes: Array /** Information about pagination in a connection. */ - pageInfo: TaxonomyConnectionPageInfo; -}; + pageInfo: TaxonomyConnectionPageInfo +} /** Edge between a Node and a connected Taxonomy */ export type TaxonomyConnectionEdge = { /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; + cursor?: Maybe /** The connected Taxonomy Node */ - node: Taxonomy; -}; + node: Taxonomy +} /** Page Info on the connected TaxonomyConnectionEdge */ export type TaxonomyConnectionPageInfo = { /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; + endCursor?: Maybe /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; + hasNextPage: Scalars['Boolean']['output'] /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; + hasPreviousPage: Scalars['Boolean']['output'] /** Raw schema for page */ - seo?: Maybe; + seo?: Maybe /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; + startCursor?: Maybe +} /** Allowed taxonomies */ export enum TaxonomyEnum { @@ -18243,7 +18591,7 @@ export enum TaxonomyEnum { /** Taxonomy enum skill_list */ Skillcategory = 'SKILLCATEGORY', /** Taxonomy enum post_tag */ - Tag = 'TAG' + Tag = 'TAG', } /** The Type of Identifier used to fetch a single Taxonomy node. To be used along with the "id" field. Default is "ID". */ @@ -18251,198 +18599,204 @@ export enum TaxonomyIdTypeEnum { /** The globally unique ID */ Id = 'ID', /** The name of the taxonomy */ - Name = 'NAME' + Name = 'NAME', } export type TaxonomySeo = { - __typename?: 'TaxonomySEO'; - breadcrumbs?: Maybe>>; - canonical?: Maybe; - cornerstone?: Maybe; - focuskw?: Maybe; - fullHead?: Maybe; - metaDesc?: Maybe; - metaKeywords?: Maybe; - metaRobotsNofollow?: Maybe; - metaRobotsNoindex?: Maybe; - opengraphAuthor?: Maybe; - opengraphDescription?: Maybe; - opengraphImage?: Maybe; - opengraphModifiedTime?: Maybe; - opengraphPublishedTime?: Maybe; - opengraphPublisher?: Maybe; - opengraphSiteName?: Maybe; - opengraphTitle?: Maybe; - opengraphType?: Maybe; - opengraphUrl?: Maybe; - schema?: Maybe; - title?: Maybe; - twitterDescription?: Maybe; - twitterImage?: Maybe; - twitterTitle?: Maybe; -}; + __typename?: 'TaxonomySEO' + breadcrumbs?: Maybe>> + canonical?: Maybe + cornerstone?: Maybe + focuskw?: Maybe + fullHead?: Maybe + metaDesc?: Maybe + metaKeywords?: Maybe + metaRobotsNofollow?: Maybe + metaRobotsNoindex?: Maybe + opengraphAuthor?: Maybe + opengraphDescription?: Maybe + opengraphImage?: Maybe + opengraphModifiedTime?: Maybe + opengraphPublishedTime?: Maybe + opengraphPublisher?: Maybe + opengraphSiteName?: Maybe + opengraphTitle?: Maybe + opengraphType?: Maybe + opengraphUrl?: Maybe + schema?: Maybe + title?: Maybe + twitterDescription?: Maybe + twitterImage?: Maybe + twitterTitle?: Maybe +} /** Connection between the Taxonomy type and the ContentType type */ -export type TaxonomyToContentTypeConnection = Connection & ContentTypeConnection & { - __typename?: 'TaxonomyToContentTypeConnection'; - /** Edges for the TaxonomyToContentTypeConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: TaxonomyToContentTypeConnectionPageInfo; -}; +export type TaxonomyToContentTypeConnection = Connection & + ContentTypeConnection & { + __typename?: 'TaxonomyToContentTypeConnection' + /** Edges for the TaxonomyToContentTypeConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: TaxonomyToContentTypeConnectionPageInfo + } /** An edge in a connection */ -export type TaxonomyToContentTypeConnectionEdge = ContentTypeConnectionEdge & Edge & { - __typename?: 'TaxonomyToContentTypeConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: ContentType; -}; +export type TaxonomyToContentTypeConnectionEdge = ContentTypeConnectionEdge & + Edge & { + __typename?: 'TaxonomyToContentTypeConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: ContentType + } /** Page Info on the "TaxonomyToContentTypeConnection" */ -export type TaxonomyToContentTypeConnectionPageInfo = ContentTypeConnectionPageInfo & PageInfo & WpPageInfo & { - __typename?: 'TaxonomyToContentTypeConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type TaxonomyToContentTypeConnectionPageInfo = ContentTypeConnectionPageInfo & + PageInfo & + WpPageInfo & { + __typename?: 'TaxonomyToContentTypeConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Connection between the Taxonomy type and the TermNode type */ -export type TaxonomyToTermNodeConnection = Connection & TermNodeConnection & { - __typename?: 'TaxonomyToTermNodeConnection'; - /** Edges for the TaxonomyToTermNodeConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: TaxonomyToTermNodeConnectionPageInfo; -}; +export type TaxonomyToTermNodeConnection = Connection & + TermNodeConnection & { + __typename?: 'TaxonomyToTermNodeConnection' + /** Edges for the TaxonomyToTermNodeConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: TaxonomyToTermNodeConnectionPageInfo + } /** An edge in a connection */ -export type TaxonomyToTermNodeConnectionEdge = Edge & TermNodeConnectionEdge & { - __typename?: 'TaxonomyToTermNodeConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: TermNode; -}; +export type TaxonomyToTermNodeConnectionEdge = Edge & + TermNodeConnectionEdge & { + __typename?: 'TaxonomyToTermNodeConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: TermNode + } /** Page Info on the "TaxonomyToTermNodeConnection" */ -export type TaxonomyToTermNodeConnectionPageInfo = PageInfo & TermNodeConnectionPageInfo & WpPageInfo & { - __typename?: 'TaxonomyToTermNodeConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type TaxonomyToTermNodeConnectionPageInfo = PageInfo & + TermNodeConnectionPageInfo & + WpPageInfo & { + __typename?: 'TaxonomyToTermNodeConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Terms are nodes within a Taxonomy, used to group and relate other nodes. */ export type TermNode = { /** The number of objects connected to the object */ - count?: Maybe; + count?: Maybe /** Identifies the primary key from the database. */ - databaseId: Scalars['Int']['output']; + databaseId: Scalars['Int']['output'] /** The description of the object */ - description?: Maybe; + description?: Maybe /** Connection between the TermNode type and the EnqueuedScript type */ - enqueuedScripts?: Maybe; + enqueuedScripts?: Maybe /** Connection between the TermNode type and the EnqueuedStylesheet type */ - enqueuedStylesheets?: Maybe; + enqueuedStylesheets?: Maybe /** The globally unique ID for the object */ - id: Scalars['ID']['output']; + id: Scalars['ID']['output'] /** Whether the node is a Comment */ - isComment: Scalars['Boolean']['output']; + isComment: Scalars['Boolean']['output'] /** Whether the node is a Content Node */ - isContentNode: Scalars['Boolean']['output']; + isContentNode: Scalars['Boolean']['output'] /** Whether the node represents the front page. */ - isFrontPage: Scalars['Boolean']['output']; + isFrontPage: Scalars['Boolean']['output'] /** Whether the node represents the blog page. */ - isPostsPage: Scalars['Boolean']['output']; + isPostsPage: Scalars['Boolean']['output'] /** Whether the object is restricted from the current viewer */ - isRestricted?: Maybe; + isRestricted?: Maybe /** Whether the node is a Term */ - isTermNode: Scalars['Boolean']['output']; + isTermNode: Scalars['Boolean']['output'] /** The link to the term */ - link?: Maybe; + link?: Maybe /** The human friendly name of the object. */ - name?: Maybe; + name?: Maybe /** An alphanumeric identifier for the object unique to its type. */ - slug?: Maybe; + slug?: Maybe /** The name of the taxonomy that the object is associated with */ - taxonomyName?: Maybe; + taxonomyName?: Maybe /** The ID of the term group that this term object belongs to */ - termGroupId?: Maybe; + termGroupId?: Maybe /** The taxonomy ID that the object is associated with */ - termTaxonomyId?: Maybe; + termTaxonomyId?: Maybe /** The unique resource identifier path */ - uri?: Maybe; -}; - + uri?: Maybe +} /** Terms are nodes within a Taxonomy, used to group and relate other nodes. */ export type TermNodeEnqueuedScriptsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** Terms are nodes within a Taxonomy, used to group and relate other nodes. */ export type TermNodeEnqueuedStylesheetsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** Connection to TermNode Nodes */ export type TermNodeConnection = { /** A list of edges (relational context) between RootQuery and connected TermNode Nodes */ - edges: Array; + edges: Array /** A list of connected TermNode Nodes */ - nodes: Array; + nodes: Array /** Information about pagination in a connection. */ - pageInfo: TermNodeConnectionPageInfo; -}; + pageInfo: TermNodeConnectionPageInfo +} /** Edge between a Node and a connected TermNode */ export type TermNodeConnectionEdge = { /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; + cursor?: Maybe /** The connected TermNode Node */ - node: TermNode; -}; + node: TermNode +} /** Page Info on the connected TermNodeConnectionEdge */ export type TermNodeConnectionPageInfo = { /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; + endCursor?: Maybe /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; + hasNextPage: Scalars['Boolean']['output'] /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; + hasPreviousPage: Scalars['Boolean']['output'] /** Raw schema for page */ - seo?: Maybe; + seo?: Maybe /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; + startCursor?: Maybe +} /** The Type of Identifier used to fetch a single resource. Default is "ID". To be used along with the "id" field. */ export enum TermNodeIdTypeEnum { @@ -18455,78 +18809,86 @@ export enum TermNodeIdTypeEnum { /** Url friendly name of the node */ Slug = 'SLUG', /** The URI for the node */ - Uri = 'URI' + Uri = 'URI', } /** Connection between the TermNode type and the EnqueuedScript type */ -export type TermNodeToEnqueuedScriptConnection = Connection & EnqueuedScriptConnection & { - __typename?: 'TermNodeToEnqueuedScriptConnection'; - /** Edges for the TermNodeToEnqueuedScriptConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: TermNodeToEnqueuedScriptConnectionPageInfo; -}; +export type TermNodeToEnqueuedScriptConnection = Connection & + EnqueuedScriptConnection & { + __typename?: 'TermNodeToEnqueuedScriptConnection' + /** Edges for the TermNodeToEnqueuedScriptConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: TermNodeToEnqueuedScriptConnectionPageInfo + } /** An edge in a connection */ -export type TermNodeToEnqueuedScriptConnectionEdge = Edge & EnqueuedScriptConnectionEdge & { - __typename?: 'TermNodeToEnqueuedScriptConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: EnqueuedScript; -}; +export type TermNodeToEnqueuedScriptConnectionEdge = Edge & + EnqueuedScriptConnectionEdge & { + __typename?: 'TermNodeToEnqueuedScriptConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: EnqueuedScript + } /** Page Info on the "TermNodeToEnqueuedScriptConnection" */ -export type TermNodeToEnqueuedScriptConnectionPageInfo = EnqueuedScriptConnectionPageInfo & PageInfo & WpPageInfo & { - __typename?: 'TermNodeToEnqueuedScriptConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type TermNodeToEnqueuedScriptConnectionPageInfo = EnqueuedScriptConnectionPageInfo & + PageInfo & + WpPageInfo & { + __typename?: 'TermNodeToEnqueuedScriptConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Connection between the TermNode type and the EnqueuedStylesheet type */ -export type TermNodeToEnqueuedStylesheetConnection = Connection & EnqueuedStylesheetConnection & { - __typename?: 'TermNodeToEnqueuedStylesheetConnection'; - /** Edges for the TermNodeToEnqueuedStylesheetConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: TermNodeToEnqueuedStylesheetConnectionPageInfo; -}; +export type TermNodeToEnqueuedStylesheetConnection = Connection & + EnqueuedStylesheetConnection & { + __typename?: 'TermNodeToEnqueuedStylesheetConnection' + /** Edges for the TermNodeToEnqueuedStylesheetConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: TermNodeToEnqueuedStylesheetConnectionPageInfo + } /** An edge in a connection */ -export type TermNodeToEnqueuedStylesheetConnectionEdge = Edge & EnqueuedStylesheetConnectionEdge & { - __typename?: 'TermNodeToEnqueuedStylesheetConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: EnqueuedStylesheet; -}; +export type TermNodeToEnqueuedStylesheetConnectionEdge = Edge & + EnqueuedStylesheetConnectionEdge & { + __typename?: 'TermNodeToEnqueuedStylesheetConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: EnqueuedStylesheet + } /** Page Info on the "TermNodeToEnqueuedStylesheetConnection" */ -export type TermNodeToEnqueuedStylesheetConnectionPageInfo = EnqueuedStylesheetConnectionPageInfo & PageInfo & WpPageInfo & { - __typename?: 'TermNodeToEnqueuedStylesheetConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type TermNodeToEnqueuedStylesheetConnectionPageInfo = EnqueuedStylesheetConnectionPageInfo & + PageInfo & + WpPageInfo & { + __typename?: 'TermNodeToEnqueuedStylesheetConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Options for ordering the connection by */ export enum TermObjectsConnectionOrderbyEnum { @@ -18543,1343 +18905,1337 @@ export enum TermObjectsConnectionOrderbyEnum { /** Order the connection by term id. */ TermId = 'TERM_ID', /** Order the connection by term order. */ - TermOrder = 'TERM_ORDER' + TermOrder = 'TERM_ORDER', } /** A theme object */ export type Theme = Node & { - __typename?: 'Theme'; + __typename?: 'Theme' /** Name of the theme author(s), could also be a company name. This field is equivalent to WP_Theme->get( "Author" ). */ - author?: Maybe; + author?: Maybe /** URI for the author/company website. This field is equivalent to WP_Theme->get( "AuthorURI" ). */ - authorUri?: Maybe; + authorUri?: Maybe /** The description of the theme. This field is equivalent to WP_Theme->get( "Description" ). */ - description?: Maybe; + description?: Maybe /** The globally unique identifier of the theme object. */ - id: Scalars['ID']['output']; + id: Scalars['ID']['output'] /** Whether the object is restricted from the current viewer */ - isRestricted?: Maybe; + isRestricted?: Maybe /** Display name of the theme. This field is equivalent to WP_Theme->get( "Name" ). */ - name?: Maybe; + name?: Maybe /** The URL of the screenshot for the theme. The screenshot is intended to give an overview of what the theme looks like. This field is equivalent to WP_Theme->get_screenshot(). */ - screenshot?: Maybe; + screenshot?: Maybe /** The theme slug is used to internally match themes. Theme slugs can have subdirectories like: my-theme/sub-theme. This field is equivalent to WP_Theme->get_stylesheet(). */ - slug?: Maybe; + slug?: Maybe /** URI for the author/company website. This field is equivalent to WP_Theme->get( "Tags" ). */ - tags?: Maybe>>; + tags?: Maybe>> /** A URI if the theme has a website associated with it. The Theme URI is handy for directing users to a theme site for support etc. This field is equivalent to WP_Theme->get( "ThemeURI" ). */ - themeUri?: Maybe; + themeUri?: Maybe /** The current version of the theme. This field is equivalent to WP_Theme->get( "Version" ). */ - version?: Maybe; -}; + version?: Maybe +} /** Connection to Theme Nodes */ export type ThemeConnection = { /** A list of edges (relational context) between RootQuery and connected Theme Nodes */ - edges: Array; + edges: Array /** A list of connected Theme Nodes */ - nodes: Array; + nodes: Array /** Information about pagination in a connection. */ - pageInfo: ThemeConnectionPageInfo; -}; + pageInfo: ThemeConnectionPageInfo +} /** Edge between a Node and a connected Theme */ export type ThemeConnectionEdge = { /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; + cursor?: Maybe /** The connected Theme Node */ - node: Theme; -}; + node: Theme +} /** Page Info on the connected ThemeConnectionEdge */ export type ThemeConnectionPageInfo = { /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; + endCursor?: Maybe /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; + hasNextPage: Scalars['Boolean']['output'] /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; + hasPreviousPage: Scalars['Boolean']['output'] /** Raw schema for page */ - seo?: Maybe; + seo?: Maybe /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; + startCursor?: Maybe +} /** Any node that has a URI */ export type UniformResourceIdentifiable = { /** The globally unique ID for the object */ - id: Scalars['ID']['output']; + id: Scalars['ID']['output'] /** Whether the node is a Comment */ - isComment: Scalars['Boolean']['output']; + isComment: Scalars['Boolean']['output'] /** Whether the node is a Content Node */ - isContentNode: Scalars['Boolean']['output']; + isContentNode: Scalars['Boolean']['output'] /** Whether the node represents the front page. */ - isFrontPage: Scalars['Boolean']['output']; + isFrontPage: Scalars['Boolean']['output'] /** Whether the node represents the blog page. */ - isPostsPage: Scalars['Boolean']['output']; + isPostsPage: Scalars['Boolean']['output'] /** Whether the node is a Term */ - isTermNode: Scalars['Boolean']['output']; + isTermNode: Scalars['Boolean']['output'] /** The unique resource identifier path */ - uri?: Maybe; -}; + uri?: Maybe +} /** Input for the updateAboutItem mutation. */ export type UpdateAboutItemInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** The content of the object */ - content?: InputMaybe; + content?: InputMaybe /** The date of the object. Preferable to enter as year/month/day (e.g. 01/31/2017) as it will rearrange date as fit if it is not specified. Incomplete dates may have unintended results for example, "2017" as the input will use current date with timestamp 20:17 */ - date?: InputMaybe; + date?: InputMaybe /** The ID of the AboutItem object */ - id: Scalars['ID']['input']; + id: Scalars['ID']['input'] /** Override the edit lock when another user is editing the post */ - ignoreEditLock?: InputMaybe; - language?: InputMaybe; + ignoreEditLock?: InputMaybe + language?: InputMaybe /** A field used for ordering posts. This is typically used with nav menu items or for special ordering of hierarchical content types. */ - menuOrder?: InputMaybe; + menuOrder?: InputMaybe /** The password used to protect the content of the object */ - password?: InputMaybe; + password?: InputMaybe /** The slug of the object */ - slug?: InputMaybe; + slug?: InputMaybe /** The status of the object */ - status?: InputMaybe; + status?: InputMaybe /** The title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** The payload for the updateAboutItem mutation. */ export type UpdateAboutItemPayload = { - __typename?: 'UpdateAboutItemPayload'; + __typename?: 'UpdateAboutItemPayload' /** The Post object mutation type. */ - aboutItem?: Maybe; + aboutItem?: Maybe /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; -}; + clientMutationId?: Maybe +} /** Input for the updateCategory mutation. */ export type UpdateCategoryInput = { /** The slug that the category will be an alias of */ - aliasOf?: InputMaybe; + aliasOf?: InputMaybe /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** The description of the category object */ - description?: InputMaybe; + description?: InputMaybe /** The ID of the category object to update */ - id: Scalars['ID']['input']; - language?: InputMaybe; + id: Scalars['ID']['input'] + language?: InputMaybe /** The name of the category object to mutate */ - name?: InputMaybe; + name?: InputMaybe /** The ID of the category that should be set as the parent */ - parentId?: InputMaybe; + parentId?: InputMaybe /** If this argument exists then the slug will be checked to see if it is not an existing valid term. If that check succeeds (it is not a valid term), then it is added and the term id is given. If it fails, then a check is made to whether the taxonomy is hierarchical and the parent argument is not empty. If the second check succeeds, the term will be inserted and the term id will be given. If the slug argument is empty, then it will be calculated from the term name. */ - slug?: InputMaybe; -}; + slug?: InputMaybe +} /** The payload for the updateCategory mutation. */ export type UpdateCategoryPayload = { - __typename?: 'UpdateCategoryPayload'; + __typename?: 'UpdateCategoryPayload' /** The created category */ - category?: Maybe; + category?: Maybe /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; -}; + clientMutationId?: Maybe +} /** Input for the updateComment mutation. */ export type UpdateCommentInput = { /** The approval status of the comment. */ - approved?: InputMaybe; + approved?: InputMaybe /** The name of the comment's author. */ - author?: InputMaybe; + author?: InputMaybe /** The email of the comment's author. */ - authorEmail?: InputMaybe; + authorEmail?: InputMaybe /** The url of the comment's author. */ - authorUrl?: InputMaybe; + authorUrl?: InputMaybe /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** The database ID of the post object the comment belongs to. */ - commentOn?: InputMaybe; + commentOn?: InputMaybe /** Content of the comment. */ - content?: InputMaybe; + content?: InputMaybe /** The date of the object. Preferable to enter as year/month/day ( e.g. 01/31/2017 ) as it will rearrange date as fit if it is not specified. Incomplete dates may have unintended results for example, "2017" as the input will use current date with timestamp 20:17 */ - date?: InputMaybe; + date?: InputMaybe /** The ID of the comment being updated. */ - id: Scalars['ID']['input']; + id: Scalars['ID']['input'] /** Parent comment ID of current comment. */ - parent?: InputMaybe; + parent?: InputMaybe /** The approval status of the comment */ - status?: InputMaybe; + status?: InputMaybe /** Type of comment. */ - type?: InputMaybe; -}; + type?: InputMaybe +} /** The payload for the updateComment mutation. */ export type UpdateCommentPayload = { - __typename?: 'UpdateCommentPayload'; + __typename?: 'UpdateCommentPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The comment that was created */ - comment?: Maybe; + comment?: Maybe /** Whether the mutation succeeded. If the comment is not approved, the server will not return the comment to a non authenticated user, but a success message can be returned if the create succeeded, and the client can optimistically add the comment to the client cache */ - success?: Maybe; -}; + success?: Maybe +} /** Input for the updateCommonFragment mutation. */ export type UpdateCommonFragmentInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** The content of the object */ - content?: InputMaybe; + content?: InputMaybe /** The date of the object. Preferable to enter as year/month/day (e.g. 01/31/2017) as it will rearrange date as fit if it is not specified. Incomplete dates may have unintended results for example, "2017" as the input will use current date with timestamp 20:17 */ - date?: InputMaybe; + date?: InputMaybe /** The ID of the CommonFragment object */ - id: Scalars['ID']['input']; + id: Scalars['ID']['input'] /** Override the edit lock when another user is editing the post */ - ignoreEditLock?: InputMaybe; + ignoreEditLock?: InputMaybe /** A field used for ordering posts. This is typically used with nav menu items or for special ordering of hierarchical content types. */ - menuOrder?: InputMaybe; + menuOrder?: InputMaybe /** The password used to protect the content of the object */ - password?: InputMaybe; + password?: InputMaybe /** The slug of the object */ - slug?: InputMaybe; + slug?: InputMaybe /** The status of the object */ - status?: InputMaybe; + status?: InputMaybe /** The title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** The payload for the updateCommonFragment mutation. */ export type UpdateCommonFragmentPayload = { - __typename?: 'UpdateCommonFragmentPayload'; + __typename?: 'UpdateCommonFragmentPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The Post object mutation type. */ - commonFragment?: Maybe; -}; + commonFragment?: Maybe +} /** Input for the updateConfidentialityPolicy mutation. */ export type UpdateConfidentialityPolicyInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** The content of the object */ - content?: InputMaybe; + content?: InputMaybe /** The date of the object. Preferable to enter as year/month/day (e.g. 01/31/2017) as it will rearrange date as fit if it is not specified. Incomplete dates may have unintended results for example, "2017" as the input will use current date with timestamp 20:17 */ - date?: InputMaybe; + date?: InputMaybe /** The ID of the confidentialityPolicy object */ - id: Scalars['ID']['input']; + id: Scalars['ID']['input'] /** Override the edit lock when another user is editing the post */ - ignoreEditLock?: InputMaybe; + ignoreEditLock?: InputMaybe /** A field used for ordering posts. This is typically used with nav menu items or for special ordering of hierarchical content types. */ - menuOrder?: InputMaybe; + menuOrder?: InputMaybe /** The password used to protect the content of the object */ - password?: InputMaybe; + password?: InputMaybe /** The slug of the object */ - slug?: InputMaybe; + slug?: InputMaybe /** The status of the object */ - status?: InputMaybe; + status?: InputMaybe /** The title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** The payload for the updateConfidentialityPolicy mutation. */ export type UpdateConfidentialityPolicyPayload = { - __typename?: 'UpdateConfidentialityPolicyPayload'; + __typename?: 'UpdateConfidentialityPolicyPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The Post object mutation type. */ - confidentialityPolicy?: Maybe; -}; + confidentialityPolicy?: Maybe +} /** Input for the updateContact mutation. */ export type UpdateContactInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** The content of the object */ - content?: InputMaybe; + content?: InputMaybe /** The date of the object. Preferable to enter as year/month/day (e.g. 01/31/2017) as it will rearrange date as fit if it is not specified. Incomplete dates may have unintended results for example, "2017" as the input will use current date with timestamp 20:17 */ - date?: InputMaybe; + date?: InputMaybe /** The ID of the Contact object */ - id: Scalars['ID']['input']; + id: Scalars['ID']['input'] /** Override the edit lock when another user is editing the post */ - ignoreEditLock?: InputMaybe; + ignoreEditLock?: InputMaybe /** A field used for ordering posts. This is typically used with nav menu items or for special ordering of hierarchical content types. */ - menuOrder?: InputMaybe; + menuOrder?: InputMaybe /** The password used to protect the content of the object */ - password?: InputMaybe; + password?: InputMaybe /** The slug of the object */ - slug?: InputMaybe; + slug?: InputMaybe /** The status of the object */ - status?: InputMaybe; + status?: InputMaybe /** The title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** Input for the updateContactItem mutation. */ export type UpdateContactItemInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** The content of the object */ - content?: InputMaybe; + content?: InputMaybe /** The date of the object. Preferable to enter as year/month/day (e.g. 01/31/2017) as it will rearrange date as fit if it is not specified. Incomplete dates may have unintended results for example, "2017" as the input will use current date with timestamp 20:17 */ - date?: InputMaybe; + date?: InputMaybe /** The ID of the ContactItem object */ - id: Scalars['ID']['input']; + id: Scalars['ID']['input'] /** Override the edit lock when another user is editing the post */ - ignoreEditLock?: InputMaybe; - language?: InputMaybe; + ignoreEditLock?: InputMaybe + language?: InputMaybe /** A field used for ordering posts. This is typically used with nav menu items or for special ordering of hierarchical content types. */ - menuOrder?: InputMaybe; + menuOrder?: InputMaybe /** The password used to protect the content of the object */ - password?: InputMaybe; + password?: InputMaybe /** The slug of the object */ - slug?: InputMaybe; + slug?: InputMaybe /** The status of the object */ - status?: InputMaybe; + status?: InputMaybe /** The title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** The payload for the updateContactItem mutation. */ export type UpdateContactItemPayload = { - __typename?: 'UpdateContactItemPayload'; + __typename?: 'UpdateContactItemPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The Post object mutation type. */ - contactItem?: Maybe; -}; + contactItem?: Maybe +} /** The payload for the updateContact mutation. */ export type UpdateContactPayload = { - __typename?: 'UpdateContactPayload'; + __typename?: 'UpdateContactPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The Post object mutation type. */ - contact?: Maybe; -}; + contact?: Maybe +} /** Input for the updateFeedbackItem mutation. */ export type UpdateFeedbackItemInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** The content of the object */ - content?: InputMaybe; + content?: InputMaybe /** The date of the object. Preferable to enter as year/month/day (e.g. 01/31/2017) as it will rearrange date as fit if it is not specified. Incomplete dates may have unintended results for example, "2017" as the input will use current date with timestamp 20:17 */ - date?: InputMaybe; + date?: InputMaybe /** The ID of the FeedbackItem object */ - id: Scalars['ID']['input']; + id: Scalars['ID']['input'] /** Override the edit lock when another user is editing the post */ - ignoreEditLock?: InputMaybe; - language?: InputMaybe; + ignoreEditLock?: InputMaybe + language?: InputMaybe /** A field used for ordering posts. This is typically used with nav menu items or for special ordering of hierarchical content types. */ - menuOrder?: InputMaybe; + menuOrder?: InputMaybe /** The password used to protect the content of the object */ - password?: InputMaybe; + password?: InputMaybe /** The slug of the object */ - slug?: InputMaybe; + slug?: InputMaybe /** The status of the object */ - status?: InputMaybe; + status?: InputMaybe /** The title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** The payload for the updateFeedbackItem mutation. */ export type UpdateFeedbackItemPayload = { - __typename?: 'UpdateFeedbackItemPayload'; + __typename?: 'UpdateFeedbackItemPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The Post object mutation type. */ - feedbackItem?: Maybe; -}; + feedbackItem?: Maybe +} /** Input for the updateFooterItem mutation. */ export type UpdateFooterItemInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** The content of the object */ - content?: InputMaybe; + content?: InputMaybe /** The date of the object. Preferable to enter as year/month/day (e.g. 01/31/2017) as it will rearrange date as fit if it is not specified. Incomplete dates may have unintended results for example, "2017" as the input will use current date with timestamp 20:17 */ - date?: InputMaybe; + date?: InputMaybe /** The ID of the FooterItem object */ - id: Scalars['ID']['input']; + id: Scalars['ID']['input'] /** Override the edit lock when another user is editing the post */ - ignoreEditLock?: InputMaybe; - language?: InputMaybe; + ignoreEditLock?: InputMaybe + language?: InputMaybe /** A field used for ordering posts. This is typically used with nav menu items or for special ordering of hierarchical content types. */ - menuOrder?: InputMaybe; + menuOrder?: InputMaybe /** The password used to protect the content of the object */ - password?: InputMaybe; + password?: InputMaybe /** The slug of the object */ - slug?: InputMaybe; + slug?: InputMaybe /** The status of the object */ - status?: InputMaybe; + status?: InputMaybe /** The title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** The payload for the updateFooterItem mutation. */ export type UpdateFooterItemPayload = { - __typename?: 'UpdateFooterItemPayload'; + __typename?: 'UpdateFooterItemPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The Post object mutation type. */ - footerItem?: Maybe; -}; + footerItem?: Maybe +} /** Input for the updateFragment mutation. */ export type UpdateFragmentInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** The content of the object */ - content?: InputMaybe; + content?: InputMaybe /** The date of the object. Preferable to enter as year/month/day (e.g. 01/31/2017) as it will rearrange date as fit if it is not specified. Incomplete dates may have unintended results for example, "2017" as the input will use current date with timestamp 20:17 */ - date?: InputMaybe; + date?: InputMaybe /** The excerpt of the object */ - excerpt?: InputMaybe; + excerpt?: InputMaybe /** The ID of the Fragment object */ - id: Scalars['ID']['input']; + id: Scalars['ID']['input'] /** Override the edit lock when another user is editing the post */ - ignoreEditLock?: InputMaybe; - language?: InputMaybe; + ignoreEditLock?: InputMaybe + language?: InputMaybe /** A field used for ordering posts. This is typically used with nav menu items or for special ordering of hierarchical content types. */ - menuOrder?: InputMaybe; + menuOrder?: InputMaybe /** The password used to protect the content of the object */ - password?: InputMaybe; + password?: InputMaybe /** The slug of the object */ - slug?: InputMaybe; + slug?: InputMaybe /** The status of the object */ - status?: InputMaybe; + status?: InputMaybe /** The title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** The payload for the updateFragment mutation. */ export type UpdateFragmentPayload = { - __typename?: 'UpdateFragmentPayload'; + __typename?: 'UpdateFragmentPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The Post object mutation type. */ - fragment?: Maybe; -}; + fragment?: Maybe +} /** Input for the updateHeroItem mutation. */ export type UpdateHeroItemInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** The content of the object */ - content?: InputMaybe; + content?: InputMaybe /** The date of the object. Preferable to enter as year/month/day (e.g. 01/31/2017) as it will rearrange date as fit if it is not specified. Incomplete dates may have unintended results for example, "2017" as the input will use current date with timestamp 20:17 */ - date?: InputMaybe; + date?: InputMaybe /** The ID of the HeroItem object */ - id: Scalars['ID']['input']; + id: Scalars['ID']['input'] /** Override the edit lock when another user is editing the post */ - ignoreEditLock?: InputMaybe; - language?: InputMaybe; + ignoreEditLock?: InputMaybe + language?: InputMaybe /** A field used for ordering posts. This is typically used with nav menu items or for special ordering of hierarchical content types. */ - menuOrder?: InputMaybe; + menuOrder?: InputMaybe /** The password used to protect the content of the object */ - password?: InputMaybe; + password?: InputMaybe /** The slug of the object */ - slug?: InputMaybe; + slug?: InputMaybe /** The status of the object */ - status?: InputMaybe; + status?: InputMaybe /** The title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** The payload for the updateHeroItem mutation. */ export type UpdateHeroItemPayload = { - __typename?: 'UpdateHeroItemPayload'; + __typename?: 'UpdateHeroItemPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The Post object mutation type. */ - heroItem?: Maybe; -}; + heroItem?: Maybe +} /** Input for the updateMain mutation. */ export type UpdateMainInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** The content of the object */ - content?: InputMaybe; + content?: InputMaybe /** The date of the object. Preferable to enter as year/month/day (e.g. 01/31/2017) as it will rearrange date as fit if it is not specified. Incomplete dates may have unintended results for example, "2017" as the input will use current date with timestamp 20:17 */ - date?: InputMaybe; + date?: InputMaybe /** The ID of the Main object */ - id: Scalars['ID']['input']; + id: Scalars['ID']['input'] /** Override the edit lock when another user is editing the post */ - ignoreEditLock?: InputMaybe; + ignoreEditLock?: InputMaybe /** A field used for ordering posts. This is typically used with nav menu items or for special ordering of hierarchical content types. */ - menuOrder?: InputMaybe; + menuOrder?: InputMaybe /** The password used to protect the content of the object */ - password?: InputMaybe; + password?: InputMaybe /** The slug of the object */ - slug?: InputMaybe; + slug?: InputMaybe /** The status of the object */ - status?: InputMaybe; + status?: InputMaybe /** The title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** The payload for the updateMain mutation. */ export type UpdateMainPayload = { - __typename?: 'UpdateMainPayload'; + __typename?: 'UpdateMainPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The Post object mutation type. */ - main?: Maybe
; -}; + main?: Maybe
+} /** Input for the updateMediaItem mutation. */ export type UpdateMediaItemInput = { /** Alternative text to display when mediaItem is not displayed */ - altText?: InputMaybe; + altText?: InputMaybe /** The userId to assign as the author of the mediaItem */ - authorId?: InputMaybe; + authorId?: InputMaybe /** The caption for the mediaItem */ - caption?: InputMaybe; + caption?: InputMaybe /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** The comment status for the mediaItem */ - commentStatus?: InputMaybe; + commentStatus?: InputMaybe /** The date of the mediaItem */ - date?: InputMaybe; + date?: InputMaybe /** The date (in GMT zone) of the mediaItem */ - dateGmt?: InputMaybe; + dateGmt?: InputMaybe /** Description of the mediaItem */ - description?: InputMaybe; + description?: InputMaybe /** The file name of the mediaItem */ - filePath?: InputMaybe; + filePath?: InputMaybe /** The file type of the mediaItem */ - fileType?: InputMaybe; + fileType?: InputMaybe /** The ID of the mediaItem object */ - id: Scalars['ID']['input']; - language?: InputMaybe; + id: Scalars['ID']['input'] + language?: InputMaybe /** The ID of the parent object */ - parentId?: InputMaybe; + parentId?: InputMaybe /** The ping status for the mediaItem */ - pingStatus?: InputMaybe; + pingStatus?: InputMaybe /** The slug of the mediaItem */ - slug?: InputMaybe; + slug?: InputMaybe /** The status of the mediaItem */ - status?: InputMaybe; + status?: InputMaybe /** The title of the mediaItem */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** The payload for the updateMediaItem mutation. */ export type UpdateMediaItemPayload = { - __typename?: 'UpdateMediaItemPayload'; + __typename?: 'UpdateMediaItemPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The MediaItem object mutation type. */ - mediaItem?: Maybe; -}; + mediaItem?: Maybe +} /** Input for the updateMessenger mutation. */ export type UpdateMessengerInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** The content of the object */ - content?: InputMaybe; + content?: InputMaybe /** The date of the object. Preferable to enter as year/month/day (e.g. 01/31/2017) as it will rearrange date as fit if it is not specified. Incomplete dates may have unintended results for example, "2017" as the input will use current date with timestamp 20:17 */ - date?: InputMaybe; + date?: InputMaybe /** The ID of the Messenger object */ - id: Scalars['ID']['input']; + id: Scalars['ID']['input'] /** Override the edit lock when another user is editing the post */ - ignoreEditLock?: InputMaybe; + ignoreEditLock?: InputMaybe /** A field used for ordering posts. This is typically used with nav menu items or for special ordering of hierarchical content types. */ - menuOrder?: InputMaybe; + menuOrder?: InputMaybe /** The password used to protect the content of the object */ - password?: InputMaybe; + password?: InputMaybe /** The slug of the object */ - slug?: InputMaybe; + slug?: InputMaybe /** The status of the object */ - status?: InputMaybe; + status?: InputMaybe /** The title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** The payload for the updateMessenger mutation. */ export type UpdateMessengerPayload = { - __typename?: 'UpdateMessengerPayload'; + __typename?: 'UpdateMessengerPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The Post object mutation type. */ - messenger?: Maybe; -}; + messenger?: Maybe +} /** Input for the updateNavigationItem mutation. */ export type UpdateNavigationItemInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** The content of the object */ - content?: InputMaybe; + content?: InputMaybe /** The date of the object. Preferable to enter as year/month/day (e.g. 01/31/2017) as it will rearrange date as fit if it is not specified. Incomplete dates may have unintended results for example, "2017" as the input will use current date with timestamp 20:17 */ - date?: InputMaybe; + date?: InputMaybe /** The ID of the NavigationItem object */ - id: Scalars['ID']['input']; + id: Scalars['ID']['input'] /** Override the edit lock when another user is editing the post */ - ignoreEditLock?: InputMaybe; - language?: InputMaybe; + ignoreEditLock?: InputMaybe + language?: InputMaybe /** A field used for ordering posts. This is typically used with nav menu items or for special ordering of hierarchical content types. */ - menuOrder?: InputMaybe; + menuOrder?: InputMaybe /** The password used to protect the content of the object */ - password?: InputMaybe; + password?: InputMaybe /** The slug of the object */ - slug?: InputMaybe; + slug?: InputMaybe /** The status of the object */ - status?: InputMaybe; + status?: InputMaybe /** The title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** The payload for the updateNavigationItem mutation. */ export type UpdateNavigationItemPayload = { - __typename?: 'UpdateNavigationItemPayload'; + __typename?: 'UpdateNavigationItemPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The Post object mutation type. */ - navigationItem?: Maybe; -}; + navigationItem?: Maybe +} /** Input for the updateNotFound mutation. */ export type UpdateNotFoundInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** The content of the object */ - content?: InputMaybe; + content?: InputMaybe /** The date of the object. Preferable to enter as year/month/day (e.g. 01/31/2017) as it will rearrange date as fit if it is not specified. Incomplete dates may have unintended results for example, "2017" as the input will use current date with timestamp 20:17 */ - date?: InputMaybe; + date?: InputMaybe /** The ID of the NotFound object */ - id: Scalars['ID']['input']; + id: Scalars['ID']['input'] /** Override the edit lock when another user is editing the post */ - ignoreEditLock?: InputMaybe; + ignoreEditLock?: InputMaybe /** A field used for ordering posts. This is typically used with nav menu items or for special ordering of hierarchical content types. */ - menuOrder?: InputMaybe; + menuOrder?: InputMaybe /** The password used to protect the content of the object */ - password?: InputMaybe; + password?: InputMaybe /** The slug of the object */ - slug?: InputMaybe; + slug?: InputMaybe /** The status of the object */ - status?: InputMaybe; + status?: InputMaybe /** The title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** The payload for the updateNotFound mutation. */ export type UpdateNotFoundPayload = { - __typename?: 'UpdateNotFoundPayload'; + __typename?: 'UpdateNotFoundPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The Post object mutation type. */ - notFound?: Maybe; -}; + notFound?: Maybe +} /** Input for the updatePage mutation. */ export type UpdatePageInput = { /** The userId to assign as the author of the object */ - authorId?: InputMaybe; + authorId?: InputMaybe /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** The comment status for the object */ - commentStatus?: InputMaybe; + commentStatus?: InputMaybe /** The content of the object */ - content?: InputMaybe; + content?: InputMaybe /** The date of the object. Preferable to enter as year/month/day (e.g. 01/31/2017) as it will rearrange date as fit if it is not specified. Incomplete dates may have unintended results for example, "2017" as the input will use current date with timestamp 20:17 */ - date?: InputMaybe; + date?: InputMaybe /** The ID of the page object */ - id: Scalars['ID']['input']; + id: Scalars['ID']['input'] /** Override the edit lock when another user is editing the post */ - ignoreEditLock?: InputMaybe; - language?: InputMaybe; + ignoreEditLock?: InputMaybe + language?: InputMaybe /** A field used for ordering posts. This is typically used with nav menu items or for special ordering of hierarchical content types. */ - menuOrder?: InputMaybe; + menuOrder?: InputMaybe /** The ID of the parent object */ - parentId?: InputMaybe; + parentId?: InputMaybe /** The password used to protect the content of the object */ - password?: InputMaybe; + password?: InputMaybe /** The slug of the object */ - slug?: InputMaybe; + slug?: InputMaybe /** The status of the object */ - status?: InputMaybe; + status?: InputMaybe /** The title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** The payload for the updatePage mutation. */ export type UpdatePagePayload = { - __typename?: 'UpdatePagePayload'; + __typename?: 'UpdatePagePayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The Post object mutation type. */ - page?: Maybe; -}; + page?: Maybe +} /** Input for the updatePostFormat mutation. */ export type UpdatePostFormatInput = { /** The slug that the post_format will be an alias of */ - aliasOf?: InputMaybe; + aliasOf?: InputMaybe /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** The description of the post_format object */ - description?: InputMaybe; + description?: InputMaybe /** The ID of the postFormat object to update */ - id: Scalars['ID']['input']; + id: Scalars['ID']['input'] /** The name of the post_format object to mutate */ - name?: InputMaybe; + name?: InputMaybe /** If this argument exists then the slug will be checked to see if it is not an existing valid term. If that check succeeds (it is not a valid term), then it is added and the term id is given. If it fails, then a check is made to whether the taxonomy is hierarchical and the parent argument is not empty. If the second check succeeds, the term will be inserted and the term id will be given. If the slug argument is empty, then it will be calculated from the term name. */ - slug?: InputMaybe; -}; + slug?: InputMaybe +} /** The payload for the updatePostFormat mutation. */ export type UpdatePostFormatPayload = { - __typename?: 'UpdatePostFormatPayload'; + __typename?: 'UpdatePostFormatPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The created post_format */ - postFormat?: Maybe; -}; + postFormat?: Maybe +} /** Input for the updatePost mutation. */ export type UpdatePostInput = { /** The userId to assign as the author of the object */ - authorId?: InputMaybe; + authorId?: InputMaybe /** Set connections between the post and categories */ - categories?: InputMaybe; + categories?: InputMaybe /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** The comment status for the object */ - commentStatus?: InputMaybe; + commentStatus?: InputMaybe /** The content of the object */ - content?: InputMaybe; + content?: InputMaybe /** The date of the object. Preferable to enter as year/month/day (e.g. 01/31/2017) as it will rearrange date as fit if it is not specified. Incomplete dates may have unintended results for example, "2017" as the input will use current date with timestamp 20:17 */ - date?: InputMaybe; + date?: InputMaybe /** The excerpt of the object */ - excerpt?: InputMaybe; + excerpt?: InputMaybe /** The ID of the post object */ - id: Scalars['ID']['input']; + id: Scalars['ID']['input'] /** Override the edit lock when another user is editing the post */ - ignoreEditLock?: InputMaybe; - language?: InputMaybe; + ignoreEditLock?: InputMaybe + language?: InputMaybe /** A field used for ordering posts. This is typically used with nav menu items or for special ordering of hierarchical content types. */ - menuOrder?: InputMaybe; + menuOrder?: InputMaybe /** The password used to protect the content of the object */ - password?: InputMaybe; + password?: InputMaybe /** The ping status for the object */ - pingStatus?: InputMaybe; + pingStatus?: InputMaybe /** URLs that have been pinged. */ - pinged?: InputMaybe>>; + pinged?: InputMaybe>> /** Set connections between the post and postFormats */ - postFormats?: InputMaybe; + postFormats?: InputMaybe /** The slug of the object */ - slug?: InputMaybe; + slug?: InputMaybe /** The status of the object */ - status?: InputMaybe; + status?: InputMaybe /** Set connections between the post and tags */ - tags?: InputMaybe; + tags?: InputMaybe /** The title of the object */ - title?: InputMaybe; + title?: InputMaybe /** URLs queued to be pinged. */ - toPing?: InputMaybe>>; -}; + toPing?: InputMaybe>> +} /** The payload for the updatePost mutation. */ export type UpdatePostPayload = { - __typename?: 'UpdatePostPayload'; + __typename?: 'UpdatePostPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The Post object mutation type. */ - post?: Maybe; -}; + post?: Maybe +} /** Input for the updatePrivacyPolicyItem mutation. */ export type UpdatePrivacyPolicyItemInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** The content of the object */ - content?: InputMaybe; + content?: InputMaybe /** The date of the object. Preferable to enter as year/month/day (e.g. 01/31/2017) as it will rearrange date as fit if it is not specified. Incomplete dates may have unintended results for example, "2017" as the input will use current date with timestamp 20:17 */ - date?: InputMaybe; + date?: InputMaybe /** The ID of the PrivacyPolicyItem object */ - id: Scalars['ID']['input']; + id: Scalars['ID']['input'] /** Override the edit lock when another user is editing the post */ - ignoreEditLock?: InputMaybe; - language?: InputMaybe; + ignoreEditLock?: InputMaybe + language?: InputMaybe /** A field used for ordering posts. This is typically used with nav menu items or for special ordering of hierarchical content types. */ - menuOrder?: InputMaybe; + menuOrder?: InputMaybe /** The password used to protect the content of the object */ - password?: InputMaybe; + password?: InputMaybe /** The slug of the object */ - slug?: InputMaybe; + slug?: InputMaybe /** The status of the object */ - status?: InputMaybe; + status?: InputMaybe /** The title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** The payload for the updatePrivacyPolicyItem mutation. */ export type UpdatePrivacyPolicyItemPayload = { - __typename?: 'UpdatePrivacyPolicyItemPayload'; + __typename?: 'UpdatePrivacyPolicyItemPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The Post object mutation type. */ - privacyPolicyItem?: Maybe; -}; + privacyPolicyItem?: Maybe +} /** Input for the updateRecruit mutation. */ export type UpdateRecruitInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** The content of the object */ - content?: InputMaybe; + content?: InputMaybe /** The date of the object. Preferable to enter as year/month/day (e.g. 01/31/2017) as it will rearrange date as fit if it is not specified. Incomplete dates may have unintended results for example, "2017" as the input will use current date with timestamp 20:17 */ - date?: InputMaybe; + date?: InputMaybe /** The ID of the Recruit object */ - id: Scalars['ID']['input']; + id: Scalars['ID']['input'] /** Override the edit lock when another user is editing the post */ - ignoreEditLock?: InputMaybe; - language?: InputMaybe; + ignoreEditLock?: InputMaybe + language?: InputMaybe /** A field used for ordering posts. This is typically used with nav menu items or for special ordering of hierarchical content types. */ - menuOrder?: InputMaybe; + menuOrder?: InputMaybe /** The password used to protect the content of the object */ - password?: InputMaybe; + password?: InputMaybe /** Set connections between the Recruit and recruitLists */ - recruitLists?: InputMaybe; + recruitLists?: InputMaybe /** The slug of the object */ - slug?: InputMaybe; + slug?: InputMaybe /** The status of the object */ - status?: InputMaybe; + status?: InputMaybe /** The title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** Input for the updateRecruitList mutation. */ export type UpdateRecruitListInput = { /** The slug that the recruit_list will be an alias of */ - aliasOf?: InputMaybe; + aliasOf?: InputMaybe /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** The description of the recruit_list object */ - description?: InputMaybe; + description?: InputMaybe /** The ID of the recruitList object to update */ - id: Scalars['ID']['input']; - language?: InputMaybe; + id: Scalars['ID']['input'] + language?: InputMaybe /** The name of the recruit_list object to mutate */ - name?: InputMaybe; + name?: InputMaybe /** If this argument exists then the slug will be checked to see if it is not an existing valid term. If that check succeeds (it is not a valid term), then it is added and the term id is given. If it fails, then a check is made to whether the taxonomy is hierarchical and the parent argument is not empty. If the second check succeeds, the term will be inserted and the term id will be given. If the slug argument is empty, then it will be calculated from the term name. */ - slug?: InputMaybe; -}; + slug?: InputMaybe +} /** The payload for the updateRecruitList mutation. */ export type UpdateRecruitListPayload = { - __typename?: 'UpdateRecruitListPayload'; + __typename?: 'UpdateRecruitListPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The created recruit_list */ - recruitList?: Maybe; -}; + recruitList?: Maybe +} /** The payload for the updateRecruit mutation. */ export type UpdateRecruitPayload = { - __typename?: 'UpdateRecruitPayload'; + __typename?: 'UpdateRecruitPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The Post object mutation type. */ - recruit?: Maybe; -}; + recruit?: Maybe +} /** Input for the updateReview mutation. */ export type UpdateReviewInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** The content of the object */ - content?: InputMaybe; + content?: InputMaybe /** The date of the object. Preferable to enter as year/month/day (e.g. 01/31/2017) as it will rearrange date as fit if it is not specified. Incomplete dates may have unintended results for example, "2017" as the input will use current date with timestamp 20:17 */ - date?: InputMaybe; + date?: InputMaybe /** The ID of the review object */ - id: Scalars['ID']['input']; + id: Scalars['ID']['input'] /** Override the edit lock when another user is editing the post */ - ignoreEditLock?: InputMaybe; - language?: InputMaybe; + ignoreEditLock?: InputMaybe + language?: InputMaybe /** A field used for ordering posts. This is typically used with nav menu items or for special ordering of hierarchical content types. */ - menuOrder?: InputMaybe; + menuOrder?: InputMaybe /** The password used to protect the content of the object */ - password?: InputMaybe; + password?: InputMaybe /** Set connections between the review and reviewLists */ - reviewLists?: InputMaybe; + reviewLists?: InputMaybe /** The slug of the object */ - slug?: InputMaybe; + slug?: InputMaybe /** The status of the object */ - status?: InputMaybe; + status?: InputMaybe /** The title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** Input for the updateReviewList mutation. */ export type UpdateReviewListInput = { /** The slug that the review_list will be an alias of */ - aliasOf?: InputMaybe; + aliasOf?: InputMaybe /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** The description of the review_list object */ - description?: InputMaybe; + description?: InputMaybe /** The ID of the reviewList object to update */ - id: Scalars['ID']['input']; - language?: InputMaybe; + id: Scalars['ID']['input'] + language?: InputMaybe /** The name of the review_list object to mutate */ - name?: InputMaybe; + name?: InputMaybe /** The ID of the review_list that should be set as the parent */ - parentId?: InputMaybe; + parentId?: InputMaybe /** If this argument exists then the slug will be checked to see if it is not an existing valid term. If that check succeeds (it is not a valid term), then it is added and the term id is given. If it fails, then a check is made to whether the taxonomy is hierarchical and the parent argument is not empty. If the second check succeeds, the term will be inserted and the term id will be given. If the slug argument is empty, then it will be calculated from the term name. */ - slug?: InputMaybe; -}; + slug?: InputMaybe +} /** The payload for the updateReviewList mutation. */ export type UpdateReviewListPayload = { - __typename?: 'UpdateReviewListPayload'; + __typename?: 'UpdateReviewListPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The created review_list */ - reviewList?: Maybe; -}; + reviewList?: Maybe +} /** The payload for the updateReview mutation. */ export type UpdateReviewPayload = { - __typename?: 'UpdateReviewPayload'; + __typename?: 'UpdateReviewPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The Post object mutation type. */ - review?: Maybe; -}; + review?: Maybe +} /** Input for the updateSettings mutation. */ export type UpdateSettingsInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** Разрешить оставлять комментарии к новым записям. */ - discussionSettingsDefaultCommentStatus?: InputMaybe; + discussionSettingsDefaultCommentStatus?: InputMaybe /** Разрешить ссылки оповещения с других блогов (уведомления и обратные ссылки) на новые статьи. */ - discussionSettingsDefaultPingStatus?: InputMaybe; + discussionSettingsDefaultPingStatus?: InputMaybe /** Общий формат даты. */ - generalSettingsDateFormat?: InputMaybe; + generalSettingsDateFormat?: InputMaybe /** Слоган сайта. */ - generalSettingsDescription?: InputMaybe; + generalSettingsDescription?: InputMaybe /** Этот адрес используется в целях администрирования. Например, для уведомления о новых пользователях. */ - generalSettingsEmail?: InputMaybe; + generalSettingsEmail?: InputMaybe /** Код локали WordPress. */ - generalSettingsLanguage?: InputMaybe; + generalSettingsLanguage?: InputMaybe /** Первый день недели. */ - generalSettingsStartOfWeek?: InputMaybe; + generalSettingsStartOfWeek?: InputMaybe /** Общий формат времени. */ - generalSettingsTimeFormat?: InputMaybe; + generalSettingsTimeFormat?: InputMaybe /** Город в той же временной зоне что и у вас. */ - generalSettingsTimezone?: InputMaybe; + generalSettingsTimezone?: InputMaybe /** Название сайта. */ - generalSettingsTitle?: InputMaybe; + generalSettingsTitle?: InputMaybe /** Адрес сайта (URL) */ - generalSettingsUrl?: InputMaybe; + generalSettingsUrl?: InputMaybe /** ID страницы, на которой должны отображаться последние записи */ - readingSettingsPageForPosts?: InputMaybe; + readingSettingsPageForPosts?: InputMaybe /** ID страницы, которая должна отображаться на главной странице */ - readingSettingsPageOnFront?: InputMaybe; + readingSettingsPageOnFront?: InputMaybe /** Максимум страниц блога для показа. */ - readingSettingsPostsPerPage?: InputMaybe; + readingSettingsPostsPerPage?: InputMaybe /** Что показать на главной странице */ - readingSettingsShowOnFront?: InputMaybe; + readingSettingsShowOnFront?: InputMaybe /** Рубрика для записей по умолчанию. */ - writingSettingsDefaultCategory?: InputMaybe; + writingSettingsDefaultCategory?: InputMaybe /** Формат записей по умолчанию. */ - writingSettingsDefaultPostFormat?: InputMaybe; + writingSettingsDefaultPostFormat?: InputMaybe /** Преобразовывать смайлики наподобие :-) и :-P в картинки при показе. */ - writingSettingsUseSmilies?: InputMaybe; -}; + writingSettingsUseSmilies?: InputMaybe +} /** The payload for the updateSettings mutation. */ export type UpdateSettingsPayload = { - __typename?: 'UpdateSettingsPayload'; + __typename?: 'UpdateSettingsPayload' /** Update all settings. */ - allSettings?: Maybe; + allSettings?: Maybe /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** Update the DiscussionSettings setting. */ - discussionSettings?: Maybe; + discussionSettings?: Maybe /** Update the GeneralSettings setting. */ - generalSettings?: Maybe; + generalSettings?: Maybe /** Update the ReadingSettings setting. */ - readingSettings?: Maybe; + readingSettings?: Maybe /** Update the WritingSettings setting. */ - writingSettings?: Maybe; -}; + writingSettings?: Maybe +} /** Input for the updateSkillCategory mutation. */ export type UpdateSkillCategoryInput = { /** The slug that the skill_list will be an alias of */ - aliasOf?: InputMaybe; + aliasOf?: InputMaybe /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** The description of the skill_list object */ - description?: InputMaybe; + description?: InputMaybe /** The ID of the SkillCategory object to update */ - id: Scalars['ID']['input']; - language?: InputMaybe; + id: Scalars['ID']['input'] + language?: InputMaybe /** The name of the skill_list object to mutate */ - name?: InputMaybe; + name?: InputMaybe /** The ID of the skill_list that should be set as the parent */ - parentId?: InputMaybe; + parentId?: InputMaybe /** If this argument exists then the slug will be checked to see if it is not an existing valid term. If that check succeeds (it is not a valid term), then it is added and the term id is given. If it fails, then a check is made to whether the taxonomy is hierarchical and the parent argument is not empty. If the second check succeeds, the term will be inserted and the term id will be given. If the slug argument is empty, then it will be calculated from the term name. */ - slug?: InputMaybe; -}; + slug?: InputMaybe +} /** The payload for the updateSkillCategory mutation. */ export type UpdateSkillCategoryPayload = { - __typename?: 'UpdateSkillCategoryPayload'; + __typename?: 'UpdateSkillCategoryPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The created skill_list */ - skillCategory?: Maybe; -}; + skillCategory?: Maybe +} /** Input for the updateSkill mutation. */ export type UpdateSkillInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** The content of the object */ - content?: InputMaybe; + content?: InputMaybe /** The date of the object. Preferable to enter as year/month/day (e.g. 01/31/2017) as it will rearrange date as fit if it is not specified. Incomplete dates may have unintended results for example, "2017" as the input will use current date with timestamp 20:17 */ - date?: InputMaybe; + date?: InputMaybe /** The ID of the Skill object */ - id: Scalars['ID']['input']; + id: Scalars['ID']['input'] /** Override the edit lock when another user is editing the post */ - ignoreEditLock?: InputMaybe; - language?: InputMaybe; + ignoreEditLock?: InputMaybe + language?: InputMaybe /** A field used for ordering posts. This is typically used with nav menu items or for special ordering of hierarchical content types. */ - menuOrder?: InputMaybe; + menuOrder?: InputMaybe /** The ID of the parent object */ - parentId?: InputMaybe; + parentId?: InputMaybe /** The password used to protect the content of the object */ - password?: InputMaybe; + password?: InputMaybe /** Set connections between the Skill and SkillCategories */ - skillCategories?: InputMaybe; + skillCategories?: InputMaybe /** The slug of the object */ - slug?: InputMaybe; + slug?: InputMaybe /** The status of the object */ - status?: InputMaybe; + status?: InputMaybe /** The title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** The payload for the updateSkill mutation. */ export type UpdateSkillPayload = { - __typename?: 'UpdateSkillPayload'; + __typename?: 'UpdateSkillPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The Post object mutation type. */ - skill?: Maybe; -}; + skill?: Maybe +} /** Input for the updateSocialNetwork mutation. */ export type UpdateSocialNetworkInput = { /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** The content of the object */ - content?: InputMaybe; + content?: InputMaybe /** The date of the object. Preferable to enter as year/month/day (e.g. 01/31/2017) as it will rearrange date as fit if it is not specified. Incomplete dates may have unintended results for example, "2017" as the input will use current date with timestamp 20:17 */ - date?: InputMaybe; + date?: InputMaybe /** The ID of the SocialNetwork object */ - id: Scalars['ID']['input']; + id: Scalars['ID']['input'] /** Override the edit lock when another user is editing the post */ - ignoreEditLock?: InputMaybe; + ignoreEditLock?: InputMaybe /** A field used for ordering posts. This is typically used with nav menu items or for special ordering of hierarchical content types. */ - menuOrder?: InputMaybe; + menuOrder?: InputMaybe /** The password used to protect the content of the object */ - password?: InputMaybe; + password?: InputMaybe /** The slug of the object */ - slug?: InputMaybe; + slug?: InputMaybe /** The status of the object */ - status?: InputMaybe; + status?: InputMaybe /** The title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** The payload for the updateSocialNetwork mutation. */ export type UpdateSocialNetworkPayload = { - __typename?: 'UpdateSocialNetworkPayload'; + __typename?: 'UpdateSocialNetworkPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The Post object mutation type. */ - socialNetwork?: Maybe; -}; + socialNetwork?: Maybe +} /** Input for the updateTag mutation. */ export type UpdateTagInput = { /** The slug that the post_tag will be an alias of */ - aliasOf?: InputMaybe; + aliasOf?: InputMaybe /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** The description of the post_tag object */ - description?: InputMaybe; + description?: InputMaybe /** The ID of the tag object to update */ - id: Scalars['ID']['input']; - language?: InputMaybe; + id: Scalars['ID']['input'] + language?: InputMaybe /** The name of the post_tag object to mutate */ - name?: InputMaybe; + name?: InputMaybe /** If this argument exists then the slug will be checked to see if it is not an existing valid term. If that check succeeds (it is not a valid term), then it is added and the term id is given. If it fails, then a check is made to whether the taxonomy is hierarchical and the parent argument is not empty. If the second check succeeds, the term will be inserted and the term id will be given. If the slug argument is empty, then it will be calculated from the term name. */ - slug?: InputMaybe; -}; + slug?: InputMaybe +} /** The payload for the updateTag mutation. */ export type UpdateTagPayload = { - __typename?: 'UpdateTagPayload'; + __typename?: 'UpdateTagPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The created post_tag */ - tag?: Maybe; -}; + tag?: Maybe +} /** Input for the updateUser mutation. */ export type UpdateUserInput = { /** User's AOL IM account. */ - aim?: InputMaybe; + aim?: InputMaybe /** This is an ID that can be passed to a mutation by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: InputMaybe; + clientMutationId?: InputMaybe /** A string containing content about the user. */ - description?: InputMaybe; + description?: InputMaybe /** A string that will be shown on the site. Defaults to user's username. It is likely that you will want to change this, for both appearance and security through obscurity (that is if you dont use and delete the default admin user). */ - displayName?: InputMaybe; + displayName?: InputMaybe /** A string containing the user's email address. */ - email?: InputMaybe; + email?: InputMaybe /** The user's first name. */ - firstName?: InputMaybe; + firstName?: InputMaybe /** The ID of the user */ - id: Scalars['ID']['input']; + id: Scalars['ID']['input'] /** User's Jabber account. */ - jabber?: InputMaybe; + jabber?: InputMaybe /** The user's last name. */ - lastName?: InputMaybe; + lastName?: InputMaybe /** User's locale. */ - locale?: InputMaybe; + locale?: InputMaybe /** A string that contains a URL-friendly name for the user. The default is the user's username. */ - nicename?: InputMaybe; + nicename?: InputMaybe /** The user's nickname, defaults to the user's username. */ - nickname?: InputMaybe; + nickname?: InputMaybe /** A string that contains the plain text password for the user. */ - password?: InputMaybe; + password?: InputMaybe /** The date the user registered. Format is Y-m-d H:i:s. */ - registered?: InputMaybe; + registered?: InputMaybe /** A string for whether to enable the rich editor or not. False if not empty. */ - richEditing?: InputMaybe; + richEditing?: InputMaybe /** An array of roles to be assigned to the user. */ - roles?: InputMaybe>>; + roles?: InputMaybe>> /** A string containing the user's URL for the user's web site. */ - websiteUrl?: InputMaybe; + websiteUrl?: InputMaybe /** User's Yahoo IM account. */ - yim?: InputMaybe; -}; + yim?: InputMaybe +} /** The payload for the updateUser mutation. */ export type UpdateUserPayload = { - __typename?: 'UpdateUserPayload'; + __typename?: 'UpdateUserPayload' /** If a 'clientMutationId' input is provided to the mutation, it will be returned as output on the mutation. This ID can be used by the client to track the progress of mutations and catch possible duplicate mutation submissions. */ - clientMutationId?: Maybe; + clientMutationId?: Maybe /** The User object mutation type. */ - user?: Maybe; -}; + user?: Maybe +} /** A User object */ -export type User = Commenter & DatabaseIdentifier & Node & UniformResourceIdentifiable & { - __typename?: 'User'; - /** Avatar object for user. The avatar object can be retrieved in different sizes by specifying the size argument. */ - avatar?: Maybe; - /** User metadata option name. Usually it will be "wp_capabilities". */ - capKey?: Maybe; - /** A list of capabilities (permissions) granted to the user */ - capabilities?: Maybe>>; - /** Connection between the User type and the Comment type */ - comments?: Maybe; - /** Identifies the primary key from the database. */ - databaseId: Scalars['Int']['output']; - /** Description of the user. */ - description?: Maybe; - /** Email address of the user. This is equivalent to the WP_User->user_email property. */ - email?: Maybe; - /** Connection between the User type and the EnqueuedScript type */ - enqueuedScripts?: Maybe; - /** Connection between the User type and the EnqueuedStylesheet type */ - enqueuedStylesheets?: Maybe; - /** A complete list of capabilities including capabilities inherited from a role. This is equivalent to the array keys of WP_User->allcaps. */ - extraCapabilities?: Maybe>>; - /** First name of the user. This is equivalent to the WP_User->user_first_name property. */ - firstName?: Maybe; - /** The globally unique identifier for the user object. */ - id: Scalars['ID']['output']; - /** Whether the node is a Comment */ - isComment: Scalars['Boolean']['output']; - /** Whether the node is a Content Node */ - isContentNode: Scalars['Boolean']['output']; - /** Whether the node represents the front page. */ - isFrontPage: Scalars['Boolean']['output']; - /** Whether the node represents the blog page. */ - isPostsPage: Scalars['Boolean']['output']; - /** Whether the object is restricted from the current viewer */ - isRestricted?: Maybe; - /** Whether the node is a Term */ - isTermNode: Scalars['Boolean']['output']; - /** Last name of the user. This is equivalent to the WP_User->user_last_name property. */ - lastName?: Maybe; - /** The preferred language locale set for the user. Value derived from get_user_locale(). */ - locale?: Maybe; - /** Connection between the User type and the mediaItem type */ - mediaItems?: Maybe; - /** Display name of the user. This is equivalent to the WP_User->display_name property. */ - name?: Maybe; - /** The nicename for the user. This field is equivalent to WP_User->user_nicename */ - nicename?: Maybe; - /** Nickname of the user. */ - nickname?: Maybe; - /** Connection between the User type and the page type */ - pages?: Maybe; - /** Connection between the User type and the post type */ - posts?: Maybe; - /** The date the user registered or was created. The field follows a full ISO8601 date string format. */ - registeredDate?: Maybe; - /** Connection between the User and Revisions authored by the user */ - revisions?: Maybe; - /** Connection between the User type and the UserRole type */ - roles?: Maybe; - /** The Yoast SEO data of a user */ - seo?: Maybe; - /** Whether the Toolbar should be displayed when the user is viewing the site. */ - shouldShowAdminToolbar?: Maybe; - /** The slug for the user. This field is equivalent to WP_User->user_nicename */ - slug?: Maybe; - /** The unique resource identifier path */ - uri?: Maybe; - /** A website url that is associated with the user. */ - url?: Maybe; - /** - * The Id of the user. Equivalent to WP_User->ID - * @deprecated Deprecated in favor of the databaseId field - */ - userId?: Maybe; - /** Username for the user. This field is equivalent to WP_User->user_login. */ - username?: Maybe; -}; - +export type User = Commenter & + DatabaseIdentifier & + Node & + UniformResourceIdentifiable & { + __typename?: 'User' + /** Avatar object for user. The avatar object can be retrieved in different sizes by specifying the size argument. */ + avatar?: Maybe + /** User metadata option name. Usually it will be "wp_capabilities". */ + capKey?: Maybe + /** A list of capabilities (permissions) granted to the user */ + capabilities?: Maybe>> + /** Connection between the User type and the Comment type */ + comments?: Maybe + /** Identifies the primary key from the database. */ + databaseId: Scalars['Int']['output'] + /** Description of the user. */ + description?: Maybe + /** Email address of the user. This is equivalent to the WP_User->user_email property. */ + email?: Maybe + /** Connection between the User type and the EnqueuedScript type */ + enqueuedScripts?: Maybe + /** Connection between the User type and the EnqueuedStylesheet type */ + enqueuedStylesheets?: Maybe + /** A complete list of capabilities including capabilities inherited from a role. This is equivalent to the array keys of WP_User->allcaps. */ + extraCapabilities?: Maybe>> + /** First name of the user. This is equivalent to the WP_User->user_first_name property. */ + firstName?: Maybe + /** The globally unique identifier for the user object. */ + id: Scalars['ID']['output'] + /** Whether the node is a Comment */ + isComment: Scalars['Boolean']['output'] + /** Whether the node is a Content Node */ + isContentNode: Scalars['Boolean']['output'] + /** Whether the node represents the front page. */ + isFrontPage: Scalars['Boolean']['output'] + /** Whether the node represents the blog page. */ + isPostsPage: Scalars['Boolean']['output'] + /** Whether the object is restricted from the current viewer */ + isRestricted?: Maybe + /** Whether the node is a Term */ + isTermNode: Scalars['Boolean']['output'] + /** Last name of the user. This is equivalent to the WP_User->user_last_name property. */ + lastName?: Maybe + /** The preferred language locale set for the user. Value derived from get_user_locale(). */ + locale?: Maybe + /** Connection between the User type and the mediaItem type */ + mediaItems?: Maybe + /** Display name of the user. This is equivalent to the WP_User->display_name property. */ + name?: Maybe + /** The nicename for the user. This field is equivalent to WP_User->user_nicename */ + nicename?: Maybe + /** Nickname of the user. */ + nickname?: Maybe + /** Connection between the User type and the page type */ + pages?: Maybe + /** Connection between the User type and the post type */ + posts?: Maybe + /** The date the user registered or was created. The field follows a full ISO8601 date string format. */ + registeredDate?: Maybe + /** Connection between the User and Revisions authored by the user */ + revisions?: Maybe + /** Connection between the User type and the UserRole type */ + roles?: Maybe + /** The Yoast SEO data of a user */ + seo?: Maybe + /** Whether the Toolbar should be displayed when the user is viewing the site. */ + shouldShowAdminToolbar?: Maybe + /** The slug for the user. This field is equivalent to WP_User->user_nicename */ + slug?: Maybe + /** The unique resource identifier path */ + uri?: Maybe + /** A website url that is associated with the user. */ + url?: Maybe + /** + * The Id of the user. Equivalent to WP_User->ID + * @deprecated Deprecated in favor of the databaseId field + */ + userId?: Maybe + /** Username for the user. This field is equivalent to WP_User->user_login. */ + username?: Maybe + } /** A User object */ export type UserAvatarArgs = { - forceDefault?: InputMaybe; - rating?: InputMaybe; - size?: InputMaybe; -}; - + forceDefault?: InputMaybe + rating?: InputMaybe + size?: InputMaybe +} /** A User object */ export type UserCommentsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** A User object */ export type UserEnqueuedScriptsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** A User object */ export type UserEnqueuedStylesheetsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** A User object */ export type UserMediaItemsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** A User object */ export type UserPagesArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** A User object */ export type UserPostsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** A User object */ export type UserRevisionsArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; - where?: InputMaybe; -}; - + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe + where?: InputMaybe +} /** A User object */ export type UserRolesArgs = { - after?: InputMaybe; - before?: InputMaybe; - first?: InputMaybe; - last?: InputMaybe; -}; + after?: InputMaybe + before?: InputMaybe + first?: InputMaybe + last?: InputMaybe +} /** Connection to User Nodes */ export type UserConnection = { /** A list of edges (relational context) between RootQuery and connected User Nodes */ - edges: Array; + edges: Array /** A list of connected User Nodes */ - nodes: Array; + nodes: Array /** Information about pagination in a connection. */ - pageInfo: UserConnectionPageInfo; -}; + pageInfo: UserConnectionPageInfo +} /** Edge between a Node and a connected User */ export type UserConnectionEdge = { /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; + cursor?: Maybe /** The connected User Node */ - node: User; -}; + node: User +} /** Page Info on the connected UserConnectionEdge */ export type UserConnectionPageInfo = { /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; + endCursor?: Maybe /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; + hasNextPage: Scalars['Boolean']['output'] /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; + hasPreviousPage: Scalars['Boolean']['output'] /** Raw schema for page */ - seo?: Maybe; + seo?: Maybe /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; + startCursor?: Maybe +} /** The Type of Identifier used to fetch a single User node. To be used along with the "id" field. Default is "ID". */ export enum UserNodeIdTypeEnum { @@ -19894,55 +20250,55 @@ export enum UserNodeIdTypeEnum { /** The URI for the node */ Uri = 'URI', /** The username the User uses to login with */ - Username = 'USERNAME' + Username = 'USERNAME', } /** A user role object */ export type UserRole = Node & { - __typename?: 'UserRole'; + __typename?: 'UserRole' /** The capabilities that belong to this role */ - capabilities?: Maybe>>; + capabilities?: Maybe>> /** The display name of the role */ - displayName?: Maybe; + displayName?: Maybe /** The globally unique identifier for the user role object. */ - id: Scalars['ID']['output']; + id: Scalars['ID']['output'] /** Whether the object is restricted from the current viewer */ - isRestricted?: Maybe; + isRestricted?: Maybe /** The registered name of the role */ - name?: Maybe; -}; + name?: Maybe +} /** Connection to UserRole Nodes */ export type UserRoleConnection = { /** A list of edges (relational context) between RootQuery and connected UserRole Nodes */ - edges: Array; + edges: Array /** A list of connected UserRole Nodes */ - nodes: Array; + nodes: Array /** Information about pagination in a connection. */ - pageInfo: UserRoleConnectionPageInfo; -}; + pageInfo: UserRoleConnectionPageInfo +} /** Edge between a Node and a connected UserRole */ export type UserRoleConnectionEdge = { /** Opaque reference to the nodes position in the connection. Value can be used with pagination args. */ - cursor?: Maybe; + cursor?: Maybe /** The connected UserRole Node */ - node: UserRole; -}; + node: UserRole +} /** Page Info on the connected UserRoleConnectionEdge */ export type UserRoleConnectionPageInfo = { /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; + endCursor?: Maybe /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; + hasNextPage: Scalars['Boolean']['output'] /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; + hasPreviousPage: Scalars['Boolean']['output'] /** Raw schema for page */ - seo?: Maybe; + seo?: Maybe /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; + startCursor?: Maybe +} /** Names of available user roles */ export enum UserRoleEnum { @@ -19963,548 +20319,580 @@ export enum UserRoleEnum { /** User role with specific capabilities */ ShopManager = 'SHOP_MANAGER', /** User role with specific capabilities */ - Subscriber = 'SUBSCRIBER' + Subscriber = 'SUBSCRIBER', } /** Connection between the User type and the Comment type */ -export type UserToCommentConnection = CommentConnection & Connection & { - __typename?: 'UserToCommentConnection'; - /** Edges for the UserToCommentConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: UserToCommentConnectionPageInfo; -}; +export type UserToCommentConnection = CommentConnection & + Connection & { + __typename?: 'UserToCommentConnection' + /** Edges for the UserToCommentConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: UserToCommentConnectionPageInfo + } /** An edge in a connection */ -export type UserToCommentConnectionEdge = CommentConnectionEdge & Edge & { - __typename?: 'UserToCommentConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: Comment; -}; +export type UserToCommentConnectionEdge = CommentConnectionEdge & + Edge & { + __typename?: 'UserToCommentConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: Comment + } /** Page Info on the "UserToCommentConnection" */ -export type UserToCommentConnectionPageInfo = CommentConnectionPageInfo & PageInfo & WpPageInfo & { - __typename?: 'UserToCommentConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type UserToCommentConnectionPageInfo = CommentConnectionPageInfo & + PageInfo & + WpPageInfo & { + __typename?: 'UserToCommentConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the UserToCommentConnection connection */ export type UserToCommentConnectionWhereArgs = { /** Comment author email address. */ - authorEmail?: InputMaybe; + authorEmail?: InputMaybe /** Array of author IDs to include comments for. */ - authorIn?: InputMaybe>>; + authorIn?: InputMaybe>> /** Array of author IDs to exclude comments for. */ - authorNotIn?: InputMaybe>>; + authorNotIn?: InputMaybe>> /** Comment author URL. */ - authorUrl?: InputMaybe; + authorUrl?: InputMaybe /** Array of comment IDs to include. */ - commentIn?: InputMaybe>>; + commentIn?: InputMaybe>> /** Array of IDs of users whose unapproved comments will be returned by the query regardless of status. */ - commentNotIn?: InputMaybe>>; + commentNotIn?: InputMaybe>> /** Include comments of a given type. */ - commentType?: InputMaybe; + commentType?: InputMaybe /** Include comments from a given array of comment types. */ - commentTypeIn?: InputMaybe>>; + commentTypeIn?: InputMaybe>> /** Exclude comments from a given array of comment types. */ - commentTypeNotIn?: InputMaybe; + commentTypeNotIn?: InputMaybe /** Content object author ID to limit results by. */ - contentAuthor?: InputMaybe>>; + contentAuthor?: InputMaybe>> /** Array of author IDs to retrieve comments for. */ - contentAuthorIn?: InputMaybe>>; + contentAuthorIn?: InputMaybe>> /** Array of author IDs *not* to retrieve comments for. */ - contentAuthorNotIn?: InputMaybe>>; + contentAuthorNotIn?: InputMaybe>> /** Limit results to those affiliated with a given content object ID. */ - contentId?: InputMaybe; + contentId?: InputMaybe /** Array of content object IDs to include affiliated comments for. */ - contentIdIn?: InputMaybe>>; + contentIdIn?: InputMaybe>> /** Array of content object IDs to exclude affiliated comments for. */ - contentIdNotIn?: InputMaybe>>; + contentIdNotIn?: InputMaybe>> /** Content object name (i.e. slug ) to retrieve affiliated comments for. */ - contentName?: InputMaybe; + contentName?: InputMaybe /** Content Object parent ID to retrieve affiliated comments for. */ - contentParent?: InputMaybe; + contentParent?: InputMaybe /** Array of content object statuses to retrieve affiliated comments for. Pass 'any' to match any value. */ - contentStatus?: InputMaybe>>; + contentStatus?: InputMaybe>> /** Content object type or array of types to retrieve affiliated comments for. Pass 'any' to match any value. */ - contentType?: InputMaybe>>; + contentType?: InputMaybe>> /** Array of IDs or email addresses of users whose unapproved comments will be returned by the query regardless of $status. Default empty */ - includeUnapproved?: InputMaybe>>; + includeUnapproved?: InputMaybe>> /** Karma score to retrieve matching comments for. */ - karma?: InputMaybe; + karma?: InputMaybe /** The cardinality of the order of the connection */ - order?: InputMaybe; + order?: InputMaybe /** Field to order the comments by. */ - orderby?: InputMaybe; + orderby?: InputMaybe /** Parent ID of comment to retrieve children of. */ - parent?: InputMaybe; + parent?: InputMaybe /** Array of parent IDs of comments to retrieve children for. */ - parentIn?: InputMaybe>>; + parentIn?: InputMaybe>> /** Array of parent IDs of comments *not* to retrieve children for. */ - parentNotIn?: InputMaybe>>; + parentNotIn?: InputMaybe>> /** Search term(s) to retrieve matching comments for. */ - search?: InputMaybe; + search?: InputMaybe /** Comment status to limit results by. */ - status?: InputMaybe; + status?: InputMaybe /** Include comments for a specific user ID. */ - userId?: InputMaybe; -}; + userId?: InputMaybe +} /** Connection between the User type and the EnqueuedScript type */ -export type UserToEnqueuedScriptConnection = Connection & EnqueuedScriptConnection & { - __typename?: 'UserToEnqueuedScriptConnection'; - /** Edges for the UserToEnqueuedScriptConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: UserToEnqueuedScriptConnectionPageInfo; -}; +export type UserToEnqueuedScriptConnection = Connection & + EnqueuedScriptConnection & { + __typename?: 'UserToEnqueuedScriptConnection' + /** Edges for the UserToEnqueuedScriptConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: UserToEnqueuedScriptConnectionPageInfo + } /** An edge in a connection */ -export type UserToEnqueuedScriptConnectionEdge = Edge & EnqueuedScriptConnectionEdge & { - __typename?: 'UserToEnqueuedScriptConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: EnqueuedScript; -}; +export type UserToEnqueuedScriptConnectionEdge = Edge & + EnqueuedScriptConnectionEdge & { + __typename?: 'UserToEnqueuedScriptConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: EnqueuedScript + } /** Page Info on the "UserToEnqueuedScriptConnection" */ -export type UserToEnqueuedScriptConnectionPageInfo = EnqueuedScriptConnectionPageInfo & PageInfo & WpPageInfo & { - __typename?: 'UserToEnqueuedScriptConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type UserToEnqueuedScriptConnectionPageInfo = EnqueuedScriptConnectionPageInfo & + PageInfo & + WpPageInfo & { + __typename?: 'UserToEnqueuedScriptConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Connection between the User type and the EnqueuedStylesheet type */ -export type UserToEnqueuedStylesheetConnection = Connection & EnqueuedStylesheetConnection & { - __typename?: 'UserToEnqueuedStylesheetConnection'; - /** Edges for the UserToEnqueuedStylesheetConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: UserToEnqueuedStylesheetConnectionPageInfo; -}; +export type UserToEnqueuedStylesheetConnection = Connection & + EnqueuedStylesheetConnection & { + __typename?: 'UserToEnqueuedStylesheetConnection' + /** Edges for the UserToEnqueuedStylesheetConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: UserToEnqueuedStylesheetConnectionPageInfo + } /** An edge in a connection */ -export type UserToEnqueuedStylesheetConnectionEdge = Edge & EnqueuedStylesheetConnectionEdge & { - __typename?: 'UserToEnqueuedStylesheetConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: EnqueuedStylesheet; -}; +export type UserToEnqueuedStylesheetConnectionEdge = Edge & + EnqueuedStylesheetConnectionEdge & { + __typename?: 'UserToEnqueuedStylesheetConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: EnqueuedStylesheet + } /** Page Info on the "UserToEnqueuedStylesheetConnection" */ -export type UserToEnqueuedStylesheetConnectionPageInfo = EnqueuedStylesheetConnectionPageInfo & PageInfo & WpPageInfo & { - __typename?: 'UserToEnqueuedStylesheetConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type UserToEnqueuedStylesheetConnectionPageInfo = EnqueuedStylesheetConnectionPageInfo & + PageInfo & + WpPageInfo & { + __typename?: 'UserToEnqueuedStylesheetConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Connection between the User type and the mediaItem type */ -export type UserToMediaItemConnection = Connection & MediaItemConnection & { - __typename?: 'UserToMediaItemConnection'; - /** Edges for the UserToMediaItemConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: UserToMediaItemConnectionPageInfo; -}; +export type UserToMediaItemConnection = Connection & + MediaItemConnection & { + __typename?: 'UserToMediaItemConnection' + /** Edges for the UserToMediaItemConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: UserToMediaItemConnectionPageInfo + } /** An edge in a connection */ -export type UserToMediaItemConnectionEdge = Edge & MediaItemConnectionEdge & { - __typename?: 'UserToMediaItemConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: MediaItem; -}; +export type UserToMediaItemConnectionEdge = Edge & + MediaItemConnectionEdge & { + __typename?: 'UserToMediaItemConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: MediaItem + } /** Page Info on the "UserToMediaItemConnection" */ -export type UserToMediaItemConnectionPageInfo = MediaItemConnectionPageInfo & PageInfo & WpPageInfo & { - __typename?: 'UserToMediaItemConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type UserToMediaItemConnectionPageInfo = MediaItemConnectionPageInfo & + PageInfo & + WpPageInfo & { + __typename?: 'UserToMediaItemConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the UserToMediaItemConnection connection */ export type UserToMediaItemConnectionWhereArgs = { /** The user that's connected as the author of the object. Use the userId for the author object. */ - author?: InputMaybe; + author?: InputMaybe /** Find objects connected to author(s) in the array of author's userIds */ - authorIn?: InputMaybe>>; + authorIn?: InputMaybe>> /** Find objects connected to the author by the author's nicename */ - authorName?: InputMaybe; + authorName?: InputMaybe /** Find objects NOT connected to author(s) in the array of author's userIds */ - authorNotIn?: InputMaybe>>; + authorNotIn?: InputMaybe>> /** Filter the connection based on dates */ - dateQuery?: InputMaybe; + dateQuery?: InputMaybe /** True for objects with passwords; False for objects without passwords; null for all objects with or without passwords */ - hasPassword?: InputMaybe; + hasPassword?: InputMaybe /** Specific database ID of the object */ - id?: InputMaybe; + id?: InputMaybe /** Array of IDs for the objects to retrieve */ - in?: InputMaybe>>; + in?: InputMaybe>> /** Get objects with a specific mimeType property */ - mimeType?: InputMaybe; + mimeType?: InputMaybe /** Slug / post_name of the object */ - name?: InputMaybe; + name?: InputMaybe /** Specify objects to retrieve. Use slugs */ - nameIn?: InputMaybe>>; + nameIn?: InputMaybe>> /** Specify IDs NOT to retrieve. If this is used in the same query as "in", it will be ignored */ - notIn?: InputMaybe>>; + notIn?: InputMaybe>> /** What parameter to use to order the objects by. */ - orderby?: InputMaybe>>; + orderby?: InputMaybe>> /** Use ID to return only children. Use 0 to return only top-level items */ - parent?: InputMaybe; + parent?: InputMaybe /** Specify objects whose parent is in an array */ - parentIn?: InputMaybe>>; + parentIn?: InputMaybe>> /** Specify posts whose parent is not in an array */ - parentNotIn?: InputMaybe>>; + parentNotIn?: InputMaybe>> /** Show posts with a specific password. */ - password?: InputMaybe; + password?: InputMaybe /** Show Posts based on a keyword search */ - search?: InputMaybe; + search?: InputMaybe /** Retrieve posts where post status is in an array. */ - stati?: InputMaybe>>; + stati?: InputMaybe>> /** Show posts with a specific status. */ - status?: InputMaybe; + status?: InputMaybe /** Title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** Connection between the User type and the page type */ -export type UserToPageConnection = Connection & PageConnection & { - __typename?: 'UserToPageConnection'; - /** Edges for the UserToPageConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: UserToPageConnectionPageInfo; -}; +export type UserToPageConnection = Connection & + PageConnection & { + __typename?: 'UserToPageConnection' + /** Edges for the UserToPageConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: UserToPageConnectionPageInfo + } /** An edge in a connection */ -export type UserToPageConnectionEdge = Edge & PageConnectionEdge & { - __typename?: 'UserToPageConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: Page; -}; +export type UserToPageConnectionEdge = Edge & + PageConnectionEdge & { + __typename?: 'UserToPageConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: Page + } /** Page Info on the "UserToPageConnection" */ -export type UserToPageConnectionPageInfo = PageConnectionPageInfo & PageInfo & WpPageInfo & { - __typename?: 'UserToPageConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type UserToPageConnectionPageInfo = PageConnectionPageInfo & + PageInfo & + WpPageInfo & { + __typename?: 'UserToPageConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the UserToPageConnection connection */ export type UserToPageConnectionWhereArgs = { /** The user that's connected as the author of the object. Use the userId for the author object. */ - author?: InputMaybe; + author?: InputMaybe /** Find objects connected to author(s) in the array of author's userIds */ - authorIn?: InputMaybe>>; + authorIn?: InputMaybe>> /** Find objects connected to the author by the author's nicename */ - authorName?: InputMaybe; + authorName?: InputMaybe /** Find objects NOT connected to author(s) in the array of author's userIds */ - authorNotIn?: InputMaybe>>; + authorNotIn?: InputMaybe>> /** Filter the connection based on dates */ - dateQuery?: InputMaybe; + dateQuery?: InputMaybe /** True for objects with passwords; False for objects without passwords; null for all objects with or without passwords */ - hasPassword?: InputMaybe; + hasPassword?: InputMaybe /** Specific database ID of the object */ - id?: InputMaybe; + id?: InputMaybe /** Array of IDs for the objects to retrieve */ - in?: InputMaybe>>; + in?: InputMaybe>> /** Get objects with a specific mimeType property */ - mimeType?: InputMaybe; + mimeType?: InputMaybe /** Slug / post_name of the object */ - name?: InputMaybe; + name?: InputMaybe /** Specify objects to retrieve. Use slugs */ - nameIn?: InputMaybe>>; + nameIn?: InputMaybe>> /** Specify IDs NOT to retrieve. If this is used in the same query as "in", it will be ignored */ - notIn?: InputMaybe>>; + notIn?: InputMaybe>> /** What parameter to use to order the objects by. */ - orderby?: InputMaybe>>; + orderby?: InputMaybe>> /** Use ID to return only children. Use 0 to return only top-level items */ - parent?: InputMaybe; + parent?: InputMaybe /** Specify objects whose parent is in an array */ - parentIn?: InputMaybe>>; + parentIn?: InputMaybe>> /** Specify posts whose parent is not in an array */ - parentNotIn?: InputMaybe>>; + parentNotIn?: InputMaybe>> /** Show posts with a specific password. */ - password?: InputMaybe; + password?: InputMaybe /** Show Posts based on a keyword search */ - search?: InputMaybe; + search?: InputMaybe /** Retrieve posts where post status is in an array. */ - stati?: InputMaybe>>; + stati?: InputMaybe>> /** Show posts with a specific status. */ - status?: InputMaybe; + status?: InputMaybe /** Title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** Connection between the User type and the post type */ -export type UserToPostConnection = Connection & PostConnection & { - __typename?: 'UserToPostConnection'; - /** Edges for the UserToPostConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: UserToPostConnectionPageInfo; -}; +export type UserToPostConnection = Connection & + PostConnection & { + __typename?: 'UserToPostConnection' + /** Edges for the UserToPostConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: UserToPostConnectionPageInfo + } /** An edge in a connection */ -export type UserToPostConnectionEdge = Edge & PostConnectionEdge & { - __typename?: 'UserToPostConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: Post; -}; +export type UserToPostConnectionEdge = Edge & + PostConnectionEdge & { + __typename?: 'UserToPostConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: Post + } /** Page Info on the "UserToPostConnection" */ -export type UserToPostConnectionPageInfo = PageInfo & PostConnectionPageInfo & WpPageInfo & { - __typename?: 'UserToPostConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type UserToPostConnectionPageInfo = PageInfo & + PostConnectionPageInfo & + WpPageInfo & { + __typename?: 'UserToPostConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the UserToPostConnection connection */ export type UserToPostConnectionWhereArgs = { /** The user that's connected as the author of the object. Use the userId for the author object. */ - author?: InputMaybe; + author?: InputMaybe /** Find objects connected to author(s) in the array of author's userIds */ - authorIn?: InputMaybe>>; + authorIn?: InputMaybe>> /** Find objects connected to the author by the author's nicename */ - authorName?: InputMaybe; + authorName?: InputMaybe /** Find objects NOT connected to author(s) in the array of author's userIds */ - authorNotIn?: InputMaybe>>; + authorNotIn?: InputMaybe>> /** Category ID */ - categoryId?: InputMaybe; + categoryId?: InputMaybe /** Array of category IDs, used to display objects from one category OR another */ - categoryIn?: InputMaybe>>; + categoryIn?: InputMaybe>> /** Use Category Slug */ - categoryName?: InputMaybe; + categoryName?: InputMaybe /** Array of category IDs, used to display objects from one category OR another */ - categoryNotIn?: InputMaybe>>; + categoryNotIn?: InputMaybe>> /** Filter the connection based on dates */ - dateQuery?: InputMaybe; + dateQuery?: InputMaybe /** True for objects with passwords; False for objects without passwords; null for all objects with or without passwords */ - hasPassword?: InputMaybe; + hasPassword?: InputMaybe /** Specific database ID of the object */ - id?: InputMaybe; + id?: InputMaybe /** Array of IDs for the objects to retrieve */ - in?: InputMaybe>>; + in?: InputMaybe>> /** Get objects with a specific mimeType property */ - mimeType?: InputMaybe; + mimeType?: InputMaybe /** Slug / post_name of the object */ - name?: InputMaybe; + name?: InputMaybe /** Specify objects to retrieve. Use slugs */ - nameIn?: InputMaybe>>; + nameIn?: InputMaybe>> /** Specify IDs NOT to retrieve. If this is used in the same query as "in", it will be ignored */ - notIn?: InputMaybe>>; + notIn?: InputMaybe>> /** What parameter to use to order the objects by. */ - orderby?: InputMaybe>>; + orderby?: InputMaybe>> /** Use ID to return only children. Use 0 to return only top-level items */ - parent?: InputMaybe; + parent?: InputMaybe /** Specify objects whose parent is in an array */ - parentIn?: InputMaybe>>; + parentIn?: InputMaybe>> /** Specify posts whose parent is not in an array */ - parentNotIn?: InputMaybe>>; + parentNotIn?: InputMaybe>> /** Show posts with a specific password. */ - password?: InputMaybe; + password?: InputMaybe /** Show Posts based on a keyword search */ - search?: InputMaybe; + search?: InputMaybe /** Retrieve posts where post status is in an array. */ - stati?: InputMaybe>>; + stati?: InputMaybe>> /** Show posts with a specific status. */ - status?: InputMaybe; + status?: InputMaybe /** Tag Slug */ - tag?: InputMaybe; + tag?: InputMaybe /** Use Tag ID */ - tagId?: InputMaybe; + tagId?: InputMaybe /** Array of tag IDs, used to display objects from one tag OR another */ - tagIn?: InputMaybe>>; + tagIn?: InputMaybe>> /** Array of tag IDs, used to display objects from one tag OR another */ - tagNotIn?: InputMaybe>>; + tagNotIn?: InputMaybe>> /** Array of tag slugs, used to display objects from one tag AND another */ - tagSlugAnd?: InputMaybe>>; + tagSlugAnd?: InputMaybe>> /** Array of tag slugs, used to include objects in ANY specified tags */ - tagSlugIn?: InputMaybe>>; + tagSlugIn?: InputMaybe>> /** Title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** Connection between the User type and the ContentNode type */ -export type UserToRevisionsConnection = Connection & ContentNodeConnection & { - __typename?: 'UserToRevisionsConnection'; - /** Edges for the UserToRevisionsConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: UserToRevisionsConnectionPageInfo; -}; +export type UserToRevisionsConnection = Connection & + ContentNodeConnection & { + __typename?: 'UserToRevisionsConnection' + /** Edges for the UserToRevisionsConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: UserToRevisionsConnectionPageInfo + } /** An edge in a connection */ -export type UserToRevisionsConnectionEdge = ContentNodeConnectionEdge & Edge & { - __typename?: 'UserToRevisionsConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: ContentNode; -}; +export type UserToRevisionsConnectionEdge = ContentNodeConnectionEdge & + Edge & { + __typename?: 'UserToRevisionsConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: ContentNode + } /** Page Info on the "UserToRevisionsConnection" */ -export type UserToRevisionsConnectionPageInfo = ContentNodeConnectionPageInfo & PageInfo & WpPageInfo & { - __typename?: 'UserToRevisionsConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type UserToRevisionsConnectionPageInfo = ContentNodeConnectionPageInfo & + PageInfo & + WpPageInfo & { + __typename?: 'UserToRevisionsConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Arguments for filtering the UserToRevisionsConnection connection */ export type UserToRevisionsConnectionWhereArgs = { /** The Types of content to filter */ - contentTypes?: InputMaybe>>; + contentTypes?: InputMaybe>> /** Filter the connection based on dates */ - dateQuery?: InputMaybe; + dateQuery?: InputMaybe /** True for objects with passwords; False for objects without passwords; null for all objects with or without passwords */ - hasPassword?: InputMaybe; + hasPassword?: InputMaybe /** Specific database ID of the object */ - id?: InputMaybe; + id?: InputMaybe /** Array of IDs for the objects to retrieve */ - in?: InputMaybe>>; + in?: InputMaybe>> /** Get objects with a specific mimeType property */ - mimeType?: InputMaybe; + mimeType?: InputMaybe /** Slug / post_name of the object */ - name?: InputMaybe; + name?: InputMaybe /** Specify objects to retrieve. Use slugs */ - nameIn?: InputMaybe>>; + nameIn?: InputMaybe>> /** Specify IDs NOT to retrieve. If this is used in the same query as "in", it will be ignored */ - notIn?: InputMaybe>>; + notIn?: InputMaybe>> /** What parameter to use to order the objects by. */ - orderby?: InputMaybe>>; + orderby?: InputMaybe>> /** Use ID to return only children. Use 0 to return only top-level items */ - parent?: InputMaybe; + parent?: InputMaybe /** Specify objects whose parent is in an array */ - parentIn?: InputMaybe>>; + parentIn?: InputMaybe>> /** Specify posts whose parent is not in an array */ - parentNotIn?: InputMaybe>>; + parentNotIn?: InputMaybe>> /** Show posts with a specific password. */ - password?: InputMaybe; + password?: InputMaybe /** Show Posts based on a keyword search */ - search?: InputMaybe; + search?: InputMaybe /** Retrieve posts where post status is in an array. */ - stati?: InputMaybe>>; + stati?: InputMaybe>> /** Show posts with a specific status. */ - status?: InputMaybe; + status?: InputMaybe /** Title of the object */ - title?: InputMaybe; -}; + title?: InputMaybe +} /** Connection between the User type and the UserRole type */ -export type UserToUserRoleConnection = Connection & UserRoleConnection & { - __typename?: 'UserToUserRoleConnection'; - /** Edges for the UserToUserRoleConnection connection */ - edges: Array; - /** The nodes of the connection, without the edges */ - nodes: Array; - /** Information about pagination in a connection. */ - pageInfo: UserToUserRoleConnectionPageInfo; -}; +export type UserToUserRoleConnection = Connection & + UserRoleConnection & { + __typename?: 'UserToUserRoleConnection' + /** Edges for the UserToUserRoleConnection connection */ + edges: Array + /** The nodes of the connection, without the edges */ + nodes: Array + /** Information about pagination in a connection. */ + pageInfo: UserToUserRoleConnectionPageInfo + } /** An edge in a connection */ -export type UserToUserRoleConnectionEdge = Edge & UserRoleConnectionEdge & { - __typename?: 'UserToUserRoleConnectionEdge'; - /** A cursor for use in pagination */ - cursor?: Maybe; - /** The item at the end of the edge */ - node: UserRole; -}; +export type UserToUserRoleConnectionEdge = Edge & + UserRoleConnectionEdge & { + __typename?: 'UserToUserRoleConnectionEdge' + /** A cursor for use in pagination */ + cursor?: Maybe + /** The item at the end of the edge */ + node: UserRole + } /** Page Info on the "UserToUserRoleConnection" */ -export type UserToUserRoleConnectionPageInfo = PageInfo & UserRoleConnectionPageInfo & WpPageInfo & { - __typename?: 'UserToUserRoleConnectionPageInfo'; - /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; - /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; - /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; - /** Raw schema for page */ - seo?: Maybe; - /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; +export type UserToUserRoleConnectionPageInfo = PageInfo & + UserRoleConnectionPageInfo & + WpPageInfo & { + __typename?: 'UserToUserRoleConnectionPageInfo' + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output'] + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output'] + /** Raw schema for page */ + seo?: Maybe + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe + } /** Field to order the connection by */ export enum UsersConnectionOrderbyEnum { @@ -20523,16 +20911,16 @@ export enum UsersConnectionOrderbyEnum { /** Order by registration date */ Registered = 'REGISTERED', /** Order by URL */ - Url = 'URL' + Url = 'URL', } /** Options for ordering the connection */ export type UsersConnectionOrderbyInput = { /** The field name used to sort the results. */ - field: UsersConnectionOrderbyEnum; + field: UsersConnectionOrderbyEnum /** The cardinality of the order of the connection */ - order?: InputMaybe; -}; + order?: InputMaybe +} /** Column used for searching for users. */ export enum UsersConnectionSearchColumnEnum { @@ -20545,76 +20933,162 @@ export enum UsersConnectionSearchColumnEnum { /** A URL-friendly name for the user. The default is the user's username. */ Nicename = 'NICENAME', /** The URL of the user's website. */ - Url = 'URL' + Url = 'URL', } /** Information about pagination in a connection. */ export type WpPageInfo = { /** When paginating forwards, the cursor to continue. */ - endCursor?: Maybe; + endCursor?: Maybe /** When paginating forwards, are there more items? */ - hasNextPage: Scalars['Boolean']['output']; + hasNextPage: Scalars['Boolean']['output'] /** When paginating backwards, are there more items? */ - hasPreviousPage: Scalars['Boolean']['output']; + hasPreviousPage: Scalars['Boolean']['output'] /** Raw schema for page */ - seo?: Maybe; + seo?: Maybe /** When paginating backwards, the cursor to continue. */ - startCursor?: Maybe; -}; + startCursor?: Maybe +} /** Provides access to fields of the "ContentAddons" ACF Field Group via the "contentAddons" field */ export type WithAcfContentAddons = { /** Fields of the ContentAddons ACF Field Group */ - contentAddons?: Maybe; -}; + contentAddons?: Maybe +} /** Provides access to fields of the "CustomerReview" ACF Field Group via the "customerReview" field */ export type WithAcfCustomerReview = { /** Fields of the CustomerReview ACF Field Group */ - customerReview?: Maybe; -}; + customerReview?: Maybe +} /** Provides access to fields of the "Fragments" ACF Field Group via the "fragments" field */ export type WithAcfFragments = { /** Fields of the Fragments ACF Field Group */ - fragments?: Maybe; -}; + fragments?: Maybe +} /** Provides access to fields of the "Records" ACF Field Group via the "records" field */ export type WithAcfRecords = { /** Fields of the Records ACF Field Group */ - records?: Maybe; -}; + records?: Maybe +} /** Provides access to fields of the "Reviews" ACF Field Group via the "reviews" field */ export type WithAcfReviews = { /** Fields of the Reviews ACF Field Group */ - reviews?: Maybe; -}; + reviews?: Maybe +} /** Provides access to fields of the "SkillAddons" ACF Field Group via the "skillAddons" field */ export type WithAcfSkillAddons = { /** Fields of the SkillAddons ACF Field Group */ - skillAddons?: Maybe; -}; + skillAddons?: Maybe +} /** The writing setting type */ export type WritingSettings = { - __typename?: 'WritingSettings'; + __typename?: 'WritingSettings' /** Рубрика для записей по умолчанию. */ - defaultCategory?: Maybe; + defaultCategory?: Maybe /** Формат записей по умолчанию. */ - defaultPostFormat?: Maybe; + defaultPostFormat?: Maybe /** Преобразовывать смайлики наподобие :-) и :-P в картинки при показе. */ - useSmilies?: Maybe; -}; + useSmilies?: Maybe +} export type GetSeoQueryVariables = Exact<{ - uri: Scalars['String']['input']; -}>; - - -export type GetSeoQuery = { __typename?: 'RootQuery', pageBy?: { __typename?: 'Page', seo?: { __typename?: 'PostTypeSEO', title?: string | null, metaDesc?: string | null } | null, translation?: { __typename?: 'Page', seo?: { __typename?: 'PostTypeSEO', title?: string | null, metaDesc?: string | null } | null } | null } | null }; - + uri: Scalars['String']['input'] +}> + +export type GetSeoQuery = { + __typename?: 'RootQuery' + pageBy?: { + __typename?: 'Page' + seo?: { __typename?: 'PostTypeSEO'; title?: string | null; metaDesc?: string | null } | null + translation?: { + __typename?: 'Page' + seo?: { __typename?: 'PostTypeSEO'; title?: string | null; metaDesc?: string | null } | null + } | null + } | null +} -export const GetSeoDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"GetSeo"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"uri"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"pageBy"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"uri"},"value":{"kind":"Variable","name":{"kind":"Name","value":"uri"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"seo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"metaDesc"}}]}},{"kind":"Field","name":{"kind":"Name","value":"translation"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"language"},"value":{"kind":"EnumValue","value":"EN"}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"seo"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"title"}},{"kind":"Field","name":{"kind":"Name","value":"metaDesc"}}]}}]}}]}}]}}]} as unknown as DocumentNode; \ No newline at end of file +export const GetSeoDocument = { + kind: 'Document', + definitions: [ + { + kind: 'OperationDefinition', + operation: 'query', + name: { kind: 'Name', value: 'GetSeo' }, + variableDefinitions: [ + { + kind: 'VariableDefinition', + variable: { kind: 'Variable', name: { kind: 'Name', value: 'uri' } }, + type: { + kind: 'NonNullType', + type: { kind: 'NamedType', name: { kind: 'Name', value: 'String' } }, + }, + }, + ], + selectionSet: { + kind: 'SelectionSet', + selections: [ + { + kind: 'Field', + name: { kind: 'Name', value: 'pageBy' }, + arguments: [ + { + kind: 'Argument', + name: { kind: 'Name', value: 'uri' }, + value: { kind: 'Variable', name: { kind: 'Name', value: 'uri' } }, + }, + ], + selectionSet: { + kind: 'SelectionSet', + selections: [ + { + kind: 'Field', + name: { kind: 'Name', value: 'seo' }, + selectionSet: { + kind: 'SelectionSet', + selections: [ + { kind: 'Field', name: { kind: 'Name', value: 'title' } }, + { kind: 'Field', name: { kind: 'Name', value: 'metaDesc' } }, + ], + }, + }, + { + kind: 'Field', + name: { kind: 'Name', value: 'translation' }, + arguments: [ + { + kind: 'Argument', + name: { kind: 'Name', value: 'language' }, + value: { kind: 'EnumValue', value: 'EN' }, + }, + ], + selectionSet: { + kind: 'SelectionSet', + selections: [ + { + kind: 'Field', + name: { kind: 'Name', value: 'seo' }, + selectionSet: { + kind: 'SelectionSet', + selections: [ + { kind: 'Field', name: { kind: 'Name', value: 'title' } }, + { kind: 'Field', name: { kind: 'Name', value: 'metaDesc' } }, + ], + }, + }, + ], + }, + }, + ], + }, + }, + ], + }, + }, + ], +} as unknown as DocumentNode diff --git a/globals/data/src/__generated__/index.ts b/globals/data/src/__generated__/index.ts index f5159916..f9bc8e59 100644 --- a/globals/data/src/__generated__/index.ts +++ b/globals/data/src/__generated__/index.ts @@ -1,2 +1,2 @@ -export * from "./fragment-masking"; -export * from "./gql"; \ No newline at end of file +export * from './fragment-masking' +export * from './gql' diff --git a/landing/fragments/landing-about/src/data/about.hook.ts b/landing/fragments/landing-about/src/data/about.hook.ts index 1419052d..a32fcd5d 100644 --- a/landing/fragments/landing-about/src/data/about.hook.ts +++ b/landing/fragments/landing-about/src/data/about.hook.ts @@ -1,11 +1,9 @@ -import { useQuery } from '@apollo/client' +import { useQuery } from '@apollo/client' import { GET_ABOUT } from './about.query' export const useAbout = () => { - const { data } = useQuery(GET_ABOUT, - // { fetchPolicy: 'cache-only' } - ) + const { data } = useQuery(GET_ABOUT, { fetchPolicy: 'cache-only' }) if (!data) { return { aboutData: { RU: [], EN: [] } } diff --git a/landing/fragments/landing-about/src/landing-about.component.tsx b/landing/fragments/landing-about/src/landing-about.component.tsx index 32c20cb1..a94a8f48 100644 --- a/landing/fragments/landing-about/src/landing-about.component.tsx +++ b/landing/fragments/landing-about/src/landing-about.component.tsx @@ -14,7 +14,6 @@ import { splitItems } from './helpers' const LandingAbout: FC = ({ language }) => { const { aboutData } = useAbout() - console.log(aboutData) const [topSide, bottomSide] = splitItems(aboutData[language]) return ( diff --git a/landing/fragments/landing-feedback/src/data/feedback.hook.ts b/landing/fragments/landing-feedback/src/data/feedback.hook.ts index 04fbf981..8ed99cef 100644 --- a/landing/fragments/landing-feedback/src/data/feedback.hook.ts +++ b/landing/fragments/landing-feedback/src/data/feedback.hook.ts @@ -3,9 +3,7 @@ import { useQuery } from '@apollo/client' import { GET_FEEDBACK } from './feedback.query' export const useFeedback = () => { - const { data } = useQuery(GET_FEEDBACK, - // { fetchPolicy: 'cache-only' } - ) + const { data } = useQuery(GET_FEEDBACK, { fetchPolicy: 'cache-only' }) if (!data) { return { feedbackData: { RU: [], EN: [] } } diff --git a/landing/fragments/landing-hero/src/data/hero.hook.ts b/landing/fragments/landing-hero/src/data/hero.hook.ts index 8395a5f8..fc56030c 100644 --- a/landing/fragments/landing-hero/src/data/hero.hook.ts +++ b/landing/fragments/landing-hero/src/data/hero.hook.ts @@ -3,9 +3,7 @@ import { useQuery } from '@apollo/client' import { GET_HERO } from './hero.query' export const useHero = () => { - const { data } = useQuery(GET_HERO, - // { fetchPolicy: 'cache-only' } - ) + const { data } = useQuery(GET_HERO, { fetchPolicy: 'cache-only' }) if (!data) { return { heroData: { RU: [], EN: [] } } diff --git a/landing/fragments/landing-hero/src/landing-hero.component.tsx b/landing/fragments/landing-hero/src/landing-hero.component.tsx index 2ca1921f..518e399d 100644 --- a/landing/fragments/landing-hero/src/landing-hero.component.tsx +++ b/landing/fragments/landing-hero/src/landing-hero.component.tsx @@ -25,7 +25,7 @@ const LandingHero: FC = ({ language }) => { const [backgroundColor, setBackgroundColor] = useState('') const [videoIsPlaying, setVideoIsPlaying] = useState(false) - const { title , content } = extractObject('contentAddons', 'lead', heroData[language]) + const { title, content } = extractObject('contentAddons', 'lead', heroData[language]) useEffect(() => { if (!videoIsPlaying) return diff --git a/landing/fragments/landing-reviews/src/data/reviews.hook.ts b/landing/fragments/landing-reviews/src/data/reviews.hook.ts index a1deb719..a865cf08 100644 --- a/landing/fragments/landing-reviews/src/data/reviews.hook.ts +++ b/landing/fragments/landing-reviews/src/data/reviews.hook.ts @@ -3,9 +3,7 @@ import { useQuery } from '@apollo/client' import { GET_REVIEWS } from './reviews.query' export const useReviews = () => { - const { data } = useQuery(GET_REVIEWS, - // { fetchPolicy: 'cache-only' } - ) + const { data } = useQuery(GET_REVIEWS, { fetchPolicy: 'cache-only' }) if (!data) { return { reviewsData: { RU: [], EN: [] } } diff --git a/landing/fragments/landing-reviews/src/data/reviews.query.ts b/landing/fragments/landing-reviews/src/data/reviews.query.ts index a9d9341d..2788aedf 100644 --- a/landing/fragments/landing-reviews/src/data/reviews.query.ts +++ b/landing/fragments/landing-reviews/src/data/reviews.query.ts @@ -1,5 +1,4 @@ -import { gql } from '@apollo/client' - +import { gql } from '@apollo/client' export const GET_REVIEWS = gql` query GetReviews { diff --git a/landing/fragments/landing-reviews/src/item/item.interface.ts b/landing/fragments/landing-reviews/src/item/item.interface.ts index a0bd5ac6..ac475a82 100644 --- a/landing/fragments/landing-reviews/src/item/item.interface.ts +++ b/landing/fragments/landing-reviews/src/item/item.interface.ts @@ -3,10 +3,10 @@ import { Language } from '../landing-reviews.interface' export interface Review { title: string content: string - review: { + customerReview: { respondent: string companylink: string - skills: any[] + skills: { edges: any[] } } } diff --git a/landing/fragments/landing-team/src/data/recruits.hook.ts b/landing/fragments/landing-team/src/data/recruits.hook.ts index 1fe3c41b..0da982a0 100644 --- a/landing/fragments/landing-team/src/data/recruits.hook.ts +++ b/landing/fragments/landing-team/src/data/recruits.hook.ts @@ -5,9 +5,7 @@ import { removeParagraphTags } from '@ui/utils' import { GET_RECRUITS } from './recruits.query' export const useRecruits = () => { - const { data } = useQuery(GET_RECRUITS, - // { fetchPolicy: 'cache-only' } - ) + const { data } = useQuery(GET_RECRUITS, { fetchPolicy: 'cache-only' }) if (!data) { return { recruitsData: [] } } diff --git a/landing/fragments/landing-work-directions/src/data/skills.hook.ts b/landing/fragments/landing-work-directions/src/data/skills.hook.ts index 5d7b4f44..329daec5 100644 --- a/landing/fragments/landing-work-directions/src/data/skills.hook.ts +++ b/landing/fragments/landing-work-directions/src/data/skills.hook.ts @@ -6,9 +6,7 @@ import { GET_SKILLS } from './skills.query' import { sortBySide } from '../helpers' export const useSkills = () => { - const { data } = useQuery(GET_SKILLS, - // { fetchPolicy: 'cache-only' } - ) + const { data } = useQuery(GET_SKILLS, { fetchPolicy: 'cache-only' }) if (!data) { return { leftSide: [], rightSide: [] } diff --git a/landing/fragments/landing-work-directions/src/item/item.interface.ts b/landing/fragments/landing-work-directions/src/item/item.interface.ts index a87b9886..b57ef579 100644 --- a/landing/fragments/landing-work-directions/src/item/item.interface.ts +++ b/landing/fragments/landing-work-directions/src/item/item.interface.ts @@ -4,7 +4,7 @@ export interface Category { name: string skillAddons: { icon?: { - mediaItemUrl?: string + node: { mediaItemUrl?: string } } } skills: { diff --git a/landing/pages/index-page/src/index.page.tsx b/landing/pages/index-page/src/index.page.tsx index cd7e518e..dddf8f0a 100644 --- a/landing/pages/index-page/src/index.page.tsx +++ b/landing/pages/index-page/src/index.page.tsx @@ -35,7 +35,7 @@ const IndexPage: FC = ({ SEO }) => { - {/**/} + diff --git a/schema.graphql b/schema.graphql index a62dc4dc..01da6a55 100644 --- a/schema.graphql +++ b/schema.graphql @@ -316,22 +316,22 @@ interface ContentNode { "Connection between the ContentNode type and the EnqueuedScript type" enqueuedScripts( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): ContentNodeToEnqueuedScriptConnection "Connection between the ContentNode type and the EnqueuedStylesheet type" enqueuedStylesheets( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): ContentNodeToEnqueuedStylesheetConnection @@ -460,11 +460,11 @@ interface CustomerReview_Fields { "Field of the "relationship" Field Type added to the schema as part of the "CustomerReview" Field Group" skills( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): AcfContentNodeConnection @@ -811,26 +811,26 @@ interface HierarchicalContentNode { "Returns ancestors of the node. Default ordered as lowest (closest to the child) to highest (closest to the root)." ancestors( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: HierarchicalContentNodeToContentNodeAncestorsConnectionWhereArgs ): HierarchicalContentNodeToContentNodeAncestorsConnection "Connection between the HierarchicalContentNode type and the ContentNode type" children( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: HierarchicalContentNodeToContentNodeChildrenConnectionWhereArgs ): HierarchicalContentNodeToContentNodeChildrenConnection @@ -853,22 +853,22 @@ interface HierarchicalContentNode { "Connection between the ContentNode type and the EnqueuedScript type" enqueuedScripts( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): ContentNodeToEnqueuedScriptConnection "Connection between the ContentNode type and the EnqueuedStylesheet type" enqueuedStylesheets( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): ContentNodeToEnqueuedStylesheetConnection @@ -943,22 +943,22 @@ interface HierarchicalTermNode { "Connection between the TermNode type and the EnqueuedScript type" enqueuedScripts( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): TermNodeToEnqueuedScriptConnection "Connection between the TermNode type and the EnqueuedStylesheet type" enqueuedStylesheets( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): TermNodeToEnqueuedStylesheetConnection @@ -1247,10 +1247,7 @@ interface NodeWithComments { "A node that supports the content editor" interface NodeWithContentEditor { "The content of the post." - content( - "Format of the field output" - format: PostObjectFieldFormatEnum - ): String + content("Format of the field output" format: PostObjectFieldFormatEnum): String "The globally unique ID for the object" id: ID! } @@ -1258,10 +1255,7 @@ interface NodeWithContentEditor { "A node that can have an excerpt" interface NodeWithExcerpt { "The excerpt of the post." - excerpt( - "Format of the field output" - format: PostObjectFieldFormatEnum - ): String + excerpt("Format of the field output" format: PostObjectFieldFormatEnum): String "The globally unique ID for the object" id: ID! } @@ -1311,10 +1305,7 @@ interface NodeWithTitle { "The Yoast SEO data of the ContentNode" seo: PostTypeSEO "The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made." - title( - "Format of the field output" - format: PostObjectFieldFormatEnum - ): String + title("Format of the field output" format: PostObjectFieldFormatEnum): String } "A node that can have trackbacks and pingbacks" @@ -1896,22 +1887,22 @@ interface TermNode { "Connection between the TermNode type and the EnqueuedScript type" enqueuedScripts( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): TermNodeToEnqueuedScriptConnection "Connection between the TermNode type and the EnqueuedStylesheet type" enqueuedStylesheets( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): TermNodeToEnqueuedStylesheetConnection @@ -2142,17 +2133,39 @@ interface WithAcfSkillAddons { } "Deprecated in favor of MenuItemLinkeable Interface" -union MenuItemObjectUnion = AboutItem | Category | CommonFragment | ConfidentialityPolicy | Contact | ContactItem | FeedbackItem | FooterItem | Fragment | HeroItem | Main | Messenger | NavigationItem | NotFound | Page | Post | PrivacyPolicyItem | Recruit | RecruitList | Review | ReviewList | Skill | SkillCategory | SocialNetwork | Tag +union MenuItemObjectUnion = + AboutItem + | Category + | CommonFragment + | ConfidentialityPolicy + | Contact + | ContactItem + | FeedbackItem + | FooterItem + | Fragment + | HeroItem + | Main + | Messenger + | NavigationItem + | NotFound + | Page + | Post + | PrivacyPolicyItem + | Recruit + | RecruitList + | Review + | ReviewList + | Skill + | SkillCategory + | SocialNetwork + | Tag "The AboutItem type" type AboutItem implements ContentNode & DatabaseIdentifier & MenuItemLinkable & Node & NodeWithContentEditor & NodeWithFeaturedImage & NodeWithTemplate & NodeWithTitle & Previewable & UniformResourceIdentifiable & WithAcfContentAddons { "The id field matches the WP_Post->ID field." aboutItemId: Int! @deprecated(reason: "Deprecated in favor of the databaseId field") "The content of the post." - content( - "Format of the field output" - format: PostObjectFieldFormatEnum - ): String + content("Format of the field output" format: PostObjectFieldFormatEnum): String "Fields of the ContentAddons ACF Field Group" contentAddons: ContentAddons "Connection between the ContentNode type and the ContentType type" @@ -2174,22 +2187,22 @@ type AboutItem implements ContentNode & DatabaseIdentifier & MenuItemLinkable & "Connection between the ContentNode type and the EnqueuedScript type" enqueuedScripts( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): ContentNodeToEnqueuedScriptConnection "Connection between the ContentNode type and the EnqueuedStylesheet type" enqueuedStylesheets( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): ContentNodeToEnqueuedStylesheetConnection @@ -2246,10 +2259,7 @@ type AboutItem implements ContentNode & DatabaseIdentifier & MenuItemLinkable & "The template assigned to the node" template: ContentTemplate "The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made." - title( - "Format of the field output" - format: PostObjectFieldFormatEnum - ): String + title("Format of the field output" format: PostObjectFieldFormatEnum): String "Get specific translation version of this object" translation(language: LanguageCodeEnum!): AboutItem "List all translated versions of this post" @@ -2337,11 +2347,11 @@ type Category implements DatabaseIdentifier & HierarchicalNode & HierarchicalTer "The ancestors of the node. Default ordered as lowest (closest to the child) to highest (closest to the root)." ancestors( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): CategoryToAncestorsCategoryConnection @@ -2350,26 +2360,26 @@ type Category implements DatabaseIdentifier & HierarchicalNode & HierarchicalTer "Connection between the category type and its children categories." children( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: CategoryToCategoryConnectionWhereArgs ): CategoryToCategoryConnection "Connection between the Category type and the ContentNode type" contentNodes( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: CategoryToContentNodeConnectionWhereArgs ): CategoryToContentNodeConnection @@ -2382,22 +2392,22 @@ type Category implements DatabaseIdentifier & HierarchicalNode & HierarchicalTer "Connection between the TermNode type and the EnqueuedScript type" enqueuedScripts( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): TermNodeToEnqueuedScriptConnection "Connection between the TermNode type and the EnqueuedStylesheet type" enqueuedStylesheets( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): TermNodeToEnqueuedStylesheetConnection @@ -2430,13 +2440,13 @@ type Category implements DatabaseIdentifier & HierarchicalNode & HierarchicalTer "Connection between the Category type and the post type" posts( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: CategoryToPostConnectionWhereArgs ): CategoryToPostConnection @@ -2619,10 +2629,7 @@ type Comment implements DatabaseIdentifier & Node & UniformResourceIdentifiable "Connection between the Comment type and the ContentNode type" commentedOn: CommentToContentNodeConnectionEdge "Content of the comment. This field is equivalent to WP_Comment->comment_content and the value matching the "comment_content" column in SQL." - content( - "Format of the field output" - format: PostObjectFieldFormatEnum - ): String + content("Format of the field output" format: PostObjectFieldFormatEnum): String "The unique identifier stored in the database" databaseId: Int! "Date the comment was posted in local time. This field is equivalent to WP_Comment->date and the value matching the "date" column in SQL." @@ -2659,13 +2666,13 @@ type Comment implements DatabaseIdentifier & Node & UniformResourceIdentifiable "Connection between the Comment type and the Comment type" replies( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: CommentToCommentConnectionWhereArgs ): CommentToCommentConnection @@ -2682,9 +2689,9 @@ type CommentAuthor implements Commenter & DatabaseIdentifier & Node { "Avatar object for user. The avatar object can be retrieved in different sizes by specifying the size argument." avatar( "Whether to always show the default image, never the Gravatar. Default false" - forceDefault: Boolean, + forceDefault: Boolean "The rating level of the avatar." - rating: AvatarRatingEnum, + rating: AvatarRatingEnum "The size attribute of the avatar field can be used to fetch avatars of different sizes. The value corresponds to the dimension in pixels to fetch. The default is 96 pixels." size: Int = 96 ): Avatar @@ -2763,10 +2770,7 @@ type CommonFragment implements ContentNode & DatabaseIdentifier & MenuItemLinkab "The id field matches the WP_Post->ID field." commonFragmentId: Int! @deprecated(reason: "Deprecated in favor of the databaseId field") "The content of the post." - content( - "Format of the field output" - format: PostObjectFieldFormatEnum - ): String + content("Format of the field output" format: PostObjectFieldFormatEnum): String "Connection between the ContentNode type and the ContentType type" contentType: ContentNodeToContentTypeConnectionEdge "The name of the Content Type the node belongs to" @@ -2786,22 +2790,22 @@ type CommonFragment implements ContentNode & DatabaseIdentifier & MenuItemLinkab "Connection between the ContentNode type and the EnqueuedScript type" enqueuedScripts( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): ContentNodeToEnqueuedScriptConnection "Connection between the ContentNode type and the EnqueuedStylesheet type" enqueuedStylesheets( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): ContentNodeToEnqueuedStylesheetConnection @@ -2856,10 +2860,7 @@ type CommonFragment implements ContentNode & DatabaseIdentifier & MenuItemLinkab "The template assigned to the node" template: ContentTemplate "The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made." - title( - "Format of the field output" - format: PostObjectFieldFormatEnum - ): String + title("Format of the field output" format: PostObjectFieldFormatEnum): String "The unique resource identifier path" uri: String } @@ -2877,10 +2878,7 @@ type ConfidentialityPolicy implements ContentNode & DatabaseIdentifier & MenuIte "The id field matches the WP_Post->ID field." confidentialityPolicyId: Int! @deprecated(reason: "Deprecated in favor of the databaseId field") "The content of the post." - content( - "Format of the field output" - format: PostObjectFieldFormatEnum - ): String + content("Format of the field output" format: PostObjectFieldFormatEnum): String "Connection between the ContentNode type and the ContentType type" contentType: ContentNodeToContentTypeConnectionEdge "The name of the Content Type the node belongs to" @@ -2900,22 +2898,22 @@ type ConfidentialityPolicy implements ContentNode & DatabaseIdentifier & MenuIte "Connection between the ContentNode type and the EnqueuedScript type" enqueuedScripts( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): ContentNodeToEnqueuedScriptConnection "Connection between the ContentNode type and the EnqueuedStylesheet type" enqueuedStylesheets( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): ContentNodeToEnqueuedStylesheetConnection @@ -2970,10 +2968,7 @@ type ConfidentialityPolicy implements ContentNode & DatabaseIdentifier & MenuIte "The template assigned to the node" template: ContentTemplate "The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made." - title( - "Format of the field output" - format: PostObjectFieldFormatEnum - ): String + title("Format of the field output" format: PostObjectFieldFormatEnum): String "The unique resource identifier path" uri: String } @@ -2991,10 +2986,7 @@ type Contact implements ContentNode & DatabaseIdentifier & MenuItemLinkable & No "The id field matches the WP_Post->ID field." contactId: Int! @deprecated(reason: "Deprecated in favor of the databaseId field") "The content of the post." - content( - "Format of the field output" - format: PostObjectFieldFormatEnum - ): String + content("Format of the field output" format: PostObjectFieldFormatEnum): String "Connection between the ContentNode type and the ContentType type" contentType: ContentNodeToContentTypeConnectionEdge "The name of the Content Type the node belongs to" @@ -3014,22 +3006,22 @@ type Contact implements ContentNode & DatabaseIdentifier & MenuItemLinkable & No "Connection between the ContentNode type and the EnqueuedScript type" enqueuedScripts( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): ContentNodeToEnqueuedScriptConnection "Connection between the ContentNode type and the EnqueuedStylesheet type" enqueuedStylesheets( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): ContentNodeToEnqueuedStylesheetConnection @@ -3084,10 +3076,7 @@ type Contact implements ContentNode & DatabaseIdentifier & MenuItemLinkable & No "The template assigned to the node" template: ContentTemplate "The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made." - title( - "Format of the field output" - format: PostObjectFieldFormatEnum - ): String + title("Format of the field output" format: PostObjectFieldFormatEnum): String "The unique resource identifier path" uri: String } @@ -3097,10 +3086,7 @@ type ContactItem implements ContentNode & DatabaseIdentifier & MenuItemLinkable "The id field matches the WP_Post->ID field." contactItemId: Int! @deprecated(reason: "Deprecated in favor of the databaseId field") "The content of the post." - content( - "Format of the field output" - format: PostObjectFieldFormatEnum - ): String + content("Format of the field output" format: PostObjectFieldFormatEnum): String "Fields of the ContentAddons ACF Field Group" contentAddons: ContentAddons "Connection between the ContentNode type and the ContentType type" @@ -3122,22 +3108,22 @@ type ContactItem implements ContentNode & DatabaseIdentifier & MenuItemLinkable "Connection between the ContentNode type and the EnqueuedScript type" enqueuedScripts( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): ContentNodeToEnqueuedScriptConnection "Connection between the ContentNode type and the EnqueuedStylesheet type" enqueuedStylesheets( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): ContentNodeToEnqueuedStylesheetConnection @@ -3194,10 +3180,7 @@ type ContactItem implements ContentNode & DatabaseIdentifier & MenuItemLinkable "The template assigned to the node" template: ContentTemplate "The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made." - title( - "Format of the field output" - format: PostObjectFieldFormatEnum - ): String + title("Format of the field output" format: PostObjectFieldFormatEnum): String "Get specific translation version of this object" translation(language: LanguageCodeEnum!): ContactItem "List all translated versions of this post" @@ -3337,24 +3320,24 @@ type ContentType implements Node & UniformResourceIdentifiable { "Connection between the ContentType type and the Taxonomy type" connectedTaxonomies( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): ContentTypeToTaxonomyConnection "Connection between the ContentType type and the ContentNode type" contentNodes( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: ContentTypeToContentNodeConnectionWhereArgs ): ContentTypeToContentNodeConnection @@ -3731,11 +3714,11 @@ type CustomerReview implements AcfFieldGroup & AcfFieldGroupFields & CustomerRev "Field of the "relationship" Field Type added to the schema as part of the "CustomerReview" Field Group" skills( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): AcfContentNodeConnection @@ -4112,10 +4095,7 @@ type EnqueuedStylesheet implements EnqueuedAsset & Node { "The FeedbackItem type" type FeedbackItem implements ContentNode & DatabaseIdentifier & MenuItemLinkable & Node & NodeWithContentEditor & NodeWithFeaturedImage & NodeWithTemplate & NodeWithTitle & Previewable & UniformResourceIdentifiable & WithAcfContentAddons { "The content of the post." - content( - "Format of the field output" - format: PostObjectFieldFormatEnum - ): String + content("Format of the field output" format: PostObjectFieldFormatEnum): String "Fields of the ContentAddons ACF Field Group" contentAddons: ContentAddons "Connection between the ContentNode type and the ContentType type" @@ -4137,22 +4117,22 @@ type FeedbackItem implements ContentNode & DatabaseIdentifier & MenuItemLinkable "Connection between the ContentNode type and the EnqueuedScript type" enqueuedScripts( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): ContentNodeToEnqueuedScriptConnection "Connection between the ContentNode type and the EnqueuedStylesheet type" enqueuedStylesheets( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): ContentNodeToEnqueuedStylesheetConnection @@ -4211,10 +4191,7 @@ type FeedbackItem implements ContentNode & DatabaseIdentifier & MenuItemLinkable "The template assigned to the node" template: ContentTemplate "The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made." - title( - "Format of the field output" - format: PostObjectFieldFormatEnum - ): String + title("Format of the field output" format: PostObjectFieldFormatEnum): String "Get specific translation version of this object" translation(language: LanguageCodeEnum!): FeedbackItem "List all translated versions of this post" @@ -4244,10 +4221,7 @@ type FieldError { "The FooterItem type" type FooterItem implements ContentNode & DatabaseIdentifier & MenuItemLinkable & Node & NodeWithContentEditor & NodeWithFeaturedImage & NodeWithTemplate & NodeWithTitle & Previewable & UniformResourceIdentifiable & WithAcfContentAddons { "The content of the post." - content( - "Format of the field output" - format: PostObjectFieldFormatEnum - ): String + content("Format of the field output" format: PostObjectFieldFormatEnum): String "Fields of the ContentAddons ACF Field Group" contentAddons: ContentAddons "Connection between the ContentNode type and the ContentType type" @@ -4269,22 +4243,22 @@ type FooterItem implements ContentNode & DatabaseIdentifier & MenuItemLinkable & "Connection between the ContentNode type and the EnqueuedScript type" enqueuedScripts( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): ContentNodeToEnqueuedScriptConnection "Connection between the ContentNode type and the EnqueuedStylesheet type" enqueuedStylesheets( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): ContentNodeToEnqueuedStylesheetConnection @@ -4343,10 +4317,7 @@ type FooterItem implements ContentNode & DatabaseIdentifier & MenuItemLinkable & "The template assigned to the node" template: ContentTemplate "The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made." - title( - "Format of the field output" - format: PostObjectFieldFormatEnum - ): String + title("Format of the field output" format: PostObjectFieldFormatEnum): String "Get specific translation version of this object" translation(language: LanguageCodeEnum!): FooterItem "List all translated versions of this post" @@ -4386,11 +4357,11 @@ type Form implements DatabaseIdentifier & Node { "Connection between the Form type and the FormField type" fields( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): FormToFormFieldConnection @@ -4511,10 +4482,7 @@ type FormUniqueFieldSet { "The Fragment type" type Fragment implements ContentNode & DatabaseIdentifier & MenuItemLinkable & Node & NodeWithContentEditor & NodeWithExcerpt & NodeWithFeaturedImage & NodeWithPageAttributes & NodeWithTemplate & NodeWithTitle & Previewable & UniformResourceIdentifiable & WithAcfFragments { "The content of the post." - content( - "Format of the field output" - format: PostObjectFieldFormatEnum - ): String + content("Format of the field output" format: PostObjectFieldFormatEnum): String "Connection between the ContentNode type and the ContentType type" contentType: ContentNodeToContentTypeConnectionEdge "The name of the Content Type the node belongs to" @@ -4534,30 +4502,27 @@ type Fragment implements ContentNode & DatabaseIdentifier & MenuItemLinkable & N "Connection between the ContentNode type and the EnqueuedScript type" enqueuedScripts( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): ContentNodeToEnqueuedScriptConnection "Connection between the ContentNode type and the EnqueuedStylesheet type" enqueuedStylesheets( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): ContentNodeToEnqueuedStylesheetConnection "The excerpt of the post." - excerpt( - "Format of the field output" - format: PostObjectFieldFormatEnum - ): String + excerpt("Format of the field output" format: PostObjectFieldFormatEnum): String "Connection between the NodeWithFeaturedImage type and the MediaItem type" featuredImage: NodeWithFeaturedImageToMediaItemConnectionEdge "The database identifier for the featured image node assigned to the content node" @@ -4617,10 +4582,7 @@ type Fragment implements ContentNode & DatabaseIdentifier & MenuItemLinkable & N "The template assigned to the node" template: ContentTemplate "The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made." - title( - "Format of the field output" - format: PostObjectFieldFormatEnum - ): String + title("Format of the field output" format: PostObjectFieldFormatEnum): String "Get specific translation version of this object" translation(language: LanguageCodeEnum!): Fragment "List all translated versions of this post" @@ -4670,10 +4632,7 @@ type GeneralSettings { "The HeroItem type" type HeroItem implements ContentNode & DatabaseIdentifier & MenuItemLinkable & Node & NodeWithContentEditor & NodeWithFeaturedImage & NodeWithTemplate & NodeWithTitle & Previewable & UniformResourceIdentifiable & WithAcfContentAddons { "The content of the post." - content( - "Format of the field output" - format: PostObjectFieldFormatEnum - ): String + content("Format of the field output" format: PostObjectFieldFormatEnum): String "Fields of the ContentAddons ACF Field Group" contentAddons: ContentAddons "Connection between the ContentNode type and the ContentType type" @@ -4695,22 +4654,22 @@ type HeroItem implements ContentNode & DatabaseIdentifier & MenuItemLinkable & N "Connection between the ContentNode type and the EnqueuedScript type" enqueuedScripts( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): ContentNodeToEnqueuedScriptConnection "Connection between the ContentNode type and the EnqueuedStylesheet type" enqueuedStylesheets( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): ContentNodeToEnqueuedStylesheetConnection @@ -4769,10 +4728,7 @@ type HeroItem implements ContentNode & DatabaseIdentifier & MenuItemLinkable & N "The template assigned to the node" template: ContentTemplate "The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made." - title( - "Format of the field output" - format: PostObjectFieldFormatEnum - ): String + title("Format of the field output" format: PostObjectFieldFormatEnum): String "Get specific translation version of this object" translation(language: LanguageCodeEnum!): HeroItem "List all translated versions of this post" @@ -4878,10 +4834,7 @@ type Language { "The Main type" type Main implements ContentNode & DatabaseIdentifier & MenuItemLinkable & Node & NodeWithContentEditor & NodeWithFeaturedImage & NodeWithTemplate & NodeWithTitle & Previewable & UniformResourceIdentifiable & WithAcfReviews { "The content of the post." - content( - "Format of the field output" - format: PostObjectFieldFormatEnum - ): String + content("Format of the field output" format: PostObjectFieldFormatEnum): String "Connection between the ContentNode type and the ContentType type" contentType: ContentNodeToContentTypeConnectionEdge "The name of the Content Type the node belongs to" @@ -4901,22 +4854,22 @@ type Main implements ContentNode & DatabaseIdentifier & MenuItemLinkable & Node "Connection between the ContentNode type and the EnqueuedScript type" enqueuedScripts( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): ContentNodeToEnqueuedScriptConnection "Connection between the ContentNode type and the EnqueuedStylesheet type" enqueuedStylesheets( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): ContentNodeToEnqueuedStylesheetConnection @@ -4975,10 +4928,7 @@ type Main implements ContentNode & DatabaseIdentifier & MenuItemLinkable & Node "The template assigned to the node" template: ContentTemplate "The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made." - title( - "Format of the field output" - format: PostObjectFieldFormatEnum - ): String + title("Format of the field output" format: PostObjectFieldFormatEnum): String "The unique resource identifier path" uri: String } @@ -5002,7 +4952,7 @@ type MediaDetails { "The available sizes of the mediaItem" sizes( "The sizes to exclude. Will take precedence over `include`." - exclude: [MediaItemSizeEnum], + exclude: [MediaItemSizeEnum] "The sizes to include. Can be overridden by `exclude`." include: [MediaItemSizeEnum] ): [MediaSize] @@ -5017,13 +4967,13 @@ type MediaItem implements ContentNode & DatabaseIdentifier & HierarchicalContent "Returns ancestors of the node. Default ordered as lowest (closest to the child) to highest (closest to the root)." ancestors( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: HierarchicalContentNodeToContentNodeAncestorsConnectionWhereArgs ): HierarchicalContentNodeToContentNodeAncestorsConnection @@ -5034,20 +4984,17 @@ type MediaItem implements ContentNode & DatabaseIdentifier & HierarchicalContent "The globally unique identifier of the author of the node" authorId: ID "The caption for the resource" - caption( - "Format of the field output" - format: PostObjectFieldFormatEnum - ): String + caption("Format of the field output" format: PostObjectFieldFormatEnum): String "Connection between the HierarchicalContentNode type and the ContentNode type" children( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: HierarchicalContentNodeToContentNodeChildrenConnectionWhereArgs ): HierarchicalContentNodeToContentNodeChildrenConnection @@ -5058,13 +5005,13 @@ type MediaItem implements ContentNode & DatabaseIdentifier & HierarchicalContent "Connection between the MediaItem type and the Comment type" comments( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: MediaItemToCommentConnectionWhereArgs ): MediaItemToCommentConnection @@ -5079,10 +5026,7 @@ type MediaItem implements ContentNode & DatabaseIdentifier & HierarchicalContent "The publishing date set in GMT." dateGmt: String "Description of the image (stored as post_content)" - description( - "Format of the field output" - format: PostObjectFieldFormatEnum - ): String + description("Format of the field output" format: PostObjectFieldFormatEnum): String "The desired slug of the post" desiredSlug: String "If a user has edited the node within the past 15 seconds, this will return the user that last edited. Null if the edit lock doesn't exist or is greater than 15 seconds" @@ -5092,30 +5036,27 @@ type MediaItem implements ContentNode & DatabaseIdentifier & HierarchicalContent "Connection between the ContentNode type and the EnqueuedScript type" enqueuedScripts( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): ContentNodeToEnqueuedScriptConnection "Connection between the ContentNode type and the EnqueuedStylesheet type" enqueuedStylesheets( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): ContentNodeToEnqueuedStylesheetConnection "The filesize in bytes of the resource" - fileSize( - "Size of the MediaItem to return" - size: MediaItemSizeEnum - ): Int + fileSize("Size of the MediaItem to return" size: MediaItemSizeEnum): Int "The global unique identifier for this post. This currently matches the value stored in WP_Post->guid and the guid column in the "post_objects" database table." guid: String "Whether the attachment object is password protected." @@ -5171,31 +5112,19 @@ type MediaItem implements ContentNode & DatabaseIdentifier & HierarchicalContent "The Yoast SEO data of the ContentNode" seo: PostTypeSEO "The sizes attribute value for an image." - sizes( - "Size of the MediaItem to calculate sizes with" - size: MediaItemSizeEnum - ): String + sizes("Size of the MediaItem to calculate sizes with" size: MediaItemSizeEnum): String "The uri slug for the post. This is equivalent to the WP_Post->post_name field and the post_name column in the database for the "post_objects" table." slug: String "Url of the mediaItem" - sourceUrl( - "Size of the MediaItem to return" - size: MediaItemSizeEnum - ): String + sourceUrl("Size of the MediaItem to return" size: MediaItemSizeEnum): String "The srcset attribute specifies the URL of the image to use in different situations. It is a comma separated string of urls and their widths." - srcSet( - "Size of the MediaItem to calculate srcSet with" - size: MediaItemSizeEnum - ): String + srcSet("Size of the MediaItem to calculate srcSet with" size: MediaItemSizeEnum): String "The current status of the object" status: String "The template assigned to a node of content" template: ContentTemplate "The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made." - title( - "Format of the field output" - format: PostObjectFieldFormatEnum - ): String + title("Format of the field output" format: PostObjectFieldFormatEnum): String "Get specific translation version of this object" translation(language: LanguageCodeEnum!): MediaItem "List all translated versions of this post" @@ -5299,13 +5228,13 @@ type Menu implements DatabaseIdentifier & Node { "Connection between the Menu type and the MenuItem type" menuItems( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: MenuToMenuItemConnectionWhereArgs ): MenuToMenuItemConnection @@ -5320,20 +5249,21 @@ type MenuItem implements DatabaseIdentifier & Node { "Connection between the MenuItem type and the MenuItem type" childItems( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: MenuItemToMenuItemConnectionWhereArgs ): MenuItemToMenuItemConnection "Connection from MenuItem to it's connected node" connectedNode: MenuItemToMenuItemLinkableConnectionEdge "The object connected to this menu item." - connectedObject: MenuItemObjectUnion @deprecated(reason: "Deprecated in favor of the connectedNode field") + connectedObject: MenuItemObjectUnion + @deprecated(reason: "Deprecated in favor of the connectedNode field") "Class attribute for the menu item link" cssClasses: [String] "The unique identifier stored in the database" @@ -5455,10 +5385,7 @@ type MenuToMenuItemConnectionPageInfo implements MenuItemConnectionPageInfo & Pa "The Messenger type" type Messenger implements ContentNode & DatabaseIdentifier & MenuItemLinkable & Node & NodeWithContentEditor & NodeWithFeaturedImage & NodeWithTemplate & NodeWithTitle & Previewable & UniformResourceIdentifiable { "The content of the post." - content( - "Format of the field output" - format: PostObjectFieldFormatEnum - ): String + content("Format of the field output" format: PostObjectFieldFormatEnum): String "Connection between the ContentNode type and the ContentType type" contentType: ContentNodeToContentTypeConnectionEdge "The name of the Content Type the node belongs to" @@ -5478,22 +5405,22 @@ type Messenger implements ContentNode & DatabaseIdentifier & MenuItemLinkable & "Connection between the ContentNode type and the EnqueuedScript type" enqueuedScripts( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): ContentNodeToEnqueuedScriptConnection "Connection between the ContentNode type and the EnqueuedStylesheet type" enqueuedStylesheets( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): ContentNodeToEnqueuedStylesheetConnection @@ -5550,10 +5477,7 @@ type Messenger implements ContentNode & DatabaseIdentifier & MenuItemLinkable & "The template assigned to the node" template: ContentTemplate "The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made." - title( - "Format of the field output" - format: PostObjectFieldFormatEnum - ): String + title("Format of the field output" format: PostObjectFieldFormatEnum): String "The unique resource identifier path" uri: String } @@ -5569,10 +5493,7 @@ type MessengerToPreviewConnectionEdge implements Edge & MessengerConnectionEdge "The NavigationItem type" type NavigationItem implements ContentNode & DatabaseIdentifier & MenuItemLinkable & Node & NodeWithContentEditor & NodeWithFeaturedImage & NodeWithTemplate & NodeWithTitle & Previewable & UniformResourceIdentifiable & WithAcfContentAddons { "The content of the post." - content( - "Format of the field output" - format: PostObjectFieldFormatEnum - ): String + content("Format of the field output" format: PostObjectFieldFormatEnum): String "Fields of the ContentAddons ACF Field Group" contentAddons: ContentAddons "Connection between the ContentNode type and the ContentType type" @@ -5594,22 +5515,22 @@ type NavigationItem implements ContentNode & DatabaseIdentifier & MenuItemLinkab "Connection between the ContentNode type and the EnqueuedScript type" enqueuedScripts( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): ContentNodeToEnqueuedScriptConnection "Connection between the ContentNode type and the EnqueuedStylesheet type" enqueuedStylesheets( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): ContentNodeToEnqueuedStylesheetConnection @@ -5668,10 +5589,7 @@ type NavigationItem implements ContentNode & DatabaseIdentifier & MenuItemLinkab "The template assigned to the node" template: ContentTemplate "The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made." - title( - "Format of the field output" - format: PostObjectFieldFormatEnum - ): String + title("Format of the field output" format: PostObjectFieldFormatEnum): String "Get specific translation version of this object" translation(language: LanguageCodeEnum!): NavigationItem "List all translated versions of this post" @@ -5715,10 +5633,7 @@ type NodeWithRevisionsToContentNodeConnectionEdge implements ContentNodeConnecti "The NotFound type" type NotFound implements ContentNode & DatabaseIdentifier & MenuItemLinkable & Node & NodeWithContentEditor & NodeWithFeaturedImage & NodeWithTemplate & NodeWithTitle & Previewable & UniformResourceIdentifiable { "The content of the post." - content( - "Format of the field output" - format: PostObjectFieldFormatEnum - ): String + content("Format of the field output" format: PostObjectFieldFormatEnum): String "Connection between the ContentNode type and the ContentType type" contentType: ContentNodeToContentTypeConnectionEdge "The name of the Content Type the node belongs to" @@ -5738,22 +5653,22 @@ type NotFound implements ContentNode & DatabaseIdentifier & MenuItemLinkable & N "Connection between the ContentNode type and the EnqueuedScript type" enqueuedScripts( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): ContentNodeToEnqueuedScriptConnection "Connection between the ContentNode type and the EnqueuedStylesheet type" enqueuedStylesheets( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): ContentNodeToEnqueuedStylesheetConnection @@ -5810,10 +5725,7 @@ type NotFound implements ContentNode & DatabaseIdentifier & MenuItemLinkable & N "The template assigned to the node" template: ContentTemplate "The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made." - title( - "Format of the field output" - format: PostObjectFieldFormatEnum - ): String + title("Format of the field output" format: PostObjectFieldFormatEnum): String "The unique resource identifier path" uri: String } @@ -5831,13 +5743,13 @@ type Page implements ContentNode & DatabaseIdentifier & HierarchicalContentNode "Returns ancestors of the node. Default ordered as lowest (closest to the child) to highest (closest to the root)." ancestors( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: HierarchicalContentNodeToContentNodeAncestorsConnectionWhereArgs ): HierarchicalContentNodeToContentNodeAncestorsConnection @@ -5850,13 +5762,13 @@ type Page implements ContentNode & DatabaseIdentifier & HierarchicalContentNode "Connection between the HierarchicalContentNode type and the ContentNode type" children( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: HierarchicalContentNodeToContentNodeChildrenConnectionWhereArgs ): HierarchicalContentNodeToContentNodeChildrenConnection @@ -5867,21 +5779,18 @@ type Page implements ContentNode & DatabaseIdentifier & HierarchicalContentNode "Connection between the Page type and the Comment type" comments( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: PageToCommentConnectionWhereArgs ): PageToCommentConnection "The content of the post." - content( - "Format of the field output" - format: PostObjectFieldFormatEnum - ): String + content("Format of the field output" format: PostObjectFieldFormatEnum): String "Connection between the ContentNode type and the ContentType type" contentType: ContentNodeToContentTypeConnectionEdge "The name of the Content Type the node belongs to" @@ -5901,22 +5810,22 @@ type Page implements ContentNode & DatabaseIdentifier & HierarchicalContentNode "Connection between the ContentNode type and the EnqueuedScript type" enqueuedScripts( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): ContentNodeToEnqueuedScriptConnection "Connection between the ContentNode type and the EnqueuedStylesheet type" enqueuedStylesheets( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): ContentNodeToEnqueuedStylesheetConnection @@ -5983,13 +5892,13 @@ type Page implements ContentNode & DatabaseIdentifier & HierarchicalContentNode "Connection between the Page type and the page type" revisions( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: PageToRevisionConnectionWhereArgs ): PageToRevisionConnection @@ -6002,10 +5911,7 @@ type Page implements ContentNode & DatabaseIdentifier & HierarchicalContentNode "The template assigned to a node of content" template: ContentTemplate "The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made." - title( - "Format of the field output" - format: PostObjectFieldFormatEnum - ): String + title("Format of the field output" format: PostObjectFieldFormatEnum): String "Get specific translation version of this object" translation(language: LanguageCodeEnum!): Page "List all translated versions of this post" @@ -6119,13 +6025,13 @@ type Post implements ContentNode & DatabaseIdentifier & MenuItemLinkable & Node "Connection between the Post type and the category type" categories( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: PostToCategoryConnectionWhereArgs ): PostToCategoryConnection @@ -6136,21 +6042,18 @@ type Post implements ContentNode & DatabaseIdentifier & MenuItemLinkable & Node "Connection between the Post type and the Comment type" comments( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: PostToCommentConnectionWhereArgs ): PostToCommentConnection "The content of the post." - content( - "Format of the field output" - format: PostObjectFieldFormatEnum - ): String + content("Format of the field output" format: PostObjectFieldFormatEnum): String "Connection between the ContentNode type and the ContentType type" contentType: ContentNodeToContentTypeConnectionEdge "The name of the Content Type the node belongs to" @@ -6170,30 +6073,27 @@ type Post implements ContentNode & DatabaseIdentifier & MenuItemLinkable & Node "Connection between the ContentNode type and the EnqueuedScript type" enqueuedScripts( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): ContentNodeToEnqueuedScriptConnection "Connection between the ContentNode type and the EnqueuedStylesheet type" enqueuedStylesheets( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): ContentNodeToEnqueuedStylesheetConnection "The excerpt of the post." - excerpt( - "Format of the field output" - format: PostObjectFieldFormatEnum - ): String + excerpt("Format of the field output" format: PostObjectFieldFormatEnum): String "Connection between the NodeWithFeaturedImage type and the MediaItem type" featuredImage: NodeWithFeaturedImageToMediaItemConnectionEdge "The database identifier for the featured image node assigned to the content node" @@ -6243,13 +6143,13 @@ type Post implements ContentNode & DatabaseIdentifier & MenuItemLinkable & Node "Connection between the Post type and the postFormat type" postFormats( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: PostToPostFormatConnectionWhereArgs ): PostToPostFormatConnection @@ -6268,13 +6168,13 @@ type Post implements ContentNode & DatabaseIdentifier & MenuItemLinkable & Node "Connection between the Post type and the post type" revisions( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: PostToRevisionConnectionWhereArgs ): PostToRevisionConnection @@ -6287,13 +6187,13 @@ type Post implements ContentNode & DatabaseIdentifier & MenuItemLinkable & Node "Connection between the Post type and the tag type" tags( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: PostToTagConnectionWhereArgs ): PostToTagConnection @@ -6302,21 +6202,18 @@ type Post implements ContentNode & DatabaseIdentifier & MenuItemLinkable & Node "Connection between the Post type and the TermNode type" terms( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: PostToTermNodeConnectionWhereArgs ): PostToTermNodeConnection "The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made." - title( - "Format of the field output" - format: PostObjectFieldFormatEnum - ): String + title("Format of the field output" format: PostObjectFieldFormatEnum): String "URLs queued to be pinged." toPing: [String] "Get specific translation version of this object" @@ -6332,13 +6229,13 @@ type PostFormat implements DatabaseIdentifier & Node & TermNode & UniformResourc "Connection between the PostFormat type and the ContentNode type" contentNodes( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: PostFormatToContentNodeConnectionWhereArgs ): PostFormatToContentNodeConnection @@ -6351,22 +6248,22 @@ type PostFormat implements DatabaseIdentifier & Node & TermNode & UniformResourc "Connection between the TermNode type and the EnqueuedScript type" enqueuedScripts( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): TermNodeToEnqueuedScriptConnection "Connection between the TermNode type and the EnqueuedStylesheet type" enqueuedStylesheets( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): TermNodeToEnqueuedStylesheetConnection @@ -6393,13 +6290,13 @@ type PostFormat implements DatabaseIdentifier & Node & TermNode & UniformResourc "Connection between the PostFormat type and the post type" posts( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: PostFormatToPostConnectionWhereArgs ): PostFormatToPostConnection @@ -6782,10 +6679,7 @@ type PostTypeSEO { "The PrivacyPolicyItem type" type PrivacyPolicyItem implements ContentNode & DatabaseIdentifier & MenuItemLinkable & Node & NodeWithContentEditor & NodeWithFeaturedImage & NodeWithTemplate & NodeWithTitle & Previewable & UniformResourceIdentifiable & WithAcfContentAddons { "The content of the post." - content( - "Format of the field output" - format: PostObjectFieldFormatEnum - ): String + content("Format of the field output" format: PostObjectFieldFormatEnum): String "Fields of the ContentAddons ACF Field Group" contentAddons: ContentAddons "Connection between the ContentNode type and the ContentType type" @@ -6807,22 +6701,22 @@ type PrivacyPolicyItem implements ContentNode & DatabaseIdentifier & MenuItemLin "Connection between the ContentNode type and the EnqueuedScript type" enqueuedScripts( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): ContentNodeToEnqueuedScriptConnection "Connection between the ContentNode type and the EnqueuedStylesheet type" enqueuedStylesheets( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): ContentNodeToEnqueuedStylesheetConnection @@ -6881,10 +6775,7 @@ type PrivacyPolicyItem implements ContentNode & DatabaseIdentifier & MenuItemLin "The template assigned to the node" template: ContentTemplate "The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made." - title( - "Format of the field output" - format: PostObjectFieldFormatEnum - ): String + title("Format of the field output" format: PostObjectFieldFormatEnum): String "Get specific translation version of this object" translation(language: LanguageCodeEnum!): PrivacyPolicyItem "List all translated versions of this post" @@ -6930,10 +6821,7 @@ type Records implements AcfFieldGroup & AcfFieldGroupFields & Records_Fields { "The Recruit type" type Recruit implements ContentNode & DatabaseIdentifier & MenuItemLinkable & Node & NodeWithContentEditor & NodeWithFeaturedImage & NodeWithTemplate & NodeWithTitle & Previewable & UniformResourceIdentifiable { "The content of the post." - content( - "Format of the field output" - format: PostObjectFieldFormatEnum - ): String + content("Format of the field output" format: PostObjectFieldFormatEnum): String "Connection between the ContentNode type and the ContentType type" contentType: ContentNodeToContentTypeConnectionEdge "The name of the Content Type the node belongs to" @@ -6953,22 +6841,22 @@ type Recruit implements ContentNode & DatabaseIdentifier & MenuItemLinkable & No "Connection between the ContentNode type and the EnqueuedScript type" enqueuedScripts( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): ContentNodeToEnqueuedScriptConnection "Connection between the ContentNode type and the EnqueuedStylesheet type" enqueuedStylesheets( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): ContentNodeToEnqueuedStylesheetConnection @@ -7021,13 +6909,13 @@ type Recruit implements ContentNode & DatabaseIdentifier & MenuItemLinkable & No "Connection between the Recruit type and the recruitList type" recruitLists( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: RecruitToRecruitListConnectionWhereArgs ): RecruitToRecruitListConnection @@ -7042,21 +6930,18 @@ type Recruit implements ContentNode & DatabaseIdentifier & MenuItemLinkable & No "Connection between the Recruit type and the TermNode type" terms( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: RecruitToTermNodeConnectionWhereArgs ): RecruitToTermNodeConnection "The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made." - title( - "Format of the field output" - format: PostObjectFieldFormatEnum - ): String + title("Format of the field output" format: PostObjectFieldFormatEnum): String "Get specific translation version of this object" translation(language: LanguageCodeEnum!): Recruit "List all translated versions of this post" @@ -7070,13 +6955,13 @@ type RecruitList implements DatabaseIdentifier & MenuItemLinkable & Node & TermN "Connection between the RecruitList type and the ContentNode type" contentNodes( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: RecruitListToContentNodeConnectionWhereArgs ): RecruitListToContentNodeConnection @@ -7089,22 +6974,22 @@ type RecruitList implements DatabaseIdentifier & MenuItemLinkable & Node & TermN "Connection between the TermNode type and the EnqueuedScript type" enqueuedScripts( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): TermNodeToEnqueuedScriptConnection "Connection between the TermNode type and the EnqueuedStylesheet type" enqueuedStylesheets( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): TermNodeToEnqueuedStylesheetConnection @@ -7133,13 +7018,13 @@ type RecruitList implements DatabaseIdentifier & MenuItemLinkable & Node & TermN "Connection between the RecruitList type and the Recruit type" recruits( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: RecruitListToRecruitConnectionWhereArgs ): RecruitListToRecruitConnection @@ -7338,10 +7223,7 @@ type RestoreCommentPayload { "The review type" type Review implements ContentNode & DatabaseIdentifier & MenuItemLinkable & Node & NodeWithContentEditor & NodeWithFeaturedImage & NodeWithPageAttributes & NodeWithTemplate & NodeWithTitle & Previewable & UniformResourceIdentifiable & WithAcfCustomerReview { "The content of the post." - content( - "Format of the field output" - format: PostObjectFieldFormatEnum - ): String + content("Format of the field output" format: PostObjectFieldFormatEnum): String "Connection between the ContentNode type and the ContentType type" contentType: ContentNodeToContentTypeConnectionEdge "The name of the Content Type the node belongs to" @@ -7363,22 +7245,22 @@ type Review implements ContentNode & DatabaseIdentifier & MenuItemLinkable & Nod "Connection between the ContentNode type and the EnqueuedScript type" enqueuedScripts( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): ContentNodeToEnqueuedScriptConnection "Connection between the ContentNode type and the EnqueuedStylesheet type" enqueuedStylesheets( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): ContentNodeToEnqueuedStylesheetConnection @@ -7433,13 +7315,13 @@ type Review implements ContentNode & DatabaseIdentifier & MenuItemLinkable & Nod "Connection between the Review type and the reviewList type" reviewLists( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: ReviewToReviewListConnectionWhereArgs ): ReviewToReviewListConnection @@ -7454,21 +7336,18 @@ type Review implements ContentNode & DatabaseIdentifier & MenuItemLinkable & Nod "Connection between the Review type and the TermNode type" terms( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: ReviewToTermNodeConnectionWhereArgs ): ReviewToTermNodeConnection "The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made." - title( - "Format of the field output" - format: PostObjectFieldFormatEnum - ): String + title("Format of the field output" format: PostObjectFieldFormatEnum): String "Get specific translation version of this object" translation(language: LanguageCodeEnum!): Review "List all translated versions of this post" @@ -7482,37 +7361,37 @@ type ReviewList implements DatabaseIdentifier & HierarchicalNode & HierarchicalT "The ancestors of the node. Default ordered as lowest (closest to the child) to highest (closest to the root)." ancestors( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): ReviewListToAncestorsReviewListConnection "Connection between the reviewList type and its children reviewLists." children( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: ReviewListToReviewListConnectionWhereArgs ): ReviewListToReviewListConnection "Connection between the ReviewList type and the ContentNode type" contentNodes( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: ReviewListToContentNodeConnectionWhereArgs ): ReviewListToContentNodeConnection @@ -7525,22 +7404,22 @@ type ReviewList implements DatabaseIdentifier & HierarchicalNode & HierarchicalT "Connection between the TermNode type and the EnqueuedScript type" enqueuedScripts( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): TermNodeToEnqueuedScriptConnection "Connection between the TermNode type and the EnqueuedStylesheet type" enqueuedStylesheets( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): TermNodeToEnqueuedStylesheetConnection @@ -7575,13 +7454,13 @@ type ReviewList implements DatabaseIdentifier & HierarchicalNode & HierarchicalT "Connection between the ReviewList type and the review type" reviews( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: ReviewListToReviewConnectionWhereArgs ): ReviewListToReviewConnection @@ -7905,10 +7784,7 @@ type RootMutation { input: CreateHeroItemInput! ): CreateHeroItemPayload "The createMain mutation" - createMain( - "Input for the createMain mutation" - input: CreateMainInput! - ): CreateMainPayload + createMain("Input for the createMain mutation" input: CreateMainInput!): CreateMainPayload "The createMediaItem mutation" createMediaItem( "Input for the createMediaItem mutation" @@ -7930,15 +7806,9 @@ type RootMutation { input: CreateNotFoundInput! ): CreateNotFoundPayload "The createPage mutation" - createPage( - "Input for the createPage mutation" - input: CreatePageInput! - ): CreatePagePayload + createPage("Input for the createPage mutation" input: CreatePageInput!): CreatePagePayload "The createPost mutation" - createPost( - "Input for the createPost mutation" - input: CreatePostInput! - ): CreatePostPayload + createPost("Input for the createPost mutation" input: CreatePostInput!): CreatePostPayload "The createPostFormat mutation" createPostFormat( "Input for the createPostFormat mutation" @@ -7960,20 +7830,14 @@ type RootMutation { input: CreateRecruitListInput! ): CreateRecruitListPayload "The createReview mutation" - createReview( - "Input for the createReview mutation" - input: CreateReviewInput! - ): CreateReviewPayload + createReview("Input for the createReview mutation" input: CreateReviewInput!): CreateReviewPayload "The createReviewList mutation" createReviewList( "Input for the createReviewList mutation" input: CreateReviewListInput! ): CreateReviewListPayload "The createSkill mutation" - createSkill( - "Input for the createSkill mutation" - input: CreateSkillInput! - ): CreateSkillPayload + createSkill("Input for the createSkill mutation" input: CreateSkillInput!): CreateSkillPayload "The createSkillCategory mutation" createSkillCategory( "Input for the createSkillCategory mutation" @@ -7985,15 +7849,9 @@ type RootMutation { input: CreateSocialNetworkInput! ): CreateSocialNetworkPayload "The createTag mutation" - createTag( - "Input for the createTag mutation" - input: CreateTagInput! - ): CreateTagPayload + createTag("Input for the createTag mutation" input: CreateTagInput!): CreateTagPayload "The createUser mutation" - createUser( - "Input for the createUser mutation" - input: CreateUserInput! - ): CreateUserPayload + createUser("Input for the createUser mutation" input: CreateUserInput!): CreateUserPayload "The deleteAboutItem mutation" deleteAboutItem( "Input for the deleteAboutItem mutation" @@ -8050,10 +7908,7 @@ type RootMutation { input: DeleteHeroItemInput! ): DeleteHeroItemPayload "The deleteMain mutation" - deleteMain( - "Input for the deleteMain mutation" - input: DeleteMainInput! - ): DeleteMainPayload + deleteMain("Input for the deleteMain mutation" input: DeleteMainInput!): DeleteMainPayload "The deleteMediaItem mutation" deleteMediaItem( "Input for the deleteMediaItem mutation" @@ -8075,15 +7930,9 @@ type RootMutation { input: DeleteNotFoundInput! ): DeleteNotFoundPayload "The deletePage mutation" - deletePage( - "Input for the deletePage mutation" - input: DeletePageInput! - ): DeletePagePayload + deletePage("Input for the deletePage mutation" input: DeletePageInput!): DeletePagePayload "The deletePost mutation" - deletePost( - "Input for the deletePost mutation" - input: DeletePostInput! - ): DeletePostPayload + deletePost("Input for the deletePost mutation" input: DeletePostInput!): DeletePostPayload "The deletePostFormat mutation" deletePostFormat( "Input for the deletePostFormat mutation" @@ -8105,20 +7954,14 @@ type RootMutation { input: DeleteRecruitListInput! ): DeleteRecruitListPayload "The deleteReview mutation" - deleteReview( - "Input for the deleteReview mutation" - input: DeleteReviewInput! - ): DeleteReviewPayload + deleteReview("Input for the deleteReview mutation" input: DeleteReviewInput!): DeleteReviewPayload "The deleteReviewList mutation" deleteReviewList( "Input for the deleteReviewList mutation" input: DeleteReviewListInput! ): DeleteReviewListPayload "The deleteSkill mutation" - deleteSkill( - "Input for the deleteSkill mutation" - input: DeleteSkillInput! - ): DeleteSkillPayload + deleteSkill("Input for the deleteSkill mutation" input: DeleteSkillInput!): DeleteSkillPayload "The deleteSkillCategory mutation" deleteSkillCategory( "Input for the deleteSkillCategory mutation" @@ -8130,25 +7973,13 @@ type RootMutation { input: DeleteSocialNetworkInput! ): DeleteSocialNetworkPayload "The deleteTag mutation" - deleteTag( - "Input for the deleteTag mutation" - input: DeleteTagInput! - ): DeleteTagPayload + deleteTag("Input for the deleteTag mutation" input: DeleteTagInput!): DeleteTagPayload "The deleteUser mutation" - deleteUser( - "Input for the deleteUser mutation" - input: DeleteUserInput! - ): DeleteUserPayload + deleteUser("Input for the deleteUser mutation" input: DeleteUserInput!): DeleteUserPayload "Increase the count." - increaseCount( - "The count to increase" - count: Int - ): Int + increaseCount("The count to increase" count: Int): Int "The registerUser mutation" - registerUser( - "Input for the registerUser mutation" - input: RegisterUserInput! - ): RegisterUserPayload + registerUser("Input for the registerUser mutation" input: RegisterUserInput!): RegisterUserPayload "The resetUserPassword mutation" resetUserPassword( "Input for the resetUserPassword mutation" @@ -8165,10 +7996,7 @@ type RootMutation { input: SendPasswordResetEmailInput! ): SendPasswordResetEmailPayload "The submitForm mutation" - submitForm( - "Input for the submitForm mutation" - input: SubmitFormInput! - ): SubmitFormPayload + submitForm("Input for the submitForm mutation" input: SubmitFormInput!): SubmitFormPayload "The updateAboutItem mutation" updateAboutItem( "Input for the updateAboutItem mutation" @@ -8225,10 +8053,7 @@ type RootMutation { input: UpdateHeroItemInput! ): UpdateHeroItemPayload "The updateMain mutation" - updateMain( - "Input for the updateMain mutation" - input: UpdateMainInput! - ): UpdateMainPayload + updateMain("Input for the updateMain mutation" input: UpdateMainInput!): UpdateMainPayload "The updateMediaItem mutation" updateMediaItem( "Input for the updateMediaItem mutation" @@ -8250,15 +8075,9 @@ type RootMutation { input: UpdateNotFoundInput! ): UpdateNotFoundPayload "The updatePage mutation" - updatePage( - "Input for the updatePage mutation" - input: UpdatePageInput! - ): UpdatePagePayload + updatePage("Input for the updatePage mutation" input: UpdatePageInput!): UpdatePagePayload "The updatePost mutation" - updatePost( - "Input for the updatePost mutation" - input: UpdatePostInput! - ): UpdatePostPayload + updatePost("Input for the updatePost mutation" input: UpdatePostInput!): UpdatePostPayload "The updatePostFormat mutation" updatePostFormat( "Input for the updatePostFormat mutation" @@ -8280,10 +8099,7 @@ type RootMutation { input: UpdateRecruitListInput! ): UpdateRecruitListPayload "The updateReview mutation" - updateReview( - "Input for the updateReview mutation" - input: UpdateReviewInput! - ): UpdateReviewPayload + updateReview("Input for the updateReview mutation" input: UpdateReviewInput!): UpdateReviewPayload "The updateReviewList mutation" updateReviewList( "Input for the updateReviewList mutation" @@ -8295,10 +8111,7 @@ type RootMutation { input: UpdateSettingsInput! ): UpdateSettingsPayload "The updateSkill mutation" - updateSkill( - "Input for the updateSkill mutation" - input: UpdateSkillInput! - ): UpdateSkillPayload + updateSkill("Input for the updateSkill mutation" input: UpdateSkillInput!): UpdateSkillPayload "The updateSkillCategory mutation" updateSkillCategory( "Input for the updateSkillCategory mutation" @@ -8310,15 +8123,9 @@ type RootMutation { input: UpdateSocialNetworkInput! ): UpdateSocialNetworkPayload "The updateTag mutation" - updateTag( - "Input for the updateTag mutation" - input: UpdateTagInput! - ): UpdateTagPayload + updateTag("Input for the updateTag mutation" input: UpdateTagInput!): UpdateTagPayload "The updateUser mutation" - updateUser( - "Input for the updateUser mutation" - input: UpdateUserInput! - ): UpdateUserPayload + updateUser("Input for the updateUser mutation" input: UpdateUserInput!): UpdateUserPayload } "The root entry point into the Graph" @@ -8326,46 +8133,49 @@ type RootQuery { "An object of the AboutItem Type. " aboutItem( "Whether to return the Preview Node instead of the Published Node. When the ID of a Node is provided along with asPreview being set to true, the preview node with un-published changes will be returned instead of the published node. If no preview node exists or the requester doesn't have proper capabilities to preview, no node will be returned. If the ID provided is a URI and has a preview query arg, it will be used as a fallback if the \"asPreview\" argument is not explicitly provided as an argument." - asPreview: Boolean, + asPreview: Boolean "The globally unique identifier of the object." - id: ID!, + id: ID! "Type of unique identifier to fetch by. Default is Global ID" idType: AboutItemIdType ): AboutItem "A AboutItem object" aboutItemBy( "Get the AboutItem by its database ID" - aboutItemId: Int, + aboutItemId: Int "Get the AboutItem object by its global ID" - id: ID, + id: ID "Get the AboutItem by its slug (only available for non-hierarchical types)" - slug: String, + slug: String "Get the AboutItem by its uri" uri: String - ): AboutItem @deprecated(reason: "Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "")") + ): AboutItem + @deprecated( + reason: "Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "")" + ) "Connection between the RootQuery type and the AboutItem type" aboutItems( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: RootQueryToAboutItemConnectionWhereArgs ): RootQueryToAboutItemConnection "Connection between the RootQuery type and the confidentialityPolicy type" allConfidentialityPolicy( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: RootQueryToConfidentialityPolicyConnectionWhereArgs ): RootQueryToConfidentialityPolicyConnection @@ -8374,201 +8184,213 @@ type RootQuery { "Connection between the RootQuery type and the category type" categories( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: RootQueryToCategoryConnectionWhereArgs ): RootQueryToCategoryConnection "A 0bject" category( "The globally unique identifier of the object." - id: ID!, + id: ID! "Type of unique identifier to fetch by. Default is Global ID" idType: CategoryIdType ): Category "Returns a Comment" comment( "Unique identifier for the comment node." - id: ID!, + id: ID! "Type of unique identifier to fetch a comment by. Default is Global ID" idType: CommentNodeIdTypeEnum ): Comment "Connection between the RootQuery type and the Comment type" comments( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: RootQueryToCommentConnectionWhereArgs ): RootQueryToCommentConnection "An object of the CommonFragment Type. " commonFragment( "Whether to return the Preview Node instead of the Published Node. When the ID of a Node is provided along with asPreview being set to true, the preview node with un-published changes will be returned instead of the published node. If no preview node exists or the requester doesn't have proper capabilities to preview, no node will be returned. If the ID provided is a URI and has a preview query arg, it will be used as a fallback if the \"asPreview\" argument is not explicitly provided as an argument." - asPreview: Boolean, + asPreview: Boolean "The globally unique identifier of the object." - id: ID!, + id: ID! "Type of unique identifier to fetch by. Default is Global ID" idType: CommonFragmentIdType ): CommonFragment "A CommonFragment object" commonFragmentBy( "Get the CommonFragment by its database ID" - commonFragmentId: Int, + commonFragmentId: Int "Get the CommonFragment object by its global ID" - id: ID, + id: ID "Get the CommonFragment by its slug (only available for non-hierarchical types)" - slug: String, + slug: String "Get the CommonFragment by its uri" uri: String - ): CommonFragment @deprecated(reason: "Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "")") + ): CommonFragment + @deprecated( + reason: "Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "")" + ) "Connection between the RootQuery type and the CommonFragment type" commonFragments( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: RootQueryToCommonFragmentConnectionWhereArgs ): RootQueryToCommonFragmentConnection "An object of the confidentialityPolicy Type. " confidentialityPolicy( "Whether to return the Preview Node instead of the Published Node. When the ID of a Node is provided along with asPreview being set to true, the preview node with un-published changes will be returned instead of the published node. If no preview node exists or the requester doesn't have proper capabilities to preview, no node will be returned. If the ID provided is a URI and has a preview query arg, it will be used as a fallback if the \"asPreview\" argument is not explicitly provided as an argument." - asPreview: Boolean, + asPreview: Boolean "The globally unique identifier of the object." - id: ID!, + id: ID! "Type of unique identifier to fetch by. Default is Global ID" idType: ConfidentialityPolicyIdType ): ConfidentialityPolicy "A confidentialityPolicy object" confidentialityPolicyBy( "Get the confidentialityPolicy by its database ID" - confidentialityPolicyId: Int, + confidentialityPolicyId: Int "Get the confidentialityPolicy object by its global ID" - id: ID, + id: ID "Get the confidentialityPolicy by its slug (only available for non-hierarchical types)" - slug: String, + slug: String "Get the confidentialityPolicy by its uri" uri: String - ): ConfidentialityPolicy @deprecated(reason: "Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "")") + ): ConfidentialityPolicy + @deprecated( + reason: "Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "")" + ) "An object of the Contact Type. " contact( "Whether to return the Preview Node instead of the Published Node. When the ID of a Node is provided along with asPreview being set to true, the preview node with un-published changes will be returned instead of the published node. If no preview node exists or the requester doesn't have proper capabilities to preview, no node will be returned. If the ID provided is a URI and has a preview query arg, it will be used as a fallback if the \"asPreview\" argument is not explicitly provided as an argument." - asPreview: Boolean, + asPreview: Boolean "The globally unique identifier of the object." - id: ID!, + id: ID! "Type of unique identifier to fetch by. Default is Global ID" idType: ContactIdType ): Contact "A Contact object" contactBy( "Get the Contact by its database ID" - contactId: Int, + contactId: Int "Get the Contact object by its global ID" - id: ID, + id: ID "Get the Contact by its slug (only available for non-hierarchical types)" - slug: String, + slug: String "Get the Contact by its uri" uri: String - ): Contact @deprecated(reason: "Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "")") + ): Contact + @deprecated( + reason: "Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "")" + ) "An object of the ContactItem Type. " contactItem( "Whether to return the Preview Node instead of the Published Node. When the ID of a Node is provided along with asPreview being set to true, the preview node with un-published changes will be returned instead of the published node. If no preview node exists or the requester doesn't have proper capabilities to preview, no node will be returned. If the ID provided is a URI and has a preview query arg, it will be used as a fallback if the \"asPreview\" argument is not explicitly provided as an argument." - asPreview: Boolean, + asPreview: Boolean "The globally unique identifier of the object." - id: ID!, + id: ID! "Type of unique identifier to fetch by. Default is Global ID" idType: ContactItemIdType ): ContactItem "A ContactItem object" contactItemBy( "Get the ContactItem by its database ID" - contactItemId: Int, + contactItemId: Int "Get the ContactItem object by its global ID" - id: ID, + id: ID "Get the ContactItem by its slug (only available for non-hierarchical types)" - slug: String, + slug: String "Get the ContactItem by its uri" uri: String - ): ContactItem @deprecated(reason: "Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "")") + ): ContactItem + @deprecated( + reason: "Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "")" + ) "Connection between the RootQuery type and the ContactItem type" contactItems( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: RootQueryToContactItemConnectionWhereArgs ): RootQueryToContactItemConnection "Connection between the RootQuery type and the Contact type" contacts( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: RootQueryToContactConnectionWhereArgs ): RootQueryToContactConnection "A node used to manage content" contentNode( "Whether to return the Preview Node instead of the Published Node. When the ID of a Node is provided along with asPreview being set to true, the preview node with un-published changes will be returned instead of the published node. If no preview node exists or the requester doesn't have proper capabilities to preview, no node will be returned. If the ID provided is a URI and has a preview query arg, it will be used as a fallback if the \"asPreview\" argument is not explicitly provided as an argument." - asPreview: Boolean, + asPreview: Boolean "The content type the node is used for. Required when idType is set to \"name\" or \"slug\"" - contentType: ContentTypeEnum, + contentType: ContentTypeEnum "Unique identifier for the content node." - id: ID!, + id: ID! "Type of unique identifier to fetch a content node by. Default is Global ID" idType: ContentNodeIdTypeEnum ): ContentNode "Connection between the RootQuery type and the ContentNode type" contentNodes( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: RootQueryToContentNodeConnectionWhereArgs ): RootQueryToContentNodeConnection "Fetch a Content Type node by unique Identifier" contentType( "Unique Identifier for the Content Type node." - id: ID!, + id: ID! "Type of unique identifier to fetch a content type by. Default is Global ID" idType: ContentTypeIdTypeEnum ): ContentType "Connection between the RootQuery type and the ContentType type" contentTypes( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): RootQueryToContentTypeConnection @@ -8579,66 +8401,72 @@ type RootQuery { "An object of the FeedbackItem Type. " feedbackItem( "Whether to return the Preview Node instead of the Published Node. When the ID of a Node is provided along with asPreview being set to true, the preview node with un-published changes will be returned instead of the published node. If no preview node exists or the requester doesn't have proper capabilities to preview, no node will be returned. If the ID provided is a URI and has a preview query arg, it will be used as a fallback if the \"asPreview\" argument is not explicitly provided as an argument." - asPreview: Boolean, + asPreview: Boolean "The globally unique identifier of the object." - id: ID!, + id: ID! "Type of unique identifier to fetch by. Default is Global ID" idType: FeedbackItemIdType ): FeedbackItem "A FeedbackItem object" feedbackItemBy( "Get the FeedbackItem by its database ID" - feedbackItemId: Int, + feedbackItemId: Int "Get the FeedbackItem object by its global ID" - id: ID, + id: ID "Get the FeedbackItem by its slug (only available for non-hierarchical types)" - slug: String, + slug: String "Get the FeedbackItem by its uri" uri: String - ): FeedbackItem @deprecated(reason: "Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "")") + ): FeedbackItem + @deprecated( + reason: "Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "")" + ) "Connection between the RootQuery type and the FeedbackItem type" feedbackItems( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: RootQueryToFeedbackItemConnectionWhereArgs ): RootQueryToFeedbackItemConnection "An object of the FooterItem Type. " footerItem( "Whether to return the Preview Node instead of the Published Node. When the ID of a Node is provided along with asPreview being set to true, the preview node with un-published changes will be returned instead of the published node. If no preview node exists or the requester doesn't have proper capabilities to preview, no node will be returned. If the ID provided is a URI and has a preview query arg, it will be used as a fallback if the \"asPreview\" argument is not explicitly provided as an argument." - asPreview: Boolean, + asPreview: Boolean "The globally unique identifier of the object." - id: ID!, + id: ID! "Type of unique identifier to fetch by. Default is Global ID" idType: FooterItemIdType ): FooterItem "A FooterItem object" footerItemBy( "Get the FooterItem by its database ID" - footerItemId: Int, + footerItemId: Int "Get the FooterItem object by its global ID" - id: ID, + id: ID "Get the FooterItem by its slug (only available for non-hierarchical types)" - slug: String, + slug: String "Get the FooterItem by its uri" uri: String - ): FooterItem @deprecated(reason: "Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "")") + ): FooterItem + @deprecated( + reason: "Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "")" + ) "Connection between the RootQuery type and the FooterItem type" footerItems( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: RootQueryToFooterItemConnectionWhereArgs ): RootQueryToFooterItemConnection @@ -8648,44 +8476,47 @@ type RootQuery { "Connection between the RootQuery type and the Form type" forms( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): RootQueryToFormConnection "An object of the Fragment Type. " fragment( "Whether to return the Preview Node instead of the Published Node. When the ID of a Node is provided along with asPreview being set to true, the preview node with un-published changes will be returned instead of the published node. If no preview node exists or the requester doesn't have proper capabilities to preview, no node will be returned. If the ID provided is a URI and has a preview query arg, it will be used as a fallback if the \"asPreview\" argument is not explicitly provided as an argument." - asPreview: Boolean, + asPreview: Boolean "The globally unique identifier of the object." - id: ID!, + id: ID! "Type of unique identifier to fetch by. Default is Global ID" idType: FragmentIdType ): Fragment "A Fragment object" fragmentBy( "Get the Fragment by its database ID" - fragmentId: Int, + fragmentId: Int "Get the Fragment object by its global ID" - id: ID, + id: ID "Get the Fragment by its slug (only available for non-hierarchical types)" - slug: String, + slug: String "Get the Fragment by its uri" uri: String - ): Fragment @deprecated(reason: "Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "")") + ): Fragment + @deprecated( + reason: "Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "")" + ) "Connection between the RootQuery type and the Fragment type" fragments( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: RootQueryToFragmentConnectionWhereArgs ): RootQueryToFragmentConnection @@ -8694,33 +8525,36 @@ type RootQuery { "An object of the HeroItem Type. " heroItem( "Whether to return the Preview Node instead of the Published Node. When the ID of a Node is provided along with asPreview being set to true, the preview node with un-published changes will be returned instead of the published node. If no preview node exists or the requester doesn't have proper capabilities to preview, no node will be returned. If the ID provided is a URI and has a preview query arg, it will be used as a fallback if the \"asPreview\" argument is not explicitly provided as an argument." - asPreview: Boolean, + asPreview: Boolean "The globally unique identifier of the object." - id: ID!, + id: ID! "Type of unique identifier to fetch by. Default is Global ID" idType: HeroItemIdType ): HeroItem "A HeroItem object" heroItemBy( "Get the HeroItem by its database ID" - heroItemId: Int, + heroItemId: Int "Get the HeroItem object by its global ID" - id: ID, + id: ID "Get the HeroItem by its slug (only available for non-hierarchical types)" - slug: String, + slug: String "Get the HeroItem by its uri" uri: String - ): HeroItem @deprecated(reason: "Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "")") + ): HeroItem + @deprecated( + reason: "Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "")" + ) "Connection between the RootQuery type and the HeroItem type" heroItems( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: RootQueryToHeroItemConnectionWhereArgs ): RootQueryToHeroItemConnection @@ -8729,180 +8563,189 @@ type RootQuery { "An object of the Main Type. " main( "Whether to return the Preview Node instead of the Published Node. When the ID of a Node is provided along with asPreview being set to true, the preview node with un-published changes will be returned instead of the published node. If no preview node exists or the requester doesn't have proper capabilities to preview, no node will be returned. If the ID provided is a URI and has a preview query arg, it will be used as a fallback if the \"asPreview\" argument is not explicitly provided as an argument." - asPreview: Boolean, + asPreview: Boolean "The globally unique identifier of the object." - id: ID!, + id: ID! "Type of unique identifier to fetch by. Default is Global ID" idType: MainIdType ): Main "A Main object" mainBy( "Get the Main object by its global ID" - id: ID, + id: ID "Get the Main by its database ID" - mainId: Int, + mainId: Int "Get the Main by its slug (only available for non-hierarchical types)" - slug: String, + slug: String "Get the Main by its uri" uri: String - ): Main @deprecated(reason: "Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "")") + ): Main + @deprecated( + reason: "Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "")" + ) "Connection between the RootQuery type and the Main type" mains( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: RootQueryToMainConnectionWhereArgs ): RootQueryToMainConnection "An object of the mediaItem Type. " mediaItem( "Whether to return the Preview Node instead of the Published Node. When the ID of a Node is provided along with asPreview being set to true, the preview node with un-published changes will be returned instead of the published node. If no preview node exists or the requester doesn't have proper capabilities to preview, no node will be returned. If the ID provided is a URI and has a preview query arg, it will be used as a fallback if the \"asPreview\" argument is not explicitly provided as an argument." - asPreview: Boolean, + asPreview: Boolean "The globally unique identifier of the object." - id: ID!, + id: ID! "Type of unique identifier to fetch by. Default is Global ID" idType: MediaItemIdType ): MediaItem "A mediaItem object" mediaItemBy( "Get the mediaItem object by its global ID" - id: ID, + id: ID "Get the mediaItem by its database ID" - mediaItemId: Int, + mediaItemId: Int "Get the mediaItem by its slug (only available for non-hierarchical types)" - slug: String, + slug: String "Get the mediaItem by its uri" uri: String - ): MediaItem @deprecated(reason: "Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "")") + ): MediaItem + @deprecated( + reason: "Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "")" + ) "Connection between the RootQuery type and the mediaItem type" mediaItems( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: RootQueryToMediaItemConnectionWhereArgs ): RootQueryToMediaItemConnection "A WordPress navigation menu" menu( "The globally unique identifier of the menu." - id: ID!, + id: ID! "Type of unique identifier to fetch a menu by. Default is Global ID" idType: MenuNodeIdTypeEnum ): Menu "A WordPress navigation menu item" menuItem( "The globally unique identifier of the menu item." - id: ID!, + id: ID! "Type of unique identifier to fetch a menu item by. Default is Global ID" idType: MenuItemNodeIdTypeEnum ): MenuItem "Connection between the RootQuery type and the MenuItem type" menuItems( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: RootQueryToMenuItemConnectionWhereArgs ): RootQueryToMenuItemConnection "Connection between the RootQuery type and the Menu type" menus( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: RootQueryToMenuConnectionWhereArgs ): RootQueryToMenuConnection "An object of the Messenger Type. " messenger( "Whether to return the Preview Node instead of the Published Node. When the ID of a Node is provided along with asPreview being set to true, the preview node with un-published changes will be returned instead of the published node. If no preview node exists or the requester doesn't have proper capabilities to preview, no node will be returned. If the ID provided is a URI and has a preview query arg, it will be used as a fallback if the \"asPreview\" argument is not explicitly provided as an argument." - asPreview: Boolean, + asPreview: Boolean "The globally unique identifier of the object." - id: ID!, + id: ID! "Type of unique identifier to fetch by. Default is Global ID" idType: MessengerIdType ): Messenger "A Messenger object" messengerBy( "Get the Messenger object by its global ID" - id: ID, + id: ID "Get the Messenger by its database ID" - messengerId: Int, + messengerId: Int "Get the Messenger by its slug (only available for non-hierarchical types)" - slug: String, + slug: String "Get the Messenger by its uri" uri: String - ): Messenger @deprecated(reason: "Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "")") + ): Messenger + @deprecated( + reason: "Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "")" + ) "Connection between the RootQuery type and the Messenger type" messengers( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: RootQueryToMessengerConnectionWhereArgs ): RootQueryToMessengerConnection "An object of the NavigationItem Type. " navigationItem( "Whether to return the Preview Node instead of the Published Node. When the ID of a Node is provided along with asPreview being set to true, the preview node with un-published changes will be returned instead of the published node. If no preview node exists or the requester doesn't have proper capabilities to preview, no node will be returned. If the ID provided is a URI and has a preview query arg, it will be used as a fallback if the \"asPreview\" argument is not explicitly provided as an argument." - asPreview: Boolean, + asPreview: Boolean "The globally unique identifier of the object." - id: ID!, + id: ID! "Type of unique identifier to fetch by. Default is Global ID" idType: NavigationItemIdType ): NavigationItem "A NavigationItem object" navigationItemBy( "Get the NavigationItem object by its global ID" - id: ID, + id: ID "Get the NavigationItem by its database ID" - navigationItemId: Int, + navigationItemId: Int "Get the NavigationItem by its slug (only available for non-hierarchical types)" - slug: String, + slug: String "Get the NavigationItem by its uri" uri: String - ): NavigationItem @deprecated(reason: "Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "")") + ): NavigationItem + @deprecated( + reason: "Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "")" + ) "Connection between the RootQuery type and the NavigationItem type" navigationItems( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: RootQueryToNavigationItemConnectionWhereArgs ): RootQueryToNavigationItemConnection "Fetches an object given its ID" - node( - "The unique identifier of the node" - id: ID - ): Node + node("The unique identifier of the node" id: ID): Node "Fetches an object given its Unique Resource Identifier" nodeByUri( "Unique Resource Identifier in the form of a path or permalink for a node. Ex: \"/hello-world\"" @@ -8911,168 +8754,177 @@ type RootQuery { "An object of the NotFound Type. " notFound( "Whether to return the Preview Node instead of the Published Node. When the ID of a Node is provided along with asPreview being set to true, the preview node with un-published changes will be returned instead of the published node. If no preview node exists or the requester doesn't have proper capabilities to preview, no node will be returned. If the ID provided is a URI and has a preview query arg, it will be used as a fallback if the \"asPreview\" argument is not explicitly provided as an argument." - asPreview: Boolean, + asPreview: Boolean "The globally unique identifier of the object." - id: ID!, + id: ID! "Type of unique identifier to fetch by. Default is Global ID" idType: NotFoundIdType ): NotFound "A NotFound object" notFoundBy( "Get the NotFound object by its global ID" - id: ID, + id: ID "Get the NotFound by its database ID" - notFoundId: Int, + notFoundId: Int "Get the NotFound by its slug (only available for non-hierarchical types)" - slug: String, + slug: String "Get the NotFound by its uri" uri: String - ): NotFound @deprecated(reason: "Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "")") + ): NotFound + @deprecated( + reason: "Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "")" + ) "Connection between the RootQuery type and the NotFound type" notFounds( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: RootQueryToNotFoundConnectionWhereArgs ): RootQueryToNotFoundConnection "An object of the page Type. " page( "Whether to return the Preview Node instead of the Published Node. When the ID of a Node is provided along with asPreview being set to true, the preview node with un-published changes will be returned instead of the published node. If no preview node exists or the requester doesn't have proper capabilities to preview, no node will be returned. If the ID provided is a URI and has a preview query arg, it will be used as a fallback if the \"asPreview\" argument is not explicitly provided as an argument." - asPreview: Boolean, + asPreview: Boolean "The globally unique identifier of the object." - id: ID!, + id: ID! "Type of unique identifier to fetch by. Default is Global ID" idType: PageIdType ): Page "A page object" pageBy( "Get the page object by its global ID" - id: ID, + id: ID "Get the page by its database ID" - pageId: Int, + pageId: Int "Get the page by its uri" uri: String - ): Page @deprecated(reason: "Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "")") + ): Page + @deprecated( + reason: "Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "")" + ) "Connection between the RootQuery type and the page type" pages( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: RootQueryToPageConnectionWhereArgs ): RootQueryToPageConnection "A WordPress plugin" - plugin( - "The globally unique identifier of the plugin." - id: ID! - ): Plugin + plugin("The globally unique identifier of the plugin." id: ID!): Plugin "Connection between the RootQuery type and the Plugin type" plugins( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: RootQueryToPluginConnectionWhereArgs ): RootQueryToPluginConnection "An object of the post Type. " post( "Whether to return the Preview Node instead of the Published Node. When the ID of a Node is provided along with asPreview being set to true, the preview node with un-published changes will be returned instead of the published node. If no preview node exists or the requester doesn't have proper capabilities to preview, no node will be returned. If the ID provided is a URI and has a preview query arg, it will be used as a fallback if the \"asPreview\" argument is not explicitly provided as an argument." - asPreview: Boolean, + asPreview: Boolean "The globally unique identifier of the object." - id: ID!, + id: ID! "Type of unique identifier to fetch by. Default is Global ID" idType: PostIdType ): Post "A post object" postBy( "Get the post object by its global ID" - id: ID, + id: ID "Get the post by its database ID" - postId: Int, + postId: Int "Get the post by its slug (only available for non-hierarchical types)" - slug: String, + slug: String "Get the post by its uri" uri: String - ): Post @deprecated(reason: "Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "")") + ): Post + @deprecated( + reason: "Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "")" + ) "A 0bject" postFormat( "The globally unique identifier of the object." - id: ID!, + id: ID! "Type of unique identifier to fetch by. Default is Global ID" idType: PostFormatIdType ): PostFormat "Connection between the RootQuery type and the postFormat type" postFormats( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: RootQueryToPostFormatConnectionWhereArgs ): RootQueryToPostFormatConnection "Connection between the RootQuery type and the post type" posts( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: RootQueryToPostConnectionWhereArgs ): RootQueryToPostConnection "An object of the PrivacyPolicyItem Type. " privacyPolicyItem( "Whether to return the Preview Node instead of the Published Node. When the ID of a Node is provided along with asPreview being set to true, the preview node with un-published changes will be returned instead of the published node. If no preview node exists or the requester doesn't have proper capabilities to preview, no node will be returned. If the ID provided is a URI and has a preview query arg, it will be used as a fallback if the \"asPreview\" argument is not explicitly provided as an argument." - asPreview: Boolean, + asPreview: Boolean "The globally unique identifier of the object." - id: ID!, + id: ID! "Type of unique identifier to fetch by. Default is Global ID" idType: PrivacyPolicyItemIdType ): PrivacyPolicyItem "A PrivacyPolicyItem object" privacyPolicyItemBy( "Get the PrivacyPolicyItem object by its global ID" - id: ID, + id: ID "Get the PrivacyPolicyItem by its database ID" - privacyPolicyItemId: Int, + privacyPolicyItemId: Int "Get the PrivacyPolicyItem by its slug (only available for non-hierarchical types)" - slug: String, + slug: String "Get the PrivacyPolicyItem by its uri" uri: String - ): PrivacyPolicyItem @deprecated(reason: "Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "")") + ): PrivacyPolicyItem + @deprecated( + reason: "Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "")" + ) "Connection between the RootQuery type and the PrivacyPolicyItem type" privacyPolicyItems( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: RootQueryToPrivacyPolicyItemConnectionWhereArgs ): RootQueryToPrivacyPolicyItemConnection @@ -9081,141 +8933,147 @@ type RootQuery { "An object of the Recruit Type. " recruit( "Whether to return the Preview Node instead of the Published Node. When the ID of a Node is provided along with asPreview being set to true, the preview node with un-published changes will be returned instead of the published node. If no preview node exists or the requester doesn't have proper capabilities to preview, no node will be returned. If the ID provided is a URI and has a preview query arg, it will be used as a fallback if the \"asPreview\" argument is not explicitly provided as an argument." - asPreview: Boolean, + asPreview: Boolean "The globally unique identifier of the object." - id: ID!, + id: ID! "Type of unique identifier to fetch by. Default is Global ID" idType: RecruitIdType ): Recruit "A Recruit object" recruitBy( "Get the Recruit object by its global ID" - id: ID, + id: ID "Get the Recruit by its database ID" - recruitId: Int, + recruitId: Int "Get the Recruit by its slug (only available for non-hierarchical types)" - slug: String, + slug: String "Get the Recruit by its uri" uri: String - ): Recruit @deprecated(reason: "Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "")") + ): Recruit + @deprecated( + reason: "Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "")" + ) "A 0bject" recruitList( "The globally unique identifier of the object." - id: ID!, + id: ID! "Type of unique identifier to fetch by. Default is Global ID" idType: RecruitListIdType ): RecruitList "Connection between the RootQuery type and the recruitList type" recruitLists( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: RootQueryToRecruitListConnectionWhereArgs ): RootQueryToRecruitListConnection "Connection between the RootQuery type and the Recruit type" recruits( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: RootQueryToRecruitConnectionWhereArgs ): RootQueryToRecruitConnection "Connection between the RootQuery type and the EnqueuedScript type" registeredScripts( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): RootQueryToEnqueuedScriptConnection "Connection between the RootQuery type and the EnqueuedStylesheet type" registeredStylesheets( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): RootQueryToEnqueuedStylesheetConnection "An object of the review Type. " review( "Whether to return the Preview Node instead of the Published Node. When the ID of a Node is provided along with asPreview being set to true, the preview node with un-published changes will be returned instead of the published node. If no preview node exists or the requester doesn't have proper capabilities to preview, no node will be returned. If the ID provided is a URI and has a preview query arg, it will be used as a fallback if the \"asPreview\" argument is not explicitly provided as an argument." - asPreview: Boolean, + asPreview: Boolean "The globally unique identifier of the object." - id: ID!, + id: ID! "Type of unique identifier to fetch by. Default is Global ID" idType: ReviewIdType ): Review "A review object" reviewBy( "Get the review object by its global ID" - id: ID, + id: ID "Get the review by its database ID" - reviewId: Int, + reviewId: Int "Get the review by its slug (only available for non-hierarchical types)" - slug: String, + slug: String "Get the review by its uri" uri: String - ): Review @deprecated(reason: "Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "")") + ): Review + @deprecated( + reason: "Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "")" + ) "A 0bject" reviewList( "The globally unique identifier of the object." - id: ID!, + id: ID! "Type of unique identifier to fetch by. Default is Global ID" idType: ReviewListIdType ): ReviewList "Connection between the RootQuery type and the reviewList type" reviewLists( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: RootQueryToReviewListConnectionWhereArgs ): RootQueryToReviewListConnection "Connection between the RootQuery type and the review type" reviews( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: RootQueryToReviewConnectionWhereArgs ): RootQueryToReviewConnection "Connection between the RootQuery type and the ContentNode type" revisions( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: RootQueryToRevisionsConnectionWhereArgs ): RootQueryToRevisionsConnection @@ -9224,160 +9082,163 @@ type RootQuery { "An object of the Skill Type. " skill( "Whether to return the Preview Node instead of the Published Node. When the ID of a Node is provided along with asPreview being set to true, the preview node with un-published changes will be returned instead of the published node. If no preview node exists or the requester doesn't have proper capabilities to preview, no node will be returned. If the ID provided is a URI and has a preview query arg, it will be used as a fallback if the \"asPreview\" argument is not explicitly provided as an argument." - asPreview: Boolean, + asPreview: Boolean "The globally unique identifier of the object." - id: ID!, + id: ID! "Type of unique identifier to fetch by. Default is Global ID" idType: SkillIdType ): Skill "A Skill object" skillBy( "Get the Skill object by its global ID" - id: ID, + id: ID "Get the Skill by its database ID" - skillId: Int, + skillId: Int "Get the Skill by its uri" uri: String - ): Skill @deprecated(reason: "Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "")") + ): Skill + @deprecated( + reason: "Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "")" + ) "Connection between the RootQuery type and the SkillCategory type" skillCategories( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: RootQueryToSkillCategoryConnectionWhereArgs ): RootQueryToSkillCategoryConnection "A 0bject" skillCategory( "The globally unique identifier of the object." - id: ID!, + id: ID! "Type of unique identifier to fetch by. Default is Global ID" idType: SkillCategoryIdType ): SkillCategory "Connection between the RootQuery type and the Skill type" skills( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: RootQueryToSkillConnectionWhereArgs ): RootQueryToSkillConnection "An object of the SocialNetwork Type. " socialNetwork( "Whether to return the Preview Node instead of the Published Node. When the ID of a Node is provided along with asPreview being set to true, the preview node with un-published changes will be returned instead of the published node. If no preview node exists or the requester doesn't have proper capabilities to preview, no node will be returned. If the ID provided is a URI and has a preview query arg, it will be used as a fallback if the \"asPreview\" argument is not explicitly provided as an argument." - asPreview: Boolean, + asPreview: Boolean "The globally unique identifier of the object." - id: ID!, + id: ID! "Type of unique identifier to fetch by. Default is Global ID" idType: SocialNetworkIdType ): SocialNetwork "A SocialNetwork object" socialNetworkBy( "Get the SocialNetwork object by its global ID" - id: ID, + id: ID "Get the SocialNetwork by its slug (only available for non-hierarchical types)" - slug: String, + slug: String "Get the SocialNetwork by its database ID" - socialNetworkId: Int, + socialNetworkId: Int "Get the SocialNetwork by its uri" uri: String - ): SocialNetwork @deprecated(reason: "Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "")") + ): SocialNetwork + @deprecated( + reason: "Deprecated in favor of using the single entry point for this type with ID and IDType fields. For example, instead of postBy( id: "" ), use post(id: "" idType: "")" + ) "Connection between the RootQuery type and the SocialNetwork type" socialNetworks( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: RootQueryToSocialNetworkConnectionWhereArgs ): RootQueryToSocialNetworkConnection "A 0bject" tag( "The globally unique identifier of the object." - id: ID!, + id: ID! "Type of unique identifier to fetch by. Default is Global ID" idType: TagIdType ): Tag "Connection between the RootQuery type and the tag type" tags( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: RootQueryToTagConnectionWhereArgs ): RootQueryToTagConnection "Connection between the RootQuery type and the Taxonomy type" taxonomies( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): RootQueryToTaxonomyConnection "Fetch a Taxonomy node by unique Identifier" taxonomy( "Unique Identifier for the Taxonomy node." - id: ID!, + id: ID! "Type of unique identifier to fetch a taxonomy by. Default is Global ID" idType: TaxonomyIdTypeEnum ): Taxonomy "A node in a taxonomy used to group and relate content nodes" termNode( "Unique identifier for the term node." - id: ID!, + id: ID! "Type of unique identifier to fetch a term node by. Default is Global ID" - idType: TermNodeIdTypeEnum, + idType: TermNodeIdTypeEnum "The taxonomy of the tern node. Required when idType is set to \"name\" or \"slug\"" taxonomy: TaxonomyEnum ): TermNode "Connection between the RootQuery type and the TermNode type" terms( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: RootQueryToTermNodeConnectionWhereArgs ): RootQueryToTermNodeConnection "A Theme object" - theme( - "The globally unique identifier of the theme." - id: ID! - ): Theme + theme("The globally unique identifier of the theme." id: ID!): Theme "Connection between the RootQuery type and the Theme type" themes( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): RootQueryToThemeConnection @@ -9386,36 +9247,33 @@ type RootQuery { "Returns a user" user( "The globally unique identifier of the user." - id: ID!, + id: ID! "Type of unique identifier to fetch a user by. Default is Global ID" idType: UserNodeIdTypeEnum ): User "Returns a user role" - userRole( - "The globally unique identifier of the user object." - id: ID! - ): UserRole + userRole("The globally unique identifier of the user object." id: ID!): UserRole "Connection between the RootQuery type and the UserRole type" userRoles( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): RootQueryToUserRoleConnection "Connection between the RootQuery type and the User type" users( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: RootQueryToUserConnectionWhereArgs ): RootQueryToUserConnection @@ -11094,34 +10952,31 @@ type Skill implements ContentNode & DatabaseIdentifier & HierarchicalContentNode "Returns ancestors of the node. Default ordered as lowest (closest to the child) to highest (closest to the root)." ancestors( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: HierarchicalContentNodeToContentNodeAncestorsConnectionWhereArgs ): HierarchicalContentNodeToContentNodeAncestorsConnection "Connection between the HierarchicalContentNode type and the ContentNode type" children( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: HierarchicalContentNodeToContentNodeChildrenConnectionWhereArgs ): HierarchicalContentNodeToContentNodeChildrenConnection "The content of the post." - content( - "Format of the field output" - format: PostObjectFieldFormatEnum - ): String + content("Format of the field output" format: PostObjectFieldFormatEnum): String "Connection between the ContentNode type and the ContentType type" contentType: ContentNodeToContentTypeConnectionEdge "The name of the Content Type the node belongs to" @@ -11141,22 +10996,22 @@ type Skill implements ContentNode & DatabaseIdentifier & HierarchicalContentNode "Connection between the ContentNode type and the EnqueuedScript type" enqueuedScripts( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): ContentNodeToEnqueuedScriptConnection "Connection between the ContentNode type and the EnqueuedStylesheet type" enqueuedStylesheets( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): ContentNodeToEnqueuedStylesheetConnection @@ -11217,13 +11072,13 @@ type Skill implements ContentNode & DatabaseIdentifier & HierarchicalContentNode "Connection between the Skill type and the SkillCategory type" skillCategories( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: SkillToSkillCategoryConnectionWhereArgs ): SkillToSkillCategoryConnection @@ -11238,21 +11093,18 @@ type Skill implements ContentNode & DatabaseIdentifier & HierarchicalContentNode "Connection between the Skill type and the TermNode type" terms( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: SkillToTermNodeConnectionWhereArgs ): SkillToTermNodeConnection "The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made." - title( - "Format of the field output" - format: PostObjectFieldFormatEnum - ): String + title("Format of the field output" format: PostObjectFieldFormatEnum): String "Get specific translation version of this object" translation(language: LanguageCodeEnum!): Skill "List all translated versions of this post" @@ -11274,37 +11126,37 @@ type SkillCategory implements DatabaseIdentifier & HierarchicalNode & Hierarchic "The ancestors of the node. Default ordered as lowest (closest to the child) to highest (closest to the root)." ancestors( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): SkillCategoryToAncestorsSkillCategoryConnection "Connection between the SkillCategory type and its children SkillCategories." children( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: SkillCategoryToSkillCategoryConnectionWhereArgs ): SkillCategoryToSkillCategoryConnection "Connection between the SkillCategory type and the ContentNode type" contentNodes( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: SkillCategoryToContentNodeConnectionWhereArgs ): SkillCategoryToContentNodeConnection @@ -11317,22 +11169,22 @@ type SkillCategory implements DatabaseIdentifier & HierarchicalNode & Hierarchic "Connection between the TermNode type and the EnqueuedScript type" enqueuedScripts( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): TermNodeToEnqueuedScriptConnection "Connection between the TermNode type and the EnqueuedStylesheet type" enqueuedStylesheets( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): TermNodeToEnqueuedStylesheetConnection @@ -11371,13 +11223,13 @@ type SkillCategory implements DatabaseIdentifier & HierarchicalNode & Hierarchic "Connection between the SkillCategory type and the Skill type" skills( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: SkillCategoryToSkillConnectionWhereArgs ): SkillCategoryToSkillConnection @@ -11620,10 +11472,7 @@ type SkillToTermNodeConnectionPageInfo implements PageInfo & TermNodeConnectionP "The SocialNetwork type" type SocialNetwork implements ContentNode & DatabaseIdentifier & MenuItemLinkable & Node & NodeWithContentEditor & NodeWithFeaturedImage & NodeWithTemplate & NodeWithTitle & Previewable & UniformResourceIdentifiable & WithAcfContentAddons { "The content of the post." - content( - "Format of the field output" - format: PostObjectFieldFormatEnum - ): String + content("Format of the field output" format: PostObjectFieldFormatEnum): String "Fields of the ContentAddons ACF Field Group" contentAddons: ContentAddons "Connection between the ContentNode type and the ContentType type" @@ -11645,22 +11494,22 @@ type SocialNetwork implements ContentNode & DatabaseIdentifier & MenuItemLinkabl "Connection between the ContentNode type and the EnqueuedScript type" enqueuedScripts( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): ContentNodeToEnqueuedScriptConnection "Connection between the ContentNode type and the EnqueuedStylesheet type" enqueuedStylesheets( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): ContentNodeToEnqueuedStylesheetConnection @@ -11717,10 +11566,7 @@ type SocialNetwork implements ContentNode & DatabaseIdentifier & MenuItemLinkabl "The template assigned to the node" template: ContentTemplate "The title of the post. This is currently just the raw title. An amendment to support rendered title needs to be made." - title( - "Format of the field output" - format: PostObjectFieldFormatEnum - ): String + title("Format of the field output" format: PostObjectFieldFormatEnum): String "The unique resource identifier path" uri: String } @@ -11750,13 +11596,13 @@ type Tag implements DatabaseIdentifier & MenuItemLinkable & Node & TermNode & Un "Connection between the Tag type and the ContentNode type" contentNodes( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: TagToContentNodeConnectionWhereArgs ): TagToContentNodeConnection @@ -11769,22 +11615,22 @@ type Tag implements DatabaseIdentifier & MenuItemLinkable & Node & TermNode & Un "Connection between the TermNode type and the EnqueuedScript type" enqueuedScripts( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): TermNodeToEnqueuedScriptConnection "Connection between the TermNode type and the EnqueuedStylesheet type" enqueuedStylesheets( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): TermNodeToEnqueuedStylesheetConnection @@ -11811,13 +11657,13 @@ type Tag implements DatabaseIdentifier & MenuItemLinkable & Node & TermNode & Un "Connection between the Tag type and the post type" posts( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: TagToPostConnectionWhereArgs ): TagToPostConnection @@ -11920,22 +11766,22 @@ type Taxonomy implements Node { "List of Content Types associated with the Taxonomy" connectedContentTypes( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): TaxonomyToContentTypeConnection "List of Term Nodes associated with the Taxonomy" connectedTerms( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): TaxonomyToTermNodeConnection @@ -12415,9 +12261,9 @@ type User implements Commenter & DatabaseIdentifier & Node & UniformResourceIden "Avatar object for user. The avatar object can be retrieved in different sizes by specifying the size argument." avatar( "Whether to always show the default image, never the Gravatar. Default false" - forceDefault: Boolean, + forceDefault: Boolean "The rating level of the avatar." - rating: AvatarRatingEnum, + rating: AvatarRatingEnum "The size attribute of the avatar field can be used to fetch avatars of different sizes. The value corresponds to the dimension in pixels to fetch. The default is 96 pixels." size: Int = 96 ): Avatar @@ -12428,13 +12274,13 @@ type User implements Commenter & DatabaseIdentifier & Node & UniformResourceIden "Connection between the User type and the Comment type" comments( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: UserToCommentConnectionWhereArgs ): UserToCommentConnection @@ -12447,22 +12293,22 @@ type User implements Commenter & DatabaseIdentifier & Node & UniformResourceIden "Connection between the User type and the EnqueuedScript type" enqueuedScripts( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): UserToEnqueuedScriptConnection "Connection between the User type and the EnqueuedStylesheet type" enqueuedStylesheets( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): UserToEnqueuedStylesheetConnection @@ -12491,13 +12337,13 @@ type User implements Commenter & DatabaseIdentifier & Node & UniformResourceIden "Connection between the User type and the mediaItem type" mediaItems( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: UserToMediaItemConnectionWhereArgs ): UserToMediaItemConnection @@ -12510,26 +12356,26 @@ type User implements Commenter & DatabaseIdentifier & Node & UniformResourceIden "Connection between the User type and the page type" pages( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: UserToPageConnectionWhereArgs ): UserToPageConnection "Connection between the User type and the post type" posts( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: UserToPostConnectionWhereArgs ): UserToPostConnection @@ -12538,24 +12384,24 @@ type User implements Commenter & DatabaseIdentifier & Node & UniformResourceIden "Connection between the User and Revisions authored by the user" revisions( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" - last: Int, + last: Int "Arguments for filtering the connection" where: UserToRevisionsConnectionWhereArgs ): UserToRevisionsConnection "Connection between the User type and the UserRole type" roles( "Cursor used along with the \"first\" argument to reference where in the dataset to get data" - after: String, + after: String "Cursor used along with the \"last\" argument to reference where in the dataset to get data" - before: String, + before: String "The number of items to return after the referenced \"after\" cursor" - first: Int, + first: Int "The number of items to return before the referenced \"before\" cursor" last: Int ): UserToUserRoleConnection @@ -14802,7 +14648,7 @@ input CreateUserInput { displayName: String "A string containing the user's email address." email: String - "\tThe user's first name." + " The user's first name." firstName: String "User's Jabber account." jabber: String @@ -16162,7 +16008,7 @@ input RegisterUserInput { displayName: String "A string containing the user's email address." email: String - "\tThe user's first name." + " The user's first name." firstName: String "User's Jabber account." jabber: String @@ -18976,7 +18822,7 @@ input UpdateUserInput { displayName: String "A string containing the user's email address." email: String - "\tThe user's first name." + " The user's first name." firstName: String "The ID of the user" id: ID!