@meshmakers/octo-services 3.3.34 → 3.3.380

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1 +1 @@
1
- {"version":3,"file":"meshmakers-octo-services.mjs","sources":["../../../../projects/meshmakers/octo-services/src/lib/models/pagedGraphResultDto.ts","../../../../projects/meshmakers/octo-services/src/lib/services/octo-graph-ql-service-base.ts","../../../../projects/meshmakers/octo-services/src/lib/options/octo-service-options.ts","../../../../projects/meshmakers/octo-services/src/lib/shared/octo-error-link.ts","../../../../projects/meshmakers/octo-services/src/lib/octo-services.module.ts","../../../../projects/meshmakers/octo-services/src/lib/shared/graphQL.ts","../../../../projects/meshmakers/octo-services/src/lib/services/assetRepoGraphQlDataSource.ts","../../../../projects/meshmakers/octo-services/src/lib/shared/globalTypes.ts","../../../../projects/meshmakers/octo-services/src/public-api.ts","../../../../projects/meshmakers/octo-services/src/meshmakers-octo-services.ts"],"sourcesContent":["import { PagedResultDto } from '@meshmakers/shared-services';\n\nexport class PagedGraphResultDto<P, C> extends PagedResultDto<C> {\n document: P | null;\n\n constructor() {\n super();\n\n this.document = null;\n }\n}\n","import { DocumentNode } from 'graphql';\nimport { finalize, map } from 'rxjs/operators';\nimport { Apollo } from 'apollo-angular';\nimport { OctoServiceOptions } from '../options/octo-service-options';\nimport { PagedGraphResultDto } from '../models/pagedGraphResultDto';\nimport { PagedResultDto } from '@meshmakers/shared-services';\nimport { HttpLink } from 'apollo-angular/http';\nimport { InMemoryCache } from '@apollo/client/core';\nimport { OperationVariables } from '@apollo/client/core/types';\nimport { Observable } from 'rxjs';\nimport { DeepPartial } from \"@apollo/client/utilities\";\nimport QueryResult = Apollo.QueryResult;\nimport type { ObservableQuery } from \"@apollo/client\";\n\nexport class OctoGraphQLServiceBase {\n constructor(\n private readonly apollo: Apollo,\n private readonly httpLink: HttpLink,\n private readonly octoServiceOptions: OctoServiceOptions\n ) {}\n\n protected getEntities<TResult, TEntity, TVariable extends OperationVariables>(\n tenantId: string,\n variables: TVariable,\n queryNode: DocumentNode,\n watchQuery: boolean,\n f: (resultSet: PagedResultDto<TEntity>, result: NonNullable<TResult> | NonNullable<DeepPartial<TResult>>) => void\n ): Observable<PagedResultDto<TEntity>> {\n\n if (watchQuery){\n const prepareWatchQuery = this.prepareWatchQuery<TResult, TVariable>(tenantId, variables, queryNode);\n\n return prepareWatchQuery.pipe(\n map((result) => {\n const resultSet = new PagedResultDto<TEntity>();\n\n if (result.error != null) {\n console.error(result.error);\n throw Error('Error in GraphQL statement.');\n } else if (result.data) {\n f(resultSet, result.data);\n }\n return resultSet;\n })\n );\n } else {\n const prepareQuery = this.prepareQuery<TResult, TVariable>(tenantId, variables, queryNode);\n\n return prepareQuery.pipe(\n map((result) => {\n const resultSet = new PagedResultDto<TEntity>();\n\n if (result.error != null) {\n console.error(result.error);\n throw Error('Error in GraphQL statement.');\n } else if (result.data) {\n f(resultSet, result.data);\n }\n return resultSet;\n })\n );\n }\n }\n\n protected getGraphEntities<TResult, TP, TC, TVariable extends OperationVariables>(\n tenantId: string,\n variables: TVariable,\n queryNode: DocumentNode,\n watchQuery: boolean,\n f: (resultSet: PagedGraphResultDto<TP, TC>, result: NonNullable<TResult> | NonNullable<DeepPartial<TResult>>) => void\n ): Observable<PagedGraphResultDto<TP, TC>> {\n\n if (watchQuery){\n const prepareWatchQuery = this.prepareWatchQuery<TResult, TVariable>(tenantId, variables, queryNode);\n\n return prepareWatchQuery.pipe(\n map((result) => {\n const resultSet = new PagedGraphResultDto<TP, TC>();\n\n if (result.error != null) {\n console.error(result.error);\n throw Error('Error in GraphQL statement.');\n } else if (result.data) {\n f(resultSet, result.data);\n }\n return resultSet;\n })\n );\n } else{\n const prepareQuery = this.prepareQuery<TResult, TVariable>(tenantId, variables, queryNode);\n\n return prepareQuery.pipe(\n map((result) => {\n const resultSet = new PagedGraphResultDto<TP, TC>();\n\n if (result.error != null) {\n console.error(result.error);\n throw Error('Error in GraphQL statement.');\n } else if (result.data) {\n f(resultSet, result.data);\n }\n return resultSet;\n })\n );\n }\n }\n\n protected getEntityDetail<TResult, TEntity, TVariable extends OperationVariables>(\n tenantId: string,\n variables: TVariable,\n queryNode: DocumentNode,\n watchQuery: boolean,\n f: (result: NonNullable<TResult> | NonNullable<DeepPartial<TResult>>) => TEntity\n ): Observable<TEntity | null> {\n\n\n if (watchQuery){\n const query = this.prepareWatchQuery<TResult, TVariable>(tenantId, variables, queryNode);\n return query.pipe(\n map((result) => {\n if (result.error != null) {\n console.error(result.error);\n throw Error('Error in GraphQL statement.');\n } else if (result.data) {\n return f(result.data);\n }\n return null;\n })\n );\n }else {\n const query = this.prepareQuery<TResult, TVariable>(tenantId, variables, queryNode);\n return query.pipe(\n map((result) => {\n if (result.error != null) {\n console.error(result.error);\n throw Error('Error in GraphQL statement.');\n } else if (result.data) {\n return f(result.data);\n }\n return null;\n })\n );\n }\n }\n\n protected createUpdateEntity<TResult, TEntity, TVariable extends OperationVariables>(\n tenantId: string,\n variables: TVariable,\n queryNode: DocumentNode,\n f: (result: TResult | null | undefined) => TEntity\n ): Observable<TEntity> {\n this.createApolloForTenant(tenantId);\n\n return this.apollo\n .use(tenantId)\n .mutate<TResult>({\n mutation: queryNode,\n variables\n })\n .pipe(\n map((value) => f(value.data)),\n finalize(() => {\n const promise = this.apollo.use(tenantId).client.reFetchObservableQueries(true);\n promise\n .then(() => {})\n .catch((error: string) => {\n console.error(error);\n });\n })\n );\n }\n\n protected deleteEntity<TResult, TVariable extends OperationVariables>(\n tenantId: string,\n variables: TVariable,\n queryNode: DocumentNode,\n f: (result: TResult | null | undefined) => boolean\n ): Observable<boolean> {\n this.createApolloForTenant(tenantId);\n\n return this.apollo\n .use(tenantId)\n .mutate<TResult>({\n mutation: queryNode,\n variables\n })\n .pipe(\n map((value) => f(value.data)),\n finalize(() => {\n const promise = this.apollo.use(tenantId).client.reFetchObservableQueries(true);\n promise\n .then(() => {})\n .catch((error: string) => {\n console.error(error);\n });\n })\n );\n }\n\n private createApolloForTenant(tenantId: string): void {\n const result = this.apollo.use(tenantId);\n if (result) {\n return;\n }\n\n const service = this.octoServiceOptions.assetServices ?? '';\n const uri = `${service}tenants/${tenantId}/GraphQL`;\n\n this.apollo.createNamed(tenantId, {\n link: this.httpLink.create({ uri }),\n cache: new InMemoryCache({\n dataIdFromObject: (o) => (o['rtId'] as string)\n })\n });\n }\n\n private prepareWatchQuery<TResult, TVariable extends OperationVariables>(\n tenantId: string,\n variables: TVariable,\n queryNode: DocumentNode\n ): Observable<ObservableQuery.Result<TResult>> {\n this.createApolloForTenant(tenantId);\n\n return this.apollo.use(tenantId).watchQuery<TResult>({\n query: queryNode,\n variables\n }).valueChanges;\n }\n\n private prepareQuery<TResult, TVariable extends OperationVariables>(\n tenantId: string,\n variables: TVariable,\n queryNode: DocumentNode\n ): Observable<QueryResult<TResult>> {\n this.createApolloForTenant(tenantId);\n\n return this.apollo.use(tenantId).query<TResult>({\n query: queryNode,\n variables,\n fetchPolicy: 'network-only'\n });\n }\n}\n","export class OctoServiceOptions {\n assetServices: string | null;\n defaultDataSourceId?: string;\n\n constructor() {\n this.assetServices = null;\n this.defaultDataSourceId = undefined;\n }\n}\n","import {onError} from '@apollo/client/link/error';\nimport { inject, Injectable, Injector } from \"@angular/core\";\nimport {MessageService} from \"@meshmakers/shared-services\";\nimport {ApolloLink} from '@apollo/client/core';\nimport { CombinedGraphQLErrors, ErrorLike } from \"@apollo/client\";\n\n@Injectable()\nexport class OctoErrorLink extends ApolloLink {\n private errorLink: ApolloLink;\n private readonly injector: Injector = inject(Injector);\n\n constructor() {\n super();\n\n // There is currently no other way to inject a service into an Apollo Link,\n // because Apollo deprecated without replacement\n this.errorLink = onError(({error, operation, forward}) => {\n\n if (error) {\n\n if (error instanceof CombinedGraphQLErrors) {\n this.showError(error);\n } else {\n this.showErrorLike(error);\n }\n }\n\n return forward(operation);\n });\n }\n\n private showErrorLike(error: ErrorLike): void {\n const messageService = this.injector.get(MessageService);\n\n const title = error.message;\n const details = error.message\n\n console.error(error);\n\n messageService.showError(details, title);\n }\n\n private showError(combinedGraphQLErrors: CombinedGraphQLErrors): void{\n const messageService = this.injector.get(MessageService);\n\n let title = 'GraphQL error';\n let details = '';\n for (const error of combinedGraphQLErrors.errors) {\n\n console.error(error);\n\n if (title == 'GraphQL error') {\n title = `${error.message}`;\n } else {\n details += `======================`;\n details += `${error.message}`;\n }\n\n if (error.extensions) {\n // check for custom error properties, OctoDetails should be an array of MessageDetails\n if (error.extensions['code']) {\n details += `Global Result Code: ${error.extensions['code']}`;\n }\n\n if (error.extensions['OctoDetails'] && Array.isArray(error.extensions['OctoDetails'])) {\n\n // iterate over the details and add them to the message\n for (const detail of error.extensions['OctoDetails']) {\n if (detail.message) {\n details += `\\n\\n✗ ${detail.message}`;\n }\n\n if (detail.details && Array.isArray(detail.details)) {\n for (const subDetail of detail.details) {\n if (subDetail) {\n details += `\\n • ${subDetail}`;\n }\n }\n }\n }\n }\n }\n messageService.showError(details, title);\n }\n\n }\n\n override request(operation: any, forward: any) {\n return this.errorLink.request(operation, forward);\n }\n}\n","import { ModuleWithProviders, NgModule } from '@angular/core';\nimport { OctoServiceOptions } from './options/octo-service-options';\nimport { OctoErrorLink } from \"./shared/octo-error-link\";\n\n@NgModule({\n declarations: [],\n imports: [],\n exports: []\n})\nexport class OctoServicesModule {\n static forRoot(octoServiceOptions: OctoServiceOptions): ModuleWithProviders<OctoServicesModule> {\n return {\n ngModule: OctoServicesModule,\n providers: [\n {\n provide: OctoServiceOptions,\n useValue: octoServiceOptions\n },\n OctoErrorLink\n ]\n };\n }\n}\n","export class GraphQL {\n public static getCursor(position: number): string {\n return btoa(`arrayconnection:${position}`);\n }\n\n public static offsetToCursor(offset: number): string | null {\n if (!offset) {\n return null;\n }\n\n return this.getCursor(offset - 1);\n }\n}\n\nexport const GraphQLCommonIgnoredProperties = ['__typename'];\nexport const GraphQLCloneIgnoredProperties = ['id', 'rtId', 'ckTypeId', '__typename'];\n","import { map, Subscription } from 'rxjs';\nimport { DataSourceBase, MessageService, PagedResultDto } from '@meshmakers/shared-services';\nimport { FieldFilterDto, InputMaybe, SearchFilterDto, SortDto } from '../shared/globalTypes';\nimport { Query, QueryRef } from 'apollo-angular';\nimport type { OperationVariables } from '@apollo/client/core';\nimport { GraphQL } from \"../shared/graphQL\";\nimport type { ObservableQuery } from \"@apollo/client\";\n\nexport interface IQueryVariablesDto extends OperationVariables {\n first?: number | null | undefined;\n after?: string | null | undefined;\n sort?: InputMaybe<InputMaybe<SortDto> | InputMaybe<SortDto>[]> | undefined;\n searchFilter?: InputMaybe<SearchFilterDto> | undefined;\n fieldFilters?: InputMaybe<InputMaybe<FieldFilterDto>[] | InputMaybe<FieldFilterDto>>;\n}\n\nexport abstract class GraphQlDataSource<TDto> extends DataSourceBase<TDto> {\n public abstract refetch(): Promise<void>;\n\n public abstract refetchWith(\n skip?: number,\n take?: number,\n searchFilter?: SearchFilterDto | null,\n fieldFilter?: FieldFilterDto[] | null,\n sort?: SortDto[] | null\n ): Promise<void>;\n\n public abstract loadData(\n skip?: number,\n take?: number,\n searchFilter?: SearchFilterDto | null,\n fieldFilter?: FieldFilterDto[] | null,\n sort?: SortDto[] | null\n ): void;\n}\n\nexport class AssetRepoGraphQlDataSource<TDto, TQueryDto, TVariablesDto extends IQueryVariablesDto> extends GraphQlDataSource<TDto> {\n private queryRef: QueryRef<TQueryDto, TVariablesDto> | null;\n private subscription: Subscription | null;\n\n constructor(\n protected messageService: MessageService,\n private readonly query: Query<TQueryDto, TVariablesDto>,\n private readonly defaultSort: SortDto[] | null = null\n ) {\n super();\n this.queryRef = null;\n this.subscription = null;\n }\n\n override clear(): void {\n super.clear();\n this.queryRef?.stopPolling();\n this.queryRef = null;\n this.subscription?.unsubscribe();\n this.subscription = null;\n }\n\n public async refetch(): Promise<void> {\n await this.queryRef?.refetch();\n }\n\n public async refetchWith(\n skip = 0,\n take = 10,\n searchFilter: SearchFilterDto | null = null,\n fieldFilter: FieldFilterDto[] | null = null,\n sort: SortDto[] | null = null\n ): Promise<void> {\n const variables = this.createVariables(skip, take, searchFilter, fieldFilter, sort);\n await this.queryRef?.refetch(variables);\n }\n\n protected createVariables(\n skip = 0,\n take = 10,\n searchFilter: SearchFilterDto | null = null,\n fieldFilter: FieldFilterDto[] | null = null,\n sort: SortDto[] | null = null\n ): TVariablesDto {\n // Default sort\n if ((!sort || (sort && sort.length === 0)) && searchFilter === null) {\n sort = new Array<SortDto>();\n if (this.defaultSort) {\n sort = this.defaultSort;\n }\n }\n\n return {\n first: take,\n after: GraphQL.offsetToCursor(skip),\n sort,\n searchFilter,\n fieldFilters: fieldFilter\n } as TVariablesDto;\n }\n\n public loadData(\n skip = 0,\n take = 10,\n searchFilter: SearchFilterDto | null = null,\n fieldFilter: FieldFilterDto[] | null = null,\n sort: SortDto[] | null = null\n ): void {\n this.clear();\n super.onBeginLoad();\n\n const variables = this.createVariables(skip, take, searchFilter, fieldFilter, sort);\n this.queryRef = this.query.watch({ variables, errorPolicy: 'all' } as Query.WatchOptions<TQueryDto, TVariablesDto>);\n\n this.subscription = this.queryRef.valueChanges\n .pipe(\n map((v, i) => this.executeLoad(v, i)))\n .subscribe({\n next: (pagedResult) => super.onCompleteLoad(pagedResult),\n error: (e) => {\n this.messageService.showErrorWithDetails(e);\n super.onCompleteLoad(new PagedResultDto<TDto>());\n }\n });\n }\n\n protected executeLoad(_value: ObservableQuery.Result<TQueryDto>, _index: number): PagedResultDto<TDto> {\n return new PagedResultDto<TDto>();\n }\n}\n","/* eslint-disable */\n// @generated\n// This file was automatically generated and should not be edited.\n\n//==============================================================\n// START Enums and Input Objects\n//==============================================================\nexport type Maybe<T> = T | null;\nexport type InputMaybe<T> = Maybe<T>;\n\n/** All built-in and custom scalars, mapped to their actual values */\nexport type Scalars = {\n ID: { input: string; output: string; }\n String: { input: string; output: string; }\n Boolean: { input: boolean; output: boolean; }\n Int: { input: number; output: number; }\n Float: { input: number; output: number; }\n BigInt: { input: any; output: any; }\n CkAttributeId: { input: string; output: string; }\n CkEnumId: { input: string; output: string; }\n CkModelId: { input: any; output: any; }\n CkRecordId: { input: string; output: string; }\n CkTypeId: { input: string; output: string; }\n DateTime: { input: any; output: any; }\n Decimal: { input: any; output: any; }\n LargeBinary: { input: any; output: any; }\n OctoObjectId: { input: string; output: string; }\n Seconds: { input: any; output: any; }\n SimpleScalar: { input: any; output: any; }\n ULong: { input: any; output: any; }\n Uri: { input: any; output: any; }\n};\n\nexport type FieldFilterDto = {\n attributePath: Scalars['String']['input'];\n comparisonValue?: InputMaybe<Scalars['SimpleScalar']['input']>;\n operator: FieldFilterOperatorsDto;\n};\n\n/** Defines the operator of field compare */\nexport enum FieldFilterOperatorsDto {\n AnyEqDto = 'ANY_EQ',\n AnyLikeDto = 'ANY_LIKE',\n EqualsDto = 'EQUALS',\n GreaterEqualThanDto = 'GREATER_EQUAL_THAN',\n GreaterThanDto = 'GREATER_THAN',\n InDto = 'IN',\n LessEqualThanDto = 'LESS_EQUAL_THAN',\n LessThanDto = 'LESS_THAN',\n LikeDto = 'LIKE',\n MatchRegExDto = 'MATCH_REG_EX',\n NotEqualsDto = 'NOT_EQUALS',\n NotInDto = 'NOT_IN'\n}\n\n\nexport type SearchFilterDto = {\n attributePaths?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;\n language?: InputMaybe<Scalars['String']['input']>;\n searchTerm: Scalars['String']['input'];\n type?: InputMaybe<SearchFilterTypesDto>;\n};\n\n/** The type of search that is used (a text based search using text analysis (high performance, scoring, maybe more false positives) or filtering of attributes (lower performance, more exact results) */\nexport enum SearchFilterTypesDto {\n AttributeFilterDto = 'ATTRIBUTE_FILTER',\n TextSearchDto = 'TEXT_SEARCH'\n}\n\nexport type SortDto = {\n attributePath: Scalars['String']['input'];\n sortOrder?: InputMaybe<SortOrdersDto>;\n};\n\n/** Defines the sort order */\nexport enum SortOrdersDto {\n AscendingDto = 'ASCENDING',\n DefaultDto = 'DEFAULT',\n DescendingDto = 'DESCENDING'\n}\n\n//==============================================================\n// END Enums and Input Objects\n//==============================================================\n","/*\n * Public API Surface of octo-services\n */\n\nexport * from './lib/services/octo-graph-ql-service-base';\nexport * from './lib/options/octo-service-options';\nexport * from './lib/octo-services.module';\nexport * from './lib/models/pagedGraphResultDto';\nexport * from './lib/shared/graphQL';\nexport * from './lib/services/assetRepoGraphQlDataSource';\nexport * from './lib/shared/globalTypes';\nexport * from './lib/shared/octo-error-link';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":["map"],"mappings":"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"}
1
+ {"version":3,"file":"meshmakers-octo-services.mjs","sources":["../../../../projects/meshmakers/octo-services/src/lib/options/octo-service-options.ts","../../../../projects/meshmakers/octo-services/src/lib/shared/octo-error-link.ts","../../../../projects/meshmakers/octo-services/src/lib/shared/graphQL.ts","../../../../projects/meshmakers/octo-services/src/lib/shared/ckTypeMetaData.ts","../../../../projects/meshmakers/octo-services/src/lib/shared/rtAssociationMetaData.ts","../../../../projects/meshmakers/octo-services/src/lib/shared/levelMetaData.ts","../../../../projects/meshmakers/octo-services/src/lib/shared/health.ts","../../../../projects/meshmakers/octo-services/src/lib/shared/importStrategyDto.ts","../../../../projects/meshmakers/octo-services/src/lib/shared/progress-value.ts","../../../../projects/meshmakers/octo-services/src/lib/shared/progress-window.service.ts","../../../../projects/meshmakers/octo-services/src/lib/shared/communicationDtos.ts","../../../../projects/meshmakers/octo-services/src/lib/graphQL/globalTypes.ts","../../../../projects/meshmakers/octo-services/src/lib/graphQL/possibleTypes.ts","../../../../projects/meshmakers/octo-services/src/lib/graphQL/getCkTypeAttributes.ts","../../../../projects/meshmakers/octo-services/src/lib/graphQL/getCkRecordAttributes.ts","../../../../projects/meshmakers/octo-services/src/lib/graphQL/getCkTypeAvailableQueryColumns.ts","../../../../projects/meshmakers/octo-services/src/lib/graphQL/getCkTypes.ts","../../../../projects/meshmakers/octo-services/src/lib/graphQL/getCkModelById.ts","../../../../projects/meshmakers/octo-services/src/lib/services/configuration.service.ts","../../../../projects/meshmakers/octo-services/src/lib/services/attribute-selector.service.ts","../../../../projects/meshmakers/octo-services/src/lib/services/ck-type-attribute.service.ts","../../../../projects/meshmakers/octo-services/src/lib/graphQL/getCkTypeByRtCkTypeId.ts","../../../../projects/meshmakers/octo-services/src/lib/services/ck-type-selector.service.ts","../../../../projects/meshmakers/octo-services/src/lib/services/ck-model.service.ts","../../../../projects/meshmakers/octo-services/src/lib/services/asset-repo.service.ts","../../../../projects/meshmakers/octo-services/src/lib/services/bot-service.ts","../../../../projects/meshmakers/octo-services/src/lib/services/health.service.ts","../../../../projects/meshmakers/octo-services/src/lib/services/identity-service.ts","../../../../projects/meshmakers/octo-services/src/lib/services/job-management.service.ts","../../../../projects/meshmakers/octo-services/src/lib/services/communication.service.ts","../../../../projects/meshmakers/octo-services/src/lib/services/tus-upload.service.ts","../../../../projects/meshmakers/octo-services/src/lib/services/tenant-provider.ts","../../../../projects/meshmakers/octo-services/src/lib/compat/octo-services-module.ts","../../../../projects/meshmakers/octo-services/src/lib/compat/asset-repo-graph-ql-data-source.ts","../../../../projects/meshmakers/octo-services/src/lib/compat/paged-graph-result-dto.ts","../../../../projects/meshmakers/octo-services/src/lib/compat/octo-graph-ql-service-base.ts","../../../../projects/meshmakers/octo-services/src/public-api.ts","../../../../projects/meshmakers/octo-services/src/meshmakers-octo-services.ts"],"sourcesContent":["export class OctoServiceOptions {\n assetServices: string | null;\n defaultDataSourceId?: string;\n\n constructor() {\n this.assetServices = null;\n this.defaultDataSourceId = undefined;\n }\n}\n","import {onError} from '@apollo/client/link/error';\nimport { inject, Injectable, Injector } from \"@angular/core\";\nimport {MessageService} from \"@meshmakers/shared-services\";\nimport {ApolloLink} from '@apollo/client/core';\nimport { CombinedGraphQLErrors, ErrorLike } from \"@apollo/client\";\n\n@Injectable()\nexport class OctoErrorLink extends ApolloLink {\n private errorLink: ApolloLink;\n private readonly injector: Injector = inject(Injector);\n\n constructor() {\n super();\n\n // There is currently no other way to inject a service into an Apollo Link,\n // because Apollo deprecated without replacement\n this.errorLink = onError(({error, operation, forward}) => {\n\n if (error) {\n\n if (error instanceof CombinedGraphQLErrors) {\n this.showError(error);\n } else {\n this.showErrorLike(error);\n }\n }\n\n return forward(operation);\n });\n }\n\n private showErrorLike(error: ErrorLike): void {\n const messageService = this.injector.get(MessageService);\n\n console.error(error);\n\n messageService.showError(error.message);\n }\n\n private showError(combinedGraphQLErrors: CombinedGraphQLErrors): void{\n const messageService = this.injector.get(MessageService);\n\n let title = 'GraphQL error';\n let details = '';\n for (const error of combinedGraphQLErrors.errors) {\n\n console.error(error);\n\n if (title == 'GraphQL error') {\n title = `${error.message}`;\n } else {\n details += `======================`;\n details += `${error.message}`;\n }\n\n if (error.extensions) {\n // check for custom error properties, OctoDetails should be an array of MessageDetails\n if (error.extensions['code']) {\n details += `Global Result Code: ${error.extensions['code']}`;\n }\n\n if (error.extensions['OctoDetails'] && Array.isArray(error.extensions['OctoDetails'])) {\n\n // iterate over the details and add them to the message\n for (const detail of error.extensions['OctoDetails']) {\n if (detail.message) {\n details += `\\n\\n✗ ${detail.message}`;\n }\n\n if (detail.details && Array.isArray(detail.details)) {\n for (const subDetail of detail.details) {\n if (subDetail) {\n details += `\\n • ${subDetail}`;\n }\n }\n }\n }\n }\n }\n messageService.showErrorWithDetails(title, details);\n }\n\n }\n\n override request(operation: any, forward: any) {\n return this.errorLink.request(operation, forward);\n }\n}\n","export class GraphQL {\n public static getCursor(position: number): string {\n return btoa(`arrayconnection:${position}`);\n }\n\n public static offsetToCursor(offset: number): string | null {\n if (!offset) {\n return null;\n }\n\n return this.getCursor(offset - 1);\n }\n}\n\nexport const GraphQLCommonIgnoredProperties = ['__typename'];\nexport const GraphQLCloneIgnoredProperties = ['id', 'rtId', 'ckTypeId', '__typename'];\n","import {SVGIcon} from '@progress/kendo-svg-icons/dist/svg-icon.interface';\n\nexport class CkTypeMetaData {\n\n constructor(ckTypeId: string, name: string, description: string, svgIcon: SVGIcon) {\n this._ckTypeId = ckTypeId;\n this._name = name;\n this._description = description;\n this._svgIcon = svgIcon;\n }\n\n private readonly _ckTypeId: string;\n private readonly _name: string;\n private readonly _description: string;\n private readonly _svgIcon: SVGIcon;\n\n public get ckTypeId(): string {\n return this._ckTypeId;\n }\n\n public get name(): string {\n return this._name;\n }\n\n public get description(): string {\n return this._description;\n }\n\n public get svgIcon(): SVGIcon {\n return this._svgIcon;\n }\n}\n","export class RtAssociationMetaData {\n\n private readonly _roleId: string;\n private readonly _ckTypeId: string;\n\n constructor(roleId: string, ckTypeId: string) {\n this._roleId = roleId;\n this._ckTypeId = ckTypeId;\n }\n\n public get ckTypeId(): string {\n return this._ckTypeId;\n }\n\n public get roleId(): string {\n return this._roleId;\n }\n\n}\n","import {RtAssociationMetaData} from './rtAssociationMetaData';\n\nexport class LevelMetaData {\n constructor(ckTypeId: string, directRoles: RtAssociationMetaData[], indirectRoles: RtAssociationMetaData[]) {\n this._ckTypeId = ckTypeId;\n this._directRoles = directRoles;\n this._indirectRoles = indirectRoles;\n }\n\n private readonly _ckTypeId: string;\n private readonly _directRoles: RtAssociationMetaData[];\n private readonly _indirectRoles: RtAssociationMetaData[];\n\n public get ckTypeId(): string {\n return this._ckTypeId;\n }\n\n public get directRoles(): RtAssociationMetaData[] {\n return this._directRoles;\n }\n\n public get indirectRoles(): RtAssociationMetaData[] {\n return this._indirectRoles;\n }\n}\n","\nexport enum HealthStatus{\n\n /*\n * Indicates that the health check determined that the component was unhealthy, or an unhandled\n */\n Unhealthy = \"Unhealthy\",\n\n /*\n * Indicates that the health check determined that the component was in a degraded state.\n */\n Degraded = \"Degraded\",\n\n /*\n * Indicates that the health check determined that the component was healthy.\n */\n Healthy = \"Healthy\"\n}\n\nexport interface HealthCheckResult{\n title: string;\n data: Map<string, any> | null;\n description: string | null;\n status: HealthStatus;\n}\n\nexport interface HealthCheck {\n status: HealthStatus;\n results: HealthCheckResult[];\n}\n","export enum ImportStrategyDto {\n InsertOnly = 0,\n Upsert = 1\n}\n","export class ProgressValue {\n statusText: string | null;\n progressValue: number;\n\n constructor() {\n this.statusText = null;\n this.progressValue = 0;\n }\n}\n","import { Observable } from 'rxjs';\nimport { ProgressValue } from './progress-value';\n\n/**\n * Reference to an open progress dialog. Provides close() to dismiss.\n */\nexport interface ProgressDialogRef {\n close(): void;\n}\n\nexport interface ProgressWindowOptions {\n isCancelOperationAvailable?: boolean;\n cancelOperation?: () => void;\n width?: number;\n height?: number | string;\n}\n\n/**\n * Abstract progress window service.\n * Consuming apps must provide a concrete implementation (Material or Kendo).\n *\n * @example\n * ```typescript\n * // In app.config.ts\n * import { ProgressWindowService as AbstractProgressWindowService } from '@meshmakers/octo-services';\n * import { ProgressWindowService } from '@meshmakers/shared-ui-legacy'; // Material impl\n *\n * providers: [\n * { provide: AbstractProgressWindowService, useClass: ProgressWindowService }\n * ]\n * ```\n */\nexport abstract class ProgressWindowService {\n abstract showDeterminateProgress(\n title: string,\n progress: Observable<ProgressValue>,\n options?: Partial<ProgressWindowOptions>\n ): ProgressDialogRef;\n\n abstract showIndeterminateProgress(\n title: string,\n progress: Observable<ProgressValue>,\n options?: Partial<ProgressWindowOptions>\n ): ProgressDialogRef;\n}\n","/**\n * Communication service DTOs for adapter and pipeline management.\n */\n\n/**\n * Deployment state for pipeline operations.\n */\nexport enum DeploymentState {\n Processing = 0,\n Success = 1,\n Failed = 2\n}\n\n/**\n * Result of a pipeline deployment operation.\n */\nexport interface DeploymentResultDto {\n pipelineRtEntityId: string;\n state: DeploymentState;\n stateMessages: string | null;\n}\n\n/**\n * Pipeline execution data for debugging.\n */\nexport interface PipelineExecutionDataDto {\n id: string;\n dateTime: Date;\n}\n\n/**\n * Severity levels for debug messages.\n */\nexport enum LoggerSeverity {\n Debug = 0,\n Information = 1,\n Warning = 2,\n Error = 3\n}\n\n/**\n * Debug message from pipeline execution.\n */\nexport interface DebugMessage {\n severity: LoggerSeverity;\n nodePath: string;\n message: string;\n dateTime: Date;\n exceptionMessage: string | null;\n}\n\n/**\n * Debug point node in a pipeline execution tree.\n */\nexport interface DebugPointNode {\n nodeId: string;\n sequenceNumber: number;\n name: string;\n fullPath: string;\n description: string | null;\n children: DebugPointNode[] | null;\n}\n\n/**\n * Data captured at a debug point during pipeline execution.\n */\nexport interface DebugPointDataDto {\n nodePath: string;\n sequenceNumber: number;\n messages: DebugMessage[];\n input: unknown | null;\n output: unknown | null;\n}\n","export type Maybe<T> = T | null;\nexport type InputMaybe<T> = Maybe<T>;\nexport type Exact<T extends { [key: string]: unknown }> = { [K in keyof T]: T[K] };\nexport type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?: Maybe<T[SubKey]> };\nexport type MakeMaybe<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]: Maybe<T[SubKey]> };\nexport type MakeEmpty<T extends { [key: string]: unknown }, K extends keyof T> = { [_ in K]?: never };\nexport type Incremental<T> = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never };\n/** All built-in and custom scalars, mapped to their actual values */\nexport type Scalars = {\n ID: { input: string; output: string; }\n String: { input: string; output: string; }\n Boolean: { input: boolean; output: boolean; }\n Int: { input: number; output: number; }\n Float: { input: number; output: number; }\n BigInt: { input: any; output: any; }\n Byte: { input: any; output: any; }\n /** A construction kit version. */\n CkVersion: { input: any; output: any; }\n /** The `DateTime` scalar type represents a date and time. `DateTime` expects timestamps to be formatted in accordance with the [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) standard. */\n DateTime: { input: Date; output: Date; }\n /** The `DateTimeOffset` scalar type represents a date, time and offset from UTC. `DateTimeOffset` expects timestamps to be formatted in accordance with the [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) standard. */\n DateTimeOffset: { input: any; output: any; }\n Decimal: { input: number; output: number; }\n LargeBinary: { input: any; output: any; }\n /** A unique identifier for an runtime object. */\n OctoObjectId: { input: string; output: string; }\n /** A runtime construction kit id of CkAssociationRoleId. */\n RtCkAssociationRoleId: { input: any; output: any; }\n /** A runtime construction kit id of CkEnumId. */\n RtCkEnumId: { input: any; output: any; }\n /** A runtime construction kit id of CkRecordId. */\n RtCkRecordId: { input: any; output: any; }\n /** A runtime construction kit id of CkTypeId. */\n RtCkTypeId: { input: any; output: any; }\n /** The `Seconds` scalar type represents a period of time represented as the total number of seconds in range [-922337203685, 922337203685]. */\n Seconds: { input: any; output: any; }\n SimpleScalar: { input: any; output: any; }\n ULong: { input: any; output: any; }\n Uri: { input: any; output: any; }\n};\n\n/** Defines the type of aggregation for runtime queries. */\nexport enum AggregationInputTypesDto {\n AverageDto = 'AVERAGE',\n CountDto = 'COUNT',\n MaximumDto = 'MAXIMUM',\n MinimumDto = 'MINIMUM',\n SumDto = 'SUM'\n}\n\n/** Defines the type of aggregation for runtime query results. */\nexport enum AggregationTypesDto {\n AverageDto = 'AVERAGE',\n CountDto = 'COUNT',\n MaximumDto = 'MAXIMUM',\n MinimumDto = 'MINIMUM',\n NoneDto = 'NONE',\n SumDto = 'SUM'\n}\n\n/** Defines the type of modification during write operations */\nexport enum AssociationModOptionsDto {\n CreateDto = 'CREATE',\n DeleteDto = 'DELETE'\n}\n\n/** Enum of valid attribute types */\nexport enum AttributeValueTypeDto {\n BinaryDto = 'BINARY',\n BinaryLinkedDto = 'BINARY_LINKED',\n BooleanDto = 'BOOLEAN',\n DateTimeDto = 'DATE_TIME',\n DateTimeOffsetDto = 'DATE_TIME_OFFSET',\n DoubleDto = 'DOUBLE',\n EnumDto = 'ENUM',\n GeospatialPointDto = 'GEOSPATIAL_POINT',\n IntDto = 'INT',\n IntegerDto = 'INTEGER',\n Integer_64Dto = 'INTEGER_64',\n IntegerArrayDto = 'INTEGER_ARRAY',\n Int_64Dto = 'INT_64',\n IntArrayDto = 'INT_ARRAY',\n RecordDto = 'RECORD',\n RecordArrayDto = 'RECORD_ARRAY',\n StringDto = 'STRING',\n StringArrayDto = 'STRING_ARRAY',\n TimeSpanDto = 'TIME_SPAN'\n}\n\n/** Runtime entities of construction kit record 'Basic/Address' */\nexport type BasicAddressDto = {\n __typename?: 'BasicAddress';\n addressOfAdditionalLink?: Maybe<Scalars['String']['output']>;\n addressRemarks?: Maybe<Array<Scalars['String']['output']>>;\n cityTown: Scalars['String']['output'];\n constructionKitType?: Maybe<CkTypeDto>;\n department?: Maybe<Scalars['String']['output']>;\n eMail?: Maybe<BasicEMailDto>;\n fax?: Maybe<BasicFaxNumberDto>;\n nationalCode: Scalars['String']['output'];\n pOBox?: Maybe<Scalars['String']['output']>;\n phone?: Maybe<BasicPhoneNumberDto>;\n stateCounty?: Maybe<Scalars['String']['output']>;\n street: Scalars['String']['output'];\n vATnumber?: Maybe<Scalars['String']['output']>;\n zipOfPOBox?: Maybe<Scalars['String']['output']>;\n zipcode: Scalars['Int']['output'];\n};\n\nexport type BasicAddressInputDto = {\n addressOfAdditionalLink?: InputMaybe<Scalars['String']['input']>;\n addressRemarks?: InputMaybe<Array<Scalars['String']['input']>>;\n cityTown?: InputMaybe<Scalars['String']['input']>;\n department?: InputMaybe<Scalars['String']['input']>;\n eMail?: InputMaybe<BasicEMailInputDto>;\n fax?: InputMaybe<BasicFaxNumberInputDto>;\n nationalCode?: InputMaybe<Scalars['String']['input']>;\n pOBox?: InputMaybe<Scalars['String']['input']>;\n phone?: InputMaybe<BasicPhoneNumberInputDto>;\n stateCounty?: InputMaybe<Scalars['String']['input']>;\n street?: InputMaybe<Scalars['String']['input']>;\n vATnumber?: InputMaybe<Scalars['String']['input']>;\n zipOfPOBox?: InputMaybe<Scalars['String']['input']>;\n zipcode?: InputMaybe<Scalars['Int']['input']>;\n};\n\n/** Runtime entities of construction kit record 'Basic/Amount' */\nexport type BasicAmountDto = {\n __typename?: 'BasicAmount';\n constructionKitType?: Maybe<CkTypeDto>;\n unit: BasicUnitOfMeasureDto;\n value: Scalars['Decimal']['output'];\n};\n\nexport type BasicAmountInputDto = {\n unit?: InputMaybe<BasicUnitOfMeasureDto>;\n value?: InputMaybe<Scalars['Decimal']['input']>;\n};\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/Asset-1' */\nexport type BasicAssetDto = {\n __typename?: 'BasicAsset';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n children?: Maybe<BasicTreeNode_ChildrenUnionConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n description?: Maybe<Scalars['String']['output']>;\n name: Scalars['String']['output'];\n parent?: Maybe<BasicTree_ParentUnionConnectionDto>;\n relatesFrom?: Maybe<BasicAsset_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<BasicTreeNode_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n};\n\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/Asset-1' */\nexport type BasicAssetAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/Asset-1' */\nexport type BasicAssetChildrenArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/Asset-1' */\nexport type BasicAssetConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/Asset-1' */\nexport type BasicAssetParentArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/Asset-1' */\nexport type BasicAssetRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/Asset-1' */\nexport type BasicAssetRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/Asset-1' */\nexport type BasicAssetTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `BasicAsset`. */\nexport type BasicAssetConnectionDto = {\n __typename?: 'BasicAssetConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<BasicAssetEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<BasicAssetDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `BasicAsset`. */\nexport type BasicAssetEdgeDto = {\n __typename?: 'BasicAssetEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<BasicAssetDto>;\n};\n\nexport type BasicAssetInputDto = {\n children?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n description?: InputMaybe<Scalars['String']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n parent?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n};\n\nexport type BasicAssetInputUpdateDto = {\n /** Item to update */\n item: BasicAssetInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\nexport type BasicAssetMutationsDto = {\n __typename?: 'BasicAssetMutations';\n /** Creates new entities of type 'BasicAsset'. */\n create?: Maybe<Array<Maybe<BasicAssetDto>>>;\n /** Updates existing entity of type 'BasicAsset'. */\n update?: Maybe<Array<Maybe<BasicAssetDto>>>;\n};\n\n\nexport type BasicAssetMutationsCreateArgsDto = {\n entities: Array<InputMaybe<BasicAssetInputDto>>;\n};\n\n\nexport type BasicAssetMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<BasicAssetInputUpdateDto>>;\n};\n\nexport type BasicAssetUpdateDto = {\n __typename?: 'BasicAssetUpdate';\n /** The corresponding item */\n item?: Maybe<BasicAssetDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type BasicAssetUpdateMessageDto = {\n __typename?: 'BasicAssetUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<BasicAssetUpdateDto>>>;\n};\n\n/** Union of types derived from Basic/Asset for RelatesFrom association */\nexport type BasicAsset_RelatesFromUnionDto = BasicAssetDto | BasicCityDto | BasicCountryDto | BasicDistrictDto | BasicEmployeeDto | BasicStateDto | BasicTreeDto | BasicTreeNodeDto | OctoSdkDemoCustomerDto | OctoSdkDemoMeteringPointDto | OctoSdkDemoOperatingFacilityDto | SystemAggregationRtQueryDto | SystemAutoIncrementDto | SystemBotAttributeAggregateConfigurationDto | SystemBotFixupDto | SystemBotServiceHookDto | SystemCommunicationDataPipelineDto | SystemCommunicationDataPipelineTriggerDto | SystemCommunicationEMailSenderConfigurationDto | SystemCommunicationEdgeAdapterDto | SystemCommunicationEdgePipelineDto | SystemCommunicationEnergyCommunityConfigurationDto | SystemCommunicationMeshAdapterDto | SystemCommunicationMeshPipelineDto | SystemCommunicationPipelineExecutionDto | SystemCommunicationPipelineStatisticsDto | SystemCommunicationPoolDto | SystemCommunicationSapConfigurationDto | SystemCommunicationTagDto | SystemGroupingAggregationRtQueryDto | SystemIdentityApiResourceDto | SystemIdentityApiScopeDto | SystemIdentityAzureEntraIdIdentityProviderDto | SystemIdentityClientDto | SystemIdentityFacebookIdentityProviderDto | SystemIdentityGoogleIdentityProviderDto | SystemIdentityIdentityResourceDto | SystemIdentityMailNotificationConfigurationDto | SystemIdentityMicrosoftAdIdentityProviderDto | SystemIdentityMicrosoftIdentityProviderDto | SystemIdentityOpenLdapIdentityProviderDto | SystemIdentityPermissionDto | SystemIdentityPermissionRoleDto | SystemIdentityPersistedGrantDto | SystemIdentityRoleDto | SystemIdentityUserDto | SystemMigrationHistoryDto | SystemNotificationCssTemplateConfigurationDto | SystemNotificationEventDto | SystemNotificationNotificationTemplateDto | SystemNotificationStatefulEventDto | SystemQueryDto | SystemReportingConnectionInfoDto | SystemReportingFileSystemItemDto | SystemReportingFolderDto | SystemReportingFolderRootDto | SystemSimpleRtQueryDto | SystemTenantDto | SystemTenantConfigurationDto | SystemTenantModeConfigurationDto | SystemUiDashboardDto | SystemUiDashboardWidgetDto | SystemUiPageDto | SystemUiProcessDiagramDto | SystemUiStudioRootDto | SystemUiStudioTreeItemDto | SystemUiSymbolDefinitionDto | SystemUiSymbolLibraryDto;\n\n/** A connection to `BasicAsset_RelatesFromUnion`. */\nexport type BasicAsset_RelatesFromUnionConnectionDto = {\n __typename?: 'BasicAsset_RelatesFromUnionConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<BasicAsset_RelatesFromUnionEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<BasicAsset_RelatesFromUnionDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `BasicAsset_RelatesFromUnion`. */\nexport type BasicAsset_RelatesFromUnionEdgeDto = {\n __typename?: 'BasicAsset_RelatesFromUnionEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<BasicAsset_RelatesFromUnionDto>;\n};\n\n/** Runtime entities of construction kit record 'Basic/BankAccount' */\nexport type BasicBankAccountDto = {\n __typename?: 'BasicBankAccount';\n accountHolder: Scalars['String']['output'];\n bankName?: Maybe<Scalars['String']['output']>;\n constructionKitType?: Maybe<CkTypeDto>;\n iban: Scalars['String']['output'];\n swiftCode?: Maybe<Scalars['String']['output']>;\n};\n\nexport type BasicBankAccountInputDto = {\n accountHolder?: InputMaybe<Scalars['String']['input']>;\n bankName?: InputMaybe<Scalars['String']['input']>;\n iban?: InputMaybe<Scalars['String']['input']>;\n swiftCode?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/City-1' */\nexport type BasicCityDto = {\n __typename?: 'BasicCity';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n children?: Maybe<BasicTreeNode_ChildrenUnionConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n description?: Maybe<Scalars['String']['output']>;\n name: Scalars['String']['output'];\n parent?: Maybe<BasicTree_ParentUnionConnectionDto>;\n relatesFrom?: Maybe<BasicAsset_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n zipcode: Scalars['Int']['output'];\n};\n\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/City-1' */\nexport type BasicCityAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/City-1' */\nexport type BasicCityChildrenArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/City-1' */\nexport type BasicCityConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/City-1' */\nexport type BasicCityParentArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/City-1' */\nexport type BasicCityRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/City-1' */\nexport type BasicCityRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/City-1' */\nexport type BasicCityTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `BasicCity`. */\nexport type BasicCityConnectionDto = {\n __typename?: 'BasicCityConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<BasicCityEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<BasicCityDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `BasicCity`. */\nexport type BasicCityEdgeDto = {\n __typename?: 'BasicCityEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<BasicCityDto>;\n};\n\nexport type BasicCityInputDto = {\n children?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n description?: InputMaybe<Scalars['String']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n parent?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n zipcode?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport type BasicCityInputUpdateDto = {\n /** Item to update */\n item: BasicCityInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\nexport type BasicCityMutationsDto = {\n __typename?: 'BasicCityMutations';\n /** Creates new entities of type 'BasicCity'. */\n create?: Maybe<Array<Maybe<BasicCityDto>>>;\n /** Updates existing entity of type 'BasicCity'. */\n update?: Maybe<Array<Maybe<BasicCityDto>>>;\n};\n\n\nexport type BasicCityMutationsCreateArgsDto = {\n entities: Array<InputMaybe<BasicCityInputDto>>;\n};\n\n\nexport type BasicCityMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<BasicCityInputUpdateDto>>;\n};\n\nexport type BasicCityUpdateDto = {\n __typename?: 'BasicCityUpdate';\n /** The corresponding item */\n item?: Maybe<BasicCityDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type BasicCityUpdateMessageDto = {\n __typename?: 'BasicCityUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<BasicCityUpdateDto>>>;\n};\n\n/** Runtime entities of construction kit record 'Basic/Contact' */\nexport type BasicContactDto = {\n __typename?: 'BasicContact';\n address: BasicAddressDto;\n companyName?: Maybe<Scalars['String']['output']>;\n companyRegisterNumber?: Maybe<Scalars['String']['output']>;\n constructionKitType?: Maybe<CkTypeDto>;\n email?: Maybe<Scalars['String']['output']>;\n firstName?: Maybe<Scalars['String']['output']>;\n lastName?: Maybe<Scalars['String']['output']>;\n legalEntityType: BasicLegalEntityTypeDto;\n salutation?: Maybe<BasicSalutationDto>;\n taxIdentificationNumber?: Maybe<Scalars['String']['output']>;\n titlePrefix?: Maybe<Scalars['String']['output']>;\n titleSuffix?: Maybe<Scalars['String']['output']>;\n};\n\nexport type BasicContactInputDto = {\n address?: InputMaybe<BasicAddressInputDto>;\n companyName?: InputMaybe<Scalars['String']['input']>;\n companyRegisterNumber?: InputMaybe<Scalars['String']['input']>;\n email?: InputMaybe<Scalars['String']['input']>;\n firstName?: InputMaybe<Scalars['String']['input']>;\n lastName?: InputMaybe<Scalars['String']['input']>;\n legalEntityType?: InputMaybe<BasicLegalEntityTypeDto>;\n salutation?: InputMaybe<BasicSalutationDto>;\n taxIdentificationNumber?: InputMaybe<Scalars['String']['input']>;\n titlePrefix?: InputMaybe<Scalars['String']['input']>;\n titleSuffix?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/Country-1' */\nexport type BasicCountryDto = {\n __typename?: 'BasicCountry';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n children?: Maybe<BasicTreeNode_ChildrenUnionConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n description?: Maybe<Scalars['String']['output']>;\n name: Scalars['String']['output'];\n parent?: Maybe<BasicTree_ParentUnionConnectionDto>;\n relatesFrom?: Maybe<BasicAsset_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n};\n\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/Country-1' */\nexport type BasicCountryAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/Country-1' */\nexport type BasicCountryChildrenArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/Country-1' */\nexport type BasicCountryConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/Country-1' */\nexport type BasicCountryParentArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/Country-1' */\nexport type BasicCountryRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/Country-1' */\nexport type BasicCountryRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/Country-1' */\nexport type BasicCountryTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `BasicCountry`. */\nexport type BasicCountryConnectionDto = {\n __typename?: 'BasicCountryConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<BasicCountryEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<BasicCountryDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `BasicCountry`. */\nexport type BasicCountryEdgeDto = {\n __typename?: 'BasicCountryEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<BasicCountryDto>;\n};\n\nexport type BasicCountryInputDto = {\n children?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n description?: InputMaybe<Scalars['String']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n parent?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n};\n\nexport type BasicCountryInputUpdateDto = {\n /** Item to update */\n item: BasicCountryInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\nexport type BasicCountryMutationsDto = {\n __typename?: 'BasicCountryMutations';\n /** Creates new entities of type 'BasicCountry'. */\n create?: Maybe<Array<Maybe<BasicCountryDto>>>;\n /** Updates existing entity of type 'BasicCountry'. */\n update?: Maybe<Array<Maybe<BasicCountryDto>>>;\n};\n\n\nexport type BasicCountryMutationsCreateArgsDto = {\n entities: Array<InputMaybe<BasicCountryInputDto>>;\n};\n\n\nexport type BasicCountryMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<BasicCountryInputUpdateDto>>;\n};\n\nexport type BasicCountryUpdateDto = {\n __typename?: 'BasicCountryUpdate';\n /** The corresponding item */\n item?: Maybe<BasicCountryDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type BasicCountryUpdateMessageDto = {\n __typename?: 'BasicCountryUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<BasicCountryUpdateDto>>>;\n};\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/District-1' */\nexport type BasicDistrictDto = {\n __typename?: 'BasicDistrict';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n children?: Maybe<BasicTreeNode_ChildrenUnionConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n description?: Maybe<Scalars['String']['output']>;\n name: Scalars['String']['output'];\n parent?: Maybe<BasicTree_ParentUnionConnectionDto>;\n relatesFrom?: Maybe<BasicAsset_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n};\n\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/District-1' */\nexport type BasicDistrictAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/District-1' */\nexport type BasicDistrictChildrenArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/District-1' */\nexport type BasicDistrictConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/District-1' */\nexport type BasicDistrictParentArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/District-1' */\nexport type BasicDistrictRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/District-1' */\nexport type BasicDistrictRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/District-1' */\nexport type BasicDistrictTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `BasicDistrict`. */\nexport type BasicDistrictConnectionDto = {\n __typename?: 'BasicDistrictConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<BasicDistrictEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<BasicDistrictDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `BasicDistrict`. */\nexport type BasicDistrictEdgeDto = {\n __typename?: 'BasicDistrictEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<BasicDistrictDto>;\n};\n\nexport type BasicDistrictInputDto = {\n children?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n description?: InputMaybe<Scalars['String']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n parent?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n};\n\nexport type BasicDistrictInputUpdateDto = {\n /** Item to update */\n item: BasicDistrictInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\nexport type BasicDistrictMutationsDto = {\n __typename?: 'BasicDistrictMutations';\n /** Creates new entities of type 'BasicDistrict'. */\n create?: Maybe<Array<Maybe<BasicDistrictDto>>>;\n /** Updates existing entity of type 'BasicDistrict'. */\n update?: Maybe<Array<Maybe<BasicDistrictDto>>>;\n};\n\n\nexport type BasicDistrictMutationsCreateArgsDto = {\n entities: Array<InputMaybe<BasicDistrictInputDto>>;\n};\n\n\nexport type BasicDistrictMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<BasicDistrictInputUpdateDto>>;\n};\n\nexport type BasicDistrictUpdateDto = {\n __typename?: 'BasicDistrictUpdate';\n /** The corresponding item */\n item?: Maybe<BasicDistrictDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type BasicDistrictUpdateMessageDto = {\n __typename?: 'BasicDistrictUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<BasicDistrictUpdateDto>>>;\n};\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/Document-1' */\nexport type BasicDocumentDto = SystemEntityInterfaceDto & {\n __typename?: 'BasicDocument';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n documentDate: Scalars['DateTime']['output'];\n documentNumber: Scalars['String']['output'];\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n};\n\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/Document-1' */\nexport type BasicDocumentAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/Document-1' */\nexport type BasicDocumentConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/Document-1' */\nexport type BasicDocumentRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/Document-1' */\nexport type BasicDocumentRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/Document-1' */\nexport type BasicDocumentTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `BasicDocument`. */\nexport type BasicDocumentConnectionDto = {\n __typename?: 'BasicDocumentConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<BasicDocumentEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<BasicDocumentDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `BasicDocument`. */\nexport type BasicDocumentEdgeDto = {\n __typename?: 'BasicDocumentEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<BasicDocumentDto>;\n};\n\n/** Interface for runtime entities of construction kit type 'Basic-2.0.1/Document-1' */\nexport type BasicDocumentInterfaceDto = {\n ckTypeId: Scalars['RtCkTypeId']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n documentDate: Scalars['DateTime']['output'];\n documentNumber: Scalars['String']['output'];\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n};\n\n\n/** Interface for runtime entities of construction kit type 'Basic-2.0.1/Document-1' */\nexport type BasicDocumentInterfaceConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Interface for runtime entities of construction kit type 'Basic-2.0.1/Document-1' */\nexport type BasicDocumentInterfaceRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Interface for runtime entities of construction kit type 'Basic-2.0.1/Document-1' */\nexport type BasicDocumentInterfaceRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Interface for runtime entities of construction kit type 'Basic-2.0.1/Document-1' */\nexport type BasicDocumentInterfaceTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\nexport type BasicDocumentUpdateDto = {\n __typename?: 'BasicDocumentUpdate';\n /** The corresponding item */\n item?: Maybe<BasicDocumentDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type BasicDocumentUpdateMessageDto = {\n __typename?: 'BasicDocumentUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<BasicDocumentUpdateDto>>>;\n};\n\n/** Runtime entities of construction kit record 'Basic/EMail' */\nexport type BasicEMailDto = {\n __typename?: 'BasicEMail';\n constructionKitType?: Maybe<CkTypeDto>;\n eMail: Scalars['String']['output'];\n publicKey?: Maybe<Scalars['String']['output']>;\n typeOfEMail?: Maybe<BasicTypeOfTelephoneBasicDto>;\n typeOfPublicKey?: Maybe<Scalars['String']['output']>;\n};\n\nexport type BasicEMailInputDto = {\n eMail?: InputMaybe<Scalars['String']['input']>;\n publicKey?: InputMaybe<Scalars['String']['input']>;\n typeOfEMail?: InputMaybe<BasicTypeOfTelephoneBasicDto>;\n typeOfPublicKey?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/Employee-1' */\nexport type BasicEmployeeDto = SystemEntityInterfaceDto & {\n __typename?: 'BasicEmployee';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n employeeExternalId: Scalars['String']['output'];\n employeeId: Scalars['String']['output'];\n firstName: Scalars['String']['output'];\n lastName: Scalars['String']['output'];\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n};\n\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/Employee-1' */\nexport type BasicEmployeeAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/Employee-1' */\nexport type BasicEmployeeConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/Employee-1' */\nexport type BasicEmployeeRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/Employee-1' */\nexport type BasicEmployeeRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/Employee-1' */\nexport type BasicEmployeeTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `BasicEmployee`. */\nexport type BasicEmployeeConnectionDto = {\n __typename?: 'BasicEmployeeConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<BasicEmployeeEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<BasicEmployeeDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `BasicEmployee`. */\nexport type BasicEmployeeEdgeDto = {\n __typename?: 'BasicEmployeeEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<BasicEmployeeDto>;\n};\n\nexport type BasicEmployeeInputDto = {\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n employeeExternalId?: InputMaybe<Scalars['String']['input']>;\n employeeId?: InputMaybe<Scalars['String']['input']>;\n firstName?: InputMaybe<Scalars['String']['input']>;\n lastName?: InputMaybe<Scalars['String']['input']>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n};\n\nexport type BasicEmployeeInputUpdateDto = {\n /** Item to update */\n item: BasicEmployeeInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\nexport type BasicEmployeeMutationsDto = {\n __typename?: 'BasicEmployeeMutations';\n /** Creates new entities of type 'BasicEmployee'. */\n create?: Maybe<Array<Maybe<BasicEmployeeDto>>>;\n /** Updates existing entity of type 'BasicEmployee'. */\n update?: Maybe<Array<Maybe<BasicEmployeeDto>>>;\n};\n\n\nexport type BasicEmployeeMutationsCreateArgsDto = {\n entities: Array<InputMaybe<BasicEmployeeInputDto>>;\n};\n\n\nexport type BasicEmployeeMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<BasicEmployeeInputUpdateDto>>;\n};\n\nexport type BasicEmployeeUpdateDto = {\n __typename?: 'BasicEmployeeUpdate';\n /** The corresponding item */\n item?: Maybe<BasicEmployeeDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type BasicEmployeeUpdateMessageDto = {\n __typename?: 'BasicEmployeeUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<BasicEmployeeUpdateDto>>>;\n};\n\n/** Runtime entities of construction kit record 'Basic/FaxNumber' */\nexport type BasicFaxNumberDto = {\n __typename?: 'BasicFaxNumber';\n constructionKitType?: Maybe<CkTypeDto>;\n number: Scalars['String']['output'];\n type?: Maybe<BasicTypeOfTelephoneBasicDto>;\n};\n\nexport type BasicFaxNumberInputDto = {\n number?: InputMaybe<Scalars['String']['input']>;\n type?: InputMaybe<BasicTypeOfTelephoneBasicDto>;\n};\n\n/** Runtime entities of construction kit enum 'Basic/LegalEntityType' */\nexport enum BasicLegalEntityTypeDto {\n /** Actor in economic life, such as any natural or legal person with UGB relevance. */\n CompanyDto = 'COMPANY',\n /** Legal structure with the characteristics of a person */\n LegalPersonDto = 'LEGAL_PERSON',\n /** Administrative unit with sovereign power such as municipality, federal state, republic. */\n LocalAuthorityDto = 'LOCAL_AUTHORITY',\n /** A natural person is a human being with legal capacity, in contrast to a legal person (such as a company, organization, or government entity). */\n NaturalPersonDto = 'NATURAL_PERSON'\n}\n\n/** Runtime entities of construction kit record 'Basic/Marking' */\nexport type BasicMarkingDto = {\n __typename?: 'BasicMarking';\n additionalText?: Maybe<Scalars['String']['output']>;\n constructionKitType?: Maybe<CkTypeDto>;\n file: LargeBinaryInfoDto;\n name: Scalars['String']['output'];\n};\n\nexport type BasicMarkingInputDto = {\n additionalText?: InputMaybe<Scalars['String']['input']>;\n file?: InputMaybe<Scalars['LargeBinary']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Runtime entities of construction kit record 'Basic/NamePlate' */\nexport type BasicNamePlateDto = {\n __typename?: 'BasicNamePlate';\n address?: Maybe<BasicAddressDto>;\n assetSpecificProperties?: Maybe<Array<BasicMarkingDto>>;\n constructionKitType?: Maybe<CkTypeDto>;\n manufacturerName: Scalars['String']['output'];\n manufacturerProductDesignation: Scalars['String']['output'];\n manufacturerProductFamily: Scalars['String']['output'];\n markings?: Maybe<Array<BasicMarkingDto>>;\n serialNumber?: Maybe<Scalars['String']['output']>;\n yearOfConstruction: Scalars['String']['output'];\n};\n\nexport type BasicNamePlateInputDto = {\n address?: InputMaybe<BasicAddressInputDto>;\n assetSpecificProperties?: InputMaybe<Array<InputMaybe<BasicMarkingInputDto>>>;\n manufacturerName?: InputMaybe<Scalars['String']['input']>;\n manufacturerProductDesignation?: InputMaybe<Scalars['String']['input']>;\n manufacturerProductFamily?: InputMaybe<Scalars['String']['input']>;\n markings?: InputMaybe<Array<InputMaybe<BasicMarkingInputDto>>>;\n serialNumber?: InputMaybe<Scalars['String']['input']>;\n yearOfConstruction?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/NamedEntity-1' */\nexport type BasicNamedEntityDto = SystemEntityInterfaceDto & {\n __typename?: 'BasicNamedEntity';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n description?: Maybe<Scalars['String']['output']>;\n name: Scalars['String']['output'];\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n};\n\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/NamedEntity-1' */\nexport type BasicNamedEntityAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/NamedEntity-1' */\nexport type BasicNamedEntityConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/NamedEntity-1' */\nexport type BasicNamedEntityRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/NamedEntity-1' */\nexport type BasicNamedEntityRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/NamedEntity-1' */\nexport type BasicNamedEntityTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `BasicNamedEntity`. */\nexport type BasicNamedEntityConnectionDto = {\n __typename?: 'BasicNamedEntityConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<BasicNamedEntityEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<BasicNamedEntityDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `BasicNamedEntity`. */\nexport type BasicNamedEntityEdgeDto = {\n __typename?: 'BasicNamedEntityEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<BasicNamedEntityDto>;\n};\n\n/** Interface for runtime entities of construction kit type 'Basic-2.0.1/NamedEntity-1' */\nexport type BasicNamedEntityInterfaceDto = {\n ckTypeId: Scalars['RtCkTypeId']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n description?: Maybe<Scalars['String']['output']>;\n name: Scalars['String']['output'];\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n};\n\n\n/** Interface for runtime entities of construction kit type 'Basic-2.0.1/NamedEntity-1' */\nexport type BasicNamedEntityInterfaceConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Interface for runtime entities of construction kit type 'Basic-2.0.1/NamedEntity-1' */\nexport type BasicNamedEntityInterfaceRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Interface for runtime entities of construction kit type 'Basic-2.0.1/NamedEntity-1' */\nexport type BasicNamedEntityInterfaceRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Interface for runtime entities of construction kit type 'Basic-2.0.1/NamedEntity-1' */\nexport type BasicNamedEntityInterfaceTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\nexport type BasicNamedEntityUpdateDto = {\n __typename?: 'BasicNamedEntityUpdate';\n /** The corresponding item */\n item?: Maybe<BasicNamedEntityDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type BasicNamedEntityUpdateMessageDto = {\n __typename?: 'BasicNamedEntityUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<BasicNamedEntityUpdateDto>>>;\n};\n\n/** Runtime entities of construction kit record 'Basic/PhoneNumber' */\nexport type BasicPhoneNumberDto = {\n __typename?: 'BasicPhoneNumber';\n constructionKitType?: Maybe<CkTypeDto>;\n number: Scalars['String']['output'];\n type?: Maybe<BasicTypeOfTelephoneEnhancedDto>;\n};\n\nexport type BasicPhoneNumberInputDto = {\n number?: InputMaybe<Scalars['String']['input']>;\n type?: InputMaybe<BasicTypeOfTelephoneEnhancedDto>;\n};\n\n/** Runtime entities of construction kit enum 'Basic/Salutation' */\nexport enum BasicSalutationDto {\n /** The salutation is female */\n FemaleDto = 'FEMALE',\n /** The salutation is male */\n MaleDto = 'MALE',\n /** The salutation is non-binary */\n NonBinaryDto = 'NON_BINARY',\n /** The salutation is unknown or not defined */\n UnknownDto = 'UNKNOWN'\n}\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/State-1' */\nexport type BasicStateDto = {\n __typename?: 'BasicState';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n children?: Maybe<BasicTreeNode_ChildrenUnionConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n description?: Maybe<Scalars['String']['output']>;\n name: Scalars['String']['output'];\n parent?: Maybe<BasicTree_ParentUnionConnectionDto>;\n relatesFrom?: Maybe<BasicAsset_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n};\n\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/State-1' */\nexport type BasicStateAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/State-1' */\nexport type BasicStateChildrenArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/State-1' */\nexport type BasicStateConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/State-1' */\nexport type BasicStateParentArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/State-1' */\nexport type BasicStateRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/State-1' */\nexport type BasicStateRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/State-1' */\nexport type BasicStateTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `BasicState`. */\nexport type BasicStateConnectionDto = {\n __typename?: 'BasicStateConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<BasicStateEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<BasicStateDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `BasicState`. */\nexport type BasicStateEdgeDto = {\n __typename?: 'BasicStateEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<BasicStateDto>;\n};\n\nexport type BasicStateInputDto = {\n children?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n description?: InputMaybe<Scalars['String']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n parent?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n};\n\nexport type BasicStateInputUpdateDto = {\n /** Item to update */\n item: BasicStateInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\nexport type BasicStateMutationsDto = {\n __typename?: 'BasicStateMutations';\n /** Creates new entities of type 'BasicState'. */\n create?: Maybe<Array<Maybe<BasicStateDto>>>;\n /** Updates existing entity of type 'BasicState'. */\n update?: Maybe<Array<Maybe<BasicStateDto>>>;\n};\n\n\nexport type BasicStateMutationsCreateArgsDto = {\n entities: Array<InputMaybe<BasicStateInputDto>>;\n};\n\n\nexport type BasicStateMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<BasicStateInputUpdateDto>>;\n};\n\nexport type BasicStateUpdateDto = {\n __typename?: 'BasicStateUpdate';\n /** The corresponding item */\n item?: Maybe<BasicStateDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type BasicStateUpdateMessageDto = {\n __typename?: 'BasicStateUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<BasicStateUpdateDto>>>;\n};\n\n/** Runtime entities of construction kit record 'Basic/TimeRange' */\nexport type BasicTimeRangeDto = {\n __typename?: 'BasicTimeRange';\n constructionKitType?: Maybe<CkTypeDto>;\n from: Scalars['DateTime']['output'];\n to: Scalars['DateTime']['output'];\n};\n\nexport type BasicTimeRangeInputDto = {\n from?: InputMaybe<Scalars['DateTime']['input']>;\n to?: InputMaybe<Scalars['DateTime']['input']>;\n};\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/Tree-1' */\nexport type BasicTreeDto = BasicNamedEntityInterfaceDto & SystemEntityInterfaceDto & {\n __typename?: 'BasicTree';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n children?: Maybe<BasicTreeNode_ChildrenUnionConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n description?: Maybe<Scalars['String']['output']>;\n name: Scalars['String']['output'];\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n};\n\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/Tree-1' */\nexport type BasicTreeAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/Tree-1' */\nexport type BasicTreeChildrenArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/Tree-1' */\nexport type BasicTreeConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/Tree-1' */\nexport type BasicTreeRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/Tree-1' */\nexport type BasicTreeRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/Tree-1' */\nexport type BasicTreeTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `BasicTree`. */\nexport type BasicTreeConnectionDto = {\n __typename?: 'BasicTreeConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<BasicTreeEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<BasicTreeDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `BasicTree`. */\nexport type BasicTreeEdgeDto = {\n __typename?: 'BasicTreeEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<BasicTreeDto>;\n};\n\nexport type BasicTreeInputDto = {\n children?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n description?: InputMaybe<Scalars['String']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n};\n\nexport type BasicTreeInputUpdateDto = {\n /** Item to update */\n item: BasicTreeInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\nexport type BasicTreeMutationsDto = {\n __typename?: 'BasicTreeMutations';\n /** Creates new entities of type 'BasicTree'. */\n create?: Maybe<Array<Maybe<BasicTreeDto>>>;\n /** Updates existing entity of type 'BasicTree'. */\n update?: Maybe<Array<Maybe<BasicTreeDto>>>;\n};\n\n\nexport type BasicTreeMutationsCreateArgsDto = {\n entities: Array<InputMaybe<BasicTreeInputDto>>;\n};\n\n\nexport type BasicTreeMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<BasicTreeInputUpdateDto>>;\n};\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/TreeNode-1' */\nexport type BasicTreeNodeDto = {\n __typename?: 'BasicTreeNode';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n children?: Maybe<BasicTreeNode_ChildrenUnionConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n description?: Maybe<Scalars['String']['output']>;\n name: Scalars['String']['output'];\n parent?: Maybe<BasicTree_ParentUnionConnectionDto>;\n relatesFrom?: Maybe<BasicAsset_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n};\n\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/TreeNode-1' */\nexport type BasicTreeNodeAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/TreeNode-1' */\nexport type BasicTreeNodeChildrenArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/TreeNode-1' */\nexport type BasicTreeNodeConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/TreeNode-1' */\nexport type BasicTreeNodeParentArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/TreeNode-1' */\nexport type BasicTreeNodeRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/TreeNode-1' */\nexport type BasicTreeNodeRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'Basic-2.0.1/TreeNode-1' */\nexport type BasicTreeNodeTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `BasicTreeNode`. */\nexport type BasicTreeNodeConnectionDto = {\n __typename?: 'BasicTreeNodeConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<BasicTreeNodeEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<BasicTreeNodeDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `BasicTreeNode`. */\nexport type BasicTreeNodeEdgeDto = {\n __typename?: 'BasicTreeNodeEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<BasicTreeNodeDto>;\n};\n\nexport type BasicTreeNodeInputDto = {\n children?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n description?: InputMaybe<Scalars['String']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n parent?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n};\n\nexport type BasicTreeNodeInputUpdateDto = {\n /** Item to update */\n item: BasicTreeNodeInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\nexport type BasicTreeNodeMutationsDto = {\n __typename?: 'BasicTreeNodeMutations';\n /** Creates new entities of type 'BasicTreeNode'. */\n create?: Maybe<Array<Maybe<BasicTreeNodeDto>>>;\n /** Updates existing entity of type 'BasicTreeNode'. */\n update?: Maybe<Array<Maybe<BasicTreeNodeDto>>>;\n};\n\n\nexport type BasicTreeNodeMutationsCreateArgsDto = {\n entities: Array<InputMaybe<BasicTreeNodeInputDto>>;\n};\n\n\nexport type BasicTreeNodeMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<BasicTreeNodeInputUpdateDto>>;\n};\n\nexport type BasicTreeNodeUpdateDto = {\n __typename?: 'BasicTreeNodeUpdate';\n /** The corresponding item */\n item?: Maybe<BasicTreeNodeDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type BasicTreeNodeUpdateMessageDto = {\n __typename?: 'BasicTreeNodeUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<BasicTreeNodeUpdateDto>>>;\n};\n\n/** Union of types derived from Basic/TreeNode for Children association */\nexport type BasicTreeNode_ChildrenUnionDto = BasicAssetDto | BasicCityDto | BasicCountryDto | BasicDistrictDto | BasicStateDto | BasicTreeNodeDto | OctoSdkDemoMeteringPointDto | OctoSdkDemoOperatingFacilityDto;\n\n/** A connection to `BasicTreeNode_ChildrenUnion`. */\nexport type BasicTreeNode_ChildrenUnionConnectionDto = {\n __typename?: 'BasicTreeNode_ChildrenUnionConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<BasicTreeNode_ChildrenUnionEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<BasicTreeNode_ChildrenUnionDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `BasicTreeNode_ChildrenUnion`. */\nexport type BasicTreeNode_ChildrenUnionEdgeDto = {\n __typename?: 'BasicTreeNode_ChildrenUnionEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<BasicTreeNode_ChildrenUnionDto>;\n};\n\n/** Union of types derived from Basic/TreeNode for RelatesTo association */\nexport type BasicTreeNode_RelatesToUnionDto = BasicAssetDto | BasicCityDto | BasicCountryDto | BasicDistrictDto | BasicEmployeeDto | BasicStateDto | BasicTreeDto | BasicTreeNodeDto | OctoSdkDemoCustomerDto | OctoSdkDemoMeteringPointDto | OctoSdkDemoOperatingFacilityDto | SystemAggregationRtQueryDto | SystemAutoIncrementDto | SystemBotAttributeAggregateConfigurationDto | SystemBotFixupDto | SystemBotServiceHookDto | SystemCommunicationDataPipelineDto | SystemCommunicationDataPipelineTriggerDto | SystemCommunicationEMailSenderConfigurationDto | SystemCommunicationEdgeAdapterDto | SystemCommunicationEdgePipelineDto | SystemCommunicationEnergyCommunityConfigurationDto | SystemCommunicationMeshAdapterDto | SystemCommunicationMeshPipelineDto | SystemCommunicationPipelineExecutionDto | SystemCommunicationPipelineStatisticsDto | SystemCommunicationPoolDto | SystemCommunicationSapConfigurationDto | SystemCommunicationTagDto | SystemGroupingAggregationRtQueryDto | SystemIdentityApiResourceDto | SystemIdentityApiScopeDto | SystemIdentityAzureEntraIdIdentityProviderDto | SystemIdentityClientDto | SystemIdentityFacebookIdentityProviderDto | SystemIdentityGoogleIdentityProviderDto | SystemIdentityIdentityResourceDto | SystemIdentityMailNotificationConfigurationDto | SystemIdentityMicrosoftAdIdentityProviderDto | SystemIdentityMicrosoftIdentityProviderDto | SystemIdentityOpenLdapIdentityProviderDto | SystemIdentityPermissionDto | SystemIdentityPermissionRoleDto | SystemIdentityPersistedGrantDto | SystemIdentityRoleDto | SystemIdentityUserDto | SystemMigrationHistoryDto | SystemNotificationCssTemplateConfigurationDto | SystemNotificationEventDto | SystemNotificationNotificationTemplateDto | SystemNotificationStatefulEventDto | SystemQueryDto | SystemReportingConnectionInfoDto | SystemReportingFileSystemItemDto | SystemReportingFolderDto | SystemReportingFolderRootDto | SystemSimpleRtQueryDto | SystemTenantDto | SystemTenantConfigurationDto | SystemTenantModeConfigurationDto | SystemUiDashboardDto | SystemUiDashboardWidgetDto | SystemUiPageDto | SystemUiProcessDiagramDto | SystemUiStudioRootDto | SystemUiStudioTreeItemDto | SystemUiSymbolDefinitionDto | SystemUiSymbolLibraryDto;\n\n/** A connection to `BasicTreeNode_RelatesToUnion`. */\nexport type BasicTreeNode_RelatesToUnionConnectionDto = {\n __typename?: 'BasicTreeNode_RelatesToUnionConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<BasicTreeNode_RelatesToUnionEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<BasicTreeNode_RelatesToUnionDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `BasicTreeNode_RelatesToUnion`. */\nexport type BasicTreeNode_RelatesToUnionEdgeDto = {\n __typename?: 'BasicTreeNode_RelatesToUnionEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<BasicTreeNode_RelatesToUnionDto>;\n};\n\nexport type BasicTreeUpdateDto = {\n __typename?: 'BasicTreeUpdate';\n /** The corresponding item */\n item?: Maybe<BasicTreeDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type BasicTreeUpdateMessageDto = {\n __typename?: 'BasicTreeUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<BasicTreeUpdateDto>>>;\n};\n\n/** Union of types derived from Basic/Tree for Parent association */\nexport type BasicTree_ParentUnionDto = BasicAssetDto | BasicCityDto | BasicCountryDto | BasicDistrictDto | BasicStateDto | BasicTreeDto | BasicTreeNodeDto | OctoSdkDemoMeteringPointDto | OctoSdkDemoOperatingFacilityDto;\n\n/** A connection to `BasicTree_ParentUnion`. */\nexport type BasicTree_ParentUnionConnectionDto = {\n __typename?: 'BasicTree_ParentUnionConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<BasicTree_ParentUnionEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<BasicTree_ParentUnionDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `BasicTree_ParentUnion`. */\nexport type BasicTree_ParentUnionEdgeDto = {\n __typename?: 'BasicTree_ParentUnionEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<BasicTree_ParentUnionDto>;\n};\n\n/** Runtime entities of construction kit enum 'Basic/TypeOfTelephoneBasic' */\nexport enum BasicTypeOfTelephoneBasicDto {\n HomeDto = 'HOME',\n OfficeDto = 'OFFICE',\n SecretaryDto = 'SECRETARY',\n SubstituteDto = 'SUBSTITUTE'\n}\n\n/** Runtime entities of construction kit enum 'Basic/TypeOfTelephoneEnhanced' */\nexport enum BasicTypeOfTelephoneEnhancedDto {\n HomeDto = 'HOME',\n OfficeDto = 'OFFICE',\n OfficeMobileDto = 'OFFICE_MOBILE',\n PrivateMobileDto = 'PRIVATE_MOBILE',\n SecretaryDto = 'SECRETARY',\n SubstituteDto = 'SUBSTITUTE'\n}\n\n/** Runtime entities of construction kit enum 'Basic/UnitOfMeasure' */\nexport enum BasicUnitOfMeasureDto {\n /** Kilowatt-hour, a unit of energy equal to one kilowatt of power used for one hour */\n KWhDto = 'K_WH',\n /** Megawatt-hour, a unit of energy equal to one megawatt of power used for one hour */\n MWhDto = 'M_WH',\n /** No unit applicable */\n NonUnitDto = 'NON_UNIT'\n}\n\n/** Definition of a construction kit association roles with navigation property names and cardinalities */\nexport type CkAssociationRoleDto = {\n __typename?: 'CkAssociationRole';\n /** Construction kit association role id, the unique identifier of the association role. */\n ckAssociationRoleId: CkAssociationRoleIdDto;\n /** Definition of a construction kit association roles with navigation property names and cardinalities */\n description?: Maybe<Scalars['String']['output']>;\n /** Cardinality of the inbound direction side */\n inboundMultiplicity: MultiplicitiesDto;\n /** The name of navigation property of inbound direction side */\n inboundName: Scalars['String']['output'];\n /** Cardinality of the outbound direction */\n outboundMultiplicity: MultiplicitiesDto;\n /** The name of navigation property of outbound direction side */\n outboundName: Scalars['String']['output'];\n};\n\n/** A connection from an object to a list of objects of type `CkAssociationRoleDto`. */\nexport type CkAssociationRoleDtoConnectionDto = {\n __typename?: 'CkAssociationRoleDtoConnection';\n /** A list of all of the edges returned in the connection. */\n edges?: Maybe<Array<Maybe<CkAssociationRoleDtoEdgeDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<CkAssociationRoleDto>>>;\n /** Information to aid in pagination. */\n pageInfo: PageInfoDto;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `CkAssociationRoleDto`. */\nexport type CkAssociationRoleDtoEdgeDto = {\n __typename?: 'CkAssociationRoleDtoEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<CkAssociationRoleDto>;\n};\n\n/** A construction kit id of CkAssociationRoleId. */\nexport type CkAssociationRoleIdDto = {\n __typename?: 'CkAssociationRoleId';\n /** The full name of the model, e.g. 'System-1.0.3'. */\n fullName: Scalars['String']['output'];\n /** The semantic versioned full name of the construction kit type, e.g. 'System/Entity' or 'System-2/Entity'. */\n semanticVersionedFullName: Scalars['String']['output'];\n};\n\n/** Construction kit attribute definitions */\nexport type CkAttributeDto = {\n __typename?: 'CkAttribute';\n /** Value type of the attribute. */\n attributeValueType: AttributeValueTypeDto;\n /** Construction kit attribute id. */\n ckAttributeId: CkAttributeIdDto;\n /** Optional enum id of the attribute value type. */\n ckEnum?: Maybe<CkEnumDto>;\n /** Optional record id of the attribute value type. */\n ckRecord?: Maybe<CkRecordDto>;\n /** Default values of the attribute. */\n defaultValues?: Maybe<Array<Maybe<Scalars['SimpleScalar']['output']>>>;\n /** Optional description of the attribute. */\n description?: Maybe<Scalars['String']['output']>;\n /** Optional flag that tells if an attribute is a data stream. */\n isDataStream?: Maybe<Scalars['Boolean']['output']>;\n /** Optional meta data of the attribute. */\n metaData?: Maybe<Array<Maybe<CkAttributeMetaDataDto>>>;\n};\n\n/** A connection from an object to a list of objects of type `CkAttributeDto`. */\nexport type CkAttributeDtoConnectionDto = {\n __typename?: 'CkAttributeDtoConnection';\n /** A list of all of the edges returned in the connection. */\n edges?: Maybe<Array<Maybe<CkAttributeDtoEdgeDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<CkAttributeDto>>>;\n /** Information to aid in pagination. */\n pageInfo: PageInfoDto;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `CkAttributeDto`. */\nexport type CkAttributeDtoEdgeDto = {\n __typename?: 'CkAttributeDtoEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<CkAttributeDto>;\n};\n\n/** A construction kit id of CkAttributeId. */\nexport type CkAttributeIdDto = {\n __typename?: 'CkAttributeId';\n /** The full name of the model, e.g. 'System-1.0.3'. */\n fullName: Scalars['String']['output'];\n /** The semantic versioned full name of the construction kit type, e.g. 'System/Entity' or 'System-2/Entity'. */\n semanticVersionedFullName: Scalars['String']['output'];\n};\n\n/** Construction kit attribute meta data */\nexport type CkAttributeMetaDataDto = {\n __typename?: 'CkAttributeMetaData';\n /** Optional description of the meta data. */\n description?: Maybe<Scalars['String']['output']>;\n /** Key of the meta data. */\n key: Scalars['ID']['output'];\n /** Value of the meta data. */\n value?: Maybe<Scalars['String']['output']>;\n};\n\n/** Definition of a construction kit record with name and attributes. */\nexport type CkEnumDto = {\n __typename?: 'CkEnum';\n /** Construction kit enum id, the unique identifier of the enum. */\n ckEnumId: CkEnumIdDto;\n /** Optional description of the record. */\n description?: Maybe<Scalars['String']['output']>;\n /** Whether the enum is extensible for customization. */\n isExtensible: Scalars['Boolean']['output'];\n /** Runtime construction kit enum id, the unique identifier of the enum. */\n rtCkEnumId: Scalars['RtCkEnumId']['output'];\n /** Whether the enum is a flags enum */\n useFlags: Scalars['Boolean']['output'];\n /** Values of the enum. */\n values: Array<Maybe<CkEnumValueDto>>;\n};\n\n/** A connection from an object to a list of objects of type `CkEnumDto`. */\nexport type CkEnumDtoConnectionDto = {\n __typename?: 'CkEnumDtoConnection';\n /** A list of all of the edges returned in the connection. */\n edges?: Maybe<Array<Maybe<CkEnumDtoEdgeDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<CkEnumDto>>>;\n /** Information to aid in pagination. */\n pageInfo: PageInfoDto;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `CkEnumDto`. */\nexport type CkEnumDtoEdgeDto = {\n __typename?: 'CkEnumDtoEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<CkEnumDto>;\n};\n\n/** A construction kit id of CkEnumId. */\nexport type CkEnumIdDto = {\n __typename?: 'CkEnumId';\n /** The full name of the model, e.g. 'System-1.0.3'. */\n fullName: Scalars['String']['output'];\n /** The semantic versioned full name of the construction kit type, e.g. 'System/Entity' or 'System-2/Entity'. */\n semanticVersionedFullName: Scalars['String']['output'];\n};\n\nexport type CkEnumMutationsDto = {\n __typename?: 'CkEnumMutations';\n /** Updates customizations of enum extensions. */\n updateValueExtensions?: Maybe<Array<Maybe<CkEnumDto>>>;\n};\n\n\nexport type CkEnumMutationsUpdateValueExtensionsArgsDto = {\n values: Array<InputMaybe<CkEnumUpdateDto>>;\n};\n\nexport type CkEnumUpdateDto = {\n operation?: InputMaybe<CkExtensionUpdateOperationsDto>;\n value?: InputMaybe<CkEnumValueInputDto>;\n};\n\n/** A construction kit enum value */\nexport type CkEnumValueDto = {\n __typename?: 'CkEnumValue';\n /** Description of enum value */\n description?: Maybe<Scalars['String']['output']>;\n /** True, when the enum value is a custom extension, otherwise false */\n isExtension?: Maybe<Scalars['Boolean']['output']>;\n /** Unique key of enum value */\n key?: Maybe<Scalars['Int']['output']>;\n /** Name of enum value */\n name?: Maybe<Scalars['String']['output']>;\n};\n\n/** A construction kit enum value */\nexport type CkEnumValueInputDto = {\n /** Description of enum value */\n description?: InputMaybe<Scalars['String']['input']>;\n /** Unique key of enum value */\n key?: InputMaybe<Scalars['Int']['input']>;\n /** Name of enum value */\n name?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Defines the possible operation operations to extend construction elements. */\nexport enum CkExtensionUpdateOperationsDto {\n DeleteDto = 'DELETE',\n InsertDto = 'INSERT'\n}\n\n/** A construction kit model */\nexport type CkModelDto = {\n __typename?: 'CkModel';\n attributes?: Maybe<CkAttributeDtoConnectionDto>;\n dependencies: Array<CkModelIdDto>;\n /** Optional description of the model. */\n description?: Maybe<Scalars['String']['output']>;\n enums?: Maybe<CkEnumDtoConnectionDto>;\n /** Construction kit model id, the unique identifier of the model. */\n id: CkModelIdDto;\n /** Availability of the model within the repository. */\n modelState?: Maybe<ModelStateDto>;\n records?: Maybe<CkRecordDtoConnectionDto>;\n types?: Maybe<CkTypeDtoConnectionDto>;\n};\n\n\n/** A construction kit model */\nexport type CkModelAttributesArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n ckId?: InputMaybe<Scalars['String']['input']>;\n ckIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** A construction kit model */\nexport type CkModelEnumsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n ckId?: InputMaybe<Scalars['String']['input']>;\n ckIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** A construction kit model */\nexport type CkModelRecordsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n ckId?: InputMaybe<Scalars['String']['input']>;\n ckIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** A construction kit model */\nexport type CkModelTypesArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n ckId?: InputMaybe<Scalars['String']['input']>;\n ckIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection from an object to a list of objects of type `CkModelDto`. */\nexport type CkModelDtoConnectionDto = {\n __typename?: 'CkModelDtoConnection';\n /** A list of all of the edges returned in the connection. */\n edges?: Maybe<Array<Maybe<CkModelDtoEdgeDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<CkModelDto>>>;\n /** Information to aid in pagination. */\n pageInfo: PageInfoDto;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `CkModelDto`. */\nexport type CkModelDtoEdgeDto = {\n __typename?: 'CkModelDtoEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<CkModelDto>;\n};\n\n/** Identifies a construction kit model. */\nexport type CkModelIdDto = {\n __typename?: 'CkModelId';\n /** The full name of the model, e.g. 'System-1.0.3'. */\n fullName: Scalars['String']['output'];\n /** The name of the model, e.g. 'System'. */\n name: Scalars['String']['output'];\n /** The semantic versioned full name of the model, e.g. 'System' or 'System-2'. */\n semanticVersionedFullName: Scalars['String']['output'];\n /** The version of the model, e.g. '1.0.0' or '2.0.0'. */\n version: Scalars['CkVersion']['output'];\n};\n\n/** Definition of a construction kit record with name and attributes. */\nexport type CkRecordDto = {\n __typename?: 'CkRecord';\n attributes?: Maybe<CkTypeAttributeDtoConnectionDto>;\n /** The base record the current record is derived from. */\n baseRecordTypes?: Maybe<CkRecordDto>;\n /** Construction kit record id, the unique identifier of the record. */\n ckRecordId: CkRecordIdDto;\n /** Lists types that are derived from the current construction kit record. */\n derivedRecordTypes?: Maybe<CkRecordDtoConnectionDto>;\n /** Optional description of the record. */\n description?: Maybe<Scalars['String']['output']>;\n /** Indicates if the record is abstract. */\n isAbstract: Scalars['Boolean']['output'];\n /** Indicates if the record is final. */\n isFinal: Scalars['Boolean']['output'];\n /** Runtime construction kit record id, the unique identifier of the record. */\n rtCkRecordId: Scalars['RtCkRecordId']['output'];\n};\n\n\n/** Definition of a construction kit record with name and attributes. */\nexport type CkRecordAttributesArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n attributeNames?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Definition of a construction kit record with name and attributes. */\nexport type CkRecordDerivedRecordTypesArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n};\n\n/** A connection from an object to a list of objects of type `CkRecordDto`. */\nexport type CkRecordDtoConnectionDto = {\n __typename?: 'CkRecordDtoConnection';\n /** A list of all of the edges returned in the connection. */\n edges?: Maybe<Array<Maybe<CkRecordDtoEdgeDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<CkRecordDto>>>;\n /** Information to aid in pagination. */\n pageInfo: PageInfoDto;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `CkRecordDto`. */\nexport type CkRecordDtoEdgeDto = {\n __typename?: 'CkRecordDtoEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<CkRecordDto>;\n};\n\n/** A construction kit id of CkRecordId. */\nexport type CkRecordIdDto = {\n __typename?: 'CkRecordId';\n /** The full name of the model, e.g. 'System-1.0.3'. */\n fullName: Scalars['String']['output'];\n /** The semantic versioned full name of the construction kit type, e.g. 'System/Entity' or 'System-2/Entity'. */\n semanticVersionedFullName: Scalars['String']['output'];\n};\n\n/** Definition of a construction kit type with name, associations and attributes. */\nexport type CkTypeDto = {\n __typename?: 'CkType';\n associations?: Maybe<CkTypeAssociationDirectionDto>;\n attributes?: Maybe<CkTypeAttributeDtoConnectionDto>;\n availableQueryColumns?: Maybe<CkTypeQueryColumnDtoConnectionDto>;\n /** The base type the current type is derived from. */\n baseType?: Maybe<CkTypeDto>;\n /** Construction kit type id, the unique identifier of the type. */\n ckTypeId: CkTypeIdDto;\n /** Lists types that are derived from the current construction kit type. */\n derivedTypes?: Maybe<CkTypeDtoConnectionDto>;\n /** Optional description of the type. */\n description?: Maybe<Scalars['String']['output']>;\n /** Lists types that are derived directly or indirectly from the current construction kit type. */\n directAndIndirectDerivedTypes?: Maybe<CkTypeDtoConnectionDto>;\n /** Indicates if the type is abstract. */\n isAbstract: Scalars['Boolean']['output'];\n /** Indicates if the type is final. */\n isFinal: Scalars['Boolean']['output'];\n /** Runtime construction kit type id, the unique identifier of the type. */\n rtCkTypeId: Scalars['RtCkTypeId']['output'];\n};\n\n\n/** Definition of a construction kit type with name, associations and attributes. */\nexport type CkTypeAttributesArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n attributeNameContains?: InputMaybe<Scalars['String']['input']>;\n attributeNames?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Definition of a construction kit type with name, associations and attributes. */\nexport type CkTypeAvailableQueryColumnsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n attributePathContains?: InputMaybe<Scalars['String']['input']>;\n attributePaths?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Definition of a construction kit type with name, associations and attributes. */\nexport type CkTypeDerivedTypesArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n ignoreAbstractTypes?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n\n/** Definition of a construction kit type with name, associations and attributes. */\nexport type CkTypeDirectAndIndirectDerivedTypesArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n ignoreAbstractTypes?: InputMaybe<Scalars['Boolean']['input']>;\n includeSelf?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n/** Associations of a construction kit type */\nexport type CkTypeAssociationDto = {\n __typename?: 'CkTypeAssociation';\n /** Multiplicity of the association for the current side */\n multiplicity: MultiplicitiesDto;\n /** Navigation property name of the association for the current side */\n navigationPropertyName: Scalars['String']['output'];\n /** Type id of the construction kit type of the origin side of the association */\n originCkTypeId: CkTypeIdDto;\n /** Construction kit attribute id. */\n roleId: CkAssociationRoleIdDto;\n /** Type id of the construction kit type of the target side of the association */\n targetCkTypeId: CkTypeIdDto;\n};\n\n/** Returns inbound and outbound association definitions */\nexport type CkTypeAssociationDirectionDto = {\n __typename?: 'CkTypeAssociationDirection';\n /** Gets ingoing associations */\n in?: Maybe<CkTypeAssociationSourceDto>;\n /** Gets outgoing associations */\n out?: Maybe<CkTypeAssociationSourceDto>;\n};\n\n/** Associations of a construction kit type */\nexport type CkTypeAssociationSourceDto = {\n __typename?: 'CkTypeAssociationSource';\n /** All associations definitions available current type */\n all?: Maybe<Array<Maybe<CkTypeAssociationDto>>>;\n /** Associations definitions inherited by base types */\n inherited?: Maybe<Array<Maybe<CkTypeAssociationDto>>>;\n /** Associations definitions defined by the current type */\n owned?: Maybe<Array<Maybe<CkTypeAssociationDto>>>;\n};\n\n/** Attributes of a construction kit type */\nexport type CkTypeAttributeDto = {\n __typename?: 'CkTypeAttribute';\n /** The construction kit attribute definition */\n attribute?: Maybe<CkAttributeDto>;\n /** Attribute name within the entity. */\n attributeName: Scalars['String']['output'];\n /** Value type of the attribute. */\n attributeValueType: AttributeValueTypeDto;\n /** Auto complete values for the attribute. */\n autoCompleteValues?: Maybe<Array<Maybe<Scalars['String']['output']>>>;\n /** Auto increment reference for the attribute. */\n autoIncrementReference?: Maybe<Scalars['String']['output']>;\n /** Construction kit attribute id. */\n ckAttributeId: CkAttributeIdDto;\n /** Defines if the attribute is optional. */\n isOptional: Scalars['Boolean']['output'];\n};\n\n/** A connection from an object to a list of objects of type `CkTypeAttributeDto`. */\nexport type CkTypeAttributeDtoConnectionDto = {\n __typename?: 'CkTypeAttributeDtoConnection';\n /** A list of all of the edges returned in the connection. */\n edges?: Maybe<Array<Maybe<CkTypeAttributeDtoEdgeDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<CkTypeAttributeDto>>>;\n /** Information to aid in pagination. */\n pageInfo: PageInfoDto;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `CkTypeAttributeDto`. */\nexport type CkTypeAttributeDtoEdgeDto = {\n __typename?: 'CkTypeAttributeDtoEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<CkTypeAttributeDto>;\n};\n\n/** A connection from an object to a list of objects of type `CkTypeDto`. */\nexport type CkTypeDtoConnectionDto = {\n __typename?: 'CkTypeDtoConnection';\n /** A list of all of the edges returned in the connection. */\n edges?: Maybe<Array<Maybe<CkTypeDtoEdgeDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<CkTypeDto>>>;\n /** Information to aid in pagination. */\n pageInfo: PageInfoDto;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `CkTypeDto`. */\nexport type CkTypeDtoEdgeDto = {\n __typename?: 'CkTypeDtoEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<CkTypeDto>;\n};\n\n/** A construction kit id of CkTypeId. */\nexport type CkTypeIdDto = {\n __typename?: 'CkTypeId';\n /** The full name of the model, e.g. 'System-1.0.3'. */\n fullName: Scalars['String']['output'];\n /** The semantic versioned full name of the construction kit type, e.g. 'System/Entity' or 'System-2/Entity'. */\n semanticVersionedFullName: Scalars['String']['output'];\n};\n\n/** Represents a possible column in a query result. */\nexport type CkTypeQueryColumnDto = {\n __typename?: 'CkTypeQueryColumn';\n /** Attribute path within the entity. */\n attributePath: Scalars['String']['output'];\n /** Value type of the attribute. */\n attributeValueType: AttributeValueTypeDto;\n};\n\n/** A connection from an object to a list of objects of type `CkTypeQueryColumnDto`. */\nexport type CkTypeQueryColumnDtoConnectionDto = {\n __typename?: 'CkTypeQueryColumnDtoConnection';\n /** A list of all of the edges returned in the connection. */\n edges?: Maybe<Array<Maybe<CkTypeQueryColumnDtoEdgeDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<CkTypeQueryColumnDto>>>;\n /** Information to aid in pagination. */\n pageInfo: PageInfoDto;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `CkTypeQueryColumnDto`. */\nexport type CkTypeQueryColumnDtoEdgeDto = {\n __typename?: 'CkTypeQueryColumnDtoEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<CkTypeQueryColumnDto>;\n};\n\n/** Construction Kit element mutations */\nexport type ConstructionKitMutationsDto = {\n __typename?: 'ConstructionKitMutations';\n enums?: Maybe<CkEnumMutationsDto>;\n};\n\n\n/** Construction Kit element mutations */\nexport type ConstructionKitMutationsEnumsArgsDto = {\n ckId?: InputMaybe<Scalars['String']['input']>;\n ckIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;\n};\n\nexport type ConstructionKitQueryDto = {\n __typename?: 'ConstructionKitQuery';\n associationRoles?: Maybe<CkAssociationRoleDtoConnectionDto>;\n attributes?: Maybe<CkAttributeDtoConnectionDto>;\n enums?: Maybe<CkEnumDtoConnectionDto>;\n models?: Maybe<CkModelDtoConnectionDto>;\n records?: Maybe<CkRecordDtoConnectionDto>;\n types?: Maybe<CkTypeDtoConnectionDto>;\n};\n\n\nexport type ConstructionKitQueryAssociationRolesArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n ckId?: InputMaybe<Scalars['String']['input']>;\n ckIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;\n ckModelIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtCkId?: InputMaybe<Scalars['String']['input']>;\n rtCkIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type ConstructionKitQueryAttributesArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n ckId?: InputMaybe<Scalars['String']['input']>;\n ckIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;\n ckModelIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtCkId?: InputMaybe<Scalars['String']['input']>;\n rtCkIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type ConstructionKitQueryEnumsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n ckId?: InputMaybe<Scalars['String']['input']>;\n ckIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;\n ckModelIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtCkId?: InputMaybe<Scalars['String']['input']>;\n rtCkIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type ConstructionKitQueryModelsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n ckId?: InputMaybe<Scalars['String']['input']>;\n ckIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type ConstructionKitQueryRecordsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n ckId?: InputMaybe<Scalars['String']['input']>;\n ckIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;\n ckModelIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtCkId?: InputMaybe<Scalars['String']['input']>;\n rtCkIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type ConstructionKitQueryTypesArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n ckId?: InputMaybe<Scalars['String']['input']>;\n ckIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;\n ckModelIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtCkId?: InputMaybe<Scalars['String']['input']>;\n rtCkIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** Defines possible delete strategies of a runtime type */\nexport enum DeleteStrategiesDto {\n ArchiveDto = 'ARCHIVE',\n EraseDto = 'ERASE'\n}\n\nexport type FieldFilterDto = {\n attributePath: Scalars['String']['input'];\n comparisonValue?: InputMaybe<Scalars['SimpleScalar']['input']>;\n operator: FieldFilterOperatorsDto;\n};\n\n/** Defines the operator of field compare */\nexport enum FieldFilterOperatorsDto {\n AnyEqDto = 'ANY_EQ',\n AnyLikeDto = 'ANY_LIKE',\n EqualsDto = 'EQUALS',\n GreaterEqualThanDto = 'GREATER_EQUAL_THAN',\n GreaterThanDto = 'GREATER_THAN',\n InDto = 'IN',\n LessEqualThanDto = 'LESS_EQUAL_THAN',\n LessThanDto = 'LESS_THAN',\n LikeDto = 'LIKE',\n MatchRegExDto = 'MATCH_REG_EX',\n NotEqualsDto = 'NOT_EQUALS',\n NotInDto = 'NOT_IN'\n}\n\nexport type FieldGroupByAggregationInputDto = {\n avgAttributePaths?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;\n countAttributePaths?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;\n groupByAttributePaths: Array<InputMaybe<Scalars['String']['input']>>;\n maxValueAttributePaths?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;\n minValueAttributePaths?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;\n /** When true, enum integer values in groupBy keys are resolved to their label names. Defaults to true. */\n resolveEnumValuesToNames?: InputMaybe<Scalars['Boolean']['input']>;\n sumAttributePaths?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;\n};\n\nexport type GlobalQueryOptionsDto = {\n includeArchivedEntities?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n/** Enum of graph directions */\nexport enum GraphDirectionDto {\n AnyDto = 'ANY',\n InboundDto = 'INBOUND',\n OutboundDto = 'OUTBOUND'\n}\n\n/** Meta information for large binaries */\nexport type LargeBinaryInfoDto = {\n __typename?: 'LargeBinaryInfo';\n /** Returns the id of binary */\n binaryId: Scalars['OctoObjectId']['output'];\n /** Returns the content type of the binary */\n contentType: Scalars['String']['output'];\n /** Returns the download link of the binary */\n downloadUri: Scalars['Uri']['output'];\n /** Returns the filename of the binary */\n filename: Scalars['String']['output'];\n /** Returns the size of the binary */\n size: Scalars['BigInt']['output'];\n};\n\n/** Enum of the availability states of models. */\nexport enum ModelStateDto {\n AvailableDto = 'AVAILABLE',\n ImportingDto = 'IMPORTING',\n ResolveFailedDto = 'RESOLVE_FAILED'\n}\n\n/** Enum of valid multiplicities for association roles */\nexport enum MultiplicitiesDto {\n NDto = 'N',\n OneDto = 'ONE',\n ZeroOrOneDto = 'ZERO_OR_ONE'\n}\n\nexport type NearGeospatialFilterDto = {\n attributeName: Scalars['String']['input'];\n maxDistance?: InputMaybe<Scalars['Float']['input']>;\n minDistance?: InputMaybe<Scalars['Float']['input']>;\n point: PointInputDto;\n};\n\nexport type OctoMutationDto = {\n __typename?: 'OctoMutation';\n constructionKit?: Maybe<ConstructionKitMutationsDto>;\n runtime?: Maybe<RuntimeDto>;\n};\n\nexport type OctoQueryDto = {\n __typename?: 'OctoQuery';\n constructionKit?: Maybe<ConstructionKitQueryDto>;\n runtime?: Maybe<RuntimeModelQueryDto>;\n};\n\n/** Runtime entities of construction kit type 'OctoSdkDemo-1.0.1/Customer-1' */\nexport type OctoSdkDemoCustomerDto = SystemEntityInterfaceDto & {\n __typename?: 'OctoSdkDemoCustomer';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n bankAccount?: Maybe<BasicBankAccountDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n contact: BasicContactDto;\n contractDocument?: Maybe<LargeBinaryInfoDto>;\n customerStatus: OctoSdkDemoCustomerStatusDto;\n dateOfBirth?: Maybe<Scalars['DateTime']['output']>;\n notes?: Maybe<Array<OctoSdkDemoCustomerNoteDto>>;\n owns?: Maybe<OctoSdkDemoOperatingFacility_OwnsUnionConnectionDto>;\n phoneNumberLandLine?: Maybe<Scalars['String']['output']>;\n phoneNumberMobile?: Maybe<Scalars['String']['output']>;\n profilePicture?: Maybe<Array<Maybe<Scalars['Byte']['output']>>>;\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n};\n\n\n/** Runtime entities of construction kit type 'OctoSdkDemo-1.0.1/Customer-1' */\nexport type OctoSdkDemoCustomerAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'OctoSdkDemo-1.0.1/Customer-1' */\nexport type OctoSdkDemoCustomerConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'OctoSdkDemo-1.0.1/Customer-1' */\nexport type OctoSdkDemoCustomerOwnsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'OctoSdkDemo-1.0.1/Customer-1' */\nexport type OctoSdkDemoCustomerRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'OctoSdkDemo-1.0.1/Customer-1' */\nexport type OctoSdkDemoCustomerRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'OctoSdkDemo-1.0.1/Customer-1' */\nexport type OctoSdkDemoCustomerTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `OctoSdkDemoCustomer`. */\nexport type OctoSdkDemoCustomerConnectionDto = {\n __typename?: 'OctoSdkDemoCustomerConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<OctoSdkDemoCustomerEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<OctoSdkDemoCustomerDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `OctoSdkDemoCustomer`. */\nexport type OctoSdkDemoCustomerEdgeDto = {\n __typename?: 'OctoSdkDemoCustomerEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<OctoSdkDemoCustomerDto>;\n};\n\nexport type OctoSdkDemoCustomerInputDto = {\n bankAccount?: InputMaybe<BasicBankAccountInputDto>;\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n contact?: InputMaybe<BasicContactInputDto>;\n contractDocument?: InputMaybe<Scalars['LargeBinary']['input']>;\n customerStatus?: InputMaybe<OctoSdkDemoCustomerStatusDto>;\n dateOfBirth?: InputMaybe<Scalars['DateTime']['input']>;\n notes?: InputMaybe<Array<InputMaybe<OctoSdkDemoCustomerNoteInputDto>>>;\n owns?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n phoneNumberLandLine?: InputMaybe<Scalars['String']['input']>;\n phoneNumberMobile?: InputMaybe<Scalars['String']['input']>;\n profilePicture?: InputMaybe<Array<InputMaybe<Scalars['Byte']['input']>>>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n};\n\nexport type OctoSdkDemoCustomerInputUpdateDto = {\n /** Item to update */\n item: OctoSdkDemoCustomerInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\nexport type OctoSdkDemoCustomerMutationsDto = {\n __typename?: 'OctoSdkDemoCustomerMutations';\n /** Creates new entities of type 'OctoSdkDemoCustomer'. */\n create?: Maybe<Array<Maybe<OctoSdkDemoCustomerDto>>>;\n /** Updates existing entity of type 'OctoSdkDemoCustomer'. */\n update?: Maybe<Array<Maybe<OctoSdkDemoCustomerDto>>>;\n};\n\n\nexport type OctoSdkDemoCustomerMutationsCreateArgsDto = {\n entities: Array<InputMaybe<OctoSdkDemoCustomerInputDto>>;\n};\n\n\nexport type OctoSdkDemoCustomerMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<OctoSdkDemoCustomerInputUpdateDto>>;\n};\n\n/** Runtime entities of construction kit record 'OctoSdkDemo/CustomerNote' */\nexport type OctoSdkDemoCustomerNoteDto = {\n __typename?: 'OctoSdkDemoCustomerNote';\n author?: Maybe<Scalars['String']['output']>;\n category?: Maybe<Scalars['String']['output']>;\n constructionKitType?: Maybe<CkTypeDto>;\n date: Scalars['DateTime']['output'];\n text: Scalars['String']['output'];\n};\n\nexport type OctoSdkDemoCustomerNoteInputDto = {\n author?: InputMaybe<Scalars['String']['input']>;\n category?: InputMaybe<Scalars['String']['input']>;\n date?: InputMaybe<Scalars['DateTime']['input']>;\n text?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Runtime entities of construction kit enum 'OctoSdkDemo/CustomerStatus' */\nexport enum OctoSdkDemoCustomerStatusDto {\n ActiveDto = 'ACTIVE',\n PendingDto = 'PENDING',\n SuspendedDto = 'SUSPENDED'\n}\n\nexport type OctoSdkDemoCustomerUpdateDto = {\n __typename?: 'OctoSdkDemoCustomerUpdate';\n /** The corresponding item */\n item?: Maybe<OctoSdkDemoCustomerDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type OctoSdkDemoCustomerUpdateMessageDto = {\n __typename?: 'OctoSdkDemoCustomerUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<OctoSdkDemoCustomerUpdateDto>>>;\n};\n\n/** Union of types derived from OctoSdkDemo/Customer for OwnedBy association */\nexport type OctoSdkDemoCustomer_OwnedByUnionDto = OctoSdkDemoCustomerDto;\n\n/** A connection to `OctoSdkDemoCustomer_OwnedByUnion`. */\nexport type OctoSdkDemoCustomer_OwnedByUnionConnectionDto = {\n __typename?: 'OctoSdkDemoCustomer_OwnedByUnionConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<OctoSdkDemoCustomer_OwnedByUnionEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<OctoSdkDemoCustomer_OwnedByUnionDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `OctoSdkDemoCustomer_OwnedByUnion`. */\nexport type OctoSdkDemoCustomer_OwnedByUnionEdgeDto = {\n __typename?: 'OctoSdkDemoCustomer_OwnedByUnionEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<OctoSdkDemoCustomer_OwnedByUnionDto>;\n};\n\n/** Runtime entities of construction kit type 'OctoSdkDemo-1.0.1/MeteringPoint-1' */\nexport type OctoSdkDemoMeteringPointDto = {\n __typename?: 'OctoSdkDemoMeteringPoint';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n children?: Maybe<BasicTreeNode_ChildrenUnionConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n dataTransmissionInterval?: Maybe<Scalars['Seconds']['output']>;\n description?: Maybe<Scalars['String']['output']>;\n meterReading: Scalars['Int']['output'];\n meteringPointNumber: Scalars['String']['output'];\n name: Scalars['String']['output'];\n networkOperator?: Maybe<OctoSdkDemoNetworkOperatorDto>;\n operatingStatus: OctoSdkDemoOperatingStatusDto;\n parent?: Maybe<BasicTree_ParentUnionConnectionDto>;\n relatesFrom?: Maybe<BasicAsset_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<BasicTreeNode_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n};\n\n\n/** Runtime entities of construction kit type 'OctoSdkDemo-1.0.1/MeteringPoint-1' */\nexport type OctoSdkDemoMeteringPointAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'OctoSdkDemo-1.0.1/MeteringPoint-1' */\nexport type OctoSdkDemoMeteringPointChildrenArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'OctoSdkDemo-1.0.1/MeteringPoint-1' */\nexport type OctoSdkDemoMeteringPointConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'OctoSdkDemo-1.0.1/MeteringPoint-1' */\nexport type OctoSdkDemoMeteringPointParentArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'OctoSdkDemo-1.0.1/MeteringPoint-1' */\nexport type OctoSdkDemoMeteringPointRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'OctoSdkDemo-1.0.1/MeteringPoint-1' */\nexport type OctoSdkDemoMeteringPointRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'OctoSdkDemo-1.0.1/MeteringPoint-1' */\nexport type OctoSdkDemoMeteringPointTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `OctoSdkDemoMeteringPoint`. */\nexport type OctoSdkDemoMeteringPointConnectionDto = {\n __typename?: 'OctoSdkDemoMeteringPointConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<OctoSdkDemoMeteringPointEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<OctoSdkDemoMeteringPointDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `OctoSdkDemoMeteringPoint`. */\nexport type OctoSdkDemoMeteringPointEdgeDto = {\n __typename?: 'OctoSdkDemoMeteringPointEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<OctoSdkDemoMeteringPointDto>;\n};\n\nexport type OctoSdkDemoMeteringPointInputDto = {\n children?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n dataTransmissionInterval?: InputMaybe<Scalars['Seconds']['input']>;\n description?: InputMaybe<Scalars['String']['input']>;\n meterReading?: InputMaybe<Scalars['Int']['input']>;\n meteringPointNumber?: InputMaybe<Scalars['String']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n networkOperator?: InputMaybe<OctoSdkDemoNetworkOperatorDto>;\n operatingStatus?: InputMaybe<OctoSdkDemoOperatingStatusDto>;\n parent?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n};\n\nexport type OctoSdkDemoMeteringPointInputUpdateDto = {\n /** Item to update */\n item: OctoSdkDemoMeteringPointInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\nexport type OctoSdkDemoMeteringPointMutationsDto = {\n __typename?: 'OctoSdkDemoMeteringPointMutations';\n /** Creates new entities of type 'OctoSdkDemoMeteringPoint'. */\n create?: Maybe<Array<Maybe<OctoSdkDemoMeteringPointDto>>>;\n /** Updates existing entity of type 'OctoSdkDemoMeteringPoint'. */\n update?: Maybe<Array<Maybe<OctoSdkDemoMeteringPointDto>>>;\n};\n\n\nexport type OctoSdkDemoMeteringPointMutationsCreateArgsDto = {\n entities: Array<InputMaybe<OctoSdkDemoMeteringPointInputDto>>;\n};\n\n\nexport type OctoSdkDemoMeteringPointMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<OctoSdkDemoMeteringPointInputUpdateDto>>;\n};\n\nexport type OctoSdkDemoMeteringPointUpdateDto = {\n __typename?: 'OctoSdkDemoMeteringPointUpdate';\n /** The corresponding item */\n item?: Maybe<OctoSdkDemoMeteringPointDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type OctoSdkDemoMeteringPointUpdateMessageDto = {\n __typename?: 'OctoSdkDemoMeteringPointUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<OctoSdkDemoMeteringPointUpdateDto>>>;\n};\n\n/** Runtime entities of construction kit enum 'OctoSdkDemo/NetworkOperator' */\nexport enum OctoSdkDemoNetworkOperatorDto {\n UnknownDto = 'UNKNOWN'\n}\n\n/** Runtime entities of construction kit type 'OctoSdkDemo-1.0.1/OperatingFacility-1' */\nexport type OctoSdkDemoOperatingFacilityDto = {\n __typename?: 'OctoSdkDemoOperatingFacility';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n children?: Maybe<BasicTreeNode_ChildrenUnionConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n description?: Maybe<Scalars['String']['output']>;\n name: Scalars['String']['output'];\n ownedBy?: Maybe<OctoSdkDemoCustomer_OwnedByUnionConnectionDto>;\n parent?: Maybe<BasicTree_ParentUnionConnectionDto>;\n relatesFrom?: Maybe<BasicAsset_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n};\n\n\n/** Runtime entities of construction kit type 'OctoSdkDemo-1.0.1/OperatingFacility-1' */\nexport type OctoSdkDemoOperatingFacilityAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'OctoSdkDemo-1.0.1/OperatingFacility-1' */\nexport type OctoSdkDemoOperatingFacilityChildrenArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'OctoSdkDemo-1.0.1/OperatingFacility-1' */\nexport type OctoSdkDemoOperatingFacilityConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'OctoSdkDemo-1.0.1/OperatingFacility-1' */\nexport type OctoSdkDemoOperatingFacilityOwnedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'OctoSdkDemo-1.0.1/OperatingFacility-1' */\nexport type OctoSdkDemoOperatingFacilityParentArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'OctoSdkDemo-1.0.1/OperatingFacility-1' */\nexport type OctoSdkDemoOperatingFacilityRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'OctoSdkDemo-1.0.1/OperatingFacility-1' */\nexport type OctoSdkDemoOperatingFacilityRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'OctoSdkDemo-1.0.1/OperatingFacility-1' */\nexport type OctoSdkDemoOperatingFacilityTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `OctoSdkDemoOperatingFacility`. */\nexport type OctoSdkDemoOperatingFacilityConnectionDto = {\n __typename?: 'OctoSdkDemoOperatingFacilityConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<OctoSdkDemoOperatingFacilityEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<OctoSdkDemoOperatingFacilityDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `OctoSdkDemoOperatingFacility`. */\nexport type OctoSdkDemoOperatingFacilityEdgeDto = {\n __typename?: 'OctoSdkDemoOperatingFacilityEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<OctoSdkDemoOperatingFacilityDto>;\n};\n\nexport type OctoSdkDemoOperatingFacilityInputDto = {\n children?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n description?: InputMaybe<Scalars['String']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n ownedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n parent?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n};\n\nexport type OctoSdkDemoOperatingFacilityInputUpdateDto = {\n /** Item to update */\n item: OctoSdkDemoOperatingFacilityInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\nexport type OctoSdkDemoOperatingFacilityMutationsDto = {\n __typename?: 'OctoSdkDemoOperatingFacilityMutations';\n /** Creates new entities of type 'OctoSdkDemoOperatingFacility'. */\n create?: Maybe<Array<Maybe<OctoSdkDemoOperatingFacilityDto>>>;\n /** Updates existing entity of type 'OctoSdkDemoOperatingFacility'. */\n update?: Maybe<Array<Maybe<OctoSdkDemoOperatingFacilityDto>>>;\n};\n\n\nexport type OctoSdkDemoOperatingFacilityMutationsCreateArgsDto = {\n entities: Array<InputMaybe<OctoSdkDemoOperatingFacilityInputDto>>;\n};\n\n\nexport type OctoSdkDemoOperatingFacilityMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<OctoSdkDemoOperatingFacilityInputUpdateDto>>;\n};\n\nexport type OctoSdkDemoOperatingFacilityUpdateDto = {\n __typename?: 'OctoSdkDemoOperatingFacilityUpdate';\n /** The corresponding item */\n item?: Maybe<OctoSdkDemoOperatingFacilityDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type OctoSdkDemoOperatingFacilityUpdateMessageDto = {\n __typename?: 'OctoSdkDemoOperatingFacilityUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<OctoSdkDemoOperatingFacilityUpdateDto>>>;\n};\n\n/** Union of types derived from OctoSdkDemo/OperatingFacility for Owns association */\nexport type OctoSdkDemoOperatingFacility_OwnsUnionDto = OctoSdkDemoOperatingFacilityDto;\n\n/** A connection to `OctoSdkDemoOperatingFacility_OwnsUnion`. */\nexport type OctoSdkDemoOperatingFacility_OwnsUnionConnectionDto = {\n __typename?: 'OctoSdkDemoOperatingFacility_OwnsUnionConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<OctoSdkDemoOperatingFacility_OwnsUnionEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<OctoSdkDemoOperatingFacility_OwnsUnionDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `OctoSdkDemoOperatingFacility_OwnsUnion`. */\nexport type OctoSdkDemoOperatingFacility_OwnsUnionEdgeDto = {\n __typename?: 'OctoSdkDemoOperatingFacility_OwnsUnionEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<OctoSdkDemoOperatingFacility_OwnsUnionDto>;\n};\n\n/** Runtime entities of construction kit enum 'OctoSdkDemo/OperatingStatus' */\nexport enum OctoSdkDemoOperatingStatusDto {\n MaintenanceDto = 'MAINTENANCE',\n OkDto = 'OK',\n UnknownDto = 'UNKNOWN'\n}\n\nexport type OctoSubscriptionsDto = {\n __typename?: 'OctoSubscriptions';\n basicAssetEvents?: Maybe<BasicAssetUpdateMessageDto>;\n basicCityEvents?: Maybe<BasicCityUpdateMessageDto>;\n basicCountryEvents?: Maybe<BasicCountryUpdateMessageDto>;\n basicDistrictEvents?: Maybe<BasicDistrictUpdateMessageDto>;\n basicDocumentEvents?: Maybe<BasicDocumentUpdateMessageDto>;\n basicEmployeeEvents?: Maybe<BasicEmployeeUpdateMessageDto>;\n basicNamedEntityEvents?: Maybe<BasicNamedEntityUpdateMessageDto>;\n basicStateEvents?: Maybe<BasicStateUpdateMessageDto>;\n basicTreeEvents?: Maybe<BasicTreeUpdateMessageDto>;\n basicTreeNodeEvents?: Maybe<BasicTreeNodeUpdateMessageDto>;\n octoSdkDemoCustomerEvents?: Maybe<OctoSdkDemoCustomerUpdateMessageDto>;\n octoSdkDemoMeteringPointEvents?: Maybe<OctoSdkDemoMeteringPointUpdateMessageDto>;\n octoSdkDemoOperatingFacilityEvents?: Maybe<OctoSdkDemoOperatingFacilityUpdateMessageDto>;\n systemAggregationRtQueryEvents?: Maybe<SystemAggregationRtQueryUpdateMessageDto>;\n systemAutoIncrementEvents?: Maybe<SystemAutoIncrementUpdateMessageDto>;\n systemBotAttributeAggregateConfigurationEvents?: Maybe<SystemBotAttributeAggregateConfigurationUpdateMessageDto>;\n systemBotFixupEvents?: Maybe<SystemBotFixupUpdateMessageDto>;\n systemBotServiceHookEvents?: Maybe<SystemBotServiceHookUpdateMessageDto>;\n systemCommunicationAdapterEvents?: Maybe<SystemCommunicationAdapterUpdateMessageDto>;\n systemCommunicationDataPipelineEvents?: Maybe<SystemCommunicationDataPipelineUpdateMessageDto>;\n systemCommunicationDataPipelineTriggerEvents?: Maybe<SystemCommunicationDataPipelineTriggerUpdateMessageDto>;\n systemCommunicationDeployableEntityEvents?: Maybe<SystemCommunicationDeployableEntityUpdateMessageDto>;\n systemCommunicationEMailSenderConfigurationEvents?: Maybe<SystemCommunicationEMailSenderConfigurationUpdateMessageDto>;\n systemCommunicationEdgeAdapterEvents?: Maybe<SystemCommunicationEdgeAdapterUpdateMessageDto>;\n systemCommunicationEdgePipelineEvents?: Maybe<SystemCommunicationEdgePipelineUpdateMessageDto>;\n systemCommunicationEnergyCommunityConfigurationEvents?: Maybe<SystemCommunicationEnergyCommunityConfigurationUpdateMessageDto>;\n systemCommunicationMeshAdapterEvents?: Maybe<SystemCommunicationMeshAdapterUpdateMessageDto>;\n systemCommunicationMeshPipelineEvents?: Maybe<SystemCommunicationMeshPipelineUpdateMessageDto>;\n systemCommunicationPipelineEvents?: Maybe<SystemCommunicationPipelineUpdateMessageDto>;\n systemCommunicationPipelineExecutionEvents?: Maybe<SystemCommunicationPipelineExecutionUpdateMessageDto>;\n systemCommunicationPipelineStatisticsEvents?: Maybe<SystemCommunicationPipelineStatisticsUpdateMessageDto>;\n systemCommunicationPoolEvents?: Maybe<SystemCommunicationPoolUpdateMessageDto>;\n systemCommunicationSapConfigurationEvents?: Maybe<SystemCommunicationSapConfigurationUpdateMessageDto>;\n systemCommunicationTagEvents?: Maybe<SystemCommunicationTagUpdateMessageDto>;\n systemConfigurationEvents?: Maybe<SystemConfigurationUpdateMessageDto>;\n systemEntityEvents?: Maybe<SystemEntityUpdateMessageDto>;\n systemGroupingAggregationRtQueryEvents?: Maybe<SystemGroupingAggregationRtQueryUpdateMessageDto>;\n systemIdentityApiResourceEvents?: Maybe<SystemIdentityApiResourceUpdateMessageDto>;\n systemIdentityApiScopeEvents?: Maybe<SystemIdentityApiScopeUpdateMessageDto>;\n systemIdentityAzureEntraIdIdentityProviderEvents?: Maybe<SystemIdentityAzureEntraIdIdentityProviderUpdateMessageDto>;\n systemIdentityClientEvents?: Maybe<SystemIdentityClientUpdateMessageDto>;\n systemIdentityFacebookIdentityProviderEvents?: Maybe<SystemIdentityFacebookIdentityProviderUpdateMessageDto>;\n systemIdentityGoogleIdentityProviderEvents?: Maybe<SystemIdentityGoogleIdentityProviderUpdateMessageDto>;\n systemIdentityIdentityProviderEvents?: Maybe<SystemIdentityIdentityProviderUpdateMessageDto>;\n systemIdentityIdentityResourceEvents?: Maybe<SystemIdentityIdentityResourceUpdateMessageDto>;\n systemIdentityMailNotificationConfigurationEvents?: Maybe<SystemIdentityMailNotificationConfigurationUpdateMessageDto>;\n systemIdentityMicrosoftAdIdentityProviderEvents?: Maybe<SystemIdentityMicrosoftAdIdentityProviderUpdateMessageDto>;\n systemIdentityMicrosoftIdentityProviderEvents?: Maybe<SystemIdentityMicrosoftIdentityProviderUpdateMessageDto>;\n systemIdentityOpenLdapIdentityProviderEvents?: Maybe<SystemIdentityOpenLdapIdentityProviderUpdateMessageDto>;\n systemIdentityPermissionEvents?: Maybe<SystemIdentityPermissionUpdateMessageDto>;\n systemIdentityPermissionRoleEvents?: Maybe<SystemIdentityPermissionRoleUpdateMessageDto>;\n systemIdentityPersistedGrantEvents?: Maybe<SystemIdentityPersistedGrantUpdateMessageDto>;\n systemIdentityResourceEvents?: Maybe<SystemIdentityResourceUpdateMessageDto>;\n systemIdentityRoleEvents?: Maybe<SystemIdentityRoleUpdateMessageDto>;\n systemIdentityUserEvents?: Maybe<SystemIdentityUserUpdateMessageDto>;\n systemMigrationHistoryEvents?: Maybe<SystemMigrationHistoryUpdateMessageDto>;\n systemNotificationCssTemplateConfigurationEvents?: Maybe<SystemNotificationCssTemplateConfigurationUpdateMessageDto>;\n systemNotificationEventEvents?: Maybe<SystemNotificationEventUpdateMessageDto>;\n systemNotificationNotificationTemplateEvents?: Maybe<SystemNotificationNotificationTemplateUpdateMessageDto>;\n systemNotificationStatefulEventEvents?: Maybe<SystemNotificationStatefulEventUpdateMessageDto>;\n systemPersistentQueryEvents?: Maybe<SystemPersistentQueryUpdateMessageDto>;\n systemQueryEvents?: Maybe<SystemQueryUpdateMessageDto>;\n systemReportingConnectionInfoEvents?: Maybe<SystemReportingConnectionInfoUpdateMessageDto>;\n systemReportingFileSystemContainerEvents?: Maybe<SystemReportingFileSystemContainerUpdateMessageDto>;\n systemReportingFileSystemEntityEvents?: Maybe<SystemReportingFileSystemEntityUpdateMessageDto>;\n systemReportingFileSystemItemEvents?: Maybe<SystemReportingFileSystemItemUpdateMessageDto>;\n systemReportingFolderEvents?: Maybe<SystemReportingFolderUpdateMessageDto>;\n systemReportingFolderRootEvents?: Maybe<SystemReportingFolderRootUpdateMessageDto>;\n systemSimpleRtQueryEvents?: Maybe<SystemSimpleRtQueryUpdateMessageDto>;\n systemTenantConfigurationEvents?: Maybe<SystemTenantConfigurationUpdateMessageDto>;\n systemTenantEvents?: Maybe<SystemTenantUpdateMessageDto>;\n systemTenantModeConfigurationEvents?: Maybe<SystemTenantModeConfigurationUpdateMessageDto>;\n systemUIDashboardEvents?: Maybe<SystemUiDashboardUpdateMessageDto>;\n systemUIDashboardWidgetEvents?: Maybe<SystemUiDashboardWidgetUpdateMessageDto>;\n systemUIPageEvents?: Maybe<SystemUiPageUpdateMessageDto>;\n systemUIProcessDiagramEvents?: Maybe<SystemUiProcessDiagramUpdateMessageDto>;\n systemUIStudioRootEvents?: Maybe<SystemUiStudioRootUpdateMessageDto>;\n systemUIStudioTreeItemEvents?: Maybe<SystemUiStudioTreeItemUpdateMessageDto>;\n systemUISymbolDefinitionEvents?: Maybe<SystemUiSymbolDefinitionUpdateMessageDto>;\n systemUISymbolLibraryEvents?: Maybe<SystemUiSymbolLibraryUpdateMessageDto>;\n systemUIUIElementEvents?: Maybe<SystemUiuiElementUpdateMessageDto>;\n};\n\n\nexport type OctoSubscriptionsBasicAssetEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsBasicCityEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsBasicCountryEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsBasicDistrictEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsBasicDocumentEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsBasicEmployeeEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsBasicNamedEntityEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsBasicStateEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsBasicTreeEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsBasicTreeNodeEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsOctoSdkDemoCustomerEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsOctoSdkDemoMeteringPointEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsOctoSdkDemoOperatingFacilityEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemAggregationRtQueryEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemAutoIncrementEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemBotAttributeAggregateConfigurationEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemBotFixupEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemBotServiceHookEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemCommunicationAdapterEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemCommunicationDataPipelineEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemCommunicationDataPipelineTriggerEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemCommunicationDeployableEntityEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemCommunicationEMailSenderConfigurationEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemCommunicationEdgeAdapterEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemCommunicationEdgePipelineEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemCommunicationEnergyCommunityConfigurationEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemCommunicationMeshAdapterEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemCommunicationMeshPipelineEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemCommunicationPipelineEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemCommunicationPipelineExecutionEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemCommunicationPipelineStatisticsEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemCommunicationPoolEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemCommunicationSapConfigurationEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemCommunicationTagEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemConfigurationEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemEntityEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemGroupingAggregationRtQueryEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemIdentityApiResourceEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemIdentityApiScopeEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemIdentityAzureEntraIdIdentityProviderEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemIdentityClientEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemIdentityFacebookIdentityProviderEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemIdentityGoogleIdentityProviderEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemIdentityIdentityProviderEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemIdentityIdentityResourceEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemIdentityMailNotificationConfigurationEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemIdentityMicrosoftAdIdentityProviderEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemIdentityMicrosoftIdentityProviderEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemIdentityOpenLdapIdentityProviderEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemIdentityPermissionEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemIdentityPermissionRoleEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemIdentityPersistedGrantEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemIdentityResourceEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemIdentityRoleEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemIdentityUserEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemMigrationHistoryEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemNotificationCssTemplateConfigurationEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemNotificationEventEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemNotificationNotificationTemplateEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemNotificationStatefulEventEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemPersistentQueryEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemQueryEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemReportingConnectionInfoEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemReportingFileSystemContainerEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemReportingFileSystemEntityEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemReportingFileSystemItemEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemReportingFolderEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemReportingFolderRootEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemSimpleRtQueryEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemTenantConfigurationEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemTenantEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemTenantModeConfigurationEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemUiDashboardEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemUiDashboardWidgetEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemUiPageEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemUiProcessDiagramEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemUiStudioRootEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemUiStudioTreeItemEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemUiSymbolDefinitionEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemUiSymbolLibraryEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n\nexport type OctoSubscriptionsSystemUiuiElementEventsArgsDto = {\n beforeFieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n updateTypes: Array<InputMaybe<UpdateTypeDto>>;\n};\n\n/** Information about pagination in a connection. */\nexport type PageInfoDto = {\n __typename?: 'PageInfo';\n /** When paginating forwards, the cursor to continue. */\n endCursor?: Maybe<Scalars['String']['output']>;\n /** When paginating forwards, are there more items? */\n hasNextPage: Scalars['Boolean']['output'];\n /** When paginating backwards, are there more items? */\n hasPreviousPage: Scalars['Boolean']['output'];\n /** When paginating backwards, the cursor to continue. */\n startCursor?: Maybe<Scalars['String']['output']>;\n};\n\nexport type PointInputDto = {\n coordinates: PositionInputDto;\n};\n\nexport type PositionInputDto = {\n latitude: Scalars['Float']['input'];\n longitude: Scalars['Float']['input'];\n};\n\n/** Aggregation query result of items */\nexport type QueryAggregationResultDto = {\n __typename?: 'QueryAggregationResult';\n /** The average value of the given attribute paths. */\n avgStatistics?: Maybe<Array<Maybe<StatisticsDto>>>;\n /** The count of entities in the group. */\n count: Scalars['Int']['output'];\n /** The count of value of the given attribute paths that are not null. */\n countStatistics?: Maybe<Array<Maybe<StatisticsDto>>>;\n /** The grouping input for the aggregation operation. */\n groupBy?: Maybe<Array<FieldAggregationDto>>;\n /** The maximum value of the given attribute paths. */\n maxStatistics?: Maybe<Array<Maybe<StatisticsDto>>>;\n /** The minimum value of the given attribute paths. */\n minStatistics?: Maybe<Array<Maybe<StatisticsDto>>>;\n /** The sum value of the given attribute paths. */\n sumStatistics?: Maybe<Array<Maybe<StatisticsDto>>>;\n};\n\n/** A connection from an object to a list of objects of type `QueryAggregationResult`. */\nexport type QueryAggregationResultConnectionDto = {\n __typename?: 'QueryAggregationResultConnection';\n /** A list of all of the edges returned in the connection. */\n edges?: Maybe<Array<Maybe<QueryAggregationResultEdgeDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<QueryAggregationResultDto>>;\n /** Information to aid in pagination. */\n pageInfo: PageInfoDto;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `QueryAggregationResult`. */\nexport type QueryAggregationResultEdgeDto = {\n __typename?: 'QueryAggregationResultEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node: QueryAggregationResultDto;\n};\n\nexport type ResultAggregationInputDto = {\n avgAttributePaths?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;\n countAttributePaths?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;\n groupBy?: InputMaybe<FieldGroupByAggregationInputDto>;\n maxValueAttributePaths?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;\n minValueAttributePaths?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;\n sumAttributePaths?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;\n};\n\n/** Represents a row within a runtime query execution */\nexport type RtAggregationQueryRowDto = RtQueryRowDto & {\n __typename?: 'RtAggregationQueryRow';\n cells?: Maybe<RtQueryCellDtoConnectionDto>;\n ckTypeId?: Maybe<Scalars['RtCkTypeId']['output']>;\n};\n\n\n/** Represents a row within a runtime query execution */\nexport type RtAggregationQueryRowCellsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n attributePaths?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n resolveEnumValuesToNames?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n/** A runtime association type of OctoMesh */\nexport type RtAssociationDto = {\n __typename?: 'RtAssociation';\n attributes?: Maybe<RtEntityAttributeDtoConnectionDto>;\n ckAssociationRoleId: Scalars['RtCkAssociationRoleId']['output'];\n originCkTypeId: Scalars['RtCkTypeId']['output'];\n originRtId: Scalars['OctoObjectId']['output'];\n targetCkTypeId: Scalars['RtCkTypeId']['output'];\n targetRtId: Scalars['OctoObjectId']['output'];\n};\n\n\n/** A runtime association type of OctoMesh */\nexport type RtAssociationAttributesArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n attributeNames?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n};\n\n/** A connection from an object to a list of objects of type `RtAssociationDto`. */\nexport type RtAssociationDtoConnectionDto = {\n __typename?: 'RtAssociationDtoConnection';\n /** A list of all of the edges returned in the connection. */\n edges?: Maybe<Array<Maybe<RtAssociationDtoEdgeDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<RtAssociationDto>>>;\n /** Information to aid in pagination. */\n pageInfo: PageInfoDto;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `RtAssociationDto`. */\nexport type RtAssociationDtoEdgeDto = {\n __typename?: 'RtAssociationDtoEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<RtAssociationDto>;\n};\n\n/** Input field for associations */\nexport type RtAssociationInputDto = {\n /** Type of modification. */\n modOption?: InputMaybe<AssociationModOptionsDto>;\n /** Runtime ID of the target entity */\n target: RtEntityIdDto;\n};\n\n/** A runtime entity type of OctoMesh */\nexport type RtEntityDto = {\n __typename?: 'RtEntity';\n /** A list of associations of this entity. The association role id is used to filter the associations. */\n associations?: Maybe<RtEntityGenericAssociationDto>;\n attributes?: Maybe<RtEntityAttributeDtoConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n};\n\n\n/** A runtime entity type of OctoMesh */\nexport type RtEntityAttributesArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n attributeNames?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n resolveEnumValuesToNames?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n/** Input for modifying associations on a runtime entity */\nexport type RtEntityAssociationInputDto = {\n /** Name of the association role or navigation property */\n roleName: Scalars['String']['input'];\n /** List of target entities to associate */\n targets: Array<InputMaybe<RtAssociationInputDto>>;\n};\n\n/** Attribute of a runtime entity */\nexport type RtEntityAttributeDto = {\n __typename?: 'RtEntityAttribute';\n /** Attribute name within the entity. */\n attributeName?: Maybe<Scalars['String']['output']>;\n /** Value of a scalar attribute. */\n value?: Maybe<Scalars['SimpleScalar']['output']>;\n};\n\n/** A connection from an object to a list of objects of type `RtEntityAttributeDto`. */\nexport type RtEntityAttributeDtoConnectionDto = {\n __typename?: 'RtEntityAttributeDtoConnection';\n /** A list of all of the edges returned in the connection. */\n edges?: Maybe<Array<Maybe<RtEntityAttributeDtoEdgeDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<RtEntityAttributeDto>>>;\n /** Information to aid in pagination. */\n pageInfo: PageInfoDto;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `RtEntityAttributeDto`. */\nexport type RtEntityAttributeDtoEdgeDto = {\n __typename?: 'RtEntityAttributeDtoEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<RtEntityAttributeDto>;\n};\n\n/** Attribute of a runtime entity */\nexport type RtEntityAttributeInputDto = {\n /** Attribute name within the entity. */\n attributeName?: InputMaybe<Scalars['String']['input']>;\n /** Value of a scalar attribute. */\n value?: InputMaybe<Scalars['SimpleScalar']['input']>;\n};\n\n/** A runtime entity generic association type of OctoMesh */\nexport type RtEntityGenericAssociationDto = {\n __typename?: 'RtEntityGenericAssociation';\n definitions?: Maybe<RtAssociationDtoConnectionDto>;\n targets?: Maybe<RtEntityGenericDtoConnectionDto>;\n};\n\n\n/** A runtime entity generic association type of OctoMesh */\nexport type RtEntityGenericAssociationDefinitionsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n direction: GraphDirectionDto;\n first?: InputMaybe<Scalars['Int']['input']>;\n relatedRtCkId?: InputMaybe<Scalars['RtCkTypeId']['input']>;\n relatedRtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n roleId?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** A runtime entity generic association type of OctoMesh */\nexport type RtEntityGenericAssociationTargetsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection from an object to a list of objects of type `RtEntityGenericDto`. */\nexport type RtEntityGenericDtoConnectionDto = {\n __typename?: 'RtEntityGenericDtoConnection';\n /** A list of all of the edges returned in the connection. */\n edges?: Maybe<Array<Maybe<RtEntityGenericDtoEdgeDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<RtEntityDto>>>;\n /** Information to aid in pagination. */\n pageInfo: PageInfoDto;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `RtEntityGenericDto`. */\nexport type RtEntityGenericDtoEdgeDto = {\n __typename?: 'RtEntityGenericDtoEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<RtEntityDto>;\n};\n\n/** Id information consists of CkTypeId and RtId */\nexport type RtEntityIdDto = {\n /** Construction kit type id of the object. */\n ckTypeId: Scalars['RtCkTypeId']['input'];\n /** Unique id of the object. */\n rtId: Scalars['OctoObjectId']['input'];\n};\n\nexport type RtEntityInputDto = {\n /** Associations to create or modify on this entity */\n associations?: InputMaybe<Array<InputMaybe<RtEntityAssociationInputDto>>>;\n attributes: Array<InputMaybe<RtEntityAttributeInputDto>>;\n ckTypeId: Scalars['RtCkTypeId']['input'];\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type RtEntityMutationsDto = {\n __typename?: 'RtEntityMutations';\n /** Creates new runtime entities generically. */\n create?: Maybe<Array<Maybe<RtEntityDto>>>;\n /** Mutation to delete runtime entities. */\n delete?: Maybe<Scalars['Boolean']['output']>;\n /** Updates existing runtime entities generically. */\n update?: Maybe<Array<Maybe<RtEntityDto>>>;\n};\n\n\nexport type RtEntityMutationsCreateArgsDto = {\n entities: Array<InputMaybe<RtEntityInputDto>>;\n};\n\n\nexport type RtEntityMutationsDeleteArgsDto = {\n entities: Array<InputMaybe<RtEntityIdDto>>;\n options?: InputMaybe<DeleteStrategiesDto>;\n};\n\n\nexport type RtEntityMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<RtEntityUpdateDto>>;\n};\n\nexport type RtEntityUpdateDto = {\n /** Item to update */\n item?: InputMaybe<RtEntityInputDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\n/** Represents a row within a runtime query execution */\nexport type RtGroupingAggregationQueryRowDto = RtQueryRowDto & {\n __typename?: 'RtGroupingAggregationQueryRow';\n cells?: Maybe<RtQueryCellDtoConnectionDto>;\n ckTypeId?: Maybe<Scalars['RtCkTypeId']['output']>;\n};\n\n\n/** Represents a row within a runtime query execution */\nexport type RtGroupingAggregationQueryRowCellsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n attributePaths?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n resolveEnumValuesToNames?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n/** Represents a runtime query exection. */\nexport type RtQueryDto = {\n __typename?: 'RtQuery';\n aggregations?: Maybe<QueryAggregationResultConnectionDto>;\n associatedCkTypeId: Scalars['RtCkTypeId']['output'];\n columns: Array<RtQueryColumnDto>;\n queryRtId: Scalars['OctoObjectId']['output'];\n rows?: Maybe<RtQueryRowDtoConnectionDto>;\n};\n\n\n/** Represents a runtime query exection. */\nexport type RtQueryAggregationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations: ResultAggregationInputDto;\n first?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Represents a runtime query exection. */\nexport type RtQueryRowsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** Represents a cell of a row within a runtime query execution. */\nexport type RtQueryCellDto = {\n __typename?: 'RtQueryCell';\n /** Path of the attribute within an entity. */\n attributePath: Scalars['String']['output'];\n /** Value of the cell. */\n value?: Maybe<Scalars['SimpleScalar']['output']>;\n};\n\n/** A connection from an object to a list of objects of type `RtQueryCellDto`. */\nexport type RtQueryCellDtoConnectionDto = {\n __typename?: 'RtQueryCellDtoConnection';\n /** A list of all of the edges returned in the connection. */\n edges?: Maybe<Array<Maybe<RtQueryCellDtoEdgeDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<RtQueryCellDto>>;\n /** Information to aid in pagination. */\n pageInfo: PageInfoDto;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `RtQueryCellDto`. */\nexport type RtQueryCellDtoEdgeDto = {\n __typename?: 'RtQueryCellDtoEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node: RtQueryCellDto;\n};\n\n/** Represents the input for a cell a row within a runtime query. */\nexport type RtQueryCellInputDto = {\n /** Path of the attribute within an entity. */\n attributePath?: InputMaybe<Scalars['String']['input']>;\n /** Value of the cell. */\n value?: InputMaybe<Scalars['SimpleScalar']['input']>;\n};\n\n/** Represents a column within a query */\nexport type RtQueryColumnDto = {\n __typename?: 'RtQueryColumn';\n aggregationType?: Maybe<AggregationTypesDto>;\n attributePath?: Maybe<Scalars['String']['output']>;\n attributeValueType?: Maybe<AttributeValueTypeDto>;\n};\n\nexport type RtQueryColumnInputDto = {\n aggregationType: AggregationInputTypesDto;\n attributePath: Scalars['String']['input'];\n};\n\n/** A connection from an object to a list of objects of type `RtQueryDto`. */\nexport type RtQueryDtoConnectionDto = {\n __typename?: 'RtQueryDtoConnection';\n /** A list of all of the edges returned in the connection. */\n edges?: Maybe<Array<Maybe<RtQueryDtoEdgeDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<RtQueryDto>>;\n /** Information to aid in pagination. */\n pageInfo: PageInfoDto;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `RtQueryDto`. */\nexport type RtQueryDtoEdgeDto = {\n __typename?: 'RtQueryDtoEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node: RtQueryDto;\n};\n\nexport type RtQueryMutationsDto = {\n __typename?: 'RtQueryMutations';\n /** Create entities of a runtime query. */\n create?: Maybe<Array<RtQueryRowDto>>;\n /** Deletes entities of a runtime query. */\n delete?: Maybe<Scalars['Boolean']['output']>;\n /** Updates entities of a runtime query. */\n update?: Maybe<Array<RtQueryRowDto>>;\n};\n\n\nexport type RtQueryMutationsCreateArgsDto = {\n entities: Array<RtQueryRowInputDto>;\n};\n\n\nexport type RtQueryMutationsDeleteArgsDto = {\n entities: Array<RtEntityIdDto>;\n};\n\n\nexport type RtQueryMutationsUpdateArgsDto = {\n entities: Array<RtQueryRowUpdateDto>;\n};\n\n/** Represents a row within a runtime query execution */\nexport type RtQueryRowDto = {\n cells?: Maybe<RtQueryCellDtoConnectionDto>;\n ckTypeId?: Maybe<Scalars['RtCkTypeId']['output']>;\n};\n\n\n/** Represents a row within a runtime query execution */\nexport type RtQueryRowCellsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n attributePaths?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n resolveEnumValuesToNames?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n/** A connection from an object to a list of objects of type `RtQueryRowDto`. */\nexport type RtQueryRowDtoConnectionDto = {\n __typename?: 'RtQueryRowDtoConnection';\n /** A list of all of the edges returned in the connection. */\n edges?: Maybe<Array<Maybe<RtQueryRowDtoEdgeDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<RtQueryRowDto>>;\n /** Information to aid in pagination. */\n pageInfo: PageInfoDto;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `RtQueryRowDto`. */\nexport type RtQueryRowDtoEdgeDto = {\n __typename?: 'RtQueryRowDtoEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node: RtQueryRowDto;\n};\n\nexport type RtQueryRowInputDto = {\n cells: Array<InputMaybe<RtQueryCellInputDto>>;\n ckTypeId: Scalars['RtCkTypeId']['input'];\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type RtQueryRowUpdateDto = {\n /** Row as input to be updated within the query. */\n item?: InputMaybe<RtQueryRowInputDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\n/** Represents a row within a runtime query execution */\nexport type RtSimpleQueryRowDto = RtQueryRowDto & {\n __typename?: 'RtSimpleQueryRow';\n cells?: Maybe<RtQueryCellDtoConnectionDto>;\n ckTypeId?: Maybe<Scalars['RtCkTypeId']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId?: Maybe<Scalars['OctoObjectId']['output']>;\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n};\n\n\n/** Represents a row within a runtime query execution */\nexport type RtSimpleQueryRowCellsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n attributePaths?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n resolveEnumValuesToNames?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\nexport type RtTransientDto = {\n __typename?: 'RtTransient';\n aggregation?: Maybe<RtTransientQueryDtoConnectionDto>;\n groupingAggregation?: Maybe<RtTransientQueryDtoConnectionDto>;\n simple?: Maybe<RtTransientQueryDtoConnectionDto>;\n};\n\n\nexport type RtTransientAggregationArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n ckId: Scalars['String']['input'];\n columnPaths: Array<RtQueryColumnInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RtTransientGroupingAggregationArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n ckId: Scalars['String']['input'];\n columnPaths: Array<RtQueryColumnInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n groupByColumnPaths: Array<Scalars['String']['input']>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n};\n\n\nexport type RtTransientSimpleArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n ckId: Scalars['String']['input'];\n columnPaths: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** Represents a runtime query exection. */\nexport type RtTransientQueryDto = {\n __typename?: 'RtTransientQuery';\n aggregations?: Maybe<QueryAggregationResultConnectionDto>;\n associatedCkTypeId: Scalars['RtCkTypeId']['output'];\n columns: Array<RtQueryColumnDto>;\n rows?: Maybe<RtQueryRowDtoConnectionDto>;\n};\n\n\n/** Represents a runtime query exection. */\nexport type RtTransientQueryAggregationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations: ResultAggregationInputDto;\n first?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Represents a runtime query exection. */\nexport type RtTransientQueryRowsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n};\n\n/** A connection from an object to a list of objects of type `RtTransientQueryDto`. */\nexport type RtTransientQueryDtoConnectionDto = {\n __typename?: 'RtTransientQueryDtoConnection';\n /** A list of all of the edges returned in the connection. */\n edges?: Maybe<Array<Maybe<RtTransientQueryDtoEdgeDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<RtTransientQueryDto>>;\n /** Information to aid in pagination. */\n pageInfo: PageInfoDto;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `RtTransientQueryDto`. */\nexport type RtTransientQueryDtoEdgeDto = {\n __typename?: 'RtTransientQueryDtoEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node: RtTransientQueryDto;\n};\n\nexport type RuntimeDto = {\n __typename?: 'Runtime';\n /** Mutation for entities of type 'BasicAsset'. */\n basicAssets?: Maybe<BasicAssetMutationsDto>;\n /** Mutation for entities of type 'BasicCity'. */\n basicCitys?: Maybe<BasicCityMutationsDto>;\n /** Mutation for entities of type 'BasicCountry'. */\n basicCountrys?: Maybe<BasicCountryMutationsDto>;\n /** Mutation for entities of type 'BasicDistrict'. */\n basicDistricts?: Maybe<BasicDistrictMutationsDto>;\n /** Mutation for entities of type 'BasicEmployee'. */\n basicEmployees?: Maybe<BasicEmployeeMutationsDto>;\n /** Mutation for entities of type 'BasicState'. */\n basicStates?: Maybe<BasicStateMutationsDto>;\n /** Mutation for entities of type 'BasicTreeNode'. */\n basicTreeNodes?: Maybe<BasicTreeNodeMutationsDto>;\n /** Mutation for entities of type 'BasicTree'. */\n basicTrees?: Maybe<BasicTreeMutationsDto>;\n /** Mutation for entities of type 'OctoSdkDemoCustomer'. */\n octoSdkDemoCustomers?: Maybe<OctoSdkDemoCustomerMutationsDto>;\n /** Mutation for entities of type 'OctoSdkDemoMeteringPoint'. */\n octoSdkDemoMeteringPoints?: Maybe<OctoSdkDemoMeteringPointMutationsDto>;\n /** Mutation for entities of type 'OctoSdkDemoOperatingFacility'. */\n octoSdkDemoOperatingFacilitys?: Maybe<OctoSdkDemoOperatingFacilityMutationsDto>;\n runtimeEntities?: Maybe<RtEntityMutationsDto>;\n runtimeQuery?: Maybe<RtQueryMutationsDto>;\n /** Mutation for entities of type 'SystemAggregationRtQuery'. */\n systemAggregationRtQuerys?: Maybe<SystemAggregationRtQueryMutationsDto>;\n /** Mutation for entities of type 'SystemAutoIncrement'. */\n systemAutoIncrements?: Maybe<SystemAutoIncrementMutationsDto>;\n /** Mutation for entities of type 'SystemBotAttributeAggregateConfiguration'. */\n systemBotAttributeAggregateConfigurations?: Maybe<SystemBotAttributeAggregateConfigurationMutationsDto>;\n /** Mutation for entities of type 'SystemBotFixup'. */\n systemBotFixups?: Maybe<SystemBotFixupMutationsDto>;\n /** Mutation for entities of type 'SystemBotServiceHook'. */\n systemBotServiceHooks?: Maybe<SystemBotServiceHookMutationsDto>;\n /** Mutation for entities of type 'SystemCommunicationDataPipelineTrigger'. */\n systemCommunicationDataPipelineTriggers?: Maybe<SystemCommunicationDataPipelineTriggerMutationsDto>;\n /** Mutation for entities of type 'SystemCommunicationDataPipeline'. */\n systemCommunicationDataPipelines?: Maybe<SystemCommunicationDataPipelineMutationsDto>;\n /** Mutation for entities of type 'SystemCommunicationEMailSenderConfiguration'. */\n systemCommunicationEMailSenderConfigurations?: Maybe<SystemCommunicationEMailSenderConfigurationMutationsDto>;\n /** Mutation for entities of type 'SystemCommunicationEdgeAdapter'. */\n systemCommunicationEdgeAdapters?: Maybe<SystemCommunicationEdgeAdapterMutationsDto>;\n /** Mutation for entities of type 'SystemCommunicationEdgePipeline'. */\n systemCommunicationEdgePipelines?: Maybe<SystemCommunicationEdgePipelineMutationsDto>;\n /** Mutation for entities of type 'SystemCommunicationEnergyCommunityConfiguration'. */\n systemCommunicationEnergyCommunityConfigurations?: Maybe<SystemCommunicationEnergyCommunityConfigurationMutationsDto>;\n /** Mutation for entities of type 'SystemCommunicationMeshAdapter'. */\n systemCommunicationMeshAdapters?: Maybe<SystemCommunicationMeshAdapterMutationsDto>;\n /** Mutation for entities of type 'SystemCommunicationMeshPipeline'. */\n systemCommunicationMeshPipelines?: Maybe<SystemCommunicationMeshPipelineMutationsDto>;\n /** Mutation for entities of type 'SystemCommunicationPipelineExecution'. */\n systemCommunicationPipelineExecutions?: Maybe<SystemCommunicationPipelineExecutionMutationsDto>;\n /** Mutation for entities of type 'SystemCommunicationPipelineStatistics'. */\n systemCommunicationPipelineStatisticss?: Maybe<SystemCommunicationPipelineStatisticsMutationsDto>;\n /** Mutation for entities of type 'SystemCommunicationPool'. */\n systemCommunicationPools?: Maybe<SystemCommunicationPoolMutationsDto>;\n /** Mutation for entities of type 'SystemCommunicationSapConfiguration'. */\n systemCommunicationSapConfigurations?: Maybe<SystemCommunicationSapConfigurationMutationsDto>;\n /** Mutation for entities of type 'SystemCommunicationTag'. */\n systemCommunicationTags?: Maybe<SystemCommunicationTagMutationsDto>;\n /** Mutation for entities of type 'SystemGroupingAggregationRtQuery'. */\n systemGroupingAggregationRtQuerys?: Maybe<SystemGroupingAggregationRtQueryMutationsDto>;\n /** Mutation for entities of type 'SystemIdentityApiResource'. */\n systemIdentityApiResources?: Maybe<SystemIdentityApiResourceMutationsDto>;\n /** Mutation for entities of type 'SystemIdentityApiScope'. */\n systemIdentityApiScopes?: Maybe<SystemIdentityApiScopeMutationsDto>;\n /** Mutation for entities of type 'SystemIdentityAzureEntraIdIdentityProvider'. */\n systemIdentityAzureEntraIdIdentityProviders?: Maybe<SystemIdentityAzureEntraIdIdentityProviderMutationsDto>;\n /** Mutation for entities of type 'SystemIdentityClient'. */\n systemIdentityClients?: Maybe<SystemIdentityClientMutationsDto>;\n /** Mutation for entities of type 'SystemIdentityFacebookIdentityProvider'. */\n systemIdentityFacebookIdentityProviders?: Maybe<SystemIdentityFacebookIdentityProviderMutationsDto>;\n /** Mutation for entities of type 'SystemIdentityGoogleIdentityProvider'. */\n systemIdentityGoogleIdentityProviders?: Maybe<SystemIdentityGoogleIdentityProviderMutationsDto>;\n /** Mutation for entities of type 'SystemIdentityIdentityResource'. */\n systemIdentityIdentityResources?: Maybe<SystemIdentityIdentityResourceMutationsDto>;\n /** Mutation for entities of type 'SystemIdentityMailNotificationConfiguration'. */\n systemIdentityMailNotificationConfigurations?: Maybe<SystemIdentityMailNotificationConfigurationMutationsDto>;\n /** Mutation for entities of type 'SystemIdentityMicrosoftAdIdentityProvider'. */\n systemIdentityMicrosoftAdIdentityProviders?: Maybe<SystemIdentityMicrosoftAdIdentityProviderMutationsDto>;\n /** Mutation for entities of type 'SystemIdentityMicrosoftIdentityProvider'. */\n systemIdentityMicrosoftIdentityProviders?: Maybe<SystemIdentityMicrosoftIdentityProviderMutationsDto>;\n /** Mutation for entities of type 'SystemIdentityOpenLdapIdentityProvider'. */\n systemIdentityOpenLdapIdentityProviders?: Maybe<SystemIdentityOpenLdapIdentityProviderMutationsDto>;\n /** Mutation for entities of type 'SystemIdentityPermissionRole'. */\n systemIdentityPermissionRoles?: Maybe<SystemIdentityPermissionRoleMutationsDto>;\n /** Mutation for entities of type 'SystemIdentityPermission'. */\n systemIdentityPermissions?: Maybe<SystemIdentityPermissionMutationsDto>;\n /** Mutation for entities of type 'SystemIdentityPersistedGrant'. */\n systemIdentityPersistedGrants?: Maybe<SystemIdentityPersistedGrantMutationsDto>;\n /** Mutation for entities of type 'SystemIdentityRole'. */\n systemIdentityRoles?: Maybe<SystemIdentityRoleMutationsDto>;\n /** Mutation for entities of type 'SystemIdentityUser'. */\n systemIdentityUsers?: Maybe<SystemIdentityUserMutationsDto>;\n /** Mutation for entities of type 'SystemMigrationHistory'. */\n systemMigrationHistorys?: Maybe<SystemMigrationHistoryMutationsDto>;\n /** Mutation for entities of type 'SystemNotificationCssTemplateConfiguration'. */\n systemNotificationCssTemplateConfigurations?: Maybe<SystemNotificationCssTemplateConfigurationMutationsDto>;\n /** Mutation for entities of type 'SystemNotificationEvent'. */\n systemNotificationEvents?: Maybe<SystemNotificationEventMutationsDto>;\n /** Mutation for entities of type 'SystemNotificationNotificationTemplate'. */\n systemNotificationNotificationTemplates?: Maybe<SystemNotificationNotificationTemplateMutationsDto>;\n /** Mutation for entities of type 'SystemNotificationStatefulEvent'. */\n systemNotificationStatefulEvents?: Maybe<SystemNotificationStatefulEventMutationsDto>;\n /** Mutation for entities of type 'SystemQuery'. */\n systemQuerys?: Maybe<SystemQueryMutationsDto>;\n /** Mutation for entities of type 'SystemReportingConnectionInfo'. */\n systemReportingConnectionInfos?: Maybe<SystemReportingConnectionInfoMutationsDto>;\n /** Mutation for entities of type 'SystemReportingFileSystemItem'. */\n systemReportingFileSystemItems?: Maybe<SystemReportingFileSystemItemMutationsDto>;\n /** Mutation for entities of type 'SystemReportingFolderRoot'. */\n systemReportingFolderRoots?: Maybe<SystemReportingFolderRootMutationsDto>;\n /** Mutation for entities of type 'SystemReportingFolder'. */\n systemReportingFolders?: Maybe<SystemReportingFolderMutationsDto>;\n /** Mutation for entities of type 'SystemSimpleRtQuery'. */\n systemSimpleRtQuerys?: Maybe<SystemSimpleRtQueryMutationsDto>;\n /** Mutation for entities of type 'SystemTenantConfiguration'. */\n systemTenantConfigurations?: Maybe<SystemTenantConfigurationMutationsDto>;\n /** Mutation for entities of type 'SystemTenantModeConfiguration'. */\n systemTenantModeConfigurations?: Maybe<SystemTenantModeConfigurationMutationsDto>;\n /** Mutation for entities of type 'SystemTenant'. */\n systemTenants?: Maybe<SystemTenantMutationsDto>;\n /** Mutation for entities of type 'SystemUIDashboardWidget'. */\n systemUIDashboardWidgets?: Maybe<SystemUiDashboardWidgetMutationsDto>;\n /** Mutation for entities of type 'SystemUIDashboard'. */\n systemUIDashboards?: Maybe<SystemUiDashboardMutationsDto>;\n /** Mutation for entities of type 'SystemUIPage'. */\n systemUIPages?: Maybe<SystemUiPageMutationsDto>;\n /** Mutation for entities of type 'SystemUIProcessDiagram'. */\n systemUIProcessDiagrams?: Maybe<SystemUiProcessDiagramMutationsDto>;\n /** Mutation for entities of type 'SystemUIStudioRoot'. */\n systemUIStudioRoots?: Maybe<SystemUiStudioRootMutationsDto>;\n /** Mutation for entities of type 'SystemUIStudioTreeItem'. */\n systemUIStudioTreeItems?: Maybe<SystemUiStudioTreeItemMutationsDto>;\n /** Mutation for entities of type 'SystemUISymbolDefinition'. */\n systemUISymbolDefinitions?: Maybe<SystemUiSymbolDefinitionMutationsDto>;\n /** Mutation for entities of type 'SystemUISymbolLibrary'. */\n systemUISymbolLibrarys?: Maybe<SystemUiSymbolLibraryMutationsDto>;\n};\n\n\nexport type RuntimeRuntimeQueryArgsDto = {\n rtId: Scalars['OctoObjectId']['input'];\n};\n\nexport type RuntimeModelQueryDto = {\n __typename?: 'RuntimeModelQuery';\n basicAsset?: Maybe<BasicAssetConnectionDto>;\n basicCity?: Maybe<BasicCityConnectionDto>;\n basicCountry?: Maybe<BasicCountryConnectionDto>;\n basicDistrict?: Maybe<BasicDistrictConnectionDto>;\n basicDocument?: Maybe<BasicDocumentConnectionDto>;\n basicEmployee?: Maybe<BasicEmployeeConnectionDto>;\n basicNamedEntity?: Maybe<BasicNamedEntityConnectionDto>;\n basicState?: Maybe<BasicStateConnectionDto>;\n basicTree?: Maybe<BasicTreeConnectionDto>;\n basicTreeNode?: Maybe<BasicTreeNodeConnectionDto>;\n octoSdkDemoCustomer?: Maybe<OctoSdkDemoCustomerConnectionDto>;\n octoSdkDemoMeteringPoint?: Maybe<OctoSdkDemoMeteringPointConnectionDto>;\n octoSdkDemoOperatingFacility?: Maybe<OctoSdkDemoOperatingFacilityConnectionDto>;\n runtimeEntities?: Maybe<RtEntityGenericDtoConnectionDto>;\n runtimeQuery?: Maybe<RtQueryDtoConnectionDto>;\n systemAggregationRtQuery?: Maybe<SystemAggregationRtQueryConnectionDto>;\n systemAutoIncrement?: Maybe<SystemAutoIncrementConnectionDto>;\n systemBotAttributeAggregateConfiguration?: Maybe<SystemBotAttributeAggregateConfigurationConnectionDto>;\n systemBotFixup?: Maybe<SystemBotFixupConnectionDto>;\n systemBotServiceHook?: Maybe<SystemBotServiceHookConnectionDto>;\n systemCommunicationAdapter?: Maybe<SystemCommunicationAdapterConnectionDto>;\n systemCommunicationDataPipeline?: Maybe<SystemCommunicationDataPipelineConnectionDto>;\n systemCommunicationDataPipelineTrigger?: Maybe<SystemCommunicationDataPipelineTriggerConnectionDto>;\n systemCommunicationDeployableEntity?: Maybe<SystemCommunicationDeployableEntityConnectionDto>;\n systemCommunicationEMailSenderConfiguration?: Maybe<SystemCommunicationEMailSenderConfigurationConnectionDto>;\n systemCommunicationEdgeAdapter?: Maybe<SystemCommunicationEdgeAdapterConnectionDto>;\n systemCommunicationEdgePipeline?: Maybe<SystemCommunicationEdgePipelineConnectionDto>;\n systemCommunicationEnergyCommunityConfiguration?: Maybe<SystemCommunicationEnergyCommunityConfigurationConnectionDto>;\n systemCommunicationMeshAdapter?: Maybe<SystemCommunicationMeshAdapterConnectionDto>;\n systemCommunicationMeshPipeline?: Maybe<SystemCommunicationMeshPipelineConnectionDto>;\n systemCommunicationPipeline?: Maybe<SystemCommunicationPipelineConnectionDto>;\n systemCommunicationPipelineExecution?: Maybe<SystemCommunicationPipelineExecutionConnectionDto>;\n systemCommunicationPipelineStatistics?: Maybe<SystemCommunicationPipelineStatisticsConnectionDto>;\n systemCommunicationPool?: Maybe<SystemCommunicationPoolConnectionDto>;\n systemCommunicationSapConfiguration?: Maybe<SystemCommunicationSapConfigurationConnectionDto>;\n systemCommunicationTag?: Maybe<SystemCommunicationTagConnectionDto>;\n systemConfiguration?: Maybe<SystemConfigurationConnectionDto>;\n systemEntity?: Maybe<SystemEntityConnectionDto>;\n systemGroupingAggregationRtQuery?: Maybe<SystemGroupingAggregationRtQueryConnectionDto>;\n systemIdentityApiResource?: Maybe<SystemIdentityApiResourceConnectionDto>;\n systemIdentityApiScope?: Maybe<SystemIdentityApiScopeConnectionDto>;\n systemIdentityAzureEntraIdIdentityProvider?: Maybe<SystemIdentityAzureEntraIdIdentityProviderConnectionDto>;\n systemIdentityClient?: Maybe<SystemIdentityClientConnectionDto>;\n systemIdentityFacebookIdentityProvider?: Maybe<SystemIdentityFacebookIdentityProviderConnectionDto>;\n systemIdentityGoogleIdentityProvider?: Maybe<SystemIdentityGoogleIdentityProviderConnectionDto>;\n systemIdentityIdentityProvider?: Maybe<SystemIdentityIdentityProviderConnectionDto>;\n systemIdentityIdentityResource?: Maybe<SystemIdentityIdentityResourceConnectionDto>;\n systemIdentityMailNotificationConfiguration?: Maybe<SystemIdentityMailNotificationConfigurationConnectionDto>;\n systemIdentityMicrosoftAdIdentityProvider?: Maybe<SystemIdentityMicrosoftAdIdentityProviderConnectionDto>;\n systemIdentityMicrosoftIdentityProvider?: Maybe<SystemIdentityMicrosoftIdentityProviderConnectionDto>;\n systemIdentityOpenLdapIdentityProvider?: Maybe<SystemIdentityOpenLdapIdentityProviderConnectionDto>;\n systemIdentityPermission?: Maybe<SystemIdentityPermissionConnectionDto>;\n systemIdentityPermissionRole?: Maybe<SystemIdentityPermissionRoleConnectionDto>;\n systemIdentityPersistedGrant?: Maybe<SystemIdentityPersistedGrantConnectionDto>;\n systemIdentityResource?: Maybe<SystemIdentityResourceConnectionDto>;\n systemIdentityRole?: Maybe<SystemIdentityRoleConnectionDto>;\n systemIdentityUser?: Maybe<SystemIdentityUserConnectionDto>;\n systemMigrationHistory?: Maybe<SystemMigrationHistoryConnectionDto>;\n systemNotificationCssTemplateConfiguration?: Maybe<SystemNotificationCssTemplateConfigurationConnectionDto>;\n systemNotificationEvent?: Maybe<SystemNotificationEventConnectionDto>;\n systemNotificationNotificationTemplate?: Maybe<SystemNotificationNotificationTemplateConnectionDto>;\n systemNotificationStatefulEvent?: Maybe<SystemNotificationStatefulEventConnectionDto>;\n systemPersistentQuery?: Maybe<SystemPersistentQueryConnectionDto>;\n systemQuery?: Maybe<SystemQueryConnectionDto>;\n systemReportingConnectionInfo?: Maybe<SystemReportingConnectionInfoConnectionDto>;\n systemReportingFileSystemContainer?: Maybe<SystemReportingFileSystemContainerConnectionDto>;\n systemReportingFileSystemEntity?: Maybe<SystemReportingFileSystemEntityConnectionDto>;\n systemReportingFileSystemItem?: Maybe<SystemReportingFileSystemItemConnectionDto>;\n systemReportingFolder?: Maybe<SystemReportingFolderConnectionDto>;\n systemReportingFolderRoot?: Maybe<SystemReportingFolderRootConnectionDto>;\n systemSimpleRtQuery?: Maybe<SystemSimpleRtQueryConnectionDto>;\n systemTenant?: Maybe<SystemTenantConnectionDto>;\n systemTenantConfiguration?: Maybe<SystemTenantConfigurationConnectionDto>;\n systemTenantModeConfiguration?: Maybe<SystemTenantModeConfigurationConnectionDto>;\n systemUIDashboard?: Maybe<SystemUiDashboardConnectionDto>;\n systemUIDashboardWidget?: Maybe<SystemUiDashboardWidgetConnectionDto>;\n systemUIPage?: Maybe<SystemUiPageConnectionDto>;\n systemUIProcessDiagram?: Maybe<SystemUiProcessDiagramConnectionDto>;\n systemUIStudioRoot?: Maybe<SystemUiStudioRootConnectionDto>;\n systemUIStudioTreeItem?: Maybe<SystemUiStudioTreeItemConnectionDto>;\n systemUISymbolDefinition?: Maybe<SystemUiSymbolDefinitionConnectionDto>;\n systemUISymbolLibrary?: Maybe<SystemUiSymbolLibraryConnectionDto>;\n systemUIUIElement?: Maybe<SystemUiuiElementConnectionDto>;\n /** Transient runtime queries */\n transientQuery: RtTransientDto;\n};\n\n\nexport type RuntimeModelQueryBasicAssetArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQueryBasicCityArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQueryBasicCountryArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQueryBasicDistrictArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQueryBasicDocumentArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQueryBasicEmployeeArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQueryBasicNamedEntityArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQueryBasicStateArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQueryBasicTreeArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQueryBasicTreeNodeArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQueryOctoSdkDemoCustomerArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQueryOctoSdkDemoMeteringPointArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQueryOctoSdkDemoOperatingFacilityArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQueryRuntimeEntitiesArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId?: InputMaybe<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQueryRuntimeQueryArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId: Scalars['OctoObjectId']['input'];\n};\n\n\nexport type RuntimeModelQuerySystemAggregationRtQueryArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQuerySystemAutoIncrementArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQuerySystemBotAttributeAggregateConfigurationArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQuerySystemBotFixupArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQuerySystemBotServiceHookArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQuerySystemCommunicationAdapterArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQuerySystemCommunicationDataPipelineArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQuerySystemCommunicationDataPipelineTriggerArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQuerySystemCommunicationDeployableEntityArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQuerySystemCommunicationEMailSenderConfigurationArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQuerySystemCommunicationEdgeAdapterArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQuerySystemCommunicationEdgePipelineArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQuerySystemCommunicationEnergyCommunityConfigurationArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQuerySystemCommunicationMeshAdapterArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQuerySystemCommunicationMeshPipelineArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQuerySystemCommunicationPipelineArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQuerySystemCommunicationPipelineExecutionArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQuerySystemCommunicationPipelineStatisticsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQuerySystemCommunicationPoolArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQuerySystemCommunicationSapConfigurationArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQuerySystemCommunicationTagArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQuerySystemConfigurationArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQuerySystemEntityArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQuerySystemGroupingAggregationRtQueryArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQuerySystemIdentityApiResourceArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQuerySystemIdentityApiScopeArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQuerySystemIdentityAzureEntraIdIdentityProviderArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQuerySystemIdentityClientArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQuerySystemIdentityFacebookIdentityProviderArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQuerySystemIdentityGoogleIdentityProviderArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQuerySystemIdentityIdentityProviderArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQuerySystemIdentityIdentityResourceArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQuerySystemIdentityMailNotificationConfigurationArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQuerySystemIdentityMicrosoftAdIdentityProviderArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQuerySystemIdentityMicrosoftIdentityProviderArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQuerySystemIdentityOpenLdapIdentityProviderArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQuerySystemIdentityPermissionArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQuerySystemIdentityPermissionRoleArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQuerySystemIdentityPersistedGrantArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQuerySystemIdentityResourceArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQuerySystemIdentityRoleArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQuerySystemIdentityUserArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQuerySystemMigrationHistoryArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQuerySystemNotificationCssTemplateConfigurationArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQuerySystemNotificationEventArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQuerySystemNotificationNotificationTemplateArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQuerySystemNotificationStatefulEventArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQuerySystemPersistentQueryArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQuerySystemQueryArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQuerySystemReportingConnectionInfoArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQuerySystemReportingFileSystemContainerArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQuerySystemReportingFileSystemEntityArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQuerySystemReportingFileSystemItemArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQuerySystemReportingFolderArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQuerySystemReportingFolderRootArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQuerySystemSimpleRtQueryArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQuerySystemTenantArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQuerySystemTenantConfigurationArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQuerySystemTenantModeConfigurationArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQuerySystemUiDashboardArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQuerySystemUiDashboardWidgetArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQuerySystemUiPageArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQuerySystemUiProcessDiagramArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQuerySystemUiStudioRootArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQuerySystemUiStudioTreeItemArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQuerySystemUiSymbolDefinitionArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQuerySystemUiSymbolLibraryArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\nexport type RuntimeModelQuerySystemUiuiElementArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n geoNearFilter?: InputMaybe<NearGeospatialFilterDto>;\n options?: InputMaybe<GlobalQueryOptionsDto>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\nexport type SearchFilterDto = {\n attributePaths?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;\n language?: InputMaybe<Scalars['String']['input']>;\n searchTerm: Scalars['String']['input'];\n type?: InputMaybe<SearchFilterTypesDto>;\n};\n\n/** The type of search that is used (a text based search using text analysis (high performance, scoring, maybe more false positives) or filtering of attributes (lower performance, more exact results) */\nexport enum SearchFilterTypesDto {\n AttributeFilterDto = 'ATTRIBUTE_FILTER',\n TextSearchDto = 'TEXT_SEARCH'\n}\n\nexport type SortDto = {\n attributePath: Scalars['String']['input'];\n sortOrder?: InputMaybe<SortOrdersDto>;\n};\n\n/** Defines the sort order */\nexport enum SortOrdersDto {\n AscendingDto = 'ASCENDING',\n DefaultDto = 'DEFAULT',\n DescendingDto = 'DESCENDING'\n}\n\n/** Runtime entities of construction kit record 'System/AggregationQueryColumn' */\nexport type SystemAggregationQueryColumnDto = {\n __typename?: 'SystemAggregationQueryColumn';\n aggregationType: SystemAggregationTypesDto;\n attributePath: Scalars['String']['output'];\n constructionKitType?: Maybe<CkTypeDto>;\n};\n\nexport type SystemAggregationQueryColumnInputDto = {\n aggregationType?: InputMaybe<SystemAggregationTypesDto>;\n attributePath?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Runtime entities of construction kit type 'System-2.0.2/AggregationRtQuery-1' */\nexport type SystemAggregationRtQueryDto = SystemEntityInterfaceDto & SystemPersistentQueryInterfaceDto & {\n __typename?: 'SystemAggregationRtQuery';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n attributeSearchFilter?: Maybe<SystemAttributeSearchFilterDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n columns: Array<SystemAggregationQueryColumnDto>;\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n description?: Maybe<Scalars['String']['output']>;\n fieldFilter?: Maybe<Array<SystemFieldFilterDto>>;\n name: Scalars['String']['output'];\n queryCkTypeId: Scalars['String']['output'];\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n textSearchFilter?: Maybe<SystemTextSearchFilterDto>;\n};\n\n\n/** Runtime entities of construction kit type 'System-2.0.2/AggregationRtQuery-1' */\nexport type SystemAggregationRtQueryAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System-2.0.2/AggregationRtQuery-1' */\nexport type SystemAggregationRtQueryConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System-2.0.2/AggregationRtQuery-1' */\nexport type SystemAggregationRtQueryRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System-2.0.2/AggregationRtQuery-1' */\nexport type SystemAggregationRtQueryRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System-2.0.2/AggregationRtQuery-1' */\nexport type SystemAggregationRtQueryTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `SystemAggregationRtQuery`. */\nexport type SystemAggregationRtQueryConnectionDto = {\n __typename?: 'SystemAggregationRtQueryConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemAggregationRtQueryEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemAggregationRtQueryDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemAggregationRtQuery`. */\nexport type SystemAggregationRtQueryEdgeDto = {\n __typename?: 'SystemAggregationRtQueryEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemAggregationRtQueryDto>;\n};\n\nexport type SystemAggregationRtQueryInputDto = {\n attributeSearchFilter?: InputMaybe<SystemAttributeSearchFilterInputDto>;\n columns?: InputMaybe<Array<InputMaybe<SystemAggregationQueryColumnInputDto>>>;\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n description?: InputMaybe<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<SystemFieldFilterInputDto>>>;\n name?: InputMaybe<Scalars['String']['input']>;\n queryCkTypeId?: InputMaybe<Scalars['String']['input']>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n textSearchFilter?: InputMaybe<SystemTextSearchFilterInputDto>;\n};\n\nexport type SystemAggregationRtQueryInputUpdateDto = {\n /** Item to update */\n item: SystemAggregationRtQueryInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\nexport type SystemAggregationRtQueryMutationsDto = {\n __typename?: 'SystemAggregationRtQueryMutations';\n /** Creates new entities of type 'SystemAggregationRtQuery'. */\n create?: Maybe<Array<Maybe<SystemAggregationRtQueryDto>>>;\n /** Updates existing entity of type 'SystemAggregationRtQuery'. */\n update?: Maybe<Array<Maybe<SystemAggregationRtQueryDto>>>;\n};\n\n\nexport type SystemAggregationRtQueryMutationsCreateArgsDto = {\n entities: Array<InputMaybe<SystemAggregationRtQueryInputDto>>;\n};\n\n\nexport type SystemAggregationRtQueryMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<SystemAggregationRtQueryInputUpdateDto>>;\n};\n\nexport type SystemAggregationRtQueryUpdateDto = {\n __typename?: 'SystemAggregationRtQueryUpdate';\n /** The corresponding item */\n item?: Maybe<SystemAggregationRtQueryDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemAggregationRtQueryUpdateMessageDto = {\n __typename?: 'SystemAggregationRtQueryUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemAggregationRtQueryUpdateDto>>>;\n};\n\n/** Runtime entities of construction kit enum 'System/AggregationTypes' */\nexport enum SystemAggregationTypesDto {\n /** Calculates the average value */\n AverageDto = 'AVERAGE',\n /** Counts the number of items */\n CountDto = 'COUNT',\n /** Finds the maximum value */\n MaximumDto = 'MAXIMUM',\n /** Finds the minimum value */\n MinimumDto = 'MINIMUM',\n /** Calculates the sum of values */\n SumDto = 'SUM'\n}\n\n/** Runtime entities of construction kit record 'System/AttributeSearchFilter' */\nexport type SystemAttributeSearchFilterDto = {\n __typename?: 'SystemAttributeSearchFilter';\n attributePaths: Array<Scalars['String']['output']>;\n constructionKitType?: Maybe<CkTypeDto>;\n searchValue: Scalars['String']['output'];\n};\n\nexport type SystemAttributeSearchFilterInputDto = {\n attributePaths?: InputMaybe<Array<Scalars['String']['input']>>;\n searchValue?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Runtime entities of construction kit type 'System-2.0.2/AutoIncrement-1' */\nexport type SystemAutoIncrementDto = SystemEntityInterfaceDto & {\n __typename?: 'SystemAutoIncrement';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n currentValue: Scalars['Int']['output'];\n end: Scalars['Int']['output'];\n format?: Maybe<Scalars['String']['output']>;\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n};\n\n\n/** Runtime entities of construction kit type 'System-2.0.2/AutoIncrement-1' */\nexport type SystemAutoIncrementAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System-2.0.2/AutoIncrement-1' */\nexport type SystemAutoIncrementConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System-2.0.2/AutoIncrement-1' */\nexport type SystemAutoIncrementRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System-2.0.2/AutoIncrement-1' */\nexport type SystemAutoIncrementRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System-2.0.2/AutoIncrement-1' */\nexport type SystemAutoIncrementTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `SystemAutoIncrement`. */\nexport type SystemAutoIncrementConnectionDto = {\n __typename?: 'SystemAutoIncrementConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemAutoIncrementEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemAutoIncrementDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemAutoIncrement`. */\nexport type SystemAutoIncrementEdgeDto = {\n __typename?: 'SystemAutoIncrementEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemAutoIncrementDto>;\n};\n\nexport type SystemAutoIncrementInputDto = {\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n currentValue?: InputMaybe<Scalars['Int']['input']>;\n end?: InputMaybe<Scalars['Int']['input']>;\n format?: InputMaybe<Scalars['String']['input']>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n};\n\nexport type SystemAutoIncrementInputUpdateDto = {\n /** Item to update */\n item: SystemAutoIncrementInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\nexport type SystemAutoIncrementMutationsDto = {\n __typename?: 'SystemAutoIncrementMutations';\n /** Creates new entities of type 'SystemAutoIncrement'. */\n create?: Maybe<Array<Maybe<SystemAutoIncrementDto>>>;\n /** Updates existing entity of type 'SystemAutoIncrement'. */\n update?: Maybe<Array<Maybe<SystemAutoIncrementDto>>>;\n};\n\n\nexport type SystemAutoIncrementMutationsCreateArgsDto = {\n entities: Array<InputMaybe<SystemAutoIncrementInputDto>>;\n};\n\n\nexport type SystemAutoIncrementMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<SystemAutoIncrementInputUpdateDto>>;\n};\n\nexport type SystemAutoIncrementUpdateDto = {\n __typename?: 'SystemAutoIncrementUpdate';\n /** The corresponding item */\n item?: Maybe<SystemAutoIncrementDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemAutoIncrementUpdateMessageDto = {\n __typename?: 'SystemAutoIncrementUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemAutoIncrementUpdateDto>>>;\n};\n\n/** Runtime entities of construction kit type 'System.Bot-2.0.0/AttributeAggregateConfiguration-1' */\nexport type SystemBotAttributeAggregateConfigurationDto = SystemEntityInterfaceDto & {\n __typename?: 'SystemBotAttributeAggregateConfiguration';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n autoCompleteFilter: Scalars['String']['output'];\n autoCompleteLimit: Scalars['Int']['output'];\n ckTypeId: Scalars['RtCkTypeId']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n configures?: Maybe<SystemEntity_ConfiguresUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n isAutoCompleteEnabled: Scalars['Boolean']['output'];\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Bot-2.0.0/AttributeAggregateConfiguration-1' */\nexport type SystemBotAttributeAggregateConfigurationAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Bot-2.0.0/AttributeAggregateConfiguration-1' */\nexport type SystemBotAttributeAggregateConfigurationConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Bot-2.0.0/AttributeAggregateConfiguration-1' */\nexport type SystemBotAttributeAggregateConfigurationConfiguresArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Bot-2.0.0/AttributeAggregateConfiguration-1' */\nexport type SystemBotAttributeAggregateConfigurationRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Bot-2.0.0/AttributeAggregateConfiguration-1' */\nexport type SystemBotAttributeAggregateConfigurationRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Bot-2.0.0/AttributeAggregateConfiguration-1' */\nexport type SystemBotAttributeAggregateConfigurationTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `SystemBotAttributeAggregateConfiguration`. */\nexport type SystemBotAttributeAggregateConfigurationConnectionDto = {\n __typename?: 'SystemBotAttributeAggregateConfigurationConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemBotAttributeAggregateConfigurationEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemBotAttributeAggregateConfigurationDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemBotAttributeAggregateConfiguration`. */\nexport type SystemBotAttributeAggregateConfigurationEdgeDto = {\n __typename?: 'SystemBotAttributeAggregateConfigurationEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemBotAttributeAggregateConfigurationDto>;\n};\n\nexport type SystemBotAttributeAggregateConfigurationInputDto = {\n autoCompleteFilter?: InputMaybe<Scalars['String']['input']>;\n autoCompleteLimit?: InputMaybe<Scalars['Int']['input']>;\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n configures?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n isAutoCompleteEnabled?: InputMaybe<Scalars['Boolean']['input']>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n};\n\nexport type SystemBotAttributeAggregateConfigurationInputUpdateDto = {\n /** Item to update */\n item: SystemBotAttributeAggregateConfigurationInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\nexport type SystemBotAttributeAggregateConfigurationMutationsDto = {\n __typename?: 'SystemBotAttributeAggregateConfigurationMutations';\n /** Creates new entities of type 'SystemBotAttributeAggregateConfiguration'. */\n create?: Maybe<Array<Maybe<SystemBotAttributeAggregateConfigurationDto>>>;\n /** Updates existing entity of type 'SystemBotAttributeAggregateConfiguration'. */\n update?: Maybe<Array<Maybe<SystemBotAttributeAggregateConfigurationDto>>>;\n};\n\n\nexport type SystemBotAttributeAggregateConfigurationMutationsCreateArgsDto = {\n entities: Array<InputMaybe<SystemBotAttributeAggregateConfigurationInputDto>>;\n};\n\n\nexport type SystemBotAttributeAggregateConfigurationMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<SystemBotAttributeAggregateConfigurationInputUpdateDto>>;\n};\n\nexport type SystemBotAttributeAggregateConfigurationUpdateDto = {\n __typename?: 'SystemBotAttributeAggregateConfigurationUpdate';\n /** The corresponding item */\n item?: Maybe<SystemBotAttributeAggregateConfigurationDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemBotAttributeAggregateConfigurationUpdateMessageDto = {\n __typename?: 'SystemBotAttributeAggregateConfigurationUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemBotAttributeAggregateConfigurationUpdateDto>>>;\n};\n\n/** Union of types derived from System.Bot/AttributeAggregateConfiguration for ConfiguredBy association */\nexport type SystemBotAttributeAggregateConfiguration_ConfiguredByUnionDto = SystemBotAttributeAggregateConfigurationDto;\n\n/** A connection to `SystemBotAttributeAggregateConfiguration_ConfiguredByUnion`. */\nexport type SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto = {\n __typename?: 'SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemBotAttributeAggregateConfiguration_ConfiguredByUnion`. */\nexport type SystemBotAttributeAggregateConfiguration_ConfiguredByUnionEdgeDto = {\n __typename?: 'SystemBotAttributeAggregateConfiguration_ConfiguredByUnionEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionDto>;\n};\n\n/** Runtime entities of construction kit type 'System.Bot-2.0.0/Fixup-1' */\nexport type SystemBotFixupDto = SystemEntityInterfaceDto & {\n __typename?: 'SystemBotFixup';\n appliedAt?: Maybe<Scalars['DateTime']['output']>;\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n enabled: Scalars['Boolean']['output'];\n error?: Maybe<Scalars['String']['output']>;\n isApplied: Scalars['Boolean']['output'];\n isSuccess?: Maybe<Scalars['Boolean']['output']>;\n name: Scalars['String']['output'];\n order: Scalars['Int']['output'];\n output?: Maybe<Scalars['String']['output']>;\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n script: Scalars['String']['output'];\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Bot-2.0.0/Fixup-1' */\nexport type SystemBotFixupAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Bot-2.0.0/Fixup-1' */\nexport type SystemBotFixupConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Bot-2.0.0/Fixup-1' */\nexport type SystemBotFixupRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Bot-2.0.0/Fixup-1' */\nexport type SystemBotFixupRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Bot-2.0.0/Fixup-1' */\nexport type SystemBotFixupTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `SystemBotFixup`. */\nexport type SystemBotFixupConnectionDto = {\n __typename?: 'SystemBotFixupConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemBotFixupEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemBotFixupDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemBotFixup`. */\nexport type SystemBotFixupEdgeDto = {\n __typename?: 'SystemBotFixupEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemBotFixupDto>;\n};\n\nexport type SystemBotFixupInputDto = {\n appliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n enabled?: InputMaybe<Scalars['Boolean']['input']>;\n error?: InputMaybe<Scalars['String']['input']>;\n isApplied?: InputMaybe<Scalars['Boolean']['input']>;\n isSuccess?: InputMaybe<Scalars['Boolean']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n order?: InputMaybe<Scalars['Int']['input']>;\n output?: InputMaybe<Scalars['String']['input']>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n script?: InputMaybe<Scalars['String']['input']>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n};\n\nexport type SystemBotFixupInputUpdateDto = {\n /** Item to update */\n item: SystemBotFixupInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\nexport type SystemBotFixupMutationsDto = {\n __typename?: 'SystemBotFixupMutations';\n /** Creates new entities of type 'SystemBotFixup'. */\n create?: Maybe<Array<Maybe<SystemBotFixupDto>>>;\n /** Updates existing entity of type 'SystemBotFixup'. */\n update?: Maybe<Array<Maybe<SystemBotFixupDto>>>;\n};\n\n\nexport type SystemBotFixupMutationsCreateArgsDto = {\n entities: Array<InputMaybe<SystemBotFixupInputDto>>;\n};\n\n\nexport type SystemBotFixupMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<SystemBotFixupInputUpdateDto>>;\n};\n\nexport type SystemBotFixupUpdateDto = {\n __typename?: 'SystemBotFixupUpdate';\n /** The corresponding item */\n item?: Maybe<SystemBotFixupDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemBotFixupUpdateMessageDto = {\n __typename?: 'SystemBotFixupUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemBotFixupUpdateDto>>>;\n};\n\n/** Runtime entities of construction kit type 'System.Bot-2.0.0/ServiceHook-1' */\nexport type SystemBotServiceHookDto = SystemEntityInterfaceDto & {\n __typename?: 'SystemBotServiceHook';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n enabled: Scalars['Boolean']['output'];\n fieldFilter: Array<SystemFieldFilterDto>;\n name: Scalars['String']['output'];\n queryCkTypeId: Scalars['String']['output'];\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n serviceHookAction: Scalars['String']['output'];\n serviceHookApiKey?: Maybe<Scalars['String']['output']>;\n serviceHookBaseUri: Scalars['String']['output'];\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Bot-2.0.0/ServiceHook-1' */\nexport type SystemBotServiceHookAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Bot-2.0.0/ServiceHook-1' */\nexport type SystemBotServiceHookConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Bot-2.0.0/ServiceHook-1' */\nexport type SystemBotServiceHookRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Bot-2.0.0/ServiceHook-1' */\nexport type SystemBotServiceHookRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Bot-2.0.0/ServiceHook-1' */\nexport type SystemBotServiceHookTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `SystemBotServiceHook`. */\nexport type SystemBotServiceHookConnectionDto = {\n __typename?: 'SystemBotServiceHookConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemBotServiceHookEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemBotServiceHookDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemBotServiceHook`. */\nexport type SystemBotServiceHookEdgeDto = {\n __typename?: 'SystemBotServiceHookEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemBotServiceHookDto>;\n};\n\nexport type SystemBotServiceHookInputDto = {\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n enabled?: InputMaybe<Scalars['Boolean']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<SystemFieldFilterInputDto>>>;\n name?: InputMaybe<Scalars['String']['input']>;\n queryCkTypeId?: InputMaybe<Scalars['String']['input']>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n serviceHookAction?: InputMaybe<Scalars['String']['input']>;\n serviceHookApiKey?: InputMaybe<Scalars['String']['input']>;\n serviceHookBaseUri?: InputMaybe<Scalars['String']['input']>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n};\n\nexport type SystemBotServiceHookInputUpdateDto = {\n /** Item to update */\n item: SystemBotServiceHookInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\nexport type SystemBotServiceHookMutationsDto = {\n __typename?: 'SystemBotServiceHookMutations';\n /** Creates new entities of type 'SystemBotServiceHook'. */\n create?: Maybe<Array<Maybe<SystemBotServiceHookDto>>>;\n /** Updates existing entity of type 'SystemBotServiceHook'. */\n update?: Maybe<Array<Maybe<SystemBotServiceHookDto>>>;\n};\n\n\nexport type SystemBotServiceHookMutationsCreateArgsDto = {\n entities: Array<InputMaybe<SystemBotServiceHookInputDto>>;\n};\n\n\nexport type SystemBotServiceHookMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<SystemBotServiceHookInputUpdateDto>>;\n};\n\nexport type SystemBotServiceHookUpdateDto = {\n __typename?: 'SystemBotServiceHookUpdate';\n /** The corresponding item */\n item?: Maybe<SystemBotServiceHookDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemBotServiceHookUpdateMessageDto = {\n __typename?: 'SystemBotServiceHookUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemBotServiceHookUpdateDto>>>;\n};\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/Adapter-1' */\nexport type SystemCommunicationAdapterDto = SystemCommunicationDeployableEntityInterfaceDto & SystemEntityInterfaceDto & {\n __typename?: 'SystemCommunicationAdapter';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n communicationState: SystemCommunicationCommunicationStateDto;\n communicationStateTimestamp?: Maybe<Scalars['DateTime']['output']>;\n configuration?: Maybe<Scalars['String']['output']>;\n configurationState: SystemCommunicationConfigurationStateDto;\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n deploymentState: SystemCommunicationDeploymentStateDto;\n description?: Maybe<Scalars['String']['output']>;\n executes?: Maybe<SystemCommunicationPipeline_ExecutesUnionConnectionDto>;\n executingAdapter?: Maybe<SystemCommunicationPipelineExecution_ExecutingAdapterUnionConnectionDto>;\n imageName?: Maybe<Scalars['String']['output']>;\n imageVersion?: Maybe<Scalars['String']['output']>;\n lastSyncedSequenceNumber: Scalars['Int']['output'];\n managedBy?: Maybe<SystemCommunicationPool_ManagedByUnionConnectionDto>;\n name?: Maybe<Scalars['String']['output']>;\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n statusMessage?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/Adapter-1' */\nexport type SystemCommunicationAdapterAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/Adapter-1' */\nexport type SystemCommunicationAdapterConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/Adapter-1' */\nexport type SystemCommunicationAdapterExecutesArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/Adapter-1' */\nexport type SystemCommunicationAdapterExecutingAdapterArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/Adapter-1' */\nexport type SystemCommunicationAdapterManagedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/Adapter-1' */\nexport type SystemCommunicationAdapterRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/Adapter-1' */\nexport type SystemCommunicationAdapterRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/Adapter-1' */\nexport type SystemCommunicationAdapterTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `SystemCommunicationAdapter`. */\nexport type SystemCommunicationAdapterConnectionDto = {\n __typename?: 'SystemCommunicationAdapterConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemCommunicationAdapterEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemCommunicationAdapterDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemCommunicationAdapter`. */\nexport type SystemCommunicationAdapterEdgeDto = {\n __typename?: 'SystemCommunicationAdapterEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemCommunicationAdapterDto>;\n};\n\n/** Interface for runtime entities of construction kit type 'System.Communication-2.0.3/Adapter-1' */\nexport type SystemCommunicationAdapterInterfaceDto = {\n ckTypeId: Scalars['RtCkTypeId']['output'];\n communicationState: SystemCommunicationCommunicationStateDto;\n communicationStateTimestamp?: Maybe<Scalars['DateTime']['output']>;\n configuration?: Maybe<Scalars['String']['output']>;\n configurationState: SystemCommunicationConfigurationStateDto;\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n deploymentState: SystemCommunicationDeploymentStateDto;\n description?: Maybe<Scalars['String']['output']>;\n executes?: Maybe<SystemCommunicationPipeline_ExecutesUnionConnectionDto>;\n executingAdapter?: Maybe<SystemCommunicationPipelineExecution_ExecutingAdapterUnionConnectionDto>;\n imageName?: Maybe<Scalars['String']['output']>;\n imageVersion?: Maybe<Scalars['String']['output']>;\n lastSyncedSequenceNumber: Scalars['Int']['output'];\n managedBy?: Maybe<SystemCommunicationPool_ManagedByUnionConnectionDto>;\n name?: Maybe<Scalars['String']['output']>;\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n statusMessage?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n};\n\n\n/** Interface for runtime entities of construction kit type 'System.Communication-2.0.3/Adapter-1' */\nexport type SystemCommunicationAdapterInterfaceConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Interface for runtime entities of construction kit type 'System.Communication-2.0.3/Adapter-1' */\nexport type SystemCommunicationAdapterInterfaceExecutesArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Interface for runtime entities of construction kit type 'System.Communication-2.0.3/Adapter-1' */\nexport type SystemCommunicationAdapterInterfaceExecutingAdapterArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Interface for runtime entities of construction kit type 'System.Communication-2.0.3/Adapter-1' */\nexport type SystemCommunicationAdapterInterfaceManagedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Interface for runtime entities of construction kit type 'System.Communication-2.0.3/Adapter-1' */\nexport type SystemCommunicationAdapterInterfaceRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Interface for runtime entities of construction kit type 'System.Communication-2.0.3/Adapter-1' */\nexport type SystemCommunicationAdapterInterfaceRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Interface for runtime entities of construction kit type 'System.Communication-2.0.3/Adapter-1' */\nexport type SystemCommunicationAdapterInterfaceTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\nexport type SystemCommunicationAdapterUpdateDto = {\n __typename?: 'SystemCommunicationAdapterUpdate';\n /** The corresponding item */\n item?: Maybe<SystemCommunicationAdapterDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemCommunicationAdapterUpdateMessageDto = {\n __typename?: 'SystemCommunicationAdapterUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemCommunicationAdapterUpdateDto>>>;\n};\n\n/** Union of types derived from System.Communication/Adapter for AdapterExecutions association */\nexport type SystemCommunicationAdapter_AdapterExecutionsUnionDto = SystemCommunicationEdgeAdapterDto | SystemCommunicationMeshAdapterDto;\n\n/** A connection to `SystemCommunicationAdapter_AdapterExecutionsUnion`. */\nexport type SystemCommunicationAdapter_AdapterExecutionsUnionConnectionDto = {\n __typename?: 'SystemCommunicationAdapter_AdapterExecutionsUnionConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemCommunicationAdapter_AdapterExecutionsUnionEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemCommunicationAdapter_AdapterExecutionsUnionDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemCommunicationAdapter_AdapterExecutionsUnion`. */\nexport type SystemCommunicationAdapter_AdapterExecutionsUnionEdgeDto = {\n __typename?: 'SystemCommunicationAdapter_AdapterExecutionsUnionEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemCommunicationAdapter_AdapterExecutionsUnionDto>;\n};\n\n/** Union of types derived from System.Communication/Adapter for ExecutedBy association */\nexport type SystemCommunicationAdapter_ExecutedByUnionDto = SystemCommunicationEdgeAdapterDto | SystemCommunicationMeshAdapterDto;\n\n/** A connection to `SystemCommunicationAdapter_ExecutedByUnion`. */\nexport type SystemCommunicationAdapter_ExecutedByUnionConnectionDto = {\n __typename?: 'SystemCommunicationAdapter_ExecutedByUnionConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemCommunicationAdapter_ExecutedByUnionEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemCommunicationAdapter_ExecutedByUnionDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemCommunicationAdapter_ExecutedByUnion`. */\nexport type SystemCommunicationAdapter_ExecutedByUnionEdgeDto = {\n __typename?: 'SystemCommunicationAdapter_ExecutedByUnionEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemCommunicationAdapter_ExecutedByUnionDto>;\n};\n\n/** Union of types derived from System.Communication/Adapter for Manages association */\nexport type SystemCommunicationAdapter_ManagesUnionDto = SystemCommunicationEdgeAdapterDto | SystemCommunicationMeshAdapterDto;\n\n/** A connection to `SystemCommunicationAdapter_ManagesUnion`. */\nexport type SystemCommunicationAdapter_ManagesUnionConnectionDto = {\n __typename?: 'SystemCommunicationAdapter_ManagesUnionConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemCommunicationAdapter_ManagesUnionEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemCommunicationAdapter_ManagesUnionDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemCommunicationAdapter_ManagesUnion`. */\nexport type SystemCommunicationAdapter_ManagesUnionEdgeDto = {\n __typename?: 'SystemCommunicationAdapter_ManagesUnionEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemCommunicationAdapter_ManagesUnionDto>;\n};\n\n/** Runtime entities of construction kit enum 'System.Communication/CommunicationState' */\nexport enum SystemCommunicationCommunicationStateDto {\n OfflineDto = 'OFFLINE',\n OnlineDto = 'ONLINE',\n UnregisteredDto = 'UNREGISTERED'\n}\n\n/** Runtime entities of construction kit enum 'System.Communication/ConfigurationState' */\nexport enum SystemCommunicationConfigurationStateDto {\n ConfiguredDto = 'CONFIGURED',\n ErrorDto = 'ERROR',\n PendingDto = 'PENDING',\n UnconfiguredDto = 'UNCONFIGURED'\n}\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/DataPipeline-1' */\nexport type SystemCommunicationDataPipelineDto = SystemEntityInterfaceDto & {\n __typename?: 'SystemCommunicationDataPipeline';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n children?: Maybe<SystemCommunicationPipeline_ChildrenUnionConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n description?: Maybe<Scalars['String']['output']>;\n name: Scalars['String']['output'];\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/DataPipeline-1' */\nexport type SystemCommunicationDataPipelineAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/DataPipeline-1' */\nexport type SystemCommunicationDataPipelineChildrenArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/DataPipeline-1' */\nexport type SystemCommunicationDataPipelineConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/DataPipeline-1' */\nexport type SystemCommunicationDataPipelineRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/DataPipeline-1' */\nexport type SystemCommunicationDataPipelineRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/DataPipeline-1' */\nexport type SystemCommunicationDataPipelineTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `SystemCommunicationDataPipeline`. */\nexport type SystemCommunicationDataPipelineConnectionDto = {\n __typename?: 'SystemCommunicationDataPipelineConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemCommunicationDataPipelineEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemCommunicationDataPipelineDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemCommunicationDataPipeline`. */\nexport type SystemCommunicationDataPipelineEdgeDto = {\n __typename?: 'SystemCommunicationDataPipelineEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemCommunicationDataPipelineDto>;\n};\n\nexport type SystemCommunicationDataPipelineInputDto = {\n children?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n description?: InputMaybe<Scalars['String']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n};\n\nexport type SystemCommunicationDataPipelineInputUpdateDto = {\n /** Item to update */\n item: SystemCommunicationDataPipelineInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\nexport type SystemCommunicationDataPipelineMutationsDto = {\n __typename?: 'SystemCommunicationDataPipelineMutations';\n /** Creates new entities of type 'SystemCommunicationDataPipeline'. */\n create?: Maybe<Array<Maybe<SystemCommunicationDataPipelineDto>>>;\n /** Updates existing entity of type 'SystemCommunicationDataPipeline'. */\n update?: Maybe<Array<Maybe<SystemCommunicationDataPipelineDto>>>;\n};\n\n\nexport type SystemCommunicationDataPipelineMutationsCreateArgsDto = {\n entities: Array<InputMaybe<SystemCommunicationDataPipelineInputDto>>;\n};\n\n\nexport type SystemCommunicationDataPipelineMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<SystemCommunicationDataPipelineInputUpdateDto>>;\n};\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/DataPipelineTrigger-1' */\nexport type SystemCommunicationDataPipelineTriggerDto = SystemCommunicationDeployableEntityInterfaceDto & SystemEntityInterfaceDto & {\n __typename?: 'SystemCommunicationDataPipelineTrigger';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n cronExpression: Scalars['String']['output'];\n deploymentState: SystemCommunicationDeploymentStateDto;\n description?: Maybe<Scalars['String']['output']>;\n enabled: Scalars['Boolean']['output'];\n name?: Maybe<Scalars['String']['output']>;\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n statusMessage?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n triggers?: Maybe<SystemCommunicationMeshPipeline_TriggersUnionConnectionDto>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/DataPipelineTrigger-1' */\nexport type SystemCommunicationDataPipelineTriggerAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/DataPipelineTrigger-1' */\nexport type SystemCommunicationDataPipelineTriggerConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/DataPipelineTrigger-1' */\nexport type SystemCommunicationDataPipelineTriggerRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/DataPipelineTrigger-1' */\nexport type SystemCommunicationDataPipelineTriggerRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/DataPipelineTrigger-1' */\nexport type SystemCommunicationDataPipelineTriggerTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/DataPipelineTrigger-1' */\nexport type SystemCommunicationDataPipelineTriggerTriggersArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `SystemCommunicationDataPipelineTrigger`. */\nexport type SystemCommunicationDataPipelineTriggerConnectionDto = {\n __typename?: 'SystemCommunicationDataPipelineTriggerConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemCommunicationDataPipelineTriggerEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemCommunicationDataPipelineTriggerDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemCommunicationDataPipelineTrigger`. */\nexport type SystemCommunicationDataPipelineTriggerEdgeDto = {\n __typename?: 'SystemCommunicationDataPipelineTriggerEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemCommunicationDataPipelineTriggerDto>;\n};\n\nexport type SystemCommunicationDataPipelineTriggerInputDto = {\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n cronExpression?: InputMaybe<Scalars['String']['input']>;\n deploymentState?: InputMaybe<SystemCommunicationDeploymentStateDto>;\n description?: InputMaybe<Scalars['String']['input']>;\n enabled?: InputMaybe<Scalars['Boolean']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n statusMessage?: InputMaybe<Scalars['String']['input']>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n triggers?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n};\n\nexport type SystemCommunicationDataPipelineTriggerInputUpdateDto = {\n /** Item to update */\n item: SystemCommunicationDataPipelineTriggerInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\nexport type SystemCommunicationDataPipelineTriggerMutationsDto = {\n __typename?: 'SystemCommunicationDataPipelineTriggerMutations';\n /** Creates new entities of type 'SystemCommunicationDataPipelineTrigger'. */\n create?: Maybe<Array<Maybe<SystemCommunicationDataPipelineTriggerDto>>>;\n /** Updates existing entity of type 'SystemCommunicationDataPipelineTrigger'. */\n update?: Maybe<Array<Maybe<SystemCommunicationDataPipelineTriggerDto>>>;\n};\n\n\nexport type SystemCommunicationDataPipelineTriggerMutationsCreateArgsDto = {\n entities: Array<InputMaybe<SystemCommunicationDataPipelineTriggerInputDto>>;\n};\n\n\nexport type SystemCommunicationDataPipelineTriggerMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<SystemCommunicationDataPipelineTriggerInputUpdateDto>>;\n};\n\nexport type SystemCommunicationDataPipelineTriggerUpdateDto = {\n __typename?: 'SystemCommunicationDataPipelineTriggerUpdate';\n /** The corresponding item */\n item?: Maybe<SystemCommunicationDataPipelineTriggerDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemCommunicationDataPipelineTriggerUpdateMessageDto = {\n __typename?: 'SystemCommunicationDataPipelineTriggerUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemCommunicationDataPipelineTriggerUpdateDto>>>;\n};\n\n/** Union of types derived from System.Communication/DataPipelineTrigger for TriggeredBy association */\nexport type SystemCommunicationDataPipelineTrigger_TriggeredByUnionDto = SystemCommunicationDataPipelineTriggerDto;\n\n/** A connection to `SystemCommunicationDataPipelineTrigger_TriggeredByUnion`. */\nexport type SystemCommunicationDataPipelineTrigger_TriggeredByUnionConnectionDto = {\n __typename?: 'SystemCommunicationDataPipelineTrigger_TriggeredByUnionConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemCommunicationDataPipelineTrigger_TriggeredByUnionEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemCommunicationDataPipelineTrigger_TriggeredByUnionDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemCommunicationDataPipelineTrigger_TriggeredByUnion`. */\nexport type SystemCommunicationDataPipelineTrigger_TriggeredByUnionEdgeDto = {\n __typename?: 'SystemCommunicationDataPipelineTrigger_TriggeredByUnionEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemCommunicationDataPipelineTrigger_TriggeredByUnionDto>;\n};\n\nexport type SystemCommunicationDataPipelineUpdateDto = {\n __typename?: 'SystemCommunicationDataPipelineUpdate';\n /** The corresponding item */\n item?: Maybe<SystemCommunicationDataPipelineDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemCommunicationDataPipelineUpdateMessageDto = {\n __typename?: 'SystemCommunicationDataPipelineUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemCommunicationDataPipelineUpdateDto>>>;\n};\n\n/** Union of types derived from System.Communication/DataPipeline for Parent association */\nexport type SystemCommunicationDataPipeline_ParentUnionDto = SystemCommunicationDataPipelineDto;\n\n/** A connection to `SystemCommunicationDataPipeline_ParentUnion`. */\nexport type SystemCommunicationDataPipeline_ParentUnionConnectionDto = {\n __typename?: 'SystemCommunicationDataPipeline_ParentUnionConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemCommunicationDataPipeline_ParentUnionEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemCommunicationDataPipeline_ParentUnionDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemCommunicationDataPipeline_ParentUnion`. */\nexport type SystemCommunicationDataPipeline_ParentUnionEdgeDto = {\n __typename?: 'SystemCommunicationDataPipeline_ParentUnionEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemCommunicationDataPipeline_ParentUnionDto>;\n};\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/DeployableEntity-1' */\nexport type SystemCommunicationDeployableEntityDto = SystemEntityInterfaceDto & {\n __typename?: 'SystemCommunicationDeployableEntity';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n deploymentState: SystemCommunicationDeploymentStateDto;\n description?: Maybe<Scalars['String']['output']>;\n name?: Maybe<Scalars['String']['output']>;\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n statusMessage?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/DeployableEntity-1' */\nexport type SystemCommunicationDeployableEntityAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/DeployableEntity-1' */\nexport type SystemCommunicationDeployableEntityConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/DeployableEntity-1' */\nexport type SystemCommunicationDeployableEntityRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/DeployableEntity-1' */\nexport type SystemCommunicationDeployableEntityRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/DeployableEntity-1' */\nexport type SystemCommunicationDeployableEntityTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `SystemCommunicationDeployableEntity`. */\nexport type SystemCommunicationDeployableEntityConnectionDto = {\n __typename?: 'SystemCommunicationDeployableEntityConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemCommunicationDeployableEntityEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemCommunicationDeployableEntityDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemCommunicationDeployableEntity`. */\nexport type SystemCommunicationDeployableEntityEdgeDto = {\n __typename?: 'SystemCommunicationDeployableEntityEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemCommunicationDeployableEntityDto>;\n};\n\n/** Interface for runtime entities of construction kit type 'System.Communication-2.0.3/DeployableEntity-1' */\nexport type SystemCommunicationDeployableEntityInterfaceDto = {\n ckTypeId: Scalars['RtCkTypeId']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n deploymentState: SystemCommunicationDeploymentStateDto;\n description?: Maybe<Scalars['String']['output']>;\n name?: Maybe<Scalars['String']['output']>;\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n statusMessage?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n};\n\n\n/** Interface for runtime entities of construction kit type 'System.Communication-2.0.3/DeployableEntity-1' */\nexport type SystemCommunicationDeployableEntityInterfaceConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Interface for runtime entities of construction kit type 'System.Communication-2.0.3/DeployableEntity-1' */\nexport type SystemCommunicationDeployableEntityInterfaceRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Interface for runtime entities of construction kit type 'System.Communication-2.0.3/DeployableEntity-1' */\nexport type SystemCommunicationDeployableEntityInterfaceRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Interface for runtime entities of construction kit type 'System.Communication-2.0.3/DeployableEntity-1' */\nexport type SystemCommunicationDeployableEntityInterfaceTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\nexport type SystemCommunicationDeployableEntityUpdateDto = {\n __typename?: 'SystemCommunicationDeployableEntityUpdate';\n /** The corresponding item */\n item?: Maybe<SystemCommunicationDeployableEntityDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemCommunicationDeployableEntityUpdateMessageDto = {\n __typename?: 'SystemCommunicationDeployableEntityUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemCommunicationDeployableEntityUpdateDto>>>;\n};\n\n/** Runtime entities of construction kit enum 'System.Communication/DeploymentState' */\nexport enum SystemCommunicationDeploymentStateDto {\n DeployedDto = 'DEPLOYED',\n ErrorDto = 'ERROR',\n PendingDto = 'PENDING',\n UndeployedDto = 'UNDEPLOYED'\n}\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/EMailSenderConfiguration-1' */\nexport type SystemCommunicationEMailSenderConfigurationDto = SystemConfigurationInterfaceDto & SystemEntityInterfaceDto & {\n __typename?: 'SystemCommunicationEMailSenderConfiguration';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n host: Scalars['String']['output'];\n isSslEnabled: Scalars['Boolean']['output'];\n password: Scalars['String']['output'];\n port: Scalars['Int']['output'];\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n senderEmail?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n usedBy?: Maybe<SystemCommunicationPipeline_UsedByUnionConnectionDto>;\n username: Scalars['String']['output'];\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/EMailSenderConfiguration-1' */\nexport type SystemCommunicationEMailSenderConfigurationAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/EMailSenderConfiguration-1' */\nexport type SystemCommunicationEMailSenderConfigurationConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/EMailSenderConfiguration-1' */\nexport type SystemCommunicationEMailSenderConfigurationRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/EMailSenderConfiguration-1' */\nexport type SystemCommunicationEMailSenderConfigurationRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/EMailSenderConfiguration-1' */\nexport type SystemCommunicationEMailSenderConfigurationTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/EMailSenderConfiguration-1' */\nexport type SystemCommunicationEMailSenderConfigurationUsedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `SystemCommunicationEMailSenderConfiguration`. */\nexport type SystemCommunicationEMailSenderConfigurationConnectionDto = {\n __typename?: 'SystemCommunicationEMailSenderConfigurationConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemCommunicationEMailSenderConfigurationEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemCommunicationEMailSenderConfigurationDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemCommunicationEMailSenderConfiguration`. */\nexport type SystemCommunicationEMailSenderConfigurationEdgeDto = {\n __typename?: 'SystemCommunicationEMailSenderConfigurationEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemCommunicationEMailSenderConfigurationDto>;\n};\n\nexport type SystemCommunicationEMailSenderConfigurationInputDto = {\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n host?: InputMaybe<Scalars['String']['input']>;\n isSslEnabled?: InputMaybe<Scalars['Boolean']['input']>;\n password?: InputMaybe<Scalars['String']['input']>;\n port?: InputMaybe<Scalars['Int']['input']>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n senderEmail?: InputMaybe<Scalars['String']['input']>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n usedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n username?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type SystemCommunicationEMailSenderConfigurationInputUpdateDto = {\n /** Item to update */\n item: SystemCommunicationEMailSenderConfigurationInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\nexport type SystemCommunicationEMailSenderConfigurationMutationsDto = {\n __typename?: 'SystemCommunicationEMailSenderConfigurationMutations';\n /** Creates new entities of type 'SystemCommunicationEMailSenderConfiguration'. */\n create?: Maybe<Array<Maybe<SystemCommunicationEMailSenderConfigurationDto>>>;\n /** Updates existing entity of type 'SystemCommunicationEMailSenderConfiguration'. */\n update?: Maybe<Array<Maybe<SystemCommunicationEMailSenderConfigurationDto>>>;\n};\n\n\nexport type SystemCommunicationEMailSenderConfigurationMutationsCreateArgsDto = {\n entities: Array<InputMaybe<SystemCommunicationEMailSenderConfigurationInputDto>>;\n};\n\n\nexport type SystemCommunicationEMailSenderConfigurationMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<SystemCommunicationEMailSenderConfigurationInputUpdateDto>>;\n};\n\nexport type SystemCommunicationEMailSenderConfigurationUpdateDto = {\n __typename?: 'SystemCommunicationEMailSenderConfigurationUpdate';\n /** The corresponding item */\n item?: Maybe<SystemCommunicationEMailSenderConfigurationDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemCommunicationEMailSenderConfigurationUpdateMessageDto = {\n __typename?: 'SystemCommunicationEMailSenderConfigurationUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemCommunicationEMailSenderConfigurationUpdateDto>>>;\n};\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/EdgeAdapter-1' */\nexport type SystemCommunicationEdgeAdapterDto = SystemCommunicationAdapterInterfaceDto & SystemCommunicationDeployableEntityInterfaceDto & SystemEntityInterfaceDto & {\n __typename?: 'SystemCommunicationEdgeAdapter';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n communicationState: SystemCommunicationCommunicationStateDto;\n communicationStateTimestamp?: Maybe<Scalars['DateTime']['output']>;\n configuration?: Maybe<Scalars['String']['output']>;\n configurationState: SystemCommunicationConfigurationStateDto;\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n deploymentState: SystemCommunicationDeploymentStateDto;\n description?: Maybe<Scalars['String']['output']>;\n executes?: Maybe<SystemCommunicationPipeline_ExecutesUnionConnectionDto>;\n executingAdapter?: Maybe<SystemCommunicationPipelineExecution_ExecutingAdapterUnionConnectionDto>;\n imageName?: Maybe<Scalars['String']['output']>;\n imageVersion?: Maybe<Scalars['String']['output']>;\n lastSyncedSequenceNumber: Scalars['Int']['output'];\n managedBy?: Maybe<SystemCommunicationPool_ManagedByUnionConnectionDto>;\n name?: Maybe<Scalars['String']['output']>;\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n statusMessage?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/EdgeAdapter-1' */\nexport type SystemCommunicationEdgeAdapterAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/EdgeAdapter-1' */\nexport type SystemCommunicationEdgeAdapterConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/EdgeAdapter-1' */\nexport type SystemCommunicationEdgeAdapterExecutesArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/EdgeAdapter-1' */\nexport type SystemCommunicationEdgeAdapterExecutingAdapterArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/EdgeAdapter-1' */\nexport type SystemCommunicationEdgeAdapterManagedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/EdgeAdapter-1' */\nexport type SystemCommunicationEdgeAdapterRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/EdgeAdapter-1' */\nexport type SystemCommunicationEdgeAdapterRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/EdgeAdapter-1' */\nexport type SystemCommunicationEdgeAdapterTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `SystemCommunicationEdgeAdapter`. */\nexport type SystemCommunicationEdgeAdapterConnectionDto = {\n __typename?: 'SystemCommunicationEdgeAdapterConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemCommunicationEdgeAdapterEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemCommunicationEdgeAdapterDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemCommunicationEdgeAdapter`. */\nexport type SystemCommunicationEdgeAdapterEdgeDto = {\n __typename?: 'SystemCommunicationEdgeAdapterEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemCommunicationEdgeAdapterDto>;\n};\n\nexport type SystemCommunicationEdgeAdapterInputDto = {\n communicationState?: InputMaybe<SystemCommunicationCommunicationStateDto>;\n communicationStateTimestamp?: InputMaybe<Scalars['DateTime']['input']>;\n configuration?: InputMaybe<Scalars['String']['input']>;\n configurationState?: InputMaybe<SystemCommunicationConfigurationStateDto>;\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n deploymentState?: InputMaybe<SystemCommunicationDeploymentStateDto>;\n description?: InputMaybe<Scalars['String']['input']>;\n executes?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n executingAdapter?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n imageName?: InputMaybe<Scalars['String']['input']>;\n imageVersion?: InputMaybe<Scalars['String']['input']>;\n lastSyncedSequenceNumber?: InputMaybe<Scalars['Int']['input']>;\n managedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n name?: InputMaybe<Scalars['String']['input']>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n statusMessage?: InputMaybe<Scalars['String']['input']>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n};\n\nexport type SystemCommunicationEdgeAdapterInputUpdateDto = {\n /** Item to update */\n item: SystemCommunicationEdgeAdapterInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\nexport type SystemCommunicationEdgeAdapterMutationsDto = {\n __typename?: 'SystemCommunicationEdgeAdapterMutations';\n /** Creates new entities of type 'SystemCommunicationEdgeAdapter'. */\n create?: Maybe<Array<Maybe<SystemCommunicationEdgeAdapterDto>>>;\n /** Updates existing entity of type 'SystemCommunicationEdgeAdapter'. */\n update?: Maybe<Array<Maybe<SystemCommunicationEdgeAdapterDto>>>;\n};\n\n\nexport type SystemCommunicationEdgeAdapterMutationsCreateArgsDto = {\n entities: Array<InputMaybe<SystemCommunicationEdgeAdapterInputDto>>;\n};\n\n\nexport type SystemCommunicationEdgeAdapterMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<SystemCommunicationEdgeAdapterInputUpdateDto>>;\n};\n\nexport type SystemCommunicationEdgeAdapterUpdateDto = {\n __typename?: 'SystemCommunicationEdgeAdapterUpdate';\n /** The corresponding item */\n item?: Maybe<SystemCommunicationEdgeAdapterDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemCommunicationEdgeAdapterUpdateMessageDto = {\n __typename?: 'SystemCommunicationEdgeAdapterUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemCommunicationEdgeAdapterUpdateDto>>>;\n};\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/EdgePipeline-1' */\nexport type SystemCommunicationEdgePipelineDto = SystemCommunicationDeployableEntityInterfaceDto & SystemCommunicationPipelineInterfaceDto & SystemEntityInterfaceDto & {\n __typename?: 'SystemCommunicationEdgePipeline';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n currentExecutionId?: Maybe<Scalars['String']['output']>;\n deploymentState: SystemCommunicationDeploymentStateDto;\n description?: Maybe<Scalars['String']['output']>;\n enabled: Scalars['Boolean']['output'];\n executedBy?: Maybe<SystemCommunicationAdapter_ExecutedByUnionConnectionDto>;\n executedPipeline?: Maybe<SystemCommunicationPipelineExecution_ExecutedPipelineUnionConnectionDto>;\n isExecuting: Scalars['Boolean']['output'];\n isUsing?: Maybe<SystemConfiguration_IsUsingUnionConnectionDto>;\n name?: Maybe<Scalars['String']['output']>;\n parent?: Maybe<SystemCommunicationDataPipeline_ParentUnionConnectionDto>;\n pipelineDefinition: Scalars['String']['output'];\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n statisticsForPipeline?: Maybe<SystemCommunicationPipelineStatistics_StatisticsForPipelineUnionConnectionDto>;\n statusMessage?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/EdgePipeline-1' */\nexport type SystemCommunicationEdgePipelineAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/EdgePipeline-1' */\nexport type SystemCommunicationEdgePipelineConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/EdgePipeline-1' */\nexport type SystemCommunicationEdgePipelineExecutedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/EdgePipeline-1' */\nexport type SystemCommunicationEdgePipelineExecutedPipelineArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/EdgePipeline-1' */\nexport type SystemCommunicationEdgePipelineIsUsingArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/EdgePipeline-1' */\nexport type SystemCommunicationEdgePipelineParentArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/EdgePipeline-1' */\nexport type SystemCommunicationEdgePipelineRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/EdgePipeline-1' */\nexport type SystemCommunicationEdgePipelineRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/EdgePipeline-1' */\nexport type SystemCommunicationEdgePipelineStatisticsForPipelineArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/EdgePipeline-1' */\nexport type SystemCommunicationEdgePipelineTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `SystemCommunicationEdgePipeline`. */\nexport type SystemCommunicationEdgePipelineConnectionDto = {\n __typename?: 'SystemCommunicationEdgePipelineConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemCommunicationEdgePipelineEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemCommunicationEdgePipelineDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemCommunicationEdgePipeline`. */\nexport type SystemCommunicationEdgePipelineEdgeDto = {\n __typename?: 'SystemCommunicationEdgePipelineEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemCommunicationEdgePipelineDto>;\n};\n\nexport type SystemCommunicationEdgePipelineInputDto = {\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n currentExecutionId?: InputMaybe<Scalars['String']['input']>;\n deploymentState?: InputMaybe<SystemCommunicationDeploymentStateDto>;\n description?: InputMaybe<Scalars['String']['input']>;\n enabled?: InputMaybe<Scalars['Boolean']['input']>;\n executedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n executedPipeline?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n isExecuting?: InputMaybe<Scalars['Boolean']['input']>;\n isUsing?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n name?: InputMaybe<Scalars['String']['input']>;\n parent?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n pipelineDefinition?: InputMaybe<Scalars['String']['input']>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n statisticsForPipeline?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n statusMessage?: InputMaybe<Scalars['String']['input']>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n};\n\nexport type SystemCommunicationEdgePipelineInputUpdateDto = {\n /** Item to update */\n item: SystemCommunicationEdgePipelineInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\nexport type SystemCommunicationEdgePipelineMutationsDto = {\n __typename?: 'SystemCommunicationEdgePipelineMutations';\n /** Creates new entities of type 'SystemCommunicationEdgePipeline'. */\n create?: Maybe<Array<Maybe<SystemCommunicationEdgePipelineDto>>>;\n /** Updates existing entity of type 'SystemCommunicationEdgePipeline'. */\n update?: Maybe<Array<Maybe<SystemCommunicationEdgePipelineDto>>>;\n};\n\n\nexport type SystemCommunicationEdgePipelineMutationsCreateArgsDto = {\n entities: Array<InputMaybe<SystemCommunicationEdgePipelineInputDto>>;\n};\n\n\nexport type SystemCommunicationEdgePipelineMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<SystemCommunicationEdgePipelineInputUpdateDto>>;\n};\n\nexport type SystemCommunicationEdgePipelineUpdateDto = {\n __typename?: 'SystemCommunicationEdgePipelineUpdate';\n /** The corresponding item */\n item?: Maybe<SystemCommunicationEdgePipelineDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemCommunicationEdgePipelineUpdateMessageDto = {\n __typename?: 'SystemCommunicationEdgePipelineUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemCommunicationEdgePipelineUpdateDto>>>;\n};\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/EnergyCommunityConfiguration-1' */\nexport type SystemCommunicationEnergyCommunityConfigurationDto = SystemConfigurationInterfaceDto & SystemEntityInterfaceDto & {\n __typename?: 'SystemCommunicationEnergyCommunityConfiguration';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n colors?: Maybe<SystemCommunicationUiThemeColorsDto>;\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n consumerPrice: Scalars['Decimal']['output'];\n consumptionRecordRequestDelay: Scalars['Int']['output'];\n energyCommunityId: Scalars['String']['output'];\n farmerTaxRate: Scalars['Decimal']['output'];\n footerLogo?: Maybe<LargeBinaryInfoDto>;\n headerLogo?: Maybe<LargeBinaryInfoDto>;\n partnerId: Scalars['String']['output'];\n producerPrice: Scalars['Decimal']['output'];\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n taxRate: Scalars['Decimal']['output'];\n usedBy?: Maybe<SystemCommunicationPipeline_UsedByUnionConnectionDto>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/EnergyCommunityConfiguration-1' */\nexport type SystemCommunicationEnergyCommunityConfigurationAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/EnergyCommunityConfiguration-1' */\nexport type SystemCommunicationEnergyCommunityConfigurationConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/EnergyCommunityConfiguration-1' */\nexport type SystemCommunicationEnergyCommunityConfigurationRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/EnergyCommunityConfiguration-1' */\nexport type SystemCommunicationEnergyCommunityConfigurationRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/EnergyCommunityConfiguration-1' */\nexport type SystemCommunicationEnergyCommunityConfigurationTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/EnergyCommunityConfiguration-1' */\nexport type SystemCommunicationEnergyCommunityConfigurationUsedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `SystemCommunicationEnergyCommunityConfiguration`. */\nexport type SystemCommunicationEnergyCommunityConfigurationConnectionDto = {\n __typename?: 'SystemCommunicationEnergyCommunityConfigurationConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemCommunicationEnergyCommunityConfigurationEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemCommunicationEnergyCommunityConfigurationDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemCommunicationEnergyCommunityConfiguration`. */\nexport type SystemCommunicationEnergyCommunityConfigurationEdgeDto = {\n __typename?: 'SystemCommunicationEnergyCommunityConfigurationEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemCommunicationEnergyCommunityConfigurationDto>;\n};\n\nexport type SystemCommunicationEnergyCommunityConfigurationInputDto = {\n colors?: InputMaybe<SystemCommunicationUiThemeColorsInputDto>;\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n consumerPrice?: InputMaybe<Scalars['Decimal']['input']>;\n consumptionRecordRequestDelay?: InputMaybe<Scalars['Int']['input']>;\n energyCommunityId?: InputMaybe<Scalars['String']['input']>;\n farmerTaxRate?: InputMaybe<Scalars['Decimal']['input']>;\n footerLogo?: InputMaybe<Scalars['LargeBinary']['input']>;\n headerLogo?: InputMaybe<Scalars['LargeBinary']['input']>;\n partnerId?: InputMaybe<Scalars['String']['input']>;\n producerPrice?: InputMaybe<Scalars['Decimal']['input']>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n taxRate?: InputMaybe<Scalars['Decimal']['input']>;\n usedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n};\n\nexport type SystemCommunicationEnergyCommunityConfigurationInputUpdateDto = {\n /** Item to update */\n item: SystemCommunicationEnergyCommunityConfigurationInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\nexport type SystemCommunicationEnergyCommunityConfigurationMutationsDto = {\n __typename?: 'SystemCommunicationEnergyCommunityConfigurationMutations';\n /** Creates new entities of type 'SystemCommunicationEnergyCommunityConfiguration'. */\n create?: Maybe<Array<Maybe<SystemCommunicationEnergyCommunityConfigurationDto>>>;\n /** Updates existing entity of type 'SystemCommunicationEnergyCommunityConfiguration'. */\n update?: Maybe<Array<Maybe<SystemCommunicationEnergyCommunityConfigurationDto>>>;\n};\n\n\nexport type SystemCommunicationEnergyCommunityConfigurationMutationsCreateArgsDto = {\n entities: Array<InputMaybe<SystemCommunicationEnergyCommunityConfigurationInputDto>>;\n};\n\n\nexport type SystemCommunicationEnergyCommunityConfigurationMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<SystemCommunicationEnergyCommunityConfigurationInputUpdateDto>>;\n};\n\nexport type SystemCommunicationEnergyCommunityConfigurationUpdateDto = {\n __typename?: 'SystemCommunicationEnergyCommunityConfigurationUpdate';\n /** The corresponding item */\n item?: Maybe<SystemCommunicationEnergyCommunityConfigurationDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemCommunicationEnergyCommunityConfigurationUpdateMessageDto = {\n __typename?: 'SystemCommunicationEnergyCommunityConfigurationUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemCommunicationEnergyCommunityConfigurationUpdateDto>>>;\n};\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/MeshAdapter-1' */\nexport type SystemCommunicationMeshAdapterDto = SystemCommunicationAdapterInterfaceDto & SystemCommunicationDeployableEntityInterfaceDto & SystemEntityInterfaceDto & {\n __typename?: 'SystemCommunicationMeshAdapter';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n communicationState: SystemCommunicationCommunicationStateDto;\n communicationStateTimestamp?: Maybe<Scalars['DateTime']['output']>;\n configuration?: Maybe<Scalars['String']['output']>;\n configurationState: SystemCommunicationConfigurationStateDto;\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n deploymentState: SystemCommunicationDeploymentStateDto;\n description?: Maybe<Scalars['String']['output']>;\n executes?: Maybe<SystemCommunicationPipeline_ExecutesUnionConnectionDto>;\n executingAdapter?: Maybe<SystemCommunicationPipelineExecution_ExecutingAdapterUnionConnectionDto>;\n imageName?: Maybe<Scalars['String']['output']>;\n imageVersion?: Maybe<Scalars['String']['output']>;\n lastSyncedSequenceNumber: Scalars['Int']['output'];\n managedBy?: Maybe<SystemCommunicationPool_ManagedByUnionConnectionDto>;\n name?: Maybe<Scalars['String']['output']>;\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n statusMessage?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/MeshAdapter-1' */\nexport type SystemCommunicationMeshAdapterAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/MeshAdapter-1' */\nexport type SystemCommunicationMeshAdapterConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/MeshAdapter-1' */\nexport type SystemCommunicationMeshAdapterExecutesArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/MeshAdapter-1' */\nexport type SystemCommunicationMeshAdapterExecutingAdapterArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/MeshAdapter-1' */\nexport type SystemCommunicationMeshAdapterManagedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/MeshAdapter-1' */\nexport type SystemCommunicationMeshAdapterRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/MeshAdapter-1' */\nexport type SystemCommunicationMeshAdapterRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/MeshAdapter-1' */\nexport type SystemCommunicationMeshAdapterTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `SystemCommunicationMeshAdapter`. */\nexport type SystemCommunicationMeshAdapterConnectionDto = {\n __typename?: 'SystemCommunicationMeshAdapterConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemCommunicationMeshAdapterEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemCommunicationMeshAdapterDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemCommunicationMeshAdapter`. */\nexport type SystemCommunicationMeshAdapterEdgeDto = {\n __typename?: 'SystemCommunicationMeshAdapterEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemCommunicationMeshAdapterDto>;\n};\n\nexport type SystemCommunicationMeshAdapterInputDto = {\n communicationState?: InputMaybe<SystemCommunicationCommunicationStateDto>;\n communicationStateTimestamp?: InputMaybe<Scalars['DateTime']['input']>;\n configuration?: InputMaybe<Scalars['String']['input']>;\n configurationState?: InputMaybe<SystemCommunicationConfigurationStateDto>;\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n deploymentState?: InputMaybe<SystemCommunicationDeploymentStateDto>;\n description?: InputMaybe<Scalars['String']['input']>;\n executes?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n executingAdapter?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n imageName?: InputMaybe<Scalars['String']['input']>;\n imageVersion?: InputMaybe<Scalars['String']['input']>;\n lastSyncedSequenceNumber?: InputMaybe<Scalars['Int']['input']>;\n managedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n name?: InputMaybe<Scalars['String']['input']>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n statusMessage?: InputMaybe<Scalars['String']['input']>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n};\n\nexport type SystemCommunicationMeshAdapterInputUpdateDto = {\n /** Item to update */\n item: SystemCommunicationMeshAdapterInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\nexport type SystemCommunicationMeshAdapterMutationsDto = {\n __typename?: 'SystemCommunicationMeshAdapterMutations';\n /** Creates new entities of type 'SystemCommunicationMeshAdapter'. */\n create?: Maybe<Array<Maybe<SystemCommunicationMeshAdapterDto>>>;\n /** Updates existing entity of type 'SystemCommunicationMeshAdapter'. */\n update?: Maybe<Array<Maybe<SystemCommunicationMeshAdapterDto>>>;\n};\n\n\nexport type SystemCommunicationMeshAdapterMutationsCreateArgsDto = {\n entities: Array<InputMaybe<SystemCommunicationMeshAdapterInputDto>>;\n};\n\n\nexport type SystemCommunicationMeshAdapterMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<SystemCommunicationMeshAdapterInputUpdateDto>>;\n};\n\nexport type SystemCommunicationMeshAdapterUpdateDto = {\n __typename?: 'SystemCommunicationMeshAdapterUpdate';\n /** The corresponding item */\n item?: Maybe<SystemCommunicationMeshAdapterDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemCommunicationMeshAdapterUpdateMessageDto = {\n __typename?: 'SystemCommunicationMeshAdapterUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemCommunicationMeshAdapterUpdateDto>>>;\n};\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/MeshPipeline-1' */\nexport type SystemCommunicationMeshPipelineDto = SystemCommunicationDeployableEntityInterfaceDto & SystemCommunicationPipelineInterfaceDto & SystemEntityInterfaceDto & {\n __typename?: 'SystemCommunicationMeshPipeline';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n currentExecutionId?: Maybe<Scalars['String']['output']>;\n deploymentState: SystemCommunicationDeploymentStateDto;\n description?: Maybe<Scalars['String']['output']>;\n enabled: Scalars['Boolean']['output'];\n executedBy?: Maybe<SystemCommunicationAdapter_ExecutedByUnionConnectionDto>;\n executedPipeline?: Maybe<SystemCommunicationPipelineExecution_ExecutedPipelineUnionConnectionDto>;\n isExecuting: Scalars['Boolean']['output'];\n isUsing?: Maybe<SystemConfiguration_IsUsingUnionConnectionDto>;\n name?: Maybe<Scalars['String']['output']>;\n parent?: Maybe<SystemCommunicationDataPipeline_ParentUnionConnectionDto>;\n pipelineDefinition: Scalars['String']['output'];\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n statisticsForPipeline?: Maybe<SystemCommunicationPipelineStatistics_StatisticsForPipelineUnionConnectionDto>;\n statusMessage?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n triggeredBy?: Maybe<SystemCommunicationDataPipelineTrigger_TriggeredByUnionConnectionDto>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/MeshPipeline-1' */\nexport type SystemCommunicationMeshPipelineAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/MeshPipeline-1' */\nexport type SystemCommunicationMeshPipelineConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/MeshPipeline-1' */\nexport type SystemCommunicationMeshPipelineExecutedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/MeshPipeline-1' */\nexport type SystemCommunicationMeshPipelineExecutedPipelineArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/MeshPipeline-1' */\nexport type SystemCommunicationMeshPipelineIsUsingArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/MeshPipeline-1' */\nexport type SystemCommunicationMeshPipelineParentArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/MeshPipeline-1' */\nexport type SystemCommunicationMeshPipelineRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/MeshPipeline-1' */\nexport type SystemCommunicationMeshPipelineRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/MeshPipeline-1' */\nexport type SystemCommunicationMeshPipelineStatisticsForPipelineArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/MeshPipeline-1' */\nexport type SystemCommunicationMeshPipelineTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/MeshPipeline-1' */\nexport type SystemCommunicationMeshPipelineTriggeredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `SystemCommunicationMeshPipeline`. */\nexport type SystemCommunicationMeshPipelineConnectionDto = {\n __typename?: 'SystemCommunicationMeshPipelineConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemCommunicationMeshPipelineEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemCommunicationMeshPipelineDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemCommunicationMeshPipeline`. */\nexport type SystemCommunicationMeshPipelineEdgeDto = {\n __typename?: 'SystemCommunicationMeshPipelineEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemCommunicationMeshPipelineDto>;\n};\n\nexport type SystemCommunicationMeshPipelineInputDto = {\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n currentExecutionId?: InputMaybe<Scalars['String']['input']>;\n deploymentState?: InputMaybe<SystemCommunicationDeploymentStateDto>;\n description?: InputMaybe<Scalars['String']['input']>;\n enabled?: InputMaybe<Scalars['Boolean']['input']>;\n executedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n executedPipeline?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n isExecuting?: InputMaybe<Scalars['Boolean']['input']>;\n isUsing?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n name?: InputMaybe<Scalars['String']['input']>;\n parent?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n pipelineDefinition?: InputMaybe<Scalars['String']['input']>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n statisticsForPipeline?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n statusMessage?: InputMaybe<Scalars['String']['input']>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n triggeredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n};\n\nexport type SystemCommunicationMeshPipelineInputUpdateDto = {\n /** Item to update */\n item: SystemCommunicationMeshPipelineInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\nexport type SystemCommunicationMeshPipelineMutationsDto = {\n __typename?: 'SystemCommunicationMeshPipelineMutations';\n /** Creates new entities of type 'SystemCommunicationMeshPipeline'. */\n create?: Maybe<Array<Maybe<SystemCommunicationMeshPipelineDto>>>;\n /** Updates existing entity of type 'SystemCommunicationMeshPipeline'. */\n update?: Maybe<Array<Maybe<SystemCommunicationMeshPipelineDto>>>;\n};\n\n\nexport type SystemCommunicationMeshPipelineMutationsCreateArgsDto = {\n entities: Array<InputMaybe<SystemCommunicationMeshPipelineInputDto>>;\n};\n\n\nexport type SystemCommunicationMeshPipelineMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<SystemCommunicationMeshPipelineInputUpdateDto>>;\n};\n\nexport type SystemCommunicationMeshPipelineUpdateDto = {\n __typename?: 'SystemCommunicationMeshPipelineUpdate';\n /** The corresponding item */\n item?: Maybe<SystemCommunicationMeshPipelineDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemCommunicationMeshPipelineUpdateMessageDto = {\n __typename?: 'SystemCommunicationMeshPipelineUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemCommunicationMeshPipelineUpdateDto>>>;\n};\n\n/** Union of types derived from System.Communication/MeshPipeline for Triggers association */\nexport type SystemCommunicationMeshPipeline_TriggersUnionDto = SystemCommunicationMeshPipelineDto;\n\n/** A connection to `SystemCommunicationMeshPipeline_TriggersUnion`. */\nexport type SystemCommunicationMeshPipeline_TriggersUnionConnectionDto = {\n __typename?: 'SystemCommunicationMeshPipeline_TriggersUnionConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemCommunicationMeshPipeline_TriggersUnionEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemCommunicationMeshPipeline_TriggersUnionDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemCommunicationMeshPipeline_TriggersUnion`. */\nexport type SystemCommunicationMeshPipeline_TriggersUnionEdgeDto = {\n __typename?: 'SystemCommunicationMeshPipeline_TriggersUnionEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemCommunicationMeshPipeline_TriggersUnionDto>;\n};\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/Pipeline-1' */\nexport type SystemCommunicationPipelineDto = SystemCommunicationDeployableEntityInterfaceDto & SystemEntityInterfaceDto & {\n __typename?: 'SystemCommunicationPipeline';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n currentExecutionId?: Maybe<Scalars['String']['output']>;\n deploymentState: SystemCommunicationDeploymentStateDto;\n description?: Maybe<Scalars['String']['output']>;\n enabled: Scalars['Boolean']['output'];\n executedBy?: Maybe<SystemCommunicationAdapter_ExecutedByUnionConnectionDto>;\n executedPipeline?: Maybe<SystemCommunicationPipelineExecution_ExecutedPipelineUnionConnectionDto>;\n isExecuting: Scalars['Boolean']['output'];\n isUsing?: Maybe<SystemConfiguration_IsUsingUnionConnectionDto>;\n name?: Maybe<Scalars['String']['output']>;\n parent?: Maybe<SystemCommunicationDataPipeline_ParentUnionConnectionDto>;\n pipelineDefinition: Scalars['String']['output'];\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n statisticsForPipeline?: Maybe<SystemCommunicationPipelineStatistics_StatisticsForPipelineUnionConnectionDto>;\n statusMessage?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/Pipeline-1' */\nexport type SystemCommunicationPipelineAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/Pipeline-1' */\nexport type SystemCommunicationPipelineConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/Pipeline-1' */\nexport type SystemCommunicationPipelineExecutedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/Pipeline-1' */\nexport type SystemCommunicationPipelineExecutedPipelineArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/Pipeline-1' */\nexport type SystemCommunicationPipelineIsUsingArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/Pipeline-1' */\nexport type SystemCommunicationPipelineParentArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/Pipeline-1' */\nexport type SystemCommunicationPipelineRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/Pipeline-1' */\nexport type SystemCommunicationPipelineRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/Pipeline-1' */\nexport type SystemCommunicationPipelineStatisticsForPipelineArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/Pipeline-1' */\nexport type SystemCommunicationPipelineTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `SystemCommunicationPipeline`. */\nexport type SystemCommunicationPipelineConnectionDto = {\n __typename?: 'SystemCommunicationPipelineConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemCommunicationPipelineEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemCommunicationPipelineDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemCommunicationPipeline`. */\nexport type SystemCommunicationPipelineEdgeDto = {\n __typename?: 'SystemCommunicationPipelineEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemCommunicationPipelineDto>;\n};\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/PipelineExecution-1' */\nexport type SystemCommunicationPipelineExecutionDto = SystemEntityInterfaceDto & {\n __typename?: 'SystemCommunicationPipelineExecution';\n adapterExecutions?: Maybe<SystemCommunicationAdapter_AdapterExecutionsUnionConnectionDto>;\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n completedAt?: Maybe<Scalars['DateTime']['output']>;\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n durationMs?: Maybe<Scalars['Int']['output']>;\n errorMessage?: Maybe<Scalars['String']['output']>;\n executionId: Scalars['String']['output'];\n inputData?: Maybe<Scalars['String']['output']>;\n pipelineExecutions?: Maybe<SystemCommunicationPipeline_PipelineExecutionsUnionConnectionDto>;\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n startedAt: Scalars['DateTime']['output'];\n status: SystemCommunicationPipelineExecutionStatusDto;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n triggerType: SystemCommunicationPipelineTriggerTypeDto;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/PipelineExecution-1' */\nexport type SystemCommunicationPipelineExecutionAdapterExecutionsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/PipelineExecution-1' */\nexport type SystemCommunicationPipelineExecutionAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/PipelineExecution-1' */\nexport type SystemCommunicationPipelineExecutionConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/PipelineExecution-1' */\nexport type SystemCommunicationPipelineExecutionPipelineExecutionsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/PipelineExecution-1' */\nexport type SystemCommunicationPipelineExecutionRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/PipelineExecution-1' */\nexport type SystemCommunicationPipelineExecutionRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/PipelineExecution-1' */\nexport type SystemCommunicationPipelineExecutionTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `SystemCommunicationPipelineExecution`. */\nexport type SystemCommunicationPipelineExecutionConnectionDto = {\n __typename?: 'SystemCommunicationPipelineExecutionConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemCommunicationPipelineExecutionEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemCommunicationPipelineExecutionDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemCommunicationPipelineExecution`. */\nexport type SystemCommunicationPipelineExecutionEdgeDto = {\n __typename?: 'SystemCommunicationPipelineExecutionEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemCommunicationPipelineExecutionDto>;\n};\n\nexport type SystemCommunicationPipelineExecutionInputDto = {\n adapterExecutions?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n completedAt?: InputMaybe<Scalars['DateTime']['input']>;\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n durationMs?: InputMaybe<Scalars['Int']['input']>;\n errorMessage?: InputMaybe<Scalars['String']['input']>;\n executionId?: InputMaybe<Scalars['String']['input']>;\n inputData?: InputMaybe<Scalars['String']['input']>;\n pipelineExecutions?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n startedAt?: InputMaybe<Scalars['DateTime']['input']>;\n status?: InputMaybe<SystemCommunicationPipelineExecutionStatusDto>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n triggerType?: InputMaybe<SystemCommunicationPipelineTriggerTypeDto>;\n};\n\nexport type SystemCommunicationPipelineExecutionInputUpdateDto = {\n /** Item to update */\n item: SystemCommunicationPipelineExecutionInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\nexport type SystemCommunicationPipelineExecutionMutationsDto = {\n __typename?: 'SystemCommunicationPipelineExecutionMutations';\n /** Creates new entities of type 'SystemCommunicationPipelineExecution'. */\n create?: Maybe<Array<Maybe<SystemCommunicationPipelineExecutionDto>>>;\n /** Updates existing entity of type 'SystemCommunicationPipelineExecution'. */\n update?: Maybe<Array<Maybe<SystemCommunicationPipelineExecutionDto>>>;\n};\n\n\nexport type SystemCommunicationPipelineExecutionMutationsCreateArgsDto = {\n entities: Array<InputMaybe<SystemCommunicationPipelineExecutionInputDto>>;\n};\n\n\nexport type SystemCommunicationPipelineExecutionMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<SystemCommunicationPipelineExecutionInputUpdateDto>>;\n};\n\n/** Runtime entities of construction kit enum 'System.Communication/PipelineExecutionStatus' */\nexport enum SystemCommunicationPipelineExecutionStatusDto {\n CancelledDto = 'CANCELLED',\n CompletedDto = 'COMPLETED',\n FailedDto = 'FAILED',\n InterruptedDto = 'INTERRUPTED',\n RunningDto = 'RUNNING'\n}\n\nexport type SystemCommunicationPipelineExecutionUpdateDto = {\n __typename?: 'SystemCommunicationPipelineExecutionUpdate';\n /** The corresponding item */\n item?: Maybe<SystemCommunicationPipelineExecutionDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemCommunicationPipelineExecutionUpdateMessageDto = {\n __typename?: 'SystemCommunicationPipelineExecutionUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemCommunicationPipelineExecutionUpdateDto>>>;\n};\n\n/** Union of types derived from System.Communication/PipelineExecution for ExecutedPipeline association */\nexport type SystemCommunicationPipelineExecution_ExecutedPipelineUnionDto = SystemCommunicationPipelineExecutionDto;\n\n/** A connection to `SystemCommunicationPipelineExecution_ExecutedPipelineUnion`. */\nexport type SystemCommunicationPipelineExecution_ExecutedPipelineUnionConnectionDto = {\n __typename?: 'SystemCommunicationPipelineExecution_ExecutedPipelineUnionConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemCommunicationPipelineExecution_ExecutedPipelineUnionEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemCommunicationPipelineExecution_ExecutedPipelineUnionDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemCommunicationPipelineExecution_ExecutedPipelineUnion`. */\nexport type SystemCommunicationPipelineExecution_ExecutedPipelineUnionEdgeDto = {\n __typename?: 'SystemCommunicationPipelineExecution_ExecutedPipelineUnionEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemCommunicationPipelineExecution_ExecutedPipelineUnionDto>;\n};\n\n/** Union of types derived from System.Communication/PipelineExecution for ExecutingAdapter association */\nexport type SystemCommunicationPipelineExecution_ExecutingAdapterUnionDto = SystemCommunicationPipelineExecutionDto;\n\n/** A connection to `SystemCommunicationPipelineExecution_ExecutingAdapterUnion`. */\nexport type SystemCommunicationPipelineExecution_ExecutingAdapterUnionConnectionDto = {\n __typename?: 'SystemCommunicationPipelineExecution_ExecutingAdapterUnionConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemCommunicationPipelineExecution_ExecutingAdapterUnionEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemCommunicationPipelineExecution_ExecutingAdapterUnionDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemCommunicationPipelineExecution_ExecutingAdapterUnion`. */\nexport type SystemCommunicationPipelineExecution_ExecutingAdapterUnionEdgeDto = {\n __typename?: 'SystemCommunicationPipelineExecution_ExecutingAdapterUnionEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemCommunicationPipelineExecution_ExecutingAdapterUnionDto>;\n};\n\n/** Interface for runtime entities of construction kit type 'System.Communication-2.0.3/Pipeline-1' */\nexport type SystemCommunicationPipelineInterfaceDto = {\n ckTypeId: Scalars['RtCkTypeId']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n currentExecutionId?: Maybe<Scalars['String']['output']>;\n deploymentState: SystemCommunicationDeploymentStateDto;\n description?: Maybe<Scalars['String']['output']>;\n enabled: Scalars['Boolean']['output'];\n executedBy?: Maybe<SystemCommunicationAdapter_ExecutedByUnionConnectionDto>;\n executedPipeline?: Maybe<SystemCommunicationPipelineExecution_ExecutedPipelineUnionConnectionDto>;\n isExecuting: Scalars['Boolean']['output'];\n isUsing?: Maybe<SystemConfiguration_IsUsingUnionConnectionDto>;\n name?: Maybe<Scalars['String']['output']>;\n parent?: Maybe<SystemCommunicationDataPipeline_ParentUnionConnectionDto>;\n pipelineDefinition: Scalars['String']['output'];\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n statisticsForPipeline?: Maybe<SystemCommunicationPipelineStatistics_StatisticsForPipelineUnionConnectionDto>;\n statusMessage?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n};\n\n\n/** Interface for runtime entities of construction kit type 'System.Communication-2.0.3/Pipeline-1' */\nexport type SystemCommunicationPipelineInterfaceConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Interface for runtime entities of construction kit type 'System.Communication-2.0.3/Pipeline-1' */\nexport type SystemCommunicationPipelineInterfaceExecutedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Interface for runtime entities of construction kit type 'System.Communication-2.0.3/Pipeline-1' */\nexport type SystemCommunicationPipelineInterfaceExecutedPipelineArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Interface for runtime entities of construction kit type 'System.Communication-2.0.3/Pipeline-1' */\nexport type SystemCommunicationPipelineInterfaceIsUsingArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Interface for runtime entities of construction kit type 'System.Communication-2.0.3/Pipeline-1' */\nexport type SystemCommunicationPipelineInterfaceParentArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Interface for runtime entities of construction kit type 'System.Communication-2.0.3/Pipeline-1' */\nexport type SystemCommunicationPipelineInterfaceRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Interface for runtime entities of construction kit type 'System.Communication-2.0.3/Pipeline-1' */\nexport type SystemCommunicationPipelineInterfaceRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Interface for runtime entities of construction kit type 'System.Communication-2.0.3/Pipeline-1' */\nexport type SystemCommunicationPipelineInterfaceStatisticsForPipelineArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Interface for runtime entities of construction kit type 'System.Communication-2.0.3/Pipeline-1' */\nexport type SystemCommunicationPipelineInterfaceTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/PipelineStatistics-1' */\nexport type SystemCommunicationPipelineStatisticsDto = SystemEntityInterfaceDto & {\n __typename?: 'SystemCommunicationPipelineStatistics';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n last12HoursAvgDurationMs: Scalars['Int']['output'];\n last12HoursFailureCount: Scalars['Int']['output'];\n last12HoursSuccessCount: Scalars['Int']['output'];\n last24HoursAvgDurationMs: Scalars['Int']['output'];\n last24HoursFailureCount: Scalars['Int']['output'];\n last24HoursSuccessCount: Scalars['Int']['output'];\n last30DaysAvgDurationMs: Scalars['Int']['output'];\n last30DaysFailureCount: Scalars['Int']['output'];\n last30DaysSuccessCount: Scalars['Int']['output'];\n lastExecutionAt?: Maybe<Scalars['DateTime']['output']>;\n lastHourAvgDurationMs: Scalars['Int']['output'];\n lastHourFailureCount: Scalars['Int']['output'];\n lastHourSuccessCount: Scalars['Int']['output'];\n lastUpdatedAt?: Maybe<Scalars['DateTime']['output']>;\n pipelineStatistics?: Maybe<SystemCommunicationPipeline_PipelineStatisticsUnionConnectionDto>;\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/PipelineStatistics-1' */\nexport type SystemCommunicationPipelineStatisticsAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/PipelineStatistics-1' */\nexport type SystemCommunicationPipelineStatisticsConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/PipelineStatistics-1' */\nexport type SystemCommunicationPipelineStatisticsPipelineStatisticsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/PipelineStatistics-1' */\nexport type SystemCommunicationPipelineStatisticsRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/PipelineStatistics-1' */\nexport type SystemCommunicationPipelineStatisticsRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/PipelineStatistics-1' */\nexport type SystemCommunicationPipelineStatisticsTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `SystemCommunicationPipelineStatistics`. */\nexport type SystemCommunicationPipelineStatisticsConnectionDto = {\n __typename?: 'SystemCommunicationPipelineStatisticsConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemCommunicationPipelineStatisticsEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemCommunicationPipelineStatisticsDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemCommunicationPipelineStatistics`. */\nexport type SystemCommunicationPipelineStatisticsEdgeDto = {\n __typename?: 'SystemCommunicationPipelineStatisticsEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemCommunicationPipelineStatisticsDto>;\n};\n\nexport type SystemCommunicationPipelineStatisticsInputDto = {\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n last12HoursAvgDurationMs?: InputMaybe<Scalars['Int']['input']>;\n last12HoursFailureCount?: InputMaybe<Scalars['Int']['input']>;\n last12HoursSuccessCount?: InputMaybe<Scalars['Int']['input']>;\n last24HoursAvgDurationMs?: InputMaybe<Scalars['Int']['input']>;\n last24HoursFailureCount?: InputMaybe<Scalars['Int']['input']>;\n last24HoursSuccessCount?: InputMaybe<Scalars['Int']['input']>;\n last30DaysAvgDurationMs?: InputMaybe<Scalars['Int']['input']>;\n last30DaysFailureCount?: InputMaybe<Scalars['Int']['input']>;\n last30DaysSuccessCount?: InputMaybe<Scalars['Int']['input']>;\n lastExecutionAt?: InputMaybe<Scalars['DateTime']['input']>;\n lastHourAvgDurationMs?: InputMaybe<Scalars['Int']['input']>;\n lastHourFailureCount?: InputMaybe<Scalars['Int']['input']>;\n lastHourSuccessCount?: InputMaybe<Scalars['Int']['input']>;\n lastUpdatedAt?: InputMaybe<Scalars['DateTime']['input']>;\n pipelineStatistics?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n};\n\nexport type SystemCommunicationPipelineStatisticsInputUpdateDto = {\n /** Item to update */\n item: SystemCommunicationPipelineStatisticsInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\nexport type SystemCommunicationPipelineStatisticsMutationsDto = {\n __typename?: 'SystemCommunicationPipelineStatisticsMutations';\n /** Creates new entities of type 'SystemCommunicationPipelineStatistics'. */\n create?: Maybe<Array<Maybe<SystemCommunicationPipelineStatisticsDto>>>;\n /** Updates existing entity of type 'SystemCommunicationPipelineStatistics'. */\n update?: Maybe<Array<Maybe<SystemCommunicationPipelineStatisticsDto>>>;\n};\n\n\nexport type SystemCommunicationPipelineStatisticsMutationsCreateArgsDto = {\n entities: Array<InputMaybe<SystemCommunicationPipelineStatisticsInputDto>>;\n};\n\n\nexport type SystemCommunicationPipelineStatisticsMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<SystemCommunicationPipelineStatisticsInputUpdateDto>>;\n};\n\nexport type SystemCommunicationPipelineStatisticsUpdateDto = {\n __typename?: 'SystemCommunicationPipelineStatisticsUpdate';\n /** The corresponding item */\n item?: Maybe<SystemCommunicationPipelineStatisticsDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemCommunicationPipelineStatisticsUpdateMessageDto = {\n __typename?: 'SystemCommunicationPipelineStatisticsUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemCommunicationPipelineStatisticsUpdateDto>>>;\n};\n\n/** Union of types derived from System.Communication/PipelineStatistics for StatisticsForPipeline association */\nexport type SystemCommunicationPipelineStatistics_StatisticsForPipelineUnionDto = SystemCommunicationPipelineStatisticsDto;\n\n/** A connection to `SystemCommunicationPipelineStatistics_StatisticsForPipelineUnion`. */\nexport type SystemCommunicationPipelineStatistics_StatisticsForPipelineUnionConnectionDto = {\n __typename?: 'SystemCommunicationPipelineStatistics_StatisticsForPipelineUnionConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemCommunicationPipelineStatistics_StatisticsForPipelineUnionEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemCommunicationPipelineStatistics_StatisticsForPipelineUnionDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemCommunicationPipelineStatistics_StatisticsForPipelineUnion`. */\nexport type SystemCommunicationPipelineStatistics_StatisticsForPipelineUnionEdgeDto = {\n __typename?: 'SystemCommunicationPipelineStatistics_StatisticsForPipelineUnionEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemCommunicationPipelineStatistics_StatisticsForPipelineUnionDto>;\n};\n\n/** Runtime entities of construction kit enum 'System.Communication/PipelineTriggerType' */\nexport enum SystemCommunicationPipelineTriggerTypeDto {\n EventDto = 'EVENT',\n ManualDto = 'MANUAL',\n ScheduledDto = 'SCHEDULED',\n StartupDto = 'STARTUP'\n}\n\nexport type SystemCommunicationPipelineUpdateDto = {\n __typename?: 'SystemCommunicationPipelineUpdate';\n /** The corresponding item */\n item?: Maybe<SystemCommunicationPipelineDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemCommunicationPipelineUpdateMessageDto = {\n __typename?: 'SystemCommunicationPipelineUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemCommunicationPipelineUpdateDto>>>;\n};\n\n/** Union of types derived from System.Communication/Pipeline for Children association */\nexport type SystemCommunicationPipeline_ChildrenUnionDto = SystemCommunicationEdgePipelineDto | SystemCommunicationMeshPipelineDto;\n\n/** A connection to `SystemCommunicationPipeline_ChildrenUnion`. */\nexport type SystemCommunicationPipeline_ChildrenUnionConnectionDto = {\n __typename?: 'SystemCommunicationPipeline_ChildrenUnionConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemCommunicationPipeline_ChildrenUnionEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemCommunicationPipeline_ChildrenUnionDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemCommunicationPipeline_ChildrenUnion`. */\nexport type SystemCommunicationPipeline_ChildrenUnionEdgeDto = {\n __typename?: 'SystemCommunicationPipeline_ChildrenUnionEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemCommunicationPipeline_ChildrenUnionDto>;\n};\n\n/** Union of types derived from System.Communication/Pipeline for Executes association */\nexport type SystemCommunicationPipeline_ExecutesUnionDto = SystemCommunicationEdgePipelineDto | SystemCommunicationMeshPipelineDto;\n\n/** A connection to `SystemCommunicationPipeline_ExecutesUnion`. */\nexport type SystemCommunicationPipeline_ExecutesUnionConnectionDto = {\n __typename?: 'SystemCommunicationPipeline_ExecutesUnionConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemCommunicationPipeline_ExecutesUnionEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemCommunicationPipeline_ExecutesUnionDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemCommunicationPipeline_ExecutesUnion`. */\nexport type SystemCommunicationPipeline_ExecutesUnionEdgeDto = {\n __typename?: 'SystemCommunicationPipeline_ExecutesUnionEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemCommunicationPipeline_ExecutesUnionDto>;\n};\n\n/** Union of types derived from System.Communication/Pipeline for PipelineExecutions association */\nexport type SystemCommunicationPipeline_PipelineExecutionsUnionDto = SystemCommunicationEdgePipelineDto | SystemCommunicationMeshPipelineDto;\n\n/** A connection to `SystemCommunicationPipeline_PipelineExecutionsUnion`. */\nexport type SystemCommunicationPipeline_PipelineExecutionsUnionConnectionDto = {\n __typename?: 'SystemCommunicationPipeline_PipelineExecutionsUnionConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemCommunicationPipeline_PipelineExecutionsUnionEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemCommunicationPipeline_PipelineExecutionsUnionDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemCommunicationPipeline_PipelineExecutionsUnion`. */\nexport type SystemCommunicationPipeline_PipelineExecutionsUnionEdgeDto = {\n __typename?: 'SystemCommunicationPipeline_PipelineExecutionsUnionEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemCommunicationPipeline_PipelineExecutionsUnionDto>;\n};\n\n/** Union of types derived from System.Communication/Pipeline for PipelineStatistics association */\nexport type SystemCommunicationPipeline_PipelineStatisticsUnionDto = SystemCommunicationEdgePipelineDto | SystemCommunicationMeshPipelineDto;\n\n/** A connection to `SystemCommunicationPipeline_PipelineStatisticsUnion`. */\nexport type SystemCommunicationPipeline_PipelineStatisticsUnionConnectionDto = {\n __typename?: 'SystemCommunicationPipeline_PipelineStatisticsUnionConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemCommunicationPipeline_PipelineStatisticsUnionEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemCommunicationPipeline_PipelineStatisticsUnionDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemCommunicationPipeline_PipelineStatisticsUnion`. */\nexport type SystemCommunicationPipeline_PipelineStatisticsUnionEdgeDto = {\n __typename?: 'SystemCommunicationPipeline_PipelineStatisticsUnionEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemCommunicationPipeline_PipelineStatisticsUnionDto>;\n};\n\n/** Union of types derived from System.Communication/Pipeline for UsedBy association */\nexport type SystemCommunicationPipeline_UsedByUnionDto = SystemCommunicationEdgePipelineDto | SystemCommunicationMeshPipelineDto;\n\n/** A connection to `SystemCommunicationPipeline_UsedByUnion`. */\nexport type SystemCommunicationPipeline_UsedByUnionConnectionDto = {\n __typename?: 'SystemCommunicationPipeline_UsedByUnionConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemCommunicationPipeline_UsedByUnionEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemCommunicationPipeline_UsedByUnionDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemCommunicationPipeline_UsedByUnion`. */\nexport type SystemCommunicationPipeline_UsedByUnionEdgeDto = {\n __typename?: 'SystemCommunicationPipeline_UsedByUnionEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemCommunicationPipeline_UsedByUnionDto>;\n};\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/Pool-1' */\nexport type SystemCommunicationPoolDto = SystemCommunicationDeployableEntityInterfaceDto & SystemEntityInterfaceDto & {\n __typename?: 'SystemCommunicationPool';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n communicationState: SystemCommunicationCommunicationStateDto;\n communicationStateTimestamp?: Maybe<Scalars['DateTime']['output']>;\n configurationState: SystemCommunicationConfigurationStateDto;\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n deploymentState: SystemCommunicationDeploymentStateDto;\n description?: Maybe<Scalars['String']['output']>;\n manages?: Maybe<SystemCommunicationAdapter_ManagesUnionConnectionDto>;\n name?: Maybe<Scalars['String']['output']>;\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n statusMessage?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/Pool-1' */\nexport type SystemCommunicationPoolAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/Pool-1' */\nexport type SystemCommunicationPoolConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/Pool-1' */\nexport type SystemCommunicationPoolManagesArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/Pool-1' */\nexport type SystemCommunicationPoolRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/Pool-1' */\nexport type SystemCommunicationPoolRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/Pool-1' */\nexport type SystemCommunicationPoolTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `SystemCommunicationPool`. */\nexport type SystemCommunicationPoolConnectionDto = {\n __typename?: 'SystemCommunicationPoolConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemCommunicationPoolEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemCommunicationPoolDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemCommunicationPool`. */\nexport type SystemCommunicationPoolEdgeDto = {\n __typename?: 'SystemCommunicationPoolEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemCommunicationPoolDto>;\n};\n\nexport type SystemCommunicationPoolInputDto = {\n communicationState?: InputMaybe<SystemCommunicationCommunicationStateDto>;\n communicationStateTimestamp?: InputMaybe<Scalars['DateTime']['input']>;\n configurationState?: InputMaybe<SystemCommunicationConfigurationStateDto>;\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n deploymentState?: InputMaybe<SystemCommunicationDeploymentStateDto>;\n description?: InputMaybe<Scalars['String']['input']>;\n manages?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n name?: InputMaybe<Scalars['String']['input']>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n statusMessage?: InputMaybe<Scalars['String']['input']>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n};\n\nexport type SystemCommunicationPoolInputUpdateDto = {\n /** Item to update */\n item: SystemCommunicationPoolInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\nexport type SystemCommunicationPoolMutationsDto = {\n __typename?: 'SystemCommunicationPoolMutations';\n /** Creates new entities of type 'SystemCommunicationPool'. */\n create?: Maybe<Array<Maybe<SystemCommunicationPoolDto>>>;\n /** Updates existing entity of type 'SystemCommunicationPool'. */\n update?: Maybe<Array<Maybe<SystemCommunicationPoolDto>>>;\n};\n\n\nexport type SystemCommunicationPoolMutationsCreateArgsDto = {\n entities: Array<InputMaybe<SystemCommunicationPoolInputDto>>;\n};\n\n\nexport type SystemCommunicationPoolMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<SystemCommunicationPoolInputUpdateDto>>;\n};\n\nexport type SystemCommunicationPoolUpdateDto = {\n __typename?: 'SystemCommunicationPoolUpdate';\n /** The corresponding item */\n item?: Maybe<SystemCommunicationPoolDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemCommunicationPoolUpdateMessageDto = {\n __typename?: 'SystemCommunicationPoolUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemCommunicationPoolUpdateDto>>>;\n};\n\n/** Union of types derived from System.Communication/Pool for ManagedBy association */\nexport type SystemCommunicationPool_ManagedByUnionDto = SystemCommunicationPoolDto;\n\n/** A connection to `SystemCommunicationPool_ManagedByUnion`. */\nexport type SystemCommunicationPool_ManagedByUnionConnectionDto = {\n __typename?: 'SystemCommunicationPool_ManagedByUnionConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemCommunicationPool_ManagedByUnionEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemCommunicationPool_ManagedByUnionDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemCommunicationPool_ManagedByUnion`. */\nexport type SystemCommunicationPool_ManagedByUnionEdgeDto = {\n __typename?: 'SystemCommunicationPool_ManagedByUnionEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemCommunicationPool_ManagedByUnionDto>;\n};\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/SapConfiguration-1' */\nexport type SystemCommunicationSapConfigurationDto = SystemConfigurationInterfaceDto & SystemEntityInterfaceDto & {\n __typename?: 'SystemCommunicationSapConfiguration';\n appServerHost: Scalars['String']['output'];\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n client: Scalars['String']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n gatewayHost?: Maybe<Scalars['String']['output']>;\n gatewayService?: Maybe<Scalars['String']['output']>;\n language: Scalars['String']['output'];\n password: Scalars['String']['output'];\n programId?: Maybe<Scalars['String']['output']>;\n registrationCount?: Maybe<Scalars['Int']['output']>;\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n systemId?: Maybe<Scalars['String']['output']>;\n systemNumber: Scalars['String']['output'];\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n trace: Scalars['String']['output'];\n usedBy?: Maybe<SystemCommunicationPipeline_UsedByUnionConnectionDto>;\n user: Scalars['String']['output'];\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/SapConfiguration-1' */\nexport type SystemCommunicationSapConfigurationAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/SapConfiguration-1' */\nexport type SystemCommunicationSapConfigurationConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/SapConfiguration-1' */\nexport type SystemCommunicationSapConfigurationRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/SapConfiguration-1' */\nexport type SystemCommunicationSapConfigurationRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/SapConfiguration-1' */\nexport type SystemCommunicationSapConfigurationTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/SapConfiguration-1' */\nexport type SystemCommunicationSapConfigurationUsedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `SystemCommunicationSapConfiguration`. */\nexport type SystemCommunicationSapConfigurationConnectionDto = {\n __typename?: 'SystemCommunicationSapConfigurationConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemCommunicationSapConfigurationEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemCommunicationSapConfigurationDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemCommunicationSapConfiguration`. */\nexport type SystemCommunicationSapConfigurationEdgeDto = {\n __typename?: 'SystemCommunicationSapConfigurationEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemCommunicationSapConfigurationDto>;\n};\n\nexport type SystemCommunicationSapConfigurationInputDto = {\n appServerHost?: InputMaybe<Scalars['String']['input']>;\n client?: InputMaybe<Scalars['String']['input']>;\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n gatewayHost?: InputMaybe<Scalars['String']['input']>;\n gatewayService?: InputMaybe<Scalars['String']['input']>;\n language?: InputMaybe<Scalars['String']['input']>;\n password?: InputMaybe<Scalars['String']['input']>;\n programId?: InputMaybe<Scalars['String']['input']>;\n registrationCount?: InputMaybe<Scalars['Int']['input']>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n systemId?: InputMaybe<Scalars['String']['input']>;\n systemNumber?: InputMaybe<Scalars['String']['input']>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n trace?: InputMaybe<Scalars['String']['input']>;\n usedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n user?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type SystemCommunicationSapConfigurationInputUpdateDto = {\n /** Item to update */\n item: SystemCommunicationSapConfigurationInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\nexport type SystemCommunicationSapConfigurationMutationsDto = {\n __typename?: 'SystemCommunicationSapConfigurationMutations';\n /** Creates new entities of type 'SystemCommunicationSapConfiguration'. */\n create?: Maybe<Array<Maybe<SystemCommunicationSapConfigurationDto>>>;\n /** Updates existing entity of type 'SystemCommunicationSapConfiguration'. */\n update?: Maybe<Array<Maybe<SystemCommunicationSapConfigurationDto>>>;\n};\n\n\nexport type SystemCommunicationSapConfigurationMutationsCreateArgsDto = {\n entities: Array<InputMaybe<SystemCommunicationSapConfigurationInputDto>>;\n};\n\n\nexport type SystemCommunicationSapConfigurationMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<SystemCommunicationSapConfigurationInputUpdateDto>>;\n};\n\nexport type SystemCommunicationSapConfigurationUpdateDto = {\n __typename?: 'SystemCommunicationSapConfigurationUpdate';\n /** The corresponding item */\n item?: Maybe<SystemCommunicationSapConfigurationDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemCommunicationSapConfigurationUpdateMessageDto = {\n __typename?: 'SystemCommunicationSapConfigurationUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemCommunicationSapConfigurationUpdateDto>>>;\n};\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/Tag-1' */\nexport type SystemCommunicationTagDto = SystemEntityInterfaceDto & {\n __typename?: 'SystemCommunicationTag';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n isTagging?: Maybe<SystemEntity_IsTaggingUnionConnectionDto>;\n name?: Maybe<Scalars['String']['output']>;\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n tag: Scalars['String']['output'];\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/Tag-1' */\nexport type SystemCommunicationTagAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/Tag-1' */\nexport type SystemCommunicationTagConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/Tag-1' */\nexport type SystemCommunicationTagIsTaggingArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/Tag-1' */\nexport type SystemCommunicationTagRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/Tag-1' */\nexport type SystemCommunicationTagRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Communication-2.0.3/Tag-1' */\nexport type SystemCommunicationTagTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `SystemCommunicationTag`. */\nexport type SystemCommunicationTagConnectionDto = {\n __typename?: 'SystemCommunicationTagConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemCommunicationTagEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemCommunicationTagDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemCommunicationTag`. */\nexport type SystemCommunicationTagEdgeDto = {\n __typename?: 'SystemCommunicationTagEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemCommunicationTagDto>;\n};\n\nexport type SystemCommunicationTagInputDto = {\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n isTagging?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n name?: InputMaybe<Scalars['String']['input']>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n tag?: InputMaybe<Scalars['String']['input']>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n};\n\nexport type SystemCommunicationTagInputUpdateDto = {\n /** Item to update */\n item: SystemCommunicationTagInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\nexport type SystemCommunicationTagMutationsDto = {\n __typename?: 'SystemCommunicationTagMutations';\n /** Creates new entities of type 'SystemCommunicationTag'. */\n create?: Maybe<Array<Maybe<SystemCommunicationTagDto>>>;\n /** Updates existing entity of type 'SystemCommunicationTag'. */\n update?: Maybe<Array<Maybe<SystemCommunicationTagDto>>>;\n};\n\n\nexport type SystemCommunicationTagMutationsCreateArgsDto = {\n entities: Array<InputMaybe<SystemCommunicationTagInputDto>>;\n};\n\n\nexport type SystemCommunicationTagMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<SystemCommunicationTagInputUpdateDto>>;\n};\n\nexport type SystemCommunicationTagUpdateDto = {\n __typename?: 'SystemCommunicationTagUpdate';\n /** The corresponding item */\n item?: Maybe<SystemCommunicationTagDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemCommunicationTagUpdateMessageDto = {\n __typename?: 'SystemCommunicationTagUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemCommunicationTagUpdateDto>>>;\n};\n\n/** Union of types derived from System.Communication/Tag for TaggedBy association */\nexport type SystemCommunicationTag_TaggedByUnionDto = SystemCommunicationTagDto;\n\n/** A connection to `SystemCommunicationTag_TaggedByUnion`. */\nexport type SystemCommunicationTag_TaggedByUnionConnectionDto = {\n __typename?: 'SystemCommunicationTag_TaggedByUnionConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemCommunicationTag_TaggedByUnionEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemCommunicationTag_TaggedByUnionDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemCommunicationTag_TaggedByUnion`. */\nexport type SystemCommunicationTag_TaggedByUnionEdgeDto = {\n __typename?: 'SystemCommunicationTag_TaggedByUnionEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemCommunicationTag_TaggedByUnionDto>;\n};\n\n/** Runtime entities of construction kit record 'System.Communication/UiThemeColors' */\nexport type SystemCommunicationUiThemeColorsDto = {\n __typename?: 'SystemCommunicationUiThemeColors';\n constructionKitType?: Maybe<CkTypeDto>;\n neutralColor: Scalars['String']['output'];\n primaryColor: Scalars['String']['output'];\n secondaryColor: Scalars['String']['output'];\n tertiaryColor: Scalars['String']['output'];\n};\n\nexport type SystemCommunicationUiThemeColorsInputDto = {\n neutralColor?: InputMaybe<Scalars['String']['input']>;\n primaryColor?: InputMaybe<Scalars['String']['input']>;\n secondaryColor?: InputMaybe<Scalars['String']['input']>;\n tertiaryColor?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Runtime entities of construction kit type 'System-2.0.2/Configuration-1' */\nexport type SystemConfigurationDto = SystemEntityInterfaceDto & {\n __typename?: 'SystemConfiguration';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n usedBy?: Maybe<SystemCommunicationPipeline_UsedByUnionConnectionDto>;\n};\n\n\n/** Runtime entities of construction kit type 'System-2.0.2/Configuration-1' */\nexport type SystemConfigurationAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System-2.0.2/Configuration-1' */\nexport type SystemConfigurationConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System-2.0.2/Configuration-1' */\nexport type SystemConfigurationRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System-2.0.2/Configuration-1' */\nexport type SystemConfigurationRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System-2.0.2/Configuration-1' */\nexport type SystemConfigurationTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System-2.0.2/Configuration-1' */\nexport type SystemConfigurationUsedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `SystemConfiguration`. */\nexport type SystemConfigurationConnectionDto = {\n __typename?: 'SystemConfigurationConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemConfigurationEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemConfigurationDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemConfiguration`. */\nexport type SystemConfigurationEdgeDto = {\n __typename?: 'SystemConfigurationEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemConfigurationDto>;\n};\n\n/** Interface for runtime entities of construction kit type 'System-2.0.2/Configuration-1' */\nexport type SystemConfigurationInterfaceDto = {\n ckTypeId: Scalars['RtCkTypeId']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n usedBy?: Maybe<SystemCommunicationPipeline_UsedByUnionConnectionDto>;\n};\n\n\n/** Interface for runtime entities of construction kit type 'System-2.0.2/Configuration-1' */\nexport type SystemConfigurationInterfaceConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Interface for runtime entities of construction kit type 'System-2.0.2/Configuration-1' */\nexport type SystemConfigurationInterfaceRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Interface for runtime entities of construction kit type 'System-2.0.2/Configuration-1' */\nexport type SystemConfigurationInterfaceRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Interface for runtime entities of construction kit type 'System-2.0.2/Configuration-1' */\nexport type SystemConfigurationInterfaceTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Interface for runtime entities of construction kit type 'System-2.0.2/Configuration-1' */\nexport type SystemConfigurationInterfaceUsedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\nexport type SystemConfigurationUpdateDto = {\n __typename?: 'SystemConfigurationUpdate';\n /** The corresponding item */\n item?: Maybe<SystemConfigurationDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemConfigurationUpdateMessageDto = {\n __typename?: 'SystemConfigurationUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemConfigurationUpdateDto>>>;\n};\n\n/** Union of types derived from System/Configuration for IsUsing association */\nexport type SystemConfiguration_IsUsingUnionDto = SystemCommunicationEMailSenderConfigurationDto | SystemCommunicationEnergyCommunityConfigurationDto | SystemCommunicationSapConfigurationDto | SystemIdentityMailNotificationConfigurationDto | SystemNotificationCssTemplateConfigurationDto | SystemReportingConnectionInfoDto | SystemTenantConfigurationDto | SystemTenantModeConfigurationDto;\n\n/** A connection to `SystemConfiguration_IsUsingUnion`. */\nexport type SystemConfiguration_IsUsingUnionConnectionDto = {\n __typename?: 'SystemConfiguration_IsUsingUnionConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemConfiguration_IsUsingUnionEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemConfiguration_IsUsingUnionDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemConfiguration_IsUsingUnion`. */\nexport type SystemConfiguration_IsUsingUnionEdgeDto = {\n __typename?: 'SystemConfiguration_IsUsingUnionEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemConfiguration_IsUsingUnionDto>;\n};\n\n/** Runtime entities of construction kit type 'System-2.0.2/Entity-1' */\nexport type SystemEntityDto = {\n __typename?: 'SystemEntity';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n};\n\n\n/** Runtime entities of construction kit type 'System-2.0.2/Entity-1' */\nexport type SystemEntityAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System-2.0.2/Entity-1' */\nexport type SystemEntityConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System-2.0.2/Entity-1' */\nexport type SystemEntityRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System-2.0.2/Entity-1' */\nexport type SystemEntityRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System-2.0.2/Entity-1' */\nexport type SystemEntityTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `SystemEntity`. */\nexport type SystemEntityConnectionDto = {\n __typename?: 'SystemEntityConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemEntityEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemEntityDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemEntity`. */\nexport type SystemEntityEdgeDto = {\n __typename?: 'SystemEntityEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemEntityDto>;\n};\n\n/** Interface for runtime entities of construction kit type 'System-2.0.2/Entity-1' */\nexport type SystemEntityInterfaceDto = {\n ckTypeId: Scalars['RtCkTypeId']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n};\n\n\n/** Interface for runtime entities of construction kit type 'System-2.0.2/Entity-1' */\nexport type SystemEntityInterfaceConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Interface for runtime entities of construction kit type 'System-2.0.2/Entity-1' */\nexport type SystemEntityInterfaceRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Interface for runtime entities of construction kit type 'System-2.0.2/Entity-1' */\nexport type SystemEntityInterfaceRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Interface for runtime entities of construction kit type 'System-2.0.2/Entity-1' */\nexport type SystemEntityInterfaceTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\nexport type SystemEntityUpdateDto = {\n __typename?: 'SystemEntityUpdate';\n /** The corresponding item */\n item?: Maybe<SystemEntityDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemEntityUpdateMessageDto = {\n __typename?: 'SystemEntityUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemEntityUpdateDto>>>;\n};\n\n/** Union of types derived from System/Entity for Configures association */\nexport type SystemEntity_ConfiguresUnionDto = BasicAssetDto | BasicCityDto | BasicCountryDto | BasicDistrictDto | BasicEmployeeDto | BasicStateDto | BasicTreeDto | BasicTreeNodeDto | OctoSdkDemoCustomerDto | OctoSdkDemoMeteringPointDto | OctoSdkDemoOperatingFacilityDto | SystemAggregationRtQueryDto | SystemAutoIncrementDto | SystemBotAttributeAggregateConfigurationDto | SystemBotFixupDto | SystemBotServiceHookDto | SystemCommunicationDataPipelineDto | SystemCommunicationDataPipelineTriggerDto | SystemCommunicationEMailSenderConfigurationDto | SystemCommunicationEdgeAdapterDto | SystemCommunicationEdgePipelineDto | SystemCommunicationEnergyCommunityConfigurationDto | SystemCommunicationMeshAdapterDto | SystemCommunicationMeshPipelineDto | SystemCommunicationPipelineExecutionDto | SystemCommunicationPipelineStatisticsDto | SystemCommunicationPoolDto | SystemCommunicationSapConfigurationDto | SystemCommunicationTagDto | SystemGroupingAggregationRtQueryDto | SystemIdentityApiResourceDto | SystemIdentityApiScopeDto | SystemIdentityAzureEntraIdIdentityProviderDto | SystemIdentityClientDto | SystemIdentityFacebookIdentityProviderDto | SystemIdentityGoogleIdentityProviderDto | SystemIdentityIdentityResourceDto | SystemIdentityMailNotificationConfigurationDto | SystemIdentityMicrosoftAdIdentityProviderDto | SystemIdentityMicrosoftIdentityProviderDto | SystemIdentityOpenLdapIdentityProviderDto | SystemIdentityPermissionDto | SystemIdentityPermissionRoleDto | SystemIdentityPersistedGrantDto | SystemIdentityRoleDto | SystemIdentityUserDto | SystemMigrationHistoryDto | SystemNotificationCssTemplateConfigurationDto | SystemNotificationEventDto | SystemNotificationNotificationTemplateDto | SystemNotificationStatefulEventDto | SystemQueryDto | SystemReportingConnectionInfoDto | SystemReportingFileSystemItemDto | SystemReportingFolderDto | SystemReportingFolderRootDto | SystemSimpleRtQueryDto | SystemTenantDto | SystemTenantConfigurationDto | SystemTenantModeConfigurationDto | SystemUiDashboardDto | SystemUiDashboardWidgetDto | SystemUiPageDto | SystemUiProcessDiagramDto | SystemUiStudioRootDto | SystemUiStudioTreeItemDto | SystemUiSymbolDefinitionDto | SystemUiSymbolLibraryDto;\n\n/** A connection to `SystemEntity_ConfiguresUnion`. */\nexport type SystemEntity_ConfiguresUnionConnectionDto = {\n __typename?: 'SystemEntity_ConfiguresUnionConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemEntity_ConfiguresUnionEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemEntity_ConfiguresUnionDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemEntity_ConfiguresUnion`. */\nexport type SystemEntity_ConfiguresUnionEdgeDto = {\n __typename?: 'SystemEntity_ConfiguresUnionEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemEntity_ConfiguresUnionDto>;\n};\n\n/** Union of types derived from System/Entity for IsTagging association */\nexport type SystemEntity_IsTaggingUnionDto = BasicAssetDto | BasicCityDto | BasicCountryDto | BasicDistrictDto | BasicEmployeeDto | BasicStateDto | BasicTreeDto | BasicTreeNodeDto | OctoSdkDemoCustomerDto | OctoSdkDemoMeteringPointDto | OctoSdkDemoOperatingFacilityDto | SystemAggregationRtQueryDto | SystemAutoIncrementDto | SystemBotAttributeAggregateConfigurationDto | SystemBotFixupDto | SystemBotServiceHookDto | SystemCommunicationDataPipelineDto | SystemCommunicationDataPipelineTriggerDto | SystemCommunicationEMailSenderConfigurationDto | SystemCommunicationEdgeAdapterDto | SystemCommunicationEdgePipelineDto | SystemCommunicationEnergyCommunityConfigurationDto | SystemCommunicationMeshAdapterDto | SystemCommunicationMeshPipelineDto | SystemCommunicationPipelineExecutionDto | SystemCommunicationPipelineStatisticsDto | SystemCommunicationPoolDto | SystemCommunicationSapConfigurationDto | SystemCommunicationTagDto | SystemGroupingAggregationRtQueryDto | SystemIdentityApiResourceDto | SystemIdentityApiScopeDto | SystemIdentityAzureEntraIdIdentityProviderDto | SystemIdentityClientDto | SystemIdentityFacebookIdentityProviderDto | SystemIdentityGoogleIdentityProviderDto | SystemIdentityIdentityResourceDto | SystemIdentityMailNotificationConfigurationDto | SystemIdentityMicrosoftAdIdentityProviderDto | SystemIdentityMicrosoftIdentityProviderDto | SystemIdentityOpenLdapIdentityProviderDto | SystemIdentityPermissionDto | SystemIdentityPermissionRoleDto | SystemIdentityPersistedGrantDto | SystemIdentityRoleDto | SystemIdentityUserDto | SystemMigrationHistoryDto | SystemNotificationCssTemplateConfigurationDto | SystemNotificationEventDto | SystemNotificationNotificationTemplateDto | SystemNotificationStatefulEventDto | SystemQueryDto | SystemReportingConnectionInfoDto | SystemReportingFileSystemItemDto | SystemReportingFolderDto | SystemReportingFolderRootDto | SystemSimpleRtQueryDto | SystemTenantDto | SystemTenantConfigurationDto | SystemTenantModeConfigurationDto | SystemUiDashboardDto | SystemUiDashboardWidgetDto | SystemUiPageDto | SystemUiProcessDiagramDto | SystemUiStudioRootDto | SystemUiStudioTreeItemDto | SystemUiSymbolDefinitionDto | SystemUiSymbolLibraryDto;\n\n/** A connection to `SystemEntity_IsTaggingUnion`. */\nexport type SystemEntity_IsTaggingUnionConnectionDto = {\n __typename?: 'SystemEntity_IsTaggingUnionConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemEntity_IsTaggingUnionEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemEntity_IsTaggingUnionDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemEntity_IsTaggingUnion`. */\nexport type SystemEntity_IsTaggingUnionEdgeDto = {\n __typename?: 'SystemEntity_IsTaggingUnionEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemEntity_IsTaggingUnionDto>;\n};\n\n/** Union of types derived from System/Entity for RelatesFrom association */\nexport type SystemEntity_RelatesFromUnionDto = BasicAssetDto | BasicCityDto | BasicCountryDto | BasicDistrictDto | BasicEmployeeDto | BasicStateDto | BasicTreeDto | BasicTreeNodeDto | OctoSdkDemoCustomerDto | OctoSdkDemoMeteringPointDto | OctoSdkDemoOperatingFacilityDto | SystemAggregationRtQueryDto | SystemAutoIncrementDto | SystemBotAttributeAggregateConfigurationDto | SystemBotFixupDto | SystemBotServiceHookDto | SystemCommunicationDataPipelineDto | SystemCommunicationDataPipelineTriggerDto | SystemCommunicationEMailSenderConfigurationDto | SystemCommunicationEdgeAdapterDto | SystemCommunicationEdgePipelineDto | SystemCommunicationEnergyCommunityConfigurationDto | SystemCommunicationMeshAdapterDto | SystemCommunicationMeshPipelineDto | SystemCommunicationPipelineExecutionDto | SystemCommunicationPipelineStatisticsDto | SystemCommunicationPoolDto | SystemCommunicationSapConfigurationDto | SystemCommunicationTagDto | SystemGroupingAggregationRtQueryDto | SystemIdentityApiResourceDto | SystemIdentityApiScopeDto | SystemIdentityAzureEntraIdIdentityProviderDto | SystemIdentityClientDto | SystemIdentityFacebookIdentityProviderDto | SystemIdentityGoogleIdentityProviderDto | SystemIdentityIdentityResourceDto | SystemIdentityMailNotificationConfigurationDto | SystemIdentityMicrosoftAdIdentityProviderDto | SystemIdentityMicrosoftIdentityProviderDto | SystemIdentityOpenLdapIdentityProviderDto | SystemIdentityPermissionDto | SystemIdentityPermissionRoleDto | SystemIdentityPersistedGrantDto | SystemIdentityRoleDto | SystemIdentityUserDto | SystemMigrationHistoryDto | SystemNotificationCssTemplateConfigurationDto | SystemNotificationEventDto | SystemNotificationNotificationTemplateDto | SystemNotificationStatefulEventDto | SystemQueryDto | SystemReportingConnectionInfoDto | SystemReportingFileSystemItemDto | SystemReportingFolderDto | SystemReportingFolderRootDto | SystemSimpleRtQueryDto | SystemTenantDto | SystemTenantConfigurationDto | SystemTenantModeConfigurationDto | SystemUiDashboardDto | SystemUiDashboardWidgetDto | SystemUiPageDto | SystemUiProcessDiagramDto | SystemUiStudioRootDto | SystemUiStudioTreeItemDto | SystemUiSymbolDefinitionDto | SystemUiSymbolLibraryDto;\n\n/** A connection to `SystemEntity_RelatesFromUnion`. */\nexport type SystemEntity_RelatesFromUnionConnectionDto = {\n __typename?: 'SystemEntity_RelatesFromUnionConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemEntity_RelatesFromUnionEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemEntity_RelatesFromUnionDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemEntity_RelatesFromUnion`. */\nexport type SystemEntity_RelatesFromUnionEdgeDto = {\n __typename?: 'SystemEntity_RelatesFromUnionEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemEntity_RelatesFromUnionDto>;\n};\n\n/** Union of types derived from System/Entity for RelatesTo association */\nexport type SystemEntity_RelatesToUnionDto = BasicAssetDto | BasicCityDto | BasicCountryDto | BasicDistrictDto | BasicEmployeeDto | BasicStateDto | BasicTreeDto | BasicTreeNodeDto | OctoSdkDemoCustomerDto | OctoSdkDemoMeteringPointDto | OctoSdkDemoOperatingFacilityDto | SystemAggregationRtQueryDto | SystemAutoIncrementDto | SystemBotAttributeAggregateConfigurationDto | SystemBotFixupDto | SystemBotServiceHookDto | SystemCommunicationDataPipelineDto | SystemCommunicationDataPipelineTriggerDto | SystemCommunicationEMailSenderConfigurationDto | SystemCommunicationEdgeAdapterDto | SystemCommunicationEdgePipelineDto | SystemCommunicationEnergyCommunityConfigurationDto | SystemCommunicationMeshAdapterDto | SystemCommunicationMeshPipelineDto | SystemCommunicationPipelineExecutionDto | SystemCommunicationPipelineStatisticsDto | SystemCommunicationPoolDto | SystemCommunicationSapConfigurationDto | SystemCommunicationTagDto | SystemGroupingAggregationRtQueryDto | SystemIdentityApiResourceDto | SystemIdentityApiScopeDto | SystemIdentityAzureEntraIdIdentityProviderDto | SystemIdentityClientDto | SystemIdentityFacebookIdentityProviderDto | SystemIdentityGoogleIdentityProviderDto | SystemIdentityIdentityResourceDto | SystemIdentityMailNotificationConfigurationDto | SystemIdentityMicrosoftAdIdentityProviderDto | SystemIdentityMicrosoftIdentityProviderDto | SystemIdentityOpenLdapIdentityProviderDto | SystemIdentityPermissionDto | SystemIdentityPermissionRoleDto | SystemIdentityPersistedGrantDto | SystemIdentityRoleDto | SystemIdentityUserDto | SystemMigrationHistoryDto | SystemNotificationCssTemplateConfigurationDto | SystemNotificationEventDto | SystemNotificationNotificationTemplateDto | SystemNotificationStatefulEventDto | SystemQueryDto | SystemReportingConnectionInfoDto | SystemReportingFileSystemItemDto | SystemReportingFolderDto | SystemReportingFolderRootDto | SystemSimpleRtQueryDto | SystemTenantDto | SystemTenantConfigurationDto | SystemTenantModeConfigurationDto | SystemUiDashboardDto | SystemUiDashboardWidgetDto | SystemUiPageDto | SystemUiProcessDiagramDto | SystemUiStudioRootDto | SystemUiStudioTreeItemDto | SystemUiSymbolDefinitionDto | SystemUiSymbolLibraryDto;\n\n/** A connection to `SystemEntity_RelatesToUnion`. */\nexport type SystemEntity_RelatesToUnionConnectionDto = {\n __typename?: 'SystemEntity_RelatesToUnionConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemEntity_RelatesToUnionEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemEntity_RelatesToUnionDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemEntity_RelatesToUnion`. */\nexport type SystemEntity_RelatesToUnionEdgeDto = {\n __typename?: 'SystemEntity_RelatesToUnionEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemEntity_RelatesToUnionDto>;\n};\n\n/** Runtime entities of construction kit enum 'System/EnvironmentModes' */\nexport enum SystemEnvironmentModesDto {\n /** The tenant is in development mode, used for development and testing */\n DevelopmentDto = 'DEVELOPMENT',\n /** The tenant is in production mode, used for live operations */\n ProductionDto = 'PRODUCTION',\n /** The tenant is in staging mode, used for pre-production testing */\n StagingDto = 'STAGING',\n /** The tenant is in testing mode, used for quality assurance */\n TestingDto = 'TESTING'\n}\n\n/** Runtime entities of construction kit record 'System/FieldFilter' */\nexport type SystemFieldFilterDto = {\n __typename?: 'SystemFieldFilter';\n attributePath: Scalars['String']['output'];\n comparisonValue?: Maybe<Scalars['String']['output']>;\n constructionKitType?: Maybe<CkTypeDto>;\n operator: SystemFieldFilterOperatorDto;\n};\n\nexport type SystemFieldFilterInputDto = {\n attributePath?: InputMaybe<Scalars['String']['input']>;\n comparisonValue?: InputMaybe<Scalars['String']['input']>;\n operator?: InputMaybe<SystemFieldFilterOperatorDto>;\n};\n\n/** Runtime entities of construction kit enum 'System/FieldFilterOperator' */\nexport enum SystemFieldFilterOperatorDto {\n /** Compares an array field with at least one element that matches the specified value. */\n AnyEqDto = 'ANY_EQ',\n /** Compares an array field with at least one element that matches the specified value using a pattern matching comparison. Use * as a wildcard character. */\n AnyLikeDto = 'ANY_LIKE',\n /** Compares the specified field to the specified value. */\n EqualsDto = 'EQUALS',\n /** Compares the specified field to the specified value and returns true if the field value is greater than or equal to the specified value. */\n GreaterEqualThanDto = 'GREATER_EQUAL_THAN',\n /** Compares the specified field to the specified value and returns true if the field value is greater than the specified value. */\n GreaterThanDto = 'GREATER_THAN',\n /** Compares a field to be equal any value in the specified array. */\n InDto = 'IN',\n /** Compares the specified field to the specified value and returns true if the field value is less than or equal to the specified value. */\n LessEqualThanDto = 'LESS_EQUAL_THAN',\n /** Compares the specified field to the specified value and returns true if the field value is less than the specified value. */\n LessThanDto = 'LESS_THAN',\n /** Compares a field to the specified value using a pattern matching comparison. Use * as a wildcard character. */\n LikeDto = 'LIKE',\n /** Matches an array field with at least one element that matches all the specified query criteria. */\n MatchDto = 'MATCH',\n /** Matches a field containing a value that matches the specified regular expression. */\n MatchRegExDto = 'MATCH_REG_EX',\n /** Compares the specified field to the specified value and returns true if the values are not equal. */\n NotEqualsDto = 'NOT_EQUALS',\n /** Compares a field to be not equal any value in the specified array. */\n NotInDto = 'NOT_IN'\n}\n\n/** Runtime entities of construction kit type 'System-2.0.2/GroupingAggregationRtQuery-1' */\nexport type SystemGroupingAggregationRtQueryDto = SystemEntityInterfaceDto & SystemPersistentQueryInterfaceDto & {\n __typename?: 'SystemGroupingAggregationRtQuery';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n attributeSearchFilter?: Maybe<SystemAttributeSearchFilterDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n columns: Array<SystemAggregationQueryColumnDto>;\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n description?: Maybe<Scalars['String']['output']>;\n fieldFilter?: Maybe<Array<SystemFieldFilterDto>>;\n groupingColumns: Array<Scalars['String']['output']>;\n name: Scalars['String']['output'];\n queryCkTypeId: Scalars['String']['output'];\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n textSearchFilter?: Maybe<SystemTextSearchFilterDto>;\n};\n\n\n/** Runtime entities of construction kit type 'System-2.0.2/GroupingAggregationRtQuery-1' */\nexport type SystemGroupingAggregationRtQueryAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System-2.0.2/GroupingAggregationRtQuery-1' */\nexport type SystemGroupingAggregationRtQueryConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System-2.0.2/GroupingAggregationRtQuery-1' */\nexport type SystemGroupingAggregationRtQueryRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System-2.0.2/GroupingAggregationRtQuery-1' */\nexport type SystemGroupingAggregationRtQueryRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System-2.0.2/GroupingAggregationRtQuery-1' */\nexport type SystemGroupingAggregationRtQueryTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `SystemGroupingAggregationRtQuery`. */\nexport type SystemGroupingAggregationRtQueryConnectionDto = {\n __typename?: 'SystemGroupingAggregationRtQueryConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemGroupingAggregationRtQueryEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemGroupingAggregationRtQueryDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemGroupingAggregationRtQuery`. */\nexport type SystemGroupingAggregationRtQueryEdgeDto = {\n __typename?: 'SystemGroupingAggregationRtQueryEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemGroupingAggregationRtQueryDto>;\n};\n\nexport type SystemGroupingAggregationRtQueryInputDto = {\n attributeSearchFilter?: InputMaybe<SystemAttributeSearchFilterInputDto>;\n columns?: InputMaybe<Array<InputMaybe<SystemAggregationQueryColumnInputDto>>>;\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n description?: InputMaybe<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<SystemFieldFilterInputDto>>>;\n groupingColumns?: InputMaybe<Array<Scalars['String']['input']>>;\n name?: InputMaybe<Scalars['String']['input']>;\n queryCkTypeId?: InputMaybe<Scalars['String']['input']>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n textSearchFilter?: InputMaybe<SystemTextSearchFilterInputDto>;\n};\n\nexport type SystemGroupingAggregationRtQueryInputUpdateDto = {\n /** Item to update */\n item: SystemGroupingAggregationRtQueryInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\nexport type SystemGroupingAggregationRtQueryMutationsDto = {\n __typename?: 'SystemGroupingAggregationRtQueryMutations';\n /** Creates new entities of type 'SystemGroupingAggregationRtQuery'. */\n create?: Maybe<Array<Maybe<SystemGroupingAggregationRtQueryDto>>>;\n /** Updates existing entity of type 'SystemGroupingAggregationRtQuery'. */\n update?: Maybe<Array<Maybe<SystemGroupingAggregationRtQueryDto>>>;\n};\n\n\nexport type SystemGroupingAggregationRtQueryMutationsCreateArgsDto = {\n entities: Array<InputMaybe<SystemGroupingAggregationRtQueryInputDto>>;\n};\n\n\nexport type SystemGroupingAggregationRtQueryMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<SystemGroupingAggregationRtQueryInputUpdateDto>>;\n};\n\nexport type SystemGroupingAggregationRtQueryUpdateDto = {\n __typename?: 'SystemGroupingAggregationRtQueryUpdate';\n /** The corresponding item */\n item?: Maybe<SystemGroupingAggregationRtQueryDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemGroupingAggregationRtQueryUpdateMessageDto = {\n __typename?: 'SystemGroupingAggregationRtQueryUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemGroupingAggregationRtQueryUpdateDto>>>;\n};\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/ApiResource-1' */\nexport type SystemIdentityApiResourceDto = SystemEntityInterfaceDto & SystemIdentityResourceInterfaceDto & {\n __typename?: 'SystemIdentityApiResource';\n allowedAccessTokenSigningAlgorithms: Array<Scalars['String']['output']>;\n apiSecrets: Array<SystemIdentitySecretDto>;\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n claims: Array<Scalars['String']['output']>;\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n description?: Maybe<Scalars['String']['output']>;\n displayName?: Maybe<Scalars['String']['output']>;\n enabled: Scalars['Boolean']['output'];\n name: Scalars['String']['output'];\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n requireResourceIndicator: Scalars['Boolean']['output'];\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n scopes: Array<Scalars['String']['output']>;\n showInDiscoveryDocument: Scalars['Boolean']['output'];\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/ApiResource-1' */\nexport type SystemIdentityApiResourceAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/ApiResource-1' */\nexport type SystemIdentityApiResourceConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/ApiResource-1' */\nexport type SystemIdentityApiResourceRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/ApiResource-1' */\nexport type SystemIdentityApiResourceRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/ApiResource-1' */\nexport type SystemIdentityApiResourceTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `SystemIdentityApiResource`. */\nexport type SystemIdentityApiResourceConnectionDto = {\n __typename?: 'SystemIdentityApiResourceConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemIdentityApiResourceEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemIdentityApiResourceDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemIdentityApiResource`. */\nexport type SystemIdentityApiResourceEdgeDto = {\n __typename?: 'SystemIdentityApiResourceEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemIdentityApiResourceDto>;\n};\n\nexport type SystemIdentityApiResourceInputDto = {\n allowedAccessTokenSigningAlgorithms?: InputMaybe<Array<Scalars['String']['input']>>;\n apiSecrets?: InputMaybe<Array<InputMaybe<SystemIdentitySecretInputDto>>>;\n claims?: InputMaybe<Array<Scalars['String']['input']>>;\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n description?: InputMaybe<Scalars['String']['input']>;\n displayName?: InputMaybe<Scalars['String']['input']>;\n enabled?: InputMaybe<Scalars['Boolean']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n requireResourceIndicator?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n scopes?: InputMaybe<Array<Scalars['String']['input']>>;\n showInDiscoveryDocument?: InputMaybe<Scalars['Boolean']['input']>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n};\n\nexport type SystemIdentityApiResourceInputUpdateDto = {\n /** Item to update */\n item: SystemIdentityApiResourceInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\nexport type SystemIdentityApiResourceMutationsDto = {\n __typename?: 'SystemIdentityApiResourceMutations';\n /** Creates new entities of type 'SystemIdentityApiResource'. */\n create?: Maybe<Array<Maybe<SystemIdentityApiResourceDto>>>;\n /** Updates existing entity of type 'SystemIdentityApiResource'. */\n update?: Maybe<Array<Maybe<SystemIdentityApiResourceDto>>>;\n};\n\n\nexport type SystemIdentityApiResourceMutationsCreateArgsDto = {\n entities: Array<InputMaybe<SystemIdentityApiResourceInputDto>>;\n};\n\n\nexport type SystemIdentityApiResourceMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<SystemIdentityApiResourceInputUpdateDto>>;\n};\n\nexport type SystemIdentityApiResourceUpdateDto = {\n __typename?: 'SystemIdentityApiResourceUpdate';\n /** The corresponding item */\n item?: Maybe<SystemIdentityApiResourceDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemIdentityApiResourceUpdateMessageDto = {\n __typename?: 'SystemIdentityApiResourceUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemIdentityApiResourceUpdateDto>>>;\n};\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/ApiScope-1' */\nexport type SystemIdentityApiScopeDto = SystemEntityInterfaceDto & SystemIdentityResourceInterfaceDto & {\n __typename?: 'SystemIdentityApiScope';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n claims: Array<Scalars['String']['output']>;\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n description?: Maybe<Scalars['String']['output']>;\n displayName?: Maybe<Scalars['String']['output']>;\n enabled: Scalars['Boolean']['output'];\n isEmphasized: Scalars['Boolean']['output'];\n isRequired: Scalars['Boolean']['output'];\n name: Scalars['String']['output'];\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n showInDiscoveryDocument: Scalars['Boolean']['output'];\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/ApiScope-1' */\nexport type SystemIdentityApiScopeAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/ApiScope-1' */\nexport type SystemIdentityApiScopeConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/ApiScope-1' */\nexport type SystemIdentityApiScopeRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/ApiScope-1' */\nexport type SystemIdentityApiScopeRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/ApiScope-1' */\nexport type SystemIdentityApiScopeTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `SystemIdentityApiScope`. */\nexport type SystemIdentityApiScopeConnectionDto = {\n __typename?: 'SystemIdentityApiScopeConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemIdentityApiScopeEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemIdentityApiScopeDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemIdentityApiScope`. */\nexport type SystemIdentityApiScopeEdgeDto = {\n __typename?: 'SystemIdentityApiScopeEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemIdentityApiScopeDto>;\n};\n\nexport type SystemIdentityApiScopeInputDto = {\n claims?: InputMaybe<Array<Scalars['String']['input']>>;\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n description?: InputMaybe<Scalars['String']['input']>;\n displayName?: InputMaybe<Scalars['String']['input']>;\n enabled?: InputMaybe<Scalars['Boolean']['input']>;\n isEmphasized?: InputMaybe<Scalars['Boolean']['input']>;\n isRequired?: InputMaybe<Scalars['Boolean']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n showInDiscoveryDocument?: InputMaybe<Scalars['Boolean']['input']>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n};\n\nexport type SystemIdentityApiScopeInputUpdateDto = {\n /** Item to update */\n item: SystemIdentityApiScopeInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\nexport type SystemIdentityApiScopeMutationsDto = {\n __typename?: 'SystemIdentityApiScopeMutations';\n /** Creates new entities of type 'SystemIdentityApiScope'. */\n create?: Maybe<Array<Maybe<SystemIdentityApiScopeDto>>>;\n /** Updates existing entity of type 'SystemIdentityApiScope'. */\n update?: Maybe<Array<Maybe<SystemIdentityApiScopeDto>>>;\n};\n\n\nexport type SystemIdentityApiScopeMutationsCreateArgsDto = {\n entities: Array<InputMaybe<SystemIdentityApiScopeInputDto>>;\n};\n\n\nexport type SystemIdentityApiScopeMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<SystemIdentityApiScopeInputUpdateDto>>;\n};\n\nexport type SystemIdentityApiScopeUpdateDto = {\n __typename?: 'SystemIdentityApiScopeUpdate';\n /** The corresponding item */\n item?: Maybe<SystemIdentityApiScopeDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemIdentityApiScopeUpdateMessageDto = {\n __typename?: 'SystemIdentityApiScopeUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemIdentityApiScopeUpdateDto>>>;\n};\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/AzureEntraIdIdentityProvider-1' */\nexport type SystemIdentityAzureEntraIdIdentityProviderDto = SystemEntityInterfaceDto & SystemIdentityIdentityProviderInterfaceDto & {\n __typename?: 'SystemIdentityAzureEntraIdIdentityProvider';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n authority?: Maybe<Scalars['String']['output']>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n clientId: Scalars['String']['output'];\n clientSecret: Scalars['String']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n description?: Maybe<Scalars['String']['output']>;\n displayName?: Maybe<Scalars['String']['output']>;\n isEnabled: Scalars['Boolean']['output'];\n name: Scalars['String']['output'];\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n tenantId: Scalars['String']['output'];\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/AzureEntraIdIdentityProvider-1' */\nexport type SystemIdentityAzureEntraIdIdentityProviderAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/AzureEntraIdIdentityProvider-1' */\nexport type SystemIdentityAzureEntraIdIdentityProviderConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/AzureEntraIdIdentityProvider-1' */\nexport type SystemIdentityAzureEntraIdIdentityProviderRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/AzureEntraIdIdentityProvider-1' */\nexport type SystemIdentityAzureEntraIdIdentityProviderRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/AzureEntraIdIdentityProvider-1' */\nexport type SystemIdentityAzureEntraIdIdentityProviderTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `SystemIdentityAzureEntraIdIdentityProvider`. */\nexport type SystemIdentityAzureEntraIdIdentityProviderConnectionDto = {\n __typename?: 'SystemIdentityAzureEntraIdIdentityProviderConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemIdentityAzureEntraIdIdentityProviderEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemIdentityAzureEntraIdIdentityProviderDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemIdentityAzureEntraIdIdentityProvider`. */\nexport type SystemIdentityAzureEntraIdIdentityProviderEdgeDto = {\n __typename?: 'SystemIdentityAzureEntraIdIdentityProviderEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemIdentityAzureEntraIdIdentityProviderDto>;\n};\n\nexport type SystemIdentityAzureEntraIdIdentityProviderInputDto = {\n authority?: InputMaybe<Scalars['String']['input']>;\n clientId?: InputMaybe<Scalars['String']['input']>;\n clientSecret?: InputMaybe<Scalars['String']['input']>;\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n description?: InputMaybe<Scalars['String']['input']>;\n displayName?: InputMaybe<Scalars['String']['input']>;\n isEnabled?: InputMaybe<Scalars['Boolean']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n tenantId?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type SystemIdentityAzureEntraIdIdentityProviderInputUpdateDto = {\n /** Item to update */\n item: SystemIdentityAzureEntraIdIdentityProviderInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\nexport type SystemIdentityAzureEntraIdIdentityProviderMutationsDto = {\n __typename?: 'SystemIdentityAzureEntraIdIdentityProviderMutations';\n /** Creates new entities of type 'SystemIdentityAzureEntraIdIdentityProvider'. */\n create?: Maybe<Array<Maybe<SystemIdentityAzureEntraIdIdentityProviderDto>>>;\n /** Updates existing entity of type 'SystemIdentityAzureEntraIdIdentityProvider'. */\n update?: Maybe<Array<Maybe<SystemIdentityAzureEntraIdIdentityProviderDto>>>;\n};\n\n\nexport type SystemIdentityAzureEntraIdIdentityProviderMutationsCreateArgsDto = {\n entities: Array<InputMaybe<SystemIdentityAzureEntraIdIdentityProviderInputDto>>;\n};\n\n\nexport type SystemIdentityAzureEntraIdIdentityProviderMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<SystemIdentityAzureEntraIdIdentityProviderInputUpdateDto>>;\n};\n\nexport type SystemIdentityAzureEntraIdIdentityProviderUpdateDto = {\n __typename?: 'SystemIdentityAzureEntraIdIdentityProviderUpdate';\n /** The corresponding item */\n item?: Maybe<SystemIdentityAzureEntraIdIdentityProviderDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemIdentityAzureEntraIdIdentityProviderUpdateMessageDto = {\n __typename?: 'SystemIdentityAzureEntraIdIdentityProviderUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemIdentityAzureEntraIdIdentityProviderUpdateDto>>>;\n};\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/Client-1' */\nexport type SystemIdentityClientDto = SystemEntityInterfaceDto & {\n __typename?: 'SystemIdentityClient';\n absoluteRefreshTokenLifetime: Scalars['Int']['output'];\n accessTokenLifetime: Scalars['Int']['output'];\n accessTokenType: SystemIdentityTokenTypeDto;\n allowAccessTokensViaBrowser: Scalars['Boolean']['output'];\n allowOfflineAccess: Scalars['Boolean']['output'];\n allowPlainTextPkce: Scalars['Boolean']['output'];\n allowRememberConsent: Scalars['Boolean']['output'];\n allowedCorsOrigins: Array<Scalars['String']['output']>;\n allowedGrantTypes: Array<Scalars['String']['output']>;\n allowedIdentityTokenSigningAlgorithms: Array<Scalars['String']['output']>;\n allowedScopes: Array<Scalars['String']['output']>;\n alwaysIncludeUserClaimsInIdToken: Scalars['Boolean']['output'];\n alwaysSendClientClaims: Scalars['Boolean']['output'];\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n authorizationCodeLifetime: Scalars['Int']['output'];\n backChannelLogoutSessionRequired: Scalars['Boolean']['output'];\n backChannelLogoutUri?: Maybe<Scalars['String']['output']>;\n cibaLifetime?: Maybe<Scalars['Int']['output']>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n clientClaims: Array<SystemIdentityClientClaimDto>;\n clientClaimsPrefix?: Maybe<Scalars['String']['output']>;\n clientId: Scalars['String']['output'];\n clientName?: Maybe<Scalars['String']['output']>;\n clientSecrets: Array<SystemIdentitySecretDto>;\n clientUri?: Maybe<Scalars['String']['output']>;\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n consentLifetime?: Maybe<Scalars['Int']['output']>;\n constructionKitType?: Maybe<CkTypeDto>;\n coordinateLifetimeWithUserSession?: Maybe<Scalars['Boolean']['output']>;\n dPoPClockSkew: Scalars['Seconds']['output'];\n dPoPValidationMode: Scalars['Int']['output'];\n description?: Maybe<Scalars['String']['output']>;\n deviceCodeLifetime: Scalars['Int']['output'];\n enableLocalLogin: Scalars['Boolean']['output'];\n enabled: Scalars['Boolean']['output'];\n frontChannelLogoutSessionRequired: Scalars['Boolean']['output'];\n frontChannelLogoutUri?: Maybe<Scalars['String']['output']>;\n identityProviderRestrictions: Array<Scalars['String']['output']>;\n identityTokenLifetime: Scalars['Int']['output'];\n includeJwtId: Scalars['Boolean']['output'];\n initiateLoginUri?: Maybe<Scalars['String']['output']>;\n logoUri?: Maybe<Scalars['String']['output']>;\n pairWiseSubjectSalt?: Maybe<Scalars['String']['output']>;\n pollingInterval?: Maybe<Scalars['Int']['output']>;\n postLogoutRedirectUris: Array<Scalars['String']['output']>;\n protocolType: Scalars['String']['output'];\n redirectUris: Array<Scalars['String']['output']>;\n refreshTokenExpiration: SystemIdentityTokenExpirationDto;\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n requireClientSecret: Scalars['Boolean']['output'];\n requireConsent?: Maybe<Scalars['Boolean']['output']>;\n requireDPoP: Scalars['Boolean']['output'];\n requirePkce: Scalars['Boolean']['output'];\n requireRequestObject: Scalars['Boolean']['output'];\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n slidingRefreshTokenLifetime: Scalars['Int']['output'];\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n updateAccessTokenClaimsOnRefresh: Scalars['Boolean']['output'];\n userCodeType?: Maybe<Scalars['String']['output']>;\n userSsoLifetime?: Maybe<Scalars['Int']['output']>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/Client-1' */\nexport type SystemIdentityClientAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/Client-1' */\nexport type SystemIdentityClientConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/Client-1' */\nexport type SystemIdentityClientRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/Client-1' */\nexport type SystemIdentityClientRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/Client-1' */\nexport type SystemIdentityClientTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** Runtime entities of construction kit record 'System.Identity/ClientClaim' */\nexport type SystemIdentityClientClaimDto = {\n __typename?: 'SystemIdentityClientClaim';\n claimType: Scalars['String']['output'];\n claimValue: Scalars['String']['output'];\n claimValueType: Scalars['String']['output'];\n constructionKitType?: Maybe<CkTypeDto>;\n};\n\nexport type SystemIdentityClientClaimInputDto = {\n claimType?: InputMaybe<Scalars['String']['input']>;\n claimValue?: InputMaybe<Scalars['String']['input']>;\n claimValueType?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** A connection to `SystemIdentityClient`. */\nexport type SystemIdentityClientConnectionDto = {\n __typename?: 'SystemIdentityClientConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemIdentityClientEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemIdentityClientDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemIdentityClient`. */\nexport type SystemIdentityClientEdgeDto = {\n __typename?: 'SystemIdentityClientEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemIdentityClientDto>;\n};\n\nexport type SystemIdentityClientInputDto = {\n absoluteRefreshTokenLifetime?: InputMaybe<Scalars['Int']['input']>;\n accessTokenLifetime?: InputMaybe<Scalars['Int']['input']>;\n accessTokenType?: InputMaybe<SystemIdentityTokenTypeDto>;\n allowAccessTokensViaBrowser?: InputMaybe<Scalars['Boolean']['input']>;\n allowOfflineAccess?: InputMaybe<Scalars['Boolean']['input']>;\n allowPlainTextPkce?: InputMaybe<Scalars['Boolean']['input']>;\n allowRememberConsent?: InputMaybe<Scalars['Boolean']['input']>;\n allowedCorsOrigins?: InputMaybe<Array<Scalars['String']['input']>>;\n allowedGrantTypes?: InputMaybe<Array<Scalars['String']['input']>>;\n allowedIdentityTokenSigningAlgorithms?: InputMaybe<Array<Scalars['String']['input']>>;\n allowedScopes?: InputMaybe<Array<Scalars['String']['input']>>;\n alwaysIncludeUserClaimsInIdToken?: InputMaybe<Scalars['Boolean']['input']>;\n alwaysSendClientClaims?: InputMaybe<Scalars['Boolean']['input']>;\n authorizationCodeLifetime?: InputMaybe<Scalars['Int']['input']>;\n backChannelLogoutSessionRequired?: InputMaybe<Scalars['Boolean']['input']>;\n backChannelLogoutUri?: InputMaybe<Scalars['String']['input']>;\n cibaLifetime?: InputMaybe<Scalars['Int']['input']>;\n clientClaims?: InputMaybe<Array<InputMaybe<SystemIdentityClientClaimInputDto>>>;\n clientClaimsPrefix?: InputMaybe<Scalars['String']['input']>;\n clientId?: InputMaybe<Scalars['String']['input']>;\n clientName?: InputMaybe<Scalars['String']['input']>;\n clientSecrets?: InputMaybe<Array<InputMaybe<SystemIdentitySecretInputDto>>>;\n clientUri?: InputMaybe<Scalars['String']['input']>;\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n consentLifetime?: InputMaybe<Scalars['Int']['input']>;\n coordinateLifetimeWithUserSession?: InputMaybe<Scalars['Boolean']['input']>;\n dPoPClockSkew?: InputMaybe<Scalars['Seconds']['input']>;\n dPoPValidationMode?: InputMaybe<Scalars['Int']['input']>;\n description?: InputMaybe<Scalars['String']['input']>;\n deviceCodeLifetime?: InputMaybe<Scalars['Int']['input']>;\n enableLocalLogin?: InputMaybe<Scalars['Boolean']['input']>;\n enabled?: InputMaybe<Scalars['Boolean']['input']>;\n frontChannelLogoutSessionRequired?: InputMaybe<Scalars['Boolean']['input']>;\n frontChannelLogoutUri?: InputMaybe<Scalars['String']['input']>;\n identityProviderRestrictions?: InputMaybe<Array<Scalars['String']['input']>>;\n identityTokenLifetime?: InputMaybe<Scalars['Int']['input']>;\n includeJwtId?: InputMaybe<Scalars['Boolean']['input']>;\n initiateLoginUri?: InputMaybe<Scalars['String']['input']>;\n logoUri?: InputMaybe<Scalars['String']['input']>;\n pairWiseSubjectSalt?: InputMaybe<Scalars['String']['input']>;\n pollingInterval?: InputMaybe<Scalars['Int']['input']>;\n postLogoutRedirectUris?: InputMaybe<Array<Scalars['String']['input']>>;\n protocolType?: InputMaybe<Scalars['String']['input']>;\n redirectUris?: InputMaybe<Array<Scalars['String']['input']>>;\n refreshTokenExpiration?: InputMaybe<SystemIdentityTokenExpirationDto>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n requireClientSecret?: InputMaybe<Scalars['Boolean']['input']>;\n requireConsent?: InputMaybe<Scalars['Boolean']['input']>;\n requireDPoP?: InputMaybe<Scalars['Boolean']['input']>;\n requirePkce?: InputMaybe<Scalars['Boolean']['input']>;\n requireRequestObject?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n slidingRefreshTokenLifetime?: InputMaybe<Scalars['Int']['input']>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n updateAccessTokenClaimsOnRefresh?: InputMaybe<Scalars['Boolean']['input']>;\n userCodeType?: InputMaybe<Scalars['String']['input']>;\n userSsoLifetime?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport type SystemIdentityClientInputUpdateDto = {\n /** Item to update */\n item: SystemIdentityClientInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\nexport type SystemIdentityClientMutationsDto = {\n __typename?: 'SystemIdentityClientMutations';\n /** Creates new entities of type 'SystemIdentityClient'. */\n create?: Maybe<Array<Maybe<SystemIdentityClientDto>>>;\n /** Updates existing entity of type 'SystemIdentityClient'. */\n update?: Maybe<Array<Maybe<SystemIdentityClientDto>>>;\n};\n\n\nexport type SystemIdentityClientMutationsCreateArgsDto = {\n entities: Array<InputMaybe<SystemIdentityClientInputDto>>;\n};\n\n\nexport type SystemIdentityClientMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<SystemIdentityClientInputUpdateDto>>;\n};\n\nexport type SystemIdentityClientUpdateDto = {\n __typename?: 'SystemIdentityClientUpdate';\n /** The corresponding item */\n item?: Maybe<SystemIdentityClientDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemIdentityClientUpdateMessageDto = {\n __typename?: 'SystemIdentityClientUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemIdentityClientUpdateDto>>>;\n};\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/FacebookIdentityProvider-1' */\nexport type SystemIdentityFacebookIdentityProviderDto = SystemEntityInterfaceDto & SystemIdentityIdentityProviderInterfaceDto & {\n __typename?: 'SystemIdentityFacebookIdentityProvider';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n clientId: Scalars['String']['output'];\n clientSecret: Scalars['String']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n description?: Maybe<Scalars['String']['output']>;\n displayName?: Maybe<Scalars['String']['output']>;\n isEnabled: Scalars['Boolean']['output'];\n name: Scalars['String']['output'];\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/FacebookIdentityProvider-1' */\nexport type SystemIdentityFacebookIdentityProviderAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/FacebookIdentityProvider-1' */\nexport type SystemIdentityFacebookIdentityProviderConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/FacebookIdentityProvider-1' */\nexport type SystemIdentityFacebookIdentityProviderRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/FacebookIdentityProvider-1' */\nexport type SystemIdentityFacebookIdentityProviderRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/FacebookIdentityProvider-1' */\nexport type SystemIdentityFacebookIdentityProviderTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `SystemIdentityFacebookIdentityProvider`. */\nexport type SystemIdentityFacebookIdentityProviderConnectionDto = {\n __typename?: 'SystemIdentityFacebookIdentityProviderConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemIdentityFacebookIdentityProviderEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemIdentityFacebookIdentityProviderDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemIdentityFacebookIdentityProvider`. */\nexport type SystemIdentityFacebookIdentityProviderEdgeDto = {\n __typename?: 'SystemIdentityFacebookIdentityProviderEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemIdentityFacebookIdentityProviderDto>;\n};\n\nexport type SystemIdentityFacebookIdentityProviderInputDto = {\n clientId?: InputMaybe<Scalars['String']['input']>;\n clientSecret?: InputMaybe<Scalars['String']['input']>;\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n description?: InputMaybe<Scalars['String']['input']>;\n displayName?: InputMaybe<Scalars['String']['input']>;\n isEnabled?: InputMaybe<Scalars['Boolean']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n};\n\nexport type SystemIdentityFacebookIdentityProviderInputUpdateDto = {\n /** Item to update */\n item: SystemIdentityFacebookIdentityProviderInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\nexport type SystemIdentityFacebookIdentityProviderMutationsDto = {\n __typename?: 'SystemIdentityFacebookIdentityProviderMutations';\n /** Creates new entities of type 'SystemIdentityFacebookIdentityProvider'. */\n create?: Maybe<Array<Maybe<SystemIdentityFacebookIdentityProviderDto>>>;\n /** Updates existing entity of type 'SystemIdentityFacebookIdentityProvider'. */\n update?: Maybe<Array<Maybe<SystemIdentityFacebookIdentityProviderDto>>>;\n};\n\n\nexport type SystemIdentityFacebookIdentityProviderMutationsCreateArgsDto = {\n entities: Array<InputMaybe<SystemIdentityFacebookIdentityProviderInputDto>>;\n};\n\n\nexport type SystemIdentityFacebookIdentityProviderMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<SystemIdentityFacebookIdentityProviderInputUpdateDto>>;\n};\n\nexport type SystemIdentityFacebookIdentityProviderUpdateDto = {\n __typename?: 'SystemIdentityFacebookIdentityProviderUpdate';\n /** The corresponding item */\n item?: Maybe<SystemIdentityFacebookIdentityProviderDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemIdentityFacebookIdentityProviderUpdateMessageDto = {\n __typename?: 'SystemIdentityFacebookIdentityProviderUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemIdentityFacebookIdentityProviderUpdateDto>>>;\n};\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/GoogleIdentityProvider-1' */\nexport type SystemIdentityGoogleIdentityProviderDto = SystemEntityInterfaceDto & SystemIdentityIdentityProviderInterfaceDto & {\n __typename?: 'SystemIdentityGoogleIdentityProvider';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n clientId: Scalars['String']['output'];\n clientSecret: Scalars['String']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n description?: Maybe<Scalars['String']['output']>;\n displayName?: Maybe<Scalars['String']['output']>;\n isEnabled: Scalars['Boolean']['output'];\n name: Scalars['String']['output'];\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/GoogleIdentityProvider-1' */\nexport type SystemIdentityGoogleIdentityProviderAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/GoogleIdentityProvider-1' */\nexport type SystemIdentityGoogleIdentityProviderConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/GoogleIdentityProvider-1' */\nexport type SystemIdentityGoogleIdentityProviderRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/GoogleIdentityProvider-1' */\nexport type SystemIdentityGoogleIdentityProviderRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/GoogleIdentityProvider-1' */\nexport type SystemIdentityGoogleIdentityProviderTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `SystemIdentityGoogleIdentityProvider`. */\nexport type SystemIdentityGoogleIdentityProviderConnectionDto = {\n __typename?: 'SystemIdentityGoogleIdentityProviderConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemIdentityGoogleIdentityProviderEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemIdentityGoogleIdentityProviderDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemIdentityGoogleIdentityProvider`. */\nexport type SystemIdentityGoogleIdentityProviderEdgeDto = {\n __typename?: 'SystemIdentityGoogleIdentityProviderEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemIdentityGoogleIdentityProviderDto>;\n};\n\nexport type SystemIdentityGoogleIdentityProviderInputDto = {\n clientId?: InputMaybe<Scalars['String']['input']>;\n clientSecret?: InputMaybe<Scalars['String']['input']>;\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n description?: InputMaybe<Scalars['String']['input']>;\n displayName?: InputMaybe<Scalars['String']['input']>;\n isEnabled?: InputMaybe<Scalars['Boolean']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n};\n\nexport type SystemIdentityGoogleIdentityProviderInputUpdateDto = {\n /** Item to update */\n item: SystemIdentityGoogleIdentityProviderInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\nexport type SystemIdentityGoogleIdentityProviderMutationsDto = {\n __typename?: 'SystemIdentityGoogleIdentityProviderMutations';\n /** Creates new entities of type 'SystemIdentityGoogleIdentityProvider'. */\n create?: Maybe<Array<Maybe<SystemIdentityGoogleIdentityProviderDto>>>;\n /** Updates existing entity of type 'SystemIdentityGoogleIdentityProvider'. */\n update?: Maybe<Array<Maybe<SystemIdentityGoogleIdentityProviderDto>>>;\n};\n\n\nexport type SystemIdentityGoogleIdentityProviderMutationsCreateArgsDto = {\n entities: Array<InputMaybe<SystemIdentityGoogleIdentityProviderInputDto>>;\n};\n\n\nexport type SystemIdentityGoogleIdentityProviderMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<SystemIdentityGoogleIdentityProviderInputUpdateDto>>;\n};\n\nexport type SystemIdentityGoogleIdentityProviderUpdateDto = {\n __typename?: 'SystemIdentityGoogleIdentityProviderUpdate';\n /** The corresponding item */\n item?: Maybe<SystemIdentityGoogleIdentityProviderDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemIdentityGoogleIdentityProviderUpdateMessageDto = {\n __typename?: 'SystemIdentityGoogleIdentityProviderUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemIdentityGoogleIdentityProviderUpdateDto>>>;\n};\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/IdentityProvider-1' */\nexport type SystemIdentityIdentityProviderDto = SystemEntityInterfaceDto & {\n __typename?: 'SystemIdentityIdentityProvider';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n description?: Maybe<Scalars['String']['output']>;\n displayName?: Maybe<Scalars['String']['output']>;\n isEnabled: Scalars['Boolean']['output'];\n name: Scalars['String']['output'];\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/IdentityProvider-1' */\nexport type SystemIdentityIdentityProviderAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/IdentityProvider-1' */\nexport type SystemIdentityIdentityProviderConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/IdentityProvider-1' */\nexport type SystemIdentityIdentityProviderRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/IdentityProvider-1' */\nexport type SystemIdentityIdentityProviderRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/IdentityProvider-1' */\nexport type SystemIdentityIdentityProviderTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `SystemIdentityIdentityProvider`. */\nexport type SystemIdentityIdentityProviderConnectionDto = {\n __typename?: 'SystemIdentityIdentityProviderConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemIdentityIdentityProviderEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemIdentityIdentityProviderDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemIdentityIdentityProvider`. */\nexport type SystemIdentityIdentityProviderEdgeDto = {\n __typename?: 'SystemIdentityIdentityProviderEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemIdentityIdentityProviderDto>;\n};\n\n/** Interface for runtime entities of construction kit type 'System.Identity-2.0.0/IdentityProvider-1' */\nexport type SystemIdentityIdentityProviderInterfaceDto = {\n ckTypeId: Scalars['RtCkTypeId']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n description?: Maybe<Scalars['String']['output']>;\n displayName?: Maybe<Scalars['String']['output']>;\n isEnabled: Scalars['Boolean']['output'];\n name: Scalars['String']['output'];\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n};\n\n\n/** Interface for runtime entities of construction kit type 'System.Identity-2.0.0/IdentityProvider-1' */\nexport type SystemIdentityIdentityProviderInterfaceConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Interface for runtime entities of construction kit type 'System.Identity-2.0.0/IdentityProvider-1' */\nexport type SystemIdentityIdentityProviderInterfaceRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Interface for runtime entities of construction kit type 'System.Identity-2.0.0/IdentityProvider-1' */\nexport type SystemIdentityIdentityProviderInterfaceRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Interface for runtime entities of construction kit type 'System.Identity-2.0.0/IdentityProvider-1' */\nexport type SystemIdentityIdentityProviderInterfaceTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\nexport type SystemIdentityIdentityProviderUpdateDto = {\n __typename?: 'SystemIdentityIdentityProviderUpdate';\n /** The corresponding item */\n item?: Maybe<SystemIdentityIdentityProviderDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemIdentityIdentityProviderUpdateMessageDto = {\n __typename?: 'SystemIdentityIdentityProviderUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemIdentityIdentityProviderUpdateDto>>>;\n};\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/IdentityResource-1' */\nexport type SystemIdentityIdentityResourceDto = SystemEntityInterfaceDto & SystemIdentityResourceInterfaceDto & {\n __typename?: 'SystemIdentityIdentityResource';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n claims: Array<Scalars['String']['output']>;\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n description?: Maybe<Scalars['String']['output']>;\n displayName?: Maybe<Scalars['String']['output']>;\n enabled: Scalars['Boolean']['output'];\n isEmphasized: Scalars['Boolean']['output'];\n isRequired: Scalars['Boolean']['output'];\n name: Scalars['String']['output'];\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n showInDiscoveryDocument: Scalars['Boolean']['output'];\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/IdentityResource-1' */\nexport type SystemIdentityIdentityResourceAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/IdentityResource-1' */\nexport type SystemIdentityIdentityResourceConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/IdentityResource-1' */\nexport type SystemIdentityIdentityResourceRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/IdentityResource-1' */\nexport type SystemIdentityIdentityResourceRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/IdentityResource-1' */\nexport type SystemIdentityIdentityResourceTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `SystemIdentityIdentityResource`. */\nexport type SystemIdentityIdentityResourceConnectionDto = {\n __typename?: 'SystemIdentityIdentityResourceConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemIdentityIdentityResourceEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemIdentityIdentityResourceDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemIdentityIdentityResource`. */\nexport type SystemIdentityIdentityResourceEdgeDto = {\n __typename?: 'SystemIdentityIdentityResourceEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemIdentityIdentityResourceDto>;\n};\n\nexport type SystemIdentityIdentityResourceInputDto = {\n claims?: InputMaybe<Array<Scalars['String']['input']>>;\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n description?: InputMaybe<Scalars['String']['input']>;\n displayName?: InputMaybe<Scalars['String']['input']>;\n enabled?: InputMaybe<Scalars['Boolean']['input']>;\n isEmphasized?: InputMaybe<Scalars['Boolean']['input']>;\n isRequired?: InputMaybe<Scalars['Boolean']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n showInDiscoveryDocument?: InputMaybe<Scalars['Boolean']['input']>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n};\n\nexport type SystemIdentityIdentityResourceInputUpdateDto = {\n /** Item to update */\n item: SystemIdentityIdentityResourceInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\nexport type SystemIdentityIdentityResourceMutationsDto = {\n __typename?: 'SystemIdentityIdentityResourceMutations';\n /** Creates new entities of type 'SystemIdentityIdentityResource'. */\n create?: Maybe<Array<Maybe<SystemIdentityIdentityResourceDto>>>;\n /** Updates existing entity of type 'SystemIdentityIdentityResource'. */\n update?: Maybe<Array<Maybe<SystemIdentityIdentityResourceDto>>>;\n};\n\n\nexport type SystemIdentityIdentityResourceMutationsCreateArgsDto = {\n entities: Array<InputMaybe<SystemIdentityIdentityResourceInputDto>>;\n};\n\n\nexport type SystemIdentityIdentityResourceMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<SystemIdentityIdentityResourceInputUpdateDto>>;\n};\n\nexport type SystemIdentityIdentityResourceUpdateDto = {\n __typename?: 'SystemIdentityIdentityResourceUpdate';\n /** The corresponding item */\n item?: Maybe<SystemIdentityIdentityResourceDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemIdentityIdentityResourceUpdateMessageDto = {\n __typename?: 'SystemIdentityIdentityResourceUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemIdentityIdentityResourceUpdateDto>>>;\n};\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/MailNotificationConfiguration-1' */\nexport type SystemIdentityMailNotificationConfigurationDto = SystemConfigurationInterfaceDto & SystemEntityInterfaceDto & {\n __typename?: 'SystemIdentityMailNotificationConfiguration';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n enableEmailNotifications: Scalars['Boolean']['output'];\n redirectAfterEmailInteractionUrl?: Maybe<Scalars['String']['output']>;\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n usedBy?: Maybe<SystemCommunicationPipeline_UsedByUnionConnectionDto>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/MailNotificationConfiguration-1' */\nexport type SystemIdentityMailNotificationConfigurationAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/MailNotificationConfiguration-1' */\nexport type SystemIdentityMailNotificationConfigurationConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/MailNotificationConfiguration-1' */\nexport type SystemIdentityMailNotificationConfigurationRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/MailNotificationConfiguration-1' */\nexport type SystemIdentityMailNotificationConfigurationRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/MailNotificationConfiguration-1' */\nexport type SystemIdentityMailNotificationConfigurationTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/MailNotificationConfiguration-1' */\nexport type SystemIdentityMailNotificationConfigurationUsedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `SystemIdentityMailNotificationConfiguration`. */\nexport type SystemIdentityMailNotificationConfigurationConnectionDto = {\n __typename?: 'SystemIdentityMailNotificationConfigurationConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemIdentityMailNotificationConfigurationEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemIdentityMailNotificationConfigurationDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemIdentityMailNotificationConfiguration`. */\nexport type SystemIdentityMailNotificationConfigurationEdgeDto = {\n __typename?: 'SystemIdentityMailNotificationConfigurationEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemIdentityMailNotificationConfigurationDto>;\n};\n\nexport type SystemIdentityMailNotificationConfigurationInputDto = {\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n enableEmailNotifications?: InputMaybe<Scalars['Boolean']['input']>;\n redirectAfterEmailInteractionUrl?: InputMaybe<Scalars['String']['input']>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n usedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n};\n\nexport type SystemIdentityMailNotificationConfigurationInputUpdateDto = {\n /** Item to update */\n item: SystemIdentityMailNotificationConfigurationInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\nexport type SystemIdentityMailNotificationConfigurationMutationsDto = {\n __typename?: 'SystemIdentityMailNotificationConfigurationMutations';\n /** Creates new entities of type 'SystemIdentityMailNotificationConfiguration'. */\n create?: Maybe<Array<Maybe<SystemIdentityMailNotificationConfigurationDto>>>;\n /** Updates existing entity of type 'SystemIdentityMailNotificationConfiguration'. */\n update?: Maybe<Array<Maybe<SystemIdentityMailNotificationConfigurationDto>>>;\n};\n\n\nexport type SystemIdentityMailNotificationConfigurationMutationsCreateArgsDto = {\n entities: Array<InputMaybe<SystemIdentityMailNotificationConfigurationInputDto>>;\n};\n\n\nexport type SystemIdentityMailNotificationConfigurationMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<SystemIdentityMailNotificationConfigurationInputUpdateDto>>;\n};\n\nexport type SystemIdentityMailNotificationConfigurationUpdateDto = {\n __typename?: 'SystemIdentityMailNotificationConfigurationUpdate';\n /** The corresponding item */\n item?: Maybe<SystemIdentityMailNotificationConfigurationDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemIdentityMailNotificationConfigurationUpdateMessageDto = {\n __typename?: 'SystemIdentityMailNotificationConfigurationUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemIdentityMailNotificationConfigurationUpdateDto>>>;\n};\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/MicrosoftAdIdentityProvider-1' */\nexport type SystemIdentityMicrosoftAdIdentityProviderDto = SystemEntityInterfaceDto & SystemIdentityIdentityProviderInterfaceDto & {\n __typename?: 'SystemIdentityMicrosoftAdIdentityProvider';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n description?: Maybe<Scalars['String']['output']>;\n displayName?: Maybe<Scalars['String']['output']>;\n host: Scalars['String']['output'];\n isEnabled: Scalars['Boolean']['output'];\n name: Scalars['String']['output'];\n port: Scalars['Int']['output'];\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n useTls: Scalars['Boolean']['output'];\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/MicrosoftAdIdentityProvider-1' */\nexport type SystemIdentityMicrosoftAdIdentityProviderAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/MicrosoftAdIdentityProvider-1' */\nexport type SystemIdentityMicrosoftAdIdentityProviderConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/MicrosoftAdIdentityProvider-1' */\nexport type SystemIdentityMicrosoftAdIdentityProviderRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/MicrosoftAdIdentityProvider-1' */\nexport type SystemIdentityMicrosoftAdIdentityProviderRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/MicrosoftAdIdentityProvider-1' */\nexport type SystemIdentityMicrosoftAdIdentityProviderTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `SystemIdentityMicrosoftAdIdentityProvider`. */\nexport type SystemIdentityMicrosoftAdIdentityProviderConnectionDto = {\n __typename?: 'SystemIdentityMicrosoftAdIdentityProviderConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemIdentityMicrosoftAdIdentityProviderEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemIdentityMicrosoftAdIdentityProviderDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemIdentityMicrosoftAdIdentityProvider`. */\nexport type SystemIdentityMicrosoftAdIdentityProviderEdgeDto = {\n __typename?: 'SystemIdentityMicrosoftAdIdentityProviderEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemIdentityMicrosoftAdIdentityProviderDto>;\n};\n\nexport type SystemIdentityMicrosoftAdIdentityProviderInputDto = {\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n description?: InputMaybe<Scalars['String']['input']>;\n displayName?: InputMaybe<Scalars['String']['input']>;\n host?: InputMaybe<Scalars['String']['input']>;\n isEnabled?: InputMaybe<Scalars['Boolean']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n port?: InputMaybe<Scalars['Int']['input']>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n useTls?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\nexport type SystemIdentityMicrosoftAdIdentityProviderInputUpdateDto = {\n /** Item to update */\n item: SystemIdentityMicrosoftAdIdentityProviderInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\nexport type SystemIdentityMicrosoftAdIdentityProviderMutationsDto = {\n __typename?: 'SystemIdentityMicrosoftAdIdentityProviderMutations';\n /** Creates new entities of type 'SystemIdentityMicrosoftAdIdentityProvider'. */\n create?: Maybe<Array<Maybe<SystemIdentityMicrosoftAdIdentityProviderDto>>>;\n /** Updates existing entity of type 'SystemIdentityMicrosoftAdIdentityProvider'. */\n update?: Maybe<Array<Maybe<SystemIdentityMicrosoftAdIdentityProviderDto>>>;\n};\n\n\nexport type SystemIdentityMicrosoftAdIdentityProviderMutationsCreateArgsDto = {\n entities: Array<InputMaybe<SystemIdentityMicrosoftAdIdentityProviderInputDto>>;\n};\n\n\nexport type SystemIdentityMicrosoftAdIdentityProviderMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<SystemIdentityMicrosoftAdIdentityProviderInputUpdateDto>>;\n};\n\nexport type SystemIdentityMicrosoftAdIdentityProviderUpdateDto = {\n __typename?: 'SystemIdentityMicrosoftAdIdentityProviderUpdate';\n /** The corresponding item */\n item?: Maybe<SystemIdentityMicrosoftAdIdentityProviderDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemIdentityMicrosoftAdIdentityProviderUpdateMessageDto = {\n __typename?: 'SystemIdentityMicrosoftAdIdentityProviderUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemIdentityMicrosoftAdIdentityProviderUpdateDto>>>;\n};\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/MicrosoftIdentityProvider-1' */\nexport type SystemIdentityMicrosoftIdentityProviderDto = SystemEntityInterfaceDto & SystemIdentityIdentityProviderInterfaceDto & {\n __typename?: 'SystemIdentityMicrosoftIdentityProvider';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n clientId: Scalars['String']['output'];\n clientSecret: Scalars['String']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n description?: Maybe<Scalars['String']['output']>;\n displayName?: Maybe<Scalars['String']['output']>;\n isEnabled: Scalars['Boolean']['output'];\n name: Scalars['String']['output'];\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/MicrosoftIdentityProvider-1' */\nexport type SystemIdentityMicrosoftIdentityProviderAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/MicrosoftIdentityProvider-1' */\nexport type SystemIdentityMicrosoftIdentityProviderConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/MicrosoftIdentityProvider-1' */\nexport type SystemIdentityMicrosoftIdentityProviderRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/MicrosoftIdentityProvider-1' */\nexport type SystemIdentityMicrosoftIdentityProviderRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/MicrosoftIdentityProvider-1' */\nexport type SystemIdentityMicrosoftIdentityProviderTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `SystemIdentityMicrosoftIdentityProvider`. */\nexport type SystemIdentityMicrosoftIdentityProviderConnectionDto = {\n __typename?: 'SystemIdentityMicrosoftIdentityProviderConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemIdentityMicrosoftIdentityProviderEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemIdentityMicrosoftIdentityProviderDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemIdentityMicrosoftIdentityProvider`. */\nexport type SystemIdentityMicrosoftIdentityProviderEdgeDto = {\n __typename?: 'SystemIdentityMicrosoftIdentityProviderEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemIdentityMicrosoftIdentityProviderDto>;\n};\n\nexport type SystemIdentityMicrosoftIdentityProviderInputDto = {\n clientId?: InputMaybe<Scalars['String']['input']>;\n clientSecret?: InputMaybe<Scalars['String']['input']>;\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n description?: InputMaybe<Scalars['String']['input']>;\n displayName?: InputMaybe<Scalars['String']['input']>;\n isEnabled?: InputMaybe<Scalars['Boolean']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n};\n\nexport type SystemIdentityMicrosoftIdentityProviderInputUpdateDto = {\n /** Item to update */\n item: SystemIdentityMicrosoftIdentityProviderInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\nexport type SystemIdentityMicrosoftIdentityProviderMutationsDto = {\n __typename?: 'SystemIdentityMicrosoftIdentityProviderMutations';\n /** Creates new entities of type 'SystemIdentityMicrosoftIdentityProvider'. */\n create?: Maybe<Array<Maybe<SystemIdentityMicrosoftIdentityProviderDto>>>;\n /** Updates existing entity of type 'SystemIdentityMicrosoftIdentityProvider'. */\n update?: Maybe<Array<Maybe<SystemIdentityMicrosoftIdentityProviderDto>>>;\n};\n\n\nexport type SystemIdentityMicrosoftIdentityProviderMutationsCreateArgsDto = {\n entities: Array<InputMaybe<SystemIdentityMicrosoftIdentityProviderInputDto>>;\n};\n\n\nexport type SystemIdentityMicrosoftIdentityProviderMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<SystemIdentityMicrosoftIdentityProviderInputUpdateDto>>;\n};\n\nexport type SystemIdentityMicrosoftIdentityProviderUpdateDto = {\n __typename?: 'SystemIdentityMicrosoftIdentityProviderUpdate';\n /** The corresponding item */\n item?: Maybe<SystemIdentityMicrosoftIdentityProviderDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemIdentityMicrosoftIdentityProviderUpdateMessageDto = {\n __typename?: 'SystemIdentityMicrosoftIdentityProviderUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemIdentityMicrosoftIdentityProviderUpdateDto>>>;\n};\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/OpenLdapIdentityProvider-1' */\nexport type SystemIdentityOpenLdapIdentityProviderDto = SystemEntityInterfaceDto & SystemIdentityIdentityProviderInterfaceDto & {\n __typename?: 'SystemIdentityOpenLdapIdentityProvider';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n description?: Maybe<Scalars['String']['output']>;\n displayName?: Maybe<Scalars['String']['output']>;\n host: Scalars['String']['output'];\n isEnabled: Scalars['Boolean']['output'];\n name: Scalars['String']['output'];\n port: Scalars['Int']['output'];\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n useTls: Scalars['Boolean']['output'];\n userBaseDn: Scalars['String']['output'];\n userNameAttribute: Scalars['String']['output'];\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/OpenLdapIdentityProvider-1' */\nexport type SystemIdentityOpenLdapIdentityProviderAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/OpenLdapIdentityProvider-1' */\nexport type SystemIdentityOpenLdapIdentityProviderConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/OpenLdapIdentityProvider-1' */\nexport type SystemIdentityOpenLdapIdentityProviderRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/OpenLdapIdentityProvider-1' */\nexport type SystemIdentityOpenLdapIdentityProviderRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/OpenLdapIdentityProvider-1' */\nexport type SystemIdentityOpenLdapIdentityProviderTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `SystemIdentityOpenLdapIdentityProvider`. */\nexport type SystemIdentityOpenLdapIdentityProviderConnectionDto = {\n __typename?: 'SystemIdentityOpenLdapIdentityProviderConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemIdentityOpenLdapIdentityProviderEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemIdentityOpenLdapIdentityProviderDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemIdentityOpenLdapIdentityProvider`. */\nexport type SystemIdentityOpenLdapIdentityProviderEdgeDto = {\n __typename?: 'SystemIdentityOpenLdapIdentityProviderEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemIdentityOpenLdapIdentityProviderDto>;\n};\n\nexport type SystemIdentityOpenLdapIdentityProviderInputDto = {\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n description?: InputMaybe<Scalars['String']['input']>;\n displayName?: InputMaybe<Scalars['String']['input']>;\n host?: InputMaybe<Scalars['String']['input']>;\n isEnabled?: InputMaybe<Scalars['Boolean']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n port?: InputMaybe<Scalars['Int']['input']>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n useTls?: InputMaybe<Scalars['Boolean']['input']>;\n userBaseDn?: InputMaybe<Scalars['String']['input']>;\n userNameAttribute?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type SystemIdentityOpenLdapIdentityProviderInputUpdateDto = {\n /** Item to update */\n item: SystemIdentityOpenLdapIdentityProviderInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\nexport type SystemIdentityOpenLdapIdentityProviderMutationsDto = {\n __typename?: 'SystemIdentityOpenLdapIdentityProviderMutations';\n /** Creates new entities of type 'SystemIdentityOpenLdapIdentityProvider'. */\n create?: Maybe<Array<Maybe<SystemIdentityOpenLdapIdentityProviderDto>>>;\n /** Updates existing entity of type 'SystemIdentityOpenLdapIdentityProvider'. */\n update?: Maybe<Array<Maybe<SystemIdentityOpenLdapIdentityProviderDto>>>;\n};\n\n\nexport type SystemIdentityOpenLdapIdentityProviderMutationsCreateArgsDto = {\n entities: Array<InputMaybe<SystemIdentityOpenLdapIdentityProviderInputDto>>;\n};\n\n\nexport type SystemIdentityOpenLdapIdentityProviderMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<SystemIdentityOpenLdapIdentityProviderInputUpdateDto>>;\n};\n\nexport type SystemIdentityOpenLdapIdentityProviderUpdateDto = {\n __typename?: 'SystemIdentityOpenLdapIdentityProviderUpdate';\n /** The corresponding item */\n item?: Maybe<SystemIdentityOpenLdapIdentityProviderDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemIdentityOpenLdapIdentityProviderUpdateMessageDto = {\n __typename?: 'SystemIdentityOpenLdapIdentityProviderUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemIdentityOpenLdapIdentityProviderUpdateDto>>>;\n};\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/Permission-1' */\nexport type SystemIdentityPermissionDto = SystemEntityInterfaceDto & {\n __typename?: 'SystemIdentityPermission';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n identityRoleIds: Array<Scalars['String']['output']>;\n permissionId: Scalars['String']['output'];\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/Permission-1' */\nexport type SystemIdentityPermissionAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/Permission-1' */\nexport type SystemIdentityPermissionConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/Permission-1' */\nexport type SystemIdentityPermissionRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/Permission-1' */\nexport type SystemIdentityPermissionRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/Permission-1' */\nexport type SystemIdentityPermissionTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `SystemIdentityPermission`. */\nexport type SystemIdentityPermissionConnectionDto = {\n __typename?: 'SystemIdentityPermissionConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemIdentityPermissionEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemIdentityPermissionDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemIdentityPermission`. */\nexport type SystemIdentityPermissionEdgeDto = {\n __typename?: 'SystemIdentityPermissionEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemIdentityPermissionDto>;\n};\n\nexport type SystemIdentityPermissionInputDto = {\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n identityRoleIds?: InputMaybe<Array<Scalars['String']['input']>>;\n permissionId?: InputMaybe<Scalars['String']['input']>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n};\n\nexport type SystemIdentityPermissionInputUpdateDto = {\n /** Item to update */\n item: SystemIdentityPermissionInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\nexport type SystemIdentityPermissionMutationsDto = {\n __typename?: 'SystemIdentityPermissionMutations';\n /** Creates new entities of type 'SystemIdentityPermission'. */\n create?: Maybe<Array<Maybe<SystemIdentityPermissionDto>>>;\n /** Updates existing entity of type 'SystemIdentityPermission'. */\n update?: Maybe<Array<Maybe<SystemIdentityPermissionDto>>>;\n};\n\n\nexport type SystemIdentityPermissionMutationsCreateArgsDto = {\n entities: Array<InputMaybe<SystemIdentityPermissionInputDto>>;\n};\n\n\nexport type SystemIdentityPermissionMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<SystemIdentityPermissionInputUpdateDto>>;\n};\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/PermissionRole-1' */\nexport type SystemIdentityPermissionRoleDto = SystemEntityInterfaceDto & {\n __typename?: 'SystemIdentityPermissionRole';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n identityRoleIds: Array<Scalars['String']['output']>;\n name: Scalars['String']['output'];\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n roleId: Scalars['String']['output'];\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n subjectIds: Array<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/PermissionRole-1' */\nexport type SystemIdentityPermissionRoleAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/PermissionRole-1' */\nexport type SystemIdentityPermissionRoleConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/PermissionRole-1' */\nexport type SystemIdentityPermissionRoleRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/PermissionRole-1' */\nexport type SystemIdentityPermissionRoleRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/PermissionRole-1' */\nexport type SystemIdentityPermissionRoleTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `SystemIdentityPermissionRole`. */\nexport type SystemIdentityPermissionRoleConnectionDto = {\n __typename?: 'SystemIdentityPermissionRoleConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemIdentityPermissionRoleEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemIdentityPermissionRoleDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemIdentityPermissionRole`. */\nexport type SystemIdentityPermissionRoleEdgeDto = {\n __typename?: 'SystemIdentityPermissionRoleEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemIdentityPermissionRoleDto>;\n};\n\nexport type SystemIdentityPermissionRoleInputDto = {\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n identityRoleIds?: InputMaybe<Array<Scalars['String']['input']>>;\n name?: InputMaybe<Scalars['String']['input']>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n roleId?: InputMaybe<Scalars['String']['input']>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n subjectIds?: InputMaybe<Array<Scalars['String']['input']>>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n};\n\nexport type SystemIdentityPermissionRoleInputUpdateDto = {\n /** Item to update */\n item: SystemIdentityPermissionRoleInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\nexport type SystemIdentityPermissionRoleMutationsDto = {\n __typename?: 'SystemIdentityPermissionRoleMutations';\n /** Creates new entities of type 'SystemIdentityPermissionRole'. */\n create?: Maybe<Array<Maybe<SystemIdentityPermissionRoleDto>>>;\n /** Updates existing entity of type 'SystemIdentityPermissionRole'. */\n update?: Maybe<Array<Maybe<SystemIdentityPermissionRoleDto>>>;\n};\n\n\nexport type SystemIdentityPermissionRoleMutationsCreateArgsDto = {\n entities: Array<InputMaybe<SystemIdentityPermissionRoleInputDto>>;\n};\n\n\nexport type SystemIdentityPermissionRoleMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<SystemIdentityPermissionRoleInputUpdateDto>>;\n};\n\nexport type SystemIdentityPermissionRoleUpdateDto = {\n __typename?: 'SystemIdentityPermissionRoleUpdate';\n /** The corresponding item */\n item?: Maybe<SystemIdentityPermissionRoleDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemIdentityPermissionRoleUpdateMessageDto = {\n __typename?: 'SystemIdentityPermissionRoleUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemIdentityPermissionRoleUpdateDto>>>;\n};\n\nexport type SystemIdentityPermissionUpdateDto = {\n __typename?: 'SystemIdentityPermissionUpdate';\n /** The corresponding item */\n item?: Maybe<SystemIdentityPermissionDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemIdentityPermissionUpdateMessageDto = {\n __typename?: 'SystemIdentityPermissionUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemIdentityPermissionUpdateDto>>>;\n};\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/PersistedGrant-1' */\nexport type SystemIdentityPersistedGrantDto = SystemEntityInterfaceDto & {\n __typename?: 'SystemIdentityPersistedGrant';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n clientId: Scalars['String']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n consumedDateTime?: Maybe<Scalars['DateTime']['output']>;\n creationDateTime: Scalars['DateTime']['output'];\n data: Scalars['String']['output'];\n description?: Maybe<Scalars['String']['output']>;\n expirationDateTime?: Maybe<Scalars['DateTime']['output']>;\n grantKey: Scalars['String']['output'];\n grantType: Scalars['String']['output'];\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n sessionId?: Maybe<Scalars['String']['output']>;\n subjectId: Scalars['String']['output'];\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/PersistedGrant-1' */\nexport type SystemIdentityPersistedGrantAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/PersistedGrant-1' */\nexport type SystemIdentityPersistedGrantConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/PersistedGrant-1' */\nexport type SystemIdentityPersistedGrantRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/PersistedGrant-1' */\nexport type SystemIdentityPersistedGrantRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/PersistedGrant-1' */\nexport type SystemIdentityPersistedGrantTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `SystemIdentityPersistedGrant`. */\nexport type SystemIdentityPersistedGrantConnectionDto = {\n __typename?: 'SystemIdentityPersistedGrantConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemIdentityPersistedGrantEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemIdentityPersistedGrantDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemIdentityPersistedGrant`. */\nexport type SystemIdentityPersistedGrantEdgeDto = {\n __typename?: 'SystemIdentityPersistedGrantEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemIdentityPersistedGrantDto>;\n};\n\nexport type SystemIdentityPersistedGrantInputDto = {\n clientId?: InputMaybe<Scalars['String']['input']>;\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n consumedDateTime?: InputMaybe<Scalars['DateTime']['input']>;\n creationDateTime?: InputMaybe<Scalars['DateTime']['input']>;\n data?: InputMaybe<Scalars['String']['input']>;\n description?: InputMaybe<Scalars['String']['input']>;\n expirationDateTime?: InputMaybe<Scalars['DateTime']['input']>;\n grantKey?: InputMaybe<Scalars['String']['input']>;\n grantType?: InputMaybe<Scalars['String']['input']>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n sessionId?: InputMaybe<Scalars['String']['input']>;\n subjectId?: InputMaybe<Scalars['String']['input']>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n};\n\nexport type SystemIdentityPersistedGrantInputUpdateDto = {\n /** Item to update */\n item: SystemIdentityPersistedGrantInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\nexport type SystemIdentityPersistedGrantMutationsDto = {\n __typename?: 'SystemIdentityPersistedGrantMutations';\n /** Creates new entities of type 'SystemIdentityPersistedGrant'. */\n create?: Maybe<Array<Maybe<SystemIdentityPersistedGrantDto>>>;\n /** Updates existing entity of type 'SystemIdentityPersistedGrant'. */\n update?: Maybe<Array<Maybe<SystemIdentityPersistedGrantDto>>>;\n};\n\n\nexport type SystemIdentityPersistedGrantMutationsCreateArgsDto = {\n entities: Array<InputMaybe<SystemIdentityPersistedGrantInputDto>>;\n};\n\n\nexport type SystemIdentityPersistedGrantMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<SystemIdentityPersistedGrantInputUpdateDto>>;\n};\n\nexport type SystemIdentityPersistedGrantUpdateDto = {\n __typename?: 'SystemIdentityPersistedGrantUpdate';\n /** The corresponding item */\n item?: Maybe<SystemIdentityPersistedGrantDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemIdentityPersistedGrantUpdateMessageDto = {\n __typename?: 'SystemIdentityPersistedGrantUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemIdentityPersistedGrantUpdateDto>>>;\n};\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/Resource-1' */\nexport type SystemIdentityResourceDto = SystemEntityInterfaceDto & {\n __typename?: 'SystemIdentityResource';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n claims: Array<Scalars['String']['output']>;\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n description?: Maybe<Scalars['String']['output']>;\n displayName?: Maybe<Scalars['String']['output']>;\n enabled: Scalars['Boolean']['output'];\n name: Scalars['String']['output'];\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n showInDiscoveryDocument: Scalars['Boolean']['output'];\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/Resource-1' */\nexport type SystemIdentityResourceAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/Resource-1' */\nexport type SystemIdentityResourceConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/Resource-1' */\nexport type SystemIdentityResourceRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/Resource-1' */\nexport type SystemIdentityResourceRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/Resource-1' */\nexport type SystemIdentityResourceTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `SystemIdentityResource`. */\nexport type SystemIdentityResourceConnectionDto = {\n __typename?: 'SystemIdentityResourceConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemIdentityResourceEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemIdentityResourceDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemIdentityResource`. */\nexport type SystemIdentityResourceEdgeDto = {\n __typename?: 'SystemIdentityResourceEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemIdentityResourceDto>;\n};\n\n/** Interface for runtime entities of construction kit type 'System.Identity-2.0.0/Resource-1' */\nexport type SystemIdentityResourceInterfaceDto = {\n ckTypeId: Scalars['RtCkTypeId']['output'];\n claims: Array<Scalars['String']['output']>;\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n description?: Maybe<Scalars['String']['output']>;\n displayName?: Maybe<Scalars['String']['output']>;\n enabled: Scalars['Boolean']['output'];\n name: Scalars['String']['output'];\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n showInDiscoveryDocument: Scalars['Boolean']['output'];\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n};\n\n\n/** Interface for runtime entities of construction kit type 'System.Identity-2.0.0/Resource-1' */\nexport type SystemIdentityResourceInterfaceConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Interface for runtime entities of construction kit type 'System.Identity-2.0.0/Resource-1' */\nexport type SystemIdentityResourceInterfaceRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Interface for runtime entities of construction kit type 'System.Identity-2.0.0/Resource-1' */\nexport type SystemIdentityResourceInterfaceRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Interface for runtime entities of construction kit type 'System.Identity-2.0.0/Resource-1' */\nexport type SystemIdentityResourceInterfaceTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\nexport type SystemIdentityResourceUpdateDto = {\n __typename?: 'SystemIdentityResourceUpdate';\n /** The corresponding item */\n item?: Maybe<SystemIdentityResourceDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemIdentityResourceUpdateMessageDto = {\n __typename?: 'SystemIdentityResourceUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemIdentityResourceUpdateDto>>>;\n};\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/Role-1' */\nexport type SystemIdentityRoleDto = SystemEntityInterfaceDto & {\n __typename?: 'SystemIdentityRole';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n claims?: Maybe<Array<SystemIdentityRoleClaimDto>>;\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n identityRoleIds: Array<Scalars['String']['output']>;\n name: Scalars['String']['output'];\n normalizedName: Scalars['String']['output'];\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n subjectIds: Array<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/Role-1' */\nexport type SystemIdentityRoleAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/Role-1' */\nexport type SystemIdentityRoleConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/Role-1' */\nexport type SystemIdentityRoleRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/Role-1' */\nexport type SystemIdentityRoleRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/Role-1' */\nexport type SystemIdentityRoleTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** Runtime entities of construction kit record 'System.Identity/RoleClaim' */\nexport type SystemIdentityRoleClaimDto = {\n __typename?: 'SystemIdentityRoleClaim';\n claimType: Scalars['String']['output'];\n claimValue: Scalars['String']['output'];\n constructionKitType?: Maybe<CkTypeDto>;\n};\n\nexport type SystemIdentityRoleClaimInputDto = {\n claimType?: InputMaybe<Scalars['String']['input']>;\n claimValue?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** A connection to `SystemIdentityRole`. */\nexport type SystemIdentityRoleConnectionDto = {\n __typename?: 'SystemIdentityRoleConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemIdentityRoleEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemIdentityRoleDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemIdentityRole`. */\nexport type SystemIdentityRoleEdgeDto = {\n __typename?: 'SystemIdentityRoleEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemIdentityRoleDto>;\n};\n\nexport type SystemIdentityRoleInputDto = {\n claims?: InputMaybe<Array<InputMaybe<SystemIdentityRoleClaimInputDto>>>;\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n identityRoleIds?: InputMaybe<Array<Scalars['String']['input']>>;\n name?: InputMaybe<Scalars['String']['input']>;\n normalizedName?: InputMaybe<Scalars['String']['input']>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n subjectIds?: InputMaybe<Array<Scalars['String']['input']>>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n};\n\nexport type SystemIdentityRoleInputUpdateDto = {\n /** Item to update */\n item: SystemIdentityRoleInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\nexport type SystemIdentityRoleMutationsDto = {\n __typename?: 'SystemIdentityRoleMutations';\n /** Creates new entities of type 'SystemIdentityRole'. */\n create?: Maybe<Array<Maybe<SystemIdentityRoleDto>>>;\n /** Updates existing entity of type 'SystemIdentityRole'. */\n update?: Maybe<Array<Maybe<SystemIdentityRoleDto>>>;\n};\n\n\nexport type SystemIdentityRoleMutationsCreateArgsDto = {\n entities: Array<InputMaybe<SystemIdentityRoleInputDto>>;\n};\n\n\nexport type SystemIdentityRoleMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<SystemIdentityRoleInputUpdateDto>>;\n};\n\nexport type SystemIdentityRoleUpdateDto = {\n __typename?: 'SystemIdentityRoleUpdate';\n /** The corresponding item */\n item?: Maybe<SystemIdentityRoleDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemIdentityRoleUpdateMessageDto = {\n __typename?: 'SystemIdentityRoleUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemIdentityRoleUpdateDto>>>;\n};\n\n/** Runtime entities of construction kit record 'System.Identity/Secret' */\nexport type SystemIdentitySecretDto = {\n __typename?: 'SystemIdentitySecret';\n constructionKitType?: Maybe<CkTypeDto>;\n description?: Maybe<Scalars['String']['output']>;\n expirationDateTime?: Maybe<Scalars['DateTime']['output']>;\n type: Scalars['String']['output'];\n value?: Maybe<Scalars['String']['output']>;\n};\n\nexport type SystemIdentitySecretInputDto = {\n description?: InputMaybe<Scalars['String']['input']>;\n expirationDateTime?: InputMaybe<Scalars['DateTime']['input']>;\n type?: InputMaybe<Scalars['String']['input']>;\n value?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Runtime entities of construction kit enum 'System.Identity/TokenExpiration' */\nexport enum SystemIdentityTokenExpirationDto {\n AbsoluteDto = 'ABSOLUTE',\n SlidingDto = 'SLIDING'\n}\n\n/** Runtime entities of construction kit enum 'System.Identity/TokenType' */\nexport enum SystemIdentityTokenTypeDto {\n JwtDto = 'JWT',\n ReferenceDto = 'REFERENCE'\n}\n\n/** Runtime entities of construction kit enum 'System.Identity/TokenUsage' */\nexport enum SystemIdentityTokenUsageDto {\n OneTimeOnlyDto = 'ONE_TIME_ONLY',\n ReUseDto = 'RE_USE'\n}\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/User-1' */\nexport type SystemIdentityUserDto = SystemEntityInterfaceDto & {\n __typename?: 'SystemIdentityUser';\n accessFailedCount: Scalars['Int']['output'];\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n claims?: Maybe<Array<SystemIdentityUserClaimDto>>;\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n description?: Maybe<Scalars['String']['output']>;\n email?: Maybe<Scalars['String']['output']>;\n emailConfirmed: Scalars['Boolean']['output'];\n firstName?: Maybe<Scalars['String']['output']>;\n lastName?: Maybe<Scalars['String']['output']>;\n lockoutEnabled: Scalars['Boolean']['output'];\n lockoutEnd?: Maybe<Scalars['DateTimeOffset']['output']>;\n normalizedEmail?: Maybe<Scalars['String']['output']>;\n normalizedUserName?: Maybe<Scalars['String']['output']>;\n passwordHash?: Maybe<Scalars['String']['output']>;\n phoneNumber?: Maybe<Scalars['String']['output']>;\n phoneNumberConfirmed: Scalars['Boolean']['output'];\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n resetPasswordOnLogin: Scalars['Boolean']['output'];\n roleIds?: Maybe<Array<Scalars['String']['output']>>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n securityStamp?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n twoFactorEnabled: Scalars['Boolean']['output'];\n userLogins?: Maybe<Array<SystemIdentityUserLoginDto>>;\n userName?: Maybe<Scalars['String']['output']>;\n userTokens?: Maybe<Array<SystemIdentityUserTokenDto>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/User-1' */\nexport type SystemIdentityUserAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/User-1' */\nexport type SystemIdentityUserConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/User-1' */\nexport type SystemIdentityUserRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/User-1' */\nexport type SystemIdentityUserRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Identity-2.0.0/User-1' */\nexport type SystemIdentityUserTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** Runtime entities of construction kit record 'System.Identity/UserClaim' */\nexport type SystemIdentityUserClaimDto = {\n __typename?: 'SystemIdentityUserClaim';\n claimType: Scalars['String']['output'];\n claimValue: Scalars['String']['output'];\n constructionKitType?: Maybe<CkTypeDto>;\n userId?: Maybe<Scalars['String']['output']>;\n};\n\nexport type SystemIdentityUserClaimInputDto = {\n claimType?: InputMaybe<Scalars['String']['input']>;\n claimValue?: InputMaybe<Scalars['String']['input']>;\n userId?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** A connection to `SystemIdentityUser`. */\nexport type SystemIdentityUserConnectionDto = {\n __typename?: 'SystemIdentityUserConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemIdentityUserEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemIdentityUserDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemIdentityUser`. */\nexport type SystemIdentityUserEdgeDto = {\n __typename?: 'SystemIdentityUserEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemIdentityUserDto>;\n};\n\nexport type SystemIdentityUserInputDto = {\n accessFailedCount?: InputMaybe<Scalars['Int']['input']>;\n claims?: InputMaybe<Array<InputMaybe<SystemIdentityUserClaimInputDto>>>;\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n description?: InputMaybe<Scalars['String']['input']>;\n email?: InputMaybe<Scalars['String']['input']>;\n emailConfirmed?: InputMaybe<Scalars['Boolean']['input']>;\n firstName?: InputMaybe<Scalars['String']['input']>;\n lastName?: InputMaybe<Scalars['String']['input']>;\n lockoutEnabled?: InputMaybe<Scalars['Boolean']['input']>;\n lockoutEnd?: InputMaybe<Scalars['DateTimeOffset']['input']>;\n normalizedEmail?: InputMaybe<Scalars['String']['input']>;\n normalizedUserName?: InputMaybe<Scalars['String']['input']>;\n passwordHash?: InputMaybe<Scalars['String']['input']>;\n phoneNumber?: InputMaybe<Scalars['String']['input']>;\n phoneNumberConfirmed?: InputMaybe<Scalars['Boolean']['input']>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n resetPasswordOnLogin?: InputMaybe<Scalars['Boolean']['input']>;\n roleIds?: InputMaybe<Array<Scalars['String']['input']>>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n securityStamp?: InputMaybe<Scalars['String']['input']>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n twoFactorEnabled?: InputMaybe<Scalars['Boolean']['input']>;\n userLogins?: InputMaybe<Array<InputMaybe<SystemIdentityUserLoginInputDto>>>;\n userName?: InputMaybe<Scalars['String']['input']>;\n userTokens?: InputMaybe<Array<InputMaybe<SystemIdentityUserTokenInputDto>>>;\n};\n\nexport type SystemIdentityUserInputUpdateDto = {\n /** Item to update */\n item: SystemIdentityUserInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\n/** Runtime entities of construction kit record 'System.Identity/UserLogin' */\nexport type SystemIdentityUserLoginDto = {\n __typename?: 'SystemIdentityUserLogin';\n constructionKitType?: Maybe<CkTypeDto>;\n loginProvider: Scalars['String']['output'];\n providerDisplayName?: Maybe<Scalars['String']['output']>;\n providerKey: Scalars['String']['output'];\n userId: Scalars['String']['output'];\n};\n\nexport type SystemIdentityUserLoginInputDto = {\n loginProvider?: InputMaybe<Scalars['String']['input']>;\n providerDisplayName?: InputMaybe<Scalars['String']['input']>;\n providerKey?: InputMaybe<Scalars['String']['input']>;\n userId?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type SystemIdentityUserMutationsDto = {\n __typename?: 'SystemIdentityUserMutations';\n /** Creates new entities of type 'SystemIdentityUser'. */\n create?: Maybe<Array<Maybe<SystemIdentityUserDto>>>;\n /** Updates existing entity of type 'SystemIdentityUser'. */\n update?: Maybe<Array<Maybe<SystemIdentityUserDto>>>;\n};\n\n\nexport type SystemIdentityUserMutationsCreateArgsDto = {\n entities: Array<InputMaybe<SystemIdentityUserInputDto>>;\n};\n\n\nexport type SystemIdentityUserMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<SystemIdentityUserInputUpdateDto>>;\n};\n\n/** Runtime entities of construction kit record 'System.Identity/UserToken' */\nexport type SystemIdentityUserTokenDto = {\n __typename?: 'SystemIdentityUserToken';\n constructionKitType?: Maybe<CkTypeDto>;\n loginProvider: Scalars['String']['output'];\n name: Scalars['String']['output'];\n userId: Scalars['String']['output'];\n value?: Maybe<Scalars['String']['output']>;\n};\n\nexport type SystemIdentityUserTokenInputDto = {\n loginProvider?: InputMaybe<Scalars['String']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n userId?: InputMaybe<Scalars['String']['input']>;\n value?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type SystemIdentityUserUpdateDto = {\n __typename?: 'SystemIdentityUserUpdate';\n /** The corresponding item */\n item?: Maybe<SystemIdentityUserDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemIdentityUserUpdateMessageDto = {\n __typename?: 'SystemIdentityUserUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemIdentityUserUpdateDto>>>;\n};\n\n/** Runtime entities of construction kit enum 'System/MaintenanceLevels' */\nexport enum SystemMaintenanceLevelsDto {\n /** The full system is in maintenance mode, the tenant is not operational */\n FullSystemDto = 'FULL_SYSTEM',\n /** The maintenance mode is off, the tenant is fully operational */\n OffDto = 'OFF',\n /** The user apps are in maintenance mode, the tenant is operational but user apps are not available */\n UserAppsDto = 'USER_APPS'\n}\n\n/** Runtime entities of construction kit type 'System-2.0.2/MigrationHistory-1' */\nexport type SystemMigrationHistoryDto = SystemEntityInterfaceDto & {\n __typename?: 'SystemMigrationHistory';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n backupId?: Maybe<Scalars['String']['output']>;\n ckModelName: Scalars['String']['output'];\n ckTypeId: Scalars['RtCkTypeId']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n durationMs?: Maybe<Scalars['Int']['output']>;\n entitiesAdded?: Maybe<Scalars['Int']['output']>;\n entitiesAffected?: Maybe<Scalars['Int']['output']>;\n entitiesDeleted?: Maybe<Scalars['Int']['output']>;\n entitiesUpdated?: Maybe<Scalars['Int']['output']>;\n errors?: Maybe<Array<Scalars['String']['output']>>;\n executedAt: Scalars['DateTime']['output'];\n fromVersion: Scalars['String']['output'];\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n success: Scalars['Boolean']['output'];\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n toVersion: Scalars['String']['output'];\n warnings?: Maybe<Array<Scalars['String']['output']>>;\n};\n\n\n/** Runtime entities of construction kit type 'System-2.0.2/MigrationHistory-1' */\nexport type SystemMigrationHistoryAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System-2.0.2/MigrationHistory-1' */\nexport type SystemMigrationHistoryConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System-2.0.2/MigrationHistory-1' */\nexport type SystemMigrationHistoryRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System-2.0.2/MigrationHistory-1' */\nexport type SystemMigrationHistoryRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System-2.0.2/MigrationHistory-1' */\nexport type SystemMigrationHistoryTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `SystemMigrationHistory`. */\nexport type SystemMigrationHistoryConnectionDto = {\n __typename?: 'SystemMigrationHistoryConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemMigrationHistoryEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemMigrationHistoryDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemMigrationHistory`. */\nexport type SystemMigrationHistoryEdgeDto = {\n __typename?: 'SystemMigrationHistoryEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemMigrationHistoryDto>;\n};\n\nexport type SystemMigrationHistoryInputDto = {\n backupId?: InputMaybe<Scalars['String']['input']>;\n ckModelName?: InputMaybe<Scalars['String']['input']>;\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n durationMs?: InputMaybe<Scalars['Int']['input']>;\n entitiesAdded?: InputMaybe<Scalars['Int']['input']>;\n entitiesAffected?: InputMaybe<Scalars['Int']['input']>;\n entitiesDeleted?: InputMaybe<Scalars['Int']['input']>;\n entitiesUpdated?: InputMaybe<Scalars['Int']['input']>;\n errors?: InputMaybe<Array<Scalars['String']['input']>>;\n executedAt?: InputMaybe<Scalars['DateTime']['input']>;\n fromVersion?: InputMaybe<Scalars['String']['input']>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n success?: InputMaybe<Scalars['Boolean']['input']>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n toVersion?: InputMaybe<Scalars['String']['input']>;\n warnings?: InputMaybe<Array<Scalars['String']['input']>>;\n};\n\nexport type SystemMigrationHistoryInputUpdateDto = {\n /** Item to update */\n item: SystemMigrationHistoryInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\nexport type SystemMigrationHistoryMutationsDto = {\n __typename?: 'SystemMigrationHistoryMutations';\n /** Creates new entities of type 'SystemMigrationHistory'. */\n create?: Maybe<Array<Maybe<SystemMigrationHistoryDto>>>;\n /** Updates existing entity of type 'SystemMigrationHistory'. */\n update?: Maybe<Array<Maybe<SystemMigrationHistoryDto>>>;\n};\n\n\nexport type SystemMigrationHistoryMutationsCreateArgsDto = {\n entities: Array<InputMaybe<SystemMigrationHistoryInputDto>>;\n};\n\n\nexport type SystemMigrationHistoryMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<SystemMigrationHistoryInputUpdateDto>>;\n};\n\nexport type SystemMigrationHistoryUpdateDto = {\n __typename?: 'SystemMigrationHistoryUpdate';\n /** The corresponding item */\n item?: Maybe<SystemMigrationHistoryDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemMigrationHistoryUpdateMessageDto = {\n __typename?: 'SystemMigrationHistoryUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemMigrationHistoryUpdateDto>>>;\n};\n\n/** Runtime entities of construction kit type 'System.Notification-2.0.0/CssTemplateConfiguration-1' */\nexport type SystemNotificationCssTemplateConfigurationDto = SystemConfigurationInterfaceDto & SystemEntityInterfaceDto & {\n __typename?: 'SystemNotificationCssTemplateConfiguration';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n cssStyle: Scalars['String']['output'];\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n usedBy?: Maybe<SystemCommunicationPipeline_UsedByUnionConnectionDto>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Notification-2.0.0/CssTemplateConfiguration-1' */\nexport type SystemNotificationCssTemplateConfigurationAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Notification-2.0.0/CssTemplateConfiguration-1' */\nexport type SystemNotificationCssTemplateConfigurationConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Notification-2.0.0/CssTemplateConfiguration-1' */\nexport type SystemNotificationCssTemplateConfigurationRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Notification-2.0.0/CssTemplateConfiguration-1' */\nexport type SystemNotificationCssTemplateConfigurationRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Notification-2.0.0/CssTemplateConfiguration-1' */\nexport type SystemNotificationCssTemplateConfigurationTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Notification-2.0.0/CssTemplateConfiguration-1' */\nexport type SystemNotificationCssTemplateConfigurationUsedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `SystemNotificationCssTemplateConfiguration`. */\nexport type SystemNotificationCssTemplateConfigurationConnectionDto = {\n __typename?: 'SystemNotificationCssTemplateConfigurationConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemNotificationCssTemplateConfigurationEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemNotificationCssTemplateConfigurationDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemNotificationCssTemplateConfiguration`. */\nexport type SystemNotificationCssTemplateConfigurationEdgeDto = {\n __typename?: 'SystemNotificationCssTemplateConfigurationEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemNotificationCssTemplateConfigurationDto>;\n};\n\nexport type SystemNotificationCssTemplateConfigurationInputDto = {\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n cssStyle?: InputMaybe<Scalars['String']['input']>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n usedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n};\n\nexport type SystemNotificationCssTemplateConfigurationInputUpdateDto = {\n /** Item to update */\n item: SystemNotificationCssTemplateConfigurationInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\nexport type SystemNotificationCssTemplateConfigurationMutationsDto = {\n __typename?: 'SystemNotificationCssTemplateConfigurationMutations';\n /** Creates new entities of type 'SystemNotificationCssTemplateConfiguration'. */\n create?: Maybe<Array<Maybe<SystemNotificationCssTemplateConfigurationDto>>>;\n /** Updates existing entity of type 'SystemNotificationCssTemplateConfiguration'. */\n update?: Maybe<Array<Maybe<SystemNotificationCssTemplateConfigurationDto>>>;\n};\n\n\nexport type SystemNotificationCssTemplateConfigurationMutationsCreateArgsDto = {\n entities: Array<InputMaybe<SystemNotificationCssTemplateConfigurationInputDto>>;\n};\n\n\nexport type SystemNotificationCssTemplateConfigurationMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<SystemNotificationCssTemplateConfigurationInputUpdateDto>>;\n};\n\nexport type SystemNotificationCssTemplateConfigurationUpdateDto = {\n __typename?: 'SystemNotificationCssTemplateConfigurationUpdate';\n /** The corresponding item */\n item?: Maybe<SystemNotificationCssTemplateConfigurationDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemNotificationCssTemplateConfigurationUpdateMessageDto = {\n __typename?: 'SystemNotificationCssTemplateConfigurationUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemNotificationCssTemplateConfigurationUpdateDto>>>;\n};\n\n/** Runtime entities of construction kit type 'System.Notification-2.0.0/Event-1' */\nexport type SystemNotificationEventDto = SystemEntityInterfaceDto & {\n __typename?: 'SystemNotificationEvent';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n level: SystemNotificationEventLevelsDto;\n message?: Maybe<Scalars['String']['output']>;\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n source: SystemNotificationEventSourcesDto;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Notification-2.0.0/Event-1' */\nexport type SystemNotificationEventAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Notification-2.0.0/Event-1' */\nexport type SystemNotificationEventConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Notification-2.0.0/Event-1' */\nexport type SystemNotificationEventRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Notification-2.0.0/Event-1' */\nexport type SystemNotificationEventRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Notification-2.0.0/Event-1' */\nexport type SystemNotificationEventTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `SystemNotificationEvent`. */\nexport type SystemNotificationEventConnectionDto = {\n __typename?: 'SystemNotificationEventConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemNotificationEventEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemNotificationEventDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemNotificationEvent`. */\nexport type SystemNotificationEventEdgeDto = {\n __typename?: 'SystemNotificationEventEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemNotificationEventDto>;\n};\n\nexport type SystemNotificationEventInputDto = {\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n level?: InputMaybe<SystemNotificationEventLevelsDto>;\n message?: InputMaybe<Scalars['String']['input']>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n source?: InputMaybe<SystemNotificationEventSourcesDto>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n};\n\nexport type SystemNotificationEventInputUpdateDto = {\n /** Item to update */\n item: SystemNotificationEventInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\n/** Runtime entities of construction kit enum 'System.Notification/EventLevels' */\nexport enum SystemNotificationEventLevelsDto {\n /** Critical */\n CriticalDto = 'CRITICAL',\n /** Debug */\n DebugDto = 'DEBUG',\n /** Error */\n ErrorDto = 'ERROR',\n /** Information */\n InformationDto = 'INFORMATION',\n /** Warning */\n WarningDto = 'WARNING'\n}\n\nexport type SystemNotificationEventMutationsDto = {\n __typename?: 'SystemNotificationEventMutations';\n /** Creates new entities of type 'SystemNotificationEvent'. */\n create?: Maybe<Array<Maybe<SystemNotificationEventDto>>>;\n /** Updates existing entity of type 'SystemNotificationEvent'. */\n update?: Maybe<Array<Maybe<SystemNotificationEventDto>>>;\n};\n\n\nexport type SystemNotificationEventMutationsCreateArgsDto = {\n entities: Array<InputMaybe<SystemNotificationEventInputDto>>;\n};\n\n\nexport type SystemNotificationEventMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<SystemNotificationEventInputUpdateDto>>;\n};\n\n/** Runtime entities of construction kit enum 'System.Notification/EventSources' */\nexport enum SystemNotificationEventSourcesDto {\n /** The event was generated by the Admin Panel. */\n AdminPanelDto = 'ADMIN_PANEL',\n /** The event was generated by the Asset Repository Service. */\n AssetRepositoryServiceDto = 'ASSET_REPOSITORY_SERVICE',\n /** The event was generated by the Bot Service. */\n BotServiceDto = 'BOT_SERVICE',\n /** The event was generated by the Communication Service. */\n CommunicationServiceDto = 'COMMUNICATION_SERVICE',\n /** The event was generated by the Identity Service. */\n IdentityServiceDto = 'IDENTITY_SERVICE',\n /** The event was generated by the Mesh Adapter. */\n MeshAdapterDto = 'MESH_ADAPTER',\n /** No source has been assigned to the event. */\n UndefinedDto = 'UNDEFINED'\n}\n\n/** Runtime entities of construction kit enum 'System.Notification/EventStates' */\nexport enum SystemNotificationEventStatesDto {\n ActiveDto = 'ACTIVE',\n ErrorDto = 'ERROR',\n InactiveDto = 'INACTIVE'\n}\n\nexport type SystemNotificationEventUpdateDto = {\n __typename?: 'SystemNotificationEventUpdate';\n /** The corresponding item */\n item?: Maybe<SystemNotificationEventDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemNotificationEventUpdateMessageDto = {\n __typename?: 'SystemNotificationEventUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemNotificationEventUpdateDto>>>;\n};\n\n/** Runtime entities of construction kit type 'System.Notification-2.0.0/NotificationTemplate-1' */\nexport type SystemNotificationNotificationTemplateDto = SystemEntityInterfaceDto & {\n __typename?: 'SystemNotificationNotificationTemplate';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n bodyTemplate?: Maybe<Scalars['String']['output']>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n renderingType: SystemNotificationRenderingTypesDto;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n subjectTemplate: Scalars['String']['output'];\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n type: SystemNotificationNotificationTypesDto;\n};\n\n\n/** Runtime entities of construction kit type 'System.Notification-2.0.0/NotificationTemplate-1' */\nexport type SystemNotificationNotificationTemplateAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Notification-2.0.0/NotificationTemplate-1' */\nexport type SystemNotificationNotificationTemplateConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Notification-2.0.0/NotificationTemplate-1' */\nexport type SystemNotificationNotificationTemplateRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Notification-2.0.0/NotificationTemplate-1' */\nexport type SystemNotificationNotificationTemplateRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Notification-2.0.0/NotificationTemplate-1' */\nexport type SystemNotificationNotificationTemplateTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `SystemNotificationNotificationTemplate`. */\nexport type SystemNotificationNotificationTemplateConnectionDto = {\n __typename?: 'SystemNotificationNotificationTemplateConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemNotificationNotificationTemplateEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemNotificationNotificationTemplateDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemNotificationNotificationTemplate`. */\nexport type SystemNotificationNotificationTemplateEdgeDto = {\n __typename?: 'SystemNotificationNotificationTemplateEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemNotificationNotificationTemplateDto>;\n};\n\nexport type SystemNotificationNotificationTemplateInputDto = {\n bodyTemplate?: InputMaybe<Scalars['String']['input']>;\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n renderingType?: InputMaybe<SystemNotificationRenderingTypesDto>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n subjectTemplate?: InputMaybe<Scalars['String']['input']>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n type?: InputMaybe<SystemNotificationNotificationTypesDto>;\n};\n\nexport type SystemNotificationNotificationTemplateInputUpdateDto = {\n /** Item to update */\n item: SystemNotificationNotificationTemplateInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\nexport type SystemNotificationNotificationTemplateMutationsDto = {\n __typename?: 'SystemNotificationNotificationTemplateMutations';\n /** Creates new entities of type 'SystemNotificationNotificationTemplate'. */\n create?: Maybe<Array<Maybe<SystemNotificationNotificationTemplateDto>>>;\n /** Updates existing entity of type 'SystemNotificationNotificationTemplate'. */\n update?: Maybe<Array<Maybe<SystemNotificationNotificationTemplateDto>>>;\n};\n\n\nexport type SystemNotificationNotificationTemplateMutationsCreateArgsDto = {\n entities: Array<InputMaybe<SystemNotificationNotificationTemplateInputDto>>;\n};\n\n\nexport type SystemNotificationNotificationTemplateMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<SystemNotificationNotificationTemplateInputUpdateDto>>;\n};\n\nexport type SystemNotificationNotificationTemplateUpdateDto = {\n __typename?: 'SystemNotificationNotificationTemplateUpdate';\n /** The corresponding item */\n item?: Maybe<SystemNotificationNotificationTemplateDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemNotificationNotificationTemplateUpdateMessageDto = {\n __typename?: 'SystemNotificationNotificationTemplateUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemNotificationNotificationTemplateUpdateDto>>>;\n};\n\n/** Runtime entities of construction kit enum 'System.Notification/NotificationTypes' */\nexport enum SystemNotificationNotificationTypesDto {\n EMailDto = 'E_MAIL',\n PushDto = 'PUSH',\n SmsDto = 'SMS'\n}\n\n/** Runtime entities of construction kit enum 'System.Notification/RenderingTypes' */\nexport enum SystemNotificationRenderingTypesDto {\n HtmlDto = 'HTML',\n PlainDto = 'PLAIN'\n}\n\n/** Runtime entities of construction kit type 'System.Notification-2.0.0/StatefulEvent-1' */\nexport type SystemNotificationStatefulEventDto = SystemEntityInterfaceDto & {\n __typename?: 'SystemNotificationStatefulEvent';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n level: SystemNotificationEventLevelsDto;\n message?: Maybe<Scalars['String']['output']>;\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n source: SystemNotificationEventSourcesDto;\n state: SystemNotificationEventStatesDto;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Notification-2.0.0/StatefulEvent-1' */\nexport type SystemNotificationStatefulEventAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Notification-2.0.0/StatefulEvent-1' */\nexport type SystemNotificationStatefulEventConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Notification-2.0.0/StatefulEvent-1' */\nexport type SystemNotificationStatefulEventRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Notification-2.0.0/StatefulEvent-1' */\nexport type SystemNotificationStatefulEventRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Notification-2.0.0/StatefulEvent-1' */\nexport type SystemNotificationStatefulEventTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `SystemNotificationStatefulEvent`. */\nexport type SystemNotificationStatefulEventConnectionDto = {\n __typename?: 'SystemNotificationStatefulEventConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemNotificationStatefulEventEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemNotificationStatefulEventDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemNotificationStatefulEvent`. */\nexport type SystemNotificationStatefulEventEdgeDto = {\n __typename?: 'SystemNotificationStatefulEventEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemNotificationStatefulEventDto>;\n};\n\nexport type SystemNotificationStatefulEventInputDto = {\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n level?: InputMaybe<SystemNotificationEventLevelsDto>;\n message?: InputMaybe<Scalars['String']['input']>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n source?: InputMaybe<SystemNotificationEventSourcesDto>;\n state?: InputMaybe<SystemNotificationEventStatesDto>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n};\n\nexport type SystemNotificationStatefulEventInputUpdateDto = {\n /** Item to update */\n item: SystemNotificationStatefulEventInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\nexport type SystemNotificationStatefulEventMutationsDto = {\n __typename?: 'SystemNotificationStatefulEventMutations';\n /** Creates new entities of type 'SystemNotificationStatefulEvent'. */\n create?: Maybe<Array<Maybe<SystemNotificationStatefulEventDto>>>;\n /** Updates existing entity of type 'SystemNotificationStatefulEvent'. */\n update?: Maybe<Array<Maybe<SystemNotificationStatefulEventDto>>>;\n};\n\n\nexport type SystemNotificationStatefulEventMutationsCreateArgsDto = {\n entities: Array<InputMaybe<SystemNotificationStatefulEventInputDto>>;\n};\n\n\nexport type SystemNotificationStatefulEventMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<SystemNotificationStatefulEventInputUpdateDto>>;\n};\n\nexport type SystemNotificationStatefulEventUpdateDto = {\n __typename?: 'SystemNotificationStatefulEventUpdate';\n /** The corresponding item */\n item?: Maybe<SystemNotificationStatefulEventDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemNotificationStatefulEventUpdateMessageDto = {\n __typename?: 'SystemNotificationStatefulEventUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemNotificationStatefulEventUpdateDto>>>;\n};\n\n/** Runtime entities of construction kit type 'System-2.0.2/PersistentQuery-1' */\nexport type SystemPersistentQueryDto = SystemEntityInterfaceDto & {\n __typename?: 'SystemPersistentQuery';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n description?: Maybe<Scalars['String']['output']>;\n name: Scalars['String']['output'];\n queryCkTypeId: Scalars['String']['output'];\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n};\n\n\n/** Runtime entities of construction kit type 'System-2.0.2/PersistentQuery-1' */\nexport type SystemPersistentQueryAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System-2.0.2/PersistentQuery-1' */\nexport type SystemPersistentQueryConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System-2.0.2/PersistentQuery-1' */\nexport type SystemPersistentQueryRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System-2.0.2/PersistentQuery-1' */\nexport type SystemPersistentQueryRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System-2.0.2/PersistentQuery-1' */\nexport type SystemPersistentQueryTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `SystemPersistentQuery`. */\nexport type SystemPersistentQueryConnectionDto = {\n __typename?: 'SystemPersistentQueryConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemPersistentQueryEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemPersistentQueryDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemPersistentQuery`. */\nexport type SystemPersistentQueryEdgeDto = {\n __typename?: 'SystemPersistentQueryEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemPersistentQueryDto>;\n};\n\n/** Interface for runtime entities of construction kit type 'System-2.0.2/PersistentQuery-1' */\nexport type SystemPersistentQueryInterfaceDto = {\n ckTypeId: Scalars['RtCkTypeId']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n description?: Maybe<Scalars['String']['output']>;\n name: Scalars['String']['output'];\n queryCkTypeId: Scalars['String']['output'];\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n};\n\n\n/** Interface for runtime entities of construction kit type 'System-2.0.2/PersistentQuery-1' */\nexport type SystemPersistentQueryInterfaceConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Interface for runtime entities of construction kit type 'System-2.0.2/PersistentQuery-1' */\nexport type SystemPersistentQueryInterfaceRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Interface for runtime entities of construction kit type 'System-2.0.2/PersistentQuery-1' */\nexport type SystemPersistentQueryInterfaceRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Interface for runtime entities of construction kit type 'System-2.0.2/PersistentQuery-1' */\nexport type SystemPersistentQueryInterfaceTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\nexport type SystemPersistentQueryUpdateDto = {\n __typename?: 'SystemPersistentQueryUpdate';\n /** The corresponding item */\n item?: Maybe<SystemPersistentQueryDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemPersistentQueryUpdateMessageDto = {\n __typename?: 'SystemPersistentQueryUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemPersistentQueryUpdateDto>>>;\n};\n\n/** Runtime entities of construction kit type 'System-2.0.2/Query-1' */\nexport type SystemQueryDto = SystemEntityInterfaceDto & {\n __typename?: 'SystemQuery';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n attributeSearchFilter?: Maybe<SystemAttributeSearchFilterDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n columns: Array<Scalars['String']['output']>;\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n fieldFilter?: Maybe<Array<SystemFieldFilterDto>>;\n name: Scalars['String']['output'];\n queryCkTypeId: Scalars['String']['output'];\n queryType: SystemQueryTypesDto;\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n sorting?: Maybe<Array<SystemSortOrderItemDto>>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n textSearchFilter?: Maybe<SystemTextSearchFilterDto>;\n};\n\n\n/** Runtime entities of construction kit type 'System-2.0.2/Query-1' */\nexport type SystemQueryAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System-2.0.2/Query-1' */\nexport type SystemQueryConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System-2.0.2/Query-1' */\nexport type SystemQueryRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System-2.0.2/Query-1' */\nexport type SystemQueryRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System-2.0.2/Query-1' */\nexport type SystemQueryTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `SystemQuery`. */\nexport type SystemQueryConnectionDto = {\n __typename?: 'SystemQueryConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemQueryEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemQueryDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemQuery`. */\nexport type SystemQueryEdgeDto = {\n __typename?: 'SystemQueryEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemQueryDto>;\n};\n\nexport type SystemQueryInputDto = {\n attributeSearchFilter?: InputMaybe<SystemAttributeSearchFilterInputDto>;\n columns?: InputMaybe<Array<Scalars['String']['input']>>;\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n fieldFilter?: InputMaybe<Array<InputMaybe<SystemFieldFilterInputDto>>>;\n name?: InputMaybe<Scalars['String']['input']>;\n queryCkTypeId?: InputMaybe<Scalars['String']['input']>;\n queryType?: InputMaybe<SystemQueryTypesDto>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n sorting?: InputMaybe<Array<InputMaybe<SystemSortOrderItemInputDto>>>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n textSearchFilter?: InputMaybe<SystemTextSearchFilterInputDto>;\n};\n\nexport type SystemQueryInputUpdateDto = {\n /** Item to update */\n item: SystemQueryInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\nexport type SystemQueryMutationsDto = {\n __typename?: 'SystemQueryMutations';\n /** Creates new entities of type 'SystemQuery'. */\n create?: Maybe<Array<Maybe<SystemQueryDto>>>;\n /** Updates existing entity of type 'SystemQuery'. */\n update?: Maybe<Array<Maybe<SystemQueryDto>>>;\n};\n\n\nexport type SystemQueryMutationsCreateArgsDto = {\n entities: Array<InputMaybe<SystemQueryInputDto>>;\n};\n\n\nexport type SystemQueryMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<SystemQueryInputUpdateDto>>;\n};\n\n/** Runtime entities of construction kit enum 'System/QueryTypes' */\nexport enum SystemQueryTypesDto {\n /** A flat query */\n FlatDto = 'FLAT',\n /** A tree query that returns results from a tree */\n TreeDto = 'TREE'\n}\n\nexport type SystemQueryUpdateDto = {\n __typename?: 'SystemQueryUpdate';\n /** The corresponding item */\n item?: Maybe<SystemQueryDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemQueryUpdateMessageDto = {\n __typename?: 'SystemQueryUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemQueryUpdateDto>>>;\n};\n\n/** Runtime entities of construction kit type 'System.Reporting-2.0.0/ConnectionInfo-1' */\nexport type SystemReportingConnectionInfoDto = SystemConfigurationInterfaceDto & SystemEntityInterfaceDto & {\n __typename?: 'SystemReportingConnectionInfo';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n connectionString: Scalars['String']['output'];\n constructionKitType?: Maybe<CkTypeDto>;\n provider?: Maybe<Scalars['String']['output']>;\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n usedBy?: Maybe<SystemCommunicationPipeline_UsedByUnionConnectionDto>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Reporting-2.0.0/ConnectionInfo-1' */\nexport type SystemReportingConnectionInfoAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Reporting-2.0.0/ConnectionInfo-1' */\nexport type SystemReportingConnectionInfoConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Reporting-2.0.0/ConnectionInfo-1' */\nexport type SystemReportingConnectionInfoRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Reporting-2.0.0/ConnectionInfo-1' */\nexport type SystemReportingConnectionInfoRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Reporting-2.0.0/ConnectionInfo-1' */\nexport type SystemReportingConnectionInfoTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Reporting-2.0.0/ConnectionInfo-1' */\nexport type SystemReportingConnectionInfoUsedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `SystemReportingConnectionInfo`. */\nexport type SystemReportingConnectionInfoConnectionDto = {\n __typename?: 'SystemReportingConnectionInfoConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemReportingConnectionInfoEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemReportingConnectionInfoDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemReportingConnectionInfo`. */\nexport type SystemReportingConnectionInfoEdgeDto = {\n __typename?: 'SystemReportingConnectionInfoEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemReportingConnectionInfoDto>;\n};\n\nexport type SystemReportingConnectionInfoInputDto = {\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n connectionString?: InputMaybe<Scalars['String']['input']>;\n provider?: InputMaybe<Scalars['String']['input']>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n usedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n};\n\nexport type SystemReportingConnectionInfoInputUpdateDto = {\n /** Item to update */\n item: SystemReportingConnectionInfoInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\nexport type SystemReportingConnectionInfoMutationsDto = {\n __typename?: 'SystemReportingConnectionInfoMutations';\n /** Creates new entities of type 'SystemReportingConnectionInfo'. */\n create?: Maybe<Array<Maybe<SystemReportingConnectionInfoDto>>>;\n /** Updates existing entity of type 'SystemReportingConnectionInfo'. */\n update?: Maybe<Array<Maybe<SystemReportingConnectionInfoDto>>>;\n};\n\n\nexport type SystemReportingConnectionInfoMutationsCreateArgsDto = {\n entities: Array<InputMaybe<SystemReportingConnectionInfoInputDto>>;\n};\n\n\nexport type SystemReportingConnectionInfoMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<SystemReportingConnectionInfoInputUpdateDto>>;\n};\n\nexport type SystemReportingConnectionInfoUpdateDto = {\n __typename?: 'SystemReportingConnectionInfoUpdate';\n /** The corresponding item */\n item?: Maybe<SystemReportingConnectionInfoDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemReportingConnectionInfoUpdateMessageDto = {\n __typename?: 'SystemReportingConnectionInfoUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemReportingConnectionInfoUpdateDto>>>;\n};\n\n/** Runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemContainer-1' */\nexport type SystemReportingFileSystemContainerDto = SystemEntityInterfaceDto & SystemReportingFileSystemEntityInterfaceDto & {\n __typename?: 'SystemReportingFileSystemContainer';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n name: Scalars['String']['output'];\n parent?: Maybe<SystemReportingFolder_ParentUnionConnectionDto>;\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemContainer-1' */\nexport type SystemReportingFileSystemContainerAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemContainer-1' */\nexport type SystemReportingFileSystemContainerConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemContainer-1' */\nexport type SystemReportingFileSystemContainerParentArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemContainer-1' */\nexport type SystemReportingFileSystemContainerRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemContainer-1' */\nexport type SystemReportingFileSystemContainerRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemContainer-1' */\nexport type SystemReportingFileSystemContainerTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `SystemReportingFileSystemContainer`. */\nexport type SystemReportingFileSystemContainerConnectionDto = {\n __typename?: 'SystemReportingFileSystemContainerConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemReportingFileSystemContainerEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemReportingFileSystemContainerDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemReportingFileSystemContainer`. */\nexport type SystemReportingFileSystemContainerEdgeDto = {\n __typename?: 'SystemReportingFileSystemContainerEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemReportingFileSystemContainerDto>;\n};\n\n/** Interface for runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemContainer-1' */\nexport type SystemReportingFileSystemContainerInterfaceDto = {\n ckTypeId: Scalars['RtCkTypeId']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n name: Scalars['String']['output'];\n parent?: Maybe<SystemReportingFolder_ParentUnionConnectionDto>;\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n};\n\n\n/** Interface for runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemContainer-1' */\nexport type SystemReportingFileSystemContainerInterfaceConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Interface for runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemContainer-1' */\nexport type SystemReportingFileSystemContainerInterfaceParentArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Interface for runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemContainer-1' */\nexport type SystemReportingFileSystemContainerInterfaceRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Interface for runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemContainer-1' */\nexport type SystemReportingFileSystemContainerInterfaceRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Interface for runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemContainer-1' */\nexport type SystemReportingFileSystemContainerInterfaceTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\nexport type SystemReportingFileSystemContainerUpdateDto = {\n __typename?: 'SystemReportingFileSystemContainerUpdate';\n /** The corresponding item */\n item?: Maybe<SystemReportingFileSystemContainerDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemReportingFileSystemContainerUpdateMessageDto = {\n __typename?: 'SystemReportingFileSystemContainerUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemReportingFileSystemContainerUpdateDto>>>;\n};\n\n/** Union of types derived from System.Reporting/FileSystemContainer for Children association */\nexport type SystemReportingFileSystemContainer_ChildrenUnionDto = SystemReportingFileSystemItemDto | SystemReportingFolderDto;\n\n/** A connection to `SystemReportingFileSystemContainer_ChildrenUnion`. */\nexport type SystemReportingFileSystemContainer_ChildrenUnionConnectionDto = {\n __typename?: 'SystemReportingFileSystemContainer_ChildrenUnionConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemReportingFileSystemContainer_ChildrenUnionEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemReportingFileSystemContainer_ChildrenUnionDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemReportingFileSystemContainer_ChildrenUnion`. */\nexport type SystemReportingFileSystemContainer_ChildrenUnionEdgeDto = {\n __typename?: 'SystemReportingFileSystemContainer_ChildrenUnionEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemReportingFileSystemContainer_ChildrenUnionDto>;\n};\n\n/** Runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemEntity-1' */\nexport type SystemReportingFileSystemEntityDto = SystemEntityInterfaceDto & {\n __typename?: 'SystemReportingFileSystemEntity';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n name: Scalars['String']['output'];\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemEntity-1' */\nexport type SystemReportingFileSystemEntityAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemEntity-1' */\nexport type SystemReportingFileSystemEntityConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemEntity-1' */\nexport type SystemReportingFileSystemEntityRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemEntity-1' */\nexport type SystemReportingFileSystemEntityRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemEntity-1' */\nexport type SystemReportingFileSystemEntityTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `SystemReportingFileSystemEntity`. */\nexport type SystemReportingFileSystemEntityConnectionDto = {\n __typename?: 'SystemReportingFileSystemEntityConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemReportingFileSystemEntityEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemReportingFileSystemEntityDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemReportingFileSystemEntity`. */\nexport type SystemReportingFileSystemEntityEdgeDto = {\n __typename?: 'SystemReportingFileSystemEntityEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemReportingFileSystemEntityDto>;\n};\n\n/** Interface for runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemEntity-1' */\nexport type SystemReportingFileSystemEntityInterfaceDto = {\n ckTypeId: Scalars['RtCkTypeId']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n name: Scalars['String']['output'];\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n};\n\n\n/** Interface for runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemEntity-1' */\nexport type SystemReportingFileSystemEntityInterfaceConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Interface for runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemEntity-1' */\nexport type SystemReportingFileSystemEntityInterfaceRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Interface for runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemEntity-1' */\nexport type SystemReportingFileSystemEntityInterfaceRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Interface for runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemEntity-1' */\nexport type SystemReportingFileSystemEntityInterfaceTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\nexport type SystemReportingFileSystemEntityUpdateDto = {\n __typename?: 'SystemReportingFileSystemEntityUpdate';\n /** The corresponding item */\n item?: Maybe<SystemReportingFileSystemEntityDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemReportingFileSystemEntityUpdateMessageDto = {\n __typename?: 'SystemReportingFileSystemEntityUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemReportingFileSystemEntityUpdateDto>>>;\n};\n\n/** Runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemItem-1' */\nexport type SystemReportingFileSystemItemDto = SystemEntityInterfaceDto & SystemReportingFileSystemContainerInterfaceDto & SystemReportingFileSystemEntityInterfaceDto & {\n __typename?: 'SystemReportingFileSystemItem';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n content: LargeBinaryInfoDto;\n name: Scalars['String']['output'];\n parent?: Maybe<SystemReportingFolder_ParentUnionConnectionDto>;\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemItem-1' */\nexport type SystemReportingFileSystemItemAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemItem-1' */\nexport type SystemReportingFileSystemItemConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemItem-1' */\nexport type SystemReportingFileSystemItemParentArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemItem-1' */\nexport type SystemReportingFileSystemItemRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemItem-1' */\nexport type SystemReportingFileSystemItemRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemItem-1' */\nexport type SystemReportingFileSystemItemTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `SystemReportingFileSystemItem`. */\nexport type SystemReportingFileSystemItemConnectionDto = {\n __typename?: 'SystemReportingFileSystemItemConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemReportingFileSystemItemEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemReportingFileSystemItemDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemReportingFileSystemItem`. */\nexport type SystemReportingFileSystemItemEdgeDto = {\n __typename?: 'SystemReportingFileSystemItemEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemReportingFileSystemItemDto>;\n};\n\nexport type SystemReportingFileSystemItemInputDto = {\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n content?: InputMaybe<Scalars['LargeBinary']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n parent?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n};\n\nexport type SystemReportingFileSystemItemInputUpdateDto = {\n /** Item to update */\n item: SystemReportingFileSystemItemInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\nexport type SystemReportingFileSystemItemMutationsDto = {\n __typename?: 'SystemReportingFileSystemItemMutations';\n /** Creates new entities of type 'SystemReportingFileSystemItem'. */\n create?: Maybe<Array<Maybe<SystemReportingFileSystemItemDto>>>;\n /** Updates existing entity of type 'SystemReportingFileSystemItem'. */\n update?: Maybe<Array<Maybe<SystemReportingFileSystemItemDto>>>;\n};\n\n\nexport type SystemReportingFileSystemItemMutationsCreateArgsDto = {\n entities: Array<InputMaybe<SystemReportingFileSystemItemInputDto>>;\n};\n\n\nexport type SystemReportingFileSystemItemMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<SystemReportingFileSystemItemInputUpdateDto>>;\n};\n\nexport type SystemReportingFileSystemItemUpdateDto = {\n __typename?: 'SystemReportingFileSystemItemUpdate';\n /** The corresponding item */\n item?: Maybe<SystemReportingFileSystemItemDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemReportingFileSystemItemUpdateMessageDto = {\n __typename?: 'SystemReportingFileSystemItemUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemReportingFileSystemItemUpdateDto>>>;\n};\n\n/** Runtime entities of construction kit type 'System.Reporting-2.0.0/Folder-1' */\nexport type SystemReportingFolderDto = SystemEntityInterfaceDto & SystemReportingFileSystemContainerInterfaceDto & SystemReportingFileSystemEntityInterfaceDto & {\n __typename?: 'SystemReportingFolder';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n children?: Maybe<SystemReportingFileSystemContainer_ChildrenUnionConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n name: Scalars['String']['output'];\n parent?: Maybe<SystemReportingFolder_ParentUnionConnectionDto>;\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Reporting-2.0.0/Folder-1' */\nexport type SystemReportingFolderAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Reporting-2.0.0/Folder-1' */\nexport type SystemReportingFolderChildrenArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Reporting-2.0.0/Folder-1' */\nexport type SystemReportingFolderConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Reporting-2.0.0/Folder-1' */\nexport type SystemReportingFolderParentArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Reporting-2.0.0/Folder-1' */\nexport type SystemReportingFolderRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Reporting-2.0.0/Folder-1' */\nexport type SystemReportingFolderRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Reporting-2.0.0/Folder-1' */\nexport type SystemReportingFolderTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `SystemReportingFolder`. */\nexport type SystemReportingFolderConnectionDto = {\n __typename?: 'SystemReportingFolderConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemReportingFolderEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemReportingFolderDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemReportingFolder`. */\nexport type SystemReportingFolderEdgeDto = {\n __typename?: 'SystemReportingFolderEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemReportingFolderDto>;\n};\n\nexport type SystemReportingFolderInputDto = {\n children?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n name?: InputMaybe<Scalars['String']['input']>;\n parent?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n};\n\nexport type SystemReportingFolderInputUpdateDto = {\n /** Item to update */\n item: SystemReportingFolderInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\nexport type SystemReportingFolderMutationsDto = {\n __typename?: 'SystemReportingFolderMutations';\n /** Creates new entities of type 'SystemReportingFolder'. */\n create?: Maybe<Array<Maybe<SystemReportingFolderDto>>>;\n /** Updates existing entity of type 'SystemReportingFolder'. */\n update?: Maybe<Array<Maybe<SystemReportingFolderDto>>>;\n};\n\n\nexport type SystemReportingFolderMutationsCreateArgsDto = {\n entities: Array<InputMaybe<SystemReportingFolderInputDto>>;\n};\n\n\nexport type SystemReportingFolderMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<SystemReportingFolderInputUpdateDto>>;\n};\n\n/** Runtime entities of construction kit type 'System.Reporting-2.0.0/FolderRoot-1' */\nexport type SystemReportingFolderRootDto = SystemEntityInterfaceDto & SystemReportingFileSystemEntityInterfaceDto & {\n __typename?: 'SystemReportingFolderRoot';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n children?: Maybe<SystemReportingFileSystemContainer_ChildrenUnionConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n name: Scalars['String']['output'];\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Reporting-2.0.0/FolderRoot-1' */\nexport type SystemReportingFolderRootAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Reporting-2.0.0/FolderRoot-1' */\nexport type SystemReportingFolderRootChildrenArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Reporting-2.0.0/FolderRoot-1' */\nexport type SystemReportingFolderRootConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Reporting-2.0.0/FolderRoot-1' */\nexport type SystemReportingFolderRootRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Reporting-2.0.0/FolderRoot-1' */\nexport type SystemReportingFolderRootRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.Reporting-2.0.0/FolderRoot-1' */\nexport type SystemReportingFolderRootTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `SystemReportingFolderRoot`. */\nexport type SystemReportingFolderRootConnectionDto = {\n __typename?: 'SystemReportingFolderRootConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemReportingFolderRootEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemReportingFolderRootDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemReportingFolderRoot`. */\nexport type SystemReportingFolderRootEdgeDto = {\n __typename?: 'SystemReportingFolderRootEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemReportingFolderRootDto>;\n};\n\nexport type SystemReportingFolderRootInputDto = {\n children?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n name?: InputMaybe<Scalars['String']['input']>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n};\n\nexport type SystemReportingFolderRootInputUpdateDto = {\n /** Item to update */\n item: SystemReportingFolderRootInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\nexport type SystemReportingFolderRootMutationsDto = {\n __typename?: 'SystemReportingFolderRootMutations';\n /** Creates new entities of type 'SystemReportingFolderRoot'. */\n create?: Maybe<Array<Maybe<SystemReportingFolderRootDto>>>;\n /** Updates existing entity of type 'SystemReportingFolderRoot'. */\n update?: Maybe<Array<Maybe<SystemReportingFolderRootDto>>>;\n};\n\n\nexport type SystemReportingFolderRootMutationsCreateArgsDto = {\n entities: Array<InputMaybe<SystemReportingFolderRootInputDto>>;\n};\n\n\nexport type SystemReportingFolderRootMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<SystemReportingFolderRootInputUpdateDto>>;\n};\n\nexport type SystemReportingFolderRootUpdateDto = {\n __typename?: 'SystemReportingFolderRootUpdate';\n /** The corresponding item */\n item?: Maybe<SystemReportingFolderRootDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemReportingFolderRootUpdateMessageDto = {\n __typename?: 'SystemReportingFolderRootUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemReportingFolderRootUpdateDto>>>;\n};\n\nexport type SystemReportingFolderUpdateDto = {\n __typename?: 'SystemReportingFolderUpdate';\n /** The corresponding item */\n item?: Maybe<SystemReportingFolderDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemReportingFolderUpdateMessageDto = {\n __typename?: 'SystemReportingFolderUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemReportingFolderUpdateDto>>>;\n};\n\n/** Union of types derived from System.Reporting/Folder for Parent association */\nexport type SystemReportingFolder_ParentUnionDto = SystemReportingFolderDto | SystemReportingFolderRootDto;\n\n/** A connection to `SystemReportingFolder_ParentUnion`. */\nexport type SystemReportingFolder_ParentUnionConnectionDto = {\n __typename?: 'SystemReportingFolder_ParentUnionConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemReportingFolder_ParentUnionEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemReportingFolder_ParentUnionDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemReportingFolder_ParentUnion`. */\nexport type SystemReportingFolder_ParentUnionEdgeDto = {\n __typename?: 'SystemReportingFolder_ParentUnionEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemReportingFolder_ParentUnionDto>;\n};\n\n/** Runtime entities of construction kit type 'System-2.0.2/SimpleRtQuery-1' */\nexport type SystemSimpleRtQueryDto = SystemEntityInterfaceDto & SystemPersistentQueryInterfaceDto & {\n __typename?: 'SystemSimpleRtQuery';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n attributeSearchFilter?: Maybe<SystemAttributeSearchFilterDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n columns: Array<Scalars['String']['output']>;\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n description?: Maybe<Scalars['String']['output']>;\n fieldFilter?: Maybe<Array<SystemFieldFilterDto>>;\n name: Scalars['String']['output'];\n queryCkTypeId: Scalars['String']['output'];\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n sorting?: Maybe<Array<SystemSortOrderItemDto>>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n textSearchFilter?: Maybe<SystemTextSearchFilterDto>;\n};\n\n\n/** Runtime entities of construction kit type 'System-2.0.2/SimpleRtQuery-1' */\nexport type SystemSimpleRtQueryAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System-2.0.2/SimpleRtQuery-1' */\nexport type SystemSimpleRtQueryConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System-2.0.2/SimpleRtQuery-1' */\nexport type SystemSimpleRtQueryRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System-2.0.2/SimpleRtQuery-1' */\nexport type SystemSimpleRtQueryRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System-2.0.2/SimpleRtQuery-1' */\nexport type SystemSimpleRtQueryTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `SystemSimpleRtQuery`. */\nexport type SystemSimpleRtQueryConnectionDto = {\n __typename?: 'SystemSimpleRtQueryConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemSimpleRtQueryEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemSimpleRtQueryDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemSimpleRtQuery`. */\nexport type SystemSimpleRtQueryEdgeDto = {\n __typename?: 'SystemSimpleRtQueryEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemSimpleRtQueryDto>;\n};\n\nexport type SystemSimpleRtQueryInputDto = {\n attributeSearchFilter?: InputMaybe<SystemAttributeSearchFilterInputDto>;\n columns?: InputMaybe<Array<Scalars['String']['input']>>;\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n description?: InputMaybe<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<SystemFieldFilterInputDto>>>;\n name?: InputMaybe<Scalars['String']['input']>;\n queryCkTypeId?: InputMaybe<Scalars['String']['input']>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n sorting?: InputMaybe<Array<InputMaybe<SystemSortOrderItemInputDto>>>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n textSearchFilter?: InputMaybe<SystemTextSearchFilterInputDto>;\n};\n\nexport type SystemSimpleRtQueryInputUpdateDto = {\n /** Item to update */\n item: SystemSimpleRtQueryInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\nexport type SystemSimpleRtQueryMutationsDto = {\n __typename?: 'SystemSimpleRtQueryMutations';\n /** Creates new entities of type 'SystemSimpleRtQuery'. */\n create?: Maybe<Array<Maybe<SystemSimpleRtQueryDto>>>;\n /** Updates existing entity of type 'SystemSimpleRtQuery'. */\n update?: Maybe<Array<Maybe<SystemSimpleRtQueryDto>>>;\n};\n\n\nexport type SystemSimpleRtQueryMutationsCreateArgsDto = {\n entities: Array<InputMaybe<SystemSimpleRtQueryInputDto>>;\n};\n\n\nexport type SystemSimpleRtQueryMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<SystemSimpleRtQueryInputUpdateDto>>;\n};\n\nexport type SystemSimpleRtQueryUpdateDto = {\n __typename?: 'SystemSimpleRtQueryUpdate';\n /** The corresponding item */\n item?: Maybe<SystemSimpleRtQueryDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemSimpleRtQueryUpdateMessageDto = {\n __typename?: 'SystemSimpleRtQueryUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemSimpleRtQueryUpdateDto>>>;\n};\n\n/** Runtime entities of construction kit record 'System/SortOrderItem' */\nexport type SystemSortOrderItemDto = {\n __typename?: 'SystemSortOrderItem';\n attributePath: Scalars['String']['output'];\n constructionKitType?: Maybe<CkTypeDto>;\n sortOrder: SystemSortOrdersDto;\n};\n\nexport type SystemSortOrderItemInputDto = {\n attributePath?: InputMaybe<Scalars['String']['input']>;\n sortOrder?: InputMaybe<SystemSortOrdersDto>;\n};\n\n/** Runtime entities of construction kit enum 'System/SortOrders' */\nexport enum SystemSortOrdersDto {\n /** Ascending order */\n AscendingDto = 'ASCENDING',\n /** Default sorting based on data source type */\n DefaultDto = 'DEFAULT',\n /** Descending order */\n DescendingDto = 'DESCENDING'\n}\n\n/** Runtime entities of construction kit type 'System-2.0.2/Tenant-1' */\nexport type SystemTenantDto = SystemEntityInterfaceDto & {\n __typename?: 'SystemTenant';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n databaseName: Scalars['String']['output'];\n parentTenantId?: Maybe<Scalars['String']['output']>;\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n tenantId: Scalars['String']['output'];\n};\n\n\n/** Runtime entities of construction kit type 'System-2.0.2/Tenant-1' */\nexport type SystemTenantAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System-2.0.2/Tenant-1' */\nexport type SystemTenantConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System-2.0.2/Tenant-1' */\nexport type SystemTenantRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System-2.0.2/Tenant-1' */\nexport type SystemTenantRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System-2.0.2/Tenant-1' */\nexport type SystemTenantTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** Runtime entities of construction kit type 'System-2.0.2/TenantConfiguration-1' */\nexport type SystemTenantConfigurationDto = SystemConfigurationInterfaceDto & SystemEntityInterfaceDto & {\n __typename?: 'SystemTenantConfiguration';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n configurationValue?: Maybe<Scalars['String']['output']>;\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n usedBy?: Maybe<SystemCommunicationPipeline_UsedByUnionConnectionDto>;\n};\n\n\n/** Runtime entities of construction kit type 'System-2.0.2/TenantConfiguration-1' */\nexport type SystemTenantConfigurationAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System-2.0.2/TenantConfiguration-1' */\nexport type SystemTenantConfigurationConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System-2.0.2/TenantConfiguration-1' */\nexport type SystemTenantConfigurationRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System-2.0.2/TenantConfiguration-1' */\nexport type SystemTenantConfigurationRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System-2.0.2/TenantConfiguration-1' */\nexport type SystemTenantConfigurationTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System-2.0.2/TenantConfiguration-1' */\nexport type SystemTenantConfigurationUsedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `SystemTenantConfiguration`. */\nexport type SystemTenantConfigurationConnectionDto = {\n __typename?: 'SystemTenantConfigurationConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemTenantConfigurationEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemTenantConfigurationDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemTenantConfiguration`. */\nexport type SystemTenantConfigurationEdgeDto = {\n __typename?: 'SystemTenantConfigurationEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemTenantConfigurationDto>;\n};\n\nexport type SystemTenantConfigurationInputDto = {\n configurationValue?: InputMaybe<Scalars['String']['input']>;\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n usedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n};\n\nexport type SystemTenantConfigurationInputUpdateDto = {\n /** Item to update */\n item: SystemTenantConfigurationInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\nexport type SystemTenantConfigurationMutationsDto = {\n __typename?: 'SystemTenantConfigurationMutations';\n /** Creates new entities of type 'SystemTenantConfiguration'. */\n create?: Maybe<Array<Maybe<SystemTenantConfigurationDto>>>;\n /** Updates existing entity of type 'SystemTenantConfiguration'. */\n update?: Maybe<Array<Maybe<SystemTenantConfigurationDto>>>;\n};\n\n\nexport type SystemTenantConfigurationMutationsCreateArgsDto = {\n entities: Array<InputMaybe<SystemTenantConfigurationInputDto>>;\n};\n\n\nexport type SystemTenantConfigurationMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<SystemTenantConfigurationInputUpdateDto>>;\n};\n\nexport type SystemTenantConfigurationUpdateDto = {\n __typename?: 'SystemTenantConfigurationUpdate';\n /** The corresponding item */\n item?: Maybe<SystemTenantConfigurationDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemTenantConfigurationUpdateMessageDto = {\n __typename?: 'SystemTenantConfigurationUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemTenantConfigurationUpdateDto>>>;\n};\n\n/** A connection to `SystemTenant`. */\nexport type SystemTenantConnectionDto = {\n __typename?: 'SystemTenantConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemTenantEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemTenantDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemTenant`. */\nexport type SystemTenantEdgeDto = {\n __typename?: 'SystemTenantEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemTenantDto>;\n};\n\nexport type SystemTenantInputDto = {\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n databaseName?: InputMaybe<Scalars['String']['input']>;\n parentTenantId?: InputMaybe<Scalars['String']['input']>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n tenantId?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type SystemTenantInputUpdateDto = {\n /** Item to update */\n item: SystemTenantInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\n/** Runtime entities of construction kit type 'System-2.0.2/TenantModeConfiguration-1' */\nexport type SystemTenantModeConfigurationDto = SystemConfigurationInterfaceDto & SystemEntityInterfaceDto & {\n __typename?: 'SystemTenantModeConfiguration';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n environmentMode: SystemEnvironmentModesDto;\n maintenanceLevel: SystemMaintenanceLevelsDto;\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n usedBy?: Maybe<SystemCommunicationPipeline_UsedByUnionConnectionDto>;\n};\n\n\n/** Runtime entities of construction kit type 'System-2.0.2/TenantModeConfiguration-1' */\nexport type SystemTenantModeConfigurationAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System-2.0.2/TenantModeConfiguration-1' */\nexport type SystemTenantModeConfigurationConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System-2.0.2/TenantModeConfiguration-1' */\nexport type SystemTenantModeConfigurationRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System-2.0.2/TenantModeConfiguration-1' */\nexport type SystemTenantModeConfigurationRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System-2.0.2/TenantModeConfiguration-1' */\nexport type SystemTenantModeConfigurationTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System-2.0.2/TenantModeConfiguration-1' */\nexport type SystemTenantModeConfigurationUsedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `SystemTenantModeConfiguration`. */\nexport type SystemTenantModeConfigurationConnectionDto = {\n __typename?: 'SystemTenantModeConfigurationConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemTenantModeConfigurationEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemTenantModeConfigurationDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemTenantModeConfiguration`. */\nexport type SystemTenantModeConfigurationEdgeDto = {\n __typename?: 'SystemTenantModeConfigurationEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemTenantModeConfigurationDto>;\n};\n\nexport type SystemTenantModeConfigurationInputDto = {\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n environmentMode?: InputMaybe<SystemEnvironmentModesDto>;\n maintenanceLevel?: InputMaybe<SystemMaintenanceLevelsDto>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n usedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n};\n\nexport type SystemTenantModeConfigurationInputUpdateDto = {\n /** Item to update */\n item: SystemTenantModeConfigurationInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\nexport type SystemTenantModeConfigurationMutationsDto = {\n __typename?: 'SystemTenantModeConfigurationMutations';\n /** Creates new entities of type 'SystemTenantModeConfiguration'. */\n create?: Maybe<Array<Maybe<SystemTenantModeConfigurationDto>>>;\n /** Updates existing entity of type 'SystemTenantModeConfiguration'. */\n update?: Maybe<Array<Maybe<SystemTenantModeConfigurationDto>>>;\n};\n\n\nexport type SystemTenantModeConfigurationMutationsCreateArgsDto = {\n entities: Array<InputMaybe<SystemTenantModeConfigurationInputDto>>;\n};\n\n\nexport type SystemTenantModeConfigurationMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<SystemTenantModeConfigurationInputUpdateDto>>;\n};\n\nexport type SystemTenantModeConfigurationUpdateDto = {\n __typename?: 'SystemTenantModeConfigurationUpdate';\n /** The corresponding item */\n item?: Maybe<SystemTenantModeConfigurationDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemTenantModeConfigurationUpdateMessageDto = {\n __typename?: 'SystemTenantModeConfigurationUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemTenantModeConfigurationUpdateDto>>>;\n};\n\nexport type SystemTenantMutationsDto = {\n __typename?: 'SystemTenantMutations';\n /** Creates new entities of type 'SystemTenant'. */\n create?: Maybe<Array<Maybe<SystemTenantDto>>>;\n /** Updates existing entity of type 'SystemTenant'. */\n update?: Maybe<Array<Maybe<SystemTenantDto>>>;\n};\n\n\nexport type SystemTenantMutationsCreateArgsDto = {\n entities: Array<InputMaybe<SystemTenantInputDto>>;\n};\n\n\nexport type SystemTenantMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<SystemTenantInputUpdateDto>>;\n};\n\nexport type SystemTenantUpdateDto = {\n __typename?: 'SystemTenantUpdate';\n /** The corresponding item */\n item?: Maybe<SystemTenantDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemTenantUpdateMessageDto = {\n __typename?: 'SystemTenantUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemTenantUpdateDto>>>;\n};\n\n/** Runtime entities of construction kit record 'System/TextSearchFilter' */\nexport type SystemTextSearchFilterDto = {\n __typename?: 'SystemTextSearchFilter';\n constructionKitType?: Maybe<CkTypeDto>;\n searchValue: Scalars['String']['output'];\n};\n\nexport type SystemTextSearchFilterInputDto = {\n searchValue?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Runtime entities of construction kit type 'System.UI-2.0.1/Dashboard-1' */\nexport type SystemUiDashboardDto = SystemEntityInterfaceDto & SystemUiuiElementInterfaceDto & {\n __typename?: 'SystemUIDashboard';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n children?: Maybe<SystemUiDashboardWidget_ChildrenUnionConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n columns: Scalars['Int']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n description: Scalars['String']['output'];\n gap: Scalars['Int']['output'];\n name: Scalars['String']['output'];\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rowHeight: Scalars['Int']['output'];\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n};\n\n\n/** Runtime entities of construction kit type 'System.UI-2.0.1/Dashboard-1' */\nexport type SystemUiDashboardAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.UI-2.0.1/Dashboard-1' */\nexport type SystemUiDashboardChildrenArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.UI-2.0.1/Dashboard-1' */\nexport type SystemUiDashboardConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.UI-2.0.1/Dashboard-1' */\nexport type SystemUiDashboardRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.UI-2.0.1/Dashboard-1' */\nexport type SystemUiDashboardRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.UI-2.0.1/Dashboard-1' */\nexport type SystemUiDashboardTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `SystemUIDashboard`. */\nexport type SystemUiDashboardConnectionDto = {\n __typename?: 'SystemUIDashboardConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemUiDashboardEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemUiDashboardDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemUIDashboard`. */\nexport type SystemUiDashboardEdgeDto = {\n __typename?: 'SystemUIDashboardEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemUiDashboardDto>;\n};\n\nexport type SystemUiDashboardInputDto = {\n children?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n columns?: InputMaybe<Scalars['Int']['input']>;\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n description?: InputMaybe<Scalars['String']['input']>;\n gap?: InputMaybe<Scalars['Int']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n rowHeight?: InputMaybe<Scalars['Int']['input']>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n};\n\nexport type SystemUiDashboardInputUpdateDto = {\n /** Item to update */\n item: SystemUiDashboardInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\nexport type SystemUiDashboardMutationsDto = {\n __typename?: 'SystemUIDashboardMutations';\n /** Creates new entities of type 'SystemUIDashboard'. */\n create?: Maybe<Array<Maybe<SystemUiDashboardDto>>>;\n /** Updates existing entity of type 'SystemUIDashboard'. */\n update?: Maybe<Array<Maybe<SystemUiDashboardDto>>>;\n};\n\n\nexport type SystemUiDashboardMutationsCreateArgsDto = {\n entities: Array<InputMaybe<SystemUiDashboardInputDto>>;\n};\n\n\nexport type SystemUiDashboardMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<SystemUiDashboardInputUpdateDto>>;\n};\n\nexport type SystemUiDashboardUpdateDto = {\n __typename?: 'SystemUIDashboardUpdate';\n /** The corresponding item */\n item?: Maybe<SystemUiDashboardDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemUiDashboardUpdateMessageDto = {\n __typename?: 'SystemUIDashboardUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemUiDashboardUpdateDto>>>;\n};\n\n/** Runtime entities of construction kit type 'System.UI-2.0.1/DashboardWidget-1' */\nexport type SystemUiDashboardWidgetDto = SystemEntityInterfaceDto & SystemUiuiElementInterfaceDto & {\n __typename?: 'SystemUIDashboardWidget';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n col: Scalars['Int']['output'];\n colSpan: Scalars['Int']['output'];\n config: Scalars['String']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n dataSourceCkTypeId?: Maybe<Scalars['String']['output']>;\n dataSourceRtId?: Maybe<Scalars['String']['output']>;\n dataSourceType: Scalars['String']['output'];\n name: Scalars['String']['output'];\n parent?: Maybe<SystemUiDashboard_ParentUnionConnectionDto>;\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n row: Scalars['Int']['output'];\n rowSpan: Scalars['Int']['output'];\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n type: Scalars['String']['output'];\n};\n\n\n/** Runtime entities of construction kit type 'System.UI-2.0.1/DashboardWidget-1' */\nexport type SystemUiDashboardWidgetAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.UI-2.0.1/DashboardWidget-1' */\nexport type SystemUiDashboardWidgetConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.UI-2.0.1/DashboardWidget-1' */\nexport type SystemUiDashboardWidgetParentArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.UI-2.0.1/DashboardWidget-1' */\nexport type SystemUiDashboardWidgetRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.UI-2.0.1/DashboardWidget-1' */\nexport type SystemUiDashboardWidgetRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.UI-2.0.1/DashboardWidget-1' */\nexport type SystemUiDashboardWidgetTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `SystemUIDashboardWidget`. */\nexport type SystemUiDashboardWidgetConnectionDto = {\n __typename?: 'SystemUIDashboardWidgetConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemUiDashboardWidgetEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemUiDashboardWidgetDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemUIDashboardWidget`. */\nexport type SystemUiDashboardWidgetEdgeDto = {\n __typename?: 'SystemUIDashboardWidgetEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemUiDashboardWidgetDto>;\n};\n\nexport type SystemUiDashboardWidgetInputDto = {\n col?: InputMaybe<Scalars['Int']['input']>;\n colSpan?: InputMaybe<Scalars['Int']['input']>;\n config?: InputMaybe<Scalars['String']['input']>;\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n dataSourceCkTypeId?: InputMaybe<Scalars['String']['input']>;\n dataSourceRtId?: InputMaybe<Scalars['String']['input']>;\n dataSourceType?: InputMaybe<Scalars['String']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n parent?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n row?: InputMaybe<Scalars['Int']['input']>;\n rowSpan?: InputMaybe<Scalars['Int']['input']>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n type?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type SystemUiDashboardWidgetInputUpdateDto = {\n /** Item to update */\n item: SystemUiDashboardWidgetInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\nexport type SystemUiDashboardWidgetMutationsDto = {\n __typename?: 'SystemUIDashboardWidgetMutations';\n /** Creates new entities of type 'SystemUIDashboardWidget'. */\n create?: Maybe<Array<Maybe<SystemUiDashboardWidgetDto>>>;\n /** Updates existing entity of type 'SystemUIDashboardWidget'. */\n update?: Maybe<Array<Maybe<SystemUiDashboardWidgetDto>>>;\n};\n\n\nexport type SystemUiDashboardWidgetMutationsCreateArgsDto = {\n entities: Array<InputMaybe<SystemUiDashboardWidgetInputDto>>;\n};\n\n\nexport type SystemUiDashboardWidgetMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<SystemUiDashboardWidgetInputUpdateDto>>;\n};\n\nexport type SystemUiDashboardWidgetUpdateDto = {\n __typename?: 'SystemUIDashboardWidgetUpdate';\n /** The corresponding item */\n item?: Maybe<SystemUiDashboardWidgetDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemUiDashboardWidgetUpdateMessageDto = {\n __typename?: 'SystemUIDashboardWidgetUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemUiDashboardWidgetUpdateDto>>>;\n};\n\n/** Union of types derived from System.UI/DashboardWidget for Children association */\nexport type SystemUiDashboardWidget_ChildrenUnionDto = SystemUiDashboardWidgetDto;\n\n/** A connection to `SystemUIDashboardWidget_ChildrenUnion`. */\nexport type SystemUiDashboardWidget_ChildrenUnionConnectionDto = {\n __typename?: 'SystemUIDashboardWidget_ChildrenUnionConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemUiDashboardWidget_ChildrenUnionEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemUiDashboardWidget_ChildrenUnionDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemUIDashboardWidget_ChildrenUnion`. */\nexport type SystemUiDashboardWidget_ChildrenUnionEdgeDto = {\n __typename?: 'SystemUIDashboardWidget_ChildrenUnionEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemUiDashboardWidget_ChildrenUnionDto>;\n};\n\n/** Union of types derived from System.UI/Dashboard for Parent association */\nexport type SystemUiDashboard_ParentUnionDto = SystemUiDashboardDto;\n\n/** A connection to `SystemUIDashboard_ParentUnion`. */\nexport type SystemUiDashboard_ParentUnionConnectionDto = {\n __typename?: 'SystemUIDashboard_ParentUnionConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemUiDashboard_ParentUnionEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemUiDashboard_ParentUnionDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemUIDashboard_ParentUnion`. */\nexport type SystemUiDashboard_ParentUnionEdgeDto = {\n __typename?: 'SystemUIDashboard_ParentUnionEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemUiDashboard_ParentUnionDto>;\n};\n\n/** Runtime entities of construction kit type 'System.UI-2.0.1/Page-1' */\nexport type SystemUiPageDto = SystemEntityInterfaceDto & SystemUiuiElementInterfaceDto & {\n __typename?: 'SystemUIPage';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n content: Scalars['String']['output'];\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n};\n\n\n/** Runtime entities of construction kit type 'System.UI-2.0.1/Page-1' */\nexport type SystemUiPageAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.UI-2.0.1/Page-1' */\nexport type SystemUiPageConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.UI-2.0.1/Page-1' */\nexport type SystemUiPageRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.UI-2.0.1/Page-1' */\nexport type SystemUiPageRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.UI-2.0.1/Page-1' */\nexport type SystemUiPageTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `SystemUIPage`. */\nexport type SystemUiPageConnectionDto = {\n __typename?: 'SystemUIPageConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemUiPageEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemUiPageDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemUIPage`. */\nexport type SystemUiPageEdgeDto = {\n __typename?: 'SystemUIPageEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemUiPageDto>;\n};\n\nexport type SystemUiPageInputDto = {\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n content?: InputMaybe<Scalars['String']['input']>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n};\n\nexport type SystemUiPageInputUpdateDto = {\n /** Item to update */\n item: SystemUiPageInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\nexport type SystemUiPageMutationsDto = {\n __typename?: 'SystemUIPageMutations';\n /** Creates new entities of type 'SystemUIPage'. */\n create?: Maybe<Array<Maybe<SystemUiPageDto>>>;\n /** Updates existing entity of type 'SystemUIPage'. */\n update?: Maybe<Array<Maybe<SystemUiPageDto>>>;\n};\n\n\nexport type SystemUiPageMutationsCreateArgsDto = {\n entities: Array<InputMaybe<SystemUiPageInputDto>>;\n};\n\n\nexport type SystemUiPageMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<SystemUiPageInputUpdateDto>>;\n};\n\nexport type SystemUiPageUpdateDto = {\n __typename?: 'SystemUIPageUpdate';\n /** The corresponding item */\n item?: Maybe<SystemUiPageDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemUiPageUpdateMessageDto = {\n __typename?: 'SystemUIPageUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemUiPageUpdateDto>>>;\n};\n\n/** Runtime entities of construction kit type 'System.UI-2.0.1/ProcessDiagram-1' */\nexport type SystemUiProcessDiagramDto = SystemEntityInterfaceDto & SystemUiuiElementInterfaceDto & {\n __typename?: 'SystemUIProcessDiagram';\n animations?: Maybe<Scalars['String']['output']>;\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n canvasBackgroundColor?: Maybe<Scalars['String']['output']>;\n canvasHeight: Scalars['Int']['output'];\n canvasWidth: Scalars['Int']['output'];\n ckTypeId: Scalars['RtCkTypeId']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n connections: Scalars['String']['output'];\n constructionKitType?: Maybe<CkTypeDto>;\n description?: Maybe<Scalars['String']['output']>;\n elements: Scalars['String']['output'];\n name: Scalars['String']['output'];\n primitives?: Maybe<Scalars['String']['output']>;\n propertyBindings?: Maybe<Scalars['String']['output']>;\n refreshInterval?: Maybe<Scalars['Int']['output']>;\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n symbolInstances?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n transformProperties?: Maybe<Scalars['String']['output']>;\n variables?: Maybe<Scalars['String']['output']>;\n version: Scalars['String']['output'];\n};\n\n\n/** Runtime entities of construction kit type 'System.UI-2.0.1/ProcessDiagram-1' */\nexport type SystemUiProcessDiagramAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.UI-2.0.1/ProcessDiagram-1' */\nexport type SystemUiProcessDiagramConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.UI-2.0.1/ProcessDiagram-1' */\nexport type SystemUiProcessDiagramRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.UI-2.0.1/ProcessDiagram-1' */\nexport type SystemUiProcessDiagramRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.UI-2.0.1/ProcessDiagram-1' */\nexport type SystemUiProcessDiagramTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `SystemUIProcessDiagram`. */\nexport type SystemUiProcessDiagramConnectionDto = {\n __typename?: 'SystemUIProcessDiagramConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemUiProcessDiagramEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemUiProcessDiagramDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemUIProcessDiagram`. */\nexport type SystemUiProcessDiagramEdgeDto = {\n __typename?: 'SystemUIProcessDiagramEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemUiProcessDiagramDto>;\n};\n\nexport type SystemUiProcessDiagramInputDto = {\n animations?: InputMaybe<Scalars['String']['input']>;\n canvasBackgroundColor?: InputMaybe<Scalars['String']['input']>;\n canvasHeight?: InputMaybe<Scalars['Int']['input']>;\n canvasWidth?: InputMaybe<Scalars['Int']['input']>;\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n connections?: InputMaybe<Scalars['String']['input']>;\n description?: InputMaybe<Scalars['String']['input']>;\n elements?: InputMaybe<Scalars['String']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n primitives?: InputMaybe<Scalars['String']['input']>;\n propertyBindings?: InputMaybe<Scalars['String']['input']>;\n refreshInterval?: InputMaybe<Scalars['Int']['input']>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n symbolInstances?: InputMaybe<Scalars['String']['input']>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n transformProperties?: InputMaybe<Scalars['String']['input']>;\n variables?: InputMaybe<Scalars['String']['input']>;\n version?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type SystemUiProcessDiagramInputUpdateDto = {\n /** Item to update */\n item: SystemUiProcessDiagramInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\nexport type SystemUiProcessDiagramMutationsDto = {\n __typename?: 'SystemUIProcessDiagramMutations';\n /** Creates new entities of type 'SystemUIProcessDiagram'. */\n create?: Maybe<Array<Maybe<SystemUiProcessDiagramDto>>>;\n /** Updates existing entity of type 'SystemUIProcessDiagram'. */\n update?: Maybe<Array<Maybe<SystemUiProcessDiagramDto>>>;\n};\n\n\nexport type SystemUiProcessDiagramMutationsCreateArgsDto = {\n entities: Array<InputMaybe<SystemUiProcessDiagramInputDto>>;\n};\n\n\nexport type SystemUiProcessDiagramMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<SystemUiProcessDiagramInputUpdateDto>>;\n};\n\nexport type SystemUiProcessDiagramUpdateDto = {\n __typename?: 'SystemUIProcessDiagramUpdate';\n /** The corresponding item */\n item?: Maybe<SystemUiProcessDiagramDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemUiProcessDiagramUpdateMessageDto = {\n __typename?: 'SystemUIProcessDiagramUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemUiProcessDiagramUpdateDto>>>;\n};\n\n/** Runtime entities of construction kit type 'System.UI-2.0.1/StudioRoot-1' */\nexport type SystemUiStudioRootDto = SystemEntityInterfaceDto & SystemUiuiElementInterfaceDto & {\n __typename?: 'SystemUIStudioRoot';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n children?: Maybe<SystemUiStudioTreeItem_ChildrenUnionConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n targetCkTypeId: Scalars['String']['output'];\n targetRtId: Scalars['String']['output'];\n};\n\n\n/** Runtime entities of construction kit type 'System.UI-2.0.1/StudioRoot-1' */\nexport type SystemUiStudioRootAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.UI-2.0.1/StudioRoot-1' */\nexport type SystemUiStudioRootChildrenArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.UI-2.0.1/StudioRoot-1' */\nexport type SystemUiStudioRootConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.UI-2.0.1/StudioRoot-1' */\nexport type SystemUiStudioRootRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.UI-2.0.1/StudioRoot-1' */\nexport type SystemUiStudioRootRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.UI-2.0.1/StudioRoot-1' */\nexport type SystemUiStudioRootTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `SystemUIStudioRoot`. */\nexport type SystemUiStudioRootConnectionDto = {\n __typename?: 'SystemUIStudioRootConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemUiStudioRootEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemUiStudioRootDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemUIStudioRoot`. */\nexport type SystemUiStudioRootEdgeDto = {\n __typename?: 'SystemUIStudioRootEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemUiStudioRootDto>;\n};\n\nexport type SystemUiStudioRootInputDto = {\n children?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n targetCkTypeId?: InputMaybe<Scalars['String']['input']>;\n targetRtId?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type SystemUiStudioRootInputUpdateDto = {\n /** Item to update */\n item: SystemUiStudioRootInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\nexport type SystemUiStudioRootMutationsDto = {\n __typename?: 'SystemUIStudioRootMutations';\n /** Creates new entities of type 'SystemUIStudioRoot'. */\n create?: Maybe<Array<Maybe<SystemUiStudioRootDto>>>;\n /** Updates existing entity of type 'SystemUIStudioRoot'. */\n update?: Maybe<Array<Maybe<SystemUiStudioRootDto>>>;\n};\n\n\nexport type SystemUiStudioRootMutationsCreateArgsDto = {\n entities: Array<InputMaybe<SystemUiStudioRootInputDto>>;\n};\n\n\nexport type SystemUiStudioRootMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<SystemUiStudioRootInputUpdateDto>>;\n};\n\nexport type SystemUiStudioRootUpdateDto = {\n __typename?: 'SystemUIStudioRootUpdate';\n /** The corresponding item */\n item?: Maybe<SystemUiStudioRootDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemUiStudioRootUpdateMessageDto = {\n __typename?: 'SystemUIStudioRootUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemUiStudioRootUpdateDto>>>;\n};\n\n/** Runtime entities of construction kit type 'System.UI-2.0.1/StudioTreeItem-1' */\nexport type SystemUiStudioTreeItemDto = SystemEntityInterfaceDto & SystemUiuiElementInterfaceDto & {\n __typename?: 'SystemUIStudioTreeItem';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n children?: Maybe<SystemUiStudioTreeItem_ChildrenUnionConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n parent?: Maybe<SystemUiStudioTreeItem_ParentUnionConnectionDto>;\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n targetCkTypeId: Scalars['String']['output'];\n targetRoleId: Scalars['String']['output'];\n};\n\n\n/** Runtime entities of construction kit type 'System.UI-2.0.1/StudioTreeItem-1' */\nexport type SystemUiStudioTreeItemAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.UI-2.0.1/StudioTreeItem-1' */\nexport type SystemUiStudioTreeItemChildrenArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.UI-2.0.1/StudioTreeItem-1' */\nexport type SystemUiStudioTreeItemConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.UI-2.0.1/StudioTreeItem-1' */\nexport type SystemUiStudioTreeItemParentArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.UI-2.0.1/StudioTreeItem-1' */\nexport type SystemUiStudioTreeItemRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.UI-2.0.1/StudioTreeItem-1' */\nexport type SystemUiStudioTreeItemRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.UI-2.0.1/StudioTreeItem-1' */\nexport type SystemUiStudioTreeItemTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `SystemUIStudioTreeItem`. */\nexport type SystemUiStudioTreeItemConnectionDto = {\n __typename?: 'SystemUIStudioTreeItemConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemUiStudioTreeItemEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemUiStudioTreeItemDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemUIStudioTreeItem`. */\nexport type SystemUiStudioTreeItemEdgeDto = {\n __typename?: 'SystemUIStudioTreeItemEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemUiStudioTreeItemDto>;\n};\n\nexport type SystemUiStudioTreeItemInputDto = {\n children?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n parent?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n targetCkTypeId?: InputMaybe<Scalars['String']['input']>;\n targetRoleId?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type SystemUiStudioTreeItemInputUpdateDto = {\n /** Item to update */\n item: SystemUiStudioTreeItemInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\nexport type SystemUiStudioTreeItemMutationsDto = {\n __typename?: 'SystemUIStudioTreeItemMutations';\n /** Creates new entities of type 'SystemUIStudioTreeItem'. */\n create?: Maybe<Array<Maybe<SystemUiStudioTreeItemDto>>>;\n /** Updates existing entity of type 'SystemUIStudioTreeItem'. */\n update?: Maybe<Array<Maybe<SystemUiStudioTreeItemDto>>>;\n};\n\n\nexport type SystemUiStudioTreeItemMutationsCreateArgsDto = {\n entities: Array<InputMaybe<SystemUiStudioTreeItemInputDto>>;\n};\n\n\nexport type SystemUiStudioTreeItemMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<SystemUiStudioTreeItemInputUpdateDto>>;\n};\n\nexport type SystemUiStudioTreeItemUpdateDto = {\n __typename?: 'SystemUIStudioTreeItemUpdate';\n /** The corresponding item */\n item?: Maybe<SystemUiStudioTreeItemDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemUiStudioTreeItemUpdateMessageDto = {\n __typename?: 'SystemUIStudioTreeItemUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemUiStudioTreeItemUpdateDto>>>;\n};\n\n/** Union of types derived from System.UI/StudioTreeItem for Children association */\nexport type SystemUiStudioTreeItem_ChildrenUnionDto = SystemUiStudioTreeItemDto;\n\n/** A connection to `SystemUIStudioTreeItem_ChildrenUnion`. */\nexport type SystemUiStudioTreeItem_ChildrenUnionConnectionDto = {\n __typename?: 'SystemUIStudioTreeItem_ChildrenUnionConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemUiStudioTreeItem_ChildrenUnionEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemUiStudioTreeItem_ChildrenUnionDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemUIStudioTreeItem_ChildrenUnion`. */\nexport type SystemUiStudioTreeItem_ChildrenUnionEdgeDto = {\n __typename?: 'SystemUIStudioTreeItem_ChildrenUnionEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemUiStudioTreeItem_ChildrenUnionDto>;\n};\n\n/** Union of types derived from System.UI/StudioTreeItem for Parent association */\nexport type SystemUiStudioTreeItem_ParentUnionDto = SystemUiStudioRootDto | SystemUiStudioTreeItemDto;\n\n/** A connection to `SystemUIStudioTreeItem_ParentUnion`. */\nexport type SystemUiStudioTreeItem_ParentUnionConnectionDto = {\n __typename?: 'SystemUIStudioTreeItem_ParentUnionConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemUiStudioTreeItem_ParentUnionEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemUiStudioTreeItem_ParentUnionDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemUIStudioTreeItem_ParentUnion`. */\nexport type SystemUiStudioTreeItem_ParentUnionEdgeDto = {\n __typename?: 'SystemUIStudioTreeItem_ParentUnionEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemUiStudioTreeItem_ParentUnionDto>;\n};\n\n/** Runtime entities of construction kit type 'System.UI-2.0.1/SymbolDefinition-1' */\nexport type SystemUiSymbolDefinitionDto = SystemEntityInterfaceDto & SystemUiuiElementInterfaceDto & {\n __typename?: 'SystemUISymbolDefinition';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n boundsHeight: Scalars['Int']['output'];\n boundsWidth: Scalars['Int']['output'];\n canvasSizeHeight?: Maybe<Scalars['Int']['output']>;\n canvasSizeWidth?: Maybe<Scalars['Int']['output']>;\n category?: Maybe<Scalars['String']['output']>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n connectionPoints?: Maybe<Scalars['String']['output']>;\n constructionKitType?: Maybe<CkTypeDto>;\n description?: Maybe<Scalars['String']['output']>;\n gridSize?: Maybe<Scalars['Int']['output']>;\n name: Scalars['String']['output'];\n parameters?: Maybe<Scalars['String']['output']>;\n parent?: Maybe<SystemUiSymbolLibrary_ParentUnionConnectionDto>;\n previewImage?: Maybe<Scalars['String']['output']>;\n primitives: Scalars['String']['output'];\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n symbolInstances?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n tags?: Maybe<Scalars['String']['output']>;\n version: Scalars['String']['output'];\n};\n\n\n/** Runtime entities of construction kit type 'System.UI-2.0.1/SymbolDefinition-1' */\nexport type SystemUiSymbolDefinitionAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.UI-2.0.1/SymbolDefinition-1' */\nexport type SystemUiSymbolDefinitionConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.UI-2.0.1/SymbolDefinition-1' */\nexport type SystemUiSymbolDefinitionParentArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.UI-2.0.1/SymbolDefinition-1' */\nexport type SystemUiSymbolDefinitionRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.UI-2.0.1/SymbolDefinition-1' */\nexport type SystemUiSymbolDefinitionRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.UI-2.0.1/SymbolDefinition-1' */\nexport type SystemUiSymbolDefinitionTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `SystemUISymbolDefinition`. */\nexport type SystemUiSymbolDefinitionConnectionDto = {\n __typename?: 'SystemUISymbolDefinitionConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemUiSymbolDefinitionEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemUiSymbolDefinitionDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemUISymbolDefinition`. */\nexport type SystemUiSymbolDefinitionEdgeDto = {\n __typename?: 'SystemUISymbolDefinitionEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemUiSymbolDefinitionDto>;\n};\n\nexport type SystemUiSymbolDefinitionInputDto = {\n boundsHeight?: InputMaybe<Scalars['Int']['input']>;\n boundsWidth?: InputMaybe<Scalars['Int']['input']>;\n canvasSizeHeight?: InputMaybe<Scalars['Int']['input']>;\n canvasSizeWidth?: InputMaybe<Scalars['Int']['input']>;\n category?: InputMaybe<Scalars['String']['input']>;\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n connectionPoints?: InputMaybe<Scalars['String']['input']>;\n description?: InputMaybe<Scalars['String']['input']>;\n gridSize?: InputMaybe<Scalars['Int']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n parameters?: InputMaybe<Scalars['String']['input']>;\n parent?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n previewImage?: InputMaybe<Scalars['String']['input']>;\n primitives?: InputMaybe<Scalars['String']['input']>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n symbolInstances?: InputMaybe<Scalars['String']['input']>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n tags?: InputMaybe<Scalars['String']['input']>;\n version?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type SystemUiSymbolDefinitionInputUpdateDto = {\n /** Item to update */\n item: SystemUiSymbolDefinitionInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\nexport type SystemUiSymbolDefinitionMutationsDto = {\n __typename?: 'SystemUISymbolDefinitionMutations';\n /** Creates new entities of type 'SystemUISymbolDefinition'. */\n create?: Maybe<Array<Maybe<SystemUiSymbolDefinitionDto>>>;\n /** Updates existing entity of type 'SystemUISymbolDefinition'. */\n update?: Maybe<Array<Maybe<SystemUiSymbolDefinitionDto>>>;\n};\n\n\nexport type SystemUiSymbolDefinitionMutationsCreateArgsDto = {\n entities: Array<InputMaybe<SystemUiSymbolDefinitionInputDto>>;\n};\n\n\nexport type SystemUiSymbolDefinitionMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<SystemUiSymbolDefinitionInputUpdateDto>>;\n};\n\nexport type SystemUiSymbolDefinitionUpdateDto = {\n __typename?: 'SystemUISymbolDefinitionUpdate';\n /** The corresponding item */\n item?: Maybe<SystemUiSymbolDefinitionDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemUiSymbolDefinitionUpdateMessageDto = {\n __typename?: 'SystemUISymbolDefinitionUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemUiSymbolDefinitionUpdateDto>>>;\n};\n\n/** Union of types derived from System.UI/SymbolDefinition for Children association */\nexport type SystemUiSymbolDefinition_ChildrenUnionDto = SystemUiSymbolDefinitionDto;\n\n/** A connection to `SystemUISymbolDefinition_ChildrenUnion`. */\nexport type SystemUiSymbolDefinition_ChildrenUnionConnectionDto = {\n __typename?: 'SystemUISymbolDefinition_ChildrenUnionConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemUiSymbolDefinition_ChildrenUnionEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemUiSymbolDefinition_ChildrenUnionDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemUISymbolDefinition_ChildrenUnion`. */\nexport type SystemUiSymbolDefinition_ChildrenUnionEdgeDto = {\n __typename?: 'SystemUISymbolDefinition_ChildrenUnionEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemUiSymbolDefinition_ChildrenUnionDto>;\n};\n\n/** Runtime entities of construction kit type 'System.UI-2.0.1/SymbolLibrary-1' */\nexport type SystemUiSymbolLibraryDto = SystemEntityInterfaceDto & SystemUiuiElementInterfaceDto & {\n __typename?: 'SystemUISymbolLibrary';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n author?: Maybe<Scalars['String']['output']>;\n children?: Maybe<SystemUiSymbolDefinition_ChildrenUnionConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n description?: Maybe<Scalars['String']['output']>;\n isBuiltIn?: Maybe<Scalars['Boolean']['output']>;\n isReadOnly?: Maybe<Scalars['Boolean']['output']>;\n name: Scalars['String']['output'];\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n version: Scalars['String']['output'];\n};\n\n\n/** Runtime entities of construction kit type 'System.UI-2.0.1/SymbolLibrary-1' */\nexport type SystemUiSymbolLibraryAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.UI-2.0.1/SymbolLibrary-1' */\nexport type SystemUiSymbolLibraryChildrenArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.UI-2.0.1/SymbolLibrary-1' */\nexport type SystemUiSymbolLibraryConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.UI-2.0.1/SymbolLibrary-1' */\nexport type SystemUiSymbolLibraryRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.UI-2.0.1/SymbolLibrary-1' */\nexport type SystemUiSymbolLibraryRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.UI-2.0.1/SymbolLibrary-1' */\nexport type SystemUiSymbolLibraryTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `SystemUISymbolLibrary`. */\nexport type SystemUiSymbolLibraryConnectionDto = {\n __typename?: 'SystemUISymbolLibraryConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemUiSymbolLibraryEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemUiSymbolLibraryDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemUISymbolLibrary`. */\nexport type SystemUiSymbolLibraryEdgeDto = {\n __typename?: 'SystemUISymbolLibraryEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemUiSymbolLibraryDto>;\n};\n\nexport type SystemUiSymbolLibraryInputDto = {\n author?: InputMaybe<Scalars['String']['input']>;\n children?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n configuredBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n description?: InputMaybe<Scalars['String']['input']>;\n isBuiltIn?: InputMaybe<Scalars['Boolean']['input']>;\n isReadOnly?: InputMaybe<Scalars['Boolean']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n relatesFrom?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n relatesTo?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n rtBlueprintAppliedAt?: InputMaybe<Scalars['DateTime']['input']>;\n rtBlueprintLocked?: InputMaybe<Scalars['Boolean']['input']>;\n rtBlueprintSource?: InputMaybe<Scalars['String']['input']>;\n rtWellKnownName?: InputMaybe<Scalars['String']['input']>;\n taggedBy?: InputMaybe<Array<InputMaybe<RtAssociationInputDto>>>;\n version?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type SystemUiSymbolLibraryInputUpdateDto = {\n /** Item to update */\n item: SystemUiSymbolLibraryInputDto;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n};\n\nexport type SystemUiSymbolLibraryMutationsDto = {\n __typename?: 'SystemUISymbolLibraryMutations';\n /** Creates new entities of type 'SystemUISymbolLibrary'. */\n create?: Maybe<Array<Maybe<SystemUiSymbolLibraryDto>>>;\n /** Updates existing entity of type 'SystemUISymbolLibrary'. */\n update?: Maybe<Array<Maybe<SystemUiSymbolLibraryDto>>>;\n};\n\n\nexport type SystemUiSymbolLibraryMutationsCreateArgsDto = {\n entities: Array<InputMaybe<SystemUiSymbolLibraryInputDto>>;\n};\n\n\nexport type SystemUiSymbolLibraryMutationsUpdateArgsDto = {\n entities: Array<InputMaybe<SystemUiSymbolLibraryInputUpdateDto>>;\n};\n\nexport type SystemUiSymbolLibraryUpdateDto = {\n __typename?: 'SystemUISymbolLibraryUpdate';\n /** The corresponding item */\n item?: Maybe<SystemUiSymbolLibraryDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemUiSymbolLibraryUpdateMessageDto = {\n __typename?: 'SystemUISymbolLibraryUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemUiSymbolLibraryUpdateDto>>>;\n};\n\n/** Union of types derived from System.UI/SymbolLibrary for Parent association */\nexport type SystemUiSymbolLibrary_ParentUnionDto = SystemUiSymbolLibraryDto;\n\n/** A connection to `SystemUISymbolLibrary_ParentUnion`. */\nexport type SystemUiSymbolLibrary_ParentUnionConnectionDto = {\n __typename?: 'SystemUISymbolLibrary_ParentUnionConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemUiSymbolLibrary_ParentUnionEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemUiSymbolLibrary_ParentUnionDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemUISymbolLibrary_ParentUnion`. */\nexport type SystemUiSymbolLibrary_ParentUnionEdgeDto = {\n __typename?: 'SystemUISymbolLibrary_ParentUnionEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemUiSymbolLibrary_ParentUnionDto>;\n};\n\n/** Runtime entities of construction kit type 'System.UI-2.0.1/UIElement-1' */\nexport type SystemUiuiElementDto = SystemEntityInterfaceDto & {\n __typename?: 'SystemUIUIElement';\n associations?: Maybe<RtEntityGenericDtoConnectionDto>;\n ckTypeId: Scalars['RtCkTypeId']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n constructionKitType?: Maybe<CkTypeDto>;\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n};\n\n\n/** Runtime entities of construction kit type 'System.UI-2.0.1/UIElement-1' */\nexport type SystemUiuiElementAssociationsArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckId: Scalars['String']['input'];\n direction: GraphDirectionDto;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n includeIndirect?: InputMaybe<Scalars['Boolean']['input']>;\n roleId: Scalars['String']['input'];\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.UI-2.0.1/UIElement-1' */\nexport type SystemUiuiElementConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.UI-2.0.1/UIElement-1' */\nexport type SystemUiuiElementRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.UI-2.0.1/UIElement-1' */\nexport type SystemUiuiElementRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Runtime entities of construction kit type 'System.UI-2.0.1/UIElement-1' */\nexport type SystemUiuiElementTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n/** A connection to `SystemUIUIElement`. */\nexport type SystemUiuiElementConnectionDto = {\n __typename?: 'SystemUIUIElementConnection';\n /** Result of aggregating the items of the result set. */\n aggregation?: Maybe<AggregationDto>;\n /** Information to aid in pagination. */\n edges?: Maybe<Array<Maybe<SystemUiuiElementEdgeDto>>>;\n /** Result of aggregating the items by fields. */\n fieldAggregations?: Maybe<Array<Maybe<FieldAggregationDto>>>;\n /** A list of all of the objects returned in the connection. This is a convenience field provided for quickly exploring the API; rather than querying for \"{ edges { node } }\" when no edge data is needed, this field can be used instead. Note that when clients like Relay need to fetch the \"cursor\" field on the edge to enable efficient pagination, this shortcut cannot be used, and the full \"{ edges { node } } \" version should be used instead. */\n items?: Maybe<Array<Maybe<SystemUiuiElementDto>>>;\n /** Information to aid in pagination. */\n pageInfo?: Maybe<PageInfoDto>;\n /** A count of the total number of objects in this connection, ignoring pagination. This allows a client to fetch the first five objects by passing \"5\" as the argument to `first`, then fetch the total count so it could display \"5 of 83\", for example. In cases where we employ infinite scrolling or don't have an exact count of entries, this field will return `null`. */\n totalCount?: Maybe<Scalars['Int']['output']>;\n};\n\n/** An edge in a connection from an object to another object of type `SystemUIUIElement`. */\nexport type SystemUiuiElementEdgeDto = {\n __typename?: 'SystemUIUIElementEdge';\n /** A cursor for use in pagination */\n cursor: Scalars['String']['output'];\n /** The item at the end of the edge */\n node?: Maybe<SystemUiuiElementDto>;\n};\n\n/** Interface for runtime entities of construction kit type 'System.UI-2.0.1/UIElement-1' */\nexport type SystemUiuiElementInterfaceDto = {\n ckTypeId: Scalars['RtCkTypeId']['output'];\n configuredBy?: Maybe<SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto>;\n relatesFrom?: Maybe<SystemEntity_RelatesFromUnionConnectionDto>;\n relatesTo?: Maybe<SystemEntity_RelatesToUnionConnectionDto>;\n rtBlueprintAppliedAt?: Maybe<Scalars['DateTime']['output']>;\n rtBlueprintLocked?: Maybe<Scalars['Boolean']['output']>;\n rtBlueprintSource?: Maybe<Scalars['String']['output']>;\n rtChangedDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtCreationDateTime?: Maybe<Scalars['DateTime']['output']>;\n rtId: Scalars['OctoObjectId']['output'];\n rtVersion?: Maybe<Scalars['ULong']['output']>;\n rtWellKnownName?: Maybe<Scalars['String']['output']>;\n taggedBy?: Maybe<SystemCommunicationTag_TaggedByUnionConnectionDto>;\n};\n\n\n/** Interface for runtime entities of construction kit type 'System.UI-2.0.1/UIElement-1' */\nexport type SystemUiuiElementInterfaceConfiguredByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Interface for runtime entities of construction kit type 'System.UI-2.0.1/UIElement-1' */\nexport type SystemUiuiElementInterfaceRelatesFromArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Interface for runtime entities of construction kit type 'System.UI-2.0.1/UIElement-1' */\nexport type SystemUiuiElementInterfaceRelatesToArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\n\n/** Interface for runtime entities of construction kit type 'System.UI-2.0.1/UIElement-1' */\nexport type SystemUiuiElementInterfaceTaggedByArgsDto = {\n after?: InputMaybe<Scalars['String']['input']>;\n aggregations?: InputMaybe<ResultAggregationInputDto>;\n ckTypeIds: Array<Scalars['String']['input']>;\n fieldFilter?: InputMaybe<Array<InputMaybe<FieldFilterDto>>>;\n first?: InputMaybe<Scalars['Int']['input']>;\n rtId?: InputMaybe<Scalars['OctoObjectId']['input']>;\n rtIds?: InputMaybe<Array<InputMaybe<Scalars['OctoObjectId']['input']>>>;\n searchFilter?: InputMaybe<SearchFilterDto>;\n sortOrder?: InputMaybe<Array<InputMaybe<SortDto>>>;\n};\n\nexport type SystemUiuiElementUpdateDto = {\n __typename?: 'SystemUIUIElementUpdate';\n /** The corresponding item */\n item?: Maybe<SystemUiuiElementDto>;\n updateState?: Maybe<UpdateTypeDto>;\n};\n\nexport type SystemUiuiElementUpdateMessageDto = {\n __typename?: 'SystemUIUIElementUpdateMessage';\n /** The corresponding items */\n items?: Maybe<Array<Maybe<SystemUiuiElementUpdateDto>>>;\n};\n\n/** Enum of valid update types */\nexport enum UpdateTypeDto {\n DeleteDto = 'DELETE',\n InsertDto = 'INSERT',\n ReplaceDto = 'REPLACE',\n UndefinedDto = 'UNDEFINED',\n UpdateDto = 'UPDATE'\n}\n\n/** Aggregation result of items */\nexport type AggregationDto = {\n __typename?: 'aggregation';\n /** The average value of the given attribute paths. */\n avgStatistics?: Maybe<Array<Maybe<StatisticsDto>>>;\n /** The count of entities in the group. */\n count: Scalars['Int']['output'];\n /** The count of value of the given attribute paths that are not null. */\n countStatistics?: Maybe<Array<Maybe<StatisticsDto>>>;\n /** The maximum value of the given attribute paths. */\n maxStatistics?: Maybe<Array<Maybe<StatisticsDto>>>;\n /** The minimum value of the given attribute paths. */\n minStatistics?: Maybe<Array<Maybe<StatisticsDto>>>;\n /** The sum value of the given attribute paths. */\n sumStatistics?: Maybe<Array<Maybe<StatisticsDto>>>;\n};\n\n/** Field aggregation result of items */\nexport type FieldAggregationDto = {\n __typename?: 'fieldAggregation';\n /** The average value of the given attribute paths. */\n avgStatistics?: Maybe<Array<Maybe<StatisticsDto>>>;\n /** The count of entities in the group. */\n count: Scalars['Int']['output'];\n /** The count of value of the given attribute paths that are not null. */\n countStatistics?: Maybe<Array<Maybe<StatisticsDto>>>;\n /** A list of attributes paths the items are grouped by. */\n groupByAttributePaths: Array<Maybe<Scalars['String']['output']>>;\n /** The key value of the group. */\n keys: Array<Maybe<Scalars['SimpleScalar']['output']>>;\n /** The maximum value of the given attribute paths. */\n maxStatistics?: Maybe<Array<Maybe<StatisticsDto>>>;\n /** The minimum value of the given attribute paths. */\n minStatistics?: Maybe<Array<Maybe<StatisticsDto>>>;\n /** The sum value of the given attribute paths. */\n sumStatistics?: Maybe<Array<Maybe<StatisticsDto>>>;\n};\n\n/** Statistics of items result */\nexport type StatisticsDto = {\n __typename?: 'statistics';\n /** Attribute path of the statistic */\n attributePath?: Maybe<Scalars['String']['output']>;\n /** Statistic value */\n value?: Maybe<Scalars['SimpleScalar']['output']>;\n};\n","\n export type PossibleTypesResultData = {\n \"possibleTypes\": {\n \"BasicAsset_RelatesFromUnion\": [\n \"BasicAsset\",\n \"BasicCity\",\n \"BasicCountry\",\n \"BasicDistrict\",\n \"BasicEmployee\",\n \"BasicState\",\n \"BasicTree\",\n \"BasicTreeNode\",\n \"OctoSdkDemoCustomer\",\n \"OctoSdkDemoMeteringPoint\",\n \"OctoSdkDemoOperatingFacility\",\n \"SystemAggregationRtQuery\",\n \"SystemAutoIncrement\",\n \"SystemBotAttributeAggregateConfiguration\",\n \"SystemBotFixup\",\n \"SystemBotServiceHook\",\n \"SystemCommunicationDataPipeline\",\n \"SystemCommunicationDataPipelineTrigger\",\n \"SystemCommunicationEMailSenderConfiguration\",\n \"SystemCommunicationEdgeAdapter\",\n \"SystemCommunicationEdgePipeline\",\n \"SystemCommunicationEnergyCommunityConfiguration\",\n \"SystemCommunicationMeshAdapter\",\n \"SystemCommunicationMeshPipeline\",\n \"SystemCommunicationPipelineExecution\",\n \"SystemCommunicationPipelineStatistics\",\n \"SystemCommunicationPool\",\n \"SystemCommunicationSapConfiguration\",\n \"SystemCommunicationTag\",\n \"SystemGroupingAggregationRtQuery\",\n \"SystemIdentityApiResource\",\n \"SystemIdentityApiScope\",\n \"SystemIdentityAzureEntraIdIdentityProvider\",\n \"SystemIdentityClient\",\n \"SystemIdentityFacebookIdentityProvider\",\n \"SystemIdentityGoogleIdentityProvider\",\n \"SystemIdentityIdentityResource\",\n \"SystemIdentityMailNotificationConfiguration\",\n \"SystemIdentityMicrosoftAdIdentityProvider\",\n \"SystemIdentityMicrosoftIdentityProvider\",\n \"SystemIdentityOpenLdapIdentityProvider\",\n \"SystemIdentityPermission\",\n \"SystemIdentityPermissionRole\",\n \"SystemIdentityPersistedGrant\",\n \"SystemIdentityRole\",\n \"SystemIdentityUser\",\n \"SystemMigrationHistory\",\n \"SystemNotificationCssTemplateConfiguration\",\n \"SystemNotificationEvent\",\n \"SystemNotificationNotificationTemplate\",\n \"SystemNotificationStatefulEvent\",\n \"SystemQuery\",\n \"SystemReportingConnectionInfo\",\n \"SystemReportingFileSystemItem\",\n \"SystemReportingFolder\",\n \"SystemReportingFolderRoot\",\n \"SystemSimpleRtQuery\",\n \"SystemTenant\",\n \"SystemTenantConfiguration\",\n \"SystemTenantModeConfiguration\",\n \"SystemUIDashboard\",\n \"SystemUIDashboardWidget\",\n \"SystemUIPage\",\n \"SystemUIProcessDiagram\",\n \"SystemUIStudioRoot\",\n \"SystemUIStudioTreeItem\",\n \"SystemUISymbolDefinition\",\n \"SystemUISymbolLibrary\"\n ],\n \"BasicDocumentInterface\": [],\n \"BasicNamedEntityInterface\": [\n \"BasicTree\"\n ],\n \"BasicTreeNode_ChildrenUnion\": [\n \"BasicAsset\",\n \"BasicCity\",\n \"BasicCountry\",\n \"BasicDistrict\",\n \"BasicState\",\n \"BasicTreeNode\",\n \"OctoSdkDemoMeteringPoint\",\n \"OctoSdkDemoOperatingFacility\"\n ],\n \"BasicTreeNode_RelatesToUnion\": [\n \"BasicAsset\",\n \"BasicCity\",\n \"BasicCountry\",\n \"BasicDistrict\",\n \"BasicEmployee\",\n \"BasicState\",\n \"BasicTree\",\n \"BasicTreeNode\",\n \"OctoSdkDemoCustomer\",\n \"OctoSdkDemoMeteringPoint\",\n \"OctoSdkDemoOperatingFacility\",\n \"SystemAggregationRtQuery\",\n \"SystemAutoIncrement\",\n \"SystemBotAttributeAggregateConfiguration\",\n \"SystemBotFixup\",\n \"SystemBotServiceHook\",\n \"SystemCommunicationDataPipeline\",\n \"SystemCommunicationDataPipelineTrigger\",\n \"SystemCommunicationEMailSenderConfiguration\",\n \"SystemCommunicationEdgeAdapter\",\n \"SystemCommunicationEdgePipeline\",\n \"SystemCommunicationEnergyCommunityConfiguration\",\n \"SystemCommunicationMeshAdapter\",\n \"SystemCommunicationMeshPipeline\",\n \"SystemCommunicationPipelineExecution\",\n \"SystemCommunicationPipelineStatistics\",\n \"SystemCommunicationPool\",\n \"SystemCommunicationSapConfiguration\",\n \"SystemCommunicationTag\",\n \"SystemGroupingAggregationRtQuery\",\n \"SystemIdentityApiResource\",\n \"SystemIdentityApiScope\",\n \"SystemIdentityAzureEntraIdIdentityProvider\",\n \"SystemIdentityClient\",\n \"SystemIdentityFacebookIdentityProvider\",\n \"SystemIdentityGoogleIdentityProvider\",\n \"SystemIdentityIdentityResource\",\n \"SystemIdentityMailNotificationConfiguration\",\n \"SystemIdentityMicrosoftAdIdentityProvider\",\n \"SystemIdentityMicrosoftIdentityProvider\",\n \"SystemIdentityOpenLdapIdentityProvider\",\n \"SystemIdentityPermission\",\n \"SystemIdentityPermissionRole\",\n \"SystemIdentityPersistedGrant\",\n \"SystemIdentityRole\",\n \"SystemIdentityUser\",\n \"SystemMigrationHistory\",\n \"SystemNotificationCssTemplateConfiguration\",\n \"SystemNotificationEvent\",\n \"SystemNotificationNotificationTemplate\",\n \"SystemNotificationStatefulEvent\",\n \"SystemQuery\",\n \"SystemReportingConnectionInfo\",\n \"SystemReportingFileSystemItem\",\n \"SystemReportingFolder\",\n \"SystemReportingFolderRoot\",\n \"SystemSimpleRtQuery\",\n \"SystemTenant\",\n \"SystemTenantConfiguration\",\n \"SystemTenantModeConfiguration\",\n \"SystemUIDashboard\",\n \"SystemUIDashboardWidget\",\n \"SystemUIPage\",\n \"SystemUIProcessDiagram\",\n \"SystemUIStudioRoot\",\n \"SystemUIStudioTreeItem\",\n \"SystemUISymbolDefinition\",\n \"SystemUISymbolLibrary\"\n ],\n \"BasicTree_ParentUnion\": [\n \"BasicAsset\",\n \"BasicCity\",\n \"BasicCountry\",\n \"BasicDistrict\",\n \"BasicState\",\n \"BasicTree\",\n \"BasicTreeNode\",\n \"OctoSdkDemoMeteringPoint\",\n \"OctoSdkDemoOperatingFacility\"\n ],\n \"OctoSdkDemoCustomer_OwnedByUnion\": [\n \"OctoSdkDemoCustomer\"\n ],\n \"OctoSdkDemoOperatingFacility_OwnsUnion\": [\n \"OctoSdkDemoOperatingFacility\"\n ],\n \"RtQueryRow\": [\n \"RtAggregationQueryRow\",\n \"RtGroupingAggregationQueryRow\",\n \"RtSimpleQueryRow\"\n ],\n \"SystemBotAttributeAggregateConfiguration_ConfiguredByUnion\": [\n \"SystemBotAttributeAggregateConfiguration\"\n ],\n \"SystemCommunicationAdapterInterface\": [\n \"SystemCommunicationEdgeAdapter\",\n \"SystemCommunicationMeshAdapter\"\n ],\n \"SystemCommunicationAdapter_AdapterExecutionsUnion\": [\n \"SystemCommunicationEdgeAdapter\",\n \"SystemCommunicationMeshAdapter\"\n ],\n \"SystemCommunicationAdapter_ExecutedByUnion\": [\n \"SystemCommunicationEdgeAdapter\",\n \"SystemCommunicationMeshAdapter\"\n ],\n \"SystemCommunicationAdapter_ManagesUnion\": [\n \"SystemCommunicationEdgeAdapter\",\n \"SystemCommunicationMeshAdapter\"\n ],\n \"SystemCommunicationDataPipelineTrigger_TriggeredByUnion\": [\n \"SystemCommunicationDataPipelineTrigger\"\n ],\n \"SystemCommunicationDataPipeline_ParentUnion\": [\n \"SystemCommunicationDataPipeline\"\n ],\n \"SystemCommunicationDeployableEntityInterface\": [\n \"SystemCommunicationAdapter\",\n \"SystemCommunicationDataPipelineTrigger\",\n \"SystemCommunicationEdgeAdapter\",\n \"SystemCommunicationEdgePipeline\",\n \"SystemCommunicationMeshAdapter\",\n \"SystemCommunicationMeshPipeline\",\n \"SystemCommunicationPipeline\",\n \"SystemCommunicationPool\"\n ],\n \"SystemCommunicationMeshPipeline_TriggersUnion\": [\n \"SystemCommunicationMeshPipeline\"\n ],\n \"SystemCommunicationPipelineExecution_ExecutedPipelineUnion\": [\n \"SystemCommunicationPipelineExecution\"\n ],\n \"SystemCommunicationPipelineExecution_ExecutingAdapterUnion\": [\n \"SystemCommunicationPipelineExecution\"\n ],\n \"SystemCommunicationPipelineInterface\": [\n \"SystemCommunicationEdgePipeline\",\n \"SystemCommunicationMeshPipeline\"\n ],\n \"SystemCommunicationPipelineStatistics_StatisticsForPipelineUnion\": [\n \"SystemCommunicationPipelineStatistics\"\n ],\n \"SystemCommunicationPipeline_ChildrenUnion\": [\n \"SystemCommunicationEdgePipeline\",\n \"SystemCommunicationMeshPipeline\"\n ],\n \"SystemCommunicationPipeline_ExecutesUnion\": [\n \"SystemCommunicationEdgePipeline\",\n \"SystemCommunicationMeshPipeline\"\n ],\n \"SystemCommunicationPipeline_PipelineExecutionsUnion\": [\n \"SystemCommunicationEdgePipeline\",\n \"SystemCommunicationMeshPipeline\"\n ],\n \"SystemCommunicationPipeline_PipelineStatisticsUnion\": [\n \"SystemCommunicationEdgePipeline\",\n \"SystemCommunicationMeshPipeline\"\n ],\n \"SystemCommunicationPipeline_UsedByUnion\": [\n \"SystemCommunicationEdgePipeline\",\n \"SystemCommunicationMeshPipeline\"\n ],\n \"SystemCommunicationPool_ManagedByUnion\": [\n \"SystemCommunicationPool\"\n ],\n \"SystemCommunicationTag_TaggedByUnion\": [\n \"SystemCommunicationTag\"\n ],\n \"SystemConfigurationInterface\": [\n \"SystemCommunicationEMailSenderConfiguration\",\n \"SystemCommunicationEnergyCommunityConfiguration\",\n \"SystemCommunicationSapConfiguration\",\n \"SystemIdentityMailNotificationConfiguration\",\n \"SystemNotificationCssTemplateConfiguration\",\n \"SystemReportingConnectionInfo\",\n \"SystemTenantConfiguration\",\n \"SystemTenantModeConfiguration\"\n ],\n \"SystemConfiguration_IsUsingUnion\": [\n \"SystemCommunicationEMailSenderConfiguration\",\n \"SystemCommunicationEnergyCommunityConfiguration\",\n \"SystemCommunicationSapConfiguration\",\n \"SystemIdentityMailNotificationConfiguration\",\n \"SystemNotificationCssTemplateConfiguration\",\n \"SystemReportingConnectionInfo\",\n \"SystemTenantConfiguration\",\n \"SystemTenantModeConfiguration\"\n ],\n \"SystemEntityInterface\": [\n \"BasicDocument\",\n \"BasicEmployee\",\n \"BasicNamedEntity\",\n \"BasicTree\",\n \"OctoSdkDemoCustomer\",\n \"SystemAggregationRtQuery\",\n \"SystemAutoIncrement\",\n \"SystemBotAttributeAggregateConfiguration\",\n \"SystemBotFixup\",\n \"SystemBotServiceHook\",\n \"SystemCommunicationAdapter\",\n \"SystemCommunicationDataPipeline\",\n \"SystemCommunicationDataPipelineTrigger\",\n \"SystemCommunicationDeployableEntity\",\n \"SystemCommunicationEMailSenderConfiguration\",\n \"SystemCommunicationEdgeAdapter\",\n \"SystemCommunicationEdgePipeline\",\n \"SystemCommunicationEnergyCommunityConfiguration\",\n \"SystemCommunicationMeshAdapter\",\n \"SystemCommunicationMeshPipeline\",\n \"SystemCommunicationPipeline\",\n \"SystemCommunicationPipelineExecution\",\n \"SystemCommunicationPipelineStatistics\",\n \"SystemCommunicationPool\",\n \"SystemCommunicationSapConfiguration\",\n \"SystemCommunicationTag\",\n \"SystemConfiguration\",\n \"SystemGroupingAggregationRtQuery\",\n \"SystemIdentityApiResource\",\n \"SystemIdentityApiScope\",\n \"SystemIdentityAzureEntraIdIdentityProvider\",\n \"SystemIdentityClient\",\n \"SystemIdentityFacebookIdentityProvider\",\n \"SystemIdentityGoogleIdentityProvider\",\n \"SystemIdentityIdentityProvider\",\n \"SystemIdentityIdentityResource\",\n \"SystemIdentityMailNotificationConfiguration\",\n \"SystemIdentityMicrosoftAdIdentityProvider\",\n \"SystemIdentityMicrosoftIdentityProvider\",\n \"SystemIdentityOpenLdapIdentityProvider\",\n \"SystemIdentityPermission\",\n \"SystemIdentityPermissionRole\",\n \"SystemIdentityPersistedGrant\",\n \"SystemIdentityResource\",\n \"SystemIdentityRole\",\n \"SystemIdentityUser\",\n \"SystemMigrationHistory\",\n \"SystemNotificationCssTemplateConfiguration\",\n \"SystemNotificationEvent\",\n \"SystemNotificationNotificationTemplate\",\n \"SystemNotificationStatefulEvent\",\n \"SystemPersistentQuery\",\n \"SystemQuery\",\n \"SystemReportingConnectionInfo\",\n \"SystemReportingFileSystemContainer\",\n \"SystemReportingFileSystemEntity\",\n \"SystemReportingFileSystemItem\",\n \"SystemReportingFolder\",\n \"SystemReportingFolderRoot\",\n \"SystemSimpleRtQuery\",\n \"SystemTenant\",\n \"SystemTenantConfiguration\",\n \"SystemTenantModeConfiguration\",\n \"SystemUIDashboard\",\n \"SystemUIDashboardWidget\",\n \"SystemUIPage\",\n \"SystemUIProcessDiagram\",\n \"SystemUIStudioRoot\",\n \"SystemUIStudioTreeItem\",\n \"SystemUISymbolDefinition\",\n \"SystemUISymbolLibrary\",\n \"SystemUIUIElement\"\n ],\n \"SystemEntity_ConfiguresUnion\": [\n \"BasicAsset\",\n \"BasicCity\",\n \"BasicCountry\",\n \"BasicDistrict\",\n \"BasicEmployee\",\n \"BasicState\",\n \"BasicTree\",\n \"BasicTreeNode\",\n \"OctoSdkDemoCustomer\",\n \"OctoSdkDemoMeteringPoint\",\n \"OctoSdkDemoOperatingFacility\",\n \"SystemAggregationRtQuery\",\n \"SystemAutoIncrement\",\n \"SystemBotAttributeAggregateConfiguration\",\n \"SystemBotFixup\",\n \"SystemBotServiceHook\",\n \"SystemCommunicationDataPipeline\",\n \"SystemCommunicationDataPipelineTrigger\",\n \"SystemCommunicationEMailSenderConfiguration\",\n \"SystemCommunicationEdgeAdapter\",\n \"SystemCommunicationEdgePipeline\",\n \"SystemCommunicationEnergyCommunityConfiguration\",\n \"SystemCommunicationMeshAdapter\",\n \"SystemCommunicationMeshPipeline\",\n \"SystemCommunicationPipelineExecution\",\n \"SystemCommunicationPipelineStatistics\",\n \"SystemCommunicationPool\",\n \"SystemCommunicationSapConfiguration\",\n \"SystemCommunicationTag\",\n \"SystemGroupingAggregationRtQuery\",\n \"SystemIdentityApiResource\",\n \"SystemIdentityApiScope\",\n \"SystemIdentityAzureEntraIdIdentityProvider\",\n \"SystemIdentityClient\",\n \"SystemIdentityFacebookIdentityProvider\",\n \"SystemIdentityGoogleIdentityProvider\",\n \"SystemIdentityIdentityResource\",\n \"SystemIdentityMailNotificationConfiguration\",\n \"SystemIdentityMicrosoftAdIdentityProvider\",\n \"SystemIdentityMicrosoftIdentityProvider\",\n \"SystemIdentityOpenLdapIdentityProvider\",\n \"SystemIdentityPermission\",\n \"SystemIdentityPermissionRole\",\n \"SystemIdentityPersistedGrant\",\n \"SystemIdentityRole\",\n \"SystemIdentityUser\",\n \"SystemMigrationHistory\",\n \"SystemNotificationCssTemplateConfiguration\",\n \"SystemNotificationEvent\",\n \"SystemNotificationNotificationTemplate\",\n \"SystemNotificationStatefulEvent\",\n \"SystemQuery\",\n \"SystemReportingConnectionInfo\",\n \"SystemReportingFileSystemItem\",\n \"SystemReportingFolder\",\n \"SystemReportingFolderRoot\",\n \"SystemSimpleRtQuery\",\n \"SystemTenant\",\n \"SystemTenantConfiguration\",\n \"SystemTenantModeConfiguration\",\n \"SystemUIDashboard\",\n \"SystemUIDashboardWidget\",\n \"SystemUIPage\",\n \"SystemUIProcessDiagram\",\n \"SystemUIStudioRoot\",\n \"SystemUIStudioTreeItem\",\n \"SystemUISymbolDefinition\",\n \"SystemUISymbolLibrary\"\n ],\n \"SystemEntity_IsTaggingUnion\": [\n \"BasicAsset\",\n \"BasicCity\",\n \"BasicCountry\",\n \"BasicDistrict\",\n \"BasicEmployee\",\n \"BasicState\",\n \"BasicTree\",\n \"BasicTreeNode\",\n \"OctoSdkDemoCustomer\",\n \"OctoSdkDemoMeteringPoint\",\n \"OctoSdkDemoOperatingFacility\",\n \"SystemAggregationRtQuery\",\n \"SystemAutoIncrement\",\n \"SystemBotAttributeAggregateConfiguration\",\n \"SystemBotFixup\",\n \"SystemBotServiceHook\",\n \"SystemCommunicationDataPipeline\",\n \"SystemCommunicationDataPipelineTrigger\",\n \"SystemCommunicationEMailSenderConfiguration\",\n \"SystemCommunicationEdgeAdapter\",\n \"SystemCommunicationEdgePipeline\",\n \"SystemCommunicationEnergyCommunityConfiguration\",\n \"SystemCommunicationMeshAdapter\",\n \"SystemCommunicationMeshPipeline\",\n \"SystemCommunicationPipelineExecution\",\n \"SystemCommunicationPipelineStatistics\",\n \"SystemCommunicationPool\",\n \"SystemCommunicationSapConfiguration\",\n \"SystemCommunicationTag\",\n \"SystemGroupingAggregationRtQuery\",\n \"SystemIdentityApiResource\",\n \"SystemIdentityApiScope\",\n \"SystemIdentityAzureEntraIdIdentityProvider\",\n \"SystemIdentityClient\",\n \"SystemIdentityFacebookIdentityProvider\",\n \"SystemIdentityGoogleIdentityProvider\",\n \"SystemIdentityIdentityResource\",\n \"SystemIdentityMailNotificationConfiguration\",\n \"SystemIdentityMicrosoftAdIdentityProvider\",\n \"SystemIdentityMicrosoftIdentityProvider\",\n \"SystemIdentityOpenLdapIdentityProvider\",\n \"SystemIdentityPermission\",\n \"SystemIdentityPermissionRole\",\n \"SystemIdentityPersistedGrant\",\n \"SystemIdentityRole\",\n \"SystemIdentityUser\",\n \"SystemMigrationHistory\",\n \"SystemNotificationCssTemplateConfiguration\",\n \"SystemNotificationEvent\",\n \"SystemNotificationNotificationTemplate\",\n \"SystemNotificationStatefulEvent\",\n \"SystemQuery\",\n \"SystemReportingConnectionInfo\",\n \"SystemReportingFileSystemItem\",\n \"SystemReportingFolder\",\n \"SystemReportingFolderRoot\",\n \"SystemSimpleRtQuery\",\n \"SystemTenant\",\n \"SystemTenantConfiguration\",\n \"SystemTenantModeConfiguration\",\n \"SystemUIDashboard\",\n \"SystemUIDashboardWidget\",\n \"SystemUIPage\",\n \"SystemUIProcessDiagram\",\n \"SystemUIStudioRoot\",\n \"SystemUIStudioTreeItem\",\n \"SystemUISymbolDefinition\",\n \"SystemUISymbolLibrary\"\n ],\n \"SystemEntity_RelatesFromUnion\": [\n \"BasicAsset\",\n \"BasicCity\",\n \"BasicCountry\",\n \"BasicDistrict\",\n \"BasicEmployee\",\n \"BasicState\",\n \"BasicTree\",\n \"BasicTreeNode\",\n \"OctoSdkDemoCustomer\",\n \"OctoSdkDemoMeteringPoint\",\n \"OctoSdkDemoOperatingFacility\",\n \"SystemAggregationRtQuery\",\n \"SystemAutoIncrement\",\n \"SystemBotAttributeAggregateConfiguration\",\n \"SystemBotFixup\",\n \"SystemBotServiceHook\",\n \"SystemCommunicationDataPipeline\",\n \"SystemCommunicationDataPipelineTrigger\",\n \"SystemCommunicationEMailSenderConfiguration\",\n \"SystemCommunicationEdgeAdapter\",\n \"SystemCommunicationEdgePipeline\",\n \"SystemCommunicationEnergyCommunityConfiguration\",\n \"SystemCommunicationMeshAdapter\",\n \"SystemCommunicationMeshPipeline\",\n \"SystemCommunicationPipelineExecution\",\n \"SystemCommunicationPipelineStatistics\",\n \"SystemCommunicationPool\",\n \"SystemCommunicationSapConfiguration\",\n \"SystemCommunicationTag\",\n \"SystemGroupingAggregationRtQuery\",\n \"SystemIdentityApiResource\",\n \"SystemIdentityApiScope\",\n \"SystemIdentityAzureEntraIdIdentityProvider\",\n \"SystemIdentityClient\",\n \"SystemIdentityFacebookIdentityProvider\",\n \"SystemIdentityGoogleIdentityProvider\",\n \"SystemIdentityIdentityResource\",\n \"SystemIdentityMailNotificationConfiguration\",\n \"SystemIdentityMicrosoftAdIdentityProvider\",\n \"SystemIdentityMicrosoftIdentityProvider\",\n \"SystemIdentityOpenLdapIdentityProvider\",\n \"SystemIdentityPermission\",\n \"SystemIdentityPermissionRole\",\n \"SystemIdentityPersistedGrant\",\n \"SystemIdentityRole\",\n \"SystemIdentityUser\",\n \"SystemMigrationHistory\",\n \"SystemNotificationCssTemplateConfiguration\",\n \"SystemNotificationEvent\",\n \"SystemNotificationNotificationTemplate\",\n \"SystemNotificationStatefulEvent\",\n \"SystemQuery\",\n \"SystemReportingConnectionInfo\",\n \"SystemReportingFileSystemItem\",\n \"SystemReportingFolder\",\n \"SystemReportingFolderRoot\",\n \"SystemSimpleRtQuery\",\n \"SystemTenant\",\n \"SystemTenantConfiguration\",\n \"SystemTenantModeConfiguration\",\n \"SystemUIDashboard\",\n \"SystemUIDashboardWidget\",\n \"SystemUIPage\",\n \"SystemUIProcessDiagram\",\n \"SystemUIStudioRoot\",\n \"SystemUIStudioTreeItem\",\n \"SystemUISymbolDefinition\",\n \"SystemUISymbolLibrary\"\n ],\n \"SystemEntity_RelatesToUnion\": [\n \"BasicAsset\",\n \"BasicCity\",\n \"BasicCountry\",\n \"BasicDistrict\",\n \"BasicEmployee\",\n \"BasicState\",\n \"BasicTree\",\n \"BasicTreeNode\",\n \"OctoSdkDemoCustomer\",\n \"OctoSdkDemoMeteringPoint\",\n \"OctoSdkDemoOperatingFacility\",\n \"SystemAggregationRtQuery\",\n \"SystemAutoIncrement\",\n \"SystemBotAttributeAggregateConfiguration\",\n \"SystemBotFixup\",\n \"SystemBotServiceHook\",\n \"SystemCommunicationDataPipeline\",\n \"SystemCommunicationDataPipelineTrigger\",\n \"SystemCommunicationEMailSenderConfiguration\",\n \"SystemCommunicationEdgeAdapter\",\n \"SystemCommunicationEdgePipeline\",\n \"SystemCommunicationEnergyCommunityConfiguration\",\n \"SystemCommunicationMeshAdapter\",\n \"SystemCommunicationMeshPipeline\",\n \"SystemCommunicationPipelineExecution\",\n \"SystemCommunicationPipelineStatistics\",\n \"SystemCommunicationPool\",\n \"SystemCommunicationSapConfiguration\",\n \"SystemCommunicationTag\",\n \"SystemGroupingAggregationRtQuery\",\n \"SystemIdentityApiResource\",\n \"SystemIdentityApiScope\",\n \"SystemIdentityAzureEntraIdIdentityProvider\",\n \"SystemIdentityClient\",\n \"SystemIdentityFacebookIdentityProvider\",\n \"SystemIdentityGoogleIdentityProvider\",\n \"SystemIdentityIdentityResource\",\n \"SystemIdentityMailNotificationConfiguration\",\n \"SystemIdentityMicrosoftAdIdentityProvider\",\n \"SystemIdentityMicrosoftIdentityProvider\",\n \"SystemIdentityOpenLdapIdentityProvider\",\n \"SystemIdentityPermission\",\n \"SystemIdentityPermissionRole\",\n \"SystemIdentityPersistedGrant\",\n \"SystemIdentityRole\",\n \"SystemIdentityUser\",\n \"SystemMigrationHistory\",\n \"SystemNotificationCssTemplateConfiguration\",\n \"SystemNotificationEvent\",\n \"SystemNotificationNotificationTemplate\",\n \"SystemNotificationStatefulEvent\",\n \"SystemQuery\",\n \"SystemReportingConnectionInfo\",\n \"SystemReportingFileSystemItem\",\n \"SystemReportingFolder\",\n \"SystemReportingFolderRoot\",\n \"SystemSimpleRtQuery\",\n \"SystemTenant\",\n \"SystemTenantConfiguration\",\n \"SystemTenantModeConfiguration\",\n \"SystemUIDashboard\",\n \"SystemUIDashboardWidget\",\n \"SystemUIPage\",\n \"SystemUIProcessDiagram\",\n \"SystemUIStudioRoot\",\n \"SystemUIStudioTreeItem\",\n \"SystemUISymbolDefinition\",\n \"SystemUISymbolLibrary\"\n ],\n \"SystemIdentityIdentityProviderInterface\": [\n \"SystemIdentityAzureEntraIdIdentityProvider\",\n \"SystemIdentityFacebookIdentityProvider\",\n \"SystemIdentityGoogleIdentityProvider\",\n \"SystemIdentityMicrosoftAdIdentityProvider\",\n \"SystemIdentityMicrosoftIdentityProvider\",\n \"SystemIdentityOpenLdapIdentityProvider\"\n ],\n \"SystemIdentityResourceInterface\": [\n \"SystemIdentityApiResource\",\n \"SystemIdentityApiScope\",\n \"SystemIdentityIdentityResource\"\n ],\n \"SystemPersistentQueryInterface\": [\n \"SystemAggregationRtQuery\",\n \"SystemGroupingAggregationRtQuery\",\n \"SystemSimpleRtQuery\"\n ],\n \"SystemReportingFileSystemContainerInterface\": [\n \"SystemReportingFileSystemItem\",\n \"SystemReportingFolder\"\n ],\n \"SystemReportingFileSystemContainer_ChildrenUnion\": [\n \"SystemReportingFileSystemItem\",\n \"SystemReportingFolder\"\n ],\n \"SystemReportingFileSystemEntityInterface\": [\n \"SystemReportingFileSystemContainer\",\n \"SystemReportingFileSystemItem\",\n \"SystemReportingFolder\",\n \"SystemReportingFolderRoot\"\n ],\n \"SystemReportingFolder_ParentUnion\": [\n \"SystemReportingFolder\",\n \"SystemReportingFolderRoot\"\n ],\n \"SystemUIDashboardWidget_ChildrenUnion\": [\n \"SystemUIDashboardWidget\"\n ],\n \"SystemUIDashboard_ParentUnion\": [\n \"SystemUIDashboard\"\n ],\n \"SystemUIStudioTreeItem_ChildrenUnion\": [\n \"SystemUIStudioTreeItem\"\n ],\n \"SystemUIStudioTreeItem_ParentUnion\": [\n \"SystemUIStudioRoot\",\n \"SystemUIStudioTreeItem\"\n ],\n \"SystemUISymbolDefinition_ChildrenUnion\": [\n \"SystemUISymbolDefinition\"\n ],\n \"SystemUISymbolLibrary_ParentUnion\": [\n \"SystemUISymbolLibrary\"\n ],\n \"SystemUIUIElementInterface\": [\n \"SystemUIDashboard\",\n \"SystemUIDashboardWidget\",\n \"SystemUIPage\",\n \"SystemUIProcessDiagram\",\n \"SystemUIStudioRoot\",\n \"SystemUIStudioTreeItem\",\n \"SystemUISymbolDefinition\",\n \"SystemUISymbolLibrary\"\n ]\n }\n};\n const result: PossibleTypesResultData = {\n \"possibleTypes\": {\n \"BasicAsset_RelatesFromUnion\": [\n \"BasicAsset\",\n \"BasicCity\",\n \"BasicCountry\",\n \"BasicDistrict\",\n \"BasicEmployee\",\n \"BasicState\",\n \"BasicTree\",\n \"BasicTreeNode\",\n \"OctoSdkDemoCustomer\",\n \"OctoSdkDemoMeteringPoint\",\n \"OctoSdkDemoOperatingFacility\",\n \"SystemAggregationRtQuery\",\n \"SystemAutoIncrement\",\n \"SystemBotAttributeAggregateConfiguration\",\n \"SystemBotFixup\",\n \"SystemBotServiceHook\",\n \"SystemCommunicationDataPipeline\",\n \"SystemCommunicationDataPipelineTrigger\",\n \"SystemCommunicationEMailSenderConfiguration\",\n \"SystemCommunicationEdgeAdapter\",\n \"SystemCommunicationEdgePipeline\",\n \"SystemCommunicationEnergyCommunityConfiguration\",\n \"SystemCommunicationMeshAdapter\",\n \"SystemCommunicationMeshPipeline\",\n \"SystemCommunicationPipelineExecution\",\n \"SystemCommunicationPipelineStatistics\",\n \"SystemCommunicationPool\",\n \"SystemCommunicationSapConfiguration\",\n \"SystemCommunicationTag\",\n \"SystemGroupingAggregationRtQuery\",\n \"SystemIdentityApiResource\",\n \"SystemIdentityApiScope\",\n \"SystemIdentityAzureEntraIdIdentityProvider\",\n \"SystemIdentityClient\",\n \"SystemIdentityFacebookIdentityProvider\",\n \"SystemIdentityGoogleIdentityProvider\",\n \"SystemIdentityIdentityResource\",\n \"SystemIdentityMailNotificationConfiguration\",\n \"SystemIdentityMicrosoftAdIdentityProvider\",\n \"SystemIdentityMicrosoftIdentityProvider\",\n \"SystemIdentityOpenLdapIdentityProvider\",\n \"SystemIdentityPermission\",\n \"SystemIdentityPermissionRole\",\n \"SystemIdentityPersistedGrant\",\n \"SystemIdentityRole\",\n \"SystemIdentityUser\",\n \"SystemMigrationHistory\",\n \"SystemNotificationCssTemplateConfiguration\",\n \"SystemNotificationEvent\",\n \"SystemNotificationNotificationTemplate\",\n \"SystemNotificationStatefulEvent\",\n \"SystemQuery\",\n \"SystemReportingConnectionInfo\",\n \"SystemReportingFileSystemItem\",\n \"SystemReportingFolder\",\n \"SystemReportingFolderRoot\",\n \"SystemSimpleRtQuery\",\n \"SystemTenant\",\n \"SystemTenantConfiguration\",\n \"SystemTenantModeConfiguration\",\n \"SystemUIDashboard\",\n \"SystemUIDashboardWidget\",\n \"SystemUIPage\",\n \"SystemUIProcessDiagram\",\n \"SystemUIStudioRoot\",\n \"SystemUIStudioTreeItem\",\n \"SystemUISymbolDefinition\",\n \"SystemUISymbolLibrary\"\n ],\n \"BasicDocumentInterface\": [],\n \"BasicNamedEntityInterface\": [\n \"BasicTree\"\n ],\n \"BasicTreeNode_ChildrenUnion\": [\n \"BasicAsset\",\n \"BasicCity\",\n \"BasicCountry\",\n \"BasicDistrict\",\n \"BasicState\",\n \"BasicTreeNode\",\n \"OctoSdkDemoMeteringPoint\",\n \"OctoSdkDemoOperatingFacility\"\n ],\n \"BasicTreeNode_RelatesToUnion\": [\n \"BasicAsset\",\n \"BasicCity\",\n \"BasicCountry\",\n \"BasicDistrict\",\n \"BasicEmployee\",\n \"BasicState\",\n \"BasicTree\",\n \"BasicTreeNode\",\n \"OctoSdkDemoCustomer\",\n \"OctoSdkDemoMeteringPoint\",\n \"OctoSdkDemoOperatingFacility\",\n \"SystemAggregationRtQuery\",\n \"SystemAutoIncrement\",\n \"SystemBotAttributeAggregateConfiguration\",\n \"SystemBotFixup\",\n \"SystemBotServiceHook\",\n \"SystemCommunicationDataPipeline\",\n \"SystemCommunicationDataPipelineTrigger\",\n \"SystemCommunicationEMailSenderConfiguration\",\n \"SystemCommunicationEdgeAdapter\",\n \"SystemCommunicationEdgePipeline\",\n \"SystemCommunicationEnergyCommunityConfiguration\",\n \"SystemCommunicationMeshAdapter\",\n \"SystemCommunicationMeshPipeline\",\n \"SystemCommunicationPipelineExecution\",\n \"SystemCommunicationPipelineStatistics\",\n \"SystemCommunicationPool\",\n \"SystemCommunicationSapConfiguration\",\n \"SystemCommunicationTag\",\n \"SystemGroupingAggregationRtQuery\",\n \"SystemIdentityApiResource\",\n \"SystemIdentityApiScope\",\n \"SystemIdentityAzureEntraIdIdentityProvider\",\n \"SystemIdentityClient\",\n \"SystemIdentityFacebookIdentityProvider\",\n \"SystemIdentityGoogleIdentityProvider\",\n \"SystemIdentityIdentityResource\",\n \"SystemIdentityMailNotificationConfiguration\",\n \"SystemIdentityMicrosoftAdIdentityProvider\",\n \"SystemIdentityMicrosoftIdentityProvider\",\n \"SystemIdentityOpenLdapIdentityProvider\",\n \"SystemIdentityPermission\",\n \"SystemIdentityPermissionRole\",\n \"SystemIdentityPersistedGrant\",\n \"SystemIdentityRole\",\n \"SystemIdentityUser\",\n \"SystemMigrationHistory\",\n \"SystemNotificationCssTemplateConfiguration\",\n \"SystemNotificationEvent\",\n \"SystemNotificationNotificationTemplate\",\n \"SystemNotificationStatefulEvent\",\n \"SystemQuery\",\n \"SystemReportingConnectionInfo\",\n \"SystemReportingFileSystemItem\",\n \"SystemReportingFolder\",\n \"SystemReportingFolderRoot\",\n \"SystemSimpleRtQuery\",\n \"SystemTenant\",\n \"SystemTenantConfiguration\",\n \"SystemTenantModeConfiguration\",\n \"SystemUIDashboard\",\n \"SystemUIDashboardWidget\",\n \"SystemUIPage\",\n \"SystemUIProcessDiagram\",\n \"SystemUIStudioRoot\",\n \"SystemUIStudioTreeItem\",\n \"SystemUISymbolDefinition\",\n \"SystemUISymbolLibrary\"\n ],\n \"BasicTree_ParentUnion\": [\n \"BasicAsset\",\n \"BasicCity\",\n \"BasicCountry\",\n \"BasicDistrict\",\n \"BasicState\",\n \"BasicTree\",\n \"BasicTreeNode\",\n \"OctoSdkDemoMeteringPoint\",\n \"OctoSdkDemoOperatingFacility\"\n ],\n \"OctoSdkDemoCustomer_OwnedByUnion\": [\n \"OctoSdkDemoCustomer\"\n ],\n \"OctoSdkDemoOperatingFacility_OwnsUnion\": [\n \"OctoSdkDemoOperatingFacility\"\n ],\n \"RtQueryRow\": [\n \"RtAggregationQueryRow\",\n \"RtGroupingAggregationQueryRow\",\n \"RtSimpleQueryRow\"\n ],\n \"SystemBotAttributeAggregateConfiguration_ConfiguredByUnion\": [\n \"SystemBotAttributeAggregateConfiguration\"\n ],\n \"SystemCommunicationAdapterInterface\": [\n \"SystemCommunicationEdgeAdapter\",\n \"SystemCommunicationMeshAdapter\"\n ],\n \"SystemCommunicationAdapter_AdapterExecutionsUnion\": [\n \"SystemCommunicationEdgeAdapter\",\n \"SystemCommunicationMeshAdapter\"\n ],\n \"SystemCommunicationAdapter_ExecutedByUnion\": [\n \"SystemCommunicationEdgeAdapter\",\n \"SystemCommunicationMeshAdapter\"\n ],\n \"SystemCommunicationAdapter_ManagesUnion\": [\n \"SystemCommunicationEdgeAdapter\",\n \"SystemCommunicationMeshAdapter\"\n ],\n \"SystemCommunicationDataPipelineTrigger_TriggeredByUnion\": [\n \"SystemCommunicationDataPipelineTrigger\"\n ],\n \"SystemCommunicationDataPipeline_ParentUnion\": [\n \"SystemCommunicationDataPipeline\"\n ],\n \"SystemCommunicationDeployableEntityInterface\": [\n \"SystemCommunicationAdapter\",\n \"SystemCommunicationDataPipelineTrigger\",\n \"SystemCommunicationEdgeAdapter\",\n \"SystemCommunicationEdgePipeline\",\n \"SystemCommunicationMeshAdapter\",\n \"SystemCommunicationMeshPipeline\",\n \"SystemCommunicationPipeline\",\n \"SystemCommunicationPool\"\n ],\n \"SystemCommunicationMeshPipeline_TriggersUnion\": [\n \"SystemCommunicationMeshPipeline\"\n ],\n \"SystemCommunicationPipelineExecution_ExecutedPipelineUnion\": [\n \"SystemCommunicationPipelineExecution\"\n ],\n \"SystemCommunicationPipelineExecution_ExecutingAdapterUnion\": [\n \"SystemCommunicationPipelineExecution\"\n ],\n \"SystemCommunicationPipelineInterface\": [\n \"SystemCommunicationEdgePipeline\",\n \"SystemCommunicationMeshPipeline\"\n ],\n \"SystemCommunicationPipelineStatistics_StatisticsForPipelineUnion\": [\n \"SystemCommunicationPipelineStatistics\"\n ],\n \"SystemCommunicationPipeline_ChildrenUnion\": [\n \"SystemCommunicationEdgePipeline\",\n \"SystemCommunicationMeshPipeline\"\n ],\n \"SystemCommunicationPipeline_ExecutesUnion\": [\n \"SystemCommunicationEdgePipeline\",\n \"SystemCommunicationMeshPipeline\"\n ],\n \"SystemCommunicationPipeline_PipelineExecutionsUnion\": [\n \"SystemCommunicationEdgePipeline\",\n \"SystemCommunicationMeshPipeline\"\n ],\n \"SystemCommunicationPipeline_PipelineStatisticsUnion\": [\n \"SystemCommunicationEdgePipeline\",\n \"SystemCommunicationMeshPipeline\"\n ],\n \"SystemCommunicationPipeline_UsedByUnion\": [\n \"SystemCommunicationEdgePipeline\",\n \"SystemCommunicationMeshPipeline\"\n ],\n \"SystemCommunicationPool_ManagedByUnion\": [\n \"SystemCommunicationPool\"\n ],\n \"SystemCommunicationTag_TaggedByUnion\": [\n \"SystemCommunicationTag\"\n ],\n \"SystemConfigurationInterface\": [\n \"SystemCommunicationEMailSenderConfiguration\",\n \"SystemCommunicationEnergyCommunityConfiguration\",\n \"SystemCommunicationSapConfiguration\",\n \"SystemIdentityMailNotificationConfiguration\",\n \"SystemNotificationCssTemplateConfiguration\",\n \"SystemReportingConnectionInfo\",\n \"SystemTenantConfiguration\",\n \"SystemTenantModeConfiguration\"\n ],\n \"SystemConfiguration_IsUsingUnion\": [\n \"SystemCommunicationEMailSenderConfiguration\",\n \"SystemCommunicationEnergyCommunityConfiguration\",\n \"SystemCommunicationSapConfiguration\",\n \"SystemIdentityMailNotificationConfiguration\",\n \"SystemNotificationCssTemplateConfiguration\",\n \"SystemReportingConnectionInfo\",\n \"SystemTenantConfiguration\",\n \"SystemTenantModeConfiguration\"\n ],\n \"SystemEntityInterface\": [\n \"BasicDocument\",\n \"BasicEmployee\",\n \"BasicNamedEntity\",\n \"BasicTree\",\n \"OctoSdkDemoCustomer\",\n \"SystemAggregationRtQuery\",\n \"SystemAutoIncrement\",\n \"SystemBotAttributeAggregateConfiguration\",\n \"SystemBotFixup\",\n \"SystemBotServiceHook\",\n \"SystemCommunicationAdapter\",\n \"SystemCommunicationDataPipeline\",\n \"SystemCommunicationDataPipelineTrigger\",\n \"SystemCommunicationDeployableEntity\",\n \"SystemCommunicationEMailSenderConfiguration\",\n \"SystemCommunicationEdgeAdapter\",\n \"SystemCommunicationEdgePipeline\",\n \"SystemCommunicationEnergyCommunityConfiguration\",\n \"SystemCommunicationMeshAdapter\",\n \"SystemCommunicationMeshPipeline\",\n \"SystemCommunicationPipeline\",\n \"SystemCommunicationPipelineExecution\",\n \"SystemCommunicationPipelineStatistics\",\n \"SystemCommunicationPool\",\n \"SystemCommunicationSapConfiguration\",\n \"SystemCommunicationTag\",\n \"SystemConfiguration\",\n \"SystemGroupingAggregationRtQuery\",\n \"SystemIdentityApiResource\",\n \"SystemIdentityApiScope\",\n \"SystemIdentityAzureEntraIdIdentityProvider\",\n \"SystemIdentityClient\",\n \"SystemIdentityFacebookIdentityProvider\",\n \"SystemIdentityGoogleIdentityProvider\",\n \"SystemIdentityIdentityProvider\",\n \"SystemIdentityIdentityResource\",\n \"SystemIdentityMailNotificationConfiguration\",\n \"SystemIdentityMicrosoftAdIdentityProvider\",\n \"SystemIdentityMicrosoftIdentityProvider\",\n \"SystemIdentityOpenLdapIdentityProvider\",\n \"SystemIdentityPermission\",\n \"SystemIdentityPermissionRole\",\n \"SystemIdentityPersistedGrant\",\n \"SystemIdentityResource\",\n \"SystemIdentityRole\",\n \"SystemIdentityUser\",\n \"SystemMigrationHistory\",\n \"SystemNotificationCssTemplateConfiguration\",\n \"SystemNotificationEvent\",\n \"SystemNotificationNotificationTemplate\",\n \"SystemNotificationStatefulEvent\",\n \"SystemPersistentQuery\",\n \"SystemQuery\",\n \"SystemReportingConnectionInfo\",\n \"SystemReportingFileSystemContainer\",\n \"SystemReportingFileSystemEntity\",\n \"SystemReportingFileSystemItem\",\n \"SystemReportingFolder\",\n \"SystemReportingFolderRoot\",\n \"SystemSimpleRtQuery\",\n \"SystemTenant\",\n \"SystemTenantConfiguration\",\n \"SystemTenantModeConfiguration\",\n \"SystemUIDashboard\",\n \"SystemUIDashboardWidget\",\n \"SystemUIPage\",\n \"SystemUIProcessDiagram\",\n \"SystemUIStudioRoot\",\n \"SystemUIStudioTreeItem\",\n \"SystemUISymbolDefinition\",\n \"SystemUISymbolLibrary\",\n \"SystemUIUIElement\"\n ],\n \"SystemEntity_ConfiguresUnion\": [\n \"BasicAsset\",\n \"BasicCity\",\n \"BasicCountry\",\n \"BasicDistrict\",\n \"BasicEmployee\",\n \"BasicState\",\n \"BasicTree\",\n \"BasicTreeNode\",\n \"OctoSdkDemoCustomer\",\n \"OctoSdkDemoMeteringPoint\",\n \"OctoSdkDemoOperatingFacility\",\n \"SystemAggregationRtQuery\",\n \"SystemAutoIncrement\",\n \"SystemBotAttributeAggregateConfiguration\",\n \"SystemBotFixup\",\n \"SystemBotServiceHook\",\n \"SystemCommunicationDataPipeline\",\n \"SystemCommunicationDataPipelineTrigger\",\n \"SystemCommunicationEMailSenderConfiguration\",\n \"SystemCommunicationEdgeAdapter\",\n \"SystemCommunicationEdgePipeline\",\n \"SystemCommunicationEnergyCommunityConfiguration\",\n \"SystemCommunicationMeshAdapter\",\n \"SystemCommunicationMeshPipeline\",\n \"SystemCommunicationPipelineExecution\",\n \"SystemCommunicationPipelineStatistics\",\n \"SystemCommunicationPool\",\n \"SystemCommunicationSapConfiguration\",\n \"SystemCommunicationTag\",\n \"SystemGroupingAggregationRtQuery\",\n \"SystemIdentityApiResource\",\n \"SystemIdentityApiScope\",\n \"SystemIdentityAzureEntraIdIdentityProvider\",\n \"SystemIdentityClient\",\n \"SystemIdentityFacebookIdentityProvider\",\n \"SystemIdentityGoogleIdentityProvider\",\n \"SystemIdentityIdentityResource\",\n \"SystemIdentityMailNotificationConfiguration\",\n \"SystemIdentityMicrosoftAdIdentityProvider\",\n \"SystemIdentityMicrosoftIdentityProvider\",\n \"SystemIdentityOpenLdapIdentityProvider\",\n \"SystemIdentityPermission\",\n \"SystemIdentityPermissionRole\",\n \"SystemIdentityPersistedGrant\",\n \"SystemIdentityRole\",\n \"SystemIdentityUser\",\n \"SystemMigrationHistory\",\n \"SystemNotificationCssTemplateConfiguration\",\n \"SystemNotificationEvent\",\n \"SystemNotificationNotificationTemplate\",\n \"SystemNotificationStatefulEvent\",\n \"SystemQuery\",\n \"SystemReportingConnectionInfo\",\n \"SystemReportingFileSystemItem\",\n \"SystemReportingFolder\",\n \"SystemReportingFolderRoot\",\n \"SystemSimpleRtQuery\",\n \"SystemTenant\",\n \"SystemTenantConfiguration\",\n \"SystemTenantModeConfiguration\",\n \"SystemUIDashboard\",\n \"SystemUIDashboardWidget\",\n \"SystemUIPage\",\n \"SystemUIProcessDiagram\",\n \"SystemUIStudioRoot\",\n \"SystemUIStudioTreeItem\",\n \"SystemUISymbolDefinition\",\n \"SystemUISymbolLibrary\"\n ],\n \"SystemEntity_IsTaggingUnion\": [\n \"BasicAsset\",\n \"BasicCity\",\n \"BasicCountry\",\n \"BasicDistrict\",\n \"BasicEmployee\",\n \"BasicState\",\n \"BasicTree\",\n \"BasicTreeNode\",\n \"OctoSdkDemoCustomer\",\n \"OctoSdkDemoMeteringPoint\",\n \"OctoSdkDemoOperatingFacility\",\n \"SystemAggregationRtQuery\",\n \"SystemAutoIncrement\",\n \"SystemBotAttributeAggregateConfiguration\",\n \"SystemBotFixup\",\n \"SystemBotServiceHook\",\n \"SystemCommunicationDataPipeline\",\n \"SystemCommunicationDataPipelineTrigger\",\n \"SystemCommunicationEMailSenderConfiguration\",\n \"SystemCommunicationEdgeAdapter\",\n \"SystemCommunicationEdgePipeline\",\n \"SystemCommunicationEnergyCommunityConfiguration\",\n \"SystemCommunicationMeshAdapter\",\n \"SystemCommunicationMeshPipeline\",\n \"SystemCommunicationPipelineExecution\",\n \"SystemCommunicationPipelineStatistics\",\n \"SystemCommunicationPool\",\n \"SystemCommunicationSapConfiguration\",\n \"SystemCommunicationTag\",\n \"SystemGroupingAggregationRtQuery\",\n \"SystemIdentityApiResource\",\n \"SystemIdentityApiScope\",\n \"SystemIdentityAzureEntraIdIdentityProvider\",\n \"SystemIdentityClient\",\n \"SystemIdentityFacebookIdentityProvider\",\n \"SystemIdentityGoogleIdentityProvider\",\n \"SystemIdentityIdentityResource\",\n \"SystemIdentityMailNotificationConfiguration\",\n \"SystemIdentityMicrosoftAdIdentityProvider\",\n \"SystemIdentityMicrosoftIdentityProvider\",\n \"SystemIdentityOpenLdapIdentityProvider\",\n \"SystemIdentityPermission\",\n \"SystemIdentityPermissionRole\",\n \"SystemIdentityPersistedGrant\",\n \"SystemIdentityRole\",\n \"SystemIdentityUser\",\n \"SystemMigrationHistory\",\n \"SystemNotificationCssTemplateConfiguration\",\n \"SystemNotificationEvent\",\n \"SystemNotificationNotificationTemplate\",\n \"SystemNotificationStatefulEvent\",\n \"SystemQuery\",\n \"SystemReportingConnectionInfo\",\n \"SystemReportingFileSystemItem\",\n \"SystemReportingFolder\",\n \"SystemReportingFolderRoot\",\n \"SystemSimpleRtQuery\",\n \"SystemTenant\",\n \"SystemTenantConfiguration\",\n \"SystemTenantModeConfiguration\",\n \"SystemUIDashboard\",\n \"SystemUIDashboardWidget\",\n \"SystemUIPage\",\n \"SystemUIProcessDiagram\",\n \"SystemUIStudioRoot\",\n \"SystemUIStudioTreeItem\",\n \"SystemUISymbolDefinition\",\n \"SystemUISymbolLibrary\"\n ],\n \"SystemEntity_RelatesFromUnion\": [\n \"BasicAsset\",\n \"BasicCity\",\n \"BasicCountry\",\n \"BasicDistrict\",\n \"BasicEmployee\",\n \"BasicState\",\n \"BasicTree\",\n \"BasicTreeNode\",\n \"OctoSdkDemoCustomer\",\n \"OctoSdkDemoMeteringPoint\",\n \"OctoSdkDemoOperatingFacility\",\n \"SystemAggregationRtQuery\",\n \"SystemAutoIncrement\",\n \"SystemBotAttributeAggregateConfiguration\",\n \"SystemBotFixup\",\n \"SystemBotServiceHook\",\n \"SystemCommunicationDataPipeline\",\n \"SystemCommunicationDataPipelineTrigger\",\n \"SystemCommunicationEMailSenderConfiguration\",\n \"SystemCommunicationEdgeAdapter\",\n \"SystemCommunicationEdgePipeline\",\n \"SystemCommunicationEnergyCommunityConfiguration\",\n \"SystemCommunicationMeshAdapter\",\n \"SystemCommunicationMeshPipeline\",\n \"SystemCommunicationPipelineExecution\",\n \"SystemCommunicationPipelineStatistics\",\n \"SystemCommunicationPool\",\n \"SystemCommunicationSapConfiguration\",\n \"SystemCommunicationTag\",\n \"SystemGroupingAggregationRtQuery\",\n \"SystemIdentityApiResource\",\n \"SystemIdentityApiScope\",\n \"SystemIdentityAzureEntraIdIdentityProvider\",\n \"SystemIdentityClient\",\n \"SystemIdentityFacebookIdentityProvider\",\n \"SystemIdentityGoogleIdentityProvider\",\n \"SystemIdentityIdentityResource\",\n \"SystemIdentityMailNotificationConfiguration\",\n \"SystemIdentityMicrosoftAdIdentityProvider\",\n \"SystemIdentityMicrosoftIdentityProvider\",\n \"SystemIdentityOpenLdapIdentityProvider\",\n \"SystemIdentityPermission\",\n \"SystemIdentityPermissionRole\",\n \"SystemIdentityPersistedGrant\",\n \"SystemIdentityRole\",\n \"SystemIdentityUser\",\n \"SystemMigrationHistory\",\n \"SystemNotificationCssTemplateConfiguration\",\n \"SystemNotificationEvent\",\n \"SystemNotificationNotificationTemplate\",\n \"SystemNotificationStatefulEvent\",\n \"SystemQuery\",\n \"SystemReportingConnectionInfo\",\n \"SystemReportingFileSystemItem\",\n \"SystemReportingFolder\",\n \"SystemReportingFolderRoot\",\n \"SystemSimpleRtQuery\",\n \"SystemTenant\",\n \"SystemTenantConfiguration\",\n \"SystemTenantModeConfiguration\",\n \"SystemUIDashboard\",\n \"SystemUIDashboardWidget\",\n \"SystemUIPage\",\n \"SystemUIProcessDiagram\",\n \"SystemUIStudioRoot\",\n \"SystemUIStudioTreeItem\",\n \"SystemUISymbolDefinition\",\n \"SystemUISymbolLibrary\"\n ],\n \"SystemEntity_RelatesToUnion\": [\n \"BasicAsset\",\n \"BasicCity\",\n \"BasicCountry\",\n \"BasicDistrict\",\n \"BasicEmployee\",\n \"BasicState\",\n \"BasicTree\",\n \"BasicTreeNode\",\n \"OctoSdkDemoCustomer\",\n \"OctoSdkDemoMeteringPoint\",\n \"OctoSdkDemoOperatingFacility\",\n \"SystemAggregationRtQuery\",\n \"SystemAutoIncrement\",\n \"SystemBotAttributeAggregateConfiguration\",\n \"SystemBotFixup\",\n \"SystemBotServiceHook\",\n \"SystemCommunicationDataPipeline\",\n \"SystemCommunicationDataPipelineTrigger\",\n \"SystemCommunicationEMailSenderConfiguration\",\n \"SystemCommunicationEdgeAdapter\",\n \"SystemCommunicationEdgePipeline\",\n \"SystemCommunicationEnergyCommunityConfiguration\",\n \"SystemCommunicationMeshAdapter\",\n \"SystemCommunicationMeshPipeline\",\n \"SystemCommunicationPipelineExecution\",\n \"SystemCommunicationPipelineStatistics\",\n \"SystemCommunicationPool\",\n \"SystemCommunicationSapConfiguration\",\n \"SystemCommunicationTag\",\n \"SystemGroupingAggregationRtQuery\",\n \"SystemIdentityApiResource\",\n \"SystemIdentityApiScope\",\n \"SystemIdentityAzureEntraIdIdentityProvider\",\n \"SystemIdentityClient\",\n \"SystemIdentityFacebookIdentityProvider\",\n \"SystemIdentityGoogleIdentityProvider\",\n \"SystemIdentityIdentityResource\",\n \"SystemIdentityMailNotificationConfiguration\",\n \"SystemIdentityMicrosoftAdIdentityProvider\",\n \"SystemIdentityMicrosoftIdentityProvider\",\n \"SystemIdentityOpenLdapIdentityProvider\",\n \"SystemIdentityPermission\",\n \"SystemIdentityPermissionRole\",\n \"SystemIdentityPersistedGrant\",\n \"SystemIdentityRole\",\n \"SystemIdentityUser\",\n \"SystemMigrationHistory\",\n \"SystemNotificationCssTemplateConfiguration\",\n \"SystemNotificationEvent\",\n \"SystemNotificationNotificationTemplate\",\n \"SystemNotificationStatefulEvent\",\n \"SystemQuery\",\n \"SystemReportingConnectionInfo\",\n \"SystemReportingFileSystemItem\",\n \"SystemReportingFolder\",\n \"SystemReportingFolderRoot\",\n \"SystemSimpleRtQuery\",\n \"SystemTenant\",\n \"SystemTenantConfiguration\",\n \"SystemTenantModeConfiguration\",\n \"SystemUIDashboard\",\n \"SystemUIDashboardWidget\",\n \"SystemUIPage\",\n \"SystemUIProcessDiagram\",\n \"SystemUIStudioRoot\",\n \"SystemUIStudioTreeItem\",\n \"SystemUISymbolDefinition\",\n \"SystemUISymbolLibrary\"\n ],\n \"SystemIdentityIdentityProviderInterface\": [\n \"SystemIdentityAzureEntraIdIdentityProvider\",\n \"SystemIdentityFacebookIdentityProvider\",\n \"SystemIdentityGoogleIdentityProvider\",\n \"SystemIdentityMicrosoftAdIdentityProvider\",\n \"SystemIdentityMicrosoftIdentityProvider\",\n \"SystemIdentityOpenLdapIdentityProvider\"\n ],\n \"SystemIdentityResourceInterface\": [\n \"SystemIdentityApiResource\",\n \"SystemIdentityApiScope\",\n \"SystemIdentityIdentityResource\"\n ],\n \"SystemPersistentQueryInterface\": [\n \"SystemAggregationRtQuery\",\n \"SystemGroupingAggregationRtQuery\",\n \"SystemSimpleRtQuery\"\n ],\n \"SystemReportingFileSystemContainerInterface\": [\n \"SystemReportingFileSystemItem\",\n \"SystemReportingFolder\"\n ],\n \"SystemReportingFileSystemContainer_ChildrenUnion\": [\n \"SystemReportingFileSystemItem\",\n \"SystemReportingFolder\"\n ],\n \"SystemReportingFileSystemEntityInterface\": [\n \"SystemReportingFileSystemContainer\",\n \"SystemReportingFileSystemItem\",\n \"SystemReportingFolder\",\n \"SystemReportingFolderRoot\"\n ],\n \"SystemReportingFolder_ParentUnion\": [\n \"SystemReportingFolder\",\n \"SystemReportingFolderRoot\"\n ],\n \"SystemUIDashboardWidget_ChildrenUnion\": [\n \"SystemUIDashboardWidget\"\n ],\n \"SystemUIDashboard_ParentUnion\": [\n \"SystemUIDashboard\"\n ],\n \"SystemUIStudioTreeItem_ChildrenUnion\": [\n \"SystemUIStudioTreeItem\"\n ],\n \"SystemUIStudioTreeItem_ParentUnion\": [\n \"SystemUIStudioRoot\",\n \"SystemUIStudioTreeItem\"\n ],\n \"SystemUISymbolDefinition_ChildrenUnion\": [\n \"SystemUISymbolDefinition\"\n ],\n \"SystemUISymbolLibrary_ParentUnion\": [\n \"SystemUISymbolLibrary\"\n ],\n \"SystemUIUIElementInterface\": [\n \"SystemUIDashboard\",\n \"SystemUIDashboardWidget\",\n \"SystemUIPage\",\n \"SystemUIProcessDiagram\",\n \"SystemUIStudioRoot\",\n \"SystemUIStudioTreeItem\",\n \"SystemUISymbolDefinition\",\n \"SystemUISymbolLibrary\"\n ]\n }\n};\n export default result;\n ","import * as Types from './globalTypes';\n\nimport { gql } from 'apollo-angular';\nimport { Injectable } from '@angular/core';\nimport * as Apollo from 'apollo-angular';\nexport type GetCkTypeAttributesQueryVariablesDto = Types.Exact<{\n ckTypeId: Types.Scalars['String']['input'];\n first?: Types.InputMaybe<Types.Scalars['Int']['input']>;\n}>;\n\n\nexport type GetCkTypeAttributesQueryDto = { __typename?: 'OctoQuery', constructionKit?: { __typename?: 'ConstructionKitQuery', types?: { __typename?: 'CkTypeDtoConnection', items?: Array<{ __typename?: 'CkType', rtCkTypeId: any, ckTypeId: { __typename?: 'CkTypeId', fullName: string }, attributes?: { __typename?: 'CkTypeAttributeDtoConnection', items?: Array<{ __typename?: 'CkTypeAttribute', attributeName: string, attributeValueType: Types.AttributeValueTypeDto } | null> | null } | null } | null> | null } | null } | null };\n\nexport const GetCkTypeAttributesDocumentDto = gql`\n query getCkTypeAttributes($ckTypeId: String!, $first: Int) {\n constructionKit {\n types(ckId: $ckTypeId) {\n items {\n ckTypeId {\n fullName\n }\n rtCkTypeId\n attributes(first: $first) {\n items {\n attributeName\n attributeValueType\n }\n }\n }\n }\n }\n}\n `;\n\n @Injectable({\n providedIn: 'root'\n })\n export class GetCkTypeAttributesDtoGQL extends Apollo.Query<GetCkTypeAttributesQueryDto, GetCkTypeAttributesQueryVariablesDto> {\n document = GetCkTypeAttributesDocumentDto;\n \n constructor(apollo: Apollo.Apollo) {\n super(apollo);\n }\n }","import * as Types from './globalTypes';\n\nimport { gql } from 'apollo-angular';\nimport { Injectable } from '@angular/core';\nimport * as Apollo from 'apollo-angular';\nexport type GetCkRecordAttributesQueryVariablesDto = Types.Exact<{\n ckRecordId: Types.Scalars['String']['input'];\n first?: Types.InputMaybe<Types.Scalars['Int']['input']>;\n}>;\n\n\nexport type GetCkRecordAttributesQueryDto = { __typename?: 'OctoQuery', constructionKit?: { __typename?: 'ConstructionKitQuery', records?: { __typename?: 'CkRecordDtoConnection', items?: Array<{ __typename?: 'CkRecord', rtCkRecordId: any, ckRecordId: { __typename?: 'CkRecordId', fullName: string }, attributes?: { __typename?: 'CkTypeAttributeDtoConnection', items?: Array<{ __typename?: 'CkTypeAttribute', attributeName: string, attributeValueType: Types.AttributeValueTypeDto } | null> | null } | null } | null> | null } | null } | null };\n\nexport const GetCkRecordAttributesDocumentDto = gql`\n query getCkRecordAttributes($ckRecordId: String!, $first: Int) {\n constructionKit {\n records(ckId: $ckRecordId) {\n items {\n ckRecordId {\n fullName\n }\n rtCkRecordId\n attributes(first: $first) {\n items {\n attributeName\n attributeValueType\n }\n }\n }\n }\n }\n}\n `;\n\n @Injectable({\n providedIn: 'root'\n })\n export class GetCkRecordAttributesDtoGQL extends Apollo.Query<GetCkRecordAttributesQueryDto, GetCkRecordAttributesQueryVariablesDto> {\n document = GetCkRecordAttributesDocumentDto;\n \n constructor(apollo: Apollo.Apollo) {\n super(apollo);\n }\n }","import * as Types from './globalTypes';\n\nimport { gql } from 'apollo-angular';\nimport { Injectable } from '@angular/core';\nimport * as Apollo from 'apollo-angular';\nexport type GetCkTypeAvailableQueryColumnsQueryVariablesDto = Types.Exact<{\n after?: Types.InputMaybe<Types.Scalars['String']['input']>;\n first?: Types.InputMaybe<Types.Scalars['Int']['input']>;\n rtCkId: Types.Scalars['String']['input'];\n filter?: Types.InputMaybe<Types.Scalars['String']['input']>;\n}>;\n\n\nexport type GetCkTypeAvailableQueryColumnsQueryDto = { __typename?: 'OctoQuery', constructionKit?: { __typename?: 'ConstructionKitQuery', types?: { __typename?: 'CkTypeDtoConnection', items?: Array<{ __typename?: 'CkType', rtCkTypeId: any, ckTypeId: { __typename?: 'CkTypeId', fullName: string }, availableQueryColumns?: { __typename?: 'CkTypeQueryColumnDtoConnection', totalCount?: number | null, pageInfo: { __typename?: 'PageInfo', hasNextPage: boolean, hasPreviousPage: boolean, startCursor?: string | null, endCursor?: string | null }, items?: Array<{ __typename?: 'CkTypeQueryColumn', attributePath: string, attributeValueType: Types.AttributeValueTypeDto } | null> | null } | null } | null> | null } | null } | null };\n\nexport const GetCkTypeAvailableQueryColumnsDocumentDto = gql`\n query getCkTypeAvailableQueryColumns($after: String, $first: Int, $rtCkId: String!, $filter: String) {\n constructionKit {\n types(rtCkId: $rtCkId) {\n items {\n ckTypeId {\n fullName\n }\n rtCkTypeId\n availableQueryColumns(\n after: $after\n first: $first\n attributePathContains: $filter\n ) {\n totalCount\n pageInfo {\n hasNextPage\n hasPreviousPage\n startCursor\n endCursor\n }\n items {\n attributePath\n attributeValueType\n }\n }\n }\n }\n }\n}\n `;\n\n @Injectable({\n providedIn: 'root'\n })\n export class GetCkTypeAvailableQueryColumnsDtoGQL extends Apollo.Query<GetCkTypeAvailableQueryColumnsQueryDto, GetCkTypeAvailableQueryColumnsQueryVariablesDto> {\n document = GetCkTypeAvailableQueryColumnsDocumentDto;\n \n constructor(apollo: Apollo.Apollo) {\n super(apollo);\n }\n }","import * as Types from './globalTypes';\n\nimport { gql } from 'apollo-angular';\nimport { Injectable } from '@angular/core';\nimport * as Apollo from 'apollo-angular';\nexport type GetCkTypesQueryVariablesDto = Types.Exact<{\n after?: Types.InputMaybe<Types.Scalars['String']['input']>;\n first?: Types.InputMaybe<Types.Scalars['Int']['input']>;\n searchFilter?: Types.InputMaybe<Types.SearchFilterDto>;\n fieldFilters?: Types.InputMaybe<Array<Types.InputMaybe<Types.FieldFilterDto>> | Types.InputMaybe<Types.FieldFilterDto>>;\n sort?: Types.InputMaybe<Array<Types.InputMaybe<Types.SortDto>> | Types.InputMaybe<Types.SortDto>>;\n ckModelIds?: Types.InputMaybe<Array<Types.InputMaybe<Types.Scalars['String']['input']>> | Types.InputMaybe<Types.Scalars['String']['input']>>;\n}>;\n\n\nexport type GetCkTypesQueryDto = { __typename?: 'OctoQuery', constructionKit?: { __typename?: 'ConstructionKitQuery', types?: { __typename?: 'CkTypeDtoConnection', totalCount?: number | null, items?: Array<{ __typename?: 'CkType', rtCkTypeId: any, isAbstract: boolean, isFinal: boolean, description?: string | null, baseType?: { __typename?: 'CkType', rtCkTypeId: any, isAbstract: boolean, isFinal: boolean, ckTypeId: { __typename?: 'CkTypeId', fullName: string } } | null, ckTypeId: { __typename?: 'CkTypeId', fullName: string } } | null> | null } | null } | null };\n\nexport const GetCkTypesDocumentDto = gql`\n query getCkTypes($after: String, $first: Int, $searchFilter: SearchFilter, $fieldFilters: [FieldFilter], $sort: [Sort], $ckModelIds: [String]) {\n constructionKit {\n types(\n after: $after\n first: $first\n searchFilter: $searchFilter\n fieldFilter: $fieldFilters\n sortOrder: $sort\n ckModelIds: $ckModelIds\n ) {\n totalCount\n items {\n baseType {\n ckTypeId {\n fullName\n }\n rtCkTypeId\n isAbstract\n isFinal\n }\n ckTypeId {\n fullName\n }\n rtCkTypeId\n isAbstract\n isFinal\n description\n }\n }\n }\n}\n `;\n\n @Injectable({\n providedIn: 'root'\n })\n export class GetCkTypesDtoGQL extends Apollo.Query<GetCkTypesQueryDto, GetCkTypesQueryVariablesDto> {\n document = GetCkTypesDocumentDto;\n \n constructor(apollo: Apollo.Apollo) {\n super(apollo);\n }\n }","import * as Types from './globalTypes';\n\nimport { gql } from 'apollo-angular';\nimport { Injectable } from '@angular/core';\nimport * as Apollo from 'apollo-angular';\nexport type GetCkModelByIdQueryVariablesDto = Types.Exact<{\n model: Types.Scalars['SimpleScalar']['input'];\n}>;\n\n\nexport type GetCkModelByIdQueryDto = { __typename?: 'OctoQuery', constructionKit?: { __typename?: 'ConstructionKitQuery', models?: { __typename?: 'CkModelDtoConnection', totalCount?: number | null, items?: Array<{ __typename?: 'CkModel', modelState?: Types.ModelStateDto | null, id: { __typename?: 'CkModelId', name: string, version: any, fullName: string, semanticVersionedFullName: string } } | null> | null } | null } | null };\n\nexport const GetCkModelByIdDocumentDto = gql`\n query getCkModelById($model: SimpleScalar!) {\n constructionKit {\n models(\n fieldFilter: [{attributePath: \"modelState\", operator: EQUALS, comparisonValue: \"AVAILABLE\"}, {attributePath: \"modelId\", operator: EQUALS, comparisonValue: $model}]\n ) {\n totalCount\n items {\n id {\n name\n version\n fullName\n semanticVersionedFullName\n }\n modelState\n }\n }\n }\n}\n `;\n\n @Injectable({\n providedIn: 'root'\n })\n export class GetCkModelByIdDtoGQL extends Apollo.Query<GetCkModelByIdQueryDto, GetCkModelByIdQueryVariablesDto> {\n document = GetCkModelByIdDocumentDto;\n \n constructor(apollo: Apollo.Apollo) {\n super(apollo);\n }\n }","import { InjectionToken } from '@angular/core';\nimport { AddInConfiguration } from '../shared/addInConfiguration';\n\n/**\n * Interface for the ConfigurationService.\n * Must be implemented by each application to provide configuration loading logic.\n *\n * @example\n * ```typescript\n * @Injectable({ providedIn: 'root' })\n * export class AppConfigurationService implements IConfigurationService {\n * private readonly _config: AddInConfiguration = {} as AddInConfiguration;\n *\n * get config(): AddInConfiguration {\n * return this._config;\n * }\n *\n * async loadConfigAsync(): Promise<void> {\n * // App-specific loading logic\n * }\n * }\n * ```\n */\nexport interface IConfigurationService {\n /**\n * The loaded configuration.\n * Available after loadConfigAsync() has been called.\n */\n readonly config: AddInConfiguration;\n\n /**\n * Loads the configuration asynchronously.\n * Typically called during app initialization (APP_INITIALIZER).\n */\n loadConfigAsync(): Promise<void>;\n}\n\n/**\n * Injection token for the ConfigurationService.\n * Allows each application to provide its own implementation.\n *\n * @example\n * ```typescript\n * // In app.config.ts\n * providers: [\n * { provide: CONFIGURATION_SERVICE, useClass: AppConfigurationService }\n * ]\n * ```\n */\nexport const CONFIGURATION_SERVICE = new InjectionToken<IConfigurationService>(\n 'IConfigurationService'\n);\n","import { Injectable, inject } from '@angular/core';\nimport { Observable } from 'rxjs';\nimport { map } from 'rxjs/operators';\nimport { GetCkTypeAvailableQueryColumnsDtoGQL } from '../graphQL/getCkTypeAvailableQueryColumns';\n\nexport interface AttributeItem {\n attributePath: string;\n attributeValueType: string;\n}\n\nexport interface AttributeSelectorResult {\n items: AttributeItem[];\n totalCount: number;\n}\n\n@Injectable({\n providedIn: 'root'\n})\nexport class AttributeSelectorService {\n private readonly getCkTypeAvailableQueryColumnsGQL = inject(GetCkTypeAvailableQueryColumnsDtoGQL);\n\n public getAvailableAttributes(\n ckTypeId: string,\n filter?: string,\n first = 1000,\n after?: string\n ): Observable<AttributeSelectorResult> {\n return this.getCkTypeAvailableQueryColumnsGQL.fetch({\n variables: {\n rtCkId: ckTypeId,\n filter: filter,\n first: first,\n after: after\n },\n fetchPolicy: 'network-only'\n }).pipe(\n map(result => {\n const type = result.data?.constructionKit?.types?.items?.[0];\n if (!type) {\n return { items: [], totalCount: 0 };\n }\n\n const items = (type.availableQueryColumns?.items || [])\n .filter((item): item is NonNullable<typeof item> => item !== null)\n .map(item => ({\n attributePath: item.attributePath,\n attributeValueType: item.attributeValueType\n }));\n\n return {\n items,\n totalCount: type.availableQueryColumns?.totalCount || 0\n };\n })\n );\n }\n}\n","import { Injectable, inject } from '@angular/core';\nimport { Observable, of } from 'rxjs';\nimport { map, catchError } from 'rxjs/operators';\nimport { GetCkTypeAttributesDtoGQL } from '../graphQL/getCkTypeAttributes';\nimport { GetCkRecordAttributesDtoGQL } from '../graphQL/getCkRecordAttributes';\n\nexport interface CkTypeAttributeInfo {\n attributeName: string;\n attributeValueType: string;\n}\n\n@Injectable({\n providedIn: 'root'\n})\nexport class CkTypeAttributeService {\n private readonly getCkTypeAttributesGQL = inject(GetCkTypeAttributesDtoGQL);\n private readonly getCkRecordAttributesGQL = inject(GetCkRecordAttributesDtoGQL);\n\n /**\n * Load CK type attributes for a given ckTypeId\n * @param ckTypeId The fullName of the CK type\n * @returns Observable of CkTypeAttributeInfo array\n */\n public getCkTypeAttributes(ckTypeId: string): Observable<CkTypeAttributeInfo[]> {\n return this.getCkTypeAttributesGQL.fetch({\n variables: {\n ckTypeId: ckTypeId,\n first: 1000\n },\n fetchPolicy: 'network-only'\n }).pipe(\n map(result => {\n const type = result.data?.constructionKit?.types?.items?.[0];\n if (!type?.attributes?.items) {\n console.warn(`CK Type '${ckTypeId}' not found or has no attributes`);\n return [];\n }\n return type.attributes.items\n .filter((attr): attr is NonNullable<typeof attr> => attr !== null)\n .map(attr => ({\n attributeName: attr.attributeName,\n attributeValueType: attr.attributeValueType\n }));\n }),\n catchError(err => {\n console.error(`Error fetching CK type attributes for '${ckTypeId}':`, err);\n return of([]);\n })\n );\n }\n\n /**\n * Load CK record attributes for a given ckRecordId\n * @param ckRecordId The fullName of the CK record\n * @returns Observable of CkTypeAttributeInfo array\n */\n public getCkRecordAttributes(ckRecordId: string): Observable<CkTypeAttributeInfo[]> {\n return this.getCkRecordAttributesGQL.fetch({\n variables: {\n ckRecordId: ckRecordId,\n first: 1000\n },\n fetchPolicy: 'network-only'\n }).pipe(\n map(result => {\n const record = result.data?.constructionKit?.records?.items?.[0];\n if (!record?.attributes?.items) {\n console.warn(`CK Record '${ckRecordId}' not found or has no attributes`);\n return [];\n }\n return record.attributes.items\n .filter((attr): attr is NonNullable<typeof attr> => attr !== null)\n .map(attr => ({\n attributeName: attr.attributeName,\n attributeValueType: attr.attributeValueType\n }));\n }),\n catchError(err => {\n console.error(`Error fetching CK record attributes for '${ckRecordId}':`, err);\n return of([]);\n })\n );\n }\n}\n","import * as Types from './globalTypes';\n\nimport { gql } from 'apollo-angular';\nimport { Injectable } from '@angular/core';\nimport * as Apollo from 'apollo-angular';\nexport type GetCkTypeByRtCkTypeIdQueryVariablesDto = Types.Exact<{\n rtCkTypeId: Types.Scalars['String']['input'];\n}>;\n\n\nexport type GetCkTypeByRtCkTypeIdQueryDto = { __typename?: 'OctoQuery', constructionKit?: { __typename?: 'ConstructionKitQuery', types?: { __typename?: 'CkTypeDtoConnection', items?: Array<{ __typename?: 'CkType', rtCkTypeId: any, ckTypeId: { __typename?: 'CkTypeId', fullName: string } } | null> | null } | null } | null };\n\nexport const GetCkTypeByRtCkTypeIdDocumentDto = gql`\n query getCkTypeByRtCkTypeId($rtCkTypeId: String!) {\n constructionKit {\n types(rtCkId: $rtCkTypeId) {\n items {\n ckTypeId {\n fullName\n }\n rtCkTypeId\n }\n }\n }\n}\n `;\n\n @Injectable({\n providedIn: 'root'\n })\n export class GetCkTypeByRtCkTypeIdDtoGQL extends Apollo.Query<GetCkTypeByRtCkTypeIdQueryDto, GetCkTypeByRtCkTypeIdQueryVariablesDto> {\n document = GetCkTypeByRtCkTypeIdDocumentDto;\n \n constructor(apollo: Apollo.Apollo) {\n super(apollo);\n }\n }","import { Injectable, inject } from '@angular/core';\nimport { Observable } from 'rxjs';\nimport { map } from 'rxjs/operators';\nimport { GetCkTypesDtoGQL, GetCkTypesQueryDto } from '../graphQL/getCkTypes';\nimport { GetCkTypeByRtCkTypeIdDtoGQL } from '../graphQL/getCkTypeByRtCkTypeId';\nimport { SearchFilterTypesDto } from '../graphQL/globalTypes';\nimport { GraphQL } from '../shared/graphQL';\n\ntype CkTypeItemDto = NonNullable<NonNullable<NonNullable<NonNullable<GetCkTypesQueryDto['constructionKit']>['types']>['items']>[number]>;\n\nexport interface CkTypeSelectorItem {\n /* The full name CK type ID, e.g., \"OctoSdkDemo-1.0.0/Customer-1\" */\n fullName: string;\n /* The runtime CK type ID for runtime queries, e.g., \"OctoSdkDemo-1.0.0/Customer\" */\n rtCkTypeId: string;\n /* The full name CK type ID of the base type, if any */\n baseTypeFullName?: string;\n /* The runtime CK type ID of the base type, if any */\n baseTypeRtCkTypeId?: string;\n /* Indicates if the type is abstract */\n isAbstract: boolean;\n /* Indicates if the type is final */\n isFinal: boolean;\n /* Optional description of the CK type */\n description?: string;\n}\n\nexport interface CkTypeSelectorResult {\n items: CkTypeSelectorItem[];\n totalCount: number;\n}\n\n@Injectable({\n providedIn: 'root'\n})\nexport class CkTypeSelectorService {\n private readonly getCkTypesGQL = inject(GetCkTypesDtoGQL);\n private readonly getCkTypeByRtCkTypeIdGQL = inject(GetCkTypeByRtCkTypeIdDtoGQL);\n\n /**\n * Get a CkType by its rtCkTypeId\n * @param rtCkTypeId The runtime CK type ID, e.g., \"OctoSdkDemo-1.0.0/Customer\"\n * @returns Observable of CkTypeSelectorItem or null if not found\n */\n public getCkTypeByRtCkTypeId(rtCkTypeId: string): Observable<CkTypeSelectorItem | null> {\n return this.getCkTypeByRtCkTypeIdGQL.fetch({\n variables: { rtCkTypeId },\n fetchPolicy: 'network-only'\n }).pipe(\n map(result => {\n const items = result.data?.constructionKit?.types?.items;\n if (!items || items.length === 0) {\n return null;\n }\n\n const item = items[0];\n if (!item) {\n return null;\n }\n\n // Note: This query returns minimal data, so we only have ckTypeId info\n return {\n fullName: item.ckTypeId.fullName,\n rtCkTypeId: item.rtCkTypeId,\n isAbstract: false,\n isFinal: false\n };\n })\n );\n }\n\n /**\n * Get CkTypes with optional filtering by model IDs and search text\n * @param options Search options\n * @returns Observable of CkTypeSelectorResult\n */\n public getCkTypes(options: {\n ckModelIds?: string[];\n searchText?: string;\n first?: number;\n skip?: number;\n } = {}): Observable<CkTypeSelectorResult> {\n const { ckModelIds, searchText, first = 50, skip = 0 } = options;\n\n return this.getCkTypesGQL.fetch({\n variables: {\n ckModelIds: ckModelIds && ckModelIds.length > 0 ? ckModelIds : null,\n first: first,\n after: GraphQL.offsetToCursor(skip),\n searchFilter: searchText ? {\n type: SearchFilterTypesDto.AttributeFilterDto,\n attributePaths: ['ckTypeId'],\n searchTerm: searchText\n } : null\n },\n fetchPolicy: 'network-only'\n }).pipe(\n map(result => {\n const types = result.data?.constructionKit?.types;\n if (!types) {\n return { items: [], totalCount: 0 };\n }\n\n const items = (types.items || [])\n .filter((item): item is CkTypeItemDto => item !== null)\n .map(item => this.mapToSelectorItem(item));\n\n return {\n items,\n totalCount: types.totalCount || 0\n };\n })\n );\n }\n\n private mapToSelectorItem(item: CkTypeItemDto): CkTypeSelectorItem {\n return {\n fullName: item.ckTypeId.fullName,\n rtCkTypeId: item.rtCkTypeId,\n baseTypeFullName: item.baseType?.ckTypeId.fullName,\n baseTypeRtCkTypeId: item.baseType?.rtCkTypeId,\n isAbstract: item.isAbstract,\n isFinal: item.isFinal,\n description: item.description ?? undefined\n };\n }\n}\n","import { Injectable, inject } from '@angular/core';\nimport { firstValueFrom } from 'rxjs';\nimport { GetCkModelByIdDtoGQL } from '../graphQL/getCkModelById';\n\n/** Represents a parsed semantic version */\ninterface SemanticVersion {\n major: number;\n minor: number;\n patch: number;\n}\n\n/**\n * Service for checking CK model availability in the current tenant.\n */\n@Injectable({\n providedIn: 'root'\n})\nexport class CkModelService {\n private readonly getCkModelByIdGQL = inject(GetCkModelByIdDtoGQL);\n\n /**\n * Checks if a construction kit model is available in the current tenant.\n * @param modelId The model ID to check (e.g., 'System.UI')\n * @returns true if the model is available and in AVAILABLE state\n */\n public async isModelAvailable(modelId: string): Promise<boolean> {\n const result = await firstValueFrom(\n this.getCkModelByIdGQL.fetch({ variables: { model: modelId } })\n );\n\n if (result?.data?.constructionKit?.models?.items) {\n return result.data.constructionKit.models.items.length > 0;\n }\n\n return false;\n }\n\n /**\n * Checks if a construction kit model is available with at least the specified version.\n * @param modelId The model ID to check (e.g., 'System.UI')\n * @param minVersion The minimum required version (e.g., '1.0.1')\n * @returns true if the model is available and version >= minVersion\n */\n public async isModelAvailableWithMinVersion(modelId: string, minVersion: string): Promise<boolean> {\n const result = await firstValueFrom(\n this.getCkModelByIdGQL.fetch({ variables: { model: modelId } })\n );\n\n const items = result?.data?.constructionKit?.models?.items;\n if (!items || items.length === 0) {\n return false;\n }\n\n const model = items[0];\n if (!model?.id?.version) {\n return false;\n }\n\n const modelVersion = this.parseVersion(model.id.version);\n const requiredVersion = this.parseVersion(minVersion);\n\n if (!modelVersion || !requiredVersion) {\n console.warn(`Could not parse version: model=${model.id.version}, required=${minVersion}`);\n return false;\n }\n\n return this.compareVersions(modelVersion, requiredVersion) >= 0;\n }\n\n /**\n * Gets the version of an available model.\n * @param modelId The model ID to check\n * @returns The version string or null if not available\n */\n public async getModelVersion(modelId: string): Promise<string | null> {\n const result = await firstValueFrom(\n this.getCkModelByIdGQL.fetch({ variables: { model: modelId } })\n );\n\n const items = result?.data?.constructionKit?.models?.items;\n if (!items || items.length === 0 || !items[0]?.id?.version) {\n return null;\n }\n\n return String(items[0].id.version);\n }\n\n /**\n * Parses a version string into its components.\n * Supports formats: \"1.0.1\", \"1.0\", \"1\"\n */\n private parseVersion(version: string | number | object): SemanticVersion | null {\n let versionStr: string;\n\n if (typeof version === 'object' && version !== null) {\n // Handle object format like { major: 1, minor: 0, patch: 1 }\n const v = version as { major?: number; minor?: number; patch?: number };\n if (typeof v.major === 'number') {\n return {\n major: v.major,\n minor: v.minor ?? 0,\n patch: v.patch ?? 0\n };\n }\n versionStr = String(version);\n } else {\n versionStr = String(version);\n }\n\n const parts = versionStr.split('.').map(p => parseInt(p, 10));\n\n if (parts.some(isNaN)) {\n return null;\n }\n\n return {\n major: parts[0] ?? 0,\n minor: parts[1] ?? 0,\n patch: parts[2] ?? 0\n };\n }\n\n /**\n * Compares two semantic versions.\n * @returns negative if a < b, 0 if equal, positive if a > b\n */\n private compareVersions(a: SemanticVersion, b: SemanticVersion): number {\n if (a.major !== b.major) {\n return a.major - b.major;\n }\n if (a.minor !== b.minor) {\n return a.minor - b.minor;\n }\n return a.patch - b.patch;\n }\n}\n","import {HttpClient, HttpParams} from '@angular/common/http';\nimport { Injectable, inject } from '@angular/core';\nimport {CONFIGURATION_SERVICE} from './configuration.service';\nimport {TenantDto} from '../shared/tenantDto';\nimport {firstValueFrom} from 'rxjs';\nimport {ImportModelResponseDto} from '../shared/importModelResponseDto';\nimport {ExportModelResponseDto} from '../shared/exportModelResponseDto';\nimport {PagedResultDto} from '@meshmakers/shared-services';\nimport {ImportStrategyDto} from '../shared/importStrategyDto';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class AssetRepoService {\n private readonly httpClient = inject(HttpClient);\n private readonly configurationService = inject(CONFIGURATION_SERVICE);\n\n\n public async getTenants(skip: number, take: number): Promise<PagedResultDto<TenantDto> | null> {\n const params = new HttpParams().set('skip', '' + skip.toString()).set('take', '' + take.toString());\n\n if (this.configurationService.config?.assetServices) {\n const r = await firstValueFrom(this.httpClient\n .get<PagedResultDto<TenantDto>>(this.configurationService.config.assetServices + 'system/v1/tenants', {\n params,\n observe: 'response'\n }));\n return r.body;\n }\n return null;\n }\n\n public async getTenantDetails(tenantId: string): Promise<TenantDto | null> {\n if (this.configurationService.config?.assetServices) {\n const r = await firstValueFrom(this.httpClient\n .get<TenantDto>(this.configurationService.config.assetServices + `system/v1/tenants/${tenantId}`, {\n observe: 'response'\n }));\n return r.body;\n }\n return null;\n }\n\n public async createTenant(tenantDto: TenantDto): Promise<void> {\n const params = new HttpParams().set('tenantId', tenantDto.tenantId).set('databaseName', tenantDto.database);\n\n if (this.configurationService.config?.assetServices) {\n await firstValueFrom(this.httpClient.post<void>(this.configurationService.config.assetServices + 'system/v1/tenants', null, {\n params,\n observe: 'response'\n }));\n }\n }\n\n public async attachTenant(dataSourceDto: TenantDto): Promise<void> {\n const params = new HttpParams().set('tenantId', dataSourceDto.tenantId).set('databaseName', dataSourceDto.database);\n\n if (this.configurationService.config?.assetServices) {\n await firstValueFrom(this.httpClient.post<void>(this.configurationService.config.assetServices + 'system/v1/tenants/attach', null, {\n params,\n observe: 'response'\n }));\n }\n }\n\n public async detachTenant(tenantId: string): Promise<void> {\n const params = new HttpParams().set('tenantId', tenantId);\n\n if (this.configurationService.config?.assetServices) {\n await firstValueFrom(this.httpClient.post<void>(this.configurationService.config.assetServices + 'system/v1/tenants/detach', null, {\n params,\n observe: 'response'\n }));\n }\n }\n\n public async deleteTenant(tenantId: string): Promise<void> {\n const params = new HttpParams().set('tenantId', tenantId);\n\n if (this.configurationService.config?.assetServices) {\n await firstValueFrom(this.httpClient.delete<void>(this.configurationService.config.assetServices + 'system/v1/tenants', {\n params,\n observe: 'response'\n }));\n }\n }\n\n public async importRtModel(tenantId: string, file: File, importStrategy: ImportStrategyDto = ImportStrategyDto.InsertOnly): Promise<string | null> {\n const params = new HttpParams()\n .set('tenantId', tenantId)\n .set('importStrategy', importStrategy.toString());\n if (this.configurationService.config?.assetServices) {\n\n const formData: FormData = new FormData();\n formData.append(\"file\", file);\n const r = await firstValueFrom(this.httpClient.post<ImportModelResponseDto>(this.configurationService.config.assetServices + 'system/v1/Models/ImportRt', formData, {\n params,\n observe: 'response'\n }));\n\n return r.body?.jobId ?? null;\n }\n return null;\n }\n\n public async importCkModel(tenantId: string, file: File, importStrategy: ImportStrategyDto = ImportStrategyDto.InsertOnly): Promise<string | null> {\n const params = new HttpParams()\n .set('tenantId', tenantId)\n .set('importStrategy', importStrategy.toString());\n if (this.configurationService.config?.assetServices) {\n const formData: FormData = new FormData();\n formData.append(\"file\", file);\n const r = await firstValueFrom(this.httpClient.post<ImportModelResponseDto>(this.configurationService.config.assetServices + 'system/v1/Models/ImportCk', formData, {\n params,\n observe: 'response'\n }));\n return r.body?.jobId ?? null;\n }\n return null;\n }\n\n public async exportRtModelByQuery(tenantId: string, queryId: string): Promise<string | null> {\n const params = new HttpParams().set('tenantId', tenantId);\n\n if (this.configurationService.config?.assetServices) {\n const r = await firstValueFrom(this.httpClient\n .post<ExportModelResponseDto>(\n this.configurationService.config.assetServices + 'system/v1/Models/ExportRtByQuery',\n {queryId},\n {\n params,\n observe: 'response'\n }\n ));\n\n return r.body?.jobId ?? null;\n }\n return null;\n }\n\n public async exportRtModelDeepGraph(tenantId: string, originRtIds: string[], originCkTypeId: string): Promise<string | null> {\n const params = new HttpParams().set('tenantId', tenantId);\n\n if (this.configurationService.config?.assetServices) {\n const r = await firstValueFrom(this.httpClient\n .post<ExportModelResponseDto>(\n this.configurationService.config.assetServices + 'system/v1/Models/ExportRtByDeepGraph',\n {originRtIds, originCkTypeId},\n {\n params,\n observe: 'response'\n }\n ));\n return r.body?.jobId ?? null;\n }\n return null;\n }\n}\n","import {Injectable, inject} from '@angular/core';\nimport {HttpClient, HttpParams} from '@angular/common/http';\nimport {firstValueFrom, map} from 'rxjs';\nimport {JobResponseDto} from '../shared/jobResponseDto';\nimport {JobDto} from '../shared/jobDto';\nimport {CONFIGURATION_SERVICE} from './configuration.service';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class BotService {\n private readonly httpClient = inject(HttpClient);\n private readonly configurationService = inject(CONFIGURATION_SERVICE);\n\n public async runFixupScripts(tenantId: string): Promise<JobResponseDto | null> {\n const params = new HttpParams().set('tenantId', tenantId);\n\n if (this.configurationService.config?.botServices) {\n const r = await firstValueFrom(this.httpClient.post<JobResponseDto>(this.configurationService.config.botServices + 'system/v1/jobs/run-fixup-scripts', null, {\n params,\n observe: 'response'\n }));\n\n return r.body;\n }\n return null;\n }\n\n public async dumpRepository(tenantId: string): Promise<JobResponseDto | null> {\n const params = new HttpParams().set('tenantId', tenantId);\n\n if (this.configurationService.config?.botServices) {\n const r = await firstValueFrom(this.httpClient.post<JobResponseDto>(this.configurationService.config.botServices + 'system/v1/jobs/dump-repository', null, {\n params,\n observe: 'response'\n }));\n\n return r.body;\n }\n return null;\n }\n\n /** @deprecated Use TusUploadService.startUpload() instead for resumable uploads supporting large files. */\n public async restoreRepository(tenantId: string, databaseName: string, file: File): Promise<JobResponseDto | null> {\n const params = new HttpParams().set('tenantId', tenantId).set('databaseName', databaseName);\n\n if (this.configurationService.config?.botServices) {\n const formData: FormData = new FormData();\n formData.append('file', file, file.name);\n\n const r = await firstValueFrom(this.httpClient.post<JobResponseDto>(this.configurationService.config.botServices + 'system/v1/jobs/restore-repository', formData, {\n params,\n observe: 'response'\n }));\n\n return r.body;\n }\n return null;\n }\n\n public async downloadJobResultBinary(tenantId: string, jobId: string): Promise<Blob | null> {\n const params = new HttpParams().set('tenantId', tenantId).set('id', jobId);\n\n if (this.configurationService.config?.botServices) {\n return await firstValueFrom(this.httpClient.get(this.configurationService.config.botServices + 'system/v1/jobs/download', {\n params,\n responseType: 'blob'\n }));\n }\n return null;\n }\n\n public async getJobStatus(jobId: string): Promise<JobDto | null> {\n const params = new HttpParams().set('id', jobId);\n\n if (this.configurationService.config?.botServices) {\n return firstValueFrom(this.httpClient\n .get<JobDto>(this.configurationService.config.botServices + 'system/v1/jobs', {\n params,\n observe: 'response'\n })\n .pipe(\n map((res) => {\n return res.body;\n })\n ));\n }\n return null;\n }\n}\n","import { Injectable, inject } from '@angular/core';\nimport {HttpClient, HttpErrorResponse} from '@angular/common/http';\nimport {CONFIGURATION_SERVICE} from './configuration.service';\nimport {HealthCheck} from '../shared/health';\nimport {firstValueFrom} from 'rxjs';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class HealthService {\n private readonly httpClient = inject(HttpClient);\n private readonly configurationService = inject(CONFIGURATION_SERVICE);\n\n\n private async getStatusAsync(uri: string): Promise<HealthCheck | null> {\n\n try {\n const r = await firstValueFrom(this.httpClient.get<HealthCheck>(uri + 'health', {\n observe: 'response'\n }));\n\n if (r.status === 200) {\n return r.body;\n }\n }\n catch (error: any){\n if (error instanceof HttpErrorResponse) {\n if (error.status == 503){\n return error.error;\n }\n }\n console.error(\"error\", error);\n }\n return null;\n\n }\n\n public async getAssetRepoServiceHealthAsync(): Promise<HealthCheck | null> {\n return this.getStatusAsync(this.configurationService.config.assetServices);\n }\n\n public async getIdentityServiceAsync(): Promise<HealthCheck | null> {\n return this.getStatusAsync(this.configurationService.config.issuer);\n }\n\n public async getBotServiceAsync(): Promise<HealthCheck | null> {\n return this.getStatusAsync(this.configurationService.config.botServices);\n }\n\n public async getCommunicationControllerServiceAsync(): Promise<HealthCheck | null> {\n return this.getStatusAsync(this.configurationService.config.communicationServices);\n }\n\n public async getMeshAdapterAsync(): Promise<HealthCheck | null> {\n return this.getStatusAsync(this.configurationService.config.meshAdapterUrl);\n }\n}\n","import {inject, Injectable} from '@angular/core';\nimport {firstValueFrom} from 'rxjs';\nimport {HttpClient, HttpParams} from '@angular/common/http';\nimport {CONFIGURATION_SERVICE} from './configuration.service';\nimport {DiagnosticsModel} from '../shared/diagnosticsModel';\nimport {UserDto} from '../shared/userDto';\nimport {RoleDto} from '../shared/roleDto';\nimport {PagedResultDto} from '@meshmakers/shared-services';\nimport {ClientDto} from '../shared/clientDto';\nimport {GeneratedPasswordDto} from '../shared/generatedPasswordDto';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class IdentityService {\n private readonly httpClient = inject(HttpClient);\n private readonly configurationService = inject(CONFIGURATION_SERVICE);\n\n\n async userDiagnostics(): Promise<DiagnosticsModel | null> {\n if (this.configurationService.config?.issuer) {\n return await firstValueFrom(this.httpClient.get<DiagnosticsModel>(\n this.configurationService.config.issuer + 'system/v1/Diagnostics'\n ));\n }\n return null;\n }\n\n async getUsers(skip: number, take: number): Promise<PagedResultDto<UserDto> | null> {\n const params = new HttpParams().set('skip', '' + skip.toString()).set('take', '' + take.toString());\n\n if (this.configurationService.config?.issuer) {\n const response = await firstValueFrom(\n this.httpClient.get<PagedResultDto<UserDto> | null>(this.configurationService.config.issuer + 'system/v1/users/getPaged', {\n params,\n observe: 'response'\n })\n );\n return response.body;\n }\n return null;\n }\n\n async getUserDetails(userName: string): Promise<UserDto | null> {\n if (this.configurationService.config?.issuer) {\n const response = await firstValueFrom(\n this.httpClient.get<UserDto | null>(this.configurationService.config.issuer + `system/v1/users/${userName}`, {\n observe: 'response'\n })\n );\n return response.body;\n }\n return null;\n }\n\n async createUser(userDto: UserDto): Promise<void> {\n if (this.configurationService.config?.issuer) {\n await firstValueFrom(\n this.httpClient.post<any>(this.configurationService.config.issuer + 'system/v1/users', userDto, {\n observe: 'response'\n })\n );\n }\n }\n\n async updateUser(userName: string, userDto: UserDto): Promise<void> {\n if (this.configurationService.config?.issuer) {\n await firstValueFrom(\n this.httpClient.put<any>(this.configurationService.config.issuer + `system/v1/users/${userName}`, userDto, {\n observe: 'response'\n })\n );\n }\n }\n\n async deleteUser(userName: string): Promise<void> {\n if (this.configurationService.config?.issuer) {\n await firstValueFrom(\n this.httpClient.delete<any>(this.configurationService.config.issuer + `system/v1/users/${userName}`, {\n observe: 'response'\n })\n );\n }\n }\n\n async getUserRoles(userName: string): Promise<RoleDto[] | null> {\n if (this.configurationService.config?.issuer) {\n const response = await firstValueFrom(\n this.httpClient.get<RoleDto[] | null>(this.configurationService.config.issuer + `system/v1/users/${userName}/roles`, {\n observe: 'response'\n })\n );\n return response.body;\n }\n return null;\n }\n\n async updateUserRoles(userName: string, roles: RoleDto[]): Promise<void> {\n if (this.configurationService.config?.issuer) {\n const roleIds = roles.map((role) => role.id);\n\n await firstValueFrom(\n this.httpClient.put<any>(this.configurationService.config.issuer + `system/v1/users/${userName}/roles`, roleIds, {\n observe: 'response'\n })\n );\n }\n }\n\n async addUserToRole(userName: string, roleName: string): Promise<void> {\n if (this.configurationService.config?.issuer) {\n await firstValueFrom(\n this.httpClient.put<any>(this.configurationService.config.issuer + `system/v1/users/${userName}/roles/${roleName}`, null, {\n observe: 'response'\n })\n );\n }\n }\n\n async removeRoleFromUser(userName: string, roleName: string): Promise<void> {\n if (this.configurationService.config?.issuer) {\n await firstValueFrom(\n this.httpClient.delete<any>(this.configurationService.config.issuer + `system/v1/users/${userName}/roles/${roleName}`, {\n observe: 'response'\n })\n );\n }\n }\n\n async resetPassword(userName: string, password: string): Promise<any> {\n const params = new HttpParams().set('userName', userName).set('password', password);\n\n if (this.configurationService.config?.issuer) {\n const response = await firstValueFrom(\n this.httpClient.post<any>(this.configurationService.config.issuer + 'system/v1/users/ResetPassword', null, {\n params,\n observe: 'response'\n })\n );\n return response.body;\n }\n return null;\n }\n\n async getClients(skip: number, take: number): Promise<PagedResultDto<ClientDto> | null> {\n const params = new HttpParams().set('skip', '' + skip.toString()).set('take', '' + take.toString());\n\n if (this.configurationService.config?.issuer) {\n const response = await firstValueFrom(\n this.httpClient.get<PagedResultDto<ClientDto> | null>(this.configurationService.config.issuer + 'system/v1/clients/getPaged', {\n params,\n observe: 'response'\n })\n );\n return response.body;\n }\n return null;\n }\n\n async getClientDetails(clientId: string): Promise<ClientDto | null> {\n if (this.configurationService.config?.issuer) {\n const response = await firstValueFrom(\n this.httpClient.get<ClientDto>(this.configurationService.config.issuer + `system/v1/clients/${clientId}`, {\n observe: 'response'\n })\n );\n return response.body;\n }\n return null;\n }\n\n async createClient(clientDto: ClientDto): Promise<void> {\n if (this.configurationService.config?.issuer) {\n await firstValueFrom(\n this.httpClient.post<any>(this.configurationService.config.issuer + 'system/v1/clients', clientDto, {\n observe: 'response'\n })\n );\n }\n }\n\n async updateClient(clientId: string, clientDto: ClientDto): Promise<void> {\n if (this.configurationService.config?.issuer) {\n await firstValueFrom(this.httpClient.put<any>(this.configurationService.config.issuer + `system/v1/clients/${clientId}`, clientDto, {\n observe: 'response'\n }));\n }\n }\n\n async deleteClient(clientId: string): Promise<void> {\n if (this.configurationService.config?.issuer) {\n await firstValueFrom(this.httpClient.delete<any>(this.configurationService.config.issuer + `system/v1/clients/${clientId}`, {\n observe: 'response'\n }));\n }\n }\n\n async generatePassword(): Promise<GeneratedPasswordDto | null> {\n const params = new HttpParams();\n\n if (this.configurationService.config?.issuer) {\n const r = await firstValueFrom(this.httpClient\n .get<GeneratedPasswordDto>(this.configurationService.config.issuer + 'system/v1/tools/generatePassword', {\n params,\n observe: 'response'\n }));\n\n return r.body;\n }\n return null;\n }\n\n // ========================================\n // Role Management\n // ========================================\n\n async getRoles(skip: number, take: number): Promise<PagedResultDto<RoleDto> | null> {\n const params = new HttpParams().set('skip', '' + skip.toString()).set('take', '' + take.toString());\n\n if (this.configurationService.config?.issuer) {\n const response = await firstValueFrom(\n this.httpClient.get<PagedResultDto<RoleDto> | null>(this.configurationService.config.issuer + 'system/v1/roles/getPaged', {\n params,\n observe: 'response'\n })\n );\n return response.body;\n }\n return null;\n }\n\n async getRoleDetails(roleName: string): Promise<RoleDto | null> {\n if (this.configurationService.config?.issuer) {\n const response = await firstValueFrom(\n this.httpClient.get<RoleDto | null>(this.configurationService.config.issuer + `system/v1/roles/names/${roleName}`, {\n observe: 'response'\n })\n );\n return response.body;\n }\n return null;\n }\n\n async createRole(roleDto: RoleDto): Promise<void> {\n if (this.configurationService.config?.issuer) {\n await firstValueFrom(\n this.httpClient.post<any>(this.configurationService.config.issuer + 'system/v1/roles', roleDto, {\n observe: 'response'\n })\n );\n }\n }\n\n async updateRole(roleName: string, roleDto: RoleDto): Promise<void> {\n if (this.configurationService.config?.issuer) {\n await firstValueFrom(\n this.httpClient.put<any>(this.configurationService.config.issuer + `system/v1/roles/${roleName}`, roleDto, {\n observe: 'response'\n })\n );\n }\n }\n\n async deleteRole(roleName: string): Promise<void> {\n if (this.configurationService.config?.issuer) {\n await firstValueFrom(\n this.httpClient.delete<any>(this.configurationService.config.issuer + `system/v1/roles/${roleName}`, {\n observe: 'response'\n })\n );\n }\n }\n}\n","import {Injectable, inject} from '@angular/core';\nimport {MessageService} from \"@meshmakers/shared-services\";\nimport {ProgressValue} from \"../shared/progress-value\";\nimport {ProgressWindowService} from \"../shared/progress-window.service\";\nimport {Subject} from 'rxjs';\nimport {BotService} from './bot-service';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class JobManagementService {\n private readonly botService = inject(BotService);\n private readonly messageService = inject(MessageService);\n private readonly progressWindowService = inject(ProgressWindowService);\n\n\n public async downloadJobResult(tenantId: string, jobId: string, fileName: string): Promise<void> {\n this.messageService.showInformation('Operation completed. Download has been initialized.');\n\n\n const blob = await this.botService.downloadJobResultBinary(tenantId, jobId);\n if (blob) {\n const downloadURL = window.URL.createObjectURL(blob);\n const link = document.createElement('a');\n link.href = downloadURL;\n link.download = fileName;\n link.click();\n }\n }\n\n\n public async waitForJob(jobId: string, title: string, operation: string): Promise<boolean> {\n let cancelled = false;\n const progressSubject = new Subject<ProgressValue>();\n const progressDialog = this.progressWindowService.showIndeterminateProgress(\n title,\n progressSubject.asObservable(),\n {\n isCancelOperationAvailable: true,\n cancelOperation: () => {\n cancelled = true;\n console.log('Wait job task cancelled');\n progressDialog.close();\n },\n width: 500\n });\n\n while (true) {\n const jobDto = await this.botService.getJobStatus(jobId);\n\n if (jobDto == null) {\n this.messageService.showError(`${operation}: Job not found`);\n break;\n }\n\n if (jobDto.status === 'Succeeded' || jobDto.status === 'Failed'\n || jobDto.status === 'Deleted' || cancelled) {\n if (jobDto.status === 'Succeeded') {\n progressDialog.close();\n return true;\n } else {\n const errorDetails = jobDto.errorMessage || jobDto.reason || 'Unknown error';\n this.messageService.showErrorWithDetails(errorDetails, operation);\n }\n break;\n }\n\n const progressValue = new ProgressValue();\n progressValue.statusText = `Operation '${jobDto.status ?? '<unknown>'}'. Please wait...`;\n progressSubject.next(progressValue);\n\n await new Promise((resolve) => setTimeout(resolve, 1000));\n }\n return false;\n }\n}\n","import {Injectable, inject} from '@angular/core';\nimport {HttpClient, HttpErrorResponse, HttpHeaders, HttpParams} from '@angular/common/http';\nimport {firstValueFrom, of, throwError} from 'rxjs';\nimport {catchError} from 'rxjs/operators';\nimport {CONFIGURATION_SERVICE} from './configuration.service';\nimport {\n DeploymentResultDto,\n PipelineExecutionDataDto,\n DebugPointNode,\n DebugPointDataDto\n} from '../shared/communicationDtos';\n\n/**\n * Service for communication controller operations.\n * Handles adapter deployment, pipeline execution, and debugging.\n */\n@Injectable({\n providedIn: 'root'\n})\nexport class CommunicationService {\n private readonly httpClient = inject(HttpClient);\n private readonly configurationService = inject(CONFIGURATION_SERVICE);\n\n /** Headers to prevent browser caching of debug/execution data. */\n private readonly noCacheHeaders = new HttpHeaders()\n .set('Cache-Control', 'no-cache, no-store')\n .set('Pragma', 'no-cache');\n\n /**\n * Gets the base URL for communication services.\n */\n private get communicationServicesUrl(): string | undefined {\n return this.configurationService.config?.communicationServices;\n }\n\n // ============================================================================\n // Trigger Deployment\n // ============================================================================\n\n /**\n * Deploys all data pipeline triggers for a tenant.\n */\n async deployTrigger(tenantId: string): Promise<void> {\n if (this.communicationServicesUrl) {\n const uri = `${this.communicationServicesUrl}${tenantId}/v1/dataPipelineTrigger/deploy`;\n await firstValueFrom(\n this.httpClient.post<void>(uri, null, {observe: 'response'})\n );\n }\n }\n\n // ============================================================================\n // Adapter Configuration Deployment\n // ============================================================================\n\n /**\n * Deploys an adapter configuration update.\n * This triggers the adapter to reload its configuration.\n */\n async deployAdapterConfigurationUpdate(\n tenantId: string,\n adapterRtId: string,\n adapterCkTypeId: string\n ): Promise<void> {\n if (this.communicationServicesUrl) {\n const params = new HttpParams()\n .set('adapterRtEntityId', `${adapterCkTypeId}@${adapterRtId}`);\n const uri = `${this.communicationServicesUrl}${tenantId}/v1/adapter/deployUpdate`;\n\n await firstValueFrom(\n this.httpClient.post<void>(uri, null, {params, observe: 'response'})\n );\n }\n }\n\n // ============================================================================\n // Pool-Level Adapter Deployment\n // ============================================================================\n\n /**\n * Deploys all adapters of a pool.\n */\n async deployAllAdaptersOfPool(tenantId: string, poolRtId: string): Promise<void> {\n if (this.communicationServicesUrl) {\n const params = new HttpParams().set('poolRtId', poolRtId);\n const uri = `${this.communicationServicesUrl}${tenantId}/v1/pool/deployAllAdaptersOfPool`;\n\n await firstValueFrom(\n this.httpClient.post<void>(uri, null, {params, observe: 'response'})\n );\n }\n }\n\n /**\n * Undeploys all adapters of a pool.\n */\n async undeployAllAdaptersOfPool(tenantId: string, poolRtId: string): Promise<void> {\n if (this.communicationServicesUrl) {\n const params = new HttpParams().set('poolRtId', poolRtId);\n const uri = `${this.communicationServicesUrl}${tenantId}/v1/pool/undeployAllAdaptersOfPool`;\n\n await firstValueFrom(\n this.httpClient.post<void>(uri, null, {params, observe: 'response'})\n );\n }\n }\n\n // ============================================================================\n // Individual Adapter Deployment\n // ============================================================================\n\n /**\n * Deploys a single adapter to a pool.\n */\n async deployAdapter(\n tenantId: string,\n poolRtId: string,\n adapterRtId: string,\n adapterCkTypeId: string\n ): Promise<void> {\n if (this.communicationServicesUrl) {\n const params = new HttpParams()\n .set('poolRtId', poolRtId)\n .set('adapterRtEntityId', `${adapterCkTypeId}@${adapterRtId}`);\n const uri = `${this.communicationServicesUrl}${tenantId}/v1/pool/deployAdapter`;\n\n await firstValueFrom(\n this.httpClient.post<void>(uri, null, {params, observe: 'response'})\n );\n }\n }\n\n /**\n * Undeploys a single adapter from a pool.\n */\n async undeployAdapter(\n tenantId: string,\n poolRtId: string,\n adapterRtId: string,\n adapterCkTypeId: string\n ): Promise<void> {\n if (this.communicationServicesUrl) {\n const params = new HttpParams()\n .set('poolRtId', poolRtId)\n .set('adapterRtEntityId', `${adapterCkTypeId}@${adapterRtId}`);\n const uri = `${this.communicationServicesUrl}${tenantId}/v1/pool/unDeployAdapter`;\n\n await firstValueFrom(\n this.httpClient.post<void>(uri, null, {params, observe: 'response'})\n );\n }\n }\n\n // ============================================================================\n // Pipeline Execution\n // ============================================================================\n\n /**\n * Executes a data pipeline manually.\n */\n async executePipeline(\n tenantId: string,\n dataPipelineRtId: string\n ): Promise<PipelineExecutionDataDto | null> {\n if (this.communicationServicesUrl) {\n const params = new HttpParams().set('dataPipelineRtId', dataPipelineRtId);\n const uri = `${this.communicationServicesUrl}${tenantId}/v1/pipeline/execute`;\n\n const response = await firstValueFrom(\n this.httpClient.post<PipelineExecutionDataDto>(uri, null, {\n params,\n observe: 'response'\n })\n );\n return response.body;\n }\n return null;\n }\n\n // ============================================================================\n // Pipeline Deployment\n // ============================================================================\n\n /**\n * Deploys a pipeline definition to an adapter.\n */\n async deployPipelineDefinition(\n tenantId: string,\n adapterRtId: string,\n adapterCkTypeId: string,\n pipelineRtId: string,\n pipelineCkTypeId: string,\n pipelineDefinition: string | null\n ): Promise<void> {\n if (this.communicationServicesUrl) {\n const params = new HttpParams()\n .set('pipelineRtEntityId', `${pipelineCkTypeId}@${pipelineRtId}`)\n .set('adapterRtEntityId', `${adapterCkTypeId}@${adapterRtId}`)\n .set('Content-Type', 'text/yaml');\n\n const uri = `${this.communicationServicesUrl}${tenantId}/v1/pipeline/deploy`;\n\n await firstValueFrom(\n this.httpClient.post<void>(uri, pipelineDefinition, {\n params,\n observe: 'response'\n })\n );\n }\n }\n\n /**\n * Deploys a data pipeline.\n */\n async deployDataPipeline(tenantId: string, dataPipelineRtId: string): Promise<void> {\n if (this.communicationServicesUrl) {\n const params = new HttpParams().set('dataPipelineRtId', dataPipelineRtId);\n const uri = `${this.communicationServicesUrl}${tenantId}/v1/dataPipeline/deploy`;\n\n await firstValueFrom(\n this.httpClient.post<void>(uri, null, {params, observe: 'response'})\n );\n }\n }\n\n /**\n * Undeploys a data pipeline.\n */\n async undeployDataPipeline(tenantId: string, dataPipelineRtId: string): Promise<void> {\n if (this.communicationServicesUrl) {\n const params = new HttpParams().set('dataPipelineRtId', dataPipelineRtId);\n const uri = `${this.communicationServicesUrl}${tenantId}/v1/dataPipeline/undeploy`;\n\n await firstValueFrom(\n this.httpClient.post<void>(uri, null, {params, observe: 'response'})\n );\n }\n }\n\n /**\n * Gets the deployment status of a pipeline.\n */\n async getPipelineStatus(\n tenantId: string,\n pipelineRtId: string,\n pipelineCkTypeId: string\n ): Promise<DeploymentResultDto | null> {\n if (this.communicationServicesUrl) {\n const params = new HttpParams()\n .set('pipelineRtEntityId', `${pipelineCkTypeId}@${pipelineRtId}`);\n const uri = `${this.communicationServicesUrl}${tenantId}/v1/pipeline/status`;\n\n return await firstValueFrom(\n this.httpClient.get<DeploymentResultDto>(uri, {params}).pipe(\n catchError((error: HttpErrorResponse) => {\n if (error.status === 404) {\n return throwError(() => new Error('No pipeline status found'));\n }\n return throwError(() => new Error('An error occurred'));\n })\n )\n );\n }\n return null;\n }\n\n // ============================================================================\n // Pipeline Schema\n // ============================================================================\n\n /**\n * Gets the JSON Schema for a pipeline adapter.\n * Returns null if no schema is available (404).\n */\n async getPipelineSchema(\n tenantId: string,\n adapterRtId: string,\n adapterCkTypeId: string\n ): Promise<Record<string, unknown> | null> {\n if (this.communicationServicesUrl) {\n const params = new HttpParams()\n .set('adapterRtEntityId', `${adapterCkTypeId}@${adapterRtId}`);\n const uri = `${this.communicationServicesUrl}${tenantId}/v1/adapter/pipeline-schema`;\n\n return await firstValueFrom(\n this.httpClient.get<Record<string, unknown>>(uri, {params}).pipe(\n catchError((error: HttpErrorResponse) => {\n if (error.status === 404) {\n return of(null);\n }\n return throwError(() => error);\n })\n )\n );\n }\n return null;\n }\n\n // ============================================================================\n // Pipeline Debugging\n // ============================================================================\n\n /**\n * Gets pipeline execution history.\n * Returns empty array if no executions found (404).\n */\n async getPipelineExecutions(\n tenantId: string,\n pipelineRtId: string,\n pipelineCkTypeId: string,\n skip: number,\n take: number\n ): Promise<PipelineExecutionDataDto[]> {\n if (this.communicationServicesUrl) {\n const params = new HttpParams()\n .set('skip', skip.toString())\n .set('take', take.toString());\n const uri = `${this.communicationServicesUrl}${tenantId}/v1/pipelineDebug/${encodeURIComponent(`${pipelineCkTypeId}@${pipelineRtId}`)}`;\n\n return await firstValueFrom(\n this.httpClient.get<PipelineExecutionDataDto[]>(uri, {params, headers: this.noCacheHeaders}).pipe(\n catchError((error: HttpErrorResponse) => {\n // 404 means no executions found - return empty array\n if (error.status === 404) {\n return of([]);\n }\n return throwError(() => error);\n })\n )\n );\n }\n return [];\n }\n\n /**\n * Gets the latest pipeline execution.\n * Returns null if no executions found (404).\n */\n async getLatestPipelineExecution(\n tenantId: string,\n pipelineRtId: string,\n pipelineCkTypeId: string\n ): Promise<PipelineExecutionDataDto | null> {\n if (this.communicationServicesUrl) {\n const uri = `${this.communicationServicesUrl}${tenantId}/v1/pipelineDebug/${encodeURIComponent(`${pipelineCkTypeId}@${pipelineRtId}`)}/latest`;\n\n return await firstValueFrom(\n this.httpClient.get<PipelineExecutionDataDto | null>(uri, {headers: this.noCacheHeaders}).pipe(\n catchError((error: HttpErrorResponse) => {\n // 404 means no executions found - return null\n if (error.status === 404) {\n return of(null);\n }\n return throwError(() => error);\n })\n )\n );\n }\n return null;\n }\n\n /**\n * Gets debug point nodes for a pipeline execution.\n * Returns null if execution not found (404).\n */\n async getPipelineExecutionDebugPointNodes(\n tenantId: string,\n pipelineRtId: string,\n pipelineCkTypeId: string,\n pipelineExecutionId: string\n ): Promise<DebugPointNode[] | null> {\n if (this.communicationServicesUrl) {\n const uri = `${this.communicationServicesUrl}${tenantId}/v1/pipelineDebug/${encodeURIComponent(`${pipelineCkTypeId}@${pipelineRtId}`)}/${pipelineExecutionId}`;\n\n return await firstValueFrom(\n this.httpClient.get<DebugPointNode[]>(uri, {headers: this.noCacheHeaders}).pipe(\n catchError((error: HttpErrorResponse) => {\n // 404 means execution not found - return null\n if (error.status === 404) {\n return of(null);\n }\n return throwError(() => error);\n })\n )\n );\n }\n return null;\n }\n\n /**\n * Gets data captured at a specific debug point.\n * Returns null if debug point not found (404).\n */\n async getDebugPoint(\n tenantId: string,\n pipelineRtId: string,\n pipelineCkTypeId: string,\n pipelineExecutionId: string,\n nodeId: string\n ): Promise<DebugPointDataDto | null> {\n if (this.communicationServicesUrl) {\n const uri = `${this.communicationServicesUrl}${tenantId}/v1/pipelineDebug/${encodeURIComponent(`${pipelineCkTypeId}@${pipelineRtId}`)}/${pipelineExecutionId}/${encodeURIComponent(nodeId)}`;\n\n return await firstValueFrom(\n this.httpClient.get<DebugPointDataDto>(uri, {headers: this.noCacheHeaders}).pipe(\n catchError((error: HttpErrorResponse) => {\n // 404 means debug point not found - return null\n if (error.status === 404) {\n return of(null);\n }\n return throwError(() => error);\n })\n )\n );\n }\n return null;\n }\n}\n","import {Injectable, inject} from '@angular/core';\nimport {HttpClient, HttpParams} from '@angular/common/http';\nimport {firstValueFrom} from 'rxjs';\nimport {DetailedError, HttpRequest, Upload} from 'tus-js-client';\nimport {AuthorizeService} from '@meshmakers/shared-auth';\nimport {CONFIGURATION_SERVICE} from './configuration.service';\nimport {JobResponseDto} from '../shared/jobResponseDto';\n\nexport interface TusUploadOptions {\n file: File;\n tenantId: string;\n databaseName: string;\n oldDatabaseName?: string;\n onProgress?: (bytesUploaded: number, bytesTotal: number) => void;\n}\n\nexport interface TusUploadResult {\n jobId: string;\n}\n\n@Injectable({\n providedIn: 'root'\n})\nexport class TusUploadService {\n private readonly httpClient = inject(HttpClient);\n private readonly configurationService = inject(CONFIGURATION_SERVICE);\n private readonly authorizeService = inject(AuthorizeService);\n\n public async startUpload(options: TusUploadOptions): Promise<TusUploadResult> {\n const botServicesUrl = this.configurationService.config?.botServices;\n if (!botServicesUrl) {\n throw new Error('Bot services URL not configured');\n }\n\n const tusFileId = await this.performTusUpload(botServicesUrl, options);\n const jobResponse = await this.startRestoreJob(botServicesUrl, tusFileId, options);\n\n if (!jobResponse?.jobId) {\n throw new Error('Failed to start restore job');\n }\n\n return {jobId: jobResponse.jobId};\n }\n\n private performTusUpload(botServicesUrl: string, options: TusUploadOptions): Promise<string> {\n return new Promise<string>((resolve, reject) => {\n const metadata: Record<string, string> = {\n filename: options.file.name,\n filetype: options.file.type || 'application/gzip',\n tenantId: options.tenantId,\n databaseName: options.databaseName\n };\n\n if (options.oldDatabaseName) {\n metadata['oldDatabaseName'] = options.oldDatabaseName;\n }\n\n const upload = new Upload(options.file, {\n endpoint: botServicesUrl + 'system/v1/tus-upload',\n retryDelays: [0, 1000, 3000, 5000, 10000],\n chunkSize: 50 * 1024 * 1024,\n metadata,\n onBeforeRequest: (req: HttpRequest) => {\n const token = this.authorizeService.getAccessTokenSync();\n if (token) {\n req.setHeader('Authorization', `Bearer ${token}`);\n }\n },\n onProgress: (bytesUploaded: number, bytesTotal: number) => {\n options.onProgress?.(bytesUploaded, bytesTotal);\n },\n onSuccess: () => {\n const uploadUrl = upload.url;\n if (!uploadUrl) {\n reject(new Error('Upload succeeded but no URL returned'));\n return;\n }\n const tusFileId = uploadUrl.substring(uploadUrl.lastIndexOf('/') + 1);\n resolve(tusFileId);\n },\n onError: (error: Error | DetailedError) => {\n reject(new Error(`Upload failed: ${error.message}`));\n }\n });\n\n upload.start();\n });\n }\n\n private async startRestoreJob(\n botServicesUrl: string,\n tusFileId: string,\n options: TusUploadOptions\n ): Promise<JobResponseDto | null> {\n let params = new HttpParams()\n .set('tusFileId', tusFileId)\n .set('tenantId', options.tenantId)\n .set('databaseName', options.databaseName);\n\n if (options.oldDatabaseName) {\n params = params.set('oldDatabaseName', options.oldDatabaseName);\n }\n\n const r = await firstValueFrom(this.httpClient.post<JobResponseDto>(\n botServicesUrl + 'system/v1/jobs/restore-from-upload',\n null,\n {params, observe: 'response'}\n ));\n\n return r.body;\n }\n}\n","import { InjectionToken } from '@angular/core';\n\n/**\n * Provider function type for getting the current tenant ID.\n * Apps must provide this for tenant-specific operations like export/import.\n *\n * @returns Promise resolving to the tenant ID or null if not available\n */\nexport type TenantIdProvider = () => Promise<string | null>;\n\n/**\n * Injection token for providing the current tenant ID.\n * This is required for operations that need tenant context, such as:\n * - Exporting/importing runtime models\n * - Asset repository operations\n * - Job management\n *\n * @example\n * ```typescript\n * // app.config.ts\n * import { TENANT_ID_PROVIDER } from '@meshmakers/octo-services';\n * import { ActivatedRoute } from '@angular/router';\n * import { firstValueFrom } from 'rxjs';\n *\n * export const appConfig: ApplicationConfig = {\n * providers: [\n * {\n * provide: TENANT_ID_PROVIDER,\n * useFactory: () => {\n * const route = inject(ActivatedRoute);\n * const configService = inject(CONFIGURATION_SERVICE);\n * return async (): Promise<string | null> => {\n * if (route.firstChild) {\n * const params = await firstValueFrom(route.firstChild.params);\n * const tenantId = params['tenantId'] as string;\n * if (tenantId) {\n * return tenantId;\n * }\n * }\n * return configService.config?.systemTenantId ?? null;\n * };\n * }\n * }\n * ]\n * };\n * ```\n */\nexport const TENANT_ID_PROVIDER = new InjectionToken<TenantIdProvider>('TENANT_ID_PROVIDER');\n","/**\n * Backward-compatible OctoServicesModule for legacy apps that use\n * importProvidersFrom(OctoServicesModule.forRoot(options)).\n *\n * New code should use provideOctoServices(options) directly.\n */\nimport { ModuleWithProviders, NgModule } from '@angular/core';\nimport { OctoServiceOptions } from '../options/octo-service-options';\nimport { OctoErrorLink } from '../shared/octo-error-link';\n\n@NgModule({\n declarations: [],\n imports: [],\n exports: []\n})\nexport class OctoServicesModule {\n static forRoot(octoServiceOptions: OctoServiceOptions): ModuleWithProviders<OctoServicesModule> {\n return {\n ngModule: OctoServicesModule,\n providers: [\n {\n provide: OctoServiceOptions,\n useValue: octoServiceOptions\n },\n OctoErrorLink\n ]\n };\n }\n}\n","/**\n * Backward-compatible AssetRepoGraphQlDataSource for legacy apps.\n *\n * New code in Refinery Studio should use OctoGraphQlDataSource from @meshmakers/octo-ui.\n */\nimport { map, Observable, Subscription } from 'rxjs';\nimport { DataSourceBase, MessageService, PagedResultDto } from '@meshmakers/shared-services';\nimport { FieldFilterDto, InputMaybe, SearchFilterDto, SortDto } from '../graphQL/globalTypes';\nimport type { OperationVariables } from '@apollo/client/core';\nimport { GraphQL } from '../shared/graphQL';\n\nexport interface IQueryVariablesDto extends OperationVariables {\n first?: number | null | undefined;\n after?: string | null | undefined;\n sort?: InputMaybe<InputMaybe<SortDto> | InputMaybe<SortDto>[]> | undefined;\n searchFilter?: InputMaybe<SearchFilterDto> | undefined;\n fieldFilters?: InputMaybe<InputMaybe<FieldFilterDto>[] | InputMaybe<FieldFilterDto>>;\n}\n\n/**\n * Structural interface for QueryRef to avoid private/protected member type incompatibilities\n * between different apollo-angular npm installations.\n */\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\ninterface QueryRefLike<_TQueryDto = any, TVariablesDto = any> {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n valueChanges: Observable<any>;\n refetch(variables?: TVariablesDto): Promise<unknown>;\n stopPolling(): void;\n}\n\n/**\n * Structural interface for apollo-angular Query.\n */\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\ninterface QueryLike<_TQueryDto = any, _TVariablesDto extends OperationVariables = any> {\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n watch(options?: Record<string, unknown>): QueryRefLike<any, any>;\n}\n\nexport abstract class GraphQlDataSource<TDto> extends DataSourceBase<TDto> {\n public abstract refetch(): Promise<void>;\n\n public abstract refetchWith(\n skip?: number,\n take?: number,\n searchFilter?: SearchFilterDto | null,\n fieldFilter?: FieldFilterDto[] | null,\n sort?: SortDto[] | null\n ): Promise<void>;\n\n public abstract loadData(\n skip?: number,\n take?: number,\n searchFilter?: SearchFilterDto | null,\n fieldFilter?: FieldFilterDto[] | null,\n sort?: SortDto[] | null\n ): void;\n}\n\nexport class AssetRepoGraphQlDataSource<TDto, TQueryDto, TVariablesDto extends IQueryVariablesDto> extends GraphQlDataSource<TDto> {\n private queryRef: QueryRefLike<TQueryDto, TVariablesDto> | null;\n private subscription: Subscription | null;\n\n constructor(\n protected messageService: MessageService,\n private readonly query: QueryLike<TQueryDto, TVariablesDto>,\n private readonly defaultSort: SortDto[] | null = null\n ) {\n super();\n this.queryRef = null;\n this.subscription = null;\n }\n\n override clear(): void {\n super.clear();\n this.queryRef?.stopPolling();\n this.queryRef = null;\n this.subscription?.unsubscribe();\n this.subscription = null;\n }\n\n public async refetch(): Promise<void> {\n await this.queryRef?.refetch();\n }\n\n public async refetchWith(\n skip = 0,\n take = 10,\n searchFilter: SearchFilterDto | null = null,\n fieldFilter: FieldFilterDto[] | null = null,\n sort: SortDto[] | null = null\n ): Promise<void> {\n const variables = this.createVariables(skip, take, searchFilter, fieldFilter, sort);\n await this.queryRef?.refetch(variables);\n }\n\n protected createVariables(\n skip = 0,\n take = 10,\n searchFilter: SearchFilterDto | null = null,\n fieldFilter: FieldFilterDto[] | null = null,\n sort: SortDto[] | null = null\n ): TVariablesDto {\n if ((!sort || (sort && sort.length === 0)) && searchFilter === null) {\n sort = new Array<SortDto>();\n if (this.defaultSort) {\n sort = this.defaultSort;\n }\n }\n\n return {\n first: take,\n after: GraphQL.offsetToCursor(skip),\n sort,\n searchFilter,\n fieldFilters: fieldFilter\n } as TVariablesDto;\n }\n\n public loadData(\n skip = 0,\n take = 10,\n searchFilter: SearchFilterDto | null = null,\n fieldFilter: FieldFilterDto[] | null = null,\n sort: SortDto[] | null = null\n ): void {\n this.clear();\n super.onBeginLoad();\n\n const variables = this.createVariables(skip, take, searchFilter, fieldFilter, sort);\n this.queryRef = this.query.watch({ variables, errorPolicy: 'all' });\n\n this.subscription = this.queryRef.valueChanges\n .pipe(\n map((v, i) => this.executeLoad(v, i)))\n .subscribe({\n next: (pagedResult) => super.onCompleteLoad(pagedResult),\n error: (e) => {\n const errorMessage = e instanceof Error ? e.message : String(e);\n this.messageService.showErrorWithDetails(errorMessage, '');\n super.onCompleteLoad(new PagedResultDto<TDto>());\n }\n });\n }\n\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n protected executeLoad(_value: any, _index: number): PagedResultDto<TDto> {\n return new PagedResultDto<TDto>();\n }\n}\n","/**\n * Backward-compatible PagedGraphResultDto for legacy apps.\n */\nimport { PagedResultDto } from '@meshmakers/shared-services';\n\nexport class PagedGraphResultDto<P, C> extends PagedResultDto<C> {\n document: P | null;\n\n constructor() {\n super();\n\n this.document = null;\n }\n}\n","/**\n * Backward-compatible OctoGraphQLServiceBase for legacy apps.\n *\n * New code in Refinery Studio should use generated Apollo services directly.\n */\nimport { DocumentNode } from 'graphql';\nimport { finalize, map } from 'rxjs/operators';\nimport { Apollo } from 'apollo-angular';\nimport { OctoServiceOptions } from '../options/octo-service-options';\nimport { PagedGraphResultDto } from './paged-graph-result-dto';\nimport { PagedResultDto } from '@meshmakers/shared-services';\nimport { HttpLink } from 'apollo-angular/http';\nimport { InMemoryCache, type OperationVariables, type ObservableQuery } from '@apollo/client/core';\nimport { Observable } from 'rxjs';\nimport { type DeepPartial } from '@apollo/client/utilities';\nimport QueryResult = Apollo.QueryResult;\n\nexport class OctoGraphQLServiceBase {\n constructor(\n private readonly apollo: Apollo,\n private readonly httpLink: HttpLink,\n private readonly octoServiceOptions: OctoServiceOptions\n ) {}\n\n protected getEntities<TResult, TEntity, TVariable extends OperationVariables>(\n tenantId: string,\n variables: TVariable,\n queryNode: DocumentNode,\n watchQuery: boolean,\n f: (resultSet: PagedResultDto<TEntity>, result: NonNullable<TResult> | NonNullable<DeepPartial<TResult>>) => void\n ): Observable<PagedResultDto<TEntity>> {\n if (watchQuery) {\n const prepareWatchQuery = this.prepareWatchQuery<TResult, TVariable>(tenantId, variables, queryNode);\n\n return prepareWatchQuery.pipe(\n map((result) => {\n const resultSet = new PagedResultDto<TEntity>();\n\n if (result.error != null) {\n console.error(result.error);\n throw Error('Error in GraphQL statement.');\n } else if (result.data) {\n f(resultSet, result.data);\n }\n return resultSet;\n })\n );\n } else {\n const prepareQuery = this.prepareQuery<TResult, TVariable>(tenantId, variables, queryNode);\n\n return prepareQuery.pipe(\n map((result) => {\n const resultSet = new PagedResultDto<TEntity>();\n\n if (result.error != null) {\n console.error(result.error);\n throw Error('Error in GraphQL statement.');\n } else if (result.data) {\n f(resultSet, result.data);\n }\n return resultSet;\n })\n );\n }\n }\n\n protected getGraphEntities<TResult, TP, TC, TVariable extends OperationVariables>(\n tenantId: string,\n variables: TVariable,\n queryNode: DocumentNode,\n watchQuery: boolean,\n f: (resultSet: PagedGraphResultDto<TP, TC>, result: NonNullable<TResult> | NonNullable<DeepPartial<TResult>>) => void\n ): Observable<PagedGraphResultDto<TP, TC>> {\n if (watchQuery) {\n const prepareWatchQuery = this.prepareWatchQuery<TResult, TVariable>(tenantId, variables, queryNode);\n\n return prepareWatchQuery.pipe(\n map((result) => {\n const resultSet = new PagedGraphResultDto<TP, TC>();\n\n if (result.error != null) {\n console.error(result.error);\n throw Error('Error in GraphQL statement.');\n } else if (result.data) {\n f(resultSet, result.data);\n }\n return resultSet;\n })\n );\n } else {\n const prepareQuery = this.prepareQuery<TResult, TVariable>(tenantId, variables, queryNode);\n\n return prepareQuery.pipe(\n map((result) => {\n const resultSet = new PagedGraphResultDto<TP, TC>();\n\n if (result.error != null) {\n console.error(result.error);\n throw Error('Error in GraphQL statement.');\n } else if (result.data) {\n f(resultSet, result.data);\n }\n return resultSet;\n })\n );\n }\n }\n\n protected getEntityDetail<TResult, TEntity, TVariable extends OperationVariables>(\n tenantId: string,\n variables: TVariable,\n queryNode: DocumentNode,\n watchQuery: boolean,\n f: (result: NonNullable<TResult> | NonNullable<DeepPartial<TResult>>) => TEntity\n ): Observable<TEntity | null> {\n if (watchQuery) {\n const query = this.prepareWatchQuery<TResult, TVariable>(tenantId, variables, queryNode);\n return query.pipe(\n map((result) => {\n if (result.error != null) {\n console.error(result.error);\n throw Error('Error in GraphQL statement.');\n } else if (result.data) {\n return f(result.data);\n }\n return null;\n })\n );\n } else {\n const query = this.prepareQuery<TResult, TVariable>(tenantId, variables, queryNode);\n return query.pipe(\n map((result) => {\n if (result.error != null) {\n console.error(result.error);\n throw Error('Error in GraphQL statement.');\n } else if (result.data) {\n return f(result.data);\n }\n return null;\n })\n );\n }\n }\n\n protected createUpdateEntity<TResult, TEntity, TVariable extends OperationVariables>(\n tenantId: string,\n variables: TVariable,\n queryNode: DocumentNode,\n f: (result: TResult | null | undefined) => TEntity\n ): Observable<TEntity> {\n this.createApolloForTenant(tenantId);\n\n return this.apollo\n .use(tenantId)\n .mutate<TResult>({\n mutation: queryNode,\n variables\n })\n .pipe(\n map((value) => f(value.data)),\n finalize(() => {\n this.apollo.use(tenantId).client.reFetchObservableQueries(true)\n .catch((error: string) => {\n console.error(error);\n });\n })\n );\n }\n\n protected deleteEntity<TResult, TVariable extends OperationVariables>(\n tenantId: string,\n variables: TVariable,\n queryNode: DocumentNode,\n f: (result: TResult | null | undefined) => boolean\n ): Observable<boolean> {\n this.createApolloForTenant(tenantId);\n\n return this.apollo\n .use(tenantId)\n .mutate<TResult>({\n mutation: queryNode,\n variables\n })\n .pipe(\n map((value) => f(value.data)),\n finalize(() => {\n this.apollo.use(tenantId).client.reFetchObservableQueries(true)\n .catch((error: string) => {\n console.error(error);\n });\n })\n );\n }\n\n private createApolloForTenant(tenantId: string): void {\n const result = this.apollo.use(tenantId);\n if (result) {\n return;\n }\n\n const service = this.octoServiceOptions.assetServices ?? '';\n const uri = `${service}tenants/${tenantId}/GraphQL`;\n\n this.apollo.createNamed(tenantId, {\n link: this.httpLink.create({ uri }),\n cache: new InMemoryCache({\n dataIdFromObject: (o) => (o['rtId'] as string)\n })\n });\n }\n\n private prepareWatchQuery<TResult, TVariable extends OperationVariables>(\n tenantId: string,\n variables: TVariable,\n queryNode: DocumentNode\n ): Observable<ObservableQuery.Result<TResult>> {\n this.createApolloForTenant(tenantId);\n\n return this.apollo.use(tenantId).watchQuery<TResult>({\n query: queryNode,\n variables\n }).valueChanges;\n }\n\n private prepareQuery<TResult, TVariable extends OperationVariables>(\n tenantId: string,\n variables: TVariable,\n queryNode: DocumentNode\n ): Observable<QueryResult<TResult>> {\n this.createApolloForTenant(tenantId);\n\n return this.apollo.use(tenantId).query<TResult>({\n query: queryNode,\n variables,\n fetchPolicy: 'network-only'\n });\n }\n}\n","/*\n * Public API Surface of octo-services\n */\n\nimport {EnvironmentProviders, makeEnvironmentProviders} from '@angular/core';\nimport {OctoServiceOptions} from './lib/options/octo-service-options';\nimport {OctoErrorLink} from './lib/shared/octo-error-link';\nimport { provideMmSharedServices } from \"@meshmakers/shared-services\";\n\nexport * from './lib/options/octo-service-options';\nexport * from './lib/shared/graphQL';\nexport * from './lib/shared/ckTypeMetaData';\nexport * from './lib/shared/rtAssociationMetaData';\nexport * from './lib/shared/levelMetaData';\nexport * from './lib/shared/octo-error-link';\nexport * from './lib/shared/userDto';\nexport * from './lib/shared/registerUserDto';\nexport * from './lib/shared/roleDto';\nexport * from './lib/shared/jobDto';\nexport * from './lib/shared/jobResponseDto';\nexport * from './lib/shared/health';\nexport * from './lib/shared/importModelResponseDto';\nexport * from './lib/shared/importStrategyDto';\nexport * from './lib/shared/progress-value';\nexport * from './lib/shared/progress-window.service';\nexport * from './lib/shared/grantTypes';\nexport * from './lib/shared/generatedPasswordDto';\nexport * from './lib/shared/exportModelResponseDto';\nexport * from './lib/shared/diagnosticsModel';\nexport * from './lib/shared/clientDto';\nexport * from './lib/shared/clientScope';\nexport * from './lib/shared/tenantDto';\nexport * from './lib/shared/adminPanelConfigurationDto';\nexport * from './lib/shared/configurationDto';\nexport * from './lib/shared/communicationDtos';\n\n// GraphQL generated types - re-export all for use by dependent packages\nexport * from './lib/graphQL/globalTypes';\n\n// GraphQL fragment matcher - possibleTypes for Apollo InMemoryCache\nexport { default as possibleTypes } from './lib/graphQL/possibleTypes';\n\n// GraphQL generated services\nexport * from './lib/graphQL/getCkTypeAttributes';\nexport * from './lib/graphQL/getCkRecordAttributes';\nexport * from './lib/graphQL/getCkTypeAvailableQueryColumns';\nexport * from './lib/graphQL/getCkTypes';\nexport * from './lib/graphQL/getCkModelById';\n\n// Configuration (Interface and Token for app-specific implementations)\nexport * from './lib/services/configuration.service';\nexport * from './lib/shared/addInConfiguration';\n\n// Business services\nexport * from './lib/services/attribute-selector.service';\nexport * from './lib/services/ck-type-attribute.service';\nexport * from './lib/services/ck-type-selector.service';\nexport * from './lib/services/ck-model.service';\nexport * from './lib/services/asset-repo.service';\nexport * from './lib/services/bot-service';\nexport * from './lib/services/health.service';\nexport * from './lib/services/identity-service';\nexport * from './lib/services/job-management.service';\nexport * from './lib/services/communication.service';\nexport * from './lib/services/tus-upload.service';\n\n// Tenant provider (for tenant-specific operations)\nexport * from './lib/services/tenant-provider';\n\n// Backward-compatible re-exports for legacy apps (energy-community, office-integration)\nexport * from './lib/compat/octo-services-module';\nexport * from './lib/compat/asset-repo-graph-ql-data-source';\nexport * from './lib/compat/octo-graph-ql-service-base';\nexport * from './lib/compat/paged-graph-result-dto';\n\nexport function provideOctoServices(octoServiceOptions?: OctoServiceOptions): EnvironmentProviders {\n return makeEnvironmentProviders([\n provideMmSharedServices(),\n OctoErrorLink,\n {\n provide: OctoServiceOptions,\n useValue: octoServiceOptions\n }\n ]);\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":["Apollo","map"],"mappings":";;;;;;;;;;;;;;MAAa,kBAAkB,CAAA;AAC7B,IAAA,aAAa;AACb,IAAA,mBAAmB;AAEnB,IAAA,WAAA,GAAA;AACE,QAAA,IAAI,CAAC,aAAa,GAAG,IAAI;AACzB,QAAA,IAAI,CAAC,mBAAmB,GAAG,SAAS;IACtC;AACD;;ACDK,MAAO,aAAc,SAAQ,UAAU,CAAA;AACnC,IAAA,SAAS;AACA,IAAA,QAAQ,GAAa,MAAM,CAAC,QAAQ,CAAC;AAEtD,IAAA,WAAA,GAAA;AACE,QAAA,KAAK,EAAE;;;AAIP,QAAA,IAAI,CAAC,SAAS,GAAG,OAAO,CAAC,CAAC,EAAC,KAAK,EAAE,SAAS,EAAE,OAAO,EAAC,KAAI;YAEvD,IAAI,KAAK,EAAE;AAET,gBAAA,IAAI,KAAK,YAAY,qBAAqB,EAAE;AAC1C,oBAAA,IAAI,CAAC,SAAS,CAAC,KAAK,CAAC;gBACvB;qBAAO;AACL,oBAAA,IAAI,CAAC,aAAa,CAAC,KAAK,CAAC;gBAC3B;YACF;AAEA,YAAA,OAAO,OAAO,CAAC,SAAS,CAAC;AAC3B,QAAA,CAAC,CAAC;IACJ;AAEQ,IAAA,aAAa,CAAC,KAAgB,EAAA;QACpC,MAAM,cAAc,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,cAAc,CAAC;AAExD,QAAA,OAAO,CAAC,KAAK,CAAC,KAAK,CAAC;AAEpB,QAAA,cAAc,CAAC,SAAS,CAAC,KAAK,CAAC,OAAO,CAAC;IACzC;AAEQ,IAAA,SAAS,CAAC,qBAA4C,EAAA;QAC5D,MAAM,cAAc,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,cAAc,CAAC;QAExD,IAAI,KAAK,GAAG,eAAe;QAC3B,IAAI,OAAO,GAAG,EAAE;AAChB,QAAA,KAAK,MAAM,KAAK,IAAI,qBAAqB,CAAC,MAAM,EAAE;AAEhD,YAAA,OAAO,CAAC,KAAK,CAAC,KAAK,CAAC;AAEpB,YAAA,IAAI,KAAK,IAAI,eAAe,EAAE;AAC5B,gBAAA,KAAK,GAAG,CAAA,EAAG,KAAK,CAAC,OAAO,EAAE;YAC5B;iBAAO;gBACL,OAAO,IAAI,wBAAwB;AACnC,gBAAA,OAAO,IAAI,CAAA,EAAG,KAAK,CAAC,OAAO,EAAE;YAC/B;AAEA,YAAA,IAAI,KAAK,CAAC,UAAU,EAAE;;AAEpB,gBAAA,IAAI,KAAK,CAAC,UAAU,CAAC,MAAM,CAAC,EAAE;oBAC5B,OAAO,IAAI,uBAAuB,KAAK,CAAC,UAAU,CAAC,MAAM,CAAC,CAAA,CAAE;gBAC9D;AAEA,gBAAA,IAAI,KAAK,CAAC,UAAU,CAAC,aAAa,CAAC,IAAI,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,UAAU,CAAC,aAAa,CAAC,CAAC,EAAE;;oBAGrF,KAAK,MAAM,MAAM,IAAI,KAAK,CAAC,UAAU,CAAC,aAAa,CAAC,EAAE;AACpD,wBAAA,IAAI,MAAM,CAAC,OAAO,EAAE;AAClB,4BAAA,OAAO,IAAI,CAAA,MAAA,EAAS,MAAM,CAAC,OAAO,EAAE;wBACtC;AAEA,wBAAA,IAAI,MAAM,CAAC,OAAO,IAAI,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,OAAO,CAAC,EAAE;AACnD,4BAAA,KAAK,MAAM,SAAS,IAAI,MAAM,CAAC,OAAO,EAAE;gCACtC,IAAI,SAAS,EAAE;AACb,oCAAA,OAAO,IAAI,CAAA,MAAA,EAAS,SAAS,CAAA,CAAE;gCACjC;4BACF;wBACF;oBACF;gBACF;YACF;AACA,YAAA,cAAc,CAAC,oBAAoB,CAAC,KAAK,EAAE,OAAO,CAAC;QACrD;IAEF;IAES,OAAO,CAAC,SAAc,EAAE,OAAY,EAAA;QAC3C,OAAO,IAAI,CAAC,SAAS,CAAC,OAAO,CAAC,SAAS,EAAE,OAAO,CAAC;IACnD;uGA/EW,aAAa,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,UAAA,EAAA,CAAA;2GAAb,aAAa,EAAA,CAAA;;2FAAb,aAAa,EAAA,UAAA,EAAA,CAAA;kBADzB;;;MCNY,OAAO,CAAA;IACX,OAAO,SAAS,CAAC,QAAgB,EAAA;AACtC,QAAA,OAAO,IAAI,CAAC,CAAA,gBAAA,EAAmB,QAAQ,CAAA,CAAE,CAAC;IAC5C;IAEO,OAAO,cAAc,CAAC,MAAc,EAAA;QACzC,IAAI,CAAC,MAAM,EAAE;AACX,YAAA,OAAO,IAAI;QACb;QAEA,OAAO,IAAI,CAAC,SAAS,CAAC,MAAM,GAAG,CAAC,CAAC;IACnC;AACD;AAEM,MAAM,8BAA8B,GAAG,CAAC,YAAY;AACpD,MAAM,6BAA6B,GAAG,CAAC,IAAI,EAAE,MAAM,EAAE,UAAU,EAAE,YAAY;;MCbvE,cAAc,CAAA;AAEzB,IAAA,WAAA,CAAY,QAAgB,EAAE,IAAY,EAAE,WAAmB,EAAE,OAAgB,EAAA;AAC/E,QAAA,IAAI,CAAC,SAAS,GAAG,QAAQ;AACzB,QAAA,IAAI,CAAC,KAAK,GAAG,IAAI;AACjB,QAAA,IAAI,CAAC,YAAY,GAAG,WAAW;AAC/B,QAAA,IAAI,CAAC,QAAQ,GAAG,OAAO;IACzB;AAEiB,IAAA,SAAS;AACT,IAAA,KAAK;AACL,IAAA,YAAY;AACZ,IAAA,QAAQ;AAEzB,IAAA,IAAW,QAAQ,GAAA;QACjB,OAAO,IAAI,CAAC,SAAS;IACvB;AAEA,IAAA,IAAW,IAAI,GAAA;QACb,OAAO,IAAI,CAAC,KAAK;IACnB;AAEA,IAAA,IAAW,WAAW,GAAA;QACpB,OAAO,IAAI,CAAC,YAAY;IAC1B;AAEA,IAAA,IAAW,OAAO,GAAA;QAChB,OAAO,IAAI,CAAC,QAAQ;IACtB;AACD;;MC/BY,qBAAqB,CAAA;AAEf,IAAA,OAAO;AACP,IAAA,SAAS;IAE1B,WAAA,CAAY,MAAc,EAAE,QAAgB,EAAA;AAC1C,QAAA,IAAI,CAAC,OAAO,GAAG,MAAM;AACrB,QAAA,IAAI,CAAC,SAAS,GAAG,QAAQ;IAC3B;AAEA,IAAA,IAAW,QAAQ,GAAA;QACjB,OAAO,IAAI,CAAC,SAAS;IACvB;AAEA,IAAA,IAAW,MAAM,GAAA;QACf,OAAO,IAAI,CAAC,OAAO;IACrB;AAED;;MChBY,aAAa,CAAA;AACxB,IAAA,WAAA,CAAY,QAAgB,EAAE,WAAoC,EAAE,aAAsC,EAAA;AACxG,QAAA,IAAI,CAAC,SAAS,GAAG,QAAQ;AACzB,QAAA,IAAI,CAAC,YAAY,GAAG,WAAW;AAC/B,QAAA,IAAI,CAAC,cAAc,GAAG,aAAa;IACrC;AAEiB,IAAA,SAAS;AACT,IAAA,YAAY;AACZ,IAAA,cAAc;AAE/B,IAAA,IAAW,QAAQ,GAAA;QACjB,OAAO,IAAI,CAAC,SAAS;IACvB;AAEA,IAAA,IAAW,WAAW,GAAA;QACpB,OAAO,IAAI,CAAC,YAAY;IAC1B;AAEA,IAAA,IAAW,aAAa,GAAA;QACtB,OAAO,IAAI,CAAC,cAAc;IAC5B;AACD;;ICvBW;AAAZ,CAAA,UAAY,YAAY,EAAA;AAEtB;;AAEG;AACH,IAAA,YAAA,CAAA,WAAA,CAAA,GAAA,WAAuB;AAEvB;;AAEG;AACH,IAAA,YAAA,CAAA,UAAA,CAAA,GAAA,UAAqB;AAErB;;AAEG;AACH,IAAA,YAAA,CAAA,SAAA,CAAA,GAAA,SAAmB;AACrB,CAAC,EAhBW,YAAY,KAAZ,YAAY,GAAA,EAAA,CAAA,CAAA;;ICDZ;AAAZ,CAAA,UAAY,iBAAiB,EAAA;AAC3B,IAAA,iBAAA,CAAA,iBAAA,CAAA,YAAA,CAAA,GAAA,CAAA,CAAA,GAAA,YAAc;AACd,IAAA,iBAAA,CAAA,iBAAA,CAAA,QAAA,CAAA,GAAA,CAAA,CAAA,GAAA,QAAU;AACZ,CAAC,EAHW,iBAAiB,KAAjB,iBAAiB,GAAA,EAAA,CAAA,CAAA;;MCAhB,aAAa,CAAA;AACxB,IAAA,UAAU;AACV,IAAA,aAAa;AAEb,IAAA,WAAA,GAAA;AACE,QAAA,IAAI,CAAC,UAAU,GAAG,IAAI;AACtB,QAAA,IAAI,CAAC,aAAa,GAAG,CAAC;IACxB;AACD;;ACSD;;;;;;;;;;;;;;AAcG;MACmB,qBAAqB,CAAA;AAY1C;;AC5CD;;AAEG;AAEH;;AAEG;IACS;AAAZ,CAAA,UAAY,eAAe,EAAA;AACzB,IAAA,eAAA,CAAA,eAAA,CAAA,YAAA,CAAA,GAAA,CAAA,CAAA,GAAA,YAAc;AACd,IAAA,eAAA,CAAA,eAAA,CAAA,SAAA,CAAA,GAAA,CAAA,CAAA,GAAA,SAAW;AACX,IAAA,eAAA,CAAA,eAAA,CAAA,QAAA,CAAA,GAAA,CAAA,CAAA,GAAA,QAAU;AACZ,CAAC,EAJW,eAAe,KAAf,eAAe,GAAA,EAAA,CAAA,CAAA;AAuB3B;;AAEG;IACS;AAAZ,CAAA,UAAY,cAAc,EAAA;AACxB,IAAA,cAAA,CAAA,cAAA,CAAA,OAAA,CAAA,GAAA,CAAA,CAAA,GAAA,OAAS;AACT,IAAA,cAAA,CAAA,cAAA,CAAA,aAAA,CAAA,GAAA,CAAA,CAAA,GAAA,aAAe;AACf,IAAA,cAAA,CAAA,cAAA,CAAA,SAAA,CAAA,GAAA,CAAA,CAAA,GAAA,SAAW;AACX,IAAA,cAAA,CAAA,cAAA,CAAA,OAAA,CAAA,GAAA,CAAA,CAAA,GAAA,OAAS;AACX,CAAC,EALW,cAAc,KAAd,cAAc,GAAA,EAAA,CAAA,CAAA;;ACQ1B;IACY;AAAZ,CAAA,UAAY,wBAAwB,EAAA;AAClC,IAAA,wBAAA,CAAA,YAAA,CAAA,GAAA,SAAsB;AACtB,IAAA,wBAAA,CAAA,UAAA,CAAA,GAAA,OAAkB;AAClB,IAAA,wBAAA,CAAA,YAAA,CAAA,GAAA,SAAsB;AACtB,IAAA,wBAAA,CAAA,YAAA,CAAA,GAAA,SAAsB;AACtB,IAAA,wBAAA,CAAA,QAAA,CAAA,GAAA,KAAc;AAChB,CAAC,EANW,wBAAwB,KAAxB,wBAAwB,GAAA,EAAA,CAAA,CAAA;AAQpC;IACY;AAAZ,CAAA,UAAY,mBAAmB,EAAA;AAC7B,IAAA,mBAAA,CAAA,YAAA,CAAA,GAAA,SAAsB;AACtB,IAAA,mBAAA,CAAA,UAAA,CAAA,GAAA,OAAkB;AAClB,IAAA,mBAAA,CAAA,YAAA,CAAA,GAAA,SAAsB;AACtB,IAAA,mBAAA,CAAA,YAAA,CAAA,GAAA,SAAsB;AACtB,IAAA,mBAAA,CAAA,SAAA,CAAA,GAAA,MAAgB;AAChB,IAAA,mBAAA,CAAA,QAAA,CAAA,GAAA,KAAc;AAChB,CAAC,EAPW,mBAAmB,KAAnB,mBAAmB,GAAA,EAAA,CAAA,CAAA;AAS/B;IACY;AAAZ,CAAA,UAAY,wBAAwB,EAAA;AAClC,IAAA,wBAAA,CAAA,WAAA,CAAA,GAAA,QAAoB;AACpB,IAAA,wBAAA,CAAA,WAAA,CAAA,GAAA,QAAoB;AACtB,CAAC,EAHW,wBAAwB,KAAxB,wBAAwB,GAAA,EAAA,CAAA,CAAA;AAKpC;IACY;AAAZ,CAAA,UAAY,qBAAqB,EAAA;AAC/B,IAAA,qBAAA,CAAA,WAAA,CAAA,GAAA,QAAoB;AACpB,IAAA,qBAAA,CAAA,iBAAA,CAAA,GAAA,eAAiC;AACjC,IAAA,qBAAA,CAAA,YAAA,CAAA,GAAA,SAAsB;AACtB,IAAA,qBAAA,CAAA,aAAA,CAAA,GAAA,WAAyB;AACzB,IAAA,qBAAA,CAAA,mBAAA,CAAA,GAAA,kBAAsC;AACtC,IAAA,qBAAA,CAAA,WAAA,CAAA,GAAA,QAAoB;AACpB,IAAA,qBAAA,CAAA,SAAA,CAAA,GAAA,MAAgB;AAChB,IAAA,qBAAA,CAAA,oBAAA,CAAA,GAAA,kBAAuC;AACvC,IAAA,qBAAA,CAAA,QAAA,CAAA,GAAA,KAAc;AACd,IAAA,qBAAA,CAAA,YAAA,CAAA,GAAA,SAAsB;AACtB,IAAA,qBAAA,CAAA,eAAA,CAAA,GAAA,YAA4B;AAC5B,IAAA,qBAAA,CAAA,iBAAA,CAAA,GAAA,eAAiC;AACjC,IAAA,qBAAA,CAAA,WAAA,CAAA,GAAA,QAAoB;AACpB,IAAA,qBAAA,CAAA,aAAA,CAAA,GAAA,WAAyB;AACzB,IAAA,qBAAA,CAAA,WAAA,CAAA,GAAA,QAAoB;AACpB,IAAA,qBAAA,CAAA,gBAAA,CAAA,GAAA,cAA+B;AAC/B,IAAA,qBAAA,CAAA,WAAA,CAAA,GAAA,QAAoB;AACpB,IAAA,qBAAA,CAAA,gBAAA,CAAA,GAAA,cAA+B;AAC/B,IAAA,qBAAA,CAAA,aAAA,CAAA,GAAA,WAAyB;AAC3B,CAAC,EApBW,qBAAqB,KAArB,qBAAqB,GAAA,EAAA,CAAA,CAAA;AAq1CjC;IACY;AAAZ,CAAA,UAAY,uBAAuB,EAAA;;AAEjC,IAAA,uBAAA,CAAA,YAAA,CAAA,GAAA,SAAsB;;AAEtB,IAAA,uBAAA,CAAA,gBAAA,CAAA,GAAA,cAA+B;;AAE/B,IAAA,uBAAA,CAAA,mBAAA,CAAA,GAAA,iBAAqC;;AAErC,IAAA,uBAAA,CAAA,kBAAA,CAAA,GAAA,gBAAmC;AACrC,CAAC,EATW,uBAAuB,KAAvB,uBAAuB,GAAA,EAAA,CAAA,CAAA;AA+QnC;IACY;AAAZ,CAAA,UAAY,kBAAkB,EAAA;;AAE5B,IAAA,kBAAA,CAAA,WAAA,CAAA,GAAA,QAAoB;;AAEpB,IAAA,kBAAA,CAAA,SAAA,CAAA,GAAA,MAAgB;;AAEhB,IAAA,kBAAA,CAAA,cAAA,CAAA,GAAA,YAA2B;;AAE3B,IAAA,kBAAA,CAAA,YAAA,CAAA,GAAA,SAAsB;AACxB,CAAC,EATW,kBAAkB,KAAlB,kBAAkB,GAAA,EAAA,CAAA,CAAA;AA0rB9B;IACY;AAAZ,CAAA,UAAY,4BAA4B,EAAA;AACtC,IAAA,4BAAA,CAAA,SAAA,CAAA,GAAA,MAAgB;AAChB,IAAA,4BAAA,CAAA,WAAA,CAAA,GAAA,QAAoB;AACpB,IAAA,4BAAA,CAAA,cAAA,CAAA,GAAA,WAA0B;AAC1B,IAAA,4BAAA,CAAA,eAAA,CAAA,GAAA,YAA4B;AAC9B,CAAC,EALW,4BAA4B,KAA5B,4BAA4B,GAAA,EAAA,CAAA,CAAA;AAOxC;IACY;AAAZ,CAAA,UAAY,+BAA+B,EAAA;AACzC,IAAA,+BAAA,CAAA,SAAA,CAAA,GAAA,MAAgB;AAChB,IAAA,+BAAA,CAAA,WAAA,CAAA,GAAA,QAAoB;AACpB,IAAA,+BAAA,CAAA,iBAAA,CAAA,GAAA,eAAiC;AACjC,IAAA,+BAAA,CAAA,kBAAA,CAAA,GAAA,gBAAmC;AACnC,IAAA,+BAAA,CAAA,cAAA,CAAA,GAAA,WAA0B;AAC1B,IAAA,+BAAA,CAAA,eAAA,CAAA,GAAA,YAA4B;AAC9B,CAAC,EAPW,+BAA+B,KAA/B,+BAA+B,GAAA,EAAA,CAAA,CAAA;AAS3C;IACY;AAAZ,CAAA,UAAY,qBAAqB,EAAA;;AAE/B,IAAA,qBAAA,CAAA,QAAA,CAAA,GAAA,MAAe;;AAEf,IAAA,qBAAA,CAAA,QAAA,CAAA,GAAA,MAAe;;AAEf,IAAA,qBAAA,CAAA,YAAA,CAAA,GAAA,UAAuB;AACzB,CAAC,EAPW,qBAAqB,KAArB,qBAAqB,GAAA,EAAA,CAAA,CAAA;AA+MjC;IACY;AAAZ,CAAA,UAAY,8BAA8B,EAAA;AACxC,IAAA,8BAAA,CAAA,WAAA,CAAA,GAAA,QAAoB;AACpB,IAAA,8BAAA,CAAA,WAAA,CAAA,GAAA,QAAoB;AACtB,CAAC,EAHW,8BAA8B,KAA9B,8BAA8B,GAAA,EAAA,CAAA,CAAA;AAud1C;IACY;AAAZ,CAAA,UAAY,mBAAmB,EAAA;AAC7B,IAAA,mBAAA,CAAA,YAAA,CAAA,GAAA,SAAsB;AACtB,IAAA,mBAAA,CAAA,UAAA,CAAA,GAAA,OAAkB;AACpB,CAAC,EAHW,mBAAmB,KAAnB,mBAAmB,GAAA,EAAA,CAAA,CAAA;AAW/B;IACY;AAAZ,CAAA,UAAY,uBAAuB,EAAA;AACjC,IAAA,uBAAA,CAAA,UAAA,CAAA,GAAA,QAAmB;AACnB,IAAA,uBAAA,CAAA,YAAA,CAAA,GAAA,UAAuB;AACvB,IAAA,uBAAA,CAAA,WAAA,CAAA,GAAA,QAAoB;AACpB,IAAA,uBAAA,CAAA,qBAAA,CAAA,GAAA,oBAA0C;AAC1C,IAAA,uBAAA,CAAA,gBAAA,CAAA,GAAA,cAA+B;AAC/B,IAAA,uBAAA,CAAA,OAAA,CAAA,GAAA,IAAY;AACZ,IAAA,uBAAA,CAAA,kBAAA,CAAA,GAAA,iBAAoC;AACpC,IAAA,uBAAA,CAAA,aAAA,CAAA,GAAA,WAAyB;AACzB,IAAA,uBAAA,CAAA,SAAA,CAAA,GAAA,MAAgB;AAChB,IAAA,uBAAA,CAAA,eAAA,CAAA,GAAA,cAA8B;AAC9B,IAAA,uBAAA,CAAA,cAAA,CAAA,GAAA,YAA2B;AAC3B,IAAA,uBAAA,CAAA,UAAA,CAAA,GAAA,QAAmB;AACrB,CAAC,EAbW,uBAAuB,KAAvB,uBAAuB,GAAA,EAAA,CAAA,CAAA;AA8BnC;IACY;AAAZ,CAAA,UAAY,iBAAiB,EAAA;AAC3B,IAAA,iBAAA,CAAA,QAAA,CAAA,GAAA,KAAc;AACd,IAAA,iBAAA,CAAA,YAAA,CAAA,GAAA,SAAsB;AACtB,IAAA,iBAAA,CAAA,aAAA,CAAA,GAAA,UAAwB;AAC1B,CAAC,EAJW,iBAAiB,KAAjB,iBAAiB,GAAA,EAAA,CAAA,CAAA;AAqB7B;IACY;AAAZ,CAAA,UAAY,aAAa,EAAA;AACvB,IAAA,aAAA,CAAA,cAAA,CAAA,GAAA,WAA0B;AAC1B,IAAA,aAAA,CAAA,cAAA,CAAA,GAAA,WAA0B;AAC1B,IAAA,aAAA,CAAA,kBAAA,CAAA,GAAA,gBAAmC;AACrC,CAAC,EAJW,aAAa,KAAb,aAAa,GAAA,EAAA,CAAA,CAAA;AAMzB;IACY;AAAZ,CAAA,UAAY,iBAAiB,EAAA;AAC3B,IAAA,iBAAA,CAAA,MAAA,CAAA,GAAA,GAAU;AACV,IAAA,iBAAA,CAAA,QAAA,CAAA,GAAA,KAAc;AACd,IAAA,iBAAA,CAAA,cAAA,CAAA,GAAA,aAA4B;AAC9B,CAAC,EAJW,iBAAiB,KAAjB,iBAAiB,GAAA,EAAA,CAAA,CAAA;AAoO7B;IACY;AAAZ,CAAA,UAAY,4BAA4B,EAAA;AACtC,IAAA,4BAAA,CAAA,WAAA,CAAA,GAAA,QAAoB;AACpB,IAAA,4BAAA,CAAA,YAAA,CAAA,GAAA,SAAsB;AACtB,IAAA,4BAAA,CAAA,cAAA,CAAA,GAAA,WAA0B;AAC5B,CAAC,EAJW,4BAA4B,KAA5B,4BAA4B,GAAA,EAAA,CAAA,CAAA;AAmQxC;IACY;AAAZ,CAAA,UAAY,6BAA6B,EAAA;AACvC,IAAA,6BAAA,CAAA,YAAA,CAAA,GAAA,SAAsB;AACxB,CAAC,EAFW,6BAA6B,KAA7B,6BAA6B,GAAA,EAAA,CAAA,CAAA;AA0PzC;IACY;AAAZ,CAAA,UAAY,6BAA6B,EAAA;AACvC,IAAA,6BAAA,CAAA,gBAAA,CAAA,GAAA,aAA8B;AAC9B,IAAA,6BAAA,CAAA,OAAA,CAAA,GAAA,IAAY;AACZ,IAAA,6BAAA,CAAA,YAAA,CAAA,GAAA,SAAsB;AACxB,CAAC,EAJW,6BAA6B,KAA7B,6BAA6B,GAAA,EAAA,CAAA,CAAA;AA+rFzC;IACY;AAAZ,CAAA,UAAY,oBAAoB,EAAA;AAC9B,IAAA,oBAAA,CAAA,oBAAA,CAAA,GAAA,kBAAuC;AACvC,IAAA,oBAAA,CAAA,eAAA,CAAA,GAAA,aAA6B;AAC/B,CAAC,EAHW,oBAAoB,KAApB,oBAAoB,GAAA,EAAA,CAAA,CAAA;AAUhC;IACY;AAAZ,CAAA,UAAY,aAAa,EAAA;AACvB,IAAA,aAAA,CAAA,cAAA,CAAA,GAAA,WAA0B;AAC1B,IAAA,aAAA,CAAA,YAAA,CAAA,GAAA,SAAsB;AACtB,IAAA,aAAA,CAAA,eAAA,CAAA,GAAA,YAA4B;AAC9B,CAAC,EAJW,aAAa,KAAb,aAAa,GAAA,EAAA,CAAA,CAAA;AAsMzB;IACY;AAAZ,CAAA,UAAY,yBAAyB,EAAA;;AAEnC,IAAA,yBAAA,CAAA,YAAA,CAAA,GAAA,SAAsB;;AAEtB,IAAA,yBAAA,CAAA,UAAA,CAAA,GAAA,OAAkB;;AAElB,IAAA,yBAAA,CAAA,YAAA,CAAA,GAAA,SAAsB;;AAEtB,IAAA,yBAAA,CAAA,YAAA,CAAA,GAAA,SAAsB;;AAEtB,IAAA,yBAAA,CAAA,QAAA,CAAA,GAAA,KAAc;AAChB,CAAC,EAXW,yBAAyB,KAAzB,yBAAyB,GAAA,EAAA,CAAA,CAAA;AAypCrC;IACY;AAAZ,CAAA,UAAY,wCAAwC,EAAA;AAClD,IAAA,wCAAA,CAAA,YAAA,CAAA,GAAA,SAAsB;AACtB,IAAA,wCAAA,CAAA,WAAA,CAAA,GAAA,QAAoB;AACpB,IAAA,wCAAA,CAAA,iBAAA,CAAA,GAAA,cAAgC;AAClC,CAAC,EAJW,wCAAwC,KAAxC,wCAAwC,GAAA,EAAA,CAAA,CAAA;AAMpD;IACY;AAAZ,CAAA,UAAY,wCAAwC,EAAA;AAClD,IAAA,wCAAA,CAAA,eAAA,CAAA,GAAA,YAA4B;AAC5B,IAAA,wCAAA,CAAA,UAAA,CAAA,GAAA,OAAkB;AAClB,IAAA,wCAAA,CAAA,YAAA,CAAA,GAAA,SAAsB;AACtB,IAAA,wCAAA,CAAA,iBAAA,CAAA,GAAA,cAAgC;AAClC,CAAC,EALW,wCAAwC,KAAxC,wCAAwC,GAAA,EAAA,CAAA,CAAA;AA8oBpD;IACY;AAAZ,CAAA,UAAY,qCAAqC,EAAA;AAC/C,IAAA,qCAAA,CAAA,aAAA,CAAA,GAAA,UAAwB;AACxB,IAAA,qCAAA,CAAA,UAAA,CAAA,GAAA,OAAkB;AAClB,IAAA,qCAAA,CAAA,YAAA,CAAA,GAAA,SAAsB;AACtB,IAAA,qCAAA,CAAA,eAAA,CAAA,GAAA,YAA4B;AAC9B,CAAC,EALW,qCAAqC,KAArC,qCAAqC,GAAA,EAAA,CAAA,CAAA;AA8yDjD;IACY;AAAZ,CAAA,UAAY,6CAA6C,EAAA;AACvD,IAAA,6CAAA,CAAA,cAAA,CAAA,GAAA,WAA0B;AAC1B,IAAA,6CAAA,CAAA,cAAA,CAAA,GAAA,WAA0B;AAC1B,IAAA,6CAAA,CAAA,WAAA,CAAA,GAAA,QAAoB;AACpB,IAAA,6CAAA,CAAA,gBAAA,CAAA,GAAA,aAA8B;AAC9B,IAAA,6CAAA,CAAA,YAAA,CAAA,GAAA,SAAsB;AACxB,CAAC,EANW,6CAA6C,KAA7C,6CAA6C,GAAA,EAAA,CAAA,CAAA;AAydzD;IACY;AAAZ,CAAA,UAAY,yCAAyC,EAAA;AACnD,IAAA,yCAAA,CAAA,UAAA,CAAA,GAAA,OAAkB;AAClB,IAAA,yCAAA,CAAA,WAAA,CAAA,GAAA,QAAoB;AACpB,IAAA,yCAAA,CAAA,cAAA,CAAA,GAAA,WAA0B;AAC1B,IAAA,yCAAA,CAAA,YAAA,CAAA,GAAA,SAAsB;AACxB,CAAC,EALW,yCAAyC,KAAzC,yCAAyC,GAAA,EAAA,CAAA,CAAA;AA83CrD;IACY;AAAZ,CAAA,UAAY,yBAAyB,EAAA;;AAEnC,IAAA,yBAAA,CAAA,gBAAA,CAAA,GAAA,aAA8B;;AAE9B,IAAA,yBAAA,CAAA,eAAA,CAAA,GAAA,YAA4B;;AAE5B,IAAA,yBAAA,CAAA,YAAA,CAAA,GAAA,SAAsB;;AAEtB,IAAA,yBAAA,CAAA,YAAA,CAAA,GAAA,SAAsB;AACxB,CAAC,EATW,yBAAyB,KAAzB,yBAAyB,GAAA,EAAA,CAAA,CAAA;AA0BrC;IACY;AAAZ,CAAA,UAAY,4BAA4B,EAAA;;AAEtC,IAAA,4BAAA,CAAA,UAAA,CAAA,GAAA,QAAmB;;AAEnB,IAAA,4BAAA,CAAA,YAAA,CAAA,GAAA,UAAuB;;AAEvB,IAAA,4BAAA,CAAA,WAAA,CAAA,GAAA,QAAoB;;AAEpB,IAAA,4BAAA,CAAA,qBAAA,CAAA,GAAA,oBAA0C;;AAE1C,IAAA,4BAAA,CAAA,gBAAA,CAAA,GAAA,cAA+B;;AAE/B,IAAA,4BAAA,CAAA,OAAA,CAAA,GAAA,IAAY;;AAEZ,IAAA,4BAAA,CAAA,kBAAA,CAAA,GAAA,iBAAoC;;AAEpC,IAAA,4BAAA,CAAA,aAAA,CAAA,GAAA,WAAyB;;AAEzB,IAAA,4BAAA,CAAA,SAAA,CAAA,GAAA,MAAgB;;AAEhB,IAAA,4BAAA,CAAA,UAAA,CAAA,GAAA,OAAkB;;AAElB,IAAA,4BAAA,CAAA,eAAA,CAAA,GAAA,cAA8B;;AAE9B,IAAA,4BAAA,CAAA,cAAA,CAAA,GAAA,YAA2B;;AAE3B,IAAA,4BAAA,CAAA,UAAA,CAAA,GAAA,QAAmB;AACrB,CAAC,EA3BW,4BAA4B,KAA5B,4BAA4B,GAAA,EAAA,CAAA,CAAA;AAo4GxC;IACY;AAAZ,CAAA,UAAY,gCAAgC,EAAA;AAC1C,IAAA,gCAAA,CAAA,aAAA,CAAA,GAAA,UAAwB;AACxB,IAAA,gCAAA,CAAA,YAAA,CAAA,GAAA,SAAsB;AACxB,CAAC,EAHW,gCAAgC,KAAhC,gCAAgC,GAAA,EAAA,CAAA,CAAA;AAK5C;IACY;AAAZ,CAAA,UAAY,0BAA0B,EAAA;AACpC,IAAA,0BAAA,CAAA,QAAA,CAAA,GAAA,KAAc;AACd,IAAA,0BAAA,CAAA,cAAA,CAAA,GAAA,WAA0B;AAC5B,CAAC,EAHW,0BAA0B,KAA1B,0BAA0B,GAAA,EAAA,CAAA,CAAA;AAKtC;IACY;AAAZ,CAAA,UAAY,2BAA2B,EAAA;AACrC,IAAA,2BAAA,CAAA,gBAAA,CAAA,GAAA,eAAgC;AAChC,IAAA,2BAAA,CAAA,UAAA,CAAA,GAAA,QAAmB;AACrB,CAAC,EAHW,2BAA2B,KAA3B,2BAA2B,GAAA,EAAA,CAAA,CAAA;AAqQvC;IACY;AAAZ,CAAA,UAAY,0BAA0B,EAAA;;AAEpC,IAAA,0BAAA,CAAA,eAAA,CAAA,GAAA,aAA6B;;AAE7B,IAAA,0BAAA,CAAA,QAAA,CAAA,GAAA,KAAc;;AAEd,IAAA,0BAAA,CAAA,aAAA,CAAA,GAAA,WAAyB;AAC3B,CAAC,EAPW,0BAA0B,KAA1B,0BAA0B,GAAA,EAAA,CAAA,CAAA;AA2gBtC;IACY;AAAZ,CAAA,UAAY,gCAAgC,EAAA;;AAE1C,IAAA,gCAAA,CAAA,aAAA,CAAA,GAAA,UAAwB;;AAExB,IAAA,gCAAA,CAAA,UAAA,CAAA,GAAA,OAAkB;;AAElB,IAAA,gCAAA,CAAA,UAAA,CAAA,GAAA,OAAkB;;AAElB,IAAA,gCAAA,CAAA,gBAAA,CAAA,GAAA,aAA8B;;AAE9B,IAAA,gCAAA,CAAA,YAAA,CAAA,GAAA,SAAsB;AACxB,CAAC,EAXW,gCAAgC,KAAhC,gCAAgC,GAAA,EAAA,CAAA,CAAA;AA+B5C;IACY;AAAZ,CAAA,UAAY,iCAAiC,EAAA;;AAE3C,IAAA,iCAAA,CAAA,eAAA,CAAA,GAAA,aAA6B;;AAE7B,IAAA,iCAAA,CAAA,2BAAA,CAAA,GAAA,0BAAsD;;AAEtD,IAAA,iCAAA,CAAA,eAAA,CAAA,GAAA,aAA6B;;AAE7B,IAAA,iCAAA,CAAA,yBAAA,CAAA,GAAA,uBAAiD;;AAEjD,IAAA,iCAAA,CAAA,oBAAA,CAAA,GAAA,kBAAuC;;AAEvC,IAAA,iCAAA,CAAA,gBAAA,CAAA,GAAA,cAA+B;;AAE/B,IAAA,iCAAA,CAAA,cAAA,CAAA,GAAA,WAA0B;AAC5B,CAAC,EAfW,iCAAiC,KAAjC,iCAAiC,GAAA,EAAA,CAAA,CAAA;AAiB7C;IACY;AAAZ,CAAA,UAAY,gCAAgC,EAAA;AAC1C,IAAA,gCAAA,CAAA,WAAA,CAAA,GAAA,QAAoB;AACpB,IAAA,gCAAA,CAAA,UAAA,CAAA,GAAA,OAAkB;AAClB,IAAA,gCAAA,CAAA,aAAA,CAAA,GAAA,UAAwB;AAC1B,CAAC,EAJW,gCAAgC,KAAhC,gCAAgC,GAAA,EAAA,CAAA,CAAA;AAgM5C;IACY;AAAZ,CAAA,UAAY,sCAAsC,EAAA;AAChD,IAAA,sCAAA,CAAA,UAAA,CAAA,GAAA,QAAmB;AACnB,IAAA,sCAAA,CAAA,SAAA,CAAA,GAAA,MAAgB;AAChB,IAAA,sCAAA,CAAA,QAAA,CAAA,GAAA,KAAc;AAChB,CAAC,EAJW,sCAAsC,KAAtC,sCAAsC,GAAA,EAAA,CAAA,CAAA;AAMlD;IACY;AAAZ,CAAA,UAAY,mCAAmC,EAAA;AAC7C,IAAA,mCAAA,CAAA,SAAA,CAAA,GAAA,MAAgB;AAChB,IAAA,mCAAA,CAAA,UAAA,CAAA,GAAA,OAAkB;AACpB,CAAC,EAHW,mCAAmC,KAAnC,mCAAmC,GAAA,EAAA,CAAA,CAAA;AA2iB/C;IACY;AAAZ,CAAA,UAAY,mBAAmB,EAAA;;AAE7B,IAAA,mBAAA,CAAA,SAAA,CAAA,GAAA,MAAgB;;AAEhB,IAAA,mBAAA,CAAA,SAAA,CAAA,GAAA,MAAgB;AAClB,CAAC,EALW,mBAAmB,KAAnB,mBAAmB,GAAA,EAAA,CAAA,CAAA;AAw7C/B;IACY;AAAZ,CAAA,UAAY,mBAAmB,EAAA;;AAE7B,IAAA,mBAAA,CAAA,cAAA,CAAA,GAAA,WAA0B;;AAE1B,IAAA,mBAAA,CAAA,YAAA,CAAA,GAAA,SAAsB;;AAEtB,IAAA,mBAAA,CAAA,eAAA,CAAA,GAAA,YAA4B;AAC9B,CAAC,EAPW,mBAAmB,KAAnB,mBAAmB,GAAA,EAAA,CAAA,CAAA;AAg7E/B;IACY;AAAZ,CAAA,UAAY,aAAa,EAAA;AACvB,IAAA,aAAA,CAAA,WAAA,CAAA,GAAA,QAAoB;AACpB,IAAA,aAAA,CAAA,WAAA,CAAA,GAAA,QAAoB;AACpB,IAAA,aAAA,CAAA,YAAA,CAAA,GAAA,SAAsB;AACtB,IAAA,aAAA,CAAA,cAAA,CAAA,GAAA,WAA0B;AAC1B,IAAA,aAAA,CAAA,WAAA,CAAA,GAAA,QAAoB;AACtB,CAAC,EANW,aAAa,KAAb,aAAa,GAAA,EAAA,CAAA,CAAA;;ACzyoBnB,MAAM,MAAM,GAA4B;AAC5C,IAAA,eAAe,EAAE;AACf,QAAA,6BAA6B,EAAE;YAC7B,YAAY;YACZ,WAAW;YACX,cAAc;YACd,eAAe;YACf,eAAe;YACf,YAAY;YACZ,WAAW;YACX,eAAe;YACf,qBAAqB;YACrB,0BAA0B;YAC1B,8BAA8B;YAC9B,0BAA0B;YAC1B,qBAAqB;YACrB,0CAA0C;YAC1C,gBAAgB;YAChB,sBAAsB;YACtB,iCAAiC;YACjC,wCAAwC;YACxC,6CAA6C;YAC7C,gCAAgC;YAChC,iCAAiC;YACjC,iDAAiD;YACjD,gCAAgC;YAChC,iCAAiC;YACjC,sCAAsC;YACtC,uCAAuC;YACvC,yBAAyB;YACzB,qCAAqC;YACrC,wBAAwB;YACxB,kCAAkC;YAClC,2BAA2B;YAC3B,wBAAwB;YACxB,4CAA4C;YAC5C,sBAAsB;YACtB,wCAAwC;YACxC,sCAAsC;YACtC,gCAAgC;YAChC,6CAA6C;YAC7C,2CAA2C;YAC3C,yCAAyC;YACzC,wCAAwC;YACxC,0BAA0B;YAC1B,8BAA8B;YAC9B,8BAA8B;YAC9B,oBAAoB;YACpB,oBAAoB;YACpB,wBAAwB;YACxB,4CAA4C;YAC5C,yBAAyB;YACzB,wCAAwC;YACxC,iCAAiC;YACjC,aAAa;YACb,+BAA+B;YAC/B,+BAA+B;YAC/B,uBAAuB;YACvB,2BAA2B;YAC3B,qBAAqB;YACrB,cAAc;YACd,2BAA2B;YAC3B,+BAA+B;YAC/B,mBAAmB;YACnB,yBAAyB;YACzB,cAAc;YACd,wBAAwB;YACxB,oBAAoB;YACpB,wBAAwB;YACxB,0BAA0B;YAC1B;AACD,SAAA;AACD,QAAA,wBAAwB,EAAE,EAAE;AAC5B,QAAA,2BAA2B,EAAE;YAC3B;AACD,SAAA;AACD,QAAA,6BAA6B,EAAE;YAC7B,YAAY;YACZ,WAAW;YACX,cAAc;YACd,eAAe;YACf,YAAY;YACZ,eAAe;YACf,0BAA0B;YAC1B;AACD,SAAA;AACD,QAAA,8BAA8B,EAAE;YAC9B,YAAY;YACZ,WAAW;YACX,cAAc;YACd,eAAe;YACf,eAAe;YACf,YAAY;YACZ,WAAW;YACX,eAAe;YACf,qBAAqB;YACrB,0BAA0B;YAC1B,8BAA8B;YAC9B,0BAA0B;YAC1B,qBAAqB;YACrB,0CAA0C;YAC1C,gBAAgB;YAChB,sBAAsB;YACtB,iCAAiC;YACjC,wCAAwC;YACxC,6CAA6C;YAC7C,gCAAgC;YAChC,iCAAiC;YACjC,iDAAiD;YACjD,gCAAgC;YAChC,iCAAiC;YACjC,sCAAsC;YACtC,uCAAuC;YACvC,yBAAyB;YACzB,qCAAqC;YACrC,wBAAwB;YACxB,kCAAkC;YAClC,2BAA2B;YAC3B,wBAAwB;YACxB,4CAA4C;YAC5C,sBAAsB;YACtB,wCAAwC;YACxC,sCAAsC;YACtC,gCAAgC;YAChC,6CAA6C;YAC7C,2CAA2C;YAC3C,yCAAyC;YACzC,wCAAwC;YACxC,0BAA0B;YAC1B,8BAA8B;YAC9B,8BAA8B;YAC9B,oBAAoB;YACpB,oBAAoB;YACpB,wBAAwB;YACxB,4CAA4C;YAC5C,yBAAyB;YACzB,wCAAwC;YACxC,iCAAiC;YACjC,aAAa;YACb,+BAA+B;YAC/B,+BAA+B;YAC/B,uBAAuB;YACvB,2BAA2B;YAC3B,qBAAqB;YACrB,cAAc;YACd,2BAA2B;YAC3B,+BAA+B;YAC/B,mBAAmB;YACnB,yBAAyB;YACzB,cAAc;YACd,wBAAwB;YACxB,oBAAoB;YACpB,wBAAwB;YACxB,0BAA0B;YAC1B;AACD,SAAA;AACD,QAAA,uBAAuB,EAAE;YACvB,YAAY;YACZ,WAAW;YACX,cAAc;YACd,eAAe;YACf,YAAY;YACZ,WAAW;YACX,eAAe;YACf,0BAA0B;YAC1B;AACD,SAAA;AACD,QAAA,kCAAkC,EAAE;YAClC;AACD,SAAA;AACD,QAAA,wCAAwC,EAAE;YACxC;AACD,SAAA;AACD,QAAA,YAAY,EAAE;YACZ,uBAAuB;YACvB,+BAA+B;YAC/B;AACD,SAAA;AACD,QAAA,4DAA4D,EAAE;YAC5D;AACD,SAAA;AACD,QAAA,qCAAqC,EAAE;YACrC,gCAAgC;YAChC;AACD,SAAA;AACD,QAAA,mDAAmD,EAAE;YACnD,gCAAgC;YAChC;AACD,SAAA;AACD,QAAA,4CAA4C,EAAE;YAC5C,gCAAgC;YAChC;AACD,SAAA;AACD,QAAA,yCAAyC,EAAE;YACzC,gCAAgC;YAChC;AACD,SAAA;AACD,QAAA,yDAAyD,EAAE;YACzD;AACD,SAAA;AACD,QAAA,6CAA6C,EAAE;YAC7C;AACD,SAAA;AACD,QAAA,8CAA8C,EAAE;YAC9C,4BAA4B;YAC5B,wCAAwC;YACxC,gCAAgC;YAChC,iCAAiC;YACjC,gCAAgC;YAChC,iCAAiC;YACjC,6BAA6B;YAC7B;AACD,SAAA;AACD,QAAA,+CAA+C,EAAE;YAC/C;AACD,SAAA;AACD,QAAA,4DAA4D,EAAE;YAC5D;AACD,SAAA;AACD,QAAA,4DAA4D,EAAE;YAC5D;AACD,SAAA;AACD,QAAA,sCAAsC,EAAE;YACtC,iCAAiC;YACjC;AACD,SAAA;AACD,QAAA,kEAAkE,EAAE;YAClE;AACD,SAAA;AACD,QAAA,2CAA2C,EAAE;YAC3C,iCAAiC;YACjC;AACD,SAAA;AACD,QAAA,2CAA2C,EAAE;YAC3C,iCAAiC;YACjC;AACD,SAAA;AACD,QAAA,qDAAqD,EAAE;YACrD,iCAAiC;YACjC;AACD,SAAA;AACD,QAAA,qDAAqD,EAAE;YACrD,iCAAiC;YACjC;AACD,SAAA;AACD,QAAA,yCAAyC,EAAE;YACzC,iCAAiC;YACjC;AACD,SAAA;AACD,QAAA,wCAAwC,EAAE;YACxC;AACD,SAAA;AACD,QAAA,sCAAsC,EAAE;YACtC;AACD,SAAA;AACD,QAAA,8BAA8B,EAAE;YAC9B,6CAA6C;YAC7C,iDAAiD;YACjD,qCAAqC;YACrC,6CAA6C;YAC7C,4CAA4C;YAC5C,+BAA+B;YAC/B,2BAA2B;YAC3B;AACD,SAAA;AACD,QAAA,kCAAkC,EAAE;YAClC,6CAA6C;YAC7C,iDAAiD;YACjD,qCAAqC;YACrC,6CAA6C;YAC7C,4CAA4C;YAC5C,+BAA+B;YAC/B,2BAA2B;YAC3B;AACD,SAAA;AACD,QAAA,uBAAuB,EAAE;YACvB,eAAe;YACf,eAAe;YACf,kBAAkB;YAClB,WAAW;YACX,qBAAqB;YACrB,0BAA0B;YAC1B,qBAAqB;YACrB,0CAA0C;YAC1C,gBAAgB;YAChB,sBAAsB;YACtB,4BAA4B;YAC5B,iCAAiC;YACjC,wCAAwC;YACxC,qCAAqC;YACrC,6CAA6C;YAC7C,gCAAgC;YAChC,iCAAiC;YACjC,iDAAiD;YACjD,gCAAgC;YAChC,iCAAiC;YACjC,6BAA6B;YAC7B,sCAAsC;YACtC,uCAAuC;YACvC,yBAAyB;YACzB,qCAAqC;YACrC,wBAAwB;YACxB,qBAAqB;YACrB,kCAAkC;YAClC,2BAA2B;YAC3B,wBAAwB;YACxB,4CAA4C;YAC5C,sBAAsB;YACtB,wCAAwC;YACxC,sCAAsC;YACtC,gCAAgC;YAChC,gCAAgC;YAChC,6CAA6C;YAC7C,2CAA2C;YAC3C,yCAAyC;YACzC,wCAAwC;YACxC,0BAA0B;YAC1B,8BAA8B;YAC9B,8BAA8B;YAC9B,wBAAwB;YACxB,oBAAoB;YACpB,oBAAoB;YACpB,wBAAwB;YACxB,4CAA4C;YAC5C,yBAAyB;YACzB,wCAAwC;YACxC,iCAAiC;YACjC,uBAAuB;YACvB,aAAa;YACb,+BAA+B;YAC/B,oCAAoC;YACpC,iCAAiC;YACjC,+BAA+B;YAC/B,uBAAuB;YACvB,2BAA2B;YAC3B,qBAAqB;YACrB,cAAc;YACd,2BAA2B;YAC3B,+BAA+B;YAC/B,mBAAmB;YACnB,yBAAyB;YACzB,cAAc;YACd,wBAAwB;YACxB,oBAAoB;YACpB,wBAAwB;YACxB,0BAA0B;YAC1B,uBAAuB;YACvB;AACD,SAAA;AACD,QAAA,8BAA8B,EAAE;YAC9B,YAAY;YACZ,WAAW;YACX,cAAc;YACd,eAAe;YACf,eAAe;YACf,YAAY;YACZ,WAAW;YACX,eAAe;YACf,qBAAqB;YACrB,0BAA0B;YAC1B,8BAA8B;YAC9B,0BAA0B;YAC1B,qBAAqB;YACrB,0CAA0C;YAC1C,gBAAgB;YAChB,sBAAsB;YACtB,iCAAiC;YACjC,wCAAwC;YACxC,6CAA6C;YAC7C,gCAAgC;YAChC,iCAAiC;YACjC,iDAAiD;YACjD,gCAAgC;YAChC,iCAAiC;YACjC,sCAAsC;YACtC,uCAAuC;YACvC,yBAAyB;YACzB,qCAAqC;YACrC,wBAAwB;YACxB,kCAAkC;YAClC,2BAA2B;YAC3B,wBAAwB;YACxB,4CAA4C;YAC5C,sBAAsB;YACtB,wCAAwC;YACxC,sCAAsC;YACtC,gCAAgC;YAChC,6CAA6C;YAC7C,2CAA2C;YAC3C,yCAAyC;YACzC,wCAAwC;YACxC,0BAA0B;YAC1B,8BAA8B;YAC9B,8BAA8B;YAC9B,oBAAoB;YACpB,oBAAoB;YACpB,wBAAwB;YACxB,4CAA4C;YAC5C,yBAAyB;YACzB,wCAAwC;YACxC,iCAAiC;YACjC,aAAa;YACb,+BAA+B;YAC/B,+BAA+B;YAC/B,uBAAuB;YACvB,2BAA2B;YAC3B,qBAAqB;YACrB,cAAc;YACd,2BAA2B;YAC3B,+BAA+B;YAC/B,mBAAmB;YACnB,yBAAyB;YACzB,cAAc;YACd,wBAAwB;YACxB,oBAAoB;YACpB,wBAAwB;YACxB,0BAA0B;YAC1B;AACD,SAAA;AACD,QAAA,6BAA6B,EAAE;YAC7B,YAAY;YACZ,WAAW;YACX,cAAc;YACd,eAAe;YACf,eAAe;YACf,YAAY;YACZ,WAAW;YACX,eAAe;YACf,qBAAqB;YACrB,0BAA0B;YAC1B,8BAA8B;YAC9B,0BAA0B;YAC1B,qBAAqB;YACrB,0CAA0C;YAC1C,gBAAgB;YAChB,sBAAsB;YACtB,iCAAiC;YACjC,wCAAwC;YACxC,6CAA6C;YAC7C,gCAAgC;YAChC,iCAAiC;YACjC,iDAAiD;YACjD,gCAAgC;YAChC,iCAAiC;YACjC,sCAAsC;YACtC,uCAAuC;YACvC,yBAAyB;YACzB,qCAAqC;YACrC,wBAAwB;YACxB,kCAAkC;YAClC,2BAA2B;YAC3B,wBAAwB;YACxB,4CAA4C;YAC5C,sBAAsB;YACtB,wCAAwC;YACxC,sCAAsC;YACtC,gCAAgC;YAChC,6CAA6C;YAC7C,2CAA2C;YAC3C,yCAAyC;YACzC,wCAAwC;YACxC,0BAA0B;YAC1B,8BAA8B;YAC9B,8BAA8B;YAC9B,oBAAoB;YACpB,oBAAoB;YACpB,wBAAwB;YACxB,4CAA4C;YAC5C,yBAAyB;YACzB,wCAAwC;YACxC,iCAAiC;YACjC,aAAa;YACb,+BAA+B;YAC/B,+BAA+B;YAC/B,uBAAuB;YACvB,2BAA2B;YAC3B,qBAAqB;YACrB,cAAc;YACd,2BAA2B;YAC3B,+BAA+B;YAC/B,mBAAmB;YACnB,yBAAyB;YACzB,cAAc;YACd,wBAAwB;YACxB,oBAAoB;YACpB,wBAAwB;YACxB,0BAA0B;YAC1B;AACD,SAAA;AACD,QAAA,+BAA+B,EAAE;YAC/B,YAAY;YACZ,WAAW;YACX,cAAc;YACd,eAAe;YACf,eAAe;YACf,YAAY;YACZ,WAAW;YACX,eAAe;YACf,qBAAqB;YACrB,0BAA0B;YAC1B,8BAA8B;YAC9B,0BAA0B;YAC1B,qBAAqB;YACrB,0CAA0C;YAC1C,gBAAgB;YAChB,sBAAsB;YACtB,iCAAiC;YACjC,wCAAwC;YACxC,6CAA6C;YAC7C,gCAAgC;YAChC,iCAAiC;YACjC,iDAAiD;YACjD,gCAAgC;YAChC,iCAAiC;YACjC,sCAAsC;YACtC,uCAAuC;YACvC,yBAAyB;YACzB,qCAAqC;YACrC,wBAAwB;YACxB,kCAAkC;YAClC,2BAA2B;YAC3B,wBAAwB;YACxB,4CAA4C;YAC5C,sBAAsB;YACtB,wCAAwC;YACxC,sCAAsC;YACtC,gCAAgC;YAChC,6CAA6C;YAC7C,2CAA2C;YAC3C,yCAAyC;YACzC,wCAAwC;YACxC,0BAA0B;YAC1B,8BAA8B;YAC9B,8BAA8B;YAC9B,oBAAoB;YACpB,oBAAoB;YACpB,wBAAwB;YACxB,4CAA4C;YAC5C,yBAAyB;YACzB,wCAAwC;YACxC,iCAAiC;YACjC,aAAa;YACb,+BAA+B;YAC/B,+BAA+B;YAC/B,uBAAuB;YACvB,2BAA2B;YAC3B,qBAAqB;YACrB,cAAc;YACd,2BAA2B;YAC3B,+BAA+B;YAC/B,mBAAmB;YACnB,yBAAyB;YACzB,cAAc;YACd,wBAAwB;YACxB,oBAAoB;YACpB,wBAAwB;YACxB,0BAA0B;YAC1B;AACD,SAAA;AACD,QAAA,6BAA6B,EAAE;YAC7B,YAAY;YACZ,WAAW;YACX,cAAc;YACd,eAAe;YACf,eAAe;YACf,YAAY;YACZ,WAAW;YACX,eAAe;YACf,qBAAqB;YACrB,0BAA0B;YAC1B,8BAA8B;YAC9B,0BAA0B;YAC1B,qBAAqB;YACrB,0CAA0C;YAC1C,gBAAgB;YAChB,sBAAsB;YACtB,iCAAiC;YACjC,wCAAwC;YACxC,6CAA6C;YAC7C,gCAAgC;YAChC,iCAAiC;YACjC,iDAAiD;YACjD,gCAAgC;YAChC,iCAAiC;YACjC,sCAAsC;YACtC,uCAAuC;YACvC,yBAAyB;YACzB,qCAAqC;YACrC,wBAAwB;YACxB,kCAAkC;YAClC,2BAA2B;YAC3B,wBAAwB;YACxB,4CAA4C;YAC5C,sBAAsB;YACtB,wCAAwC;YACxC,sCAAsC;YACtC,gCAAgC;YAChC,6CAA6C;YAC7C,2CAA2C;YAC3C,yCAAyC;YACzC,wCAAwC;YACxC,0BAA0B;YAC1B,8BAA8B;YAC9B,8BAA8B;YAC9B,oBAAoB;YACpB,oBAAoB;YACpB,wBAAwB;YACxB,4CAA4C;YAC5C,yBAAyB;YACzB,wCAAwC;YACxC,iCAAiC;YACjC,aAAa;YACb,+BAA+B;YAC/B,+BAA+B;YAC/B,uBAAuB;YACvB,2BAA2B;YAC3B,qBAAqB;YACrB,cAAc;YACd,2BAA2B;YAC3B,+BAA+B;YAC/B,mBAAmB;YACnB,yBAAyB;YACzB,cAAc;YACd,wBAAwB;YACxB,oBAAoB;YACpB,wBAAwB;YACxB,0BAA0B;YAC1B;AACD,SAAA;AACD,QAAA,yCAAyC,EAAE;YACzC,4CAA4C;YAC5C,wCAAwC;YACxC,sCAAsC;YACtC,2CAA2C;YAC3C,yCAAyC;YACzC;AACD,SAAA;AACD,QAAA,iCAAiC,EAAE;YACjC,2BAA2B;YAC3B,wBAAwB;YACxB;AACD,SAAA;AACD,QAAA,gCAAgC,EAAE;YAChC,0BAA0B;YAC1B,kCAAkC;YAClC;AACD,SAAA;AACD,QAAA,6CAA6C,EAAE;YAC7C,+BAA+B;YAC/B;AACD,SAAA;AACD,QAAA,kDAAkD,EAAE;YAClD,+BAA+B;YAC/B;AACD,SAAA;AACD,QAAA,0CAA0C,EAAE;YAC1C,oCAAoC;YACpC,+BAA+B;YAC/B,uBAAuB;YACvB;AACD,SAAA;AACD,QAAA,mCAAmC,EAAE;YACnC,uBAAuB;YACvB;AACD,SAAA;AACD,QAAA,uCAAuC,EAAE;YACvC;AACD,SAAA;AACD,QAAA,+BAA+B,EAAE;YAC/B;AACD,SAAA;AACD,QAAA,sCAAsC,EAAE;YACtC;AACD,SAAA;AACD,QAAA,oCAAoC,EAAE;YACpC,oBAAoB;YACpB;AACD,SAAA;AACD,QAAA,wCAAwC,EAAE;YACxC;AACD,SAAA;AACD,QAAA,mCAAmC,EAAE;YACnC;AACD,SAAA;AACD,QAAA,4BAA4B,EAAE;YAC5B,mBAAmB;YACnB,yBAAyB;YACzB,cAAc;YACd,wBAAwB;YACxB,oBAAoB;YACpB,wBAAwB;YACxB,0BAA0B;YAC1B;AACD;AACF;;;ACl2CI,MAAM,8BAA8B,GAAG,GAAG,CAAA;;;;;;;;;;;;;;;;;;;;AAwBzC,MAAO,yBAA0B,SAAQA,EAAM,CAAC,KAAwE,CAAA;IAC5H,QAAQ,GAAG,8BAA8B;AAEzC,IAAA,WAAA,CAAY,MAAqB,EAAA;QAC/B,KAAK,CAAC,MAAM,CAAC;IACf;uGALW,yBAAyB,EAAA,IAAA,EAAA,CAAA,EAAA,KAAA,EAAA,EAAA,CAAA,MAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,UAAA,EAAA,CAAA;AAAzB,IAAA,OAAA,KAAA,GAAA,EAAA,CAAA,qBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,yBAAyB,cAFxB,MAAM,EAAA,CAAA;;2FAEP,yBAAyB,EAAA,UAAA,EAAA,CAAA;kBAHrC,UAAU;AAAC,YAAA,IAAA,EAAA,CAAA;AACV,oBAAA,UAAU,EAAE;AACb,iBAAA;;;ACvBI,MAAM,gCAAgC,GAAG,GAAG,CAAA;;;;;;;;;;;;;;;;;;;;AAwB3C,MAAO,2BAA4B,SAAQA,EAAM,CAAC,KAA4E,CAAA;IAClI,QAAQ,GAAG,gCAAgC;AAE3C,IAAA,WAAA,CAAY,MAAqB,EAAA;QAC/B,KAAK,CAAC,MAAM,CAAC;IACf;uGALW,2BAA2B,EAAA,IAAA,EAAA,CAAA,EAAA,KAAA,EAAA,EAAA,CAAA,MAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,UAAA,EAAA,CAAA;AAA3B,IAAA,OAAA,KAAA,GAAA,EAAA,CAAA,qBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,2BAA2B,cAF1B,MAAM,EAAA,CAAA;;2FAEP,2BAA2B,EAAA,UAAA,EAAA,CAAA;kBAHvC,UAAU;AAAC,YAAA,IAAA,EAAA,CAAA;AACV,oBAAA,UAAU,EAAE;AACb,iBAAA;;;ACrBI,MAAM,yCAAyC,GAAG,GAAG,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAmCpD,MAAO,oCAAqC,SAAQA,EAAM,CAAC,KAA8F,CAAA;IAC7J,QAAQ,GAAG,yCAAyC;AAEpD,IAAA,WAAA,CAAY,MAAqB,EAAA;QAC/B,KAAK,CAAC,MAAM,CAAC;IACf;uGALW,oCAAoC,EAAA,IAAA,EAAA,CAAA,EAAA,KAAA,EAAA,EAAA,CAAA,MAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,UAAA,EAAA,CAAA;AAApC,IAAA,OAAA,KAAA,GAAA,EAAA,CAAA,qBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,oCAAoC,cAFnC,MAAM,EAAA,CAAA;;2FAEP,oCAAoC,EAAA,UAAA,EAAA,CAAA;kBAHhD,UAAU;AAAC,YAAA,IAAA,EAAA,CAAA;AACV,oBAAA,UAAU,EAAE;AACb,iBAAA;;;AChCI,MAAM,qBAAqB,GAAG,GAAG,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAqChC,MAAO,gBAAiB,SAAQA,EAAM,CAAC,KAAsD,CAAA;IACjG,QAAQ,GAAG,qBAAqB;AAEhC,IAAA,WAAA,CAAY,MAAqB,EAAA;QAC/B,KAAK,CAAC,MAAM,CAAC;IACf;uGALW,gBAAgB,EAAA,IAAA,EAAA,CAAA,EAAA,KAAA,EAAA,EAAA,CAAA,MAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,UAAA,EAAA,CAAA;AAAhB,IAAA,OAAA,KAAA,GAAA,EAAA,CAAA,qBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,gBAAgB,cAFf,MAAM,EAAA,CAAA;;2FAEP,gBAAgB,EAAA,UAAA,EAAA,CAAA;kBAH5B,UAAU;AAAC,YAAA,IAAA,EAAA,CAAA;AACV,oBAAA,UAAU,EAAE;AACb,iBAAA;;;ACzCI,MAAM,yBAAyB,GAAG,GAAG,CAAA;;;;;;;;;;;;;;;;;;;;AAwBpC,MAAO,oBAAqB,SAAQA,EAAM,CAAC,KAA8D,CAAA;IAC7G,QAAQ,GAAG,yBAAyB;AAEpC,IAAA,WAAA,CAAY,MAAqB,EAAA;QAC/B,KAAK,CAAC,MAAM,CAAC;IACf;uGALW,oBAAoB,EAAA,IAAA,EAAA,CAAA,EAAA,KAAA,EAAA,EAAA,CAAA,MAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,UAAA,EAAA,CAAA;AAApB,IAAA,OAAA,KAAA,GAAA,EAAA,CAAA,qBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,oBAAoB,cAFnB,MAAM,EAAA,CAAA;;2FAEP,oBAAoB,EAAA,UAAA,EAAA,CAAA;kBAHhC,UAAU;AAAC,YAAA,IAAA,EAAA,CAAA;AACV,oBAAA,UAAU,EAAE;AACb,iBAAA;;;ACEH;;;;;;;;;;;AAWG;MACU,qBAAqB,GAAG,IAAI,cAAc,CACrD,uBAAuB;;MChCZ,wBAAwB,CAAA;AAClB,IAAA,iCAAiC,GAAG,MAAM,CAAC,oCAAoC,CAAC;IAE1F,sBAAsB,CAC3B,QAAgB,EAChB,MAAe,EACf,KAAK,GAAG,IAAI,EACZ,KAAc,EAAA;AAEd,QAAA,OAAO,IAAI,CAAC,iCAAiC,CAAC,KAAK,CAAC;AAClD,YAAA,SAAS,EAAE;AACT,gBAAA,MAAM,EAAE,QAAQ;AAChB,gBAAA,MAAM,EAAE,MAAM;AACd,gBAAA,KAAK,EAAE,KAAK;AACZ,gBAAA,KAAK,EAAE;AACR,aAAA;AACD,YAAA,WAAW,EAAE;AACd,SAAA,CAAC,CAAC,IAAI,CACL,GAAG,CAAC,MAAM,IAAG;AACX,YAAA,MAAM,IAAI,GAAG,MAAM,CAAC,IAAI,EAAE,eAAe,EAAE,KAAK,EAAE,KAAK,GAAG,CAAC,CAAC;YAC5D,IAAI,CAAC,IAAI,EAAE;gBACT,OAAO,EAAE,KAAK,EAAE,EAAE,EAAE,UAAU,EAAE,CAAC,EAAE;YACrC;YAEA,MAAM,KAAK,GAAG,CAAC,IAAI,CAAC,qBAAqB,EAAE,KAAK,IAAI,EAAE;iBACnD,MAAM,CAAC,CAAC,IAAI,KAAuC,IAAI,KAAK,IAAI;AAChE,iBAAA,GAAG,CAAC,IAAI,KAAK;gBACZ,aAAa,EAAE,IAAI,CAAC,aAAa;gBACjC,kBAAkB,EAAE,IAAI,CAAC;AAC1B,aAAA,CAAC,CAAC;YAEL,OAAO;gBACL,KAAK;AACL,gBAAA,UAAU,EAAE,IAAI,CAAC,qBAAqB,EAAE,UAAU,IAAI;aACvD;QACH,CAAC,CAAC,CACH;IACH;uGArCW,wBAAwB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,UAAA,EAAA,CAAA;AAAxB,IAAA,OAAA,KAAA,GAAA,EAAA,CAAA,qBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,wBAAwB,cAFvB,MAAM,EAAA,CAAA;;2FAEP,wBAAwB,EAAA,UAAA,EAAA,CAAA;kBAHpC,UAAU;AAAC,YAAA,IAAA,EAAA,CAAA;AACV,oBAAA,UAAU,EAAE;AACb,iBAAA;;;MCHY,sBAAsB,CAAA;AAChB,IAAA,sBAAsB,GAAG,MAAM,CAAC,yBAAyB,CAAC;AAC1D,IAAA,wBAAwB,GAAG,MAAM,CAAC,2BAA2B,CAAC;AAE/E;;;;AAIG;AACI,IAAA,mBAAmB,CAAC,QAAgB,EAAA;AACzC,QAAA,OAAO,IAAI,CAAC,sBAAsB,CAAC,KAAK,CAAC;AACvC,YAAA,SAAS,EAAE;AACT,gBAAA,QAAQ,EAAE,QAAQ;AAClB,gBAAA,KAAK,EAAE;AACR,aAAA;AACD,YAAA,WAAW,EAAE;AACd,SAAA,CAAC,CAAC,IAAI,CACL,GAAG,CAAC,MAAM,IAAG;AACX,YAAA,MAAM,IAAI,GAAG,MAAM,CAAC,IAAI,EAAE,eAAe,EAAE,KAAK,EAAE,KAAK,GAAG,CAAC,CAAC;AAC5D,YAAA,IAAI,CAAC,IAAI,EAAE,UAAU,EAAE,KAAK,EAAE;AAC5B,gBAAA,OAAO,CAAC,IAAI,CAAC,YAAY,QAAQ,CAAA,gCAAA,CAAkC,CAAC;AACpE,gBAAA,OAAO,EAAE;YACX;AACA,YAAA,OAAO,IAAI,CAAC,UAAU,CAAC;iBACpB,MAAM,CAAC,CAAC,IAAI,KAAuC,IAAI,KAAK,IAAI;AAChE,iBAAA,GAAG,CAAC,IAAI,KAAK;gBACZ,aAAa,EAAE,IAAI,CAAC,aAAa;gBACjC,kBAAkB,EAAE,IAAI,CAAC;AAC1B,aAAA,CAAC,CAAC;AACP,QAAA,CAAC,CAAC,EACF,UAAU,CAAC,GAAG,IAAG;YACf,OAAO,CAAC,KAAK,CAAC,CAAA,uCAAA,EAA0C,QAAQ,CAAA,EAAA,CAAI,EAAE,GAAG,CAAC;AAC1E,YAAA,OAAO,EAAE,CAAC,EAAE,CAAC;QACf,CAAC,CAAC,CACH;IACH;AAEA;;;;AAIG;AACI,IAAA,qBAAqB,CAAC,UAAkB,EAAA;AAC7C,QAAA,OAAO,IAAI,CAAC,wBAAwB,CAAC,KAAK,CAAC;AACzC,YAAA,SAAS,EAAE;AACT,gBAAA,UAAU,EAAE,UAAU;AACtB,gBAAA,KAAK,EAAE;AACR,aAAA;AACD,YAAA,WAAW,EAAE;AACd,SAAA,CAAC,CAAC,IAAI,CACL,GAAG,CAAC,MAAM,IAAG;AACX,YAAA,MAAM,MAAM,GAAG,MAAM,CAAC,IAAI,EAAE,eAAe,EAAE,OAAO,EAAE,KAAK,GAAG,CAAC,CAAC;AAChE,YAAA,IAAI,CAAC,MAAM,EAAE,UAAU,EAAE,KAAK,EAAE;AAC9B,gBAAA,OAAO,CAAC,IAAI,CAAC,cAAc,UAAU,CAAA,gCAAA,CAAkC,CAAC;AACxE,gBAAA,OAAO,EAAE;YACX;AACA,YAAA,OAAO,MAAM,CAAC,UAAU,CAAC;iBACtB,MAAM,CAAC,CAAC,IAAI,KAAuC,IAAI,KAAK,IAAI;AAChE,iBAAA,GAAG,CAAC,IAAI,KAAK;gBACZ,aAAa,EAAE,IAAI,CAAC,aAAa;gBACjC,kBAAkB,EAAE,IAAI,CAAC;AAC1B,aAAA,CAAC,CAAC;AACP,QAAA,CAAC,CAAC,EACF,UAAU,CAAC,GAAG,IAAG;YACf,OAAO,CAAC,KAAK,CAAC,CAAA,yCAAA,EAA4C,UAAU,CAAA,EAAA,CAAI,EAAE,GAAG,CAAC;AAC9E,YAAA,OAAO,EAAE,CAAC,EAAE,CAAC;QACf,CAAC,CAAC,CACH;IACH;uGApEW,sBAAsB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,UAAA,EAAA,CAAA;AAAtB,IAAA,OAAA,KAAA,GAAA,EAAA,CAAA,qBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,sBAAsB,cAFrB,MAAM,EAAA,CAAA;;2FAEP,sBAAsB,EAAA,UAAA,EAAA,CAAA;kBAHlC,UAAU;AAAC,YAAA,IAAA,EAAA,CAAA;AACV,oBAAA,UAAU,EAAE;AACb,iBAAA;;;ACDM,MAAM,gCAAgC,GAAG,GAAG,CAAA;;;;;;;;;;;;;KAa9C;AAKG,MAAO,2BAA4B,SAAQA,EAAM,CAAC,KAA4E,CAAA;IAClI,QAAQ,GAAG,gCAAgC;AAE3C,IAAA,WAAA,CAAY,MAAqB,EAAA;QAC/B,KAAK,CAAC,MAAM,CAAC;IACf;uGALW,2BAA2B,EAAA,IAAA,EAAA,CAAA,EAAA,KAAA,EAAA,EAAA,CAAA,MAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,UAAA,EAAA,CAAA;AAA3B,IAAA,OAAA,KAAA,GAAA,EAAA,CAAA,qBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,2BAA2B,cAF1B,MAAM,EAAA,CAAA;;2FAEP,2BAA2B,EAAA,UAAA,EAAA,CAAA;kBAHvC,UAAU;AAAC,YAAA,IAAA,EAAA,CAAA;AACV,oBAAA,UAAU,EAAE;AACb,iBAAA;;;MCMU,qBAAqB,CAAA;AACf,IAAA,aAAa,GAAG,MAAM,CAAC,gBAAgB,CAAC;AACxC,IAAA,wBAAwB,GAAG,MAAM,CAAC,2BAA2B,CAAC;AAE/E;;;;AAIG;AACI,IAAA,qBAAqB,CAAC,UAAkB,EAAA;AAC7C,QAAA,OAAO,IAAI,CAAC,wBAAwB,CAAC,KAAK,CAAC;YACzC,SAAS,EAAE,EAAE,UAAU,EAAE;AACzB,YAAA,WAAW,EAAE;AACd,SAAA,CAAC,CAAC,IAAI,CACL,GAAG,CAAC,MAAM,IAAG;YACX,MAAM,KAAK,GAAG,MAAM,CAAC,IAAI,EAAE,eAAe,EAAE,KAAK,EAAE,KAAK;YACxD,IAAI,CAAC,KAAK,IAAI,KAAK,CAAC,MAAM,KAAK,CAAC,EAAE;AAChC,gBAAA,OAAO,IAAI;YACb;AAEA,YAAA,MAAM,IAAI,GAAG,KAAK,CAAC,CAAC,CAAC;YACrB,IAAI,CAAC,IAAI,EAAE;AACT,gBAAA,OAAO,IAAI;YACb;;YAGA,OAAO;AACL,gBAAA,QAAQ,EAAE,IAAI,CAAC,QAAQ,CAAC,QAAQ;gBAChC,UAAU,EAAE,IAAI,CAAC,UAAU;AAC3B,gBAAA,UAAU,EAAE,KAAK;AACjB,gBAAA,OAAO,EAAE;aACV;QACH,CAAC,CAAC,CACH;IACH;AAEA;;;;AAIG;IACI,UAAU,CAAC,UAKd,EAAE,EAAA;AACJ,QAAA,MAAM,EAAE,UAAU,EAAE,UAAU,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,GAAG,CAAC,EAAE,GAAG,OAAO;AAEhE,QAAA,OAAO,IAAI,CAAC,aAAa,CAAC,KAAK,CAAC;AAC9B,YAAA,SAAS,EAAE;AACT,gBAAA,UAAU,EAAE,UAAU,IAAI,UAAU,CAAC,MAAM,GAAG,CAAC,GAAG,UAAU,GAAG,IAAI;AACnE,gBAAA,KAAK,EAAE,KAAK;AACZ,gBAAA,KAAK,EAAE,OAAO,CAAC,cAAc,CAAC,IAAI,CAAC;AACnC,gBAAA,YAAY,EAAE,UAAU,GAAG;oBACzB,IAAI,EAAE,oBAAoB,CAAC,kBAAkB;oBAC7C,cAAc,EAAE,CAAC,UAAU,CAAC;AAC5B,oBAAA,UAAU,EAAE;iBACb,GAAG;AACL,aAAA;AACD,YAAA,WAAW,EAAE;AACd,SAAA,CAAC,CAAC,IAAI,CACL,GAAG,CAAC,MAAM,IAAG;YACX,MAAM,KAAK,GAAG,MAAM,CAAC,IAAI,EAAE,eAAe,EAAE,KAAK;YACjD,IAAI,CAAC,KAAK,EAAE;gBACV,OAAO,EAAE,KAAK,EAAE,EAAE,EAAE,UAAU,EAAE,CAAC,EAAE;YACrC;YAEA,MAAM,KAAK,GAAG,CAAC,KAAK,CAAC,KAAK,IAAI,EAAE;iBAC7B,MAAM,CAAC,CAAC,IAAI,KAA4B,IAAI,KAAK,IAAI;AACrD,iBAAA,GAAG,CAAC,IAAI,IAAI,IAAI,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAC;YAE5C,OAAO;gBACL,KAAK;AACL,gBAAA,UAAU,EAAE,KAAK,CAAC,UAAU,IAAI;aACjC;QACH,CAAC,CAAC,CACH;IACH;AAEQ,IAAA,iBAAiB,CAAC,IAAmB,EAAA;QAC3C,OAAO;AACL,YAAA,QAAQ,EAAE,IAAI,CAAC,QAAQ,CAAC,QAAQ;YAChC,UAAU,EAAE,IAAI,CAAC,UAAU;AAC3B,YAAA,gBAAgB,EAAE,IAAI,CAAC,QAAQ,EAAE,QAAQ,CAAC,QAAQ;AAClD,YAAA,kBAAkB,EAAE,IAAI,CAAC,QAAQ,EAAE,UAAU;YAC7C,UAAU,EAAE,IAAI,CAAC,UAAU;YAC3B,OAAO,EAAE,IAAI,CAAC,OAAO;AACrB,YAAA,WAAW,EAAE,IAAI,CAAC,WAAW,IAAI;SAClC;IACH;uGA1FW,qBAAqB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,UAAA,EAAA,CAAA;AAArB,IAAA,OAAA,KAAA,GAAA,EAAA,CAAA,qBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,qBAAqB,cAFpB,MAAM,EAAA,CAAA;;2FAEP,qBAAqB,EAAA,UAAA,EAAA,CAAA;kBAHjC,UAAU;AAAC,YAAA,IAAA,EAAA,CAAA;AACV,oBAAA,UAAU,EAAE;AACb,iBAAA;;;ACvBD;;AAEG;MAIU,cAAc,CAAA;AACR,IAAA,iBAAiB,GAAG,MAAM,CAAC,oBAAoB,CAAC;AAEjE;;;;AAIG;IACI,MAAM,gBAAgB,CAAC,OAAe,EAAA;QAC3C,MAAM,MAAM,GAAG,MAAM,cAAc,CACjC,IAAI,CAAC,iBAAiB,CAAC,KAAK,CAAC,EAAE,SAAS,EAAE,EAAE,KAAK,EAAE,OAAO,EAAE,EAAE,CAAC,CAChE;QAED,IAAI,MAAM,EAAE,IAAI,EAAE,eAAe,EAAE,MAAM,EAAE,KAAK,EAAE;AAChD,YAAA,OAAO,MAAM,CAAC,IAAI,CAAC,eAAe,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC;QAC5D;AAEA,QAAA,OAAO,KAAK;IACd;AAEA;;;;;AAKG;AACI,IAAA,MAAM,8BAA8B,CAAC,OAAe,EAAE,UAAkB,EAAA;QAC7E,MAAM,MAAM,GAAG,MAAM,cAAc,CACjC,IAAI,CAAC,iBAAiB,CAAC,KAAK,CAAC,EAAE,SAAS,EAAE,EAAE,KAAK,EAAE,OAAO,EAAE,EAAE,CAAC,CAChE;QAED,MAAM,KAAK,GAAG,MAAM,EAAE,IAAI,EAAE,eAAe,EAAE,MAAM,EAAE,KAAK;QAC1D,IAAI,CAAC,KAAK,IAAI,KAAK,CAAC,MAAM,KAAK,CAAC,EAAE;AAChC,YAAA,OAAO,KAAK;QACd;AAEA,QAAA,MAAM,KAAK,GAAG,KAAK,CAAC,CAAC,CAAC;AACtB,QAAA,IAAI,CAAC,KAAK,EAAE,EAAE,EAAE,OAAO,EAAE;AACvB,YAAA,OAAO,KAAK;QACd;AAEA,QAAA,MAAM,YAAY,GAAG,IAAI,CAAC,YAAY,CAAC,KAAK,CAAC,EAAE,CAAC,OAAO,CAAC;QACxD,MAAM,eAAe,GAAG,IAAI,CAAC,YAAY,CAAC,UAAU,CAAC;AAErD,QAAA,IAAI,CAAC,YAAY,IAAI,CAAC,eAAe,EAAE;AACrC,YAAA,OAAO,CAAC,IAAI,CAAC,CAAA,+BAAA,EAAkC,KAAK,CAAC,EAAE,CAAC,OAAO,CAAA,WAAA,EAAc,UAAU,CAAA,CAAE,CAAC;AAC1F,YAAA,OAAO,KAAK;QACd;QAEA,OAAO,IAAI,CAAC,eAAe,CAAC,YAAY,EAAE,eAAe,CAAC,IAAI,CAAC;IACjE;AAEA;;;;AAIG;IACI,MAAM,eAAe,CAAC,OAAe,EAAA;QAC1C,MAAM,MAAM,GAAG,MAAM,cAAc,CACjC,IAAI,CAAC,iBAAiB,CAAC,KAAK,CAAC,EAAE,SAAS,EAAE,EAAE,KAAK,EAAE,OAAO,EAAE,EAAE,CAAC,CAChE;QAED,MAAM,KAAK,GAAG,MAAM,EAAE,IAAI,EAAE,eAAe,EAAE,MAAM,EAAE,KAAK;AAC1D,QAAA,IAAI,CAAC,KAAK,IAAI,KAAK,CAAC,MAAM,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,EAAE,EAAE,OAAO,EAAE;AAC1D,YAAA,OAAO,IAAI;QACb;QAEA,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,OAAO,CAAC;IACpC;AAEA;;;AAGG;AACK,IAAA,YAAY,CAAC,OAAiC,EAAA;AACpD,QAAA,IAAI,UAAkB;QAEtB,IAAI,OAAO,OAAO,KAAK,QAAQ,IAAI,OAAO,KAAK,IAAI,EAAE;;YAEnD,MAAM,CAAC,GAAG,OAA6D;AACvE,YAAA,IAAI,OAAO,CAAC,CAAC,KAAK,KAAK,QAAQ,EAAE;gBAC/B,OAAO;oBACL,KAAK,EAAE,CAAC,CAAC,KAAK;AACd,oBAAA,KAAK,EAAE,CAAC,CAAC,KAAK,IAAI,CAAC;AACnB,oBAAA,KAAK,EAAE,CAAC,CAAC,KAAK,IAAI;iBACnB;YACH;AACA,YAAA,UAAU,GAAG,MAAM,CAAC,OAAO,CAAC;QAC9B;aAAO;AACL,YAAA,UAAU,GAAG,MAAM,CAAC,OAAO,CAAC;QAC9B;QAEA,MAAM,KAAK,GAAG,UAAU,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,IAAI,QAAQ,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC;AAE7D,QAAA,IAAI,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,EAAE;AACrB,YAAA,OAAO,IAAI;QACb;QAEA,OAAO;AACL,YAAA,KAAK,EAAE,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC;AACpB,YAAA,KAAK,EAAE,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC;AACpB,YAAA,KAAK,EAAE,KAAK,CAAC,CAAC,CAAC,IAAI;SACpB;IACH;AAEA;;;AAGG;IACK,eAAe,CAAC,CAAkB,EAAE,CAAkB,EAAA;QAC5D,IAAI,CAAC,CAAC,KAAK,KAAK,CAAC,CAAC,KAAK,EAAE;AACvB,YAAA,OAAO,CAAC,CAAC,KAAK,GAAG,CAAC,CAAC,KAAK;QAC1B;QACA,IAAI,CAAC,CAAC,KAAK,KAAK,CAAC,CAAC,KAAK,EAAE;AACvB,YAAA,OAAO,CAAC,CAAC,KAAK,GAAG,CAAC,CAAC,KAAK;QAC1B;AACA,QAAA,OAAO,CAAC,CAAC,KAAK,GAAG,CAAC,CAAC,KAAK;IAC1B;uGArHW,cAAc,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,UAAA,EAAA,CAAA;AAAd,IAAA,OAAA,KAAA,GAAA,EAAA,CAAA,qBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,cAAc,cAFb,MAAM,EAAA,CAAA;;2FAEP,cAAc,EAAA,UAAA,EAAA,CAAA;kBAH1B,UAAU;AAAC,YAAA,IAAA,EAAA,CAAA;AACV,oBAAA,UAAU,EAAE;AACb,iBAAA;;;MCHY,gBAAgB,CAAA;AACV,IAAA,UAAU,GAAG,MAAM,CAAC,UAAU,CAAC;AAC/B,IAAA,oBAAoB,GAAG,MAAM,CAAC,qBAAqB,CAAC;AAG9D,IAAA,MAAM,UAAU,CAAC,IAAY,EAAE,IAAY,EAAA;AAChD,QAAA,MAAM,MAAM,GAAG,IAAI,UAAU,EAAE,CAAC,GAAG,CAAC,MAAM,EAAE,EAAE,GAAG,IAAI,CAAC,QAAQ,EAAE,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,EAAE,GAAG,IAAI,CAAC,QAAQ,EAAE,CAAC;QAEnG,IAAI,IAAI,CAAC,oBAAoB,CAAC,MAAM,EAAE,aAAa,EAAE;AACnD,YAAA,MAAM,CAAC,GAAG,MAAM,cAAc,CAAC,IAAI,CAAC;iBACjC,GAAG,CAA4B,IAAI,CAAC,oBAAoB,CAAC,MAAM,CAAC,aAAa,GAAG,mBAAmB,EAAE;gBACpG,MAAM;AACN,gBAAA,OAAO,EAAE;AACV,aAAA,CAAC,CAAC;YACL,OAAO,CAAC,CAAC,IAAI;QACf;AACA,QAAA,OAAO,IAAI;IACb;IAEO,MAAM,gBAAgB,CAAC,QAAgB,EAAA;QAC5C,IAAI,IAAI,CAAC,oBAAoB,CAAC,MAAM,EAAE,aAAa,EAAE;AACnD,YAAA,MAAM,CAAC,GAAG,MAAM,cAAc,CAAC,IAAI,CAAC;AACjC,iBAAA,GAAG,CAAY,IAAI,CAAC,oBAAoB,CAAC,MAAM,CAAC,aAAa,GAAG,CAAA,kBAAA,EAAqB,QAAQ,CAAA,CAAE,EAAE;AAChG,gBAAA,OAAO,EAAE;AACV,aAAA,CAAC,CAAC;YACL,OAAO,CAAC,CAAC,IAAI;QACf;AACA,QAAA,OAAO,IAAI;IACb;IAEO,MAAM,YAAY,CAAC,SAAoB,EAAA;QAC5C,MAAM,MAAM,GAAG,IAAI,UAAU,EAAE,CAAC,GAAG,CAAC,UAAU,EAAE,SAAS,CAAC,QAAQ,CAAC,CAAC,GAAG,CAAC,cAAc,EAAE,SAAS,CAAC,QAAQ,CAAC;QAE3G,IAAI,IAAI,CAAC,oBAAoB,CAAC,MAAM,EAAE,aAAa,EAAE;AACnD,YAAA,MAAM,cAAc,CAAC,IAAI,CAAC,UAAU,CAAC,IAAI,CAAO,IAAI,CAAC,oBAAoB,CAAC,MAAM,CAAC,aAAa,GAAG,mBAAmB,EAAE,IAAI,EAAE;gBAC1H,MAAM;AACN,gBAAA,OAAO,EAAE;AACV,aAAA,CAAC,CAAC;QACL;IACF;IAEO,MAAM,YAAY,CAAC,aAAwB,EAAA;QAChD,MAAM,MAAM,GAAG,IAAI,UAAU,EAAE,CAAC,GAAG,CAAC,UAAU,EAAE,aAAa,CAAC,QAAQ,CAAC,CAAC,GAAG,CAAC,cAAc,EAAE,aAAa,CAAC,QAAQ,CAAC;QAEnH,IAAI,IAAI,CAAC,oBAAoB,CAAC,MAAM,EAAE,aAAa,EAAE;AACnD,YAAA,MAAM,cAAc,CAAC,IAAI,CAAC,UAAU,CAAC,IAAI,CAAO,IAAI,CAAC,oBAAoB,CAAC,MAAM,CAAC,aAAa,GAAG,0BAA0B,EAAE,IAAI,EAAE;gBACjI,MAAM;AACN,gBAAA,OAAO,EAAE;AACV,aAAA,CAAC,CAAC;QACL;IACF;IAEO,MAAM,YAAY,CAAC,QAAgB,EAAA;AACxC,QAAA,MAAM,MAAM,GAAG,IAAI,UAAU,EAAE,CAAC,GAAG,CAAC,UAAU,EAAE,QAAQ,CAAC;QAEzD,IAAI,IAAI,CAAC,oBAAoB,CAAC,MAAM,EAAE,aAAa,EAAE;AACnD,YAAA,MAAM,cAAc,CAAC,IAAI,CAAC,UAAU,CAAC,IAAI,CAAO,IAAI,CAAC,oBAAoB,CAAC,MAAM,CAAC,aAAa,GAAG,0BAA0B,EAAE,IAAI,EAAE;gBACjI,MAAM;AACN,gBAAA,OAAO,EAAE;AACV,aAAA,CAAC,CAAC;QACL;IACF;IAEO,MAAM,YAAY,CAAC,QAAgB,EAAA;AACxC,QAAA,MAAM,MAAM,GAAG,IAAI,UAAU,EAAE,CAAC,GAAG,CAAC,UAAU,EAAE,QAAQ,CAAC;QAEzD,IAAI,IAAI,CAAC,oBAAoB,CAAC,MAAM,EAAE,aAAa,EAAE;AACnD,YAAA,MAAM,cAAc,CAAC,IAAI,CAAC,UAAU,CAAC,MAAM,CAAO,IAAI,CAAC,oBAAoB,CAAC,MAAM,CAAC,aAAa,GAAG,mBAAmB,EAAE;gBACtH,MAAM;AACN,gBAAA,OAAO,EAAE;AACV,aAAA,CAAC,CAAC;QACL;IACF;IAEO,MAAM,aAAa,CAAC,QAAgB,EAAE,IAAU,EAAE,cAAA,GAAoC,iBAAiB,CAAC,UAAU,EAAA;AACvH,QAAA,MAAM,MAAM,GAAG,IAAI,UAAU;AAC1B,aAAA,GAAG,CAAC,UAAU,EAAE,QAAQ;aACxB,GAAG,CAAC,gBAAgB,EAAE,cAAc,CAAC,QAAQ,EAAE,CAAC;QACnD,IAAI,IAAI,CAAC,oBAAoB,CAAC,MAAM,EAAE,aAAa,EAAE;AAEnD,YAAA,MAAM,QAAQ,GAAa,IAAI,QAAQ,EAAE;AACzC,YAAA,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,IAAI,CAAC;YAC7B,MAAM,CAAC,GAAG,MAAM,cAAc,CAAC,IAAI,CAAC,UAAU,CAAC,IAAI,CAAyB,IAAI,CAAC,oBAAoB,CAAC,MAAM,CAAC,aAAa,GAAG,2BAA2B,EAAE,QAAQ,EAAE;gBAClK,MAAM;AACN,gBAAA,OAAO,EAAE;AACV,aAAA,CAAC,CAAC;AAEH,YAAA,OAAO,CAAC,CAAC,IAAI,EAAE,KAAK,IAAI,IAAI;QAC9B;AACA,QAAA,OAAO,IAAI;IACb;IAEO,MAAM,aAAa,CAAC,QAAgB,EAAE,IAAU,EAAE,cAAA,GAAoC,iBAAiB,CAAC,UAAU,EAAA;AACvH,QAAA,MAAM,MAAM,GAAG,IAAI,UAAU;AAC1B,aAAA,GAAG,CAAC,UAAU,EAAE,QAAQ;aACxB,GAAG,CAAC,gBAAgB,EAAE,cAAc,CAAC,QAAQ,EAAE,CAAC;QACnD,IAAI,IAAI,CAAC,oBAAoB,CAAC,MAAM,EAAE,aAAa,EAAE;AACnD,YAAA,MAAM,QAAQ,GAAa,IAAI,QAAQ,EAAE;AACzC,YAAA,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,IAAI,CAAC;YAC7B,MAAM,CAAC,GAAG,MAAM,cAAc,CAAC,IAAI,CAAC,UAAU,CAAC,IAAI,CAAyB,IAAI,CAAC,oBAAoB,CAAC,MAAM,CAAC,aAAa,GAAG,2BAA2B,EAAE,QAAQ,EAAE;gBAClK,MAAM;AACN,gBAAA,OAAO,EAAE;AACV,aAAA,CAAC,CAAC;AACH,YAAA,OAAO,CAAC,CAAC,IAAI,EAAE,KAAK,IAAI,IAAI;QAC9B;AACA,QAAA,OAAO,IAAI;IACb;AAEO,IAAA,MAAM,oBAAoB,CAAC,QAAgB,EAAE,OAAe,EAAA;AACjE,QAAA,MAAM,MAAM,GAAG,IAAI,UAAU,EAAE,CAAC,GAAG,CAAC,UAAU,EAAE,QAAQ,CAAC;QAEzD,IAAI,IAAI,CAAC,oBAAoB,CAAC,MAAM,EAAE,aAAa,EAAE;AACnD,YAAA,MAAM,CAAC,GAAG,MAAM,cAAc,CAAC,IAAI,CAAC;AACjC,iBAAA,IAAI,CACH,IAAI,CAAC,oBAAoB,CAAC,MAAM,CAAC,aAAa,GAAG,kCAAkC,EACnF,EAAC,OAAO,EAAC,EACT;gBACE,MAAM;AACN,gBAAA,OAAO,EAAE;AACV,aAAA,CACF,CAAC;AAEJ,YAAA,OAAO,CAAC,CAAC,IAAI,EAAE,KAAK,IAAI,IAAI;QAC9B;AACA,QAAA,OAAO,IAAI;IACb;AAEO,IAAA,MAAM,sBAAsB,CAAC,QAAgB,EAAE,WAAqB,EAAE,cAAsB,EAAA;AACjG,QAAA,MAAM,MAAM,GAAG,IAAI,UAAU,EAAE,CAAC,GAAG,CAAC,UAAU,EAAE,QAAQ,CAAC;QAEzD,IAAI,IAAI,CAAC,oBAAoB,CAAC,MAAM,EAAE,aAAa,EAAE;AACnD,YAAA,MAAM,CAAC,GAAG,MAAM,cAAc,CAAC,IAAI,CAAC;AACjC,iBAAA,IAAI,CACH,IAAI,CAAC,oBAAoB,CAAC,MAAM,CAAC,aAAa,GAAG,sCAAsC,EACvF,EAAC,WAAW,EAAE,cAAc,EAAC,EAC7B;gBACE,MAAM;AACN,gBAAA,OAAO,EAAE;AACV,aAAA,CACF,CAAC;AACF,YAAA,OAAO,CAAC,CAAC,IAAI,EAAE,KAAK,IAAI,IAAI;QAChC;AACA,QAAA,OAAO,IAAI;IACb;uGA/IW,gBAAgB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,UAAA,EAAA,CAAA;AAAhB,IAAA,OAAA,KAAA,GAAA,EAAA,CAAA,qBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,gBAAgB,cAFf,MAAM,EAAA,CAAA;;2FAEP,gBAAgB,EAAA,UAAA,EAAA,CAAA;kBAH5B,UAAU;AAAC,YAAA,IAAA,EAAA,CAAA;AACV,oBAAA,UAAU,EAAE;AACb,iBAAA;;;MCFY,UAAU,CAAA;AACJ,IAAA,UAAU,GAAG,MAAM,CAAC,UAAU,CAAC;AAC/B,IAAA,oBAAoB,GAAG,MAAM,CAAC,qBAAqB,CAAC;IAE9D,MAAM,eAAe,CAAC,QAAgB,EAAA;AAC3C,QAAA,MAAM,MAAM,GAAG,IAAI,UAAU,EAAE,CAAC,GAAG,CAAC,UAAU,EAAE,QAAQ,CAAC;QAEzD,IAAI,IAAI,CAAC,oBAAoB,CAAC,MAAM,EAAE,WAAW,EAAE;YACjD,MAAM,CAAC,GAAG,MAAM,cAAc,CAAC,IAAI,CAAC,UAAU,CAAC,IAAI,CAAiB,IAAI,CAAC,oBAAoB,CAAC,MAAM,CAAC,WAAW,GAAG,kCAAkC,EAAE,IAAI,EAAE;gBAC3J,MAAM;AACN,gBAAA,OAAO,EAAE;AACV,aAAA,CAAC,CAAC;YAEH,OAAO,CAAC,CAAC,IAAI;QACf;AACA,QAAA,OAAO,IAAI;IACb;IAEO,MAAM,cAAc,CAAC,QAAgB,EAAA;AAC1C,QAAA,MAAM,MAAM,GAAG,IAAI,UAAU,EAAE,CAAC,GAAG,CAAC,UAAU,EAAE,QAAQ,CAAC;QAEzD,IAAI,IAAI,CAAC,oBAAoB,CAAC,MAAM,EAAE,WAAW,EAAE;YACjD,MAAM,CAAC,GAAG,MAAM,cAAc,CAAC,IAAI,CAAC,UAAU,CAAC,IAAI,CAAiB,IAAI,CAAC,oBAAoB,CAAC,MAAM,CAAC,WAAW,GAAG,gCAAgC,EAAE,IAAI,EAAE;gBACzJ,MAAM;AACN,gBAAA,OAAO,EAAE;AACV,aAAA,CAAC,CAAC;YAEH,OAAO,CAAC,CAAC,IAAI;QACf;AACA,QAAA,OAAO,IAAI;IACb;;AAGO,IAAA,MAAM,iBAAiB,CAAC,QAAgB,EAAE,YAAoB,EAAE,IAAU,EAAA;AAC/E,QAAA,MAAM,MAAM,GAAG,IAAI,UAAU,EAAE,CAAC,GAAG,CAAC,UAAU,EAAE,QAAQ,CAAC,CAAC,GAAG,CAAC,cAAc,EAAE,YAAY,CAAC;QAE3F,IAAI,IAAI,CAAC,oBAAoB,CAAC,MAAM,EAAE,WAAW,EAAE;AACjD,YAAA,MAAM,QAAQ,GAAa,IAAI,QAAQ,EAAE;YACzC,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,IAAI,EAAE,IAAI,CAAC,IAAI,CAAC;YAExC,MAAM,CAAC,GAAG,MAAM,cAAc,CAAC,IAAI,CAAC,UAAU,CAAC,IAAI,CAAiB,IAAI,CAAC,oBAAoB,CAAC,MAAM,CAAC,WAAW,GAAG,mCAAmC,EAAE,QAAQ,EAAE;gBAChK,MAAM;AACN,gBAAA,OAAO,EAAE;AACV,aAAA,CAAC,CAAC;YAEH,OAAO,CAAC,CAAC,IAAI;QACf;AACA,QAAA,OAAO,IAAI;IACb;AAEO,IAAA,MAAM,uBAAuB,CAAC,QAAgB,EAAE,KAAa,EAAA;AAClE,QAAA,MAAM,MAAM,GAAG,IAAI,UAAU,EAAE,CAAC,GAAG,CAAC,UAAU,EAAE,QAAQ,CAAC,CAAC,GAAG,CAAC,IAAI,EAAE,KAAK,CAAC;QAE1E,IAAI,IAAI,CAAC,oBAAoB,CAAC,MAAM,EAAE,WAAW,EAAE;AACjD,YAAA,OAAO,MAAM,cAAc,CAAC,IAAI,CAAC,UAAU,CAAC,GAAG,CAAC,IAAI,CAAC,oBAAoB,CAAC,MAAM,CAAC,WAAW,GAAG,yBAAyB,EAAE;gBACxH,MAAM;AACN,gBAAA,YAAY,EAAE;AACf,aAAA,CAAC,CAAC;QACL;AACA,QAAA,OAAO,IAAI;IACb;IAEO,MAAM,YAAY,CAAC,KAAa,EAAA;AACrC,QAAA,MAAM,MAAM,GAAG,IAAI,UAAU,EAAE,CAAC,GAAG,CAAC,IAAI,EAAE,KAAK,CAAC;QAEhD,IAAI,IAAI,CAAC,oBAAoB,CAAC,MAAM,EAAE,WAAW,EAAE;AACjD,YAAA,OAAO,cAAc,CAAC,IAAI,CAAC;iBACxB,GAAG,CAAS,IAAI,CAAC,oBAAoB,CAAC,MAAM,CAAC,WAAW,GAAG,gBAAgB,EAAE;gBAC5E,MAAM;AACN,gBAAA,OAAO,EAAE;aACV;AACA,iBAAA,IAAI,CACHC,KAAG,CAAC,CAAC,GAAG,KAAI;gBACV,OAAO,GAAG,CAAC,IAAI;YACjB,CAAC,CAAC,CACH,CAAC;QACN;AACA,QAAA,OAAO,IAAI;IACb;uGA9EW,UAAU,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,UAAA,EAAA,CAAA;AAAV,IAAA,OAAA,KAAA,GAAA,EAAA,CAAA,qBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,UAAU,cAFT,MAAM,EAAA,CAAA;;2FAEP,UAAU,EAAA,UAAA,EAAA,CAAA;kBAHtB,UAAU;AAAC,YAAA,IAAA,EAAA,CAAA;AACV,oBAAA,UAAU,EAAE;AACb,iBAAA;;;MCAY,aAAa,CAAA;AACP,IAAA,UAAU,GAAG,MAAM,CAAC,UAAU,CAAC;AAC/B,IAAA,oBAAoB,GAAG,MAAM,CAAC,qBAAqB,CAAC;IAG7D,MAAM,cAAc,CAAC,GAAW,EAAA;AAEtC,QAAA,IAAI;AACF,YAAA,MAAM,CAAC,GAAG,MAAM,cAAc,CAAC,IAAI,CAAC,UAAU,CAAC,GAAG,CAAc,GAAG,GAAG,QAAQ,EAAE;AAC9E,gBAAA,OAAO,EAAE;AACV,aAAA,CAAC,CAAC;AAEH,YAAA,IAAI,CAAC,CAAC,MAAM,KAAK,GAAG,EAAE;gBACpB,OAAO,CAAC,CAAC,IAAI;YACf;QACF;QACA,OAAO,KAAU,EAAC;AAChB,YAAA,IAAI,KAAK,YAAY,iBAAiB,EAAE;AACtC,gBAAA,IAAI,KAAK,CAAC,MAAM,IAAI,GAAG,EAAC;oBACtB,OAAO,KAAK,CAAC,KAAK;gBACpB;YACF;AACA,YAAA,OAAO,CAAC,KAAK,CAAC,OAAO,EAAE,KAAK,CAAC;QAC/B;AACA,QAAA,OAAO,IAAI;IAEb;AAEO,IAAA,MAAM,8BAA8B,GAAA;AACzC,QAAA,OAAO,IAAI,CAAC,cAAc,CAAC,IAAI,CAAC,oBAAoB,CAAC,MAAM,CAAC,aAAa,CAAC;IAC5E;AAEO,IAAA,MAAM,uBAAuB,GAAA;AAClC,QAAA,OAAO,IAAI,CAAC,cAAc,CAAC,IAAI,CAAC,oBAAoB,CAAC,MAAM,CAAC,MAAM,CAAC;IACrE;AAEO,IAAA,MAAM,kBAAkB,GAAA;AAC7B,QAAA,OAAO,IAAI,CAAC,cAAc,CAAC,IAAI,CAAC,oBAAoB,CAAC,MAAM,CAAC,WAAW,CAAC;IAC1E;AAEO,IAAA,MAAM,sCAAsC,GAAA;AACjD,QAAA,OAAO,IAAI,CAAC,cAAc,CAAC,IAAI,CAAC,oBAAoB,CAAC,MAAM,CAAC,qBAAqB,CAAC;IACpF;AAEO,IAAA,MAAM,mBAAmB,GAAA;AAC9B,QAAA,OAAO,IAAI,CAAC,cAAc,CAAC,IAAI,CAAC,oBAAoB,CAAC,MAAM,CAAC,cAAc,CAAC;IAC7E;uGA9CW,aAAa,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,UAAA,EAAA,CAAA;AAAb,IAAA,OAAA,KAAA,GAAA,EAAA,CAAA,qBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,aAAa,cAFZ,MAAM,EAAA,CAAA;;2FAEP,aAAa,EAAA,UAAA,EAAA,CAAA;kBAHzB,UAAU;AAAC,YAAA,IAAA,EAAA,CAAA;AACV,oBAAA,UAAU,EAAE;AACb,iBAAA;;;MCMY,eAAe,CAAA;AACT,IAAA,UAAU,GAAG,MAAM,CAAC,UAAU,CAAC;AAC/B,IAAA,oBAAoB,GAAG,MAAM,CAAC,qBAAqB,CAAC;AAGrE,IAAA,MAAM,eAAe,GAAA;QACnB,IAAI,IAAI,CAAC,oBAAoB,CAAC,MAAM,EAAE,MAAM,EAAE;YAC5C,OAAO,MAAM,cAAc,CAAC,IAAI,CAAC,UAAU,CAAC,GAAG,CAC7C,IAAI,CAAC,oBAAoB,CAAC,MAAM,CAAC,MAAM,GAAG,uBAAuB,CAClE,CAAC;QACJ;AACA,QAAA,OAAO,IAAI;IACb;AAEA,IAAA,MAAM,QAAQ,CAAC,IAAY,EAAE,IAAY,EAAA;AACvC,QAAA,MAAM,MAAM,GAAG,IAAI,UAAU,EAAE,CAAC,GAAG,CAAC,MAAM,EAAE,EAAE,GAAG,IAAI,CAAC,QAAQ,EAAE,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,EAAE,GAAG,IAAI,CAAC,QAAQ,EAAE,CAAC;QAEnG,IAAI,IAAI,CAAC,oBAAoB,CAAC,MAAM,EAAE,MAAM,EAAE;YAC5C,MAAM,QAAQ,GAAG,MAAM,cAAc,CACnC,IAAI,CAAC,UAAU,CAAC,GAAG,CAAiC,IAAI,CAAC,oBAAoB,CAAC,MAAM,CAAC,MAAM,GAAG,0BAA0B,EAAE;gBACxH,MAAM;AACN,gBAAA,OAAO,EAAE;AACV,aAAA,CAAC,CACH;YACD,OAAO,QAAQ,CAAC,IAAI;QACtB;AACA,QAAA,OAAO,IAAI;IACb;IAEA,MAAM,cAAc,CAAC,QAAgB,EAAA;QACnC,IAAI,IAAI,CAAC,oBAAoB,CAAC,MAAM,EAAE,MAAM,EAAE;YAC5C,MAAM,QAAQ,GAAG,MAAM,cAAc,CACnC,IAAI,CAAC,UAAU,CAAC,GAAG,CAAiB,IAAI,CAAC,oBAAoB,CAAC,MAAM,CAAC,MAAM,GAAG,CAAA,gBAAA,EAAmB,QAAQ,CAAA,CAAE,EAAE;AAC3G,gBAAA,OAAO,EAAE;AACV,aAAA,CAAC,CACH;YACD,OAAO,QAAQ,CAAC,IAAI;QACtB;AACA,QAAA,OAAO,IAAI;IACb;IAEA,MAAM,UAAU,CAAC,OAAgB,EAAA;QAC/B,IAAI,IAAI,CAAC,oBAAoB,CAAC,MAAM,EAAE,MAAM,EAAE;AAC5C,YAAA,MAAM,cAAc,CAClB,IAAI,CAAC,UAAU,CAAC,IAAI,CAAM,IAAI,CAAC,oBAAoB,CAAC,MAAM,CAAC,MAAM,GAAG,iBAAiB,EAAE,OAAO,EAAE;AAC9F,gBAAA,OAAO,EAAE;AACV,aAAA,CAAC,CACH;QACH;IACF;AAEA,IAAA,MAAM,UAAU,CAAC,QAAgB,EAAE,OAAgB,EAAA;QACjD,IAAI,IAAI,CAAC,oBAAoB,CAAC,MAAM,EAAE,MAAM,EAAE;YAC5C,MAAM,cAAc,CAClB,IAAI,CAAC,UAAU,CAAC,GAAG,CAAM,IAAI,CAAC,oBAAoB,CAAC,MAAM,CAAC,MAAM,GAAG,mBAAmB,QAAQ,CAAA,CAAE,EAAE,OAAO,EAAE;AACzG,gBAAA,OAAO,EAAE;AACV,aAAA,CAAC,CACH;QACH;IACF;IAEA,MAAM,UAAU,CAAC,QAAgB,EAAA;QAC/B,IAAI,IAAI,CAAC,oBAAoB,CAAC,MAAM,EAAE,MAAM,EAAE;AAC5C,YAAA,MAAM,cAAc,CAClB,IAAI,CAAC,UAAU,CAAC,MAAM,CAAM,IAAI,CAAC,oBAAoB,CAAC,MAAM,CAAC,MAAM,GAAG,CAAA,gBAAA,EAAmB,QAAQ,EAAE,EAAE;AACnG,gBAAA,OAAO,EAAE;AACV,aAAA,CAAC,CACH;QACH;IACF;IAEA,MAAM,YAAY,CAAC,QAAgB,EAAA;QACjC,IAAI,IAAI,CAAC,oBAAoB,CAAC,MAAM,EAAE,MAAM,EAAE;YAC5C,MAAM,QAAQ,GAAG,MAAM,cAAc,CACnC,IAAI,CAAC,UAAU,CAAC,GAAG,CAAmB,IAAI,CAAC,oBAAoB,CAAC,MAAM,CAAC,MAAM,GAAG,CAAA,gBAAA,EAAmB,QAAQ,CAAA,MAAA,CAAQ,EAAE;AACnH,gBAAA,OAAO,EAAE;AACV,aAAA,CAAC,CACH;YACD,OAAO,QAAQ,CAAC,IAAI;QACtB;AACA,QAAA,OAAO,IAAI;IACb;AAEA,IAAA,MAAM,eAAe,CAAC,QAAgB,EAAE,KAAgB,EAAA;QACtD,IAAI,IAAI,CAAC,oBAAoB,CAAC,MAAM,EAAE,MAAM,EAAE;AAC5C,YAAA,MAAM,OAAO,GAAG,KAAK,CAAC,GAAG,CAAC,CAAC,IAAI,KAAK,IAAI,CAAC,EAAE,CAAC;YAE5C,MAAM,cAAc,CAClB,IAAI,CAAC,UAAU,CAAC,GAAG,CAAM,IAAI,CAAC,oBAAoB,CAAC,MAAM,CAAC,MAAM,GAAG,mBAAmB,QAAQ,CAAA,MAAA,CAAQ,EAAE,OAAO,EAAE;AAC/G,gBAAA,OAAO,EAAE;AACV,aAAA,CAAC,CACH;QACH;IACF;AAEA,IAAA,MAAM,aAAa,CAAC,QAAgB,EAAE,QAAgB,EAAA;QACpD,IAAI,IAAI,CAAC,oBAAoB,CAAC,MAAM,EAAE,MAAM,EAAE;YAC5C,MAAM,cAAc,CAClB,IAAI,CAAC,UAAU,CAAC,GAAG,CAAM,IAAI,CAAC,oBAAoB,CAAC,MAAM,CAAC,MAAM,GAAG,CAAA,gBAAA,EAAmB,QAAQ,UAAU,QAAQ,CAAA,CAAE,EAAE,IAAI,EAAE;AACxH,gBAAA,OAAO,EAAE;AACV,aAAA,CAAC,CACH;QACH;IACF;AAEA,IAAA,MAAM,kBAAkB,CAAC,QAAgB,EAAE,QAAgB,EAAA;QACzD,IAAI,IAAI,CAAC,oBAAoB,CAAC,MAAM,EAAE,MAAM,EAAE;YAC5C,MAAM,cAAc,CAClB,IAAI,CAAC,UAAU,CAAC,MAAM,CAAM,IAAI,CAAC,oBAAoB,CAAC,MAAM,CAAC,MAAM,GAAG,mBAAmB,QAAQ,CAAA,OAAA,EAAU,QAAQ,CAAA,CAAE,EAAE;AACrH,gBAAA,OAAO,EAAE;AACV,aAAA,CAAC,CACH;QACH;IACF;AAEA,IAAA,MAAM,aAAa,CAAC,QAAgB,EAAE,QAAgB,EAAA;AACpD,QAAA,MAAM,MAAM,GAAG,IAAI,UAAU,EAAE,CAAC,GAAG,CAAC,UAAU,EAAE,QAAQ,CAAC,CAAC,GAAG,CAAC,UAAU,EAAE,QAAQ,CAAC;QAEnF,IAAI,IAAI,CAAC,oBAAoB,CAAC,MAAM,EAAE,MAAM,EAAE;YAC5C,MAAM,QAAQ,GAAG,MAAM,cAAc,CACnC,IAAI,CAAC,UAAU,CAAC,IAAI,CAAM,IAAI,CAAC,oBAAoB,CAAC,MAAM,CAAC,MAAM,GAAG,+BAA+B,EAAE,IAAI,EAAE;gBACzG,MAAM;AACN,gBAAA,OAAO,EAAE;AACV,aAAA,CAAC,CACH;YACD,OAAO,QAAQ,CAAC,IAAI;QACtB;AACA,QAAA,OAAO,IAAI;IACb;AAEA,IAAA,MAAM,UAAU,CAAC,IAAY,EAAE,IAAY,EAAA;AACzC,QAAA,MAAM,MAAM,GAAG,IAAI,UAAU,EAAE,CAAC,GAAG,CAAC,MAAM,EAAE,EAAE,GAAG,IAAI,CAAC,QAAQ,EAAE,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,EAAE,GAAG,IAAI,CAAC,QAAQ,EAAE,CAAC;QAEnG,IAAI,IAAI,CAAC,oBAAoB,CAAC,MAAM,EAAE,MAAM,EAAE;YAC5C,MAAM,QAAQ,GAAG,MAAM,cAAc,CACnC,IAAI,CAAC,UAAU,CAAC,GAAG,CAAmC,IAAI,CAAC,oBAAoB,CAAC,MAAM,CAAC,MAAM,GAAG,4BAA4B,EAAE;gBAC5H,MAAM;AACN,gBAAA,OAAO,EAAE;AACV,aAAA,CAAC,CACH;YACD,OAAO,QAAQ,CAAC,IAAI;QACtB;AACA,QAAA,OAAO,IAAI;IACb;IAEA,MAAM,gBAAgB,CAAC,QAAgB,EAAA;QACrC,IAAI,IAAI,CAAC,oBAAoB,CAAC,MAAM,EAAE,MAAM,EAAE;YAC5C,MAAM,QAAQ,GAAG,MAAM,cAAc,CACnC,IAAI,CAAC,UAAU,CAAC,GAAG,CAAY,IAAI,CAAC,oBAAoB,CAAC,MAAM,CAAC,MAAM,GAAG,CAAA,kBAAA,EAAqB,QAAQ,CAAA,CAAE,EAAE;AACxG,gBAAA,OAAO,EAAE;AACV,aAAA,CAAC,CACH;YACD,OAAO,QAAQ,CAAC,IAAI;QACtB;AACA,QAAA,OAAO,IAAI;IACb;IAEA,MAAM,YAAY,CAAC,SAAoB,EAAA;QACrC,IAAI,IAAI,CAAC,oBAAoB,CAAC,MAAM,EAAE,MAAM,EAAE;AAC5C,YAAA,MAAM,cAAc,CAClB,IAAI,CAAC,UAAU,CAAC,IAAI,CAAM,IAAI,CAAC,oBAAoB,CAAC,MAAM,CAAC,MAAM,GAAG,mBAAmB,EAAE,SAAS,EAAE;AAClG,gBAAA,OAAO,EAAE;AACV,aAAA,CAAC,CACH;QACH;IACF;AAEA,IAAA,MAAM,YAAY,CAAC,QAAgB,EAAE,SAAoB,EAAA;QACvD,IAAI,IAAI,CAAC,oBAAoB,CAAC,MAAM,EAAE,MAAM,EAAE;YAC5C,MAAM,cAAc,CAAC,IAAI,CAAC,UAAU,CAAC,GAAG,CAAM,IAAI,CAAC,oBAAoB,CAAC,MAAM,CAAC,MAAM,GAAG,qBAAqB,QAAQ,CAAA,CAAE,EAAE,SAAS,EAAE;AAClI,gBAAA,OAAO,EAAE;AACV,aAAA,CAAC,CAAC;QACL;IACF;IAED,MAAM,YAAY,CAAC,QAAgB,EAAA;QAChC,IAAI,IAAI,CAAC,oBAAoB,CAAC,MAAM,EAAE,MAAM,EAAE;AAC5C,YAAA,MAAM,cAAc,CAAC,IAAI,CAAC,UAAU,CAAC,MAAM,CAAM,IAAI,CAAC,oBAAoB,CAAC,MAAM,CAAC,MAAM,GAAG,CAAA,kBAAA,EAAqB,QAAQ,EAAE,EAAE;AAC1H,gBAAA,OAAO,EAAE;AACV,aAAA,CAAC,CAAC;QACL;IACF;AAEA,IAAA,MAAM,gBAAgB,GAAA;AACpB,QAAA,MAAM,MAAM,GAAG,IAAI,UAAU,EAAE;QAE/B,IAAI,IAAI,CAAC,oBAAoB,CAAC,MAAM,EAAE,MAAM,EAAE;AAC5C,YAAA,MAAM,CAAC,GAAG,MAAM,cAAc,CAAC,IAAI,CAAC;iBACjC,GAAG,CAAuB,IAAI,CAAC,oBAAoB,CAAC,MAAM,CAAC,MAAM,GAAG,kCAAkC,EAAE;gBACvG,MAAM;AACN,gBAAA,OAAO,EAAE;AACV,aAAA,CAAC,CAAC;YAEL,OAAO,CAAC,CAAC,IAAI;QACf;AACA,QAAA,OAAO,IAAI;IACb;;;;AAMA,IAAA,MAAM,QAAQ,CAAC,IAAY,EAAE,IAAY,EAAA;AACvC,QAAA,MAAM,MAAM,GAAG,IAAI,UAAU,EAAE,CAAC,GAAG,CAAC,MAAM,EAAE,EAAE,GAAG,IAAI,CAAC,QAAQ,EAAE,CAAC,CAAC,GAAG,CAAC,MAAM,EAAE,EAAE,GAAG,IAAI,CAAC,QAAQ,EAAE,CAAC;QAEnG,IAAI,IAAI,CAAC,oBAAoB,CAAC,MAAM,EAAE,MAAM,EAAE;YAC5C,MAAM,QAAQ,GAAG,MAAM,cAAc,CACnC,IAAI,CAAC,UAAU,CAAC,GAAG,CAAiC,IAAI,CAAC,oBAAoB,CAAC,MAAM,CAAC,MAAM,GAAG,0BAA0B,EAAE;gBACxH,MAAM;AACN,gBAAA,OAAO,EAAE;AACV,aAAA,CAAC,CACH;YACD,OAAO,QAAQ,CAAC,IAAI;QACtB;AACA,QAAA,OAAO,IAAI;IACb;IAEA,MAAM,cAAc,CAAC,QAAgB,EAAA;QACnC,IAAI,IAAI,CAAC,oBAAoB,CAAC,MAAM,EAAE,MAAM,EAAE;YAC5C,MAAM,QAAQ,GAAG,MAAM,cAAc,CACnC,IAAI,CAAC,UAAU,CAAC,GAAG,CAAiB,IAAI,CAAC,oBAAoB,CAAC,MAAM,CAAC,MAAM,GAAG,CAAA,sBAAA,EAAyB,QAAQ,CAAA,CAAE,EAAE;AACjH,gBAAA,OAAO,EAAE;AACV,aAAA,CAAC,CACH;YACD,OAAO,QAAQ,CAAC,IAAI;QACtB;AACA,QAAA,OAAO,IAAI;IACb;IAEA,MAAM,UAAU,CAAC,OAAgB,EAAA;QAC/B,IAAI,IAAI,CAAC,oBAAoB,CAAC,MAAM,EAAE,MAAM,EAAE;AAC5C,YAAA,MAAM,cAAc,CAClB,IAAI,CAAC,UAAU,CAAC,IAAI,CAAM,IAAI,CAAC,oBAAoB,CAAC,MAAM,CAAC,MAAM,GAAG,iBAAiB,EAAE,OAAO,EAAE;AAC9F,gBAAA,OAAO,EAAE;AACV,aAAA,CAAC,CACH;QACH;IACF;AAEA,IAAA,MAAM,UAAU,CAAC,QAAgB,EAAE,OAAgB,EAAA;QACjD,IAAI,IAAI,CAAC,oBAAoB,CAAC,MAAM,EAAE,MAAM,EAAE;YAC5C,MAAM,cAAc,CAClB,IAAI,CAAC,UAAU,CAAC,GAAG,CAAM,IAAI,CAAC,oBAAoB,CAAC,MAAM,CAAC,MAAM,GAAG,mBAAmB,QAAQ,CAAA,CAAE,EAAE,OAAO,EAAE;AACzG,gBAAA,OAAO,EAAE;AACV,aAAA,CAAC,CACH;QACH;IACF;IAEA,MAAM,UAAU,CAAC,QAAgB,EAAA;QAC/B,IAAI,IAAI,CAAC,oBAAoB,CAAC,MAAM,EAAE,MAAM,EAAE;AAC5C,YAAA,MAAM,cAAc,CAClB,IAAI,CAAC,UAAU,CAAC,MAAM,CAAM,IAAI,CAAC,oBAAoB,CAAC,MAAM,CAAC,MAAM,GAAG,CAAA,gBAAA,EAAmB,QAAQ,EAAE,EAAE;AACnG,gBAAA,OAAO,EAAE;AACV,aAAA,CAAC,CACH;QACH;IACF;uGAjQW,eAAe,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,UAAA,EAAA,CAAA;AAAf,IAAA,OAAA,KAAA,GAAA,EAAA,CAAA,qBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,eAAe,cAFd,MAAM,EAAA,CAAA;;2FAEP,eAAe,EAAA,UAAA,EAAA,CAAA;kBAH3B,UAAU;AAAC,YAAA,IAAA,EAAA,CAAA;AACV,oBAAA,UAAU,EAAE;AACb,iBAAA;;;MCHY,oBAAoB,CAAA;AACd,IAAA,UAAU,GAAG,MAAM,CAAC,UAAU,CAAC;AAC/B,IAAA,cAAc,GAAG,MAAM,CAAC,cAAc,CAAC;AACvC,IAAA,qBAAqB,GAAG,MAAM,CAAC,qBAAqB,CAAC;AAG/D,IAAA,MAAM,iBAAiB,CAAC,QAAgB,EAAE,KAAa,EAAE,QAAgB,EAAA;AAC9E,QAAA,IAAI,CAAC,cAAc,CAAC,eAAe,CAAC,qDAAqD,CAAC;AAG1F,QAAA,MAAM,IAAI,GAAG,MAAM,IAAI,CAAC,UAAU,CAAC,uBAAuB,CAAC,QAAQ,EAAE,KAAK,CAAC;QAC3E,IAAI,IAAI,EAAE;YACR,MAAM,WAAW,GAAG,MAAM,CAAC,GAAG,CAAC,eAAe,CAAC,IAAI,CAAC;YACpD,MAAM,IAAI,GAAG,QAAQ,CAAC,aAAa,CAAC,GAAG,CAAC;AACxC,YAAA,IAAI,CAAC,IAAI,GAAG,WAAW;AACvB,YAAA,IAAI,CAAC,QAAQ,GAAG,QAAQ;YACxB,IAAI,CAAC,KAAK,EAAE;QACd;IACF;AAGO,IAAA,MAAM,UAAU,CAAC,KAAa,EAAE,KAAa,EAAE,SAAiB,EAAA;QACrE,IAAI,SAAS,GAAG,KAAK;AACrB,QAAA,MAAM,eAAe,GAAG,IAAI,OAAO,EAAiB;AACpD,QAAA,MAAM,cAAc,GAAG,IAAI,CAAC,qBAAqB,CAAC,yBAAyB,CACzE,KAAK,EACL,eAAe,CAAC,YAAY,EAAE,EAC9B;AACE,YAAA,0BAA0B,EAAE,IAAI;YAChC,eAAe,EAAE,MAAK;gBACpB,SAAS,GAAG,IAAI;AAChB,gBAAA,OAAO,CAAC,GAAG,CAAC,yBAAyB,CAAC;gBACtC,cAAc,CAAC,KAAK,EAAE;YACxB,CAAC;AACD,YAAA,KAAK,EAAE;AACR,SAAA,CAAC;QAEJ,OAAO,IAAI,EAAE;YACX,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,UAAU,CAAC,YAAY,CAAC,KAAK,CAAC;AAExD,YAAA,IAAI,MAAM,IAAI,IAAI,EAAE;gBAClB,IAAI,CAAC,cAAc,CAAC,SAAS,CAAC,CAAA,EAAG,SAAS,CAAA,eAAA,CAAiB,CAAC;gBAC5D;YACF;YAEA,IAAI,MAAM,CAAC,MAAM,KAAK,WAAW,IAAI,MAAM,CAAC,MAAM,KAAK;AAClD,mBAAA,MAAM,CAAC,MAAM,KAAK,SAAS,IAAI,SAAS,EAAE;AAC7C,gBAAA,IAAI,MAAM,CAAC,MAAM,KAAK,WAAW,EAAE;oBACjC,cAAc,CAAC,KAAK,EAAE;AACtB,oBAAA,OAAO,IAAI;gBACb;qBAAO;oBACL,MAAM,YAAY,GAAG,MAAM,CAAC,YAAY,IAAI,MAAM,CAAC,MAAM,IAAI,eAAe;oBAC5E,IAAI,CAAC,cAAc,CAAC,oBAAoB,CAAC,YAAY,EAAE,SAAS,CAAC;gBACnE;gBACA;YACF;AAEA,YAAA,MAAM,aAAa,GAAG,IAAI,aAAa,EAAE;YACzC,aAAa,CAAC,UAAU,GAAG,CAAA,WAAA,EAAc,MAAM,CAAC,MAAM,IAAI,WAAW,CAAA,iBAAA,CAAmB;AACxF,YAAA,eAAe,CAAC,IAAI,CAAC,aAAa,CAAC;AAEnC,YAAA,MAAM,IAAI,OAAO,CAAC,CAAC,OAAO,KAAK,UAAU,CAAC,OAAO,EAAE,IAAI,CAAC,CAAC;QAC3D;AACA,QAAA,OAAO,KAAK;IACd;uGAhEW,oBAAoB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,UAAA,EAAA,CAAA;AAApB,IAAA,OAAA,KAAA,GAAA,EAAA,CAAA,qBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,oBAAoB,cAFnB,MAAM,EAAA,CAAA;;2FAEP,oBAAoB,EAAA,UAAA,EAAA,CAAA;kBAHhC,UAAU;AAAC,YAAA,IAAA,EAAA,CAAA;AACV,oBAAA,UAAU,EAAE;AACb,iBAAA;;;ACGD;;;AAGG;MAIU,oBAAoB,CAAA;AACd,IAAA,UAAU,GAAG,MAAM,CAAC,UAAU,CAAC;AAC/B,IAAA,oBAAoB,GAAG,MAAM,CAAC,qBAAqB,CAAC;;IAGpD,cAAc,GAAG,IAAI,WAAW;AAC9C,SAAA,GAAG,CAAC,eAAe,EAAE,oBAAoB;AACzC,SAAA,GAAG,CAAC,QAAQ,EAAE,UAAU,CAAC;AAE5B;;AAEG;AACH,IAAA,IAAY,wBAAwB,GAAA;AAClC,QAAA,OAAO,IAAI,CAAC,oBAAoB,CAAC,MAAM,EAAE,qBAAqB;IAChE;;;;AAMA;;AAEG;IACH,MAAM,aAAa,CAAC,QAAgB,EAAA;AAClC,QAAA,IAAI,IAAI,CAAC,wBAAwB,EAAE;YACjC,MAAM,GAAG,GAAG,CAAA,EAAG,IAAI,CAAC,wBAAwB,CAAA,EAAG,QAAQ,CAAA,8BAAA,CAAgC;AACvF,YAAA,MAAM,cAAc,CAClB,IAAI,CAAC,UAAU,CAAC,IAAI,CAAO,GAAG,EAAE,IAAI,EAAE,EAAC,OAAO,EAAE,UAAU,EAAC,CAAC,CAC7D;QACH;IACF;;;;AAMA;;;AAGG;AACH,IAAA,MAAM,gCAAgC,CACpC,QAAgB,EAChB,WAAmB,EACnB,eAAuB,EAAA;AAEvB,QAAA,IAAI,IAAI,CAAC,wBAAwB,EAAE;AACjC,YAAA,MAAM,MAAM,GAAG,IAAI,UAAU;iBAC1B,GAAG,CAAC,mBAAmB,EAAE,CAAA,EAAG,eAAe,CAAA,CAAA,EAAI,WAAW,CAAA,CAAE,CAAC;YAChE,MAAM,GAAG,GAAG,CAAA,EAAG,IAAI,CAAC,wBAAwB,CAAA,EAAG,QAAQ,CAAA,wBAAA,CAA0B;YAEjF,MAAM,cAAc,CAClB,IAAI,CAAC,UAAU,CAAC,IAAI,CAAO,GAAG,EAAE,IAAI,EAAE,EAAC,MAAM,EAAE,OAAO,EAAE,UAAU,EAAC,CAAC,CACrE;QACH;IACF;;;;AAMA;;AAEG;AACH,IAAA,MAAM,uBAAuB,CAAC,QAAgB,EAAE,QAAgB,EAAA;AAC9D,QAAA,IAAI,IAAI,CAAC,wBAAwB,EAAE;AACjC,YAAA,MAAM,MAAM,GAAG,IAAI,UAAU,EAAE,CAAC,GAAG,CAAC,UAAU,EAAE,QAAQ,CAAC;YACzD,MAAM,GAAG,GAAG,CAAA,EAAG,IAAI,CAAC,wBAAwB,CAAA,EAAG,QAAQ,CAAA,gCAAA,CAAkC;YAEzF,MAAM,cAAc,CAClB,IAAI,CAAC,UAAU,CAAC,IAAI,CAAO,GAAG,EAAE,IAAI,EAAE,EAAC,MAAM,EAAE,OAAO,EAAE,UAAU,EAAC,CAAC,CACrE;QACH;IACF;AAEA;;AAEG;AACH,IAAA,MAAM,yBAAyB,CAAC,QAAgB,EAAE,QAAgB,EAAA;AAChE,QAAA,IAAI,IAAI,CAAC,wBAAwB,EAAE;AACjC,YAAA,MAAM,MAAM,GAAG,IAAI,UAAU,EAAE,CAAC,GAAG,CAAC,UAAU,EAAE,QAAQ,CAAC;YACzD,MAAM,GAAG,GAAG,CAAA,EAAG,IAAI,CAAC,wBAAwB,CAAA,EAAG,QAAQ,CAAA,kCAAA,CAAoC;YAE3F,MAAM,cAAc,CAClB,IAAI,CAAC,UAAU,CAAC,IAAI,CAAO,GAAG,EAAE,IAAI,EAAE,EAAC,MAAM,EAAE,OAAO,EAAE,UAAU,EAAC,CAAC,CACrE;QACH;IACF;;;;AAMA;;AAEG;IACH,MAAM,aAAa,CACjB,QAAgB,EAChB,QAAgB,EAChB,WAAmB,EACnB,eAAuB,EAAA;AAEvB,QAAA,IAAI,IAAI,CAAC,wBAAwB,EAAE;AACjC,YAAA,MAAM,MAAM,GAAG,IAAI,UAAU;AAC1B,iBAAA,GAAG,CAAC,UAAU,EAAE,QAAQ;iBACxB,GAAG,CAAC,mBAAmB,EAAE,CAAA,EAAG,eAAe,CAAA,CAAA,EAAI,WAAW,CAAA,CAAE,CAAC;YAChE,MAAM,GAAG,GAAG,CAAA,EAAG,IAAI,CAAC,wBAAwB,CAAA,EAAG,QAAQ,CAAA,sBAAA,CAAwB;YAE/E,MAAM,cAAc,CAClB,IAAI,CAAC,UAAU,CAAC,IAAI,CAAO,GAAG,EAAE,IAAI,EAAE,EAAC,MAAM,EAAE,OAAO,EAAE,UAAU,EAAC,CAAC,CACrE;QACH;IACF;AAEA;;AAEG;IACH,MAAM,eAAe,CACnB,QAAgB,EAChB,QAAgB,EAChB,WAAmB,EACnB,eAAuB,EAAA;AAEvB,QAAA,IAAI,IAAI,CAAC,wBAAwB,EAAE;AACjC,YAAA,MAAM,MAAM,GAAG,IAAI,UAAU;AAC1B,iBAAA,GAAG,CAAC,UAAU,EAAE,QAAQ;iBACxB,GAAG,CAAC,mBAAmB,EAAE,CAAA,EAAG,eAAe,CAAA,CAAA,EAAI,WAAW,CAAA,CAAE,CAAC;YAChE,MAAM,GAAG,GAAG,CAAA,EAAG,IAAI,CAAC,wBAAwB,CAAA,EAAG,QAAQ,CAAA,wBAAA,CAA0B;YAEjF,MAAM,cAAc,CAClB,IAAI,CAAC,UAAU,CAAC,IAAI,CAAO,GAAG,EAAE,IAAI,EAAE,EAAC,MAAM,EAAE,OAAO,EAAE,UAAU,EAAC,CAAC,CACrE;QACH;IACF;;;;AAMA;;AAEG;AACH,IAAA,MAAM,eAAe,CACnB,QAAgB,EAChB,gBAAwB,EAAA;AAExB,QAAA,IAAI,IAAI,CAAC,wBAAwB,EAAE;AACjC,YAAA,MAAM,MAAM,GAAG,IAAI,UAAU,EAAE,CAAC,GAAG,CAAC,kBAAkB,EAAE,gBAAgB,CAAC;YACzE,MAAM,GAAG,GAAG,CAAA,EAAG,IAAI,CAAC,wBAAwB,CAAA,EAAG,QAAQ,CAAA,oBAAA,CAAsB;AAE7E,YAAA,MAAM,QAAQ,GAAG,MAAM,cAAc,CACnC,IAAI,CAAC,UAAU,CAAC,IAAI,CAA2B,GAAG,EAAE,IAAI,EAAE;gBACxD,MAAM;AACN,gBAAA,OAAO,EAAE;AACV,aAAA,CAAC,CACH;YACD,OAAO,QAAQ,CAAC,IAAI;QACtB;AACA,QAAA,OAAO,IAAI;IACb;;;;AAMA;;AAEG;AACH,IAAA,MAAM,wBAAwB,CAC5B,QAAgB,EAChB,WAAmB,EACnB,eAAuB,EACvB,YAAoB,EACpB,gBAAwB,EACxB,kBAAiC,EAAA;AAEjC,QAAA,IAAI,IAAI,CAAC,wBAAwB,EAAE;AACjC,YAAA,MAAM,MAAM,GAAG,IAAI,UAAU;iBAC1B,GAAG,CAAC,oBAAoB,EAAE,CAAA,EAAG,gBAAgB,CAAA,CAAA,EAAI,YAAY,EAAE;iBAC/D,GAAG,CAAC,mBAAmB,EAAE,CAAA,EAAG,eAAe,CAAA,CAAA,EAAI,WAAW,EAAE;AAC5D,iBAAA,GAAG,CAAC,cAAc,EAAE,WAAW,CAAC;YAEnC,MAAM,GAAG,GAAG,CAAA,EAAG,IAAI,CAAC,wBAAwB,CAAA,EAAG,QAAQ,CAAA,mBAAA,CAAqB;YAE5E,MAAM,cAAc,CAClB,IAAI,CAAC,UAAU,CAAC,IAAI,CAAO,GAAG,EAAE,kBAAkB,EAAE;gBAClD,MAAM;AACN,gBAAA,OAAO,EAAE;AACV,aAAA,CAAC,CACH;QACH;IACF;AAEA;;AAEG;AACH,IAAA,MAAM,kBAAkB,CAAC,QAAgB,EAAE,gBAAwB,EAAA;AACjE,QAAA,IAAI,IAAI,CAAC,wBAAwB,EAAE;AACjC,YAAA,MAAM,MAAM,GAAG,IAAI,UAAU,EAAE,CAAC,GAAG,CAAC,kBAAkB,EAAE,gBAAgB,CAAC;YACzE,MAAM,GAAG,GAAG,CAAA,EAAG,IAAI,CAAC,wBAAwB,CAAA,EAAG,QAAQ,CAAA,uBAAA,CAAyB;YAEhF,MAAM,cAAc,CAClB,IAAI,CAAC,UAAU,CAAC,IAAI,CAAO,GAAG,EAAE,IAAI,EAAE,EAAC,MAAM,EAAE,OAAO,EAAE,UAAU,EAAC,CAAC,CACrE;QACH;IACF;AAEA;;AAEG;AACH,IAAA,MAAM,oBAAoB,CAAC,QAAgB,EAAE,gBAAwB,EAAA;AACnE,QAAA,IAAI,IAAI,CAAC,wBAAwB,EAAE;AACjC,YAAA,MAAM,MAAM,GAAG,IAAI,UAAU,EAAE,CAAC,GAAG,CAAC,kBAAkB,EAAE,gBAAgB,CAAC;YACzE,MAAM,GAAG,GAAG,CAAA,EAAG,IAAI,CAAC,wBAAwB,CAAA,EAAG,QAAQ,CAAA,yBAAA,CAA2B;YAElF,MAAM,cAAc,CAClB,IAAI,CAAC,UAAU,CAAC,IAAI,CAAO,GAAG,EAAE,IAAI,EAAE,EAAC,MAAM,EAAE,OAAO,EAAE,UAAU,EAAC,CAAC,CACrE;QACH;IACF;AAEA;;AAEG;AACH,IAAA,MAAM,iBAAiB,CACrB,QAAgB,EAChB,YAAoB,EACpB,gBAAwB,EAAA;AAExB,QAAA,IAAI,IAAI,CAAC,wBAAwB,EAAE;AACjC,YAAA,MAAM,MAAM,GAAG,IAAI,UAAU;iBAC1B,GAAG,CAAC,oBAAoB,EAAE,CAAA,EAAG,gBAAgB,CAAA,CAAA,EAAI,YAAY,CAAA,CAAE,CAAC;YACnE,MAAM,GAAG,GAAG,CAAA,EAAG,IAAI,CAAC,wBAAwB,CAAA,EAAG,QAAQ,CAAA,mBAAA,CAAqB;YAE5E,OAAO,MAAM,cAAc,CACzB,IAAI,CAAC,UAAU,CAAC,GAAG,CAAsB,GAAG,EAAE,EAAC,MAAM,EAAC,CAAC,CAAC,IAAI,CAC1D,UAAU,CAAC,CAAC,KAAwB,KAAI;AACtC,gBAAA,IAAI,KAAK,CAAC,MAAM,KAAK,GAAG,EAAE;oBACxB,OAAO,UAAU,CAAC,MAAM,IAAI,KAAK,CAAC,0BAA0B,CAAC,CAAC;gBAChE;gBACA,OAAO,UAAU,CAAC,MAAM,IAAI,KAAK,CAAC,mBAAmB,CAAC,CAAC;YACzD,CAAC,CAAC,CACH,CACF;QACH;AACA,QAAA,OAAO,IAAI;IACb;;;;AAMA;;;AAGG;AACH,IAAA,MAAM,iBAAiB,CACrB,QAAgB,EAChB,WAAmB,EACnB,eAAuB,EAAA;AAEvB,QAAA,IAAI,IAAI,CAAC,wBAAwB,EAAE;AACjC,YAAA,MAAM,MAAM,GAAG,IAAI,UAAU;iBAC1B,GAAG,CAAC,mBAAmB,EAAE,CAAA,EAAG,eAAe,CAAA,CAAA,EAAI,WAAW,CAAA,CAAE,CAAC;YAChE,MAAM,GAAG,GAAG,CAAA,EAAG,IAAI,CAAC,wBAAwB,CAAA,EAAG,QAAQ,CAAA,2BAAA,CAA6B;YAEpF,OAAO,MAAM,cAAc,CACzB,IAAI,CAAC,UAAU,CAAC,GAAG,CAA0B,GAAG,EAAE,EAAC,MAAM,EAAC,CAAC,CAAC,IAAI,CAC9D,UAAU,CAAC,CAAC,KAAwB,KAAI;AACtC,gBAAA,IAAI,KAAK,CAAC,MAAM,KAAK,GAAG,EAAE;AACxB,oBAAA,OAAO,EAAE,CAAC,IAAI,CAAC;gBACjB;AACA,gBAAA,OAAO,UAAU,CAAC,MAAM,KAAK,CAAC;YAChC,CAAC,CAAC,CACH,CACF;QACH;AACA,QAAA,OAAO,IAAI;IACb;;;;AAMA;;;AAGG;IACH,MAAM,qBAAqB,CACzB,QAAgB,EAChB,YAAoB,EACpB,gBAAwB,EACxB,IAAY,EACZ,IAAY,EAAA;AAEZ,QAAA,IAAI,IAAI,CAAC,wBAAwB,EAAE;AACjC,YAAA,MAAM,MAAM,GAAG,IAAI,UAAU;AAC1B,iBAAA,GAAG,CAAC,MAAM,EAAE,IAAI,CAAC,QAAQ,EAAE;iBAC3B,GAAG,CAAC,MAAM,EAAE,IAAI,CAAC,QAAQ,EAAE,CAAC;AAC/B,YAAA,MAAM,GAAG,GAAG,CAAA,EAAG,IAAI,CAAC,wBAAwB,GAAG,QAAQ,CAAA,kBAAA,EAAqB,kBAAkB,CAAC,GAAG,gBAAgB,CAAA,CAAA,EAAI,YAAY,CAAA,CAAE,CAAC,EAAE;AAEvI,YAAA,OAAO,MAAM,cAAc,CACzB,IAAI,CAAC,UAAU,CAAC,GAAG,CAA6B,GAAG,EAAE,EAAC,MAAM,EAAE,OAAO,EAAE,IAAI,CAAC,cAAc,EAAC,CAAC,CAAC,IAAI,CAC/F,UAAU,CAAC,CAAC,KAAwB,KAAI;;AAEtC,gBAAA,IAAI,KAAK,CAAC,MAAM,KAAK,GAAG,EAAE;AACxB,oBAAA,OAAO,EAAE,CAAC,EAAE,CAAC;gBACf;AACA,gBAAA,OAAO,UAAU,CAAC,MAAM,KAAK,CAAC;YAChC,CAAC,CAAC,CACH,CACF;QACH;AACA,QAAA,OAAO,EAAE;IACX;AAEA;;;AAGG;AACH,IAAA,MAAM,0BAA0B,CAC9B,QAAgB,EAChB,YAAoB,EACpB,gBAAwB,EAAA;AAExB,QAAA,IAAI,IAAI,CAAC,wBAAwB,EAAE;AACjC,YAAA,MAAM,GAAG,GAAG,CAAA,EAAG,IAAI,CAAC,wBAAwB,GAAG,QAAQ,CAAA,kBAAA,EAAqB,kBAAkB,CAAC,GAAG,gBAAgB,CAAA,CAAA,EAAI,YAAY,CAAA,CAAE,CAAC,SAAS;YAE9I,OAAO,MAAM,cAAc,CACzB,IAAI,CAAC,UAAU,CAAC,GAAG,CAAkC,GAAG,EAAE,EAAC,OAAO,EAAE,IAAI,CAAC,cAAc,EAAC,CAAC,CAAC,IAAI,CAC5F,UAAU,CAAC,CAAC,KAAwB,KAAI;;AAEtC,gBAAA,IAAI,KAAK,CAAC,MAAM,KAAK,GAAG,EAAE;AACxB,oBAAA,OAAO,EAAE,CAAC,IAAI,CAAC;gBACjB;AACA,gBAAA,OAAO,UAAU,CAAC,MAAM,KAAK,CAAC;YAChC,CAAC,CAAC,CACH,CACF;QACH;AACA,QAAA,OAAO,IAAI;IACb;AAEA;;;AAGG;IACH,MAAM,mCAAmC,CACvC,QAAgB,EAChB,YAAoB,EACpB,gBAAwB,EACxB,mBAA2B,EAAA;AAE3B,QAAA,IAAI,IAAI,CAAC,wBAAwB,EAAE;YACjC,MAAM,GAAG,GAAG,CAAA,EAAG,IAAI,CAAC,wBAAwB,CAAA,EAAG,QAAQ,CAAA,kBAAA,EAAqB,kBAAkB,CAAC,CAAA,EAAG,gBAAgB,IAAI,YAAY,CAAA,CAAE,CAAC,CAAA,CAAA,EAAI,mBAAmB,EAAE;YAE9J,OAAO,MAAM,cAAc,CACzB,IAAI,CAAC,UAAU,CAAC,GAAG,CAAmB,GAAG,EAAE,EAAC,OAAO,EAAE,IAAI,CAAC,cAAc,EAAC,CAAC,CAAC,IAAI,CAC7E,UAAU,CAAC,CAAC,KAAwB,KAAI;;AAEtC,gBAAA,IAAI,KAAK,CAAC,MAAM,KAAK,GAAG,EAAE;AACxB,oBAAA,OAAO,EAAE,CAAC,IAAI,CAAC;gBACjB;AACA,gBAAA,OAAO,UAAU,CAAC,MAAM,KAAK,CAAC;YAChC,CAAC,CAAC,CACH,CACF;QACH;AACA,QAAA,OAAO,IAAI;IACb;AAEA;;;AAGG;IACH,MAAM,aAAa,CACjB,QAAgB,EAChB,YAAoB,EACpB,gBAAwB,EACxB,mBAA2B,EAC3B,MAAc,EAAA;AAEd,QAAA,IAAI,IAAI,CAAC,wBAAwB,EAAE;YACjC,MAAM,GAAG,GAAG,CAAA,EAAG,IAAI,CAAC,wBAAwB,CAAA,EAAG,QAAQ,CAAA,kBAAA,EAAqB,kBAAkB,CAAC,CAAA,EAAG,gBAAgB,CAAA,CAAA,EAAI,YAAY,CAAA,CAAE,CAAC,CAAA,CAAA,EAAI,mBAAmB,CAAA,CAAA,EAAI,kBAAkB,CAAC,MAAM,CAAC,CAAA,CAAE;YAE5L,OAAO,MAAM,cAAc,CACzB,IAAI,CAAC,UAAU,CAAC,GAAG,CAAoB,GAAG,EAAE,EAAC,OAAO,EAAE,IAAI,CAAC,cAAc,EAAC,CAAC,CAAC,IAAI,CAC9E,UAAU,CAAC,CAAC,KAAwB,KAAI;;AAEtC,gBAAA,IAAI,KAAK,CAAC,MAAM,KAAK,GAAG,EAAE;AACxB,oBAAA,OAAO,EAAE,CAAC,IAAI,CAAC;gBACjB;AACA,gBAAA,OAAO,UAAU,CAAC,MAAM,KAAK,CAAC;YAChC,CAAC,CAAC,CACH,CACF;QACH;AACA,QAAA,OAAO,IAAI;IACb;uGA7YW,oBAAoB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,UAAA,EAAA,CAAA;AAApB,IAAA,OAAA,KAAA,GAAA,EAAA,CAAA,qBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,oBAAoB,cAFnB,MAAM,EAAA,CAAA;;2FAEP,oBAAoB,EAAA,UAAA,EAAA,CAAA;kBAHhC,UAAU;AAAC,YAAA,IAAA,EAAA,CAAA;AACV,oBAAA,UAAU,EAAE;AACb,iBAAA;;;MCKY,gBAAgB,CAAA;AACV,IAAA,UAAU,GAAG,MAAM,CAAC,UAAU,CAAC;AAC/B,IAAA,oBAAoB,GAAG,MAAM,CAAC,qBAAqB,CAAC;AACpD,IAAA,gBAAgB,GAAG,MAAM,CAAC,gBAAgB,CAAC;IAErD,MAAM,WAAW,CAAC,OAAyB,EAAA;QAChD,MAAM,cAAc,GAAG,IAAI,CAAC,oBAAoB,CAAC,MAAM,EAAE,WAAW;QACpE,IAAI,CAAC,cAAc,EAAE;AACnB,YAAA,MAAM,IAAI,KAAK,CAAC,iCAAiC,CAAC;QACpD;QAEA,MAAM,SAAS,GAAG,MAAM,IAAI,CAAC,gBAAgB,CAAC,cAAc,EAAE,OAAO,CAAC;AACtE,QAAA,MAAM,WAAW,GAAG,MAAM,IAAI,CAAC,eAAe,CAAC,cAAc,EAAE,SAAS,EAAE,OAAO,CAAC;AAElF,QAAA,IAAI,CAAC,WAAW,EAAE,KAAK,EAAE;AACvB,YAAA,MAAM,IAAI,KAAK,CAAC,6BAA6B,CAAC;QAChD;AAEA,QAAA,OAAO,EAAC,KAAK,EAAE,WAAW,CAAC,KAAK,EAAC;IACnC;IAEQ,gBAAgB,CAAC,cAAsB,EAAE,OAAyB,EAAA;QACxE,OAAO,IAAI,OAAO,CAAS,CAAC,OAAO,EAAE,MAAM,KAAI;AAC7C,YAAA,MAAM,QAAQ,GAA2B;AACvC,gBAAA,QAAQ,EAAE,OAAO,CAAC,IAAI,CAAC,IAAI;AAC3B,gBAAA,QAAQ,EAAE,OAAO,CAAC,IAAI,CAAC,IAAI,IAAI,kBAAkB;gBACjD,QAAQ,EAAE,OAAO,CAAC,QAAQ;gBAC1B,YAAY,EAAE,OAAO,CAAC;aACvB;AAED,YAAA,IAAI,OAAO,CAAC,eAAe,EAAE;AAC3B,gBAAA,QAAQ,CAAC,iBAAiB,CAAC,GAAG,OAAO,CAAC,eAAe;YACvD;YAEA,MAAM,MAAM,GAAG,IAAI,MAAM,CAAC,OAAO,CAAC,IAAI,EAAE;gBACtC,QAAQ,EAAE,cAAc,GAAG,sBAAsB;gBACjD,WAAW,EAAE,CAAC,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,CAAC;AACzC,gBAAA,SAAS,EAAE,EAAE,GAAG,IAAI,GAAG,IAAI;gBAC3B,QAAQ;AACR,gBAAA,eAAe,EAAE,CAAC,GAAgB,KAAI;oBACpC,MAAM,KAAK,GAAG,IAAI,CAAC,gBAAgB,CAAC,kBAAkB,EAAE;oBACxD,IAAI,KAAK,EAAE;wBACT,GAAG,CAAC,SAAS,CAAC,eAAe,EAAE,CAAA,OAAA,EAAU,KAAK,CAAA,CAAE,CAAC;oBACnD;gBACF,CAAC;AACD,gBAAA,UAAU,EAAE,CAAC,aAAqB,EAAE,UAAkB,KAAI;oBACxD,OAAO,CAAC,UAAU,GAAG,aAAa,EAAE,UAAU,CAAC;gBACjD,CAAC;gBACD,SAAS,EAAE,MAAK;AACd,oBAAA,MAAM,SAAS,GAAG,MAAM,CAAC,GAAG;oBAC5B,IAAI,CAAC,SAAS,EAAE;AACd,wBAAA,MAAM,CAAC,IAAI,KAAK,CAAC,sCAAsC,CAAC,CAAC;wBACzD;oBACF;AACA,oBAAA,MAAM,SAAS,GAAG,SAAS,CAAC,SAAS,CAAC,SAAS,CAAC,WAAW,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;oBACrE,OAAO,CAAC,SAAS,CAAC;gBACpB,CAAC;AACD,gBAAA,OAAO,EAAE,CAAC,KAA4B,KAAI;oBACxC,MAAM,CAAC,IAAI,KAAK,CAAC,CAAA,eAAA,EAAkB,KAAK,CAAC,OAAO,CAAA,CAAE,CAAC,CAAC;gBACtD;AACD,aAAA,CAAC;YAEF,MAAM,CAAC,KAAK,EAAE;AAChB,QAAA,CAAC,CAAC;IACJ;AAEQ,IAAA,MAAM,eAAe,CAC3B,cAAsB,EACtB,SAAiB,EACjB,OAAyB,EAAA;AAEzB,QAAA,IAAI,MAAM,GAAG,IAAI,UAAU;AACxB,aAAA,GAAG,CAAC,WAAW,EAAE,SAAS;AAC1B,aAAA,GAAG,CAAC,UAAU,EAAE,OAAO,CAAC,QAAQ;AAChC,aAAA,GAAG,CAAC,cAAc,EAAE,OAAO,CAAC,YAAY,CAAC;AAE5C,QAAA,IAAI,OAAO,CAAC,eAAe,EAAE;YAC3B,MAAM,GAAG,MAAM,CAAC,GAAG,CAAC,iBAAiB,EAAE,OAAO,CAAC,eAAe,CAAC;QACjE;QAEA,MAAM,CAAC,GAAG,MAAM,cAAc,CAAC,IAAI,CAAC,UAAU,CAAC,IAAI,CACjD,cAAc,GAAG,oCAAoC,EACrD,IAAI,EACJ,EAAC,MAAM,EAAE,OAAO,EAAE,UAAU,EAAC,CAC9B,CAAC;QAEF,OAAO,CAAC,CAAC,IAAI;IACf;uGAvFW,gBAAgB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,UAAA,EAAA,CAAA;AAAhB,IAAA,OAAA,KAAA,GAAA,EAAA,CAAA,qBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,gBAAgB,cAFf,MAAM,EAAA,CAAA;;2FAEP,gBAAgB,EAAA,UAAA,EAAA,CAAA;kBAH5B,UAAU;AAAC,YAAA,IAAA,EAAA,CAAA;AACV,oBAAA,UAAU,EAAE;AACb,iBAAA;;;ACZD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAoCG;MACU,kBAAkB,GAAG,IAAI,cAAc,CAAmB,oBAAoB;;AC/C3F;;;;;AAKG;MAUU,kBAAkB,CAAA;IAC7B,OAAO,OAAO,CAAC,kBAAsC,EAAA;QACnD,OAAO;AACL,YAAA,QAAQ,EAAE,kBAAkB;AAC5B,YAAA,SAAS,EAAE;AACT,gBAAA;AACE,oBAAA,OAAO,EAAE,kBAAkB;AAC3B,oBAAA,QAAQ,EAAE;AACX,iBAAA;gBACD;AACD;SACF;IACH;uGAZW,kBAAkB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA;wGAAlB,kBAAkB,EAAA,CAAA;wGAAlB,kBAAkB,EAAA,CAAA;;2FAAlB,kBAAkB,EAAA,UAAA,EAAA,CAAA;kBAL9B,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;AACR,oBAAA,YAAY,EAAE,EAAE;AAChB,oBAAA,OAAO,EAAE,EAAE;AACX,oBAAA,OAAO,EAAE;AACV,iBAAA;;;ACdD;;;;AAIG;AAoCG,MAAgB,iBAAwB,SAAQ,cAAoB,CAAA;AAkBzE;AAEK,MAAO,0BAAsF,SAAQ,iBAAuB,CAAA;AAKpH,IAAA,cAAA;AACO,IAAA,KAAA;AACA,IAAA,WAAA;AANX,IAAA,QAAQ;AACR,IAAA,YAAY;AAEpB,IAAA,WAAA,CACY,cAA8B,EACvB,KAA0C,EAC1C,cAAgC,IAAI,EAAA;AAErD,QAAA,KAAK,EAAE;QAJG,IAAA,CAAA,cAAc,GAAd,cAAc;QACP,IAAA,CAAA,KAAK,GAAL,KAAK;QACL,IAAA,CAAA,WAAW,GAAX,WAAW;AAG5B,QAAA,IAAI,CAAC,QAAQ,GAAG,IAAI;AACpB,QAAA,IAAI,CAAC,YAAY,GAAG,IAAI;IAC1B;IAES,KAAK,GAAA;QACZ,KAAK,CAAC,KAAK,EAAE;AACb,QAAA,IAAI,CAAC,QAAQ,EAAE,WAAW,EAAE;AAC5B,QAAA,IAAI,CAAC,QAAQ,GAAG,IAAI;AACpB,QAAA,IAAI,CAAC,YAAY,EAAE,WAAW,EAAE;AAChC,QAAA,IAAI,CAAC,YAAY,GAAG,IAAI;IAC1B;AAEO,IAAA,MAAM,OAAO,GAAA;AAClB,QAAA,MAAM,IAAI,CAAC,QAAQ,EAAE,OAAO,EAAE;IAChC;AAEO,IAAA,MAAM,WAAW,CACtB,IAAI,GAAG,CAAC,EACR,IAAI,GAAG,EAAE,EACT,eAAuC,IAAI,EAC3C,cAAuC,IAAI,EAC3C,OAAyB,IAAI,EAAA;AAE7B,QAAA,MAAM,SAAS,GAAG,IAAI,CAAC,eAAe,CAAC,IAAI,EAAE,IAAI,EAAE,YAAY,EAAE,WAAW,EAAE,IAAI,CAAC;QACnF,MAAM,IAAI,CAAC,QAAQ,EAAE,OAAO,CAAC,SAAS,CAAC;IACzC;AAEU,IAAA,eAAe,CACvB,IAAI,GAAG,CAAC,EACR,IAAI,GAAG,EAAE,EACT,YAAA,GAAuC,IAAI,EAC3C,WAAA,GAAuC,IAAI,EAC3C,OAAyB,IAAI,EAAA;AAE7B,QAAA,IAAI,CAAC,CAAC,IAAI,KAAK,IAAI,IAAI,IAAI,CAAC,MAAM,KAAK,CAAC,CAAC,KAAK,YAAY,KAAK,IAAI,EAAE;AACnE,YAAA,IAAI,GAAG,IAAI,KAAK,EAAW;AAC3B,YAAA,IAAI,IAAI,CAAC,WAAW,EAAE;AACpB,gBAAA,IAAI,GAAG,IAAI,CAAC,WAAW;YACzB;QACF;QAEA,OAAO;AACL,YAAA,KAAK,EAAE,IAAI;AACX,YAAA,KAAK,EAAE,OAAO,CAAC,cAAc,CAAC,IAAI,CAAC;YACnC,IAAI;YACJ,YAAY;AACZ,YAAA,YAAY,EAAE;SACE;IACpB;AAEO,IAAA,QAAQ,CACb,IAAI,GAAG,CAAC,EACR,IAAI,GAAG,EAAE,EACT,YAAA,GAAuC,IAAI,EAC3C,WAAA,GAAuC,IAAI,EAC3C,OAAyB,IAAI,EAAA;QAE7B,IAAI,CAAC,KAAK,EAAE;QACZ,KAAK,CAAC,WAAW,EAAE;AAEnB,QAAA,MAAM,SAAS,GAAG,IAAI,CAAC,eAAe,CAAC,IAAI,EAAE,IAAI,EAAE,YAAY,EAAE,WAAW,EAAE,IAAI,CAAC;AACnF,QAAA,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,EAAE,SAAS,EAAE,WAAW,EAAE,KAAK,EAAE,CAAC;AAEnE,QAAA,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC,QAAQ,CAAC;AAC/B,aAAA,IAAI,CACHA,KAAG,CAAC,CAAC,CAAC,EAAE,CAAC,KAAK,IAAI,CAAC,WAAW,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;AACtC,aAAA,SAAS,CAAC;YACT,IAAI,EAAE,CAAC,WAAW,KAAK,KAAK,CAAC,cAAc,CAAC,WAAW,CAAC;AACxD,YAAA,KAAK,EAAE,CAAC,CAAC,KAAI;AACX,gBAAA,MAAM,YAAY,GAAG,CAAC,YAAY,KAAK,GAAG,CAAC,CAAC,OAAO,GAAG,MAAM,CAAC,CAAC,CAAC;gBAC/D,IAAI,CAAC,cAAc,CAAC,oBAAoB,CAAC,YAAY,EAAE,EAAE,CAAC;AAC1D,gBAAA,KAAK,CAAC,cAAc,CAAC,IAAI,cAAc,EAAQ,CAAC;YAClD;AACD,SAAA,CAAC;IACN;;IAGU,WAAW,CAAC,MAAW,EAAE,MAAc,EAAA;QAC/C,OAAO,IAAI,cAAc,EAAQ;IACnC;AACD;;ACtJD;;AAEG;AAGG,MAAO,mBAA0B,SAAQ,cAAiB,CAAA;AAC9D,IAAA,QAAQ;AAER,IAAA,WAAA,GAAA;AACE,QAAA,KAAK,EAAE;AAEP,QAAA,IAAI,CAAC,QAAQ,GAAG,IAAI;IACtB;AACD;;MCIY,sBAAsB,CAAA;AAEd,IAAA,MAAA;AACA,IAAA,QAAA;AACA,IAAA,kBAAA;AAHnB,IAAA,WAAA,CACmB,MAAc,EACd,QAAkB,EAClB,kBAAsC,EAAA;QAFtC,IAAA,CAAA,MAAM,GAAN,MAAM;QACN,IAAA,CAAA,QAAQ,GAAR,QAAQ;QACR,IAAA,CAAA,kBAAkB,GAAlB,kBAAkB;IAClC;IAEO,WAAW,CACnB,QAAgB,EAChB,SAAoB,EACpB,SAAuB,EACvB,UAAmB,EACnB,CAAiH,EAAA;QAEjH,IAAI,UAAU,EAAE;AACd,YAAA,MAAM,iBAAiB,GAAG,IAAI,CAAC,iBAAiB,CAAqB,QAAQ,EAAE,SAAS,EAAE,SAAS,CAAC;YAEpG,OAAO,iBAAiB,CAAC,IAAI,CAC3B,GAAG,CAAC,CAAC,MAAM,KAAI;AACb,gBAAA,MAAM,SAAS,GAAG,IAAI,cAAc,EAAW;AAE/C,gBAAA,IAAI,MAAM,CAAC,KAAK,IAAI,IAAI,EAAE;AACxB,oBAAA,OAAO,CAAC,KAAK,CAAC,MAAM,CAAC,KAAK,CAAC;AAC3B,oBAAA,MAAM,KAAK,CAAC,6BAA6B,CAAC;gBAC5C;AAAO,qBAAA,IAAI,MAAM,CAAC,IAAI,EAAE;AACtB,oBAAA,CAAC,CAAC,SAAS,EAAE,MAAM,CAAC,IAAI,CAAC;gBAC3B;AACA,gBAAA,OAAO,SAAS;YAClB,CAAC,CAAC,CACH;QACH;aAAO;AACL,YAAA,MAAM,YAAY,GAAG,IAAI,CAAC,YAAY,CAAqB,QAAQ,EAAE,SAAS,EAAE,SAAS,CAAC;YAE1F,OAAO,YAAY,CAAC,IAAI,CACtB,GAAG,CAAC,CAAC,MAAM,KAAI;AACb,gBAAA,MAAM,SAAS,GAAG,IAAI,cAAc,EAAW;AAE/C,gBAAA,IAAI,MAAM,CAAC,KAAK,IAAI,IAAI,EAAE;AACxB,oBAAA,OAAO,CAAC,KAAK,CAAC,MAAM,CAAC,KAAK,CAAC;AAC3B,oBAAA,MAAM,KAAK,CAAC,6BAA6B,CAAC;gBAC5C;AAAO,qBAAA,IAAI,MAAM,CAAC,IAAI,EAAE;AACtB,oBAAA,CAAC,CAAC,SAAS,EAAE,MAAM,CAAC,IAAI,CAAC;gBAC3B;AACA,gBAAA,OAAO,SAAS;YAClB,CAAC,CAAC,CACH;QACH;IACF;IAEU,gBAAgB,CACxB,QAAgB,EAChB,SAAoB,EACpB,SAAuB,EACvB,UAAmB,EACnB,CAAqH,EAAA;QAErH,IAAI,UAAU,EAAE;AACd,YAAA,MAAM,iBAAiB,GAAG,IAAI,CAAC,iBAAiB,CAAqB,QAAQ,EAAE,SAAS,EAAE,SAAS,CAAC;YAEpG,OAAO,iBAAiB,CAAC,IAAI,CAC3B,GAAG,CAAC,CAAC,MAAM,KAAI;AACb,gBAAA,MAAM,SAAS,GAAG,IAAI,mBAAmB,EAAU;AAEnD,gBAAA,IAAI,MAAM,CAAC,KAAK,IAAI,IAAI,EAAE;AACxB,oBAAA,OAAO,CAAC,KAAK,CAAC,MAAM,CAAC,KAAK,CAAC;AAC3B,oBAAA,MAAM,KAAK,CAAC,6BAA6B,CAAC;gBAC5C;AAAO,qBAAA,IAAI,MAAM,CAAC,IAAI,EAAE;AACtB,oBAAA,CAAC,CAAC,SAAS,EAAE,MAAM,CAAC,IAAI,CAAC;gBAC3B;AACA,gBAAA,OAAO,SAAS;YAClB,CAAC,CAAC,CACH;QACH;aAAO;AACL,YAAA,MAAM,YAAY,GAAG,IAAI,CAAC,YAAY,CAAqB,QAAQ,EAAE,SAAS,EAAE,SAAS,CAAC;YAE1F,OAAO,YAAY,CAAC,IAAI,CACtB,GAAG,CAAC,CAAC,MAAM,KAAI;AACb,gBAAA,MAAM,SAAS,GAAG,IAAI,mBAAmB,EAAU;AAEnD,gBAAA,IAAI,MAAM,CAAC,KAAK,IAAI,IAAI,EAAE;AACxB,oBAAA,OAAO,CAAC,KAAK,CAAC,MAAM,CAAC,KAAK,CAAC;AAC3B,oBAAA,MAAM,KAAK,CAAC,6BAA6B,CAAC;gBAC5C;AAAO,qBAAA,IAAI,MAAM,CAAC,IAAI,EAAE;AACtB,oBAAA,CAAC,CAAC,SAAS,EAAE,MAAM,CAAC,IAAI,CAAC;gBAC3B;AACA,gBAAA,OAAO,SAAS;YAClB,CAAC,CAAC,CACH;QACH;IACF;IAEU,eAAe,CACvB,QAAgB,EAChB,SAAoB,EACpB,SAAuB,EACvB,UAAmB,EACnB,CAAgF,EAAA;QAEhF,IAAI,UAAU,EAAE;AACd,YAAA,MAAM,KAAK,GAAG,IAAI,CAAC,iBAAiB,CAAqB,QAAQ,EAAE,SAAS,EAAE,SAAS,CAAC;YACxF,OAAO,KAAK,CAAC,IAAI,CACf,GAAG,CAAC,CAAC,MAAM,KAAI;AACb,gBAAA,IAAI,MAAM,CAAC,KAAK,IAAI,IAAI,EAAE;AACxB,oBAAA,OAAO,CAAC,KAAK,CAAC,MAAM,CAAC,KAAK,CAAC;AAC3B,oBAAA,MAAM,KAAK,CAAC,6BAA6B,CAAC;gBAC5C;AAAO,qBAAA,IAAI,MAAM,CAAC,IAAI,EAAE;AACtB,oBAAA,OAAO,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC;gBACvB;AACA,gBAAA,OAAO,IAAI;YACb,CAAC,CAAC,CACH;QACH;aAAO;AACL,YAAA,MAAM,KAAK,GAAG,IAAI,CAAC,YAAY,CAAqB,QAAQ,EAAE,SAAS,EAAE,SAAS,CAAC;YACnF,OAAO,KAAK,CAAC,IAAI,CACf,GAAG,CAAC,CAAC,MAAM,KAAI;AACb,gBAAA,IAAI,MAAM,CAAC,KAAK,IAAI,IAAI,EAAE;AACxB,oBAAA,OAAO,CAAC,KAAK,CAAC,MAAM,CAAC,KAAK,CAAC;AAC3B,oBAAA,MAAM,KAAK,CAAC,6BAA6B,CAAC;gBAC5C;AAAO,qBAAA,IAAI,MAAM,CAAC,IAAI,EAAE;AACtB,oBAAA,OAAO,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC;gBACvB;AACA,gBAAA,OAAO,IAAI;YACb,CAAC,CAAC,CACH;QACH;IACF;AAEU,IAAA,kBAAkB,CAC1B,QAAgB,EAChB,SAAoB,EACpB,SAAuB,EACvB,CAAkD,EAAA;AAElD,QAAA,IAAI,CAAC,qBAAqB,CAAC,QAAQ,CAAC;QAEpC,OAAO,IAAI,CAAC;aACT,GAAG,CAAC,QAAQ;AACZ,aAAA,MAAM,CAAU;AACf,YAAA,QAAQ,EAAE,SAAS;YACnB;SACD;AACA,aAAA,IAAI,CACH,GAAG,CAAC,CAAC,KAAK,KAAK,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,EAC7B,QAAQ,CAAC,MAAK;AACZ,YAAA,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC,MAAM,CAAC,wBAAwB,CAAC,IAAI;AAC3D,iBAAA,KAAK,CAAC,CAAC,KAAa,KAAI;AACvB,gBAAA,OAAO,CAAC,KAAK,CAAC,KAAK,CAAC;AACtB,YAAA,CAAC,CAAC;QACN,CAAC,CAAC,CACH;IACL;AAEU,IAAA,YAAY,CACpB,QAAgB,EAChB,SAAoB,EACpB,SAAuB,EACvB,CAAkD,EAAA;AAElD,QAAA,IAAI,CAAC,qBAAqB,CAAC,QAAQ,CAAC;QAEpC,OAAO,IAAI,CAAC;aACT,GAAG,CAAC,QAAQ;AACZ,aAAA,MAAM,CAAU;AACf,YAAA,QAAQ,EAAE,SAAS;YACnB;SACD;AACA,aAAA,IAAI,CACH,GAAG,CAAC,CAAC,KAAK,KAAK,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,EAC7B,QAAQ,CAAC,MAAK;AACZ,YAAA,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC,MAAM,CAAC,wBAAwB,CAAC,IAAI;AAC3D,iBAAA,KAAK,CAAC,CAAC,KAAa,KAAI;AACvB,gBAAA,OAAO,CAAC,KAAK,CAAC,KAAK,CAAC;AACtB,YAAA,CAAC,CAAC;QACN,CAAC,CAAC,CACH;IACL;AAEQ,IAAA,qBAAqB,CAAC,QAAgB,EAAA;QAC5C,MAAM,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC;QACxC,IAAI,MAAM,EAAE;YACV;QACF;QAEA,MAAM,OAAO,GAAG,IAAI,CAAC,kBAAkB,CAAC,aAAa,IAAI,EAAE;AAC3D,QAAA,MAAM,GAAG,GAAG,CAAA,EAAG,OAAO,CAAA,QAAA,EAAW,QAAQ,UAAU;AAEnD,QAAA,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,QAAQ,EAAE;YAChC,IAAI,EAAE,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC,EAAE,GAAG,EAAE,CAAC;YACnC,KAAK,EAAE,IAAI,aAAa,CAAC;gBACvB,gBAAgB,EAAE,CAAC,CAAC,KAAM,CAAC,CAAC,MAAM;aACnC;AACF,SAAA,CAAC;IACJ;AAEQ,IAAA,iBAAiB,CACvB,QAAgB,EAChB,SAAoB,EACpB,SAAuB,EAAA;AAEvB,QAAA,IAAI,CAAC,qBAAqB,CAAC,QAAQ,CAAC;QAEpC,OAAO,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC,UAAU,CAAU;AACnD,YAAA,KAAK,EAAE,SAAS;YAChB;SACD,CAAC,CAAC,YAAY;IACjB;AAEQ,IAAA,YAAY,CAClB,QAAgB,EAChB,SAAoB,EACpB,SAAuB,EAAA;AAEvB,QAAA,IAAI,CAAC,qBAAqB,CAAC,QAAQ,CAAC;QAEpC,OAAO,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC,KAAK,CAAU;AAC9C,YAAA,KAAK,EAAE,SAAS;YAChB,SAAS;AACT,YAAA,WAAW,EAAE;AACd,SAAA,CAAC;IACJ;AACD;;AC7OD;;AAEG;AAyEG,SAAU,mBAAmB,CAAC,kBAAuC,EAAA;AACzE,IAAA,OAAO,wBAAwB,CAAC;AAC9B,QAAA,uBAAuB,EAAE;QACzB,aAAa;AACb,QAAA;AACE,YAAA,OAAO,EAAE,kBAAkB;AAC3B,YAAA,QAAQ,EAAE;AACX;AACF,KAAA,CAAC;AACJ;;ACpFA;;AAEG;;;;"}