import * as i0 from '@angular/core'; import { InjectionToken, ModuleWithProviders, EnvironmentProviders } from '@angular/core'; import * as rxjs from 'rxjs'; import { Observable } from 'rxjs'; import { PagedResultDto, EntitySelectDataSource, EntitySelectResult, DataSourceBase, MessageService } from '@meshmakers/shared-services'; import { ApolloLink, OperationVariables } from '@apollo/client/core'; import { SVGIcon } from '@progress/kendo-svg-icons/dist/svg-icon.interface'; import * as Apollo from 'apollo-angular'; import { Apollo as Apollo$1 } from 'apollo-angular'; import * as graphql from 'graphql'; import { DocumentNode } from 'graphql'; import { HttpLink } from 'apollo-angular/http'; import { DeepPartial } from '@apollo/client/utilities'; import { EntitySelectDialogDataSource, ColumnDefinition, DialogFetchOptions, DialogFetchResult } from '@meshmakers/shared-ui'; declare class OctoServiceOptions { assetServices: string | null; defaultDataSourceId?: string; constructor(); } declare class GraphQL { static getCursor(position: number): string; static offsetToCursor(offset: number): string | null; } declare const GraphQLCommonIgnoredProperties: string[]; declare const GraphQLCloneIgnoredProperties: string[]; declare class CkTypeMetaData { constructor(ckTypeId: string, name: string, description: string, svgIcon: SVGIcon); private readonly _ckTypeId; private readonly _name; private readonly _description; private readonly _svgIcon; get ckTypeId(): string; get name(): string; get description(): string; get svgIcon(): SVGIcon; } declare class RtAssociationMetaData { private readonly _roleId; private readonly _ckTypeId; constructor(roleId: string, ckTypeId: string); get ckTypeId(): string; get roleId(): string; } declare class LevelMetaData { constructor(ckTypeId: string, directRoles: RtAssociationMetaData[], indirectRoles: RtAssociationMetaData[]); private readonly _ckTypeId; private readonly _directRoles; private readonly _indirectRoles; get ckTypeId(): string; get directRoles(): RtAssociationMetaData[]; get indirectRoles(): RtAssociationMetaData[]; } declare class OctoErrorLink extends ApolloLink { private errorLink; private readonly injector; constructor(); private showErrorLike; private showError; request(operation: ApolloLink.Operation, forward: ApolloLink.ForwardFunction): rxjs.Observable, Record>>; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; } interface ExternalLoginDto { loginProvider: string; providerDisplayName: string; providerKey: string; } interface UserDto { firstName: string; lastName: string; userId: string; email: string; name: string; externalLogins?: ExternalLoginDto[]; } interface RegisterUserDto extends UserDto { password: string; } interface MergeUsersRequestDto { sourceUserName: string; } interface RoleDto { id: string; name: string; } interface JobDto { id: string; createdAt: Date | null; stateChangedAt: Date | null; status: string | null; reason: string | null; errorMessage: string | null; } interface JobResponseDto { jobId: string; } declare enum HealthStatus { Unhealthy = "Unhealthy", Degraded = "Degraded", Healthy = "Healthy" } interface HealthCheckResult { title: string; data: Map | null; description: string | null; status: HealthStatus; } interface HealthCheck { status: HealthStatus; results: HealthCheckResult[]; } interface ImportModelResponseDto { jobId: string; } declare enum ImportStrategyDto { InsertOnly = 0, Upsert = 1 } declare class ProgressValue { statusText: string | null; progressValue: number; constructor(); } /** * Reference to an open progress dialog. Provides close() to dismiss. */ interface ProgressDialogRef { close(): void; } interface ProgressWindowOptions { isCancelOperationAvailable?: boolean; cancelOperation?: () => void; width?: number; height?: number | string; } /** * Abstract progress window service. * Consuming apps must provide a concrete implementation (Material or Kendo). * * @example * ```typescript * // In app.config.ts * import { ProgressWindowService as AbstractProgressWindowService } from '@meshmakers/octo-services'; * import { ProgressWindowService } from '@meshmakers/shared-ui-legacy'; // Material impl * * providers: [ * { provide: AbstractProgressWindowService, useClass: ProgressWindowService } * ] * ``` */ declare abstract class ProgressWindowService { abstract showDeterminateProgress(title: string, progress: Observable, options?: Partial): ProgressDialogRef; abstract showIndeterminateProgress(title: string, progress: Observable, options?: Partial): ProgressDialogRef; } interface GrantTypes { id: string; name: string; } interface GeneratedPasswordDto { value: string; } interface ExportModelResponseDto { jobId: string; } interface KeyValueModel { key: string; value: string; } interface DiagnosticsModel { name: string; claims: KeyValueModel[]; } interface ClientDto { isEnabled: boolean; clientId: string; clientName: string; clientUri: string; clientSecret: string; requireClientSecret: boolean; allowedGrantTypes: string[]; redirectUris: string[]; postLogoutRedirectUris: string[]; allowedCorsOrigins: string[]; allowedScopes: string[]; isOfflineAccessEnabled: boolean; } interface ClientScope { id: string; name: string; } interface GroupDto { id?: string; groupName: string; groupDescription?: string; roleIds: string[]; memberUserIds: string[]; memberExternalUserIds: string[]; memberGroupIds: string[]; } interface CreateGroupDto { groupName: string; groupDescription?: string; roleIds?: string[]; } interface UpdateGroupDto { groupName: string; groupDescription?: string; } declare enum IdentityProviderType { Google = 0, Microsoft = 1, MicrosoftAzureAd = 2, MicrosoftActiveDirectory = 3, OpenLdap = 4, Facebook = 5, OctoTenant = 6 } interface IdentityProviderDto { $type?: number; rtId?: string; name?: string; description?: string; isEnabled: boolean; clientId?: string; clientSecret?: string; tenantId?: string; authority?: string; host?: string; port?: number; useTls?: boolean; userBaseDn?: string; userNameAttribute?: string; allowSelfRegistration?: boolean; defaultGroupRtId?: string; parentTenantId?: string; } interface IdentityProvidersResult { identityProviders?: IdentityProviderDto[]; } declare const IDENTITY_PROVIDER_TYPE_LABELS: Record; interface EmailDomainGroupRuleDto { rtId?: string; emailDomainPattern?: string; targetGroupRtId?: string; description?: string; } interface EmailDomainGroupRulesResult { emailDomainGroupRules?: EmailDomainGroupRuleDto[]; } interface ExternalTenantUserMappingDto { id?: string; sourceTenantId: string; sourceUserId: string; sourceUserName: string; roleIds: string[]; groupNames: string[]; } interface CreateExternalTenantUserMappingDto { sourceTenantId: string; sourceUserId: string; sourceUserName: string; roleIds?: string[]; } interface TenantDto { tenantId: string; database: string; } interface AdminPanelConfigurationDto { communicationServices: string; assetServices: string; botServices: string; meshAdapterUrl: string; grafanaUrl: string; crateDbAdminUrl: string; issuer: string; systemTenantId: string; } interface ConfigurationDto { adminUri: string; clientId: string; redirectUri: string; postLogoutRedirectUri: string; } /** * Communication service DTOs for adapter and pipeline management. */ /** * Describes a pipeline node type with its configuration schema. * Returned by GET /adapter/nodes endpoint. */ interface NodeDescriptorDto { nodeName: string; version: number; category: string; isTrigger: boolean; supportsChildren: boolean; configurationSchemaJson: string; } /** * Parsed node properties from a pipeline definition. * Returned by POST /pipelinedefinition/parse-node endpoint. */ interface PipelineNodePropertiesDto { nodeType: string; nodeIndex: number; properties: Record; } /** * Deployment state for pipeline operations. */ declare enum DeploymentState { Processing = 0, Success = 1, Failed = 2 } /** * Result of a pipeline deployment operation. */ interface DeploymentResultDto { pipelineRtEntityId: string; state: DeploymentState; stateMessages: string | null; } /** * Pipeline execution data for debugging. */ interface PipelineExecutionDataDto { id: string; dateTime: Date; status?: string; durationMs?: number; errorMessage?: string; hasDebugData?: boolean; } /** * Severity levels for debug messages. */ declare enum LoggerSeverity { Debug = 0, Information = 1, Warning = 2, Error = 3 } /** * Debug message from pipeline execution. */ interface DebugMessage { severity: LoggerSeverity; nodePath: string; message: string; dateTime: Date; exceptionMessage: string | null; } /** * Debug point node in a pipeline execution tree. */ interface DebugPointNode { nodeId: string; sequenceNumber: number; name: string; fullPath: string; description: string | null; children: DebugPointNode[] | null; } /** * Data captured at a debug point during pipeline execution. */ interface DebugPointDataDto { nodePath: string; sequenceNumber: number; messages: DebugMessage[]; input: unknown | null; output: unknown | null; } interface CkModelCatalogDto { name: string; description: string; } interface CkModelCatalogItemDto { id: string; name: string; version: string; description?: string; catalogName: string; } interface CkModelCatalogListResponseDto { items: CkModelCatalogItemDto[]; totalCount: number; skip: number; take: number; } interface ImportFromCatalogRequestDto { catalogName: string; modelId: string; } interface DependencyResolutionItemDto { modelId: string; name: string; requiredVersion: string; installedVersion?: string; action: 'install' | 'update' | 'none' | 'incompatible'; dependencies: DependencyResolutionItemDto[]; } interface DependencyResolutionResponseDto { rootModel: DependencyResolutionItemDto; } interface UpgradeCheckResponseDto { modelName: string; installedVersion?: string; targetVersion: string; upgradeNeeded: boolean; migrationPathAvailable: boolean; hasBreakingChanges: boolean; errorMessage?: string; } interface CkModelLibraryStatusItemDto { name: string; installedVersion?: string; modelState?: string; dependencies: string[]; catalogVersion?: string; hasUpdate: boolean; needsAction: boolean; catalogName?: string; fullModelId?: string; isServiceManaged: boolean; isCompatible: boolean; incompatibilityReason?: string; } interface CkModelLibraryStatusResponseDto { items: CkModelLibraryStatusItemDto[]; modelsNeedingActionCount: number; } interface ImportFromCatalogBatchRequestDto { catalogName: string; modelIds: string[]; } interface BatchImportResponseDto { jobId: string; } interface BatchDependencyResolutionResponseDto { modelsToImport: string[]; dependencyTrees: DependencyResolutionResponseDto[]; } interface MigrationHistoryEntryDto { ckModelName: string; fromVersion: string; toVersion: string; executedAt: string; success: boolean; entitiesAffected: number; entitiesAdded: number; entitiesUpdated: number; entitiesDeleted: number; durationMs: number; errors?: string[]; warnings?: string[]; backupId?: string; } interface MigrationHistoryResponseDto { items: MigrationHistoryEntryDto[]; totalCount: number; } type Maybe = T | null; type InputMaybe = Maybe; type Exact = { [K in keyof T]: T[K]; }; type MakeOptional = Omit & { [SubKey in K]?: Maybe; }; type MakeMaybe = Omit & { [SubKey in K]: Maybe; }; type MakeEmpty = { [_ in K]?: never; }; type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never; }; /** All built-in and custom scalars, mapped to their actual values */ type Scalars = { ID: { input: string; output: string; }; String: { input: string; output: string; }; Boolean: { input: boolean; output: boolean; }; Int: { input: number; output: number; }; Float: { input: number; output: number; }; BigInt: { input: any; output: any; }; Byte: { input: any; output: any; }; /** A construction kit version. */ CkVersion: { input: any; output: any; }; /** 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. */ DateTime: { input: Date; output: Date; }; /** 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. */ DateTimeOffset: { input: any; output: any; }; Decimal: { input: number; output: number; }; LargeBinary: { input: any; output: any; }; Long: { input: any; output: any; }; /** A unique identifier for an runtime object. */ OctoObjectId: { input: string; output: string; }; /** A runtime construction kit id of CkAssociationRoleId. */ RtCkAssociationRoleId: { input: any; output: any; }; /** A runtime construction kit id of CkEnumId. */ RtCkEnumId: { input: any; output: any; }; /** A runtime construction kit id of CkRecordId. */ RtCkRecordId: { input: any; output: any; }; /** A runtime construction kit id of CkTypeId. */ RtCkTypeId: { input: any; output: any; }; /** The `Seconds` scalar type represents a period of time represented as the total number of seconds in range [-922337203685, 922337203685]. */ Seconds: { input: any; output: any; }; SimpleScalar: { input: any; output: any; }; ULong: { input: any; output: any; }; Uri: { input: any; output: any; }; }; /** Defines the type of aggregation for runtime queries. */ declare enum AggregationInputTypesDto { AverageDto = "AVERAGE", CountDto = "COUNT", MaximumDto = "MAXIMUM", MinimumDto = "MINIMUM", SumDto = "SUM" } /** Defines the aggregation type */ declare enum AggregationTypeDto { AvgDto = "AVG", CountDto = "COUNT", MaxDto = "MAX", MinDto = "MIN", SumDto = "SUM" } /** Defines the type of aggregation for runtime query results. */ declare enum AggregationTypesDto { AverageDto = "AVERAGE", CountDto = "COUNT", MaximumDto = "MAXIMUM", MinimumDto = "MINIMUM", NoneDto = "NONE", SumDto = "SUM" } /** Defines the type of modification during write operations */ declare enum AssociationModOptionsDto { CreateDto = "CREATE", DeleteDto = "DELETE" } type AttributeArgumentDto = { aggregationType?: InputMaybe; sortOrder?: InputMaybe; /** Defines the priority of the sort. Lower values are sorted first; null values aren't sorted at all. */ sortPriority?: InputMaybe; }; /** Enum of valid attribute types */ declare enum AttributeValueTypeDto { BinaryDto = "BINARY", BinaryLinkedDto = "BINARY_LINKED", BooleanDto = "BOOLEAN", DateTimeDto = "DATE_TIME", DateTimeOffsetDto = "DATE_TIME_OFFSET", DoubleDto = "DOUBLE", EnumDto = "ENUM", GeospatialPointDto = "GEOSPATIAL_POINT", IntDto = "INT", IntegerDto = "INTEGER", Integer_64Dto = "INTEGER_64", IntegerArrayDto = "INTEGER_ARRAY", Int_64Dto = "INT_64", IntArrayDto = "INT_ARRAY", RecordDto = "RECORD", RecordArrayDto = "RECORD_ARRAY", StringDto = "STRING", StringArrayDto = "STRING_ARRAY", TimeSpanDto = "TIME_SPAN" } /** Runtime entities of construction kit record 'Basic/Address' */ type BasicAddressDto = { __typename?: 'BasicAddress'; addressOfAdditionalLink?: Maybe; addressRemarks?: Maybe>; cityTown: Scalars['String']['output']; constructionKitType?: Maybe; department?: Maybe; eMail?: Maybe; fax?: Maybe; nationalCode: Scalars['String']['output']; pOBox?: Maybe; phone?: Maybe; stateCounty?: Maybe; street: Scalars['String']['output']; vATnumber?: Maybe; zipOfPOBox?: Maybe; zipcode: Scalars['Int']['output']; }; type BasicAddressInputDto = { addressOfAdditionalLink?: InputMaybe; addressRemarks?: InputMaybe>; cityTown?: InputMaybe; department?: InputMaybe; eMail?: InputMaybe; fax?: InputMaybe; nationalCode?: InputMaybe; pOBox?: InputMaybe; phone?: InputMaybe; stateCounty?: InputMaybe; street?: InputMaybe; vATnumber?: InputMaybe; zipOfPOBox?: InputMaybe; zipcode?: InputMaybe; }; /** Runtime entities of construction kit record 'Basic/Amount' */ type BasicAmountDto = { __typename?: 'BasicAmount'; constructionKitType?: Maybe; unit: BasicUnitOfMeasureDto; value: Scalars['Decimal']['output']; }; type BasicAmountInputDto = { unit?: InputMaybe; value?: InputMaybe; }; /** Runtime entities of construction kit type 'Basic-2.0.2/Asset-1' */ type BasicAssetDto = { __typename?: 'BasicAsset'; associations?: Maybe; children?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; description?: Maybe; events?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; orders?: Maybe; parent?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'Basic-2.0.2/Asset-1' */ type BasicAssetAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/Asset-1' */ type BasicAssetChildrenArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/Asset-1' */ type BasicAssetConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/Asset-1' */ type BasicAssetEventsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/Asset-1' */ type BasicAssetMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/Asset-1' */ type BasicAssetMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/Asset-1' */ type BasicAssetOrdersArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/Asset-1' */ type BasicAssetParentArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/Asset-1' */ type BasicAssetRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/Asset-1' */ type BasicAssetRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/Asset-1' */ type BasicAssetTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `BasicAsset`. */ type BasicAssetConnectionDto = { __typename?: 'BasicAssetConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `BasicAsset`. */ type BasicAssetEdgeDto = { __typename?: 'BasicAssetEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type BasicAssetInputDto = { children?: InputMaybe>>; configuredBy?: InputMaybe>>; description?: InputMaybe; events?: InputMaybe>>; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; orders?: InputMaybe>>; parent?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; }; type BasicAssetInputUpdateDto = { /** Item to update */ item: BasicAssetInputDto; rtId?: InputMaybe; }; type BasicAssetMutationsDto = { __typename?: 'BasicAssetMutations'; /** Creates new entities of type 'BasicAsset'. */ create?: Maybe>>; /** Updates existing entity of type 'BasicAsset'. */ update?: Maybe>>; }; type BasicAssetMutationsCreateArgsDto = { entities: Array>; }; type BasicAssetMutationsUpdateArgsDto = { entities: Array>; }; type BasicAssetUpdateDto = { __typename?: 'BasicAssetUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type BasicAssetUpdateMessageDto = { __typename?: 'BasicAssetUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Union of types derived from Basic/Asset for EventSource association */ type BasicAsset_EventSourceUnionDto = BasicAssetDto | IndustryBasicMachineDto | IndustryEnergyEnergyConsumerDto | IndustryEnergyEnergyMeterDto | IndustryEnergyEnergyStorageDto | IndustryEnergyInverterDto | IndustryEnergyPhotovoltaicSystemDto | IndustryEnergyPhotovoltaicSystemModuleDto | IndustryEnergyPhotovoltaicSystemStringDto | IndustryFluidHeatMeterDto | IndustryFluidWaterMeterDto | IndustryMaintenanceCostCenterDto | IndustryMaintenanceEmployeeDto | IndustryMaintenanceWorkplaceDto | OctoSdkDemoMeteringPointDto; /** A connection to `BasicAsset_EventSourceUnion`. */ type BasicAsset_EventSourceUnionConnectionDto = { __typename?: 'BasicAsset_EventSourceUnionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `BasicAsset_EventSourceUnion`. */ type BasicAsset_EventSourceUnionEdgeDto = { __typename?: 'BasicAsset_EventSourceUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Union of types derived from Basic/Asset for RelatesFrom association */ type BasicAsset_RelatesFromUnionDto = BasicAssetDto | BasicCityDto | BasicCountryDto | BasicDistrictDto | BasicEmployeeDto | BasicStateDto | BasicTreeDto | BasicTreeNodeDto | IndustryBasicAlarmDto | IndustryBasicEventDto | IndustryBasicMachineDto | IndustryBasicRuntimeVariableDto | IndustryEnergyDemandResponseEventDto | IndustryEnergyEnergyConsumerDto | IndustryEnergyEnergyCostDto | IndustryEnergyEnergyForecastDto | IndustryEnergyEnergyMeterDto | IndustryEnergyEnergyPerformanceIndicatorDto | IndustryEnergyEnergyStorageDto | IndustryEnergyInverterDto | IndustryEnergyPhotovoltaicSystemDto | IndustryEnergyPhotovoltaicSystemModuleDto | IndustryEnergyPhotovoltaicSystemStringDto | IndustryFluidHeatMeterDto | IndustryFluidWaterMeterDto | IndustryMaintenanceAccountDto | IndustryMaintenanceCostCenterDto | IndustryMaintenanceEmployeeDto | IndustryMaintenanceEnergyBalanceDto | IndustryMaintenanceJournalEntryDto | IndustryMaintenanceOrderDto | IndustryMaintenanceOrderCostsDto | IndustryMaintenanceOrderFeedbackDto | IndustryMaintenanceWorkplaceDto | OctoSdkDemoCustomerDto | OctoSdkDemoMeteringPointDto | OctoSdkDemoOperatingFacilityDto | SystemAggregationRtQueryDto | SystemAggregationSdQueryDto | SystemAutoIncrementDto | SystemBotAttributeAggregateConfigurationDto | SystemBotFixupDto | SystemCommunicationAdapterDto | SystemCommunicationAiConfigurationDto | SystemCommunicationDataFlowDto | SystemCommunicationDataPointMappingDto | SystemCommunicationDiscordConfigurationDto | SystemCommunicationEMailReceiverConfigurationDto | SystemCommunicationEMailSenderConfigurationDto | SystemCommunicationEdaConfigurationDto | SystemCommunicationEnergyCommunityConfigurationDto | SystemCommunicationFinApiConfigurationDto | SystemCommunicationGrafanaConfigurationDto | SystemCommunicationLoxoneConfigurationDto | SystemCommunicationMicrosoftGraphConfigurationDto | SystemCommunicationPipelineDto | SystemCommunicationPipelineExecutionDto | SystemCommunicationPipelineStatisticsDto | SystemCommunicationPipelineTriggerDto | SystemCommunicationPoolDto | SystemCommunicationSapConfigurationDto | SystemCommunicationServiceAccountConfigurationDto | SystemCommunicationSftpConfigurationDto | SystemCommunicationTagDto | SystemDownsamplingSdQueryDto | SystemGroupingAggregationRtQueryDto | SystemGroupingAggregationSdQueryDto | SystemIdentityApiResourceDto | SystemIdentityApiScopeDto | SystemIdentityAzureEntraIdIdentityProviderDto | SystemIdentityClientDto | SystemIdentityEmailDomainGroupRuleDto | SystemIdentityExternalTenantUserMappingDto | SystemIdentityFacebookIdentityProviderDto | SystemIdentityGoogleIdentityProviderDto | SystemIdentityGroupDto | SystemIdentityIdentityResourceDto | SystemIdentityMailNotificationConfigurationDto | SystemIdentityMicrosoftAdIdentityProviderDto | SystemIdentityMicrosoftIdentityProviderDto | SystemIdentityOctoTenantIdentityProviderDto | SystemIdentityOpenLdapIdentityProviderDto | SystemIdentityPermissionDto | SystemIdentityPermissionRoleDto | SystemIdentityPersistedGrantDto | SystemIdentityRoleDto | SystemIdentityUserDto | SystemMigrationHistoryDto | SystemNotificationCssTemplateConfigurationDto | SystemNotificationEventDto | SystemNotificationNotificationTemplateDto | SystemNotificationStatefulEventDto | SystemReportingConnectionInfoDto | SystemReportingFileSystemItemDto | SystemReportingFolderDto | SystemReportingFolderRootDto | SystemSimpleRtQueryDto | SystemSimpleSdQueryDto | SystemTenantDto | SystemTenantConfigurationDto | SystemTenantModeConfigurationDto | SystemUiBrandingDto | SystemUiDashboardDto | SystemUiDashboardWidgetDto | SystemUiProcessDiagramDto | SystemUiSymbolDefinitionDto | SystemUiSymbolLibraryDto; /** A connection to `BasicAsset_RelatesFromUnion`. */ type BasicAsset_RelatesFromUnionConnectionDto = { __typename?: 'BasicAsset_RelatesFromUnionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `BasicAsset_RelatesFromUnion`. */ type BasicAsset_RelatesFromUnionEdgeDto = { __typename?: 'BasicAsset_RelatesFromUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Runtime entities of construction kit record 'Basic/BankAccount' */ type BasicBankAccountDto = { __typename?: 'BasicBankAccount'; accountHolder: Scalars['String']['output']; bankName?: Maybe; constructionKitType?: Maybe; iban: Scalars['String']['output']; swiftCode?: Maybe; }; type BasicBankAccountInputDto = { accountHolder?: InputMaybe; bankName?: InputMaybe; iban?: InputMaybe; swiftCode?: InputMaybe; }; /** Runtime entities of construction kit type 'Basic-2.0.2/City-1' */ type BasicCityDto = { __typename?: 'BasicCity'; associations?: Maybe; children?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; description?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; orders?: Maybe; parent?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; zipcode: Scalars['Int']['output']; }; /** Runtime entities of construction kit type 'Basic-2.0.2/City-1' */ type BasicCityAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/City-1' */ type BasicCityChildrenArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/City-1' */ type BasicCityConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/City-1' */ type BasicCityMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/City-1' */ type BasicCityMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/City-1' */ type BasicCityOrdersArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/City-1' */ type BasicCityParentArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/City-1' */ type BasicCityRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/City-1' */ type BasicCityRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/City-1' */ type BasicCityTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `BasicCity`. */ type BasicCityConnectionDto = { __typename?: 'BasicCityConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `BasicCity`. */ type BasicCityEdgeDto = { __typename?: 'BasicCityEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type BasicCityInputDto = { children?: InputMaybe>>; configuredBy?: InputMaybe>>; description?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; orders?: InputMaybe>>; parent?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; zipcode?: InputMaybe; }; type BasicCityInputUpdateDto = { /** Item to update */ item: BasicCityInputDto; rtId?: InputMaybe; }; type BasicCityMutationsDto = { __typename?: 'BasicCityMutations'; /** Creates new entities of type 'BasicCity'. */ create?: Maybe>>; /** Updates existing entity of type 'BasicCity'. */ update?: Maybe>>; }; type BasicCityMutationsCreateArgsDto = { entities: Array>; }; type BasicCityMutationsUpdateArgsDto = { entities: Array>; }; type BasicCityUpdateDto = { __typename?: 'BasicCityUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type BasicCityUpdateMessageDto = { __typename?: 'BasicCityUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit record 'Basic/Contact' */ type BasicContactDto = { __typename?: 'BasicContact'; address?: Maybe; companyName?: Maybe; companyRegisterNumber?: Maybe; constructionKitType?: Maybe; email?: Maybe; firstName?: Maybe; lastName?: Maybe; legalEntityType?: Maybe; salutation?: Maybe; taxIdentificationNumber?: Maybe; titlePrefix?: Maybe; titleSuffix?: Maybe; }; type BasicContactInputDto = { address?: InputMaybe; companyName?: InputMaybe; companyRegisterNumber?: InputMaybe; email?: InputMaybe; firstName?: InputMaybe; lastName?: InputMaybe; legalEntityType?: InputMaybe; salutation?: InputMaybe; taxIdentificationNumber?: InputMaybe; titlePrefix?: InputMaybe; titleSuffix?: InputMaybe; }; /** Runtime entities of construction kit type 'Basic-2.0.2/Country-1' */ type BasicCountryDto = { __typename?: 'BasicCountry'; associations?: Maybe; children?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; description?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; orders?: Maybe; parent?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'Basic-2.0.2/Country-1' */ type BasicCountryAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/Country-1' */ type BasicCountryChildrenArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/Country-1' */ type BasicCountryConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/Country-1' */ type BasicCountryMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/Country-1' */ type BasicCountryMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/Country-1' */ type BasicCountryOrdersArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/Country-1' */ type BasicCountryParentArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/Country-1' */ type BasicCountryRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/Country-1' */ type BasicCountryRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/Country-1' */ type BasicCountryTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `BasicCountry`. */ type BasicCountryConnectionDto = { __typename?: 'BasicCountryConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `BasicCountry`. */ type BasicCountryEdgeDto = { __typename?: 'BasicCountryEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type BasicCountryInputDto = { children?: InputMaybe>>; configuredBy?: InputMaybe>>; description?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; orders?: InputMaybe>>; parent?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; }; type BasicCountryInputUpdateDto = { /** Item to update */ item: BasicCountryInputDto; rtId?: InputMaybe; }; type BasicCountryMutationsDto = { __typename?: 'BasicCountryMutations'; /** Creates new entities of type 'BasicCountry'. */ create?: Maybe>>; /** Updates existing entity of type 'BasicCountry'. */ update?: Maybe>>; }; type BasicCountryMutationsCreateArgsDto = { entities: Array>; }; type BasicCountryMutationsUpdateArgsDto = { entities: Array>; }; type BasicCountryUpdateDto = { __typename?: 'BasicCountryUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type BasicCountryUpdateMessageDto = { __typename?: 'BasicCountryUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/District-1' */ type BasicDistrictDto = { __typename?: 'BasicDistrict'; associations?: Maybe; children?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; description?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; orders?: Maybe; parent?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'Basic-2.0.2/District-1' */ type BasicDistrictAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/District-1' */ type BasicDistrictChildrenArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/District-1' */ type BasicDistrictConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/District-1' */ type BasicDistrictMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/District-1' */ type BasicDistrictMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/District-1' */ type BasicDistrictOrdersArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/District-1' */ type BasicDistrictParentArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/District-1' */ type BasicDistrictRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/District-1' */ type BasicDistrictRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/District-1' */ type BasicDistrictTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `BasicDistrict`. */ type BasicDistrictConnectionDto = { __typename?: 'BasicDistrictConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `BasicDistrict`. */ type BasicDistrictEdgeDto = { __typename?: 'BasicDistrictEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type BasicDistrictInputDto = { children?: InputMaybe>>; configuredBy?: InputMaybe>>; description?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; orders?: InputMaybe>>; parent?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; }; type BasicDistrictInputUpdateDto = { /** Item to update */ item: BasicDistrictInputDto; rtId?: InputMaybe; }; type BasicDistrictMutationsDto = { __typename?: 'BasicDistrictMutations'; /** Creates new entities of type 'BasicDistrict'. */ create?: Maybe>>; /** Updates existing entity of type 'BasicDistrict'. */ update?: Maybe>>; }; type BasicDistrictMutationsCreateArgsDto = { entities: Array>; }; type BasicDistrictMutationsUpdateArgsDto = { entities: Array>; }; type BasicDistrictUpdateDto = { __typename?: 'BasicDistrictUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type BasicDistrictUpdateMessageDto = { __typename?: 'BasicDistrictUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/Document-1' */ type BasicDocumentDto = SystemEntityInterfaceDto & { __typename?: 'BasicDocument'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; documentDate: Scalars['DateTime']['output']; documentNumber: Scalars['String']['output']; mapsFrom?: Maybe; mapsTo?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'Basic-2.0.2/Document-1' */ type BasicDocumentAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/Document-1' */ type BasicDocumentConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/Document-1' */ type BasicDocumentMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/Document-1' */ type BasicDocumentMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/Document-1' */ type BasicDocumentRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/Document-1' */ type BasicDocumentRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/Document-1' */ type BasicDocumentTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `BasicDocument`. */ type BasicDocumentConnectionDto = { __typename?: 'BasicDocumentConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `BasicDocument`. */ type BasicDocumentEdgeDto = { __typename?: 'BasicDocumentEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Interface for runtime entities of construction kit type 'Basic-2.0.2/Document-1' */ type BasicDocumentInterfaceDto = { ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; documentDate: Scalars['DateTime']['output']; documentNumber: Scalars['String']['output']; mapsFrom?: Maybe; mapsTo?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Interface for runtime entities of construction kit type 'Basic-2.0.2/Document-1' */ type BasicDocumentInterfaceConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Interface for runtime entities of construction kit type 'Basic-2.0.2/Document-1' */ type BasicDocumentInterfaceMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Interface for runtime entities of construction kit type 'Basic-2.0.2/Document-1' */ type BasicDocumentInterfaceMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Interface for runtime entities of construction kit type 'Basic-2.0.2/Document-1' */ type BasicDocumentInterfaceRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Interface for runtime entities of construction kit type 'Basic-2.0.2/Document-1' */ type BasicDocumentInterfaceRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Interface for runtime entities of construction kit type 'Basic-2.0.2/Document-1' */ type BasicDocumentInterfaceTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type BasicDocumentUpdateDto = { __typename?: 'BasicDocumentUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type BasicDocumentUpdateMessageDto = { __typename?: 'BasicDocumentUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit record 'Basic/EMail' */ type BasicEMailDto = { __typename?: 'BasicEMail'; constructionKitType?: Maybe; eMail: Scalars['String']['output']; publicKey?: Maybe; typeOfEMail?: Maybe; typeOfPublicKey?: Maybe; }; type BasicEMailInputDto = { eMail?: InputMaybe; publicKey?: InputMaybe; typeOfEMail?: InputMaybe; typeOfPublicKey?: InputMaybe; }; /** Runtime entities of construction kit type 'Basic-2.0.2/Employee-1' */ type BasicEmployeeDto = SystemEntityInterfaceDto & { __typename?: 'BasicEmployee'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; employeeExternalId: Scalars['String']['output']; employeeId: Scalars['String']['output']; firstName: Scalars['String']['output']; lastName: Scalars['String']['output']; mapsFrom?: Maybe; mapsTo?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'Basic-2.0.2/Employee-1' */ type BasicEmployeeAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/Employee-1' */ type BasicEmployeeConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/Employee-1' */ type BasicEmployeeMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/Employee-1' */ type BasicEmployeeMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/Employee-1' */ type BasicEmployeeRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/Employee-1' */ type BasicEmployeeRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/Employee-1' */ type BasicEmployeeTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `BasicEmployee`. */ type BasicEmployeeConnectionDto = { __typename?: 'BasicEmployeeConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `BasicEmployee`. */ type BasicEmployeeEdgeDto = { __typename?: 'BasicEmployeeEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type BasicEmployeeInputDto = { configuredBy?: InputMaybe>>; employeeExternalId?: InputMaybe; employeeId?: InputMaybe; firstName?: InputMaybe; lastName?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; }; type BasicEmployeeInputUpdateDto = { /** Item to update */ item: BasicEmployeeInputDto; rtId?: InputMaybe; }; type BasicEmployeeMutationsDto = { __typename?: 'BasicEmployeeMutations'; /** Creates new entities of type 'BasicEmployee'. */ create?: Maybe>>; /** Updates existing entity of type 'BasicEmployee'. */ update?: Maybe>>; }; type BasicEmployeeMutationsCreateArgsDto = { entities: Array>; }; type BasicEmployeeMutationsUpdateArgsDto = { entities: Array>; }; type BasicEmployeeUpdateDto = { __typename?: 'BasicEmployeeUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type BasicEmployeeUpdateMessageDto = { __typename?: 'BasicEmployeeUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit record 'Basic/FaxNumber' */ type BasicFaxNumberDto = { __typename?: 'BasicFaxNumber'; constructionKitType?: Maybe; number: Scalars['String']['output']; type?: Maybe; }; type BasicFaxNumberInputDto = { number?: InputMaybe; type?: InputMaybe; }; /** Runtime entities of construction kit enum 'Basic/LegalEntityType' */ declare enum BasicLegalEntityTypeDto { /** Actor in economic life, such as any natural or legal person with UGB relevance. */ CompanyDto = "COMPANY", /** Legal structure with the characteristics of a person */ LegalPersonDto = "LEGAL_PERSON", /** Administrative unit with sovereign power such as municipality, federal state, republic. */ LocalAuthorityDto = "LOCAL_AUTHORITY", /** A natural person is a human being with legal capacity, in contrast to a legal person (such as a company, organization, or government entity). */ NaturalPersonDto = "NATURAL_PERSON" } /** Runtime entities of construction kit record 'Basic/Marking' */ type BasicMarkingDto = { __typename?: 'BasicMarking'; additionalText?: Maybe; constructionKitType?: Maybe; file: LargeBinaryInfoDto; name: Scalars['String']['output']; }; type BasicMarkingInputDto = { additionalText?: InputMaybe; file?: InputMaybe; name?: InputMaybe; }; /** Runtime entities of construction kit record 'Basic/NamePlate' */ type BasicNamePlateDto = { __typename?: 'BasicNamePlate'; address?: Maybe; assetSpecificProperties?: Maybe>; constructionKitType?: Maybe; manufacturerName: Scalars['String']['output']; manufacturerProductDesignation: Scalars['String']['output']; manufacturerProductFamily: Scalars['String']['output']; markings?: Maybe>; serialNumber?: Maybe; yearOfConstruction: Scalars['String']['output']; }; type BasicNamePlateInputDto = { address?: InputMaybe; assetSpecificProperties?: InputMaybe>>; manufacturerName?: InputMaybe; manufacturerProductDesignation?: InputMaybe; manufacturerProductFamily?: InputMaybe; markings?: InputMaybe>>; serialNumber?: InputMaybe; yearOfConstruction?: InputMaybe; }; /** Runtime entities of construction kit type 'Basic-2.0.2/NamedEntity-1' */ type BasicNamedEntityDto = SystemEntityInterfaceDto & { __typename?: 'BasicNamedEntity'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; description?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'Basic-2.0.2/NamedEntity-1' */ type BasicNamedEntityAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/NamedEntity-1' */ type BasicNamedEntityConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/NamedEntity-1' */ type BasicNamedEntityMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/NamedEntity-1' */ type BasicNamedEntityMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/NamedEntity-1' */ type BasicNamedEntityRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/NamedEntity-1' */ type BasicNamedEntityRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/NamedEntity-1' */ type BasicNamedEntityTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `BasicNamedEntity`. */ type BasicNamedEntityConnectionDto = { __typename?: 'BasicNamedEntityConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `BasicNamedEntity`. */ type BasicNamedEntityEdgeDto = { __typename?: 'BasicNamedEntityEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Interface for runtime entities of construction kit type 'Basic-2.0.2/NamedEntity-1' */ type BasicNamedEntityInterfaceDto = { ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; description?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Interface for runtime entities of construction kit type 'Basic-2.0.2/NamedEntity-1' */ type BasicNamedEntityInterfaceConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Interface for runtime entities of construction kit type 'Basic-2.0.2/NamedEntity-1' */ type BasicNamedEntityInterfaceMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Interface for runtime entities of construction kit type 'Basic-2.0.2/NamedEntity-1' */ type BasicNamedEntityInterfaceMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Interface for runtime entities of construction kit type 'Basic-2.0.2/NamedEntity-1' */ type BasicNamedEntityInterfaceRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Interface for runtime entities of construction kit type 'Basic-2.0.2/NamedEntity-1' */ type BasicNamedEntityInterfaceRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Interface for runtime entities of construction kit type 'Basic-2.0.2/NamedEntity-1' */ type BasicNamedEntityInterfaceTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type BasicNamedEntityUpdateDto = { __typename?: 'BasicNamedEntityUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type BasicNamedEntityUpdateMessageDto = { __typename?: 'BasicNamedEntityUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit record 'Basic/PhoneNumber' */ type BasicPhoneNumberDto = { __typename?: 'BasicPhoneNumber'; constructionKitType?: Maybe; number: Scalars['String']['output']; type?: Maybe; }; type BasicPhoneNumberInputDto = { number?: InputMaybe; type?: InputMaybe; }; /** Runtime entities of construction kit enum 'Basic/Salutation' */ declare enum BasicSalutationDto { /** The salutation is female */ FemaleDto = "FEMALE", /** The salutation is male */ MaleDto = "MALE", /** The salutation is non-binary */ NonBinaryDto = "NON_BINARY", /** The salutation is unknown or not defined */ UnknownDto = "UNKNOWN" } /** Runtime entities of construction kit type 'Basic-2.0.2/State-1' */ type BasicStateDto = { __typename?: 'BasicState'; associations?: Maybe; children?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; description?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; orders?: Maybe; parent?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'Basic-2.0.2/State-1' */ type BasicStateAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/State-1' */ type BasicStateChildrenArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/State-1' */ type BasicStateConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/State-1' */ type BasicStateMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/State-1' */ type BasicStateMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/State-1' */ type BasicStateOrdersArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/State-1' */ type BasicStateParentArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/State-1' */ type BasicStateRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/State-1' */ type BasicStateRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/State-1' */ type BasicStateTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `BasicState`. */ type BasicStateConnectionDto = { __typename?: 'BasicStateConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `BasicState`. */ type BasicStateEdgeDto = { __typename?: 'BasicStateEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type BasicStateInputDto = { children?: InputMaybe>>; configuredBy?: InputMaybe>>; description?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; orders?: InputMaybe>>; parent?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; }; type BasicStateInputUpdateDto = { /** Item to update */ item: BasicStateInputDto; rtId?: InputMaybe; }; type BasicStateMutationsDto = { __typename?: 'BasicStateMutations'; /** Creates new entities of type 'BasicState'. */ create?: Maybe>>; /** Updates existing entity of type 'BasicState'. */ update?: Maybe>>; }; type BasicStateMutationsCreateArgsDto = { entities: Array>; }; type BasicStateMutationsUpdateArgsDto = { entities: Array>; }; type BasicStateUpdateDto = { __typename?: 'BasicStateUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type BasicStateUpdateMessageDto = { __typename?: 'BasicStateUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit record 'Basic/TimeRange' */ type BasicTimeRangeDto = { __typename?: 'BasicTimeRange'; constructionKitType?: Maybe; from: Scalars['DateTime']['output']; to: Scalars['DateTime']['output']; }; type BasicTimeRangeInputDto = { from?: InputMaybe; to?: InputMaybe; }; /** Runtime entities of construction kit type 'Basic-2.0.2/Tree-1' */ type BasicTreeDto = BasicNamedEntityInterfaceDto & SystemEntityInterfaceDto & { __typename?: 'BasicTree'; associations?: Maybe; children?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; description?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'Basic-2.0.2/Tree-1' */ type BasicTreeAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/Tree-1' */ type BasicTreeChildrenArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/Tree-1' */ type BasicTreeConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/Tree-1' */ type BasicTreeMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/Tree-1' */ type BasicTreeMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/Tree-1' */ type BasicTreeRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/Tree-1' */ type BasicTreeRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/Tree-1' */ type BasicTreeTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `BasicTree`. */ type BasicTreeConnectionDto = { __typename?: 'BasicTreeConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `BasicTree`. */ type BasicTreeEdgeDto = { __typename?: 'BasicTreeEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type BasicTreeInputDto = { children?: InputMaybe>>; configuredBy?: InputMaybe>>; description?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; }; type BasicTreeInputUpdateDto = { /** Item to update */ item: BasicTreeInputDto; rtId?: InputMaybe; }; type BasicTreeMutationsDto = { __typename?: 'BasicTreeMutations'; /** Creates new entities of type 'BasicTree'. */ create?: Maybe>>; /** Updates existing entity of type 'BasicTree'. */ update?: Maybe>>; }; type BasicTreeMutationsCreateArgsDto = { entities: Array>; }; type BasicTreeMutationsUpdateArgsDto = { entities: Array>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/TreeNode-1' */ type BasicTreeNodeDto = { __typename?: 'BasicTreeNode'; associations?: Maybe; children?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; description?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; orders?: Maybe; parent?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'Basic-2.0.2/TreeNode-1' */ type BasicTreeNodeAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/TreeNode-1' */ type BasicTreeNodeChildrenArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/TreeNode-1' */ type BasicTreeNodeConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/TreeNode-1' */ type BasicTreeNodeMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/TreeNode-1' */ type BasicTreeNodeMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/TreeNode-1' */ type BasicTreeNodeOrdersArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/TreeNode-1' */ type BasicTreeNodeParentArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/TreeNode-1' */ type BasicTreeNodeRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/TreeNode-1' */ type BasicTreeNodeRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Basic-2.0.2/TreeNode-1' */ type BasicTreeNodeTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `BasicTreeNode`. */ type BasicTreeNodeConnectionDto = { __typename?: 'BasicTreeNodeConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `BasicTreeNode`. */ type BasicTreeNodeEdgeDto = { __typename?: 'BasicTreeNodeEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type BasicTreeNodeInputDto = { children?: InputMaybe>>; configuredBy?: InputMaybe>>; description?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; orders?: InputMaybe>>; parent?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; }; type BasicTreeNodeInputUpdateDto = { /** Item to update */ item: BasicTreeNodeInputDto; rtId?: InputMaybe; }; type BasicTreeNodeMutationsDto = { __typename?: 'BasicTreeNodeMutations'; /** Creates new entities of type 'BasicTreeNode'. */ create?: Maybe>>; /** Updates existing entity of type 'BasicTreeNode'. */ update?: Maybe>>; }; type BasicTreeNodeMutationsCreateArgsDto = { entities: Array>; }; type BasicTreeNodeMutationsUpdateArgsDto = { entities: Array>; }; type BasicTreeNodeUpdateDto = { __typename?: 'BasicTreeNodeUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type BasicTreeNodeUpdateMessageDto = { __typename?: 'BasicTreeNodeUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Union of types derived from Basic/TreeNode for Children association */ type BasicTreeNode_ChildrenUnionDto = BasicAssetDto | BasicCityDto | BasicCountryDto | BasicDistrictDto | BasicStateDto | BasicTreeNodeDto | IndustryBasicMachineDto | IndustryEnergyDemandResponseEventDto | IndustryEnergyEnergyConsumerDto | IndustryEnergyEnergyCostDto | IndustryEnergyEnergyForecastDto | IndustryEnergyEnergyMeterDto | IndustryEnergyEnergyPerformanceIndicatorDto | IndustryEnergyEnergyStorageDto | IndustryEnergyInverterDto | IndustryEnergyPhotovoltaicSystemDto | IndustryEnergyPhotovoltaicSystemModuleDto | IndustryEnergyPhotovoltaicSystemStringDto | IndustryFluidHeatMeterDto | IndustryFluidWaterMeterDto | IndustryMaintenanceCostCenterDto | IndustryMaintenanceEmployeeDto | IndustryMaintenanceWorkplaceDto | OctoSdkDemoMeteringPointDto | OctoSdkDemoOperatingFacilityDto; /** A connection to `BasicTreeNode_ChildrenUnion`. */ type BasicTreeNode_ChildrenUnionConnectionDto = { __typename?: 'BasicTreeNode_ChildrenUnionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `BasicTreeNode_ChildrenUnion`. */ type BasicTreeNode_ChildrenUnionEdgeDto = { __typename?: 'BasicTreeNode_ChildrenUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Union of types derived from Basic/TreeNode for Machine association */ type BasicTreeNode_MachineUnionDto = BasicAssetDto | BasicCityDto | BasicCountryDto | BasicDistrictDto | BasicStateDto | BasicTreeNodeDto | IndustryBasicMachineDto | IndustryEnergyEnergyConsumerDto | IndustryEnergyEnergyMeterDto | IndustryEnergyEnergyStorageDto | IndustryEnergyInverterDto | IndustryEnergyPhotovoltaicSystemDto | IndustryEnergyPhotovoltaicSystemModuleDto | IndustryEnergyPhotovoltaicSystemStringDto | IndustryFluidHeatMeterDto | IndustryFluidWaterMeterDto | IndustryMaintenanceCostCenterDto | IndustryMaintenanceEmployeeDto | IndustryMaintenanceWorkplaceDto | OctoSdkDemoMeteringPointDto | OctoSdkDemoOperatingFacilityDto; /** A connection to `BasicTreeNode_MachineUnion`. */ type BasicTreeNode_MachineUnionConnectionDto = { __typename?: 'BasicTreeNode_MachineUnionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `BasicTreeNode_MachineUnion`. */ type BasicTreeNode_MachineUnionEdgeDto = { __typename?: 'BasicTreeNode_MachineUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Union of types derived from Basic/TreeNode for Parent association */ type BasicTreeNode_ParentUnionDto = BasicAssetDto | BasicCityDto | BasicCountryDto | BasicDistrictDto | BasicStateDto | BasicTreeNodeDto | IndustryBasicMachineDto | IndustryEnergyEnergyConsumerDto | IndustryEnergyEnergyMeterDto | IndustryEnergyEnergyStorageDto | IndustryEnergyInverterDto | IndustryEnergyPhotovoltaicSystemDto | IndustryEnergyPhotovoltaicSystemModuleDto | IndustryEnergyPhotovoltaicSystemStringDto | IndustryFluidHeatMeterDto | IndustryFluidWaterMeterDto | IndustryMaintenanceCostCenterDto | IndustryMaintenanceEmployeeDto | IndustryMaintenanceWorkplaceDto | OctoSdkDemoMeteringPointDto | OctoSdkDemoOperatingFacilityDto; /** A connection to `BasicTreeNode_ParentUnion`. */ type BasicTreeNode_ParentUnionConnectionDto = { __typename?: 'BasicTreeNode_ParentUnionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `BasicTreeNode_ParentUnion`. */ type BasicTreeNode_ParentUnionEdgeDto = { __typename?: 'BasicTreeNode_ParentUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Union of types derived from Basic/TreeNode for RelatesTo association */ type BasicTreeNode_RelatesToUnionDto = BasicAssetDto | BasicCityDto | BasicCountryDto | BasicDistrictDto | BasicEmployeeDto | BasicStateDto | BasicTreeDto | BasicTreeNodeDto | IndustryBasicAlarmDto | IndustryBasicEventDto | IndustryBasicMachineDto | IndustryBasicRuntimeVariableDto | IndustryEnergyDemandResponseEventDto | IndustryEnergyEnergyConsumerDto | IndustryEnergyEnergyCostDto | IndustryEnergyEnergyForecastDto | IndustryEnergyEnergyMeterDto | IndustryEnergyEnergyPerformanceIndicatorDto | IndustryEnergyEnergyStorageDto | IndustryEnergyInverterDto | IndustryEnergyPhotovoltaicSystemDto | IndustryEnergyPhotovoltaicSystemModuleDto | IndustryEnergyPhotovoltaicSystemStringDto | IndustryFluidHeatMeterDto | IndustryFluidWaterMeterDto | IndustryMaintenanceAccountDto | IndustryMaintenanceCostCenterDto | IndustryMaintenanceEmployeeDto | IndustryMaintenanceEnergyBalanceDto | IndustryMaintenanceJournalEntryDto | IndustryMaintenanceOrderDto | IndustryMaintenanceOrderCostsDto | IndustryMaintenanceOrderFeedbackDto | IndustryMaintenanceWorkplaceDto | OctoSdkDemoCustomerDto | OctoSdkDemoMeteringPointDto | OctoSdkDemoOperatingFacilityDto | SystemAggregationRtQueryDto | SystemAggregationSdQueryDto | SystemAutoIncrementDto | SystemBotAttributeAggregateConfigurationDto | SystemBotFixupDto | SystemCommunicationAdapterDto | SystemCommunicationAiConfigurationDto | SystemCommunicationDataFlowDto | SystemCommunicationDataPointMappingDto | SystemCommunicationDiscordConfigurationDto | SystemCommunicationEMailReceiverConfigurationDto | SystemCommunicationEMailSenderConfigurationDto | SystemCommunicationEdaConfigurationDto | SystemCommunicationEnergyCommunityConfigurationDto | SystemCommunicationFinApiConfigurationDto | SystemCommunicationGrafanaConfigurationDto | SystemCommunicationLoxoneConfigurationDto | SystemCommunicationMicrosoftGraphConfigurationDto | SystemCommunicationPipelineDto | SystemCommunicationPipelineExecutionDto | SystemCommunicationPipelineStatisticsDto | SystemCommunicationPipelineTriggerDto | SystemCommunicationPoolDto | SystemCommunicationSapConfigurationDto | SystemCommunicationServiceAccountConfigurationDto | SystemCommunicationSftpConfigurationDto | SystemCommunicationTagDto | SystemDownsamplingSdQueryDto | SystemGroupingAggregationRtQueryDto | SystemGroupingAggregationSdQueryDto | SystemIdentityApiResourceDto | SystemIdentityApiScopeDto | SystemIdentityAzureEntraIdIdentityProviderDto | SystemIdentityClientDto | SystemIdentityEmailDomainGroupRuleDto | SystemIdentityExternalTenantUserMappingDto | SystemIdentityFacebookIdentityProviderDto | SystemIdentityGoogleIdentityProviderDto | SystemIdentityGroupDto | SystemIdentityIdentityResourceDto | SystemIdentityMailNotificationConfigurationDto | SystemIdentityMicrosoftAdIdentityProviderDto | SystemIdentityMicrosoftIdentityProviderDto | SystemIdentityOctoTenantIdentityProviderDto | SystemIdentityOpenLdapIdentityProviderDto | SystemIdentityPermissionDto | SystemIdentityPermissionRoleDto | SystemIdentityPersistedGrantDto | SystemIdentityRoleDto | SystemIdentityUserDto | SystemMigrationHistoryDto | SystemNotificationCssTemplateConfigurationDto | SystemNotificationEventDto | SystemNotificationNotificationTemplateDto | SystemNotificationStatefulEventDto | SystemReportingConnectionInfoDto | SystemReportingFileSystemItemDto | SystemReportingFolderDto | SystemReportingFolderRootDto | SystemSimpleRtQueryDto | SystemSimpleSdQueryDto | SystemTenantDto | SystemTenantConfigurationDto | SystemTenantModeConfigurationDto | SystemUiBrandingDto | SystemUiDashboardDto | SystemUiDashboardWidgetDto | SystemUiProcessDiagramDto | SystemUiSymbolDefinitionDto | SystemUiSymbolLibraryDto; /** A connection to `BasicTreeNode_RelatesToUnion`. */ type BasicTreeNode_RelatesToUnionConnectionDto = { __typename?: 'BasicTreeNode_RelatesToUnionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `BasicTreeNode_RelatesToUnion`. */ type BasicTreeNode_RelatesToUnionEdgeDto = { __typename?: 'BasicTreeNode_RelatesToUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type BasicTreeUpdateDto = { __typename?: 'BasicTreeUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type BasicTreeUpdateMessageDto = { __typename?: 'BasicTreeUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Union of types derived from Basic/Tree for Parent association */ type BasicTree_ParentUnionDto = BasicAssetDto | BasicCityDto | BasicCountryDto | BasicDistrictDto | BasicStateDto | BasicTreeDto | BasicTreeNodeDto | IndustryBasicMachineDto | IndustryEnergyEnergyConsumerDto | IndustryEnergyEnergyMeterDto | IndustryEnergyEnergyStorageDto | IndustryEnergyInverterDto | IndustryEnergyPhotovoltaicSystemDto | IndustryEnergyPhotovoltaicSystemModuleDto | IndustryEnergyPhotovoltaicSystemStringDto | IndustryFluidHeatMeterDto | IndustryFluidWaterMeterDto | IndustryMaintenanceCostCenterDto | IndustryMaintenanceEmployeeDto | IndustryMaintenanceWorkplaceDto | OctoSdkDemoMeteringPointDto | OctoSdkDemoOperatingFacilityDto; /** A connection to `BasicTree_ParentUnion`. */ type BasicTree_ParentUnionConnectionDto = { __typename?: 'BasicTree_ParentUnionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `BasicTree_ParentUnion`. */ type BasicTree_ParentUnionEdgeDto = { __typename?: 'BasicTree_ParentUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Runtime entities of construction kit enum 'Basic/TypeOfTelephoneBasic' */ declare enum BasicTypeOfTelephoneBasicDto { HomeDto = "HOME", OfficeDto = "OFFICE", SecretaryDto = "SECRETARY", SubstituteDto = "SUBSTITUTE" } /** Runtime entities of construction kit enum 'Basic/TypeOfTelephoneEnhanced' */ declare enum BasicTypeOfTelephoneEnhancedDto { HomeDto = "HOME", OfficeDto = "OFFICE", OfficeMobileDto = "OFFICE_MOBILE", PrivateMobileDto = "PRIVATE_MOBILE", SecretaryDto = "SECRETARY", SubstituteDto = "SUBSTITUTE" } /** Runtime entities of construction kit enum 'Basic/UnitOfMeasure' */ declare enum BasicUnitOfMeasureDto { /** Kilowatt-hour, a unit of energy equal to one kilowatt of power used for one hour */ KWhDto = "K_WH", /** Megawatt-hour, a unit of energy equal to one megawatt of power used for one hour */ MWhDto = "M_WH", /** No unit applicable */ NonUnitDto = "NON_UNIT" } /** Definition of a construction kit association roles with navigation property names and cardinalities */ type CkAssociationRoleDto = { __typename?: 'CkAssociationRole'; /** Construction kit association role id, the unique identifier of the association role. */ ckAssociationRoleId: CkAssociationRoleIdDto; /** Definition of a construction kit association roles with navigation property names and cardinalities */ description?: Maybe; /** Cardinality of the inbound direction side */ inboundMultiplicity: MultiplicitiesDto; /** The name of navigation property of inbound direction side */ inboundName: Scalars['String']['output']; /** Cardinality of the outbound direction */ outboundMultiplicity: MultiplicitiesDto; /** The name of navigation property of outbound direction side */ outboundName: Scalars['String']['output']; /** Runtime construction kit id of the association role. */ rtCkAssociationRoleId: Scalars['RtCkAssociationRoleId']['output']; }; /** A connection from an object to a list of objects of type `CkAssociationRoleDto`. */ type CkAssociationRoleDtoConnectionDto = { __typename?: 'CkAssociationRoleDtoConnection'; /** A list of all of the edges returned in the connection. */ edges?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo: PageInfoDto; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `CkAssociationRoleDto`. */ type CkAssociationRoleDtoEdgeDto = { __typename?: 'CkAssociationRoleDtoEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** A construction kit id of CkAssociationRoleId. */ type CkAssociationRoleIdDto = { __typename?: 'CkAssociationRoleId'; /** The full name of the model, e.g. 'System-1.0.3'. */ fullName: Scalars['String']['output']; /** The semantic versioned full name of the construction kit type, e.g. 'System/Entity' or 'System-2/Entity'. */ semanticVersionedFullName: Scalars['String']['output']; }; /** Construction kit attribute definitions */ type CkAttributeDto = { __typename?: 'CkAttribute'; /** Value type of the attribute. */ attributeValueType: AttributeValueTypeDto; /** Construction kit attribute id. */ ckAttributeId: CkAttributeIdDto; /** Optional enum id of the attribute value type. */ ckEnum?: Maybe; /** Optional record id of the attribute value type. */ ckRecord?: Maybe; /** Default values of the attribute. */ defaultValues?: Maybe>>; /** Optional description of the attribute. */ description?: Maybe; /** Optional flag that tells if an attribute is a data stream. */ isDataStream?: Maybe; /** Optional meta data of the attribute. */ metaData?: Maybe>>; }; /** A connection from an object to a list of objects of type `CkAttributeDto`. */ type CkAttributeDtoConnectionDto = { __typename?: 'CkAttributeDtoConnection'; /** A list of all of the edges returned in the connection. */ edges?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo: PageInfoDto; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `CkAttributeDto`. */ type CkAttributeDtoEdgeDto = { __typename?: 'CkAttributeDtoEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** A construction kit id of CkAttributeId. */ type CkAttributeIdDto = { __typename?: 'CkAttributeId'; /** The full name of the model, e.g. 'System-1.0.3'. */ fullName: Scalars['String']['output']; /** The semantic versioned full name of the construction kit type, e.g. 'System/Entity' or 'System-2/Entity'. */ semanticVersionedFullName: Scalars['String']['output']; }; /** Construction kit attribute meta data */ type CkAttributeMetaDataDto = { __typename?: 'CkAttributeMetaData'; /** Optional description of the meta data. */ description?: Maybe; /** Key of the meta data. */ key: Scalars['ID']['output']; /** Value of the meta data. */ value?: Maybe; }; /** Definition of a construction kit record with name and attributes. */ type CkEnumDto = { __typename?: 'CkEnum'; /** Construction kit enum id, the unique identifier of the enum. */ ckEnumId: CkEnumIdDto; /** Optional description of the record. */ description?: Maybe; /** Whether the enum is extensible for customization. */ isExtensible: Scalars['Boolean']['output']; /** Runtime construction kit enum id, the unique identifier of the enum. */ rtCkEnumId: Scalars['RtCkEnumId']['output']; /** Whether the enum is a flags enum */ useFlags: Scalars['Boolean']['output']; /** Values of the enum. */ values: Array>; }; /** A connection from an object to a list of objects of type `CkEnumDto`. */ type CkEnumDtoConnectionDto = { __typename?: 'CkEnumDtoConnection'; /** A list of all of the edges returned in the connection. */ edges?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo: PageInfoDto; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `CkEnumDto`. */ type CkEnumDtoEdgeDto = { __typename?: 'CkEnumDtoEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** A construction kit id of CkEnumId. */ type CkEnumIdDto = { __typename?: 'CkEnumId'; /** The full name of the model, e.g. 'System-1.0.3'. */ fullName: Scalars['String']['output']; /** The semantic versioned full name of the construction kit type, e.g. 'System/Entity' or 'System-2/Entity'. */ semanticVersionedFullName: Scalars['String']['output']; }; type CkEnumMutationsDto = { __typename?: 'CkEnumMutations'; /** Updates customizations of enum extensions. */ updateValueExtensions?: Maybe>>; }; type CkEnumMutationsUpdateValueExtensionsArgsDto = { values: Array>; }; type CkEnumUpdateDto = { operation?: InputMaybe; value?: InputMaybe; }; /** A construction kit enum value */ type CkEnumValueDto = { __typename?: 'CkEnumValue'; /** Description of enum value */ description?: Maybe; /** True, when the enum value is a custom extension, otherwise false */ isExtension?: Maybe; /** Unique key of enum value */ key?: Maybe; /** Name of enum value */ name?: Maybe; }; /** A construction kit enum value */ type CkEnumValueInputDto = { /** Description of enum value */ description?: InputMaybe; /** Unique key of enum value */ key?: InputMaybe; /** Name of enum value */ name?: InputMaybe; }; /** Defines the possible operation operations to extend construction elements. */ declare enum CkExtensionUpdateOperationsDto { DeleteDto = "DELETE", InsertDto = "INSERT" } /** A construction kit model */ type CkModelDto = { __typename?: 'CkModel'; attributes?: Maybe; dependencies: Array; /** Optional description of the model. */ description?: Maybe; enums?: Maybe; /** Construction kit model id, the unique identifier of the model. */ id: CkModelIdDto; /** Availability of the model within the repository. */ modelState?: Maybe; records?: Maybe; types?: Maybe; }; /** A construction kit model */ type CkModelAttributesArgsDto = { after?: InputMaybe; ckId?: InputMaybe; ckIds?: InputMaybe>>; fieldFilter?: InputMaybe>>; first?: InputMaybe; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A construction kit model */ type CkModelEnumsArgsDto = { after?: InputMaybe; ckId?: InputMaybe; ckIds?: InputMaybe>>; fieldFilter?: InputMaybe>>; first?: InputMaybe; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A construction kit model */ type CkModelRecordsArgsDto = { after?: InputMaybe; ckId?: InputMaybe; ckIds?: InputMaybe>>; fieldFilter?: InputMaybe>>; first?: InputMaybe; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A construction kit model */ type CkModelTypesArgsDto = { after?: InputMaybe; ckId?: InputMaybe; ckIds?: InputMaybe>>; fieldFilter?: InputMaybe>>; first?: InputMaybe; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection from an object to a list of objects of type `CkModelDto`. */ type CkModelDtoConnectionDto = { __typename?: 'CkModelDtoConnection'; /** A list of all of the edges returned in the connection. */ edges?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo: PageInfoDto; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `CkModelDto`. */ type CkModelDtoEdgeDto = { __typename?: 'CkModelDtoEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Identifies a construction kit model. */ type CkModelIdDto = { __typename?: 'CkModelId'; /** The full name of the model, e.g. 'System-1.0.3'. */ fullName: Scalars['String']['output']; /** The name of the model, e.g. 'System'. */ name: Scalars['String']['output']; /** The semantic versioned full name of the model, e.g. 'System' or 'System-2'. */ semanticVersionedFullName: Scalars['String']['output']; /** The version of the model, e.g. '1.0.0' or '2.0.0'. */ version: Scalars['CkVersion']['output']; }; /** Definition of a construction kit record with name and attributes. */ type CkRecordDto = { __typename?: 'CkRecord'; attributes?: Maybe; /** The base record the current record is derived from. */ baseRecordTypes?: Maybe; /** Construction kit record id, the unique identifier of the record. */ ckRecordId: CkRecordIdDto; /** Lists types that are derived from the current construction kit record. */ derivedRecordTypes?: Maybe; /** Optional description of the record. */ description?: Maybe; /** Indicates if the record is abstract. */ isAbstract: Scalars['Boolean']['output']; /** Indicates if the record is final. */ isFinal: Scalars['Boolean']['output']; /** Runtime construction kit record id, the unique identifier of the record. */ rtCkRecordId: Scalars['RtCkRecordId']['output']; }; /** Definition of a construction kit record with name and attributes. */ type CkRecordAttributesArgsDto = { after?: InputMaybe; attributeNames?: InputMaybe>>; first?: InputMaybe; }; /** Definition of a construction kit record with name and attributes. */ type CkRecordDerivedRecordTypesArgsDto = { after?: InputMaybe; first?: InputMaybe; }; /** A connection from an object to a list of objects of type `CkRecordDto`. */ type CkRecordDtoConnectionDto = { __typename?: 'CkRecordDtoConnection'; /** A list of all of the edges returned in the connection. */ edges?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo: PageInfoDto; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `CkRecordDto`. */ type CkRecordDtoEdgeDto = { __typename?: 'CkRecordDtoEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** A construction kit id of CkRecordId. */ type CkRecordIdDto = { __typename?: 'CkRecordId'; /** The full name of the model, e.g. 'System-1.0.3'. */ fullName: Scalars['String']['output']; /** The semantic versioned full name of the construction kit type, e.g. 'System/Entity' or 'System-2/Entity'. */ semanticVersionedFullName: Scalars['String']['output']; }; /** Definition of a construction kit type with name, associations and attributes. */ type CkTypeDto = { __typename?: 'CkType'; associations?: Maybe; attributes?: Maybe; availableQueryColumns?: Maybe; /** The base type the current type is derived from. */ baseType?: Maybe; /** Construction kit type id, the unique identifier of the type. */ ckTypeId: CkTypeIdDto; /** Lists types that are derived from the current construction kit type. */ derivedTypes?: Maybe; /** Optional description of the type. */ description?: Maybe; /** Lists types that are derived directly or indirectly from the current construction kit type. */ directAndIndirectDerivedTypes?: Maybe; /** Indicates if the type is abstract. */ isAbstract: Scalars['Boolean']['output']; /** Indicates if the type is final. */ isFinal: Scalars['Boolean']['output']; /** Runtime construction kit type id, the unique identifier of the type. */ rtCkTypeId: Scalars['RtCkTypeId']['output']; }; /** Definition of a construction kit type with name, associations and attributes. */ type CkTypeAttributesArgsDto = { after?: InputMaybe; attributeNameContains?: InputMaybe; attributeNames?: InputMaybe>>; first?: InputMaybe; }; /** Definition of a construction kit type with name, associations and attributes. */ type CkTypeAvailableQueryColumnsArgsDto = { after?: InputMaybe; attributePathContains?: InputMaybe; attributePaths?: InputMaybe>>; attributeValueType?: InputMaybe; first?: InputMaybe; includeNavigationProperties?: InputMaybe; maxDepth?: InputMaybe; searchTerm?: InputMaybe; }; /** Definition of a construction kit type with name, associations and attributes. */ type CkTypeDerivedTypesArgsDto = { after?: InputMaybe; first?: InputMaybe; ignoreAbstractTypes?: InputMaybe; }; /** Definition of a construction kit type with name, associations and attributes. */ type CkTypeDirectAndIndirectDerivedTypesArgsDto = { after?: InputMaybe; first?: InputMaybe; ignoreAbstractTypes?: InputMaybe; includeSelf?: InputMaybe; }; /** Associations of a construction kit type */ type CkTypeAssociationDto = { __typename?: 'CkTypeAssociation'; /** Multiplicity of the association for the current side */ multiplicity: MultiplicitiesDto; /** Navigation property name of the association for the current side */ navigationPropertyName: Scalars['String']['output']; /** Type id of the construction kit type of the origin side of the association */ originCkTypeId: CkTypeIdDto; /** Construction kit attribute id. */ roleId: CkAssociationRoleIdDto; /** Runtime construction kit id of the association role. */ rtRoleId: Scalars['RtCkAssociationRoleId']['output']; /** Runtime construction kit type id of the target side of the association */ rtTargetCkTypeId: Scalars['RtCkTypeId']['output']; /** Type id of the construction kit type of the target side of the association */ targetCkTypeId: CkTypeIdDto; }; /** Returns inbound and outbound association definitions */ type CkTypeAssociationDirectionDto = { __typename?: 'CkTypeAssociationDirection'; /** Gets ingoing associations */ in?: Maybe; /** Gets outgoing associations */ out?: Maybe; }; /** Associations of a construction kit type */ type CkTypeAssociationSourceDto = { __typename?: 'CkTypeAssociationSource'; /** All associations definitions available current type */ all?: Maybe>>; /** Associations definitions inherited by base types */ inherited?: Maybe>>; /** Associations definitions defined by the current type */ owned?: Maybe>>; }; /** Attributes of a construction kit type */ type CkTypeAttributeDto = { __typename?: 'CkTypeAttribute'; /** The construction kit attribute definition */ attribute?: Maybe; /** Attribute name within the entity. */ attributeName: Scalars['String']['output']; /** Value type of the attribute. */ attributeValueType: AttributeValueTypeDto; /** Auto complete values for the attribute. */ autoCompleteValues?: Maybe>>; /** Auto increment reference for the attribute. */ autoIncrementReference?: Maybe; /** Construction kit attribute id. */ ckAttributeId: CkAttributeIdDto; /** Defines if the attribute is optional. */ isOptional: Scalars['Boolean']['output']; }; /** A connection from an object to a list of objects of type `CkTypeAttributeDto`. */ type CkTypeAttributeDtoConnectionDto = { __typename?: 'CkTypeAttributeDtoConnection'; /** A list of all of the edges returned in the connection. */ edges?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo: PageInfoDto; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `CkTypeAttributeDto`. */ type CkTypeAttributeDtoEdgeDto = { __typename?: 'CkTypeAttributeDtoEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** A connection from an object to a list of objects of type `CkTypeDto`. */ type CkTypeDtoConnectionDto = { __typename?: 'CkTypeDtoConnection'; /** A list of all of the edges returned in the connection. */ edges?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo: PageInfoDto; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `CkTypeDto`. */ type CkTypeDtoEdgeDto = { __typename?: 'CkTypeDtoEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** A construction kit id of CkTypeId. */ type CkTypeIdDto = { __typename?: 'CkTypeId'; /** The full name of the model, e.g. 'System-1.0.3'. */ fullName: Scalars['String']['output']; /** The semantic versioned full name of the construction kit type, e.g. 'System/Entity' or 'System-2/Entity'. */ semanticVersionedFullName: Scalars['String']['output']; }; /** Represents a possible column in a query result. */ type CkTypeQueryColumnDto = { __typename?: 'CkTypeQueryColumn'; /** Attribute path within the entity. */ attributePath: Scalars['String']['output']; /** Value type of the attribute. */ attributeValueType: AttributeValueTypeDto; /** Description of the attribute. */ description?: Maybe; /** Whether this column is available in stream data (CrateDB) queries. */ isDataStream: Scalars['Boolean']['output']; }; /** A connection from an object to a list of objects of type `CkTypeQueryColumnDto`. */ type CkTypeQueryColumnDtoConnectionDto = { __typename?: 'CkTypeQueryColumnDtoConnection'; /** A list of all of the edges returned in the connection. */ edges?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo: PageInfoDto; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `CkTypeQueryColumnDto`. */ type CkTypeQueryColumnDtoEdgeDto = { __typename?: 'CkTypeQueryColumnDtoEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Construction Kit element mutations */ type ConstructionKitMutationsDto = { __typename?: 'ConstructionKitMutations'; enums?: Maybe; }; /** Construction Kit element mutations */ type ConstructionKitMutationsEnumsArgsDto = { ckId?: InputMaybe; ckIds?: InputMaybe>>; }; type ConstructionKitQueryDto = { __typename?: 'ConstructionKitQuery'; associationRoles?: Maybe; attributes?: Maybe; enums?: Maybe; models?: Maybe; records?: Maybe; types?: Maybe; }; type ConstructionKitQueryAssociationRolesArgsDto = { after?: InputMaybe; ckId?: InputMaybe; ckIds?: InputMaybe>>; ckModelIds?: InputMaybe>>; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtCkId?: InputMaybe; rtCkIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type ConstructionKitQueryAttributesArgsDto = { after?: InputMaybe; ckId?: InputMaybe; ckIds?: InputMaybe>>; ckModelIds?: InputMaybe>>; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtCkId?: InputMaybe; rtCkIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type ConstructionKitQueryEnumsArgsDto = { after?: InputMaybe; ckId?: InputMaybe; ckIds?: InputMaybe>>; ckModelIds?: InputMaybe>>; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtCkId?: InputMaybe; rtCkIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type ConstructionKitQueryModelsArgsDto = { after?: InputMaybe; ckId?: InputMaybe; ckIds?: InputMaybe>>; fieldFilter?: InputMaybe>>; first?: InputMaybe; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type ConstructionKitQueryRecordsArgsDto = { after?: InputMaybe; ckId?: InputMaybe; ckIds?: InputMaybe>>; ckModelIds?: InputMaybe>>; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtCkId?: InputMaybe; rtCkIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type ConstructionKitQueryTypesArgsDto = { after?: InputMaybe; ckId?: InputMaybe; ckIds?: InputMaybe>>; ckModelIds?: InputMaybe>>; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtCkId?: InputMaybe; rtCkIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Defines possible delete strategies of a runtime type */ declare enum DeleteStrategiesDto { ArchiveDto = "ARCHIVE", EraseDto = "ERASE" } type FieldFilterDto = { attributePath: Scalars['String']['input']; comparisonValue?: InputMaybe; operator: FieldFilterOperatorsDto; /** Secondary value for two-argument operators such as Between. */ secondaryValue?: InputMaybe; }; /** Defines the operator of field compare */ declare enum FieldFilterOperatorsDto { AnyEqDto = "ANY_EQ", AnyLikeDto = "ANY_LIKE", BetweenDto = "BETWEEN", EqualsDto = "EQUALS", GreaterEqualThanDto = "GREATER_EQUAL_THAN", GreaterThanDto = "GREATER_THAN", InDto = "IN", IsNotNullDto = "IS_NOT_NULL", IsNullDto = "IS_NULL", LessEqualThanDto = "LESS_EQUAL_THAN", LessThanDto = "LESS_THAN", LikeDto = "LIKE", MatchRegExDto = "MATCH_REG_EX", NotEqualsDto = "NOT_EQUALS", NotInDto = "NOT_IN" } type FieldGroupByAggregationInputDto = { avgAttributePaths?: InputMaybe>>; countAttributePaths?: InputMaybe>>; groupByAttributePaths: Array>; maxValueAttributePaths?: InputMaybe>>; minValueAttributePaths?: InputMaybe>>; /** When true, enum integer values in groupBy keys are resolved to their label names. Defaults to true. */ resolveEnumValuesToNames?: InputMaybe; sumAttributePaths?: InputMaybe>>; }; type GlobalQueryOptionsDto = { includeArchivedEntities?: InputMaybe; }; /** Enum of graph directions */ declare enum GraphDirectionDto { AnyDto = "ANY", InboundDto = "INBOUND", OutboundDto = "OUTBOUND" } /** Runtime entities of construction kit type 'Industry.Basic-2.1.0/Alarm-1' */ type IndustryBasicAlarmDto = BasicNamedEntityInterfaceDto & SystemEntityInterfaceDto & { __typename?: 'IndustryBasicAlarm'; acknowledged?: Maybe; associations?: Maybe; category?: Maybe; cause: Scalars['String']['output']; ckTypeId: Scalars['RtCkTypeId']['output']; cleared?: Maybe; configuredBy?: Maybe; constructionKitType?: Maybe; description?: Maybe; eventSource?: Maybe; lastModified: Scalars['DateTime']['output']; mapsFrom?: Maybe; mapsTo?: Maybe; message: Scalars['String']['output']; name: Scalars['String']['output']; order?: Maybe; priority: IndustryBasicAlarmPriorityDto; reactivated?: Maybe; reactivatedCount: Scalars['Int']['output']; received: Scalars['DateTime']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; source: IndustryBasicAlarmSourceTypeDto; state: IndustryBasicAlarmStateDto; tagName?: Maybe; taggedBy?: Maybe; type: IndustryBasicAlarmTypeDto; }; /** Runtime entities of construction kit type 'Industry.Basic-2.1.0/Alarm-1' */ type IndustryBasicAlarmAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Basic-2.1.0/Alarm-1' */ type IndustryBasicAlarmConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Basic-2.1.0/Alarm-1' */ type IndustryBasicAlarmEventSourceArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Basic-2.1.0/Alarm-1' */ type IndustryBasicAlarmMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Basic-2.1.0/Alarm-1' */ type IndustryBasicAlarmMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Basic-2.1.0/Alarm-1' */ type IndustryBasicAlarmOrderArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Basic-2.1.0/Alarm-1' */ type IndustryBasicAlarmRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Basic-2.1.0/Alarm-1' */ type IndustryBasicAlarmRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Basic-2.1.0/Alarm-1' */ type IndustryBasicAlarmTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `IndustryBasicAlarm`. */ type IndustryBasicAlarmConnectionDto = { __typename?: 'IndustryBasicAlarmConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `IndustryBasicAlarm`. */ type IndustryBasicAlarmEdgeDto = { __typename?: 'IndustryBasicAlarmEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type IndustryBasicAlarmInputDto = { acknowledged?: InputMaybe; category?: InputMaybe; cause?: InputMaybe; cleared?: InputMaybe; configuredBy?: InputMaybe>>; description?: InputMaybe; eventSource?: InputMaybe>>; lastModified?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; message?: InputMaybe; name?: InputMaybe; order?: InputMaybe>>; priority?: InputMaybe; reactivated?: InputMaybe; reactivatedCount?: InputMaybe; received?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; source?: InputMaybe; state?: InputMaybe; tagName?: InputMaybe; taggedBy?: InputMaybe>>; type?: InputMaybe; }; type IndustryBasicAlarmInputUpdateDto = { /** Item to update */ item: IndustryBasicAlarmInputDto; rtId?: InputMaybe; }; type IndustryBasicAlarmMutationsDto = { __typename?: 'IndustryBasicAlarmMutations'; /** Creates new entities of type 'IndustryBasicAlarm'. */ create?: Maybe>>; /** Updates existing entity of type 'IndustryBasicAlarm'. */ update?: Maybe>>; }; type IndustryBasicAlarmMutationsCreateArgsDto = { entities: Array>; }; type IndustryBasicAlarmMutationsUpdateArgsDto = { entities: Array>; }; /** Runtime entities of construction kit enum 'Industry.Basic/AlarmPriority' */ declare enum IndustryBasicAlarmPriorityDto { /** The alarm is of critical priority. */ CriticalDto = "CRITICAL", /** The alarm is of high priority. */ HighDto = "HIGH", /** The alarm is of low priority. */ LowDto = "LOW", /** The alarm is of medium priority. */ MediumDto = "MEDIUM", /** No priority has been assigned to the alarm. */ UndefinedDto = "UNDEFINED" } /** Runtime entities of construction kit enum 'Industry.Basic/AlarmSourceType' */ declare enum IndustryBasicAlarmSourceTypeDto { /** The alarm is generated by a control system. */ ControlSystemDto = "CONTROL_SYSTEM", /** The alarm is generated by a field device. */ FieldDeviceDto = "FIELD_DEVICE", /** The alarm is generated by a human-machine interface. */ HmiDto = "HMI", /** The alarm is generated by an internal source. */ InternalDto = "INTERNAL", /** No source has been assigned to the alarm. */ UndefinedDto = "UNDEFINED" } /** Runtime entities of construction kit enum 'Industry.Basic/AlarmState' */ declare enum IndustryBasicAlarmStateDto { /** The acknowledged alarm state should not use an audible indication. The acknowledged alarm state visual indication should be clearly distinguishable from the normal state indication by using symbols (e.g., shape or text), and should be identical in colour to the unacknowledged alarm indication. A blinking element should not be used in the visual indication for an acknowledged alarm. */ AcknowledgedDto = "ACKNOWLEDGED", /** The normal state should not use an audible indication. The normal state visual indication should be the same as indications without alarms. */ NormalDto = "NORMAL", /** The out-of-service alarm state should be visually indicated in the HMI. The visual indication for an out-of-service alarm should not include a blinking element. The out-of-service alarm state indication should be distinct from the unacknowledged and acknowledged state indications. No audible indication should be used to identify out-of-service alarms. */ OutOfServiceDto = "OUT_OF_SERVICE", /** The return-to-normal unacknowledged state should not use an audible indication. The return to-normal unacknowledged state visual indication may be the same as the normal state or it may indicate an unacknowledged status with a blinking element. */ ReturnToNormalDto = "RETURN_TO_NORMAL", /** The shelved alarm state should be visually indicated in the HMI. The visual indication for a shelved alarm should not include a blinking element. The shelved alarm state indication should be distinct. No audible indication should be used to identify shelved alarms. */ ShelvedDto = "SHELVED", /** The suppressed-by-design alarm state should be visually indicated in the HMI. The visual indication for an alarm suppressed by design should not include a blinking element. The suppressed-by-design alarm state indication should be distinct from the unacknowledged and acknowledged state indications. No audible indication should be used to identify alarms suppressed by design. */ SuppressedByDesignDto = "SUPPRESSED_BY_DESIGN", /** The unacknowledged alarm state should use both an audible indication and visual indication. The audible indication should be silenced with a silence action or acknowledge action by the operator. The visual indication should be clearly distinguishable from the normal state indication by using colours and symbols (e.g., shape or text). The visual indication for an unacknowledged alarm should include a blinking element. There are some environments in which an audible indication is not an effective indicator of unacknowledged alarms. */ UnacknowledgedDto = "UNACKNOWLEDGED", /** No state has been assigned to the alarm. */ UndefinedDto = "UNDEFINED" } /** Runtime entities of construction kit enum 'Industry.Basic/AlarmType' */ declare enum IndustryBasicAlarmTypeDto { /** The alarm is based on an absolute value. */ AbsoluteDto = "ABSOLUTE", /** The alarm is based on an adaptive value. */ AdaptiveDto = "ADAPTIVE", /** The alarm is based on an adjustable value. */ AdjustableDto = "ADJUSTABLE", /** The alarm is based on a bad measurement. */ BadMeasurementDto = "BAD_MEASUREMENT", /** The alarm is based on a bit pattern. */ BitPatternDto = "BIT_PATTERN", /** The alarm is based on a calculated value. */ CalculatedDto = "CALCULATED", /** The alarm is based on a controller output. */ ControllerOutputDto = "CONTROLLER_OUTPUT", /** The alarm is based on a deviation from a set-point. */ DeviationDto = "DEVIATION", /** The alarm is based on a discrepancy between two values. */ DiscrepancyDto = "DISCREPANCY", /** The alarm is based on a first-out value. */ FirstOutDto = "FIRST_OUT", /** The alarm is based on an instrument diagnostic. */ InstrumentDiagnosticDto = "INSTRUMENT_DIAGNOSTIC", /** The alarm is based on the rate of change of a value. */ RateOfChangeDto = "RATE_OF_CHANGE", /** The alarm is based on a recipe-driven value. */ RecipeDrivenDto = "RECIPE_DRIVEN", /** The alarm is based on a re-alarming value. */ ReAlarmingDto = "RE_ALARMING", /** The alarm is based on a statistical value. */ StatisticalDto = "STATISTICAL", /** The alarm is based on a system diagnostic. */ SystemDiagnosticDto = "SYSTEM_DIAGNOSTIC", /** No type has been assigned to the alarm. */ UndefinedDto = "UNDEFINED" } type IndustryBasicAlarmUpdateDto = { __typename?: 'IndustryBasicAlarmUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type IndustryBasicAlarmUpdateMessageDto = { __typename?: 'IndustryBasicAlarmUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'Industry.Basic-2.1.0/Event-1' */ type IndustryBasicEventDto = BasicNamedEntityInterfaceDto & SystemEntityInterfaceDto & { __typename?: 'IndustryBasicEvent'; associations?: Maybe; category?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; description?: Maybe; eventSource?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; message: Scalars['String']['output']; name: Scalars['String']['output']; order?: Maybe; received: Scalars['DateTime']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; tagName?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'Industry.Basic-2.1.0/Event-1' */ type IndustryBasicEventAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Basic-2.1.0/Event-1' */ type IndustryBasicEventConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Basic-2.1.0/Event-1' */ type IndustryBasicEventEventSourceArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Basic-2.1.0/Event-1' */ type IndustryBasicEventMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Basic-2.1.0/Event-1' */ type IndustryBasicEventMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Basic-2.1.0/Event-1' */ type IndustryBasicEventOrderArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Basic-2.1.0/Event-1' */ type IndustryBasicEventRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Basic-2.1.0/Event-1' */ type IndustryBasicEventRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Basic-2.1.0/Event-1' */ type IndustryBasicEventTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `IndustryBasicEvent`. */ type IndustryBasicEventConnectionDto = { __typename?: 'IndustryBasicEventConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `IndustryBasicEvent`. */ type IndustryBasicEventEdgeDto = { __typename?: 'IndustryBasicEventEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type IndustryBasicEventInputDto = { category?: InputMaybe; configuredBy?: InputMaybe>>; description?: InputMaybe; eventSource?: InputMaybe>>; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; message?: InputMaybe; name?: InputMaybe; order?: InputMaybe>>; received?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; tagName?: InputMaybe; taggedBy?: InputMaybe>>; }; type IndustryBasicEventInputUpdateDto = { /** Item to update */ item: IndustryBasicEventInputDto; rtId?: InputMaybe; }; type IndustryBasicEventMutationsDto = { __typename?: 'IndustryBasicEventMutations'; /** Creates new entities of type 'IndustryBasicEvent'. */ create?: Maybe>>; /** Updates existing entity of type 'IndustryBasicEvent'. */ update?: Maybe>>; }; type IndustryBasicEventMutationsCreateArgsDto = { entities: Array>; }; type IndustryBasicEventMutationsUpdateArgsDto = { entities: Array>; }; type IndustryBasicEventUpdateDto = { __typename?: 'IndustryBasicEventUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type IndustryBasicEventUpdateMessageDto = { __typename?: 'IndustryBasicEventUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Union of types derived from Industry.Basic/Event for Event association */ type IndustryBasicEvent_EventUnionDto = IndustryBasicAlarmDto | IndustryBasicEventDto; /** A connection to `IndustryBasicEvent_EventUnion`. */ type IndustryBasicEvent_EventUnionConnectionDto = { __typename?: 'IndustryBasicEvent_EventUnionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `IndustryBasicEvent_EventUnion`. */ type IndustryBasicEvent_EventUnionEdgeDto = { __typename?: 'IndustryBasicEvent_EventUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Union of types derived from Industry.Basic/Event for Events association */ type IndustryBasicEvent_EventsUnionDto = IndustryBasicAlarmDto | IndustryBasicEventDto; /** A connection to `IndustryBasicEvent_EventsUnion`. */ type IndustryBasicEvent_EventsUnionConnectionDto = { __typename?: 'IndustryBasicEvent_EventsUnionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `IndustryBasicEvent_EventsUnion`. */ type IndustryBasicEvent_EventsUnionEdgeDto = { __typename?: 'IndustryBasicEvent_EventsUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Runtime entities of construction kit enum 'Industry.Basic/IecDataType' */ declare enum IndustryBasicIecDataTypeDto { /** IEC_BOOL - 1Bit */ BoolDto = "BOOL", /** IEC_BYTE - 8Bit */ ByteDto = "BYTE", /** IEC_DATE */ DateDto = "DATE", /** IEC_DINT - 32Bit signed */ DintDto = "DINT", /** IEC_DT - Date and Time */ DtDto = "DT", /** IEC_DWORD - 32Bit */ DwordDto = "DWORD", /** IEC_INT - 16Bit signed */ IntDto = "INT", /** IEC_LINT - 64Bit signed */ LintDto = "LINT", /** IEC_LREAL - 64Bit float */ LrealDto = "LREAL", /** IEC_LWORD - 64Bit */ LwordDto = "LWORD", /** IEC_REAL - 32Bit float */ RealDto = "REAL", /** IEC_SINT - 8Bit signed */ SintDto = "SINT", /** IEC_STRING - 8Bit*n */ StringDto = "STRING", /** IEC_TIME */ TimeDto = "TIME", /** IEC_TOD - Time of Day */ TodDto = "TOD", /** IEC_UDINT - 32Bit unsigned */ UdintDto = "UDINT", /** IEC_UINT - 16Bit unsigned */ UintDto = "UINT", /** IEC_ULINT - 64Bit unsigned */ UlintDto = "ULINT", /** IEC_USINT - 8Bit unsigned */ UsintDto = "USINT", /** IEC_WORD - 16Bit */ WordDto = "WORD", /** IEC_WSTRING - 16Bit*n */ WstringDto = "WSTRING" } /** Runtime entities of construction kit type 'Industry.Basic-2.1.0/Machine-1' */ type IndustryBasicMachineDto = { __typename?: 'IndustryBasicMachine'; associations?: Maybe; children?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; description?: Maybe; events?: Maybe; machineCapabilities?: Maybe; machineState: IndustryBasicMachineStateDto; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; namePlate?: Maybe; operatingHours?: Maybe; orders?: Maybe; parent?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; runtimeVariables?: Maybe; standStillCounter?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'Industry.Basic-2.1.0/Machine-1' */ type IndustryBasicMachineAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Basic-2.1.0/Machine-1' */ type IndustryBasicMachineChildrenArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Basic-2.1.0/Machine-1' */ type IndustryBasicMachineConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Basic-2.1.0/Machine-1' */ type IndustryBasicMachineEventsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Basic-2.1.0/Machine-1' */ type IndustryBasicMachineMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Basic-2.1.0/Machine-1' */ type IndustryBasicMachineMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Basic-2.1.0/Machine-1' */ type IndustryBasicMachineOrdersArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Basic-2.1.0/Machine-1' */ type IndustryBasicMachineParentArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Basic-2.1.0/Machine-1' */ type IndustryBasicMachineRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Basic-2.1.0/Machine-1' */ type IndustryBasicMachineRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Basic-2.1.0/Machine-1' */ type IndustryBasicMachineRuntimeVariablesArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Basic-2.1.0/Machine-1' */ type IndustryBasicMachineTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit enum 'Industry.Basic/MachineCapabilities' */ declare enum IndustryBasicMachineCapabilitiesDto { UnknownDto = "UNKNOWN" } /** A connection to `IndustryBasicMachine`. */ type IndustryBasicMachineConnectionDto = { __typename?: 'IndustryBasicMachineConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `IndustryBasicMachine`. */ type IndustryBasicMachineEdgeDto = { __typename?: 'IndustryBasicMachineEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type IndustryBasicMachineInputDto = { children?: InputMaybe>>; configuredBy?: InputMaybe>>; description?: InputMaybe; events?: InputMaybe>>; machineCapabilities?: InputMaybe; machineState?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; namePlate?: InputMaybe; operatingHours?: InputMaybe; orders?: InputMaybe>>; parent?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; runtimeVariables?: InputMaybe>>; standStillCounter?: InputMaybe; taggedBy?: InputMaybe>>; }; type IndustryBasicMachineInputUpdateDto = { /** Item to update */ item: IndustryBasicMachineInputDto; rtId?: InputMaybe; }; type IndustryBasicMachineMutationsDto = { __typename?: 'IndustryBasicMachineMutations'; /** Creates new entities of type 'IndustryBasicMachine'. */ create?: Maybe>>; /** Updates existing entity of type 'IndustryBasicMachine'. */ update?: Maybe>>; }; type IndustryBasicMachineMutationsCreateArgsDto = { entities: Array>; }; type IndustryBasicMachineMutationsUpdateArgsDto = { entities: Array>; }; /** Runtime entities of construction kit enum 'Industry.Basic/MachineState' */ declare enum IndustryBasicMachineStateDto { ErrorDto = "ERROR", IdleDto = "IDLE", OffDto = "OFF", OnDto = "ON", UnknownDto = "UNKNOWN" } type IndustryBasicMachineUpdateDto = { __typename?: 'IndustryBasicMachineUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type IndustryBasicMachineUpdateMessageDto = { __typename?: 'IndustryBasicMachineUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Union of types derived from Industry.Basic/Machine for Machine association */ type IndustryBasicMachine_MachineUnionDto = IndustryBasicMachineDto | IndustryEnergyEnergyConsumerDto | IndustryEnergyEnergyMeterDto | IndustryEnergyEnergyStorageDto | IndustryEnergyInverterDto | IndustryEnergyPhotovoltaicSystemModuleDto | IndustryFluidHeatMeterDto | IndustryFluidWaterMeterDto; /** A connection to `IndustryBasicMachine_MachineUnion`. */ type IndustryBasicMachine_MachineUnionConnectionDto = { __typename?: 'IndustryBasicMachine_MachineUnionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `IndustryBasicMachine_MachineUnion`. */ type IndustryBasicMachine_MachineUnionEdgeDto = { __typename?: 'IndustryBasicMachine_MachineUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Runtime entities of construction kit type 'Industry.Basic-2.1.0/RuntimeVariable-1' */ type IndustryBasicRuntimeVariableDto = BasicNamedEntityInterfaceDto & SystemEntityInterfaceDto & { __typename?: 'IndustryBasicRuntimeVariable'; associations?: Maybe; booleanValue?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; dateTimeValue?: Maybe; description?: Maybe; doubleValue?: Maybe; iecDataType: IndustryBasicIecDataTypeDto; int64Value?: Maybe; intValue?: Maybe; machine?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; stringValue?: Maybe; taggedBy?: Maybe; timeSpanValue?: Maybe; }; /** Runtime entities of construction kit type 'Industry.Basic-2.1.0/RuntimeVariable-1' */ type IndustryBasicRuntimeVariableAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Basic-2.1.0/RuntimeVariable-1' */ type IndustryBasicRuntimeVariableConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Basic-2.1.0/RuntimeVariable-1' */ type IndustryBasicRuntimeVariableMachineArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Basic-2.1.0/RuntimeVariable-1' */ type IndustryBasicRuntimeVariableMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Basic-2.1.0/RuntimeVariable-1' */ type IndustryBasicRuntimeVariableMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Basic-2.1.0/RuntimeVariable-1' */ type IndustryBasicRuntimeVariableRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Basic-2.1.0/RuntimeVariable-1' */ type IndustryBasicRuntimeVariableRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Basic-2.1.0/RuntimeVariable-1' */ type IndustryBasicRuntimeVariableTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `IndustryBasicRuntimeVariable`. */ type IndustryBasicRuntimeVariableConnectionDto = { __typename?: 'IndustryBasicRuntimeVariableConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `IndustryBasicRuntimeVariable`. */ type IndustryBasicRuntimeVariableEdgeDto = { __typename?: 'IndustryBasicRuntimeVariableEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type IndustryBasicRuntimeVariableInputDto = { booleanValue?: InputMaybe; configuredBy?: InputMaybe>>; dateTimeValue?: InputMaybe; description?: InputMaybe; doubleValue?: InputMaybe; iecDataType?: InputMaybe; int64Value?: InputMaybe; intValue?: InputMaybe; machine?: InputMaybe>>; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; stringValue?: InputMaybe; taggedBy?: InputMaybe>>; timeSpanValue?: InputMaybe; }; type IndustryBasicRuntimeVariableInputUpdateDto = { /** Item to update */ item: IndustryBasicRuntimeVariableInputDto; rtId?: InputMaybe; }; type IndustryBasicRuntimeVariableMutationsDto = { __typename?: 'IndustryBasicRuntimeVariableMutations'; /** Creates new entities of type 'IndustryBasicRuntimeVariable'. */ create?: Maybe>>; /** Updates existing entity of type 'IndustryBasicRuntimeVariable'. */ update?: Maybe>>; }; type IndustryBasicRuntimeVariableMutationsCreateArgsDto = { entities: Array>; }; type IndustryBasicRuntimeVariableMutationsUpdateArgsDto = { entities: Array>; }; type IndustryBasicRuntimeVariableUpdateDto = { __typename?: 'IndustryBasicRuntimeVariableUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type IndustryBasicRuntimeVariableUpdateMessageDto = { __typename?: 'IndustryBasicRuntimeVariableUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Union of types derived from Industry.Basic/RuntimeVariable for RuntimeVariables association */ type IndustryBasicRuntimeVariable_RuntimeVariablesUnionDto = IndustryBasicRuntimeVariableDto; /** A connection to `IndustryBasicRuntimeVariable_RuntimeVariablesUnion`. */ type IndustryBasicRuntimeVariable_RuntimeVariablesUnionConnectionDto = { __typename?: 'IndustryBasicRuntimeVariable_RuntimeVariablesUnionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `IndustryBasicRuntimeVariable_RuntimeVariablesUnion`. */ type IndustryBasicRuntimeVariable_RuntimeVariablesUnionEdgeDto = { __typename?: 'IndustryBasicRuntimeVariable_RuntimeVariablesUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/DemandResponseEvent-1' */ type IndustryEnergyDemandResponseEventDto = BasicNamedEntityInterfaceDto & SystemEntityInterfaceDto & { __typename?: 'IndustryEnergyDemandResponseEvent'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; description?: Maybe; endTime: Scalars['DateTime']['output']; mapsFrom?: Maybe; mapsTo?: Maybe; market: IndustryEnergyDemandResponseMarketDto; name: Scalars['String']['output']; parent?: Maybe; reductionKw: Scalars['Decimal']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; revenue?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; startTime: Scalars['DateTime']['output']; status: IndustryEnergyDemandResponseStatusDto; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/DemandResponseEvent-1' */ type IndustryEnergyDemandResponseEventAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/DemandResponseEvent-1' */ type IndustryEnergyDemandResponseEventConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/DemandResponseEvent-1' */ type IndustryEnergyDemandResponseEventMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/DemandResponseEvent-1' */ type IndustryEnergyDemandResponseEventMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/DemandResponseEvent-1' */ type IndustryEnergyDemandResponseEventParentArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/DemandResponseEvent-1' */ type IndustryEnergyDemandResponseEventRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/DemandResponseEvent-1' */ type IndustryEnergyDemandResponseEventRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/DemandResponseEvent-1' */ type IndustryEnergyDemandResponseEventTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `IndustryEnergyDemandResponseEvent`. */ type IndustryEnergyDemandResponseEventConnectionDto = { __typename?: 'IndustryEnergyDemandResponseEventConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `IndustryEnergyDemandResponseEvent`. */ type IndustryEnergyDemandResponseEventEdgeDto = { __typename?: 'IndustryEnergyDemandResponseEventEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type IndustryEnergyDemandResponseEventInputDto = { configuredBy?: InputMaybe>>; description?: InputMaybe; endTime?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; market?: InputMaybe; name?: InputMaybe; parent?: InputMaybe>>; reductionKw?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; revenue?: InputMaybe; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; startTime?: InputMaybe; status?: InputMaybe; taggedBy?: InputMaybe>>; }; type IndustryEnergyDemandResponseEventInputUpdateDto = { /** Item to update */ item: IndustryEnergyDemandResponseEventInputDto; rtId?: InputMaybe; }; type IndustryEnergyDemandResponseEventMutationsDto = { __typename?: 'IndustryEnergyDemandResponseEventMutations'; /** Creates new entities of type 'IndustryEnergyDemandResponseEvent'. */ create?: Maybe>>; /** Updates existing entity of type 'IndustryEnergyDemandResponseEvent'. */ update?: Maybe>>; }; type IndustryEnergyDemandResponseEventMutationsCreateArgsDto = { entities: Array>; }; type IndustryEnergyDemandResponseEventMutationsUpdateArgsDto = { entities: Array>; }; type IndustryEnergyDemandResponseEventUpdateDto = { __typename?: 'IndustryEnergyDemandResponseEventUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type IndustryEnergyDemandResponseEventUpdateMessageDto = { __typename?: 'IndustryEnergyDemandResponseEventUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit enum 'Industry.Energy/DemandResponseMarket' */ declare enum IndustryEnergyDemandResponseMarketDto { ApcsDto = "APCS", ExaaDto = "EXAA", SpotDto = "SPOT" } /** Runtime entities of construction kit enum 'Industry.Energy/DemandResponseStatus' */ declare enum IndustryEnergyDemandResponseStatusDto { ActiveDto = "ACTIVE", CancelledDto = "CANCELLED", CompletedDto = "COMPLETED" } /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/EnergyConsumer-1' */ type IndustryEnergyEnergyConsumerDto = { __typename?: 'IndustryEnergyEnergyConsumer'; associations?: Maybe; children?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; description?: Maybe; events?: Maybe; importedEnergy?: Maybe; loadPercent?: Maybe; machineCapabilities?: Maybe; machineState: IndustryBasicMachineStateDto; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; namePlate?: Maybe; nominalPower: Scalars['Decimal']['output']; operatingHours?: Maybe; orders?: Maybe; parent?: Maybe; power: Scalars['Decimal']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; runtimeVariables?: Maybe; standStillCounter?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/EnergyConsumer-1' */ type IndustryEnergyEnergyConsumerAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/EnergyConsumer-1' */ type IndustryEnergyEnergyConsumerChildrenArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/EnergyConsumer-1' */ type IndustryEnergyEnergyConsumerConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/EnergyConsumer-1' */ type IndustryEnergyEnergyConsumerEventsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/EnergyConsumer-1' */ type IndustryEnergyEnergyConsumerMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/EnergyConsumer-1' */ type IndustryEnergyEnergyConsumerMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/EnergyConsumer-1' */ type IndustryEnergyEnergyConsumerOrdersArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/EnergyConsumer-1' */ type IndustryEnergyEnergyConsumerParentArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/EnergyConsumer-1' */ type IndustryEnergyEnergyConsumerRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/EnergyConsumer-1' */ type IndustryEnergyEnergyConsumerRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/EnergyConsumer-1' */ type IndustryEnergyEnergyConsumerRuntimeVariablesArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/EnergyConsumer-1' */ type IndustryEnergyEnergyConsumerTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `IndustryEnergyEnergyConsumer`. */ type IndustryEnergyEnergyConsumerConnectionDto = { __typename?: 'IndustryEnergyEnergyConsumerConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `IndustryEnergyEnergyConsumer`. */ type IndustryEnergyEnergyConsumerEdgeDto = { __typename?: 'IndustryEnergyEnergyConsumerEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type IndustryEnergyEnergyConsumerInputDto = { children?: InputMaybe>>; configuredBy?: InputMaybe>>; description?: InputMaybe; events?: InputMaybe>>; importedEnergy?: InputMaybe; loadPercent?: InputMaybe; machineCapabilities?: InputMaybe; machineState?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; namePlate?: InputMaybe; nominalPower?: InputMaybe; operatingHours?: InputMaybe; orders?: InputMaybe>>; parent?: InputMaybe>>; power?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; runtimeVariables?: InputMaybe>>; standStillCounter?: InputMaybe; taggedBy?: InputMaybe>>; }; type IndustryEnergyEnergyConsumerInputUpdateDto = { /** Item to update */ item: IndustryEnergyEnergyConsumerInputDto; rtId?: InputMaybe; }; type IndustryEnergyEnergyConsumerMutationsDto = { __typename?: 'IndustryEnergyEnergyConsumerMutations'; /** Creates new entities of type 'IndustryEnergyEnergyConsumer'. */ create?: Maybe>>; /** Updates existing entity of type 'IndustryEnergyEnergyConsumer'. */ update?: Maybe>>; }; type IndustryEnergyEnergyConsumerMutationsCreateArgsDto = { entities: Array>; }; type IndustryEnergyEnergyConsumerMutationsUpdateArgsDto = { entities: Array>; }; type IndustryEnergyEnergyConsumerUpdateDto = { __typename?: 'IndustryEnergyEnergyConsumerUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type IndustryEnergyEnergyConsumerUpdateMessageDto = { __typename?: 'IndustryEnergyEnergyConsumerUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/EnergyCost-1' */ type IndustryEnergyEnergyCostDto = SystemEntityInterfaceDto & { __typename?: 'IndustryEnergyEnergyCost'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; costAmount: Scalars['Decimal']['output']; forecastAmount?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; parent?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; tariffType?: Maybe; timeRange: BasicTimeRangeDto; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/EnergyCost-1' */ type IndustryEnergyEnergyCostAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/EnergyCost-1' */ type IndustryEnergyEnergyCostConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/EnergyCost-1' */ type IndustryEnergyEnergyCostMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/EnergyCost-1' */ type IndustryEnergyEnergyCostMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/EnergyCost-1' */ type IndustryEnergyEnergyCostParentArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/EnergyCost-1' */ type IndustryEnergyEnergyCostRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/EnergyCost-1' */ type IndustryEnergyEnergyCostRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/EnergyCost-1' */ type IndustryEnergyEnergyCostTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `IndustryEnergyEnergyCost`. */ type IndustryEnergyEnergyCostConnectionDto = { __typename?: 'IndustryEnergyEnergyCostConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `IndustryEnergyEnergyCost`. */ type IndustryEnergyEnergyCostEdgeDto = { __typename?: 'IndustryEnergyEnergyCostEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type IndustryEnergyEnergyCostInputDto = { configuredBy?: InputMaybe>>; costAmount?: InputMaybe; forecastAmount?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; parent?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; tariffType?: InputMaybe; timeRange?: InputMaybe; }; type IndustryEnergyEnergyCostInputUpdateDto = { /** Item to update */ item: IndustryEnergyEnergyCostInputDto; rtId?: InputMaybe; }; type IndustryEnergyEnergyCostMutationsDto = { __typename?: 'IndustryEnergyEnergyCostMutations'; /** Creates new entities of type 'IndustryEnergyEnergyCost'. */ create?: Maybe>>; /** Updates existing entity of type 'IndustryEnergyEnergyCost'. */ update?: Maybe>>; }; type IndustryEnergyEnergyCostMutationsCreateArgsDto = { entities: Array>; }; type IndustryEnergyEnergyCostMutationsUpdateArgsDto = { entities: Array>; }; type IndustryEnergyEnergyCostUpdateDto = { __typename?: 'IndustryEnergyEnergyCostUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type IndustryEnergyEnergyCostUpdateMessageDto = { __typename?: 'IndustryEnergyEnergyCostUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/EnergyForecast-1' */ type IndustryEnergyEnergyForecastDto = SystemEntityInterfaceDto & { __typename?: 'IndustryEnergyEnergyForecast'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; confidence?: Maybe; configuredBy?: Maybe; constructionKitType?: Maybe; forecastModel?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; parent?: Maybe; predictedLoad: Scalars['Decimal']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; timeRange: BasicTimeRangeDto; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/EnergyForecast-1' */ type IndustryEnergyEnergyForecastAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/EnergyForecast-1' */ type IndustryEnergyEnergyForecastConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/EnergyForecast-1' */ type IndustryEnergyEnergyForecastMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/EnergyForecast-1' */ type IndustryEnergyEnergyForecastMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/EnergyForecast-1' */ type IndustryEnergyEnergyForecastParentArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/EnergyForecast-1' */ type IndustryEnergyEnergyForecastRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/EnergyForecast-1' */ type IndustryEnergyEnergyForecastRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/EnergyForecast-1' */ type IndustryEnergyEnergyForecastTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `IndustryEnergyEnergyForecast`. */ type IndustryEnergyEnergyForecastConnectionDto = { __typename?: 'IndustryEnergyEnergyForecastConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `IndustryEnergyEnergyForecast`. */ type IndustryEnergyEnergyForecastEdgeDto = { __typename?: 'IndustryEnergyEnergyForecastEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type IndustryEnergyEnergyForecastInputDto = { confidence?: InputMaybe; configuredBy?: InputMaybe>>; forecastModel?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; parent?: InputMaybe>>; predictedLoad?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; timeRange?: InputMaybe; }; type IndustryEnergyEnergyForecastInputUpdateDto = { /** Item to update */ item: IndustryEnergyEnergyForecastInputDto; rtId?: InputMaybe; }; type IndustryEnergyEnergyForecastMutationsDto = { __typename?: 'IndustryEnergyEnergyForecastMutations'; /** Creates new entities of type 'IndustryEnergyEnergyForecast'. */ create?: Maybe>>; /** Updates existing entity of type 'IndustryEnergyEnergyForecast'. */ update?: Maybe>>; }; type IndustryEnergyEnergyForecastMutationsCreateArgsDto = { entities: Array>; }; type IndustryEnergyEnergyForecastMutationsUpdateArgsDto = { entities: Array>; }; type IndustryEnergyEnergyForecastUpdateDto = { __typename?: 'IndustryEnergyEnergyForecastUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type IndustryEnergyEnergyForecastUpdateMessageDto = { __typename?: 'IndustryEnergyEnergyForecastUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/EnergyMeter-1' */ type IndustryEnergyEnergyMeterDto = { __typename?: 'IndustryEnergyEnergyMeter'; aCL1?: Maybe; aCL2?: Maybe; aCL3?: Maybe; ampere: Scalars['Decimal']['output']; apparentPower?: Maybe; associations?: Maybe; children?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; description?: Maybe; events?: Maybe; exportedEnergy?: Maybe; frequency?: Maybe; importedEnergy?: Maybe; machineCapabilities?: Maybe; machineState: IndustryBasicMachineStateDto; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; namePlate?: Maybe; operatingHours?: Maybe; orders?: Maybe; parent?: Maybe; power: Scalars['Decimal']['output']; reactivePower?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; runtimeVariables?: Maybe; standStillCounter?: Maybe; taggedBy?: Maybe; voltage?: Maybe; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/EnergyMeter-1' */ type IndustryEnergyEnergyMeterAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/EnergyMeter-1' */ type IndustryEnergyEnergyMeterChildrenArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/EnergyMeter-1' */ type IndustryEnergyEnergyMeterConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/EnergyMeter-1' */ type IndustryEnergyEnergyMeterEventsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/EnergyMeter-1' */ type IndustryEnergyEnergyMeterMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/EnergyMeter-1' */ type IndustryEnergyEnergyMeterMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/EnergyMeter-1' */ type IndustryEnergyEnergyMeterOrdersArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/EnergyMeter-1' */ type IndustryEnergyEnergyMeterParentArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/EnergyMeter-1' */ type IndustryEnergyEnergyMeterRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/EnergyMeter-1' */ type IndustryEnergyEnergyMeterRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/EnergyMeter-1' */ type IndustryEnergyEnergyMeterRuntimeVariablesArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/EnergyMeter-1' */ type IndustryEnergyEnergyMeterTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `IndustryEnergyEnergyMeter`. */ type IndustryEnergyEnergyMeterConnectionDto = { __typename?: 'IndustryEnergyEnergyMeterConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `IndustryEnergyEnergyMeter`. */ type IndustryEnergyEnergyMeterEdgeDto = { __typename?: 'IndustryEnergyEnergyMeterEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type IndustryEnergyEnergyMeterInputDto = { aCL1?: InputMaybe; aCL2?: InputMaybe; aCL3?: InputMaybe; ampere?: InputMaybe; apparentPower?: InputMaybe; children?: InputMaybe>>; configuredBy?: InputMaybe>>; description?: InputMaybe; events?: InputMaybe>>; exportedEnergy?: InputMaybe; frequency?: InputMaybe; importedEnergy?: InputMaybe; machineCapabilities?: InputMaybe; machineState?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; namePlate?: InputMaybe; operatingHours?: InputMaybe; orders?: InputMaybe>>; parent?: InputMaybe>>; power?: InputMaybe; reactivePower?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; runtimeVariables?: InputMaybe>>; standStillCounter?: InputMaybe; taggedBy?: InputMaybe>>; voltage?: InputMaybe; }; type IndustryEnergyEnergyMeterInputUpdateDto = { /** Item to update */ item: IndustryEnergyEnergyMeterInputDto; rtId?: InputMaybe; }; type IndustryEnergyEnergyMeterMutationsDto = { __typename?: 'IndustryEnergyEnergyMeterMutations'; /** Creates new entities of type 'IndustryEnergyEnergyMeter'. */ create?: Maybe>>; /** Updates existing entity of type 'IndustryEnergyEnergyMeter'. */ update?: Maybe>>; }; type IndustryEnergyEnergyMeterMutationsCreateArgsDto = { entities: Array>; }; type IndustryEnergyEnergyMeterMutationsUpdateArgsDto = { entities: Array>; }; type IndustryEnergyEnergyMeterUpdateDto = { __typename?: 'IndustryEnergyEnergyMeterUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type IndustryEnergyEnergyMeterUpdateMessageDto = { __typename?: 'IndustryEnergyEnergyMeterUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/EnergyPerformanceIndicator-1' */ type IndustryEnergyEnergyPerformanceIndicatorDto = BasicNamedEntityInterfaceDto & SystemEntityInterfaceDto & { __typename?: 'IndustryEnergyEnergyPerformanceIndicator'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; description?: Maybe; indicatorUnit: Scalars['String']['output']; indicatorValue: Scalars['Decimal']['output']; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; parent?: Maybe; referenceValue?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; timeRange: BasicTimeRangeDto; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/EnergyPerformanceIndicator-1' */ type IndustryEnergyEnergyPerformanceIndicatorAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/EnergyPerformanceIndicator-1' */ type IndustryEnergyEnergyPerformanceIndicatorConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/EnergyPerformanceIndicator-1' */ type IndustryEnergyEnergyPerformanceIndicatorMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/EnergyPerformanceIndicator-1' */ type IndustryEnergyEnergyPerformanceIndicatorMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/EnergyPerformanceIndicator-1' */ type IndustryEnergyEnergyPerformanceIndicatorParentArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/EnergyPerformanceIndicator-1' */ type IndustryEnergyEnergyPerformanceIndicatorRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/EnergyPerformanceIndicator-1' */ type IndustryEnergyEnergyPerformanceIndicatorRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/EnergyPerformanceIndicator-1' */ type IndustryEnergyEnergyPerformanceIndicatorTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `IndustryEnergyEnergyPerformanceIndicator`. */ type IndustryEnergyEnergyPerformanceIndicatorConnectionDto = { __typename?: 'IndustryEnergyEnergyPerformanceIndicatorConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `IndustryEnergyEnergyPerformanceIndicator`. */ type IndustryEnergyEnergyPerformanceIndicatorEdgeDto = { __typename?: 'IndustryEnergyEnergyPerformanceIndicatorEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type IndustryEnergyEnergyPerformanceIndicatorInputDto = { configuredBy?: InputMaybe>>; description?: InputMaybe; indicatorUnit?: InputMaybe; indicatorValue?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; parent?: InputMaybe>>; referenceValue?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; timeRange?: InputMaybe; }; type IndustryEnergyEnergyPerformanceIndicatorInputUpdateDto = { /** Item to update */ item: IndustryEnergyEnergyPerformanceIndicatorInputDto; rtId?: InputMaybe; }; type IndustryEnergyEnergyPerformanceIndicatorMutationsDto = { __typename?: 'IndustryEnergyEnergyPerformanceIndicatorMutations'; /** Creates new entities of type 'IndustryEnergyEnergyPerformanceIndicator'. */ create?: Maybe>>; /** Updates existing entity of type 'IndustryEnergyEnergyPerformanceIndicator'. */ update?: Maybe>>; }; type IndustryEnergyEnergyPerformanceIndicatorMutationsCreateArgsDto = { entities: Array>; }; type IndustryEnergyEnergyPerformanceIndicatorMutationsUpdateArgsDto = { entities: Array>; }; type IndustryEnergyEnergyPerformanceIndicatorUpdateDto = { __typename?: 'IndustryEnergyEnergyPerformanceIndicatorUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type IndustryEnergyEnergyPerformanceIndicatorUpdateMessageDto = { __typename?: 'IndustryEnergyEnergyPerformanceIndicatorUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/EnergyStorage-1' */ type IndustryEnergyEnergyStorageDto = { __typename?: 'IndustryEnergyEnergyStorage'; ampere: Scalars['Decimal']['output']; associations?: Maybe; capacity?: Maybe; children?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; description?: Maybe; events?: Maybe; exportedEnergy?: Maybe; importedEnergy?: Maybe; machineCapabilities?: Maybe; machineState: IndustryBasicMachineStateDto; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; namePlate?: Maybe; numOfCycles?: Maybe; operatingHours?: Maybe; orders?: Maybe; parent?: Maybe; power: Scalars['Decimal']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; runtimeVariables?: Maybe; soC: Scalars['Int']['output']; soH?: Maybe; standStillCounter?: Maybe; taggedBy?: Maybe; temperature?: Maybe; voltage?: Maybe; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/EnergyStorage-1' */ type IndustryEnergyEnergyStorageAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/EnergyStorage-1' */ type IndustryEnergyEnergyStorageChildrenArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/EnergyStorage-1' */ type IndustryEnergyEnergyStorageConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/EnergyStorage-1' */ type IndustryEnergyEnergyStorageEventsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/EnergyStorage-1' */ type IndustryEnergyEnergyStorageMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/EnergyStorage-1' */ type IndustryEnergyEnergyStorageMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/EnergyStorage-1' */ type IndustryEnergyEnergyStorageOrdersArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/EnergyStorage-1' */ type IndustryEnergyEnergyStorageParentArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/EnergyStorage-1' */ type IndustryEnergyEnergyStorageRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/EnergyStorage-1' */ type IndustryEnergyEnergyStorageRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/EnergyStorage-1' */ type IndustryEnergyEnergyStorageRuntimeVariablesArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/EnergyStorage-1' */ type IndustryEnergyEnergyStorageTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `IndustryEnergyEnergyStorage`. */ type IndustryEnergyEnergyStorageConnectionDto = { __typename?: 'IndustryEnergyEnergyStorageConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `IndustryEnergyEnergyStorage`. */ type IndustryEnergyEnergyStorageEdgeDto = { __typename?: 'IndustryEnergyEnergyStorageEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type IndustryEnergyEnergyStorageInputDto = { ampere?: InputMaybe; capacity?: InputMaybe; children?: InputMaybe>>; configuredBy?: InputMaybe>>; description?: InputMaybe; events?: InputMaybe>>; exportedEnergy?: InputMaybe; importedEnergy?: InputMaybe; machineCapabilities?: InputMaybe; machineState?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; namePlate?: InputMaybe; numOfCycles?: InputMaybe; operatingHours?: InputMaybe; orders?: InputMaybe>>; parent?: InputMaybe>>; power?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; runtimeVariables?: InputMaybe>>; soC?: InputMaybe; soH?: InputMaybe; standStillCounter?: InputMaybe; taggedBy?: InputMaybe>>; temperature?: InputMaybe; voltage?: InputMaybe; }; type IndustryEnergyEnergyStorageInputUpdateDto = { /** Item to update */ item: IndustryEnergyEnergyStorageInputDto; rtId?: InputMaybe; }; type IndustryEnergyEnergyStorageMutationsDto = { __typename?: 'IndustryEnergyEnergyStorageMutations'; /** Creates new entities of type 'IndustryEnergyEnergyStorage'. */ create?: Maybe>>; /** Updates existing entity of type 'IndustryEnergyEnergyStorage'. */ update?: Maybe>>; }; type IndustryEnergyEnergyStorageMutationsCreateArgsDto = { entities: Array>; }; type IndustryEnergyEnergyStorageMutationsUpdateArgsDto = { entities: Array>; }; type IndustryEnergyEnergyStorageUpdateDto = { __typename?: 'IndustryEnergyEnergyStorageUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type IndustryEnergyEnergyStorageUpdateMessageDto = { __typename?: 'IndustryEnergyEnergyStorageUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/Inverter-1' */ type IndustryEnergyInverterDto = { __typename?: 'IndustryEnergyInverter'; aCL1?: Maybe; aCL2?: Maybe; aCL3?: Maybe; ampere: Scalars['Decimal']['output']; associations?: Maybe; children?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; dCAmpere: Scalars['Decimal']['output']; dCVoltage?: Maybe; description?: Maybe; events?: Maybe; machineCapabilities?: Maybe; machineState: IndustryBasicMachineStateDto; mapsFrom?: Maybe; mapsTo?: Maybe; maximumPower: Scalars['Decimal']['output']; name: Scalars['String']['output']; namePlate?: Maybe; operatingHours?: Maybe; orders?: Maybe; parent?: Maybe; power: Scalars['Decimal']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; runtimeVariables?: Maybe; standStillCounter?: Maybe; taggedBy?: Maybe; voltage?: Maybe; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/Inverter-1' */ type IndustryEnergyInverterAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/Inverter-1' */ type IndustryEnergyInverterChildrenArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/Inverter-1' */ type IndustryEnergyInverterConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/Inverter-1' */ type IndustryEnergyInverterEventsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/Inverter-1' */ type IndustryEnergyInverterMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/Inverter-1' */ type IndustryEnergyInverterMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/Inverter-1' */ type IndustryEnergyInverterOrdersArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/Inverter-1' */ type IndustryEnergyInverterParentArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/Inverter-1' */ type IndustryEnergyInverterRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/Inverter-1' */ type IndustryEnergyInverterRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/Inverter-1' */ type IndustryEnergyInverterRuntimeVariablesArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/Inverter-1' */ type IndustryEnergyInverterTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `IndustryEnergyInverter`. */ type IndustryEnergyInverterConnectionDto = { __typename?: 'IndustryEnergyInverterConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `IndustryEnergyInverter`. */ type IndustryEnergyInverterEdgeDto = { __typename?: 'IndustryEnergyInverterEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type IndustryEnergyInverterInputDto = { aCL1?: InputMaybe; aCL2?: InputMaybe; aCL3?: InputMaybe; ampere?: InputMaybe; children?: InputMaybe>>; configuredBy?: InputMaybe>>; dCAmpere?: InputMaybe; dCVoltage?: InputMaybe; description?: InputMaybe; events?: InputMaybe>>; machineCapabilities?: InputMaybe; machineState?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; maximumPower?: InputMaybe; name?: InputMaybe; namePlate?: InputMaybe; operatingHours?: InputMaybe; orders?: InputMaybe>>; parent?: InputMaybe>>; power?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; runtimeVariables?: InputMaybe>>; standStillCounter?: InputMaybe; taggedBy?: InputMaybe>>; voltage?: InputMaybe; }; type IndustryEnergyInverterInputUpdateDto = { /** Item to update */ item: IndustryEnergyInverterInputDto; rtId?: InputMaybe; }; type IndustryEnergyInverterMutationsDto = { __typename?: 'IndustryEnergyInverterMutations'; /** Creates new entities of type 'IndustryEnergyInverter'. */ create?: Maybe>>; /** Updates existing entity of type 'IndustryEnergyInverter'. */ update?: Maybe>>; }; type IndustryEnergyInverterMutationsCreateArgsDto = { entities: Array>; }; type IndustryEnergyInverterMutationsUpdateArgsDto = { entities: Array>; }; type IndustryEnergyInverterUpdateDto = { __typename?: 'IndustryEnergyInverterUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type IndustryEnergyInverterUpdateMessageDto = { __typename?: 'IndustryEnergyInverterUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit record 'Industry.Energy/PhaseInfo' */ type IndustryEnergyPhaseInfoDto = { __typename?: 'IndustryEnergyPhaseInfo'; ampere: Scalars['Decimal']['output']; constructionKitType?: Maybe; frequency?: Maybe; power: Scalars['Decimal']['output']; voltage?: Maybe; }; type IndustryEnergyPhaseInfoInputDto = { ampere?: InputMaybe; frequency?: InputMaybe; power?: InputMaybe; voltage?: InputMaybe; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/PhotovoltaicSystem-1' */ type IndustryEnergyPhotovoltaicSystemDto = { __typename?: 'IndustryEnergyPhotovoltaicSystem'; associations?: Maybe; children?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; description?: Maybe; events?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; orders?: Maybe; parent?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/PhotovoltaicSystem-1' */ type IndustryEnergyPhotovoltaicSystemAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/PhotovoltaicSystem-1' */ type IndustryEnergyPhotovoltaicSystemChildrenArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/PhotovoltaicSystem-1' */ type IndustryEnergyPhotovoltaicSystemConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/PhotovoltaicSystem-1' */ type IndustryEnergyPhotovoltaicSystemEventsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/PhotovoltaicSystem-1' */ type IndustryEnergyPhotovoltaicSystemMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/PhotovoltaicSystem-1' */ type IndustryEnergyPhotovoltaicSystemMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/PhotovoltaicSystem-1' */ type IndustryEnergyPhotovoltaicSystemOrdersArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/PhotovoltaicSystem-1' */ type IndustryEnergyPhotovoltaicSystemParentArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/PhotovoltaicSystem-1' */ type IndustryEnergyPhotovoltaicSystemRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/PhotovoltaicSystem-1' */ type IndustryEnergyPhotovoltaicSystemRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/PhotovoltaicSystem-1' */ type IndustryEnergyPhotovoltaicSystemTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `IndustryEnergyPhotovoltaicSystem`. */ type IndustryEnergyPhotovoltaicSystemConnectionDto = { __typename?: 'IndustryEnergyPhotovoltaicSystemConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `IndustryEnergyPhotovoltaicSystem`. */ type IndustryEnergyPhotovoltaicSystemEdgeDto = { __typename?: 'IndustryEnergyPhotovoltaicSystemEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type IndustryEnergyPhotovoltaicSystemInputDto = { children?: InputMaybe>>; configuredBy?: InputMaybe>>; description?: InputMaybe; events?: InputMaybe>>; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; orders?: InputMaybe>>; parent?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; }; type IndustryEnergyPhotovoltaicSystemInputUpdateDto = { /** Item to update */ item: IndustryEnergyPhotovoltaicSystemInputDto; rtId?: InputMaybe; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/PhotovoltaicSystem.Module-1' */ type IndustryEnergyPhotovoltaicSystemModuleDto = { __typename?: 'IndustryEnergyPhotovoltaicSystemModule'; associations?: Maybe; children?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; description?: Maybe; events?: Maybe; machineCapabilities?: Maybe; machineState: IndustryBasicMachineStateDto; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; namePlate?: Maybe; operatingHours?: Maybe; orders?: Maybe; parent?: Maybe; peakPower: Scalars['Decimal']['output']; power?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; runtimeVariables?: Maybe; standStillCounter?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/PhotovoltaicSystem.Module-1' */ type IndustryEnergyPhotovoltaicSystemModuleAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/PhotovoltaicSystem.Module-1' */ type IndustryEnergyPhotovoltaicSystemModuleChildrenArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/PhotovoltaicSystem.Module-1' */ type IndustryEnergyPhotovoltaicSystemModuleConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/PhotovoltaicSystem.Module-1' */ type IndustryEnergyPhotovoltaicSystemModuleEventsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/PhotovoltaicSystem.Module-1' */ type IndustryEnergyPhotovoltaicSystemModuleMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/PhotovoltaicSystem.Module-1' */ type IndustryEnergyPhotovoltaicSystemModuleMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/PhotovoltaicSystem.Module-1' */ type IndustryEnergyPhotovoltaicSystemModuleOrdersArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/PhotovoltaicSystem.Module-1' */ type IndustryEnergyPhotovoltaicSystemModuleParentArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/PhotovoltaicSystem.Module-1' */ type IndustryEnergyPhotovoltaicSystemModuleRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/PhotovoltaicSystem.Module-1' */ type IndustryEnergyPhotovoltaicSystemModuleRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/PhotovoltaicSystem.Module-1' */ type IndustryEnergyPhotovoltaicSystemModuleRuntimeVariablesArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/PhotovoltaicSystem.Module-1' */ type IndustryEnergyPhotovoltaicSystemModuleTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `IndustryEnergyPhotovoltaicSystemModule`. */ type IndustryEnergyPhotovoltaicSystemModuleConnectionDto = { __typename?: 'IndustryEnergyPhotovoltaicSystemModuleConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `IndustryEnergyPhotovoltaicSystemModule`. */ type IndustryEnergyPhotovoltaicSystemModuleEdgeDto = { __typename?: 'IndustryEnergyPhotovoltaicSystemModuleEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type IndustryEnergyPhotovoltaicSystemModuleInputDto = { children?: InputMaybe>>; configuredBy?: InputMaybe>>; description?: InputMaybe; events?: InputMaybe>>; machineCapabilities?: InputMaybe; machineState?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; namePlate?: InputMaybe; operatingHours?: InputMaybe; orders?: InputMaybe>>; parent?: InputMaybe>>; peakPower?: InputMaybe; power?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; runtimeVariables?: InputMaybe>>; standStillCounter?: InputMaybe; taggedBy?: InputMaybe>>; }; type IndustryEnergyPhotovoltaicSystemModuleInputUpdateDto = { /** Item to update */ item: IndustryEnergyPhotovoltaicSystemModuleInputDto; rtId?: InputMaybe; }; type IndustryEnergyPhotovoltaicSystemModuleMutationsDto = { __typename?: 'IndustryEnergyPhotovoltaicSystemModuleMutations'; /** Creates new entities of type 'IndustryEnergyPhotovoltaicSystemModule'. */ create?: Maybe>>; /** Updates existing entity of type 'IndustryEnergyPhotovoltaicSystemModule'. */ update?: Maybe>>; }; type IndustryEnergyPhotovoltaicSystemModuleMutationsCreateArgsDto = { entities: Array>; }; type IndustryEnergyPhotovoltaicSystemModuleMutationsUpdateArgsDto = { entities: Array>; }; type IndustryEnergyPhotovoltaicSystemModuleUpdateDto = { __typename?: 'IndustryEnergyPhotovoltaicSystemModuleUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type IndustryEnergyPhotovoltaicSystemModuleUpdateMessageDto = { __typename?: 'IndustryEnergyPhotovoltaicSystemModuleUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; type IndustryEnergyPhotovoltaicSystemMutationsDto = { __typename?: 'IndustryEnergyPhotovoltaicSystemMutations'; /** Creates new entities of type 'IndustryEnergyPhotovoltaicSystem'. */ create?: Maybe>>; /** Updates existing entity of type 'IndustryEnergyPhotovoltaicSystem'. */ update?: Maybe>>; }; type IndustryEnergyPhotovoltaicSystemMutationsCreateArgsDto = { entities: Array>; }; type IndustryEnergyPhotovoltaicSystemMutationsUpdateArgsDto = { entities: Array>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/PhotovoltaicSystem.String-1' */ type IndustryEnergyPhotovoltaicSystemStringDto = { __typename?: 'IndustryEnergyPhotovoltaicSystemString'; associations?: Maybe; children?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; description?: Maybe; events?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; numOfModules: Scalars['Int']['output']; orders?: Maybe; parent?: Maybe; power?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/PhotovoltaicSystem.String-1' */ type IndustryEnergyPhotovoltaicSystemStringAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/PhotovoltaicSystem.String-1' */ type IndustryEnergyPhotovoltaicSystemStringChildrenArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/PhotovoltaicSystem.String-1' */ type IndustryEnergyPhotovoltaicSystemStringConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/PhotovoltaicSystem.String-1' */ type IndustryEnergyPhotovoltaicSystemStringEventsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/PhotovoltaicSystem.String-1' */ type IndustryEnergyPhotovoltaicSystemStringMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/PhotovoltaicSystem.String-1' */ type IndustryEnergyPhotovoltaicSystemStringMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/PhotovoltaicSystem.String-1' */ type IndustryEnergyPhotovoltaicSystemStringOrdersArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/PhotovoltaicSystem.String-1' */ type IndustryEnergyPhotovoltaicSystemStringParentArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/PhotovoltaicSystem.String-1' */ type IndustryEnergyPhotovoltaicSystemStringRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/PhotovoltaicSystem.String-1' */ type IndustryEnergyPhotovoltaicSystemStringRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Energy-3.1.0/PhotovoltaicSystem.String-1' */ type IndustryEnergyPhotovoltaicSystemStringTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `IndustryEnergyPhotovoltaicSystemString`. */ type IndustryEnergyPhotovoltaicSystemStringConnectionDto = { __typename?: 'IndustryEnergyPhotovoltaicSystemStringConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `IndustryEnergyPhotovoltaicSystemString`. */ type IndustryEnergyPhotovoltaicSystemStringEdgeDto = { __typename?: 'IndustryEnergyPhotovoltaicSystemStringEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type IndustryEnergyPhotovoltaicSystemStringInputDto = { children?: InputMaybe>>; configuredBy?: InputMaybe>>; description?: InputMaybe; events?: InputMaybe>>; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; numOfModules?: InputMaybe; orders?: InputMaybe>>; parent?: InputMaybe>>; power?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; }; type IndustryEnergyPhotovoltaicSystemStringInputUpdateDto = { /** Item to update */ item: IndustryEnergyPhotovoltaicSystemStringInputDto; rtId?: InputMaybe; }; type IndustryEnergyPhotovoltaicSystemStringMutationsDto = { __typename?: 'IndustryEnergyPhotovoltaicSystemStringMutations'; /** Creates new entities of type 'IndustryEnergyPhotovoltaicSystemString'. */ create?: Maybe>>; /** Updates existing entity of type 'IndustryEnergyPhotovoltaicSystemString'. */ update?: Maybe>>; }; type IndustryEnergyPhotovoltaicSystemStringMutationsCreateArgsDto = { entities: Array>; }; type IndustryEnergyPhotovoltaicSystemStringMutationsUpdateArgsDto = { entities: Array>; }; type IndustryEnergyPhotovoltaicSystemStringUpdateDto = { __typename?: 'IndustryEnergyPhotovoltaicSystemStringUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type IndustryEnergyPhotovoltaicSystemStringUpdateMessageDto = { __typename?: 'IndustryEnergyPhotovoltaicSystemStringUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; type IndustryEnergyPhotovoltaicSystemUpdateDto = { __typename?: 'IndustryEnergyPhotovoltaicSystemUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type IndustryEnergyPhotovoltaicSystemUpdateMessageDto = { __typename?: 'IndustryEnergyPhotovoltaicSystemUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit enum 'Industry.Energy/TariffType' */ declare enum IndustryEnergyTariffTypeDto { OffPeakDto = "OFF_PEAK", PeakDto = "PEAK", StandardDto = "STANDARD" } /** Runtime entities of construction kit type 'Industry.Fluid-2.0.0/HeatMeter-1' */ type IndustryFluidHeatMeterDto = { __typename?: 'IndustryFluidHeatMeter'; associations?: Maybe; children?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; description?: Maybe; events?: Maybe; flow?: Maybe; flowTemperature?: Maybe; importedEnergy: Scalars['Decimal']['output']; machineCapabilities?: Maybe; machineState: IndustryBasicMachineStateDto; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; namePlate?: Maybe; operatingHours?: Maybe; orders?: Maybe; parent?: Maybe; power?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; returnTemperature?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; runtimeVariables?: Maybe; standStillCounter?: Maybe; taggedBy?: Maybe; volume?: Maybe; }; /** Runtime entities of construction kit type 'Industry.Fluid-2.0.0/HeatMeter-1' */ type IndustryFluidHeatMeterAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Fluid-2.0.0/HeatMeter-1' */ type IndustryFluidHeatMeterChildrenArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Fluid-2.0.0/HeatMeter-1' */ type IndustryFluidHeatMeterConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Fluid-2.0.0/HeatMeter-1' */ type IndustryFluidHeatMeterEventsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Fluid-2.0.0/HeatMeter-1' */ type IndustryFluidHeatMeterMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Fluid-2.0.0/HeatMeter-1' */ type IndustryFluidHeatMeterMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Fluid-2.0.0/HeatMeter-1' */ type IndustryFluidHeatMeterOrdersArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Fluid-2.0.0/HeatMeter-1' */ type IndustryFluidHeatMeterParentArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Fluid-2.0.0/HeatMeter-1' */ type IndustryFluidHeatMeterRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Fluid-2.0.0/HeatMeter-1' */ type IndustryFluidHeatMeterRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Fluid-2.0.0/HeatMeter-1' */ type IndustryFluidHeatMeterRuntimeVariablesArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Fluid-2.0.0/HeatMeter-1' */ type IndustryFluidHeatMeterTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `IndustryFluidHeatMeter`. */ type IndustryFluidHeatMeterConnectionDto = { __typename?: 'IndustryFluidHeatMeterConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `IndustryFluidHeatMeter`. */ type IndustryFluidHeatMeterEdgeDto = { __typename?: 'IndustryFluidHeatMeterEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type IndustryFluidHeatMeterInputDto = { children?: InputMaybe>>; configuredBy?: InputMaybe>>; description?: InputMaybe; events?: InputMaybe>>; flow?: InputMaybe; flowTemperature?: InputMaybe; importedEnergy?: InputMaybe; machineCapabilities?: InputMaybe; machineState?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; namePlate?: InputMaybe; operatingHours?: InputMaybe; orders?: InputMaybe>>; parent?: InputMaybe>>; power?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; returnTemperature?: InputMaybe; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; runtimeVariables?: InputMaybe>>; standStillCounter?: InputMaybe; taggedBy?: InputMaybe>>; volume?: InputMaybe; }; type IndustryFluidHeatMeterInputUpdateDto = { /** Item to update */ item: IndustryFluidHeatMeterInputDto; rtId?: InputMaybe; }; type IndustryFluidHeatMeterMutationsDto = { __typename?: 'IndustryFluidHeatMeterMutations'; /** Creates new entities of type 'IndustryFluidHeatMeter'. */ create?: Maybe>>; /** Updates existing entity of type 'IndustryFluidHeatMeter'. */ update?: Maybe>>; }; type IndustryFluidHeatMeterMutationsCreateArgsDto = { entities: Array>; }; type IndustryFluidHeatMeterMutationsUpdateArgsDto = { entities: Array>; }; type IndustryFluidHeatMeterUpdateDto = { __typename?: 'IndustryFluidHeatMeterUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type IndustryFluidHeatMeterUpdateMessageDto = { __typename?: 'IndustryFluidHeatMeterUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'Industry.Fluid-2.0.0/WaterMeter-1' */ type IndustryFluidWaterMeterDto = { __typename?: 'IndustryFluidWaterMeter'; associations?: Maybe; avgWaterTemperature?: Maybe; children?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; description?: Maybe; events?: Maybe; machineCapabilities?: Maybe; machineState: IndustryBasicMachineStateDto; mapsFrom?: Maybe; mapsTo?: Maybe; maxWaterTemperature?: Maybe; minWaterTemperature?: Maybe; name: Scalars['String']['output']; namePlate?: Maybe; netVolume: Scalars['Decimal']['output']; operatingHours?: Maybe; orders?: Maybe; parent?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; reverseVolume?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; runtimeVariables?: Maybe; standStillCounter?: Maybe; taggedBy?: Maybe; volume?: Maybe; }; /** Runtime entities of construction kit type 'Industry.Fluid-2.0.0/WaterMeter-1' */ type IndustryFluidWaterMeterAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Fluid-2.0.0/WaterMeter-1' */ type IndustryFluidWaterMeterChildrenArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Fluid-2.0.0/WaterMeter-1' */ type IndustryFluidWaterMeterConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Fluid-2.0.0/WaterMeter-1' */ type IndustryFluidWaterMeterEventsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Fluid-2.0.0/WaterMeter-1' */ type IndustryFluidWaterMeterMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Fluid-2.0.0/WaterMeter-1' */ type IndustryFluidWaterMeterMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Fluid-2.0.0/WaterMeter-1' */ type IndustryFluidWaterMeterOrdersArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Fluid-2.0.0/WaterMeter-1' */ type IndustryFluidWaterMeterParentArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Fluid-2.0.0/WaterMeter-1' */ type IndustryFluidWaterMeterRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Fluid-2.0.0/WaterMeter-1' */ type IndustryFluidWaterMeterRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Fluid-2.0.0/WaterMeter-1' */ type IndustryFluidWaterMeterRuntimeVariablesArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Fluid-2.0.0/WaterMeter-1' */ type IndustryFluidWaterMeterTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `IndustryFluidWaterMeter`. */ type IndustryFluidWaterMeterConnectionDto = { __typename?: 'IndustryFluidWaterMeterConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `IndustryFluidWaterMeter`. */ type IndustryFluidWaterMeterEdgeDto = { __typename?: 'IndustryFluidWaterMeterEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type IndustryFluidWaterMeterInputDto = { avgWaterTemperature?: InputMaybe; children?: InputMaybe>>; configuredBy?: InputMaybe>>; description?: InputMaybe; events?: InputMaybe>>; machineCapabilities?: InputMaybe; machineState?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; maxWaterTemperature?: InputMaybe; minWaterTemperature?: InputMaybe; name?: InputMaybe; namePlate?: InputMaybe; netVolume?: InputMaybe; operatingHours?: InputMaybe; orders?: InputMaybe>>; parent?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; reverseVolume?: InputMaybe; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; runtimeVariables?: InputMaybe>>; standStillCounter?: InputMaybe; taggedBy?: InputMaybe>>; volume?: InputMaybe; }; type IndustryFluidWaterMeterInputUpdateDto = { /** Item to update */ item: IndustryFluidWaterMeterInputDto; rtId?: InputMaybe; }; type IndustryFluidWaterMeterMutationsDto = { __typename?: 'IndustryFluidWaterMeterMutations'; /** Creates new entities of type 'IndustryFluidWaterMeter'. */ create?: Maybe>>; /** Updates existing entity of type 'IndustryFluidWaterMeter'. */ update?: Maybe>>; }; type IndustryFluidWaterMeterMutationsCreateArgsDto = { entities: Array>; }; type IndustryFluidWaterMeterMutationsUpdateArgsDto = { entities: Array>; }; type IndustryFluidWaterMeterUpdateDto = { __typename?: 'IndustryFluidWaterMeterUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type IndustryFluidWaterMeterUpdateMessageDto = { __typename?: 'IndustryFluidWaterMeterUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/Account-1' */ type IndustryMaintenanceAccountDto = SystemEntityInterfaceDto & { __typename?: 'IndustryMaintenanceAccount'; accountNumber: Scalars['String']['output']; associations?: Maybe; children?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; costCategory: IndustryMaintenanceCostCategoryDto; mapsFrom?: Maybe; mapsTo?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/Account-1' */ type IndustryMaintenanceAccountAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/Account-1' */ type IndustryMaintenanceAccountChildrenArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/Account-1' */ type IndustryMaintenanceAccountConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/Account-1' */ type IndustryMaintenanceAccountMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/Account-1' */ type IndustryMaintenanceAccountMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/Account-1' */ type IndustryMaintenanceAccountRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/Account-1' */ type IndustryMaintenanceAccountRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/Account-1' */ type IndustryMaintenanceAccountTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `IndustryMaintenanceAccount`. */ type IndustryMaintenanceAccountConnectionDto = { __typename?: 'IndustryMaintenanceAccountConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `IndustryMaintenanceAccount`. */ type IndustryMaintenanceAccountEdgeDto = { __typename?: 'IndustryMaintenanceAccountEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type IndustryMaintenanceAccountInputDto = { accountNumber?: InputMaybe; children?: InputMaybe>>; configuredBy?: InputMaybe>>; costCategory?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; }; type IndustryMaintenanceAccountInputUpdateDto = { /** Item to update */ item: IndustryMaintenanceAccountInputDto; rtId?: InputMaybe; }; type IndustryMaintenanceAccountMutationsDto = { __typename?: 'IndustryMaintenanceAccountMutations'; /** Creates new entities of type 'IndustryMaintenanceAccount'. */ create?: Maybe>>; /** Updates existing entity of type 'IndustryMaintenanceAccount'. */ update?: Maybe>>; }; type IndustryMaintenanceAccountMutationsCreateArgsDto = { entities: Array>; }; type IndustryMaintenanceAccountMutationsUpdateArgsDto = { entities: Array>; }; type IndustryMaintenanceAccountUpdateDto = { __typename?: 'IndustryMaintenanceAccountUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type IndustryMaintenanceAccountUpdateMessageDto = { __typename?: 'IndustryMaintenanceAccountUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Union of types derived from Industry.Maintenance/Account for Parent association */ type IndustryMaintenanceAccount_ParentUnionDto = IndustryMaintenanceAccountDto; /** A connection to `IndustryMaintenanceAccount_ParentUnion`. */ type IndustryMaintenanceAccount_ParentUnionConnectionDto = { __typename?: 'IndustryMaintenanceAccount_ParentUnionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `IndustryMaintenanceAccount_ParentUnion`. */ type IndustryMaintenanceAccount_ParentUnionEdgeDto = { __typename?: 'IndustryMaintenanceAccount_ParentUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Runtime entities of construction kit enum 'Industry.Maintenance/AggregationType' */ declare enum IndustryMaintenanceAggregationTypeDto { FiscalYearDto = "FISCAL_YEAR", MonthDto = "MONTH", WeekDto = "WEEK" } /** Runtime entities of construction kit enum 'Industry.Maintenance/CostCategory' */ declare enum IndustryMaintenanceCostCategoryDto { ExternalDto = "EXTERNAL", InternalDto = "INTERNAL", MaterialDto = "MATERIAL" } /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/CostCenter-1' */ type IndustryMaintenanceCostCenterDto = { __typename?: 'IndustryMaintenanceCostCenter'; associations?: Maybe; children?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; description?: Maybe; events?: Maybe; journalEntries?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; orders?: Maybe; parent?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/CostCenter-1' */ type IndustryMaintenanceCostCenterAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/CostCenter-1' */ type IndustryMaintenanceCostCenterChildrenArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/CostCenter-1' */ type IndustryMaintenanceCostCenterConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/CostCenter-1' */ type IndustryMaintenanceCostCenterEventsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/CostCenter-1' */ type IndustryMaintenanceCostCenterJournalEntriesArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/CostCenter-1' */ type IndustryMaintenanceCostCenterMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/CostCenter-1' */ type IndustryMaintenanceCostCenterMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/CostCenter-1' */ type IndustryMaintenanceCostCenterOrdersArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/CostCenter-1' */ type IndustryMaintenanceCostCenterParentArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/CostCenter-1' */ type IndustryMaintenanceCostCenterRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/CostCenter-1' */ type IndustryMaintenanceCostCenterRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/CostCenter-1' */ type IndustryMaintenanceCostCenterTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `IndustryMaintenanceCostCenter`. */ type IndustryMaintenanceCostCenterConnectionDto = { __typename?: 'IndustryMaintenanceCostCenterConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `IndustryMaintenanceCostCenter`. */ type IndustryMaintenanceCostCenterEdgeDto = { __typename?: 'IndustryMaintenanceCostCenterEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type IndustryMaintenanceCostCenterInputDto = { children?: InputMaybe>>; configuredBy?: InputMaybe>>; description?: InputMaybe; events?: InputMaybe>>; journalEntries?: InputMaybe>>; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; orders?: InputMaybe>>; parent?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; }; type IndustryMaintenanceCostCenterInputUpdateDto = { /** Item to update */ item: IndustryMaintenanceCostCenterInputDto; rtId?: InputMaybe; }; type IndustryMaintenanceCostCenterMutationsDto = { __typename?: 'IndustryMaintenanceCostCenterMutations'; /** Creates new entities of type 'IndustryMaintenanceCostCenter'. */ create?: Maybe>>; /** Updates existing entity of type 'IndustryMaintenanceCostCenter'. */ update?: Maybe>>; }; type IndustryMaintenanceCostCenterMutationsCreateArgsDto = { entities: Array>; }; type IndustryMaintenanceCostCenterMutationsUpdateArgsDto = { entities: Array>; }; type IndustryMaintenanceCostCenterUpdateDto = { __typename?: 'IndustryMaintenanceCostCenterUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type IndustryMaintenanceCostCenterUpdateMessageDto = { __typename?: 'IndustryMaintenanceCostCenterUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Union of types derived from Industry.Maintenance/CostCenter for CostCenter association */ type IndustryMaintenanceCostCenter_CostCenterUnionDto = IndustryMaintenanceCostCenterDto; /** A connection to `IndustryMaintenanceCostCenter_CostCenterUnion`. */ type IndustryMaintenanceCostCenter_CostCenterUnionConnectionDto = { __typename?: 'IndustryMaintenanceCostCenter_CostCenterUnionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `IndustryMaintenanceCostCenter_CostCenterUnion`. */ type IndustryMaintenanceCostCenter_CostCenterUnionEdgeDto = { __typename?: 'IndustryMaintenanceCostCenter_CostCenterUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/Employee-1' */ type IndustryMaintenanceEmployeeDto = { __typename?: 'IndustryMaintenanceEmployee'; associations?: Maybe; children?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; description?: Maybe; events?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; orderFeedbacks?: Maybe; orders?: Maybe; parent?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; staffNumber: Scalars['Int']['output']; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/Employee-1' */ type IndustryMaintenanceEmployeeAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/Employee-1' */ type IndustryMaintenanceEmployeeChildrenArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/Employee-1' */ type IndustryMaintenanceEmployeeConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/Employee-1' */ type IndustryMaintenanceEmployeeEventsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/Employee-1' */ type IndustryMaintenanceEmployeeMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/Employee-1' */ type IndustryMaintenanceEmployeeMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/Employee-1' */ type IndustryMaintenanceEmployeeOrderFeedbacksArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/Employee-1' */ type IndustryMaintenanceEmployeeOrdersArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/Employee-1' */ type IndustryMaintenanceEmployeeParentArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/Employee-1' */ type IndustryMaintenanceEmployeeRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/Employee-1' */ type IndustryMaintenanceEmployeeRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/Employee-1' */ type IndustryMaintenanceEmployeeTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `IndustryMaintenanceEmployee`. */ type IndustryMaintenanceEmployeeConnectionDto = { __typename?: 'IndustryMaintenanceEmployeeConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `IndustryMaintenanceEmployee`. */ type IndustryMaintenanceEmployeeEdgeDto = { __typename?: 'IndustryMaintenanceEmployeeEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type IndustryMaintenanceEmployeeInputDto = { children?: InputMaybe>>; configuredBy?: InputMaybe>>; description?: InputMaybe; events?: InputMaybe>>; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; orderFeedbacks?: InputMaybe>>; orders?: InputMaybe>>; parent?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; staffNumber?: InputMaybe; taggedBy?: InputMaybe>>; }; type IndustryMaintenanceEmployeeInputUpdateDto = { /** Item to update */ item: IndustryMaintenanceEmployeeInputDto; rtId?: InputMaybe; }; type IndustryMaintenanceEmployeeMutationsDto = { __typename?: 'IndustryMaintenanceEmployeeMutations'; /** Creates new entities of type 'IndustryMaintenanceEmployee'. */ create?: Maybe>>; /** Updates existing entity of type 'IndustryMaintenanceEmployee'. */ update?: Maybe>>; }; type IndustryMaintenanceEmployeeMutationsCreateArgsDto = { entities: Array>; }; type IndustryMaintenanceEmployeeMutationsUpdateArgsDto = { entities: Array>; }; type IndustryMaintenanceEmployeeUpdateDto = { __typename?: 'IndustryMaintenanceEmployeeUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type IndustryMaintenanceEmployeeUpdateMessageDto = { __typename?: 'IndustryMaintenanceEmployeeUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Union of types derived from Industry.Maintenance/Employee for Employee association */ type IndustryMaintenanceEmployee_EmployeeUnionDto = IndustryMaintenanceEmployeeDto; /** A connection to `IndustryMaintenanceEmployee_EmployeeUnion`. */ type IndustryMaintenanceEmployee_EmployeeUnionConnectionDto = { __typename?: 'IndustryMaintenanceEmployee_EmployeeUnionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `IndustryMaintenanceEmployee_EmployeeUnion`. */ type IndustryMaintenanceEmployee_EmployeeUnionEdgeDto = { __typename?: 'IndustryMaintenanceEmployee_EmployeeUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/EnergyBalance-1' */ type IndustryMaintenanceEnergyBalanceDto = SystemEntityInterfaceDto & { __typename?: 'IndustryMaintenanceEnergyBalance'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; description?: Maybe; group: IndustryMaintenanceEnergyBalanceGroupDto; machine?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; product: IndustryMaintenanceEnergyBalanceProductDto; quantity: Scalars['Decimal']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; time: Scalars['DateTime']['output']; unit: IndustryMaintenanceEnergyBalanceUnitDto; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/EnergyBalance-1' */ type IndustryMaintenanceEnergyBalanceAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/EnergyBalance-1' */ type IndustryMaintenanceEnergyBalanceConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/EnergyBalance-1' */ type IndustryMaintenanceEnergyBalanceMachineArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/EnergyBalance-1' */ type IndustryMaintenanceEnergyBalanceMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/EnergyBalance-1' */ type IndustryMaintenanceEnergyBalanceMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/EnergyBalance-1' */ type IndustryMaintenanceEnergyBalanceRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/EnergyBalance-1' */ type IndustryMaintenanceEnergyBalanceRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/EnergyBalance-1' */ type IndustryMaintenanceEnergyBalanceTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `IndustryMaintenanceEnergyBalance`. */ type IndustryMaintenanceEnergyBalanceConnectionDto = { __typename?: 'IndustryMaintenanceEnergyBalanceConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `IndustryMaintenanceEnergyBalance`. */ type IndustryMaintenanceEnergyBalanceEdgeDto = { __typename?: 'IndustryMaintenanceEnergyBalanceEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Runtime entities of construction kit enum 'Industry.Maintenance/EnergyBalanceGroup' */ declare enum IndustryMaintenanceEnergyBalanceGroupDto { UndefinedDto = "UNDEFINED" } type IndustryMaintenanceEnergyBalanceInputDto = { configuredBy?: InputMaybe>>; description?: InputMaybe; group?: InputMaybe; machine?: InputMaybe>>; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; product?: InputMaybe; quantity?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; time?: InputMaybe; unit?: InputMaybe; }; type IndustryMaintenanceEnergyBalanceInputUpdateDto = { /** Item to update */ item: IndustryMaintenanceEnergyBalanceInputDto; rtId?: InputMaybe; }; type IndustryMaintenanceEnergyBalanceMutationsDto = { __typename?: 'IndustryMaintenanceEnergyBalanceMutations'; /** Creates new entities of type 'IndustryMaintenanceEnergyBalance'. */ create?: Maybe>>; /** Updates existing entity of type 'IndustryMaintenanceEnergyBalance'. */ update?: Maybe>>; }; type IndustryMaintenanceEnergyBalanceMutationsCreateArgsDto = { entities: Array>; }; type IndustryMaintenanceEnergyBalanceMutationsUpdateArgsDto = { entities: Array>; }; /** Runtime entities of construction kit enum 'Industry.Maintenance/EnergyBalanceProduct' */ declare enum IndustryMaintenanceEnergyBalanceProductDto { UndefinedDto = "UNDEFINED" } /** Runtime entities of construction kit enum 'Industry.Maintenance/EnergyBalanceUnit' */ declare enum IndustryMaintenanceEnergyBalanceUnitDto { UndefinedDto = "UNDEFINED" } type IndustryMaintenanceEnergyBalanceUpdateDto = { __typename?: 'IndustryMaintenanceEnergyBalanceUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type IndustryMaintenanceEnergyBalanceUpdateMessageDto = { __typename?: 'IndustryMaintenanceEnergyBalanceUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Union of types derived from Industry.Maintenance/EnergyBalance for Orders association */ type IndustryMaintenanceEnergyBalance_OrdersUnionDto = IndustryMaintenanceEnergyBalanceDto; /** A connection to `IndustryMaintenanceEnergyBalance_OrdersUnion`. */ type IndustryMaintenanceEnergyBalance_OrdersUnionConnectionDto = { __typename?: 'IndustryMaintenanceEnergyBalance_OrdersUnionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `IndustryMaintenanceEnergyBalance_OrdersUnion`. */ type IndustryMaintenanceEnergyBalance_OrdersUnionEdgeDto = { __typename?: 'IndustryMaintenanceEnergyBalance_OrdersUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/JournalEntry-1' */ type IndustryMaintenanceJournalEntryDto = SystemEntityInterfaceDto & { __typename?: 'IndustryMaintenanceJournalEntry'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; costCenter?: Maybe; journalValue: Scalars['Decimal']['output']; mapsFrom?: Maybe; mapsTo?: Maybe; parent?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; time: Scalars['DateTime']['output']; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/JournalEntry-1' */ type IndustryMaintenanceJournalEntryAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/JournalEntry-1' */ type IndustryMaintenanceJournalEntryConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/JournalEntry-1' */ type IndustryMaintenanceJournalEntryCostCenterArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/JournalEntry-1' */ type IndustryMaintenanceJournalEntryMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/JournalEntry-1' */ type IndustryMaintenanceJournalEntryMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/JournalEntry-1' */ type IndustryMaintenanceJournalEntryParentArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/JournalEntry-1' */ type IndustryMaintenanceJournalEntryRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/JournalEntry-1' */ type IndustryMaintenanceJournalEntryRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/JournalEntry-1' */ type IndustryMaintenanceJournalEntryTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `IndustryMaintenanceJournalEntry`. */ type IndustryMaintenanceJournalEntryConnectionDto = { __typename?: 'IndustryMaintenanceJournalEntryConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `IndustryMaintenanceJournalEntry`. */ type IndustryMaintenanceJournalEntryEdgeDto = { __typename?: 'IndustryMaintenanceJournalEntryEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type IndustryMaintenanceJournalEntryInputDto = { configuredBy?: InputMaybe>>; costCenter?: InputMaybe>>; journalValue?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; parent?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; time?: InputMaybe; }; type IndustryMaintenanceJournalEntryInputUpdateDto = { /** Item to update */ item: IndustryMaintenanceJournalEntryInputDto; rtId?: InputMaybe; }; type IndustryMaintenanceJournalEntryMutationsDto = { __typename?: 'IndustryMaintenanceJournalEntryMutations'; /** Creates new entities of type 'IndustryMaintenanceJournalEntry'. */ create?: Maybe>>; /** Updates existing entity of type 'IndustryMaintenanceJournalEntry'. */ update?: Maybe>>; }; type IndustryMaintenanceJournalEntryMutationsCreateArgsDto = { entities: Array>; }; type IndustryMaintenanceJournalEntryMutationsUpdateArgsDto = { entities: Array>; }; type IndustryMaintenanceJournalEntryUpdateDto = { __typename?: 'IndustryMaintenanceJournalEntryUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type IndustryMaintenanceJournalEntryUpdateMessageDto = { __typename?: 'IndustryMaintenanceJournalEntryUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Union of types derived from Industry.Maintenance/JournalEntry for Children association */ type IndustryMaintenanceJournalEntry_ChildrenUnionDto = IndustryMaintenanceJournalEntryDto; /** A connection to `IndustryMaintenanceJournalEntry_ChildrenUnion`. */ type IndustryMaintenanceJournalEntry_ChildrenUnionConnectionDto = { __typename?: 'IndustryMaintenanceJournalEntry_ChildrenUnionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `IndustryMaintenanceJournalEntry_ChildrenUnion`. */ type IndustryMaintenanceJournalEntry_ChildrenUnionEdgeDto = { __typename?: 'IndustryMaintenanceJournalEntry_ChildrenUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Union of types derived from Industry.Maintenance/JournalEntry for JournalEntries association */ type IndustryMaintenanceJournalEntry_JournalEntriesUnionDto = IndustryMaintenanceJournalEntryDto; /** A connection to `IndustryMaintenanceJournalEntry_JournalEntriesUnion`. */ type IndustryMaintenanceJournalEntry_JournalEntriesUnionConnectionDto = { __typename?: 'IndustryMaintenanceJournalEntry_JournalEntriesUnionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `IndustryMaintenanceJournalEntry_JournalEntriesUnion`. */ type IndustryMaintenanceJournalEntry_JournalEntriesUnionEdgeDto = { __typename?: 'IndustryMaintenanceJournalEntry_JournalEntriesUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/Order-1' */ type IndustryMaintenanceOrderDto = SystemEntityInterfaceDto & { __typename?: 'IndustryMaintenanceOrder'; actualCosts?: Maybe; associations?: Maybe; children?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; costs?: Maybe; createdAt: Scalars['DateTime']['output']; event?: Maybe; machine?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; orderNumber: Scalars['String']['output']; orderPriority: IndustryMaintenanceOrderPriorityDto; orderState?: Maybe; orderText?: Maybe; orderType: IndustryMaintenanceOrderTypeDto; plannedCosts?: Maybe; projectNumber?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; serviceType: IndustryMaintenanceServiceTypeDto; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/Order-1' */ type IndustryMaintenanceOrderAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/Order-1' */ type IndustryMaintenanceOrderChildrenArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/Order-1' */ type IndustryMaintenanceOrderConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/Order-1' */ type IndustryMaintenanceOrderCostsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/Order-1' */ type IndustryMaintenanceOrderEventArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/Order-1' */ type IndustryMaintenanceOrderMachineArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/Order-1' */ type IndustryMaintenanceOrderMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/Order-1' */ type IndustryMaintenanceOrderMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/Order-1' */ type IndustryMaintenanceOrderRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/Order-1' */ type IndustryMaintenanceOrderRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/Order-1' */ type IndustryMaintenanceOrderTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `IndustryMaintenanceOrder`. */ type IndustryMaintenanceOrderConnectionDto = { __typename?: 'IndustryMaintenanceOrderConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/OrderCosts-1' */ type IndustryMaintenanceOrderCostsDto = SystemEntityInterfaceDto & { __typename?: 'IndustryMaintenanceOrderCosts'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; externalCosts: Scalars['Decimal']['output']; internalCosts: Scalars['Decimal']['output']; mapsFrom?: Maybe; mapsTo?: Maybe; materialCosts: Scalars['Decimal']['output']; order?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; totalCosts: Scalars['Decimal']['output']; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/OrderCosts-1' */ type IndustryMaintenanceOrderCostsAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/OrderCosts-1' */ type IndustryMaintenanceOrderCostsConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/OrderCosts-1' */ type IndustryMaintenanceOrderCostsMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/OrderCosts-1' */ type IndustryMaintenanceOrderCostsMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/OrderCosts-1' */ type IndustryMaintenanceOrderCostsOrderArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/OrderCosts-1' */ type IndustryMaintenanceOrderCostsRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/OrderCosts-1' */ type IndustryMaintenanceOrderCostsRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/OrderCosts-1' */ type IndustryMaintenanceOrderCostsTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `IndustryMaintenanceOrderCosts`. */ type IndustryMaintenanceOrderCostsConnectionDto = { __typename?: 'IndustryMaintenanceOrderCostsConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `IndustryMaintenanceOrderCosts`. */ type IndustryMaintenanceOrderCostsEdgeDto = { __typename?: 'IndustryMaintenanceOrderCostsEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type IndustryMaintenanceOrderCostsInputDto = { configuredBy?: InputMaybe>>; externalCosts?: InputMaybe; internalCosts?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; materialCosts?: InputMaybe; order?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; totalCosts?: InputMaybe; }; type IndustryMaintenanceOrderCostsInputUpdateDto = { /** Item to update */ item: IndustryMaintenanceOrderCostsInputDto; rtId?: InputMaybe; }; type IndustryMaintenanceOrderCostsMutationsDto = { __typename?: 'IndustryMaintenanceOrderCostsMutations'; /** Creates new entities of type 'IndustryMaintenanceOrderCosts'. */ create?: Maybe>>; /** Updates existing entity of type 'IndustryMaintenanceOrderCosts'. */ update?: Maybe>>; }; type IndustryMaintenanceOrderCostsMutationsCreateArgsDto = { entities: Array>; }; type IndustryMaintenanceOrderCostsMutationsUpdateArgsDto = { entities: Array>; }; type IndustryMaintenanceOrderCostsUpdateDto = { __typename?: 'IndustryMaintenanceOrderCostsUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type IndustryMaintenanceOrderCostsUpdateMessageDto = { __typename?: 'IndustryMaintenanceOrderCostsUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Union of types derived from Industry.Maintenance/OrderCosts for Costs association */ type IndustryMaintenanceOrderCosts_CostsUnionDto = IndustryMaintenanceOrderCostsDto; /** A connection to `IndustryMaintenanceOrderCosts_CostsUnion`. */ type IndustryMaintenanceOrderCosts_CostsUnionConnectionDto = { __typename?: 'IndustryMaintenanceOrderCosts_CostsUnionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `IndustryMaintenanceOrderCosts_CostsUnion`. */ type IndustryMaintenanceOrderCosts_CostsUnionEdgeDto = { __typename?: 'IndustryMaintenanceOrderCosts_CostsUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** An edge in a connection from an object to another object of type `IndustryMaintenanceOrder`. */ type IndustryMaintenanceOrderEdgeDto = { __typename?: 'IndustryMaintenanceOrderEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/OrderFeedback-1' */ type IndustryMaintenanceOrderFeedbackDto = SystemEntityInterfaceDto & { __typename?: 'IndustryMaintenanceOrderFeedback'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; employee?: Maybe; endDateTime?: Maybe; feedbackNumber: Scalars['String']['output']; mapsFrom?: Maybe; mapsTo?: Maybe; parent?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; startDateTime: Scalars['DateTime']['output']; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/OrderFeedback-1' */ type IndustryMaintenanceOrderFeedbackAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/OrderFeedback-1' */ type IndustryMaintenanceOrderFeedbackConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/OrderFeedback-1' */ type IndustryMaintenanceOrderFeedbackEmployeeArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/OrderFeedback-1' */ type IndustryMaintenanceOrderFeedbackMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/OrderFeedback-1' */ type IndustryMaintenanceOrderFeedbackMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/OrderFeedback-1' */ type IndustryMaintenanceOrderFeedbackParentArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/OrderFeedback-1' */ type IndustryMaintenanceOrderFeedbackRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/OrderFeedback-1' */ type IndustryMaintenanceOrderFeedbackRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/OrderFeedback-1' */ type IndustryMaintenanceOrderFeedbackTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `IndustryMaintenanceOrderFeedback`. */ type IndustryMaintenanceOrderFeedbackConnectionDto = { __typename?: 'IndustryMaintenanceOrderFeedbackConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `IndustryMaintenanceOrderFeedback`. */ type IndustryMaintenanceOrderFeedbackEdgeDto = { __typename?: 'IndustryMaintenanceOrderFeedbackEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type IndustryMaintenanceOrderFeedbackInputDto = { configuredBy?: InputMaybe>>; employee?: InputMaybe>>; endDateTime?: InputMaybe; feedbackNumber?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; parent?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; startDateTime?: InputMaybe; taggedBy?: InputMaybe>>; }; type IndustryMaintenanceOrderFeedbackInputUpdateDto = { /** Item to update */ item: IndustryMaintenanceOrderFeedbackInputDto; rtId?: InputMaybe; }; type IndustryMaintenanceOrderFeedbackMutationsDto = { __typename?: 'IndustryMaintenanceOrderFeedbackMutations'; /** Creates new entities of type 'IndustryMaintenanceOrderFeedback'. */ create?: Maybe>>; /** Updates existing entity of type 'IndustryMaintenanceOrderFeedback'. */ update?: Maybe>>; }; type IndustryMaintenanceOrderFeedbackMutationsCreateArgsDto = { entities: Array>; }; type IndustryMaintenanceOrderFeedbackMutationsUpdateArgsDto = { entities: Array>; }; type IndustryMaintenanceOrderFeedbackUpdateDto = { __typename?: 'IndustryMaintenanceOrderFeedbackUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type IndustryMaintenanceOrderFeedbackUpdateMessageDto = { __typename?: 'IndustryMaintenanceOrderFeedbackUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Union of types derived from Industry.Maintenance/OrderFeedback for Children association */ type IndustryMaintenanceOrderFeedback_ChildrenUnionDto = IndustryMaintenanceOrderFeedbackDto; /** A connection to `IndustryMaintenanceOrderFeedback_ChildrenUnion`. */ type IndustryMaintenanceOrderFeedback_ChildrenUnionConnectionDto = { __typename?: 'IndustryMaintenanceOrderFeedback_ChildrenUnionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `IndustryMaintenanceOrderFeedback_ChildrenUnion`. */ type IndustryMaintenanceOrderFeedback_ChildrenUnionEdgeDto = { __typename?: 'IndustryMaintenanceOrderFeedback_ChildrenUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Union of types derived from Industry.Maintenance/OrderFeedback for OrderFeedbacks association */ type IndustryMaintenanceOrderFeedback_OrderFeedbacksUnionDto = IndustryMaintenanceOrderFeedbackDto; /** A connection to `IndustryMaintenanceOrderFeedback_OrderFeedbacksUnion`. */ type IndustryMaintenanceOrderFeedback_OrderFeedbacksUnionConnectionDto = { __typename?: 'IndustryMaintenanceOrderFeedback_OrderFeedbacksUnionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `IndustryMaintenanceOrderFeedback_OrderFeedbacksUnion`. */ type IndustryMaintenanceOrderFeedback_OrderFeedbacksUnionEdgeDto = { __typename?: 'IndustryMaintenanceOrderFeedback_OrderFeedbacksUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type IndustryMaintenanceOrderInputDto = { actualCosts?: InputMaybe; children?: InputMaybe>>; configuredBy?: InputMaybe>>; costs?: InputMaybe>>; createdAt?: InputMaybe; event?: InputMaybe>>; machine?: InputMaybe>>; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; orderNumber?: InputMaybe; orderPriority?: InputMaybe; orderState?: InputMaybe; orderText?: InputMaybe; orderType?: InputMaybe; plannedCosts?: InputMaybe; projectNumber?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; serviceType?: InputMaybe; taggedBy?: InputMaybe>>; }; type IndustryMaintenanceOrderInputUpdateDto = { /** Item to update */ item: IndustryMaintenanceOrderInputDto; rtId?: InputMaybe; }; type IndustryMaintenanceOrderMutationsDto = { __typename?: 'IndustryMaintenanceOrderMutations'; /** Creates new entities of type 'IndustryMaintenanceOrder'. */ create?: Maybe>>; /** Updates existing entity of type 'IndustryMaintenanceOrder'. */ update?: Maybe>>; }; type IndustryMaintenanceOrderMutationsCreateArgsDto = { entities: Array>; }; type IndustryMaintenanceOrderMutationsUpdateArgsDto = { entities: Array>; }; /** Runtime entities of construction kit enum 'Industry.Maintenance/OrderPriority' */ declare enum IndustryMaintenanceOrderPriorityDto { UndefinedDto = "UNDEFINED" } /** Runtime entities of construction kit enum 'Industry.Maintenance/OrderState' */ declare enum IndustryMaintenanceOrderStateDto { UndefinedDto = "UNDEFINED" } /** Runtime entities of construction kit enum 'Industry.Maintenance/OrderType' */ declare enum IndustryMaintenanceOrderTypeDto { UndefinedDto = "UNDEFINED" } type IndustryMaintenanceOrderUpdateDto = { __typename?: 'IndustryMaintenanceOrderUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type IndustryMaintenanceOrderUpdateMessageDto = { __typename?: 'IndustryMaintenanceOrderUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Union of types derived from Industry.Maintenance/Order for Order association */ type IndustryMaintenanceOrder_OrderUnionDto = IndustryMaintenanceOrderDto; /** A connection to `IndustryMaintenanceOrder_OrderUnion`. */ type IndustryMaintenanceOrder_OrderUnionConnectionDto = { __typename?: 'IndustryMaintenanceOrder_OrderUnionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `IndustryMaintenanceOrder_OrderUnion`. */ type IndustryMaintenanceOrder_OrderUnionEdgeDto = { __typename?: 'IndustryMaintenanceOrder_OrderUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Union of types derived from Industry.Maintenance/Order for Orders association */ type IndustryMaintenanceOrder_OrdersUnionDto = IndustryMaintenanceEnergyBalanceDto | IndustryMaintenanceOrderDto; /** A connection to `IndustryMaintenanceOrder_OrdersUnion`. */ type IndustryMaintenanceOrder_OrdersUnionConnectionDto = { __typename?: 'IndustryMaintenanceOrder_OrdersUnionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `IndustryMaintenanceOrder_OrdersUnion`. */ type IndustryMaintenanceOrder_OrdersUnionEdgeDto = { __typename?: 'IndustryMaintenanceOrder_OrdersUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Union of types derived from Industry.Maintenance/Order for Parent association */ type IndustryMaintenanceOrder_ParentUnionDto = IndustryMaintenanceOrderDto; /** A connection to `IndustryMaintenanceOrder_ParentUnion`. */ type IndustryMaintenanceOrder_ParentUnionConnectionDto = { __typename?: 'IndustryMaintenanceOrder_ParentUnionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `IndustryMaintenanceOrder_ParentUnion`. */ type IndustryMaintenanceOrder_ParentUnionEdgeDto = { __typename?: 'IndustryMaintenanceOrder_ParentUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Runtime entities of construction kit enum 'Industry.Maintenance/ServiceType' */ declare enum IndustryMaintenanceServiceTypeDto { UndefinedDto = "UNDEFINED" } /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/Workplace-1' */ type IndustryMaintenanceWorkplaceDto = { __typename?: 'IndustryMaintenanceWorkplace'; associations?: Maybe; children?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; description?: Maybe; events?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; orders?: Maybe; parent?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/Workplace-1' */ type IndustryMaintenanceWorkplaceAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/Workplace-1' */ type IndustryMaintenanceWorkplaceChildrenArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/Workplace-1' */ type IndustryMaintenanceWorkplaceConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/Workplace-1' */ type IndustryMaintenanceWorkplaceEventsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/Workplace-1' */ type IndustryMaintenanceWorkplaceMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/Workplace-1' */ type IndustryMaintenanceWorkplaceMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/Workplace-1' */ type IndustryMaintenanceWorkplaceOrdersArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/Workplace-1' */ type IndustryMaintenanceWorkplaceParentArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/Workplace-1' */ type IndustryMaintenanceWorkplaceRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/Workplace-1' */ type IndustryMaintenanceWorkplaceRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Industry.Maintenance-2.0.0/Workplace-1' */ type IndustryMaintenanceWorkplaceTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `IndustryMaintenanceWorkplace`. */ type IndustryMaintenanceWorkplaceConnectionDto = { __typename?: 'IndustryMaintenanceWorkplaceConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `IndustryMaintenanceWorkplace`. */ type IndustryMaintenanceWorkplaceEdgeDto = { __typename?: 'IndustryMaintenanceWorkplaceEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type IndustryMaintenanceWorkplaceInputDto = { children?: InputMaybe>>; configuredBy?: InputMaybe>>; description?: InputMaybe; events?: InputMaybe>>; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; orders?: InputMaybe>>; parent?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; }; type IndustryMaintenanceWorkplaceInputUpdateDto = { /** Item to update */ item: IndustryMaintenanceWorkplaceInputDto; rtId?: InputMaybe; }; type IndustryMaintenanceWorkplaceMutationsDto = { __typename?: 'IndustryMaintenanceWorkplaceMutations'; /** Creates new entities of type 'IndustryMaintenanceWorkplace'. */ create?: Maybe>>; /** Updates existing entity of type 'IndustryMaintenanceWorkplace'. */ update?: Maybe>>; }; type IndustryMaintenanceWorkplaceMutationsCreateArgsDto = { entities: Array>; }; type IndustryMaintenanceWorkplaceMutationsUpdateArgsDto = { entities: Array>; }; type IndustryMaintenanceWorkplaceUpdateDto = { __typename?: 'IndustryMaintenanceWorkplaceUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type IndustryMaintenanceWorkplaceUpdateMessageDto = { __typename?: 'IndustryMaintenanceWorkplaceUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Meta information for large binaries */ type LargeBinaryInfoDto = { __typename?: 'LargeBinaryInfo'; /** Returns the id of binary */ binaryId: Scalars['OctoObjectId']['output']; /** Returns the content type of the binary */ contentType: Scalars['String']['output']; /** Returns the download link of the binary */ downloadUri: Scalars['Uri']['output']; /** Returns the filename of the binary */ filename: Scalars['String']['output']; /** Returns the size of the binary */ size: Scalars['BigInt']['output']; }; /** Enum of the availability states of models. */ declare enum ModelStateDto { AvailableDto = "AVAILABLE", ImportingDto = "IMPORTING", ResolveFailedDto = "RESOLVE_FAILED" } /** Enum of valid multiplicities for association roles */ declare enum MultiplicitiesDto { NDto = "N", OneDto = "ONE", ZeroOrOneDto = "ZERO_OR_ONE" } /** Controls how navigation properties affect the result set. FILTER (default): entities without associations are excluded. INCLUDE: entities without associations are kept; navigation lookups run post-pagination for better performance. */ declare enum NavigationFilterModeDto { FilterDto = "FILTER", IncludeDto = "INCLUDE" } type NearGeospatialFilterDto = { attributeName: Scalars['String']['input']; maxDistance?: InputMaybe; minDistance?: InputMaybe; point: PointInputDto; }; type OctoMutationDto = { __typename?: 'OctoMutation'; constructionKit?: Maybe; runtime?: Maybe; }; type OctoQueryDto = { __typename?: 'OctoQuery'; constructionKit?: Maybe; runtime?: Maybe; streamData?: Maybe; }; /** Runtime entities of construction kit type 'OctoSdkDemo-2.0.1/Customer-1' */ type OctoSdkDemoCustomerDto = SystemEntityInterfaceDto & { __typename?: 'OctoSdkDemoCustomer'; associations?: Maybe; bankAccount?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; contact: BasicContactDto; contractDocument?: Maybe; customerStatus: OctoSdkDemoCustomerStatusDto; dateOfBirth?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; notes?: Maybe>; owns?: Maybe; phoneNumberLandLine?: Maybe; phoneNumberMobile?: Maybe; profilePicture?: Maybe>>; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'OctoSdkDemo-2.0.1/Customer-1' */ type OctoSdkDemoCustomerAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'OctoSdkDemo-2.0.1/Customer-1' */ type OctoSdkDemoCustomerConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'OctoSdkDemo-2.0.1/Customer-1' */ type OctoSdkDemoCustomerMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'OctoSdkDemo-2.0.1/Customer-1' */ type OctoSdkDemoCustomerMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'OctoSdkDemo-2.0.1/Customer-1' */ type OctoSdkDemoCustomerOwnsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'OctoSdkDemo-2.0.1/Customer-1' */ type OctoSdkDemoCustomerRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'OctoSdkDemo-2.0.1/Customer-1' */ type OctoSdkDemoCustomerRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'OctoSdkDemo-2.0.1/Customer-1' */ type OctoSdkDemoCustomerTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `OctoSdkDemoCustomer`. */ type OctoSdkDemoCustomerConnectionDto = { __typename?: 'OctoSdkDemoCustomerConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `OctoSdkDemoCustomer`. */ type OctoSdkDemoCustomerEdgeDto = { __typename?: 'OctoSdkDemoCustomerEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type OctoSdkDemoCustomerInputDto = { bankAccount?: InputMaybe; configuredBy?: InputMaybe>>; contact?: InputMaybe; contractDocument?: InputMaybe; customerStatus?: InputMaybe; dateOfBirth?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; notes?: InputMaybe>>; owns?: InputMaybe>>; phoneNumberLandLine?: InputMaybe; phoneNumberMobile?: InputMaybe; profilePicture?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; }; type OctoSdkDemoCustomerInputUpdateDto = { /** Item to update */ item: OctoSdkDemoCustomerInputDto; rtId?: InputMaybe; }; type OctoSdkDemoCustomerMutationsDto = { __typename?: 'OctoSdkDemoCustomerMutations'; /** Creates new entities of type 'OctoSdkDemoCustomer'. */ create?: Maybe>>; /** Updates existing entity of type 'OctoSdkDemoCustomer'. */ update?: Maybe>>; }; type OctoSdkDemoCustomerMutationsCreateArgsDto = { entities: Array>; }; type OctoSdkDemoCustomerMutationsUpdateArgsDto = { entities: Array>; }; /** Runtime entities of construction kit record 'OctoSdkDemo/CustomerNote' */ type OctoSdkDemoCustomerNoteDto = { __typename?: 'OctoSdkDemoCustomerNote'; author?: Maybe; category?: Maybe; constructionKitType?: Maybe; date: Scalars['DateTime']['output']; text: Scalars['String']['output']; }; type OctoSdkDemoCustomerNoteInputDto = { author?: InputMaybe; category?: InputMaybe; date?: InputMaybe; text?: InputMaybe; }; /** Runtime entities of construction kit enum 'OctoSdkDemo/CustomerStatus' */ declare enum OctoSdkDemoCustomerStatusDto { ActiveDto = "ACTIVE", PendingDto = "PENDING", SuspendedDto = "SUSPENDED" } type OctoSdkDemoCustomerUpdateDto = { __typename?: 'OctoSdkDemoCustomerUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type OctoSdkDemoCustomerUpdateMessageDto = { __typename?: 'OctoSdkDemoCustomerUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Union of types derived from OctoSdkDemo/Customer for OwnedBy association */ type OctoSdkDemoCustomer_OwnedByUnionDto = OctoSdkDemoCustomerDto; /** A connection to `OctoSdkDemoCustomer_OwnedByUnion`. */ type OctoSdkDemoCustomer_OwnedByUnionConnectionDto = { __typename?: 'OctoSdkDemoCustomer_OwnedByUnionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `OctoSdkDemoCustomer_OwnedByUnion`. */ type OctoSdkDemoCustomer_OwnedByUnionEdgeDto = { __typename?: 'OctoSdkDemoCustomer_OwnedByUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Runtime entities of construction kit type 'OctoSdkDemo-2.0.1/MeteringPoint-1' */ type OctoSdkDemoMeteringPointDto = { __typename?: 'OctoSdkDemoMeteringPoint'; associations?: Maybe; children?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; dataTransmissionInterval?: Maybe; description?: Maybe; events?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; meterReading: Scalars['Int']['output']; meteringPointNumber: Scalars['String']['output']; name: Scalars['String']['output']; networkOperator?: Maybe; operatingStatus: OctoSdkDemoOperatingStatusDto; orders?: Maybe; parent?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'OctoSdkDemo-2.0.1/MeteringPoint-1' */ type OctoSdkDemoMeteringPointAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'OctoSdkDemo-2.0.1/MeteringPoint-1' */ type OctoSdkDemoMeteringPointChildrenArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'OctoSdkDemo-2.0.1/MeteringPoint-1' */ type OctoSdkDemoMeteringPointConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'OctoSdkDemo-2.0.1/MeteringPoint-1' */ type OctoSdkDemoMeteringPointEventsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'OctoSdkDemo-2.0.1/MeteringPoint-1' */ type OctoSdkDemoMeteringPointMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'OctoSdkDemo-2.0.1/MeteringPoint-1' */ type OctoSdkDemoMeteringPointMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'OctoSdkDemo-2.0.1/MeteringPoint-1' */ type OctoSdkDemoMeteringPointOrdersArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'OctoSdkDemo-2.0.1/MeteringPoint-1' */ type OctoSdkDemoMeteringPointParentArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'OctoSdkDemo-2.0.1/MeteringPoint-1' */ type OctoSdkDemoMeteringPointRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'OctoSdkDemo-2.0.1/MeteringPoint-1' */ type OctoSdkDemoMeteringPointRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'OctoSdkDemo-2.0.1/MeteringPoint-1' */ type OctoSdkDemoMeteringPointTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `OctoSdkDemoMeteringPoint`. */ type OctoSdkDemoMeteringPointConnectionDto = { __typename?: 'OctoSdkDemoMeteringPointConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `OctoSdkDemoMeteringPoint`. */ type OctoSdkDemoMeteringPointEdgeDto = { __typename?: 'OctoSdkDemoMeteringPointEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type OctoSdkDemoMeteringPointInputDto = { children?: InputMaybe>>; configuredBy?: InputMaybe>>; dataTransmissionInterval?: InputMaybe; description?: InputMaybe; events?: InputMaybe>>; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; meterReading?: InputMaybe; meteringPointNumber?: InputMaybe; name?: InputMaybe; networkOperator?: InputMaybe; operatingStatus?: InputMaybe; orders?: InputMaybe>>; parent?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; }; type OctoSdkDemoMeteringPointInputUpdateDto = { /** Item to update */ item: OctoSdkDemoMeteringPointInputDto; rtId?: InputMaybe; }; type OctoSdkDemoMeteringPointMutationsDto = { __typename?: 'OctoSdkDemoMeteringPointMutations'; /** Creates new entities of type 'OctoSdkDemoMeteringPoint'. */ create?: Maybe>>; /** Updates existing entity of type 'OctoSdkDemoMeteringPoint'. */ update?: Maybe>>; }; type OctoSdkDemoMeteringPointMutationsCreateArgsDto = { entities: Array>; }; type OctoSdkDemoMeteringPointMutationsUpdateArgsDto = { entities: Array>; }; type OctoSdkDemoMeteringPointUpdateDto = { __typename?: 'OctoSdkDemoMeteringPointUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type OctoSdkDemoMeteringPointUpdateMessageDto = { __typename?: 'OctoSdkDemoMeteringPointUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit enum 'OctoSdkDemo/NetworkOperator' */ declare enum OctoSdkDemoNetworkOperatorDto { UnknownDto = "UNKNOWN" } /** Runtime entities of construction kit type 'OctoSdkDemo-2.0.1/OperatingFacility-1' */ type OctoSdkDemoOperatingFacilityDto = { __typename?: 'OctoSdkDemoOperatingFacility'; associations?: Maybe; children?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; description?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; orders?: Maybe; ownedBy?: Maybe; parent?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'OctoSdkDemo-2.0.1/OperatingFacility-1' */ type OctoSdkDemoOperatingFacilityAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'OctoSdkDemo-2.0.1/OperatingFacility-1' */ type OctoSdkDemoOperatingFacilityChildrenArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'OctoSdkDemo-2.0.1/OperatingFacility-1' */ type OctoSdkDemoOperatingFacilityConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'OctoSdkDemo-2.0.1/OperatingFacility-1' */ type OctoSdkDemoOperatingFacilityMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'OctoSdkDemo-2.0.1/OperatingFacility-1' */ type OctoSdkDemoOperatingFacilityMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'OctoSdkDemo-2.0.1/OperatingFacility-1' */ type OctoSdkDemoOperatingFacilityOrdersArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'OctoSdkDemo-2.0.1/OperatingFacility-1' */ type OctoSdkDemoOperatingFacilityOwnedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'OctoSdkDemo-2.0.1/OperatingFacility-1' */ type OctoSdkDemoOperatingFacilityParentArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'OctoSdkDemo-2.0.1/OperatingFacility-1' */ type OctoSdkDemoOperatingFacilityRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'OctoSdkDemo-2.0.1/OperatingFacility-1' */ type OctoSdkDemoOperatingFacilityRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'OctoSdkDemo-2.0.1/OperatingFacility-1' */ type OctoSdkDemoOperatingFacilityTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `OctoSdkDemoOperatingFacility`. */ type OctoSdkDemoOperatingFacilityConnectionDto = { __typename?: 'OctoSdkDemoOperatingFacilityConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `OctoSdkDemoOperatingFacility`. */ type OctoSdkDemoOperatingFacilityEdgeDto = { __typename?: 'OctoSdkDemoOperatingFacilityEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type OctoSdkDemoOperatingFacilityInputDto = { children?: InputMaybe>>; configuredBy?: InputMaybe>>; description?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; orders?: InputMaybe>>; ownedBy?: InputMaybe>>; parent?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; }; type OctoSdkDemoOperatingFacilityInputUpdateDto = { /** Item to update */ item: OctoSdkDemoOperatingFacilityInputDto; rtId?: InputMaybe; }; type OctoSdkDemoOperatingFacilityMutationsDto = { __typename?: 'OctoSdkDemoOperatingFacilityMutations'; /** Creates new entities of type 'OctoSdkDemoOperatingFacility'. */ create?: Maybe>>; /** Updates existing entity of type 'OctoSdkDemoOperatingFacility'. */ update?: Maybe>>; }; type OctoSdkDemoOperatingFacilityMutationsCreateArgsDto = { entities: Array>; }; type OctoSdkDemoOperatingFacilityMutationsUpdateArgsDto = { entities: Array>; }; type OctoSdkDemoOperatingFacilityUpdateDto = { __typename?: 'OctoSdkDemoOperatingFacilityUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type OctoSdkDemoOperatingFacilityUpdateMessageDto = { __typename?: 'OctoSdkDemoOperatingFacilityUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Union of types derived from OctoSdkDemo/OperatingFacility for Owns association */ type OctoSdkDemoOperatingFacility_OwnsUnionDto = OctoSdkDemoOperatingFacilityDto; /** A connection to `OctoSdkDemoOperatingFacility_OwnsUnion`. */ type OctoSdkDemoOperatingFacility_OwnsUnionConnectionDto = { __typename?: 'OctoSdkDemoOperatingFacility_OwnsUnionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `OctoSdkDemoOperatingFacility_OwnsUnion`. */ type OctoSdkDemoOperatingFacility_OwnsUnionEdgeDto = { __typename?: 'OctoSdkDemoOperatingFacility_OwnsUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Runtime entities of construction kit enum 'OctoSdkDemo/OperatingStatus' */ declare enum OctoSdkDemoOperatingStatusDto { MaintenanceDto = "MAINTENANCE", OkDto = "OK", UnknownDto = "UNKNOWN" } type OctoSubscriptionsDto = { __typename?: 'OctoSubscriptions'; basicAssetEvents?: Maybe; basicCityEvents?: Maybe; basicCountryEvents?: Maybe; basicDistrictEvents?: Maybe; basicDocumentEvents?: Maybe; basicEmployeeEvents?: Maybe; basicNamedEntityEvents?: Maybe; basicStateEvents?: Maybe; basicTreeEvents?: Maybe; basicTreeNodeEvents?: Maybe; industryBasicAlarmEvents?: Maybe; industryBasicEventEvents?: Maybe; industryBasicMachineEvents?: Maybe; industryBasicRuntimeVariableEvents?: Maybe; industryEnergyDemandResponseEventEvents?: Maybe; industryEnergyEnergyConsumerEvents?: Maybe; industryEnergyEnergyCostEvents?: Maybe; industryEnergyEnergyForecastEvents?: Maybe; industryEnergyEnergyMeterEvents?: Maybe; industryEnergyEnergyPerformanceIndicatorEvents?: Maybe; industryEnergyEnergyStorageEvents?: Maybe; industryEnergyInverterEvents?: Maybe; industryEnergyPhotovoltaicSystemEvents?: Maybe; industryEnergyPhotovoltaicSystemModuleEvents?: Maybe; industryEnergyPhotovoltaicSystemStringEvents?: Maybe; industryFluidHeatMeterEvents?: Maybe; industryFluidWaterMeterEvents?: Maybe; industryMaintenanceAccountEvents?: Maybe; industryMaintenanceCostCenterEvents?: Maybe; industryMaintenanceEmployeeEvents?: Maybe; industryMaintenanceEnergyBalanceEvents?: Maybe; industryMaintenanceJournalEntryEvents?: Maybe; industryMaintenanceOrderCostsEvents?: Maybe; industryMaintenanceOrderEvents?: Maybe; industryMaintenanceOrderFeedbackEvents?: Maybe; industryMaintenanceWorkplaceEvents?: Maybe; octoSdkDemoCustomerEvents?: Maybe; octoSdkDemoMeteringPointEvents?: Maybe; octoSdkDemoOperatingFacilityEvents?: Maybe; systemAggregationRtQueryEvents?: Maybe; systemAggregationSdQueryEvents?: Maybe; systemAutoIncrementEvents?: Maybe; systemBotAttributeAggregateConfigurationEvents?: Maybe; systemBotFixupEvents?: Maybe; systemCommunicationAdapterEvents?: Maybe; systemCommunicationAiConfigurationEvents?: Maybe; systemCommunicationDataFlowEvents?: Maybe; systemCommunicationDataPointMappingEvents?: Maybe; systemCommunicationDeployableEntityEvents?: Maybe; systemCommunicationDiscordConfigurationEvents?: Maybe; systemCommunicationEMailReceiverConfigurationEvents?: Maybe; systemCommunicationEMailSenderConfigurationEvents?: Maybe; systemCommunicationEdaConfigurationEvents?: Maybe; systemCommunicationEnergyCommunityConfigurationEvents?: Maybe; systemCommunicationFinApiConfigurationEvents?: Maybe; systemCommunicationGrafanaConfigurationEvents?: Maybe; systemCommunicationLoxoneConfigurationEvents?: Maybe; systemCommunicationMicrosoftGraphConfigurationEvents?: Maybe; systemCommunicationPipelineEvents?: Maybe; systemCommunicationPipelineExecutionEvents?: Maybe; systemCommunicationPipelineStatisticsEvents?: Maybe; systemCommunicationPipelineTriggerEvents?: Maybe; systemCommunicationPoolEvents?: Maybe; systemCommunicationSapConfigurationEvents?: Maybe; systemCommunicationServiceAccountConfigurationEvents?: Maybe; systemCommunicationSftpConfigurationEvents?: Maybe; systemCommunicationTagEvents?: Maybe; systemConfigurationEvents?: Maybe; systemDownsamplingSdQueryEvents?: Maybe; systemEntityEvents?: Maybe; systemGroupingAggregationRtQueryEvents?: Maybe; systemGroupingAggregationSdQueryEvents?: Maybe; systemIdentityApiResourceEvents?: Maybe; systemIdentityApiScopeEvents?: Maybe; systemIdentityAzureEntraIdIdentityProviderEvents?: Maybe; systemIdentityClientEvents?: Maybe; systemIdentityEmailDomainGroupRuleEvents?: Maybe; systemIdentityExternalTenantUserMappingEvents?: Maybe; systemIdentityFacebookIdentityProviderEvents?: Maybe; systemIdentityGoogleIdentityProviderEvents?: Maybe; systemIdentityGroupEvents?: Maybe; systemIdentityIdentityProviderEvents?: Maybe; systemIdentityIdentityResourceEvents?: Maybe; systemIdentityMailNotificationConfigurationEvents?: Maybe; systemIdentityMicrosoftAdIdentityProviderEvents?: Maybe; systemIdentityMicrosoftIdentityProviderEvents?: Maybe; systemIdentityOctoTenantIdentityProviderEvents?: Maybe; systemIdentityOpenLdapIdentityProviderEvents?: Maybe; systemIdentityPermissionEvents?: Maybe; systemIdentityPermissionRoleEvents?: Maybe; systemIdentityPersistedGrantEvents?: Maybe; systemIdentityResourceEvents?: Maybe; systemIdentityRoleEvents?: Maybe; systemIdentityUserEvents?: Maybe; systemMigrationHistoryEvents?: Maybe; systemNotificationCssTemplateConfigurationEvents?: Maybe; systemNotificationEventEvents?: Maybe; systemNotificationNotificationTemplateEvents?: Maybe; systemNotificationStatefulEventEvents?: Maybe; systemPersistentQueryEvents?: Maybe; systemReportingConnectionInfoEvents?: Maybe; systemReportingFileSystemContainerEvents?: Maybe; systemReportingFileSystemEntityEvents?: Maybe; systemReportingFileSystemItemEvents?: Maybe; systemReportingFolderEvents?: Maybe; systemReportingFolderRootEvents?: Maybe; systemSimpleRtQueryEvents?: Maybe; systemSimpleSdQueryEvents?: Maybe; systemStreamDataQueryEvents?: Maybe; systemTenantConfigurationEvents?: Maybe; systemTenantEvents?: Maybe; systemTenantModeConfigurationEvents?: Maybe; systemUIBrandingEvents?: Maybe; systemUIDashboardEvents?: Maybe; systemUIDashboardWidgetEvents?: Maybe; systemUIProcessDiagramEvents?: Maybe; systemUISymbolDefinitionEvents?: Maybe; systemUISymbolLibraryEvents?: Maybe; systemUIUIElementEvents?: Maybe; }; type OctoSubscriptionsBasicAssetEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsBasicCityEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsBasicCountryEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsBasicDistrictEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsBasicDocumentEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsBasicEmployeeEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsBasicNamedEntityEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsBasicStateEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsBasicTreeEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsBasicTreeNodeEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsIndustryBasicAlarmEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsIndustryBasicEventEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsIndustryBasicMachineEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsIndustryBasicRuntimeVariableEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsIndustryEnergyDemandResponseEventEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsIndustryEnergyEnergyConsumerEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsIndustryEnergyEnergyCostEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsIndustryEnergyEnergyForecastEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsIndustryEnergyEnergyMeterEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsIndustryEnergyEnergyPerformanceIndicatorEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsIndustryEnergyEnergyStorageEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsIndustryEnergyInverterEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsIndustryEnergyPhotovoltaicSystemEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsIndustryEnergyPhotovoltaicSystemModuleEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsIndustryEnergyPhotovoltaicSystemStringEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsIndustryFluidHeatMeterEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsIndustryFluidWaterMeterEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsIndustryMaintenanceAccountEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsIndustryMaintenanceCostCenterEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsIndustryMaintenanceEmployeeEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsIndustryMaintenanceEnergyBalanceEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsIndustryMaintenanceJournalEntryEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsIndustryMaintenanceOrderCostsEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsIndustryMaintenanceOrderEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsIndustryMaintenanceOrderFeedbackEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsIndustryMaintenanceWorkplaceEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsOctoSdkDemoCustomerEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsOctoSdkDemoMeteringPointEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsOctoSdkDemoOperatingFacilityEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemAggregationRtQueryEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemAggregationSdQueryEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemAutoIncrementEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemBotAttributeAggregateConfigurationEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemBotFixupEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemCommunicationAdapterEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemCommunicationAiConfigurationEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemCommunicationDataFlowEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemCommunicationDataPointMappingEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemCommunicationDeployableEntityEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemCommunicationDiscordConfigurationEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemCommunicationEMailReceiverConfigurationEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemCommunicationEMailSenderConfigurationEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemCommunicationEdaConfigurationEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemCommunicationEnergyCommunityConfigurationEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemCommunicationFinApiConfigurationEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemCommunicationGrafanaConfigurationEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemCommunicationLoxoneConfigurationEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemCommunicationMicrosoftGraphConfigurationEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemCommunicationPipelineEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemCommunicationPipelineExecutionEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemCommunicationPipelineStatisticsEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemCommunicationPipelineTriggerEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemCommunicationPoolEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemCommunicationSapConfigurationEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemCommunicationServiceAccountConfigurationEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemCommunicationSftpConfigurationEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemCommunicationTagEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemConfigurationEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemDownsamplingSdQueryEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemEntityEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemGroupingAggregationRtQueryEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemGroupingAggregationSdQueryEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemIdentityApiResourceEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemIdentityApiScopeEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemIdentityAzureEntraIdIdentityProviderEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemIdentityClientEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemIdentityEmailDomainGroupRuleEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemIdentityExternalTenantUserMappingEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemIdentityFacebookIdentityProviderEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemIdentityGoogleIdentityProviderEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemIdentityGroupEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemIdentityIdentityProviderEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemIdentityIdentityResourceEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemIdentityMailNotificationConfigurationEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemIdentityMicrosoftAdIdentityProviderEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemIdentityMicrosoftIdentityProviderEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemIdentityOctoTenantIdentityProviderEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemIdentityOpenLdapIdentityProviderEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemIdentityPermissionEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemIdentityPermissionRoleEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemIdentityPersistedGrantEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemIdentityResourceEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemIdentityRoleEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemIdentityUserEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemMigrationHistoryEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemNotificationCssTemplateConfigurationEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemNotificationEventEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemNotificationNotificationTemplateEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemNotificationStatefulEventEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemPersistentQueryEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemReportingConnectionInfoEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemReportingFileSystemContainerEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemReportingFileSystemEntityEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemReportingFileSystemItemEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemReportingFolderEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemReportingFolderRootEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemSimpleRtQueryEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemSimpleSdQueryEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemStreamDataQueryEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemTenantConfigurationEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemTenantEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemTenantModeConfigurationEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemUiBrandingEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemUiDashboardEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemUiDashboardWidgetEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemUiProcessDiagramEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemUiSymbolDefinitionEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemUiSymbolLibraryEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemUiuiElementEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; /** Information about pagination in a connection. */ type PageInfoDto = { __typename?: 'PageInfo'; /** When paginating forwards, the cursor to continue. */ endCursor?: Maybe; /** When paginating forwards, are there more items? */ hasNextPage: Scalars['Boolean']['output']; /** When paginating backwards, are there more items? */ hasPreviousPage: Scalars['Boolean']['output']; /** When paginating backwards, the cursor to continue. */ startCursor?: Maybe; }; type PointInputDto = { coordinates: PositionInputDto; }; type PositionInputDto = { latitude: Scalars['Float']['input']; longitude: Scalars['Float']['input']; }; /** Aggregation query result of items */ type QueryAggregationResultDto = { __typename?: 'QueryAggregationResult'; /** The average value of the given attribute paths. */ avgStatistics?: Maybe>>; /** The count of entities in the group. */ count: Scalars['Int']['output']; /** The count of value of the given attribute paths that are not null. */ countStatistics?: Maybe>>; /** The grouping input for the aggregation operation. */ groupBy?: Maybe>; /** The maximum value of the given attribute paths. */ maxStatistics?: Maybe>>; /** The minimum value of the given attribute paths. */ minStatistics?: Maybe>>; /** The sum value of the given attribute paths. */ sumStatistics?: Maybe>>; }; /** A connection from an object to a list of objects of type `QueryAggregationResult`. */ type QueryAggregationResultConnectionDto = { __typename?: 'QueryAggregationResultConnection'; /** A list of all of the edges returned in the connection. */ edges?: Maybe>>; /** 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. */ items?: Maybe>; /** Information to aid in pagination. */ pageInfo: PageInfoDto; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `QueryAggregationResult`. */ type QueryAggregationResultEdgeDto = { __typename?: 'QueryAggregationResultEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node: QueryAggregationResultDto; }; /** Defines the kind of query to be executed */ declare enum QueryModeDto { DefaultDto = "DEFAULT", DownsamplingDto = "DOWNSAMPLING", InterpolationDto = "INTERPOLATION" } type ResultAggregationInputDto = { avgAttributePaths?: InputMaybe>>; countAttributePaths?: InputMaybe>>; groupBy?: InputMaybe; maxValueAttributePaths?: InputMaybe>>; minValueAttributePaths?: InputMaybe>>; sumAttributePaths?: InputMaybe>>; }; /** Represents a row within a runtime query execution */ type RtAggregationQueryRowDto = RtQueryRowDto & { __typename?: 'RtAggregationQueryRow'; cells?: Maybe; ckTypeId?: Maybe; }; /** Represents a row within a runtime query execution */ type RtAggregationQueryRowCellsArgsDto = { after?: InputMaybe; attributePaths?: InputMaybe>>; first?: InputMaybe; resolveEnumValuesToNames?: InputMaybe; }; /** A runtime association type of OctoMesh */ type RtAssociationDto = { __typename?: 'RtAssociation'; attributes?: Maybe; ckAssociationRoleId: Scalars['RtCkAssociationRoleId']['output']; originCkTypeId: Scalars['RtCkTypeId']['output']; originRtId: Scalars['OctoObjectId']['output']; targetCkTypeId: Scalars['RtCkTypeId']['output']; targetRtId: Scalars['OctoObjectId']['output']; }; /** A runtime association type of OctoMesh */ type RtAssociationAttributesArgsDto = { after?: InputMaybe; attributeNames?: InputMaybe>>; first?: InputMaybe; }; /** A connection from an object to a list of objects of type `RtAssociationDto`. */ type RtAssociationDtoConnectionDto = { __typename?: 'RtAssociationDtoConnection'; /** A list of all of the edges returned in the connection. */ edges?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo: PageInfoDto; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `RtAssociationDto`. */ type RtAssociationDtoEdgeDto = { __typename?: 'RtAssociationDtoEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Input field for associations */ type RtAssociationInputDto = { /** Type of modification. */ modOption?: InputMaybe; /** Runtime ID of the target entity */ target: RtEntityIdDto; }; /** A runtime entity type of OctoMesh */ type RtEntityDto = { __typename?: 'RtEntity'; /** A list of associations of this entity. The association role id is used to filter the associations. */ associations?: Maybe; attributes?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; }; /** A runtime entity type of OctoMesh */ type RtEntityAttributesArgsDto = { after?: InputMaybe; attributeNames?: InputMaybe>>; first?: InputMaybe; resolveEnumValuesToNames?: InputMaybe; }; /** Input for modifying associations on a runtime entity */ type RtEntityAssociationInputDto = { /** Name of the association role or navigation property */ roleName: Scalars['String']['input']; /** List of target entities to associate */ targets: Array>; }; /** Attribute of a runtime entity */ type RtEntityAttributeDto = { __typename?: 'RtEntityAttribute'; /** Attribute name within the entity. */ attributeName?: Maybe; /** Value of a scalar attribute. */ value?: Maybe; }; /** A connection from an object to a list of objects of type `RtEntityAttributeDto`. */ type RtEntityAttributeDtoConnectionDto = { __typename?: 'RtEntityAttributeDtoConnection'; /** A list of all of the edges returned in the connection. */ edges?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo: PageInfoDto; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `RtEntityAttributeDto`. */ type RtEntityAttributeDtoEdgeDto = { __typename?: 'RtEntityAttributeDtoEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Attribute of a runtime entity */ type RtEntityAttributeInputDto = { /** Attribute name within the entity. */ attributeName?: InputMaybe; /** Value of a scalar attribute. */ value?: InputMaybe; }; /** A runtime entity generic association type of OctoMesh */ type RtEntityGenericAssociationDto = { __typename?: 'RtEntityGenericAssociation'; definitions?: Maybe; targets?: Maybe; }; /** A runtime entity generic association type of OctoMesh */ type RtEntityGenericAssociationDefinitionsArgsDto = { after?: InputMaybe; direction: GraphDirectionDto; first?: InputMaybe; relatedRtCkId?: InputMaybe; relatedRtId?: InputMaybe; roleId?: InputMaybe; }; /** A runtime entity generic association type of OctoMesh */ type RtEntityGenericAssociationTargetsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection from an object to a list of objects of type `RtEntityGenericDto`. */ type RtEntityGenericDtoConnectionDto = { __typename?: 'RtEntityGenericDtoConnection'; /** A list of all of the edges returned in the connection. */ edges?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo: PageInfoDto; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `RtEntityGenericDto`. */ type RtEntityGenericDtoEdgeDto = { __typename?: 'RtEntityGenericDtoEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Id information consists of CkTypeId and RtId */ type RtEntityIdDto = { /** Construction kit type id of the object. */ ckTypeId: Scalars['RtCkTypeId']['input']; /** Unique id of the object. */ rtId: Scalars['OctoObjectId']['input']; }; type RtEntityInputDto = { /** Associations to create or modify on this entity */ associations?: InputMaybe>>; attributes: Array>; ckTypeId: Scalars['RtCkTypeId']['input']; rtWellKnownName?: InputMaybe; }; type RtEntityMutationsDto = { __typename?: 'RtEntityMutations'; /** Creates new runtime entities generically. */ create?: Maybe>>; /** Mutation to delete runtime entities. */ delete?: Maybe; /** Updates existing runtime entities generically. */ update?: Maybe>>; }; type RtEntityMutationsCreateArgsDto = { entities: Array>; }; type RtEntityMutationsDeleteArgsDto = { entities: Array>; options?: InputMaybe; }; type RtEntityMutationsUpdateArgsDto = { entities: Array>; }; type RtEntityUpdateDto = { /** Item to update */ item?: InputMaybe; rtId?: InputMaybe; }; /** Represents a row within a runtime query execution */ type RtGroupingAggregationQueryRowDto = RtQueryRowDto & { __typename?: 'RtGroupingAggregationQueryRow'; cells?: Maybe; ckTypeId?: Maybe; }; /** Represents a row within a runtime query execution */ type RtGroupingAggregationQueryRowCellsArgsDto = { after?: InputMaybe; attributePaths?: InputMaybe>>; first?: InputMaybe; resolveEnumValuesToNames?: InputMaybe; }; /** Represents a runtime query exection. */ type RtQueryDto = { __typename?: 'RtQuery'; aggregations?: Maybe; associatedCkTypeId: Scalars['RtCkTypeId']['output']; columns: Array; queryRtId: Scalars['OctoObjectId']['output']; rows?: Maybe; }; /** Represents a runtime query exection. */ type RtQueryAggregationsArgsDto = { after?: InputMaybe; aggregations: ResultAggregationInputDto; first?: InputMaybe; }; /** Represents a runtime query exection. */ type RtQueryRowsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; navigationFilterMode?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Represents a cell of a row within a runtime query execution. */ type RtQueryCellDto = { __typename?: 'RtQueryCell'; /** Path of the attribute within an entity. */ attributePath: Scalars['String']['output']; /** Value of the cell. */ value?: Maybe; }; /** A connection from an object to a list of objects of type `RtQueryCellDto`. */ type RtQueryCellDtoConnectionDto = { __typename?: 'RtQueryCellDtoConnection'; /** A list of all of the edges returned in the connection. */ edges?: Maybe>>; /** 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. */ items?: Maybe>; /** Information to aid in pagination. */ pageInfo: PageInfoDto; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `RtQueryCellDto`. */ type RtQueryCellDtoEdgeDto = { __typename?: 'RtQueryCellDtoEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node: RtQueryCellDto; }; /** Represents the input for a cell a row within a runtime query. */ type RtQueryCellInputDto = { /** Path of the attribute within an entity. */ attributePath?: InputMaybe; /** Value of the cell. */ value?: InputMaybe; }; /** Represents a column within a query */ type RtQueryColumnDto = { __typename?: 'RtQueryColumn'; aggregationType?: Maybe; attributePath?: Maybe; attributeValueType?: Maybe; }; type RtQueryColumnInputDto = { aggregationType: AggregationInputTypesDto; attributePath: Scalars['String']['input']; }; /** A connection from an object to a list of objects of type `RtQueryDto`. */ type RtQueryDtoConnectionDto = { __typename?: 'RtQueryDtoConnection'; /** A list of all of the edges returned in the connection. */ edges?: Maybe>>; /** 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. */ items?: Maybe>; /** Information to aid in pagination. */ pageInfo: PageInfoDto; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `RtQueryDto`. */ type RtQueryDtoEdgeDto = { __typename?: 'RtQueryDtoEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node: RtQueryDto; }; type RtQueryMutationsDto = { __typename?: 'RtQueryMutations'; /** Create entities of a runtime query. */ create?: Maybe>; /** Deletes entities of a runtime query. */ delete?: Maybe; /** Updates entities of a runtime query. */ update?: Maybe>; }; type RtQueryMutationsCreateArgsDto = { entities: Array; }; type RtQueryMutationsDeleteArgsDto = { entities: Array; }; type RtQueryMutationsUpdateArgsDto = { entities: Array; }; /** Represents a row within a runtime query execution */ type RtQueryRowDto = { cells?: Maybe; ckTypeId?: Maybe; }; /** Represents a row within a runtime query execution */ type RtQueryRowCellsArgsDto = { after?: InputMaybe; attributePaths?: InputMaybe>>; first?: InputMaybe; resolveEnumValuesToNames?: InputMaybe; }; /** A connection from an object to a list of objects of type `RtQueryRowDto`. */ type RtQueryRowDtoConnectionDto = { __typename?: 'RtQueryRowDtoConnection'; /** A list of all of the edges returned in the connection. */ edges?: Maybe>>; /** 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. */ items?: Maybe>; /** Information to aid in pagination. */ pageInfo: PageInfoDto; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `RtQueryRowDto`. */ type RtQueryRowDtoEdgeDto = { __typename?: 'RtQueryRowDtoEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node: RtQueryRowDto; }; type RtQueryRowInputDto = { cells: Array>; ckTypeId: Scalars['RtCkTypeId']['input']; rtWellKnownName?: InputMaybe; }; type RtQueryRowUpdateDto = { /** Row as input to be updated within the query. */ item?: InputMaybe; rtId?: InputMaybe; }; /** Represents a row within a runtime query execution */ type RtSimpleQueryRowDto = RtQueryRowDto & { __typename?: 'RtSimpleQueryRow'; cells?: Maybe; ckTypeId?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId?: Maybe; rtVersion?: Maybe; rtWellKnownName?: Maybe; }; /** Represents a row within a runtime query execution */ type RtSimpleQueryRowCellsArgsDto = { after?: InputMaybe; attributePaths?: InputMaybe>>; first?: InputMaybe; resolveEnumValuesToNames?: InputMaybe; }; type RtTransientDto = { __typename?: 'RtTransient'; aggregation?: Maybe; groupingAggregation?: Maybe; simple?: Maybe; }; type RtTransientAggregationArgsDto = { after?: InputMaybe; ckId: Scalars['String']['input']; columnPaths: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RtTransientGroupingAggregationArgsDto = { after?: InputMaybe; ckId: Scalars['String']['input']; columnPaths: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; groupByColumnPaths: Array; searchFilter?: InputMaybe; }; type RtTransientSimpleArgsDto = { after?: InputMaybe; ckId: Scalars['String']['input']; columnPaths: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Represents a runtime query exection. */ type RtTransientQueryDto = { __typename?: 'RtTransientQuery'; aggregations?: Maybe; associatedCkTypeId: Scalars['RtCkTypeId']['output']; columns: Array; rows?: Maybe; }; /** Represents a runtime query exection. */ type RtTransientQueryAggregationsArgsDto = { after?: InputMaybe; aggregations: ResultAggregationInputDto; first?: InputMaybe; }; /** Represents a runtime query exection. */ type RtTransientQueryRowsArgsDto = { after?: InputMaybe; first?: InputMaybe; }; /** A connection from an object to a list of objects of type `RtTransientQueryDto`. */ type RtTransientQueryDtoConnectionDto = { __typename?: 'RtTransientQueryDtoConnection'; /** A list of all of the edges returned in the connection. */ edges?: Maybe>>; /** 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. */ items?: Maybe>; /** Information to aid in pagination. */ pageInfo: PageInfoDto; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `RtTransientQueryDto`. */ type RtTransientQueryDtoEdgeDto = { __typename?: 'RtTransientQueryDtoEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node: RtTransientQueryDto; }; type RuntimeDto = { __typename?: 'Runtime'; /** Mutation for entities of type 'BasicAsset'. */ basicAssets?: Maybe; /** Mutation for entities of type 'BasicCity'. */ basicCitys?: Maybe; /** Mutation for entities of type 'BasicCountry'. */ basicCountrys?: Maybe; /** Mutation for entities of type 'BasicDistrict'. */ basicDistricts?: Maybe; /** Mutation for entities of type 'BasicEmployee'. */ basicEmployees?: Maybe; /** Mutation for entities of type 'BasicState'. */ basicStates?: Maybe; /** Mutation for entities of type 'BasicTreeNode'. */ basicTreeNodes?: Maybe; /** Mutation for entities of type 'BasicTree'. */ basicTrees?: Maybe; /** Mutation for entities of type 'IndustryBasicAlarm'. */ industryBasicAlarms?: Maybe; /** Mutation for entities of type 'IndustryBasicEvent'. */ industryBasicEvents?: Maybe; /** Mutation for entities of type 'IndustryBasicMachine'. */ industryBasicMachines?: Maybe; /** Mutation for entities of type 'IndustryBasicRuntimeVariable'. */ industryBasicRuntimeVariables?: Maybe; /** Mutation for entities of type 'IndustryEnergyDemandResponseEvent'. */ industryEnergyDemandResponseEvents?: Maybe; /** Mutation for entities of type 'IndustryEnergyEnergyConsumer'. */ industryEnergyEnergyConsumers?: Maybe; /** Mutation for entities of type 'IndustryEnergyEnergyCost'. */ industryEnergyEnergyCosts?: Maybe; /** Mutation for entities of type 'IndustryEnergyEnergyForecast'. */ industryEnergyEnergyForecasts?: Maybe; /** Mutation for entities of type 'IndustryEnergyEnergyMeter'. */ industryEnergyEnergyMeters?: Maybe; /** Mutation for entities of type 'IndustryEnergyEnergyPerformanceIndicator'. */ industryEnergyEnergyPerformanceIndicators?: Maybe; /** Mutation for entities of type 'IndustryEnergyEnergyStorage'. */ industryEnergyEnergyStorages?: Maybe; /** Mutation for entities of type 'IndustryEnergyInverter'. */ industryEnergyInverters?: Maybe; /** Mutation for entities of type 'IndustryEnergyPhotovoltaicSystemModule'. */ industryEnergyPhotovoltaicSystemModules?: Maybe; /** Mutation for entities of type 'IndustryEnergyPhotovoltaicSystemString'. */ industryEnergyPhotovoltaicSystemStrings?: Maybe; /** Mutation for entities of type 'IndustryEnergyPhotovoltaicSystem'. */ industryEnergyPhotovoltaicSystems?: Maybe; /** Mutation for entities of type 'IndustryFluidHeatMeter'. */ industryFluidHeatMeters?: Maybe; /** Mutation for entities of type 'IndustryFluidWaterMeter'. */ industryFluidWaterMeters?: Maybe; /** Mutation for entities of type 'IndustryMaintenanceAccount'. */ industryMaintenanceAccounts?: Maybe; /** Mutation for entities of type 'IndustryMaintenanceCostCenter'. */ industryMaintenanceCostCenters?: Maybe; /** Mutation for entities of type 'IndustryMaintenanceEmployee'. */ industryMaintenanceEmployees?: Maybe; /** Mutation for entities of type 'IndustryMaintenanceEnergyBalance'. */ industryMaintenanceEnergyBalances?: Maybe; /** Mutation for entities of type 'IndustryMaintenanceJournalEntry'. */ industryMaintenanceJournalEntrys?: Maybe; /** Mutation for entities of type 'IndustryMaintenanceOrderCosts'. */ industryMaintenanceOrderCostss?: Maybe; /** Mutation for entities of type 'IndustryMaintenanceOrderFeedback'. */ industryMaintenanceOrderFeedbacks?: Maybe; /** Mutation for entities of type 'IndustryMaintenanceOrder'. */ industryMaintenanceOrders?: Maybe; /** Mutation for entities of type 'IndustryMaintenanceWorkplace'. */ industryMaintenanceWorkplaces?: Maybe; /** Mutation for entities of type 'OctoSdkDemoCustomer'. */ octoSdkDemoCustomers?: Maybe; /** Mutation for entities of type 'OctoSdkDemoMeteringPoint'. */ octoSdkDemoMeteringPoints?: Maybe; /** Mutation for entities of type 'OctoSdkDemoOperatingFacility'. */ octoSdkDemoOperatingFacilitys?: Maybe; runtimeEntities?: Maybe; runtimeQuery?: Maybe; /** Mutation for entities of type 'SystemAggregationRtQuery'. */ systemAggregationRtQuerys?: Maybe; /** Mutation for entities of type 'SystemAggregationSdQuery'. */ systemAggregationSdQuerys?: Maybe; /** Mutation for entities of type 'SystemAutoIncrement'. */ systemAutoIncrements?: Maybe; /** Mutation for entities of type 'SystemBotAttributeAggregateConfiguration'. */ systemBotAttributeAggregateConfigurations?: Maybe; /** Mutation for entities of type 'SystemBotFixup'. */ systemBotFixups?: Maybe; /** Mutation for entities of type 'SystemCommunicationAdapter'. */ systemCommunicationAdapters?: Maybe; /** Mutation for entities of type 'SystemCommunicationAiConfiguration'. */ systemCommunicationAiConfigurations?: Maybe; /** Mutation for entities of type 'SystemCommunicationDataFlow'. */ systemCommunicationDataFlows?: Maybe; /** Mutation for entities of type 'SystemCommunicationDataPointMapping'. */ systemCommunicationDataPointMappings?: Maybe; /** Mutation for entities of type 'SystemCommunicationDiscordConfiguration'. */ systemCommunicationDiscordConfigurations?: Maybe; /** Mutation for entities of type 'SystemCommunicationEMailReceiverConfiguration'. */ systemCommunicationEMailReceiverConfigurations?: Maybe; /** Mutation for entities of type 'SystemCommunicationEMailSenderConfiguration'. */ systemCommunicationEMailSenderConfigurations?: Maybe; /** Mutation for entities of type 'SystemCommunicationEdaConfiguration'. */ systemCommunicationEdaConfigurations?: Maybe; /** Mutation for entities of type 'SystemCommunicationEnergyCommunityConfiguration'. */ systemCommunicationEnergyCommunityConfigurations?: Maybe; /** Mutation for entities of type 'SystemCommunicationFinApiConfiguration'. */ systemCommunicationFinApiConfigurations?: Maybe; /** Mutation for entities of type 'SystemCommunicationGrafanaConfiguration'. */ systemCommunicationGrafanaConfigurations?: Maybe; /** Mutation for entities of type 'SystemCommunicationLoxoneConfiguration'. */ systemCommunicationLoxoneConfigurations?: Maybe; /** Mutation for entities of type 'SystemCommunicationMicrosoftGraphConfiguration'. */ systemCommunicationMicrosoftGraphConfigurations?: Maybe; /** Mutation for entities of type 'SystemCommunicationPipelineExecution'. */ systemCommunicationPipelineExecutions?: Maybe; /** Mutation for entities of type 'SystemCommunicationPipelineStatistics'. */ systemCommunicationPipelineStatisticss?: Maybe; /** Mutation for entities of type 'SystemCommunicationPipelineTrigger'. */ systemCommunicationPipelineTriggers?: Maybe; /** Mutation for entities of type 'SystemCommunicationPipeline'. */ systemCommunicationPipelines?: Maybe; /** Mutation for entities of type 'SystemCommunicationPool'. */ systemCommunicationPools?: Maybe; /** Mutation for entities of type 'SystemCommunicationSapConfiguration'. */ systemCommunicationSapConfigurations?: Maybe; /** Mutation for entities of type 'SystemCommunicationServiceAccountConfiguration'. */ systemCommunicationServiceAccountConfigurations?: Maybe; /** Mutation for entities of type 'SystemCommunicationSftpConfiguration'. */ systemCommunicationSftpConfigurations?: Maybe; /** Mutation for entities of type 'SystemCommunicationTag'. */ systemCommunicationTags?: Maybe; /** Mutation for entities of type 'SystemDownsamplingSdQuery'. */ systemDownsamplingSdQuerys?: Maybe; /** Mutation for entities of type 'SystemGroupingAggregationRtQuery'. */ systemGroupingAggregationRtQuerys?: Maybe; /** Mutation for entities of type 'SystemGroupingAggregationSdQuery'. */ systemGroupingAggregationSdQuerys?: Maybe; /** Mutation for entities of type 'SystemIdentityApiResource'. */ systemIdentityApiResources?: Maybe; /** Mutation for entities of type 'SystemIdentityApiScope'. */ systemIdentityApiScopes?: Maybe; /** Mutation for entities of type 'SystemIdentityAzureEntraIdIdentityProvider'. */ systemIdentityAzureEntraIdIdentityProviders?: Maybe; /** Mutation for entities of type 'SystemIdentityClient'. */ systemIdentityClients?: Maybe; /** Mutation for entities of type 'SystemIdentityEmailDomainGroupRule'. */ systemIdentityEmailDomainGroupRules?: Maybe; /** Mutation for entities of type 'SystemIdentityExternalTenantUserMapping'. */ systemIdentityExternalTenantUserMappings?: Maybe; /** Mutation for entities of type 'SystemIdentityFacebookIdentityProvider'. */ systemIdentityFacebookIdentityProviders?: Maybe; /** Mutation for entities of type 'SystemIdentityGoogleIdentityProvider'. */ systemIdentityGoogleIdentityProviders?: Maybe; /** Mutation for entities of type 'SystemIdentityGroup'. */ systemIdentityGroups?: Maybe; /** Mutation for entities of type 'SystemIdentityIdentityResource'. */ systemIdentityIdentityResources?: Maybe; /** Mutation for entities of type 'SystemIdentityMailNotificationConfiguration'. */ systemIdentityMailNotificationConfigurations?: Maybe; /** Mutation for entities of type 'SystemIdentityMicrosoftAdIdentityProvider'. */ systemIdentityMicrosoftAdIdentityProviders?: Maybe; /** Mutation for entities of type 'SystemIdentityMicrosoftIdentityProvider'. */ systemIdentityMicrosoftIdentityProviders?: Maybe; /** Mutation for entities of type 'SystemIdentityOctoTenantIdentityProvider'. */ systemIdentityOctoTenantIdentityProviders?: Maybe; /** Mutation for entities of type 'SystemIdentityOpenLdapIdentityProvider'. */ systemIdentityOpenLdapIdentityProviders?: Maybe; /** Mutation for entities of type 'SystemIdentityPermissionRole'. */ systemIdentityPermissionRoles?: Maybe; /** Mutation for entities of type 'SystemIdentityPermission'. */ systemIdentityPermissions?: Maybe; /** Mutation for entities of type 'SystemIdentityPersistedGrant'. */ systemIdentityPersistedGrants?: Maybe; /** Mutation for entities of type 'SystemIdentityRole'. */ systemIdentityRoles?: Maybe; /** Mutation for entities of type 'SystemIdentityUser'. */ systemIdentityUsers?: Maybe; /** Mutation for entities of type 'SystemMigrationHistory'. */ systemMigrationHistorys?: Maybe; /** Mutation for entities of type 'SystemNotificationCssTemplateConfiguration'. */ systemNotificationCssTemplateConfigurations?: Maybe; /** Mutation for entities of type 'SystemNotificationEvent'. */ systemNotificationEvents?: Maybe; /** Mutation for entities of type 'SystemNotificationNotificationTemplate'. */ systemNotificationNotificationTemplates?: Maybe; /** Mutation for entities of type 'SystemNotificationStatefulEvent'. */ systemNotificationStatefulEvents?: Maybe; /** Mutation for entities of type 'SystemReportingConnectionInfo'. */ systemReportingConnectionInfos?: Maybe; /** Mutation for entities of type 'SystemReportingFileSystemItem'. */ systemReportingFileSystemItems?: Maybe; /** Mutation for entities of type 'SystemReportingFolderRoot'. */ systemReportingFolderRoots?: Maybe; /** Mutation for entities of type 'SystemReportingFolder'. */ systemReportingFolders?: Maybe; /** Mutation for entities of type 'SystemSimpleRtQuery'. */ systemSimpleRtQuerys?: Maybe; /** Mutation for entities of type 'SystemSimpleSdQuery'. */ systemSimpleSdQuerys?: Maybe; /** Mutation for entities of type 'SystemTenantConfiguration'. */ systemTenantConfigurations?: Maybe; /** Mutation for entities of type 'SystemTenantModeConfiguration'. */ systemTenantModeConfigurations?: Maybe; /** Mutation for entities of type 'SystemTenant'. */ systemTenants?: Maybe; /** Mutation for entities of type 'SystemUIBranding'. */ systemUIBrandings?: Maybe; /** Mutation for entities of type 'SystemUIDashboardWidget'. */ systemUIDashboardWidgets?: Maybe; /** Mutation for entities of type 'SystemUIDashboard'. */ systemUIDashboards?: Maybe; /** Mutation for entities of type 'SystemUIProcessDiagram'. */ systemUIProcessDiagrams?: Maybe; /** Mutation for entities of type 'SystemUISymbolDefinition'. */ systemUISymbolDefinitions?: Maybe; /** Mutation for entities of type 'SystemUISymbolLibrary'. */ systemUISymbolLibrarys?: Maybe; }; type RuntimeRuntimeQueryArgsDto = { rtId: Scalars['OctoObjectId']['input']; }; type RuntimeModelQueryDto = { __typename?: 'RuntimeModelQuery'; basicAsset?: Maybe; basicCity?: Maybe; basicCountry?: Maybe; basicDistrict?: Maybe; basicDocument?: Maybe; basicEmployee?: Maybe; basicNamedEntity?: Maybe; basicState?: Maybe; basicTree?: Maybe; basicTreeNode?: Maybe; industryBasicAlarm?: Maybe; industryBasicEvent?: Maybe; industryBasicMachine?: Maybe; industryBasicRuntimeVariable?: Maybe; industryEnergyDemandResponseEvent?: Maybe; industryEnergyEnergyConsumer?: Maybe; industryEnergyEnergyCost?: Maybe; industryEnergyEnergyForecast?: Maybe; industryEnergyEnergyMeter?: Maybe; industryEnergyEnergyPerformanceIndicator?: Maybe; industryEnergyEnergyStorage?: Maybe; industryEnergyInverter?: Maybe; industryEnergyPhotovoltaicSystem?: Maybe; industryEnergyPhotovoltaicSystemModule?: Maybe; industryEnergyPhotovoltaicSystemString?: Maybe; industryFluidHeatMeter?: Maybe; industryFluidWaterMeter?: Maybe; industryMaintenanceAccount?: Maybe; industryMaintenanceCostCenter?: Maybe; industryMaintenanceEmployee?: Maybe; industryMaintenanceEnergyBalance?: Maybe; industryMaintenanceJournalEntry?: Maybe; industryMaintenanceOrder?: Maybe; industryMaintenanceOrderCosts?: Maybe; industryMaintenanceOrderFeedback?: Maybe; industryMaintenanceWorkplace?: Maybe; octoSdkDemoCustomer?: Maybe; octoSdkDemoMeteringPoint?: Maybe; octoSdkDemoOperatingFacility?: Maybe; runtimeEntities?: Maybe; runtimeQuery?: Maybe; systemAggregationRtQuery?: Maybe; systemAggregationSdQuery?: Maybe; systemAutoIncrement?: Maybe; systemBotAttributeAggregateConfiguration?: Maybe; systemBotFixup?: Maybe; systemCommunicationAdapter?: Maybe; systemCommunicationAiConfiguration?: Maybe; systemCommunicationDataFlow?: Maybe; systemCommunicationDataPointMapping?: Maybe; systemCommunicationDeployableEntity?: Maybe; systemCommunicationDiscordConfiguration?: Maybe; systemCommunicationEMailReceiverConfiguration?: Maybe; systemCommunicationEMailSenderConfiguration?: Maybe; systemCommunicationEdaConfiguration?: Maybe; systemCommunicationEnergyCommunityConfiguration?: Maybe; systemCommunicationFinApiConfiguration?: Maybe; systemCommunicationGrafanaConfiguration?: Maybe; systemCommunicationLoxoneConfiguration?: Maybe; systemCommunicationMicrosoftGraphConfiguration?: Maybe; systemCommunicationPipeline?: Maybe; systemCommunicationPipelineExecution?: Maybe; systemCommunicationPipelineStatistics?: Maybe; systemCommunicationPipelineTrigger?: Maybe; systemCommunicationPool?: Maybe; systemCommunicationSapConfiguration?: Maybe; systemCommunicationServiceAccountConfiguration?: Maybe; systemCommunicationSftpConfiguration?: Maybe; systemCommunicationTag?: Maybe; systemConfiguration?: Maybe; systemDownsamplingSdQuery?: Maybe; systemEntity?: Maybe; systemGroupingAggregationRtQuery?: Maybe; systemGroupingAggregationSdQuery?: Maybe; systemIdentityApiResource?: Maybe; systemIdentityApiScope?: Maybe; systemIdentityAzureEntraIdIdentityProvider?: Maybe; systemIdentityClient?: Maybe; systemIdentityEmailDomainGroupRule?: Maybe; systemIdentityExternalTenantUserMapping?: Maybe; systemIdentityFacebookIdentityProvider?: Maybe; systemIdentityGoogleIdentityProvider?: Maybe; systemIdentityGroup?: Maybe; systemIdentityIdentityProvider?: Maybe; systemIdentityIdentityResource?: Maybe; systemIdentityMailNotificationConfiguration?: Maybe; systemIdentityMicrosoftAdIdentityProvider?: Maybe; systemIdentityMicrosoftIdentityProvider?: Maybe; systemIdentityOctoTenantIdentityProvider?: Maybe; systemIdentityOpenLdapIdentityProvider?: Maybe; systemIdentityPermission?: Maybe; systemIdentityPermissionRole?: Maybe; systemIdentityPersistedGrant?: Maybe; systemIdentityResource?: Maybe; systemIdentityRole?: Maybe; systemIdentityUser?: Maybe; systemMigrationHistory?: Maybe; systemNotificationCssTemplateConfiguration?: Maybe; systemNotificationEvent?: Maybe; systemNotificationNotificationTemplate?: Maybe; systemNotificationStatefulEvent?: Maybe; systemPersistentQuery?: Maybe; systemReportingConnectionInfo?: Maybe; systemReportingFileSystemContainer?: Maybe; systemReportingFileSystemEntity?: Maybe; systemReportingFileSystemItem?: Maybe; systemReportingFolder?: Maybe; systemReportingFolderRoot?: Maybe; systemSimpleRtQuery?: Maybe; systemSimpleSdQuery?: Maybe; systemStreamDataQuery?: Maybe; systemTenant?: Maybe; systemTenantConfiguration?: Maybe; systemTenantModeConfiguration?: Maybe; systemUIBranding?: Maybe; systemUIDashboard?: Maybe; systemUIDashboardWidget?: Maybe; systemUIProcessDiagram?: Maybe; systemUISymbolDefinition?: Maybe; systemUISymbolLibrary?: Maybe; systemUIUIElement?: Maybe; /** Transient runtime queries */ transientQuery: RtTransientDto; }; type RuntimeModelQueryBasicAssetArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryBasicCityArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryBasicCountryArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryBasicDistrictArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryBasicDocumentArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryBasicEmployeeArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryBasicNamedEntityArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryBasicStateArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryBasicTreeArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryBasicTreeNodeArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryIndustryBasicAlarmArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryIndustryBasicEventArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryIndustryBasicMachineArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryIndustryBasicRuntimeVariableArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryIndustryEnergyDemandResponseEventArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryIndustryEnergyEnergyConsumerArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryIndustryEnergyEnergyCostArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryIndustryEnergyEnergyForecastArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryIndustryEnergyEnergyMeterArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryIndustryEnergyEnergyPerformanceIndicatorArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryIndustryEnergyEnergyStorageArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryIndustryEnergyInverterArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryIndustryEnergyPhotovoltaicSystemArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryIndustryEnergyPhotovoltaicSystemModuleArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryIndustryEnergyPhotovoltaicSystemStringArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryIndustryFluidHeatMeterArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryIndustryFluidWaterMeterArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryIndustryMaintenanceAccountArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryIndustryMaintenanceCostCenterArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryIndustryMaintenanceEmployeeArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryIndustryMaintenanceEnergyBalanceArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryIndustryMaintenanceJournalEntryArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryIndustryMaintenanceOrderArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryIndustryMaintenanceOrderCostsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryIndustryMaintenanceOrderFeedbackArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryIndustryMaintenanceWorkplaceArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryOctoSdkDemoCustomerArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryOctoSdkDemoMeteringPointArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryOctoSdkDemoOperatingFacilityArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryRuntimeEntitiesArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryRuntimeQueryArgsDto = { after?: InputMaybe; first?: InputMaybe; rtId: Scalars['OctoObjectId']['input']; }; type RuntimeModelQuerySystemAggregationRtQueryArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemAggregationSdQueryArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemAutoIncrementArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemBotAttributeAggregateConfigurationArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemBotFixupArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemCommunicationAdapterArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemCommunicationAiConfigurationArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemCommunicationDataFlowArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemCommunicationDataPointMappingArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemCommunicationDeployableEntityArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemCommunicationDiscordConfigurationArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemCommunicationEMailReceiverConfigurationArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemCommunicationEMailSenderConfigurationArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemCommunicationEdaConfigurationArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemCommunicationEnergyCommunityConfigurationArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemCommunicationFinApiConfigurationArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemCommunicationGrafanaConfigurationArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemCommunicationLoxoneConfigurationArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemCommunicationMicrosoftGraphConfigurationArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemCommunicationPipelineArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemCommunicationPipelineExecutionArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemCommunicationPipelineStatisticsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemCommunicationPipelineTriggerArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemCommunicationPoolArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemCommunicationSapConfigurationArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemCommunicationServiceAccountConfigurationArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemCommunicationSftpConfigurationArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemCommunicationTagArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemConfigurationArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemDownsamplingSdQueryArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemEntityArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemGroupingAggregationRtQueryArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemGroupingAggregationSdQueryArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemIdentityApiResourceArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemIdentityApiScopeArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemIdentityAzureEntraIdIdentityProviderArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemIdentityClientArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemIdentityEmailDomainGroupRuleArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemIdentityExternalTenantUserMappingArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemIdentityFacebookIdentityProviderArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemIdentityGoogleIdentityProviderArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemIdentityGroupArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemIdentityIdentityProviderArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemIdentityIdentityResourceArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemIdentityMailNotificationConfigurationArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemIdentityMicrosoftAdIdentityProviderArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemIdentityMicrosoftIdentityProviderArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemIdentityOctoTenantIdentityProviderArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemIdentityOpenLdapIdentityProviderArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemIdentityPermissionArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemIdentityPermissionRoleArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemIdentityPersistedGrantArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemIdentityResourceArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemIdentityRoleArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemIdentityUserArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemMigrationHistoryArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemNotificationCssTemplateConfigurationArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemNotificationEventArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemNotificationNotificationTemplateArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemNotificationStatefulEventArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemPersistentQueryArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemReportingConnectionInfoArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemReportingFileSystemContainerArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemReportingFileSystemEntityArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemReportingFileSystemItemArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemReportingFolderArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemReportingFolderRootArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemSimpleRtQueryArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemSimpleSdQueryArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemStreamDataQueryArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemTenantArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemTenantConfigurationArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemTenantModeConfigurationArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemUiBrandingArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemUiDashboardArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemUiDashboardWidgetArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemUiProcessDiagramArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemUiSymbolDefinitionArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemUiSymbolLibraryArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemUiuiElementArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type SearchFilterDto = { attributePaths?: InputMaybe>>; language?: InputMaybe; searchTerm: Scalars['String']['input']; type?: InputMaybe; }; /** 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) */ declare enum SearchFilterTypesDto { AttributeFilterDto = "ATTRIBUTE_FILTER", TextSearchDto = "TEXT_SEARCH" } type SortDto = { attributePath: Scalars['String']['input']; sortOrder?: InputMaybe; }; /** Defines the sort order */ declare enum SortOrderDto { AscendingDto = "ASCENDING", DescendingDto = "DESCENDING" } /** Defines the sort order */ declare enum SortOrdersDto { AscendingDto = "ASCENDING", DefaultDto = "DEFAULT", DescendingDto = "DESCENDING" } type StreamDataArgumentsDto = { from?: InputMaybe; interval?: InputMaybe; limit?: InputMaybe; queryMode: QueryModeDto; to?: InputMaybe; }; /** A stream-data row returned by the generic StreamDataEntities endpoint. */ type StreamDataEntityGenericDto = { __typename?: 'StreamDataEntityGeneric'; /** Selected attribute cells for this row. */ cells?: Maybe; ckTypeId?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId?: Maybe; rtWellKnownName?: Maybe; timestamp?: Maybe; }; /** A stream-data row returned by the generic StreamDataEntities endpoint. */ type StreamDataEntityGenericCellsArgsDto = { after?: InputMaybe; first?: InputMaybe; }; /** A connection from an object to a list of objects of type `StreamDataEntityGenericDto`. */ type StreamDataEntityGenericDtoConnectionDto = { __typename?: 'StreamDataEntityGenericDtoConnection'; /** A list of all of the edges returned in the connection. */ edges?: Maybe>>; /** 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. */ items?: Maybe>; /** Information to aid in pagination. */ pageInfo: PageInfoDto; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `StreamDataEntityGenericDto`. */ type StreamDataEntityGenericDtoEdgeDto = { __typename?: 'StreamDataEntityGenericDtoEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node: StreamDataEntityGenericDto; }; type StreamDataModelQueryDto = { __typename?: 'StreamDataModelQuery'; industryBasicAlarm?: Maybe; industryBasicEvent?: Maybe; industryBasicMachine?: Maybe; industryBasicRuntimeVariable?: Maybe; industryEnergyEnergyConsumer?: Maybe; industryEnergyEnergyCost?: Maybe; industryEnergyEnergyForecast?: Maybe; industryEnergyEnergyMeter?: Maybe; industryEnergyEnergyPerformanceIndicator?: Maybe; industryEnergyEnergyStorage?: Maybe; industryEnergyInverter?: Maybe; industryEnergyPhotovoltaicSystemModule?: Maybe; industryEnergyPhotovoltaicSystemString?: Maybe; industryFluidHeatMeter?: Maybe; industryFluidWaterMeter?: Maybe; /** Generic stream-data entity connection. Supply the CK type at query time. */ streamDataEntities?: Maybe; streamDataQuery?: Maybe; /** Transient stream-data queries */ transientStreamDataQuery: StreamDataTransientDto; }; type StreamDataModelQueryIndustryBasicAlarmArgsDto = { after?: InputMaybe; arg?: InputMaybe; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; sortOrder?: InputMaybe>>; }; type StreamDataModelQueryIndustryBasicEventArgsDto = { after?: InputMaybe; arg?: InputMaybe; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; sortOrder?: InputMaybe>>; }; type StreamDataModelQueryIndustryBasicMachineArgsDto = { after?: InputMaybe; arg?: InputMaybe; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; sortOrder?: InputMaybe>>; }; type StreamDataModelQueryIndustryBasicRuntimeVariableArgsDto = { after?: InputMaybe; arg?: InputMaybe; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; sortOrder?: InputMaybe>>; }; type StreamDataModelQueryIndustryEnergyEnergyConsumerArgsDto = { after?: InputMaybe; arg?: InputMaybe; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; sortOrder?: InputMaybe>>; }; type StreamDataModelQueryIndustryEnergyEnergyCostArgsDto = { after?: InputMaybe; arg?: InputMaybe; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; sortOrder?: InputMaybe>>; }; type StreamDataModelQueryIndustryEnergyEnergyForecastArgsDto = { after?: InputMaybe; arg?: InputMaybe; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; sortOrder?: InputMaybe>>; }; type StreamDataModelQueryIndustryEnergyEnergyMeterArgsDto = { after?: InputMaybe; arg?: InputMaybe; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; sortOrder?: InputMaybe>>; }; type StreamDataModelQueryIndustryEnergyEnergyPerformanceIndicatorArgsDto = { after?: InputMaybe; arg?: InputMaybe; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; sortOrder?: InputMaybe>>; }; type StreamDataModelQueryIndustryEnergyEnergyStorageArgsDto = { after?: InputMaybe; arg?: InputMaybe; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; sortOrder?: InputMaybe>>; }; type StreamDataModelQueryIndustryEnergyInverterArgsDto = { after?: InputMaybe; arg?: InputMaybe; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; sortOrder?: InputMaybe>>; }; type StreamDataModelQueryIndustryEnergyPhotovoltaicSystemModuleArgsDto = { after?: InputMaybe; arg?: InputMaybe; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; sortOrder?: InputMaybe>>; }; type StreamDataModelQueryIndustryEnergyPhotovoltaicSystemStringArgsDto = { after?: InputMaybe; arg?: InputMaybe; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; sortOrder?: InputMaybe>>; }; type StreamDataModelQueryIndustryFluidHeatMeterArgsDto = { after?: InputMaybe; arg?: InputMaybe; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; sortOrder?: InputMaybe>>; }; type StreamDataModelQueryIndustryFluidWaterMeterArgsDto = { after?: InputMaybe; arg?: InputMaybe; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; sortOrder?: InputMaybe>>; }; type StreamDataModelQueryStreamDataEntitiesArgsDto = { after?: InputMaybe; arg?: InputMaybe; ckId: Scalars['String']['input']; columnPaths: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtIds?: InputMaybe>>; sortOrder?: InputMaybe>>; }; type StreamDataModelQueryStreamDataQueryArgsDto = { after?: InputMaybe; first?: InputMaybe; rtId: Scalars['OctoObjectId']['input']; }; /** Descriptor for a persisted stream-data query. Use the Rows sub-connection to execute the query and the Aggregations sub-connection to compute statistics over the same data. */ type StreamDataQueryDto = { __typename?: 'StreamDataQuery'; /** Computes statistical aggregations over the same data set as the persisted query. */ aggregations?: Maybe; associatedCkTypeId: Scalars['RtCkTypeId']['output']; columns: Array; queryRtId: Scalars['OctoObjectId']['output']; /** Executes the persisted stream-data query and returns the result rows. Accepts optional runtime overrides for the time range, limit, and sort order. */ rows?: Maybe; }; /** Descriptor for a persisted stream-data query. Use the Rows sub-connection to execute the query and the Aggregations sub-connection to compute statistics over the same data. */ type StreamDataQueryAggregationsArgsDto = { after?: InputMaybe; aggregations: ResultAggregationInputDto; first?: InputMaybe; }; /** Descriptor for a persisted stream-data query. Use the Rows sub-connection to execute the query and the Aggregations sub-connection to compute statistics over the same data. */ type StreamDataQueryRowsArgsDto = { after?: InputMaybe; arg?: InputMaybe; first?: InputMaybe; sortOrder?: InputMaybe>>; }; type StreamDataQueryColumnInputDto = { aggregationType: AggregationTypeDto; attributePath: Scalars['String']['input']; }; /** A connection from an object to a list of objects of type `StreamDataQueryDto`. */ type StreamDataQueryDtoConnectionDto = { __typename?: 'StreamDataQueryDtoConnection'; /** A list of all of the edges returned in the connection. */ edges?: Maybe>>; /** 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. */ items?: Maybe>; /** Information to aid in pagination. */ pageInfo: PageInfoDto; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `StreamDataQueryDto`. */ type StreamDataQueryDtoEdgeDto = { __typename?: 'StreamDataQueryDtoEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node: StreamDataQueryDto; }; /** A single row in a stream data query result. */ type StreamDataQueryRowDto = { __typename?: 'StreamDataQueryRow'; /** The data cells for this row, one per selected column. */ cells?: Maybe; ckTypeId?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId?: Maybe; rtWellKnownName?: Maybe; timestamp?: Maybe; }; /** A single row in a stream data query result. */ type StreamDataQueryRowCellsArgsDto = { after?: InputMaybe; first?: InputMaybe; }; /** A connection from an object to a list of objects of type `StreamDataQueryRowDto`. */ type StreamDataQueryRowDtoConnectionDto = { __typename?: 'StreamDataQueryRowDtoConnection'; /** A list of all of the edges returned in the connection. */ edges?: Maybe>>; /** 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. */ items?: Maybe>; /** Information to aid in pagination. */ pageInfo: PageInfoDto; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `StreamDataQueryRowDto`. */ type StreamDataQueryRowDtoEdgeDto = { __typename?: 'StreamDataQueryRowDtoEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node: StreamDataQueryRowDto; }; /** Transient stream-data queries constructed ad-hoc at execution time. */ type StreamDataTransientDto = { __typename?: 'StreamDataTransient'; /** Transient aggregation stream-data query. */ aggregation?: Maybe; /** Transient downsampling stream-data query — divides the time range into equal buckets. */ downsampling?: Maybe; /** Transient grouped-aggregation stream-data query. */ groupingAggregation?: Maybe; /** Transient simple stream-data query — projects raw attribute values. */ simple?: Maybe; }; /** Transient stream-data queries constructed ad-hoc at execution time. */ type StreamDataTransientAggregationArgsDto = { after?: InputMaybe; arg?: InputMaybe; ckId: Scalars['String']['input']; columnPaths: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtIds?: InputMaybe>>; }; /** Transient stream-data queries constructed ad-hoc at execution time. */ type StreamDataTransientDownsamplingArgsDto = { after?: InputMaybe; ckId: Scalars['String']['input']; columnPaths: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; from: Scalars['DateTime']['input']; limit: Scalars['Int']['input']; rtIds?: InputMaybe>>; to: Scalars['DateTime']['input']; }; /** Transient stream-data queries constructed ad-hoc at execution time. */ type StreamDataTransientGroupingAggregationArgsDto = { after?: InputMaybe; arg?: InputMaybe; ckId: Scalars['String']['input']; columnPaths: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; groupByColumnPaths: Array; rtIds?: InputMaybe>>; }; /** Transient stream-data queries constructed ad-hoc at execution time. */ type StreamDataTransientSimpleArgsDto = { after?: InputMaybe; arg?: InputMaybe; ckId: Scalars['String']['input']; columnPaths: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtIds?: InputMaybe>>; sortOrder?: InputMaybe>>; }; /** Descriptor for a transient (ad-hoc) stream-data query. Use the Rows sub-connection to execute the query and the Aggregations sub-connection to compute statistics over the same data. */ type StreamDataTransientQueryDto = { __typename?: 'StreamDataTransientQuery'; /** Computes statistical aggregations over the same data set as the transient query. */ aggregations?: Maybe; columns: Array; queryCkTypeId: Scalars['RtCkTypeId']['output']; /** Executes the transient stream-data query and returns the result rows. */ rows?: Maybe; }; /** Descriptor for a transient (ad-hoc) stream-data query. Use the Rows sub-connection to execute the query and the Aggregations sub-connection to compute statistics over the same data. */ type StreamDataTransientQueryAggregationsArgsDto = { after?: InputMaybe; aggregations: ResultAggregationInputDto; first?: InputMaybe; }; /** Descriptor for a transient (ad-hoc) stream-data query. Use the Rows sub-connection to execute the query and the Aggregations sub-connection to compute statistics over the same data. */ type StreamDataTransientQueryRowsArgsDto = { after?: InputMaybe; arg?: InputMaybe; first?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection from an object to a list of objects of type `StreamDataTransientQueryDto`. */ type StreamDataTransientQueryDtoConnectionDto = { __typename?: 'StreamDataTransientQueryDtoConnection'; /** A list of all of the edges returned in the connection. */ edges?: Maybe>>; /** 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. */ items?: Maybe>; /** Information to aid in pagination. */ pageInfo: PageInfoDto; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `StreamDataTransientQueryDto`. */ type StreamDataTransientQueryDtoEdgeDto = { __typename?: 'StreamDataTransientQueryDtoEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node: StreamDataTransientQueryDto; }; /** Runtime entities of construction kit record 'System/AggregationQueryColumn' */ type SystemAggregationQueryColumnDto = { __typename?: 'SystemAggregationQueryColumn'; aggregationType: SystemAggregationTypesDto; attributePath: Scalars['String']['output']; constructionKitType?: Maybe; }; type SystemAggregationQueryColumnInputDto = { aggregationType?: InputMaybe; attributePath?: InputMaybe; }; /** Runtime entities of construction kit type 'System-2.0.9/AggregationRtQuery-1' */ type SystemAggregationRtQueryDto = SystemEntityInterfaceDto & SystemPersistentQueryInterfaceDto & { __typename?: 'SystemAggregationRtQuery'; associations?: Maybe; attributeSearchFilter?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; columns: Array; configuredBy?: Maybe; constructionKitType?: Maybe; description?: Maybe; fieldFilter?: Maybe>; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; navigationFilterMode?: Maybe; queryCkTypeId: Scalars['String']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; textSearchFilter?: Maybe; }; /** Runtime entities of construction kit type 'System-2.0.9/AggregationRtQuery-1' */ type SystemAggregationRtQueryAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/AggregationRtQuery-1' */ type SystemAggregationRtQueryConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/AggregationRtQuery-1' */ type SystemAggregationRtQueryMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/AggregationRtQuery-1' */ type SystemAggregationRtQueryMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/AggregationRtQuery-1' */ type SystemAggregationRtQueryRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/AggregationRtQuery-1' */ type SystemAggregationRtQueryRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/AggregationRtQuery-1' */ type SystemAggregationRtQueryTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemAggregationRtQuery`. */ type SystemAggregationRtQueryConnectionDto = { __typename?: 'SystemAggregationRtQueryConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemAggregationRtQuery`. */ type SystemAggregationRtQueryEdgeDto = { __typename?: 'SystemAggregationRtQueryEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemAggregationRtQueryInputDto = { attributeSearchFilter?: InputMaybe; columns?: InputMaybe>>; configuredBy?: InputMaybe>>; description?: InputMaybe; fieldFilter?: InputMaybe>>; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; navigationFilterMode?: InputMaybe; queryCkTypeId?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; textSearchFilter?: InputMaybe; }; type SystemAggregationRtQueryInputUpdateDto = { /** Item to update */ item: SystemAggregationRtQueryInputDto; rtId?: InputMaybe; }; type SystemAggregationRtQueryMutationsDto = { __typename?: 'SystemAggregationRtQueryMutations'; /** Creates new entities of type 'SystemAggregationRtQuery'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemAggregationRtQuery'. */ update?: Maybe>>; }; type SystemAggregationRtQueryMutationsCreateArgsDto = { entities: Array>; }; type SystemAggregationRtQueryMutationsUpdateArgsDto = { entities: Array>; }; type SystemAggregationRtQueryUpdateDto = { __typename?: 'SystemAggregationRtQueryUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemAggregationRtQueryUpdateMessageDto = { __typename?: 'SystemAggregationRtQueryUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/AggregationSdQuery-1' */ type SystemAggregationSdQueryDto = SystemEntityInterfaceDto & SystemPersistentQueryInterfaceDto & SystemStreamDataQueryInterfaceDto & { __typename?: 'SystemAggregationSdQuery'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; columns: Array; configuredBy?: Maybe; constructionKitType?: Maybe; description?: Maybe; fieldFilter?: Maybe>; from?: Maybe; limit?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; navigationFilterMode?: Maybe; queryCkTypeId: Scalars['String']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtIds?: Maybe>; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; to?: Maybe; }; /** Runtime entities of construction kit type 'System-2.0.9/AggregationSdQuery-1' */ type SystemAggregationSdQueryAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/AggregationSdQuery-1' */ type SystemAggregationSdQueryConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/AggregationSdQuery-1' */ type SystemAggregationSdQueryMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/AggregationSdQuery-1' */ type SystemAggregationSdQueryMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/AggregationSdQuery-1' */ type SystemAggregationSdQueryRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/AggregationSdQuery-1' */ type SystemAggregationSdQueryRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/AggregationSdQuery-1' */ type SystemAggregationSdQueryTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemAggregationSdQuery`. */ type SystemAggregationSdQueryConnectionDto = { __typename?: 'SystemAggregationSdQueryConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemAggregationSdQuery`. */ type SystemAggregationSdQueryEdgeDto = { __typename?: 'SystemAggregationSdQueryEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemAggregationSdQueryInputDto = { columns?: InputMaybe>>; configuredBy?: InputMaybe>>; description?: InputMaybe; fieldFilter?: InputMaybe>>; from?: InputMaybe; limit?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; navigationFilterMode?: InputMaybe; queryCkTypeId?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtIds?: InputMaybe>; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; to?: InputMaybe; }; type SystemAggregationSdQueryInputUpdateDto = { /** Item to update */ item: SystemAggregationSdQueryInputDto; rtId?: InputMaybe; }; type SystemAggregationSdQueryMutationsDto = { __typename?: 'SystemAggregationSdQueryMutations'; /** Creates new entities of type 'SystemAggregationSdQuery'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemAggregationSdQuery'. */ update?: Maybe>>; }; type SystemAggregationSdQueryMutationsCreateArgsDto = { entities: Array>; }; type SystemAggregationSdQueryMutationsUpdateArgsDto = { entities: Array>; }; type SystemAggregationSdQueryUpdateDto = { __typename?: 'SystemAggregationSdQueryUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemAggregationSdQueryUpdateMessageDto = { __typename?: 'SystemAggregationSdQueryUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit enum 'System/AggregationTypes' */ declare enum SystemAggregationTypesDto { /** Calculates the average value */ AverageDto = "AVERAGE", /** Counts the number of items */ CountDto = "COUNT", /** Finds the maximum value */ MaximumDto = "MAXIMUM", /** Finds the minimum value */ MinimumDto = "MINIMUM", /** Calculates the sum of values */ SumDto = "SUM" } /** Runtime entities of construction kit record 'System/AttributeSearchFilter' */ type SystemAttributeSearchFilterDto = { __typename?: 'SystemAttributeSearchFilter'; attributePaths: Array; constructionKitType?: Maybe; searchValue: Scalars['String']['output']; }; type SystemAttributeSearchFilterInputDto = { attributePaths?: InputMaybe>; searchValue?: InputMaybe; }; /** Runtime entities of construction kit type 'System-2.0.9/AutoIncrement-1' */ type SystemAutoIncrementDto = SystemEntityInterfaceDto & { __typename?: 'SystemAutoIncrement'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; currentValue: Scalars['Int']['output']; end: Scalars['Int']['output']; format?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System-2.0.9/AutoIncrement-1' */ type SystemAutoIncrementAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/AutoIncrement-1' */ type SystemAutoIncrementConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/AutoIncrement-1' */ type SystemAutoIncrementMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/AutoIncrement-1' */ type SystemAutoIncrementMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/AutoIncrement-1' */ type SystemAutoIncrementRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/AutoIncrement-1' */ type SystemAutoIncrementRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/AutoIncrement-1' */ type SystemAutoIncrementTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemAutoIncrement`. */ type SystemAutoIncrementConnectionDto = { __typename?: 'SystemAutoIncrementConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemAutoIncrement`. */ type SystemAutoIncrementEdgeDto = { __typename?: 'SystemAutoIncrementEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemAutoIncrementInputDto = { configuredBy?: InputMaybe>>; currentValue?: InputMaybe; end?: InputMaybe; format?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; }; type SystemAutoIncrementInputUpdateDto = { /** Item to update */ item: SystemAutoIncrementInputDto; rtId?: InputMaybe; }; type SystemAutoIncrementMutationsDto = { __typename?: 'SystemAutoIncrementMutations'; /** Creates new entities of type 'SystemAutoIncrement'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemAutoIncrement'. */ update?: Maybe>>; }; type SystemAutoIncrementMutationsCreateArgsDto = { entities: Array>; }; type SystemAutoIncrementMutationsUpdateArgsDto = { entities: Array>; }; type SystemAutoIncrementUpdateDto = { __typename?: 'SystemAutoIncrementUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemAutoIncrementUpdateMessageDto = { __typename?: 'SystemAutoIncrementUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'System.Bot-3.1.1/AttributeAggregateConfiguration-1' */ type SystemBotAttributeAggregateConfigurationDto = SystemEntityInterfaceDto & { __typename?: 'SystemBotAttributeAggregateConfiguration'; associations?: Maybe; autoCompleteFilter: Scalars['String']['output']; autoCompleteLimit: Scalars['Int']['output']; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; configures?: Maybe; constructionKitType?: Maybe; isAutoCompleteEnabled: Scalars['Boolean']['output']; mapsFrom?: Maybe; mapsTo?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Bot-3.1.1/AttributeAggregateConfiguration-1' */ type SystemBotAttributeAggregateConfigurationAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Bot-3.1.1/AttributeAggregateConfiguration-1' */ type SystemBotAttributeAggregateConfigurationConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Bot-3.1.1/AttributeAggregateConfiguration-1' */ type SystemBotAttributeAggregateConfigurationConfiguresArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Bot-3.1.1/AttributeAggregateConfiguration-1' */ type SystemBotAttributeAggregateConfigurationMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Bot-3.1.1/AttributeAggregateConfiguration-1' */ type SystemBotAttributeAggregateConfigurationMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Bot-3.1.1/AttributeAggregateConfiguration-1' */ type SystemBotAttributeAggregateConfigurationRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Bot-3.1.1/AttributeAggregateConfiguration-1' */ type SystemBotAttributeAggregateConfigurationRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Bot-3.1.1/AttributeAggregateConfiguration-1' */ type SystemBotAttributeAggregateConfigurationTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemBotAttributeAggregateConfiguration`. */ type SystemBotAttributeAggregateConfigurationConnectionDto = { __typename?: 'SystemBotAttributeAggregateConfigurationConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemBotAttributeAggregateConfiguration`. */ type SystemBotAttributeAggregateConfigurationEdgeDto = { __typename?: 'SystemBotAttributeAggregateConfigurationEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemBotAttributeAggregateConfigurationInputDto = { autoCompleteFilter?: InputMaybe; autoCompleteLimit?: InputMaybe; configuredBy?: InputMaybe>>; configures?: InputMaybe>>; isAutoCompleteEnabled?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; }; type SystemBotAttributeAggregateConfigurationInputUpdateDto = { /** Item to update */ item: SystemBotAttributeAggregateConfigurationInputDto; rtId?: InputMaybe; }; type SystemBotAttributeAggregateConfigurationMutationsDto = { __typename?: 'SystemBotAttributeAggregateConfigurationMutations'; /** Creates new entities of type 'SystemBotAttributeAggregateConfiguration'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemBotAttributeAggregateConfiguration'. */ update?: Maybe>>; }; type SystemBotAttributeAggregateConfigurationMutationsCreateArgsDto = { entities: Array>; }; type SystemBotAttributeAggregateConfigurationMutationsUpdateArgsDto = { entities: Array>; }; type SystemBotAttributeAggregateConfigurationUpdateDto = { __typename?: 'SystemBotAttributeAggregateConfigurationUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemBotAttributeAggregateConfigurationUpdateMessageDto = { __typename?: 'SystemBotAttributeAggregateConfigurationUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Union of types derived from System.Bot/AttributeAggregateConfiguration for ConfiguredBy association */ type SystemBotAttributeAggregateConfiguration_ConfiguredByUnionDto = SystemBotAttributeAggregateConfigurationDto; /** A connection to `SystemBotAttributeAggregateConfiguration_ConfiguredByUnion`. */ type SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto = { __typename?: 'SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemBotAttributeAggregateConfiguration_ConfiguredByUnion`. */ type SystemBotAttributeAggregateConfiguration_ConfiguredByUnionEdgeDto = { __typename?: 'SystemBotAttributeAggregateConfiguration_ConfiguredByUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Runtime entities of construction kit type 'System.Bot-3.1.1/Fixup-1' */ type SystemBotFixupDto = SystemEntityInterfaceDto & { __typename?: 'SystemBotFixup'; appliedAt?: Maybe; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; enabled: Scalars['Boolean']['output']; error?: Maybe; isApplied: Scalars['Boolean']['output']; isSuccess?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; order: Scalars['Int']['output']; output?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; script: Scalars['String']['output']; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Bot-3.1.1/Fixup-1' */ type SystemBotFixupAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Bot-3.1.1/Fixup-1' */ type SystemBotFixupConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Bot-3.1.1/Fixup-1' */ type SystemBotFixupMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Bot-3.1.1/Fixup-1' */ type SystemBotFixupMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Bot-3.1.1/Fixup-1' */ type SystemBotFixupRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Bot-3.1.1/Fixup-1' */ type SystemBotFixupRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Bot-3.1.1/Fixup-1' */ type SystemBotFixupTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemBotFixup`. */ type SystemBotFixupConnectionDto = { __typename?: 'SystemBotFixupConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemBotFixup`. */ type SystemBotFixupEdgeDto = { __typename?: 'SystemBotFixupEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemBotFixupInputDto = { appliedAt?: InputMaybe; configuredBy?: InputMaybe>>; enabled?: InputMaybe; error?: InputMaybe; isApplied?: InputMaybe; isSuccess?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; order?: InputMaybe; output?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; script?: InputMaybe; taggedBy?: InputMaybe>>; }; type SystemBotFixupInputUpdateDto = { /** Item to update */ item: SystemBotFixupInputDto; rtId?: InputMaybe; }; type SystemBotFixupMutationsDto = { __typename?: 'SystemBotFixupMutations'; /** Creates new entities of type 'SystemBotFixup'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemBotFixup'. */ update?: Maybe>>; }; type SystemBotFixupMutationsCreateArgsDto = { entities: Array>; }; type SystemBotFixupMutationsUpdateArgsDto = { entities: Array>; }; type SystemBotFixupUpdateDto = { __typename?: 'SystemBotFixupUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemBotFixupUpdateMessageDto = { __typename?: 'SystemBotFixupUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/Adapter-1' */ type SystemCommunicationAdapterDto = SystemCommunicationDeployableEntityInterfaceDto & SystemEntityInterfaceDto & { __typename?: 'SystemCommunicationAdapter'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; communicationState: SystemCommunicationCommunicationStateDto; communicationStateTimestamp?: Maybe; configuration?: Maybe; configurationState: SystemCommunicationConfigurationStateDto; configuredBy?: Maybe; constructionKitType?: Maybe; deploymentState: SystemCommunicationDeploymentStateDto; description?: Maybe; executes?: Maybe; executingAdapter?: Maybe; imageName?: Maybe; imageVersion?: Maybe; lastSyncedSequenceNumber: Scalars['Int']['output']; managedBy?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; name?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; statusMessage?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/Adapter-1' */ type SystemCommunicationAdapterAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/Adapter-1' */ type SystemCommunicationAdapterConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/Adapter-1' */ type SystemCommunicationAdapterExecutesArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/Adapter-1' */ type SystemCommunicationAdapterExecutingAdapterArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/Adapter-1' */ type SystemCommunicationAdapterManagedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/Adapter-1' */ type SystemCommunicationAdapterMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/Adapter-1' */ type SystemCommunicationAdapterMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/Adapter-1' */ type SystemCommunicationAdapterRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/Adapter-1' */ type SystemCommunicationAdapterRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/Adapter-1' */ type SystemCommunicationAdapterTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemCommunicationAdapter`. */ type SystemCommunicationAdapterConnectionDto = { __typename?: 'SystemCommunicationAdapterConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemCommunicationAdapter`. */ type SystemCommunicationAdapterEdgeDto = { __typename?: 'SystemCommunicationAdapterEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemCommunicationAdapterInputDto = { communicationState?: InputMaybe; communicationStateTimestamp?: InputMaybe; configuration?: InputMaybe; configurationState?: InputMaybe; configuredBy?: InputMaybe>>; deploymentState?: InputMaybe; description?: InputMaybe; executes?: InputMaybe>>; executingAdapter?: InputMaybe>>; imageName?: InputMaybe; imageVersion?: InputMaybe; lastSyncedSequenceNumber?: InputMaybe; managedBy?: InputMaybe>>; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; statusMessage?: InputMaybe; taggedBy?: InputMaybe>>; }; type SystemCommunicationAdapterInputUpdateDto = { /** Item to update */ item: SystemCommunicationAdapterInputDto; rtId?: InputMaybe; }; type SystemCommunicationAdapterMutationsDto = { __typename?: 'SystemCommunicationAdapterMutations'; /** Creates new entities of type 'SystemCommunicationAdapter'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemCommunicationAdapter'. */ update?: Maybe>>; }; type SystemCommunicationAdapterMutationsCreateArgsDto = { entities: Array>; }; type SystemCommunicationAdapterMutationsUpdateArgsDto = { entities: Array>; }; type SystemCommunicationAdapterUpdateDto = { __typename?: 'SystemCommunicationAdapterUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemCommunicationAdapterUpdateMessageDto = { __typename?: 'SystemCommunicationAdapterUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Union of types derived from System.Communication/Adapter for AdapterExecutions association */ type SystemCommunicationAdapter_AdapterExecutionsUnionDto = SystemCommunicationAdapterDto; /** A connection to `SystemCommunicationAdapter_AdapterExecutionsUnion`. */ type SystemCommunicationAdapter_AdapterExecutionsUnionConnectionDto = { __typename?: 'SystemCommunicationAdapter_AdapterExecutionsUnionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemCommunicationAdapter_AdapterExecutionsUnion`. */ type SystemCommunicationAdapter_AdapterExecutionsUnionEdgeDto = { __typename?: 'SystemCommunicationAdapter_AdapterExecutionsUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Union of types derived from System.Communication/Adapter for ExecutedBy association */ type SystemCommunicationAdapter_ExecutedByUnionDto = SystemCommunicationAdapterDto; /** A connection to `SystemCommunicationAdapter_ExecutedByUnion`. */ type SystemCommunicationAdapter_ExecutedByUnionConnectionDto = { __typename?: 'SystemCommunicationAdapter_ExecutedByUnionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemCommunicationAdapter_ExecutedByUnion`. */ type SystemCommunicationAdapter_ExecutedByUnionEdgeDto = { __typename?: 'SystemCommunicationAdapter_ExecutedByUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Union of types derived from System.Communication/Adapter for Manages association */ type SystemCommunicationAdapter_ManagesUnionDto = SystemCommunicationAdapterDto; /** A connection to `SystemCommunicationAdapter_ManagesUnion`. */ type SystemCommunicationAdapter_ManagesUnionConnectionDto = { __typename?: 'SystemCommunicationAdapter_ManagesUnionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemCommunicationAdapter_ManagesUnion`. */ type SystemCommunicationAdapter_ManagesUnionEdgeDto = { __typename?: 'SystemCommunicationAdapter_ManagesUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/AiConfiguration-1' */ type SystemCommunicationAiConfigurationDto = SystemConfigurationInterfaceDto & SystemEntityInterfaceDto & { __typename?: 'SystemCommunicationAiConfiguration'; aiModel?: Maybe; apiKey: Scalars['String']['output']; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; maxTokens?: Maybe; mcpServerUrl?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; temperature?: Maybe; usedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/AiConfiguration-1' */ type SystemCommunicationAiConfigurationAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/AiConfiguration-1' */ type SystemCommunicationAiConfigurationConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/AiConfiguration-1' */ type SystemCommunicationAiConfigurationMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/AiConfiguration-1' */ type SystemCommunicationAiConfigurationMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/AiConfiguration-1' */ type SystemCommunicationAiConfigurationRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/AiConfiguration-1' */ type SystemCommunicationAiConfigurationRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/AiConfiguration-1' */ type SystemCommunicationAiConfigurationTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/AiConfiguration-1' */ type SystemCommunicationAiConfigurationUsedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemCommunicationAiConfiguration`. */ type SystemCommunicationAiConfigurationConnectionDto = { __typename?: 'SystemCommunicationAiConfigurationConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemCommunicationAiConfiguration`. */ type SystemCommunicationAiConfigurationEdgeDto = { __typename?: 'SystemCommunicationAiConfigurationEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemCommunicationAiConfigurationInputDto = { aiModel?: InputMaybe; apiKey?: InputMaybe; configuredBy?: InputMaybe>>; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; maxTokens?: InputMaybe; mcpServerUrl?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; temperature?: InputMaybe; usedBy?: InputMaybe>>; }; type SystemCommunicationAiConfigurationInputUpdateDto = { /** Item to update */ item: SystemCommunicationAiConfigurationInputDto; rtId?: InputMaybe; }; type SystemCommunicationAiConfigurationMutationsDto = { __typename?: 'SystemCommunicationAiConfigurationMutations'; /** Creates new entities of type 'SystemCommunicationAiConfiguration'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemCommunicationAiConfiguration'. */ update?: Maybe>>; }; type SystemCommunicationAiConfigurationMutationsCreateArgsDto = { entities: Array>; }; type SystemCommunicationAiConfigurationMutationsUpdateArgsDto = { entities: Array>; }; type SystemCommunicationAiConfigurationUpdateDto = { __typename?: 'SystemCommunicationAiConfigurationUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemCommunicationAiConfigurationUpdateMessageDto = { __typename?: 'SystemCommunicationAiConfigurationUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit enum 'System.Communication/CommunicationState' */ declare enum SystemCommunicationCommunicationStateDto { OfflineDto = "OFFLINE", OnlineDto = "ONLINE", UnregisteredDto = "UNREGISTERED" } /** Runtime entities of construction kit enum 'System.Communication/ConfigurationState' */ declare enum SystemCommunicationConfigurationStateDto { ConfiguredDto = "CONFIGURED", ErrorDto = "ERROR", PendingDto = "PENDING", UnconfiguredDto = "UNCONFIGURED" } /** Runtime entities of construction kit type 'System.Communication-3.13.2/DataFlow-1' */ type SystemCommunicationDataFlowDto = SystemEntityInterfaceDto & { __typename?: 'SystemCommunicationDataFlow'; associations?: Maybe; children?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; description?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/DataFlow-1' */ type SystemCommunicationDataFlowAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/DataFlow-1' */ type SystemCommunicationDataFlowChildrenArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/DataFlow-1' */ type SystemCommunicationDataFlowConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/DataFlow-1' */ type SystemCommunicationDataFlowMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/DataFlow-1' */ type SystemCommunicationDataFlowMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/DataFlow-1' */ type SystemCommunicationDataFlowRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/DataFlow-1' */ type SystemCommunicationDataFlowRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/DataFlow-1' */ type SystemCommunicationDataFlowTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemCommunicationDataFlow`. */ type SystemCommunicationDataFlowConnectionDto = { __typename?: 'SystemCommunicationDataFlowConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemCommunicationDataFlow`. */ type SystemCommunicationDataFlowEdgeDto = { __typename?: 'SystemCommunicationDataFlowEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemCommunicationDataFlowInputDto = { children?: InputMaybe>>; configuredBy?: InputMaybe>>; description?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; }; type SystemCommunicationDataFlowInputUpdateDto = { /** Item to update */ item: SystemCommunicationDataFlowInputDto; rtId?: InputMaybe; }; type SystemCommunicationDataFlowMutationsDto = { __typename?: 'SystemCommunicationDataFlowMutations'; /** Creates new entities of type 'SystemCommunicationDataFlow'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemCommunicationDataFlow'. */ update?: Maybe>>; }; type SystemCommunicationDataFlowMutationsCreateArgsDto = { entities: Array>; }; type SystemCommunicationDataFlowMutationsUpdateArgsDto = { entities: Array>; }; type SystemCommunicationDataFlowUpdateDto = { __typename?: 'SystemCommunicationDataFlowUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemCommunicationDataFlowUpdateMessageDto = { __typename?: 'SystemCommunicationDataFlowUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Union of types derived from System.Communication/DataFlow for Parent association */ type SystemCommunicationDataFlow_ParentUnionDto = SystemCommunicationDataFlowDto; /** A connection to `SystemCommunicationDataFlow_ParentUnion`. */ type SystemCommunicationDataFlow_ParentUnionConnectionDto = { __typename?: 'SystemCommunicationDataFlow_ParentUnionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemCommunicationDataFlow_ParentUnion`. */ type SystemCommunicationDataFlow_ParentUnionEdgeDto = { __typename?: 'SystemCommunicationDataFlow_ParentUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Runtime entities of construction kit record 'System.Communication/DataPoint' */ type SystemCommunicationDataPointDto = { __typename?: 'SystemCommunicationDataPoint'; constructionKitType?: Maybe; currentValue?: Maybe; externalId: Scalars['String']['output']; lastUpdate?: Maybe; name: Scalars['String']['output']; }; type SystemCommunicationDataPointInputDto = { currentValue?: InputMaybe; externalId?: InputMaybe; lastUpdate?: InputMaybe; name?: InputMaybe; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/DataPointMapping-1' */ type SystemCommunicationDataPointMappingDto = SystemEntityInterfaceDto & { __typename?: 'SystemCommunicationDataPointMapping'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; enabled: Scalars['Boolean']['output']; mappedAsSource?: Maybe; mappedAsTarget?: Maybe; mappingExpression?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; name?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; sourceAttributePath?: Maybe; taggedBy?: Maybe; targetAttributePath?: Maybe; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/DataPointMapping-1' */ type SystemCommunicationDataPointMappingAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/DataPointMapping-1' */ type SystemCommunicationDataPointMappingConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/DataPointMapping-1' */ type SystemCommunicationDataPointMappingMappedAsSourceArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/DataPointMapping-1' */ type SystemCommunicationDataPointMappingMappedAsTargetArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/DataPointMapping-1' */ type SystemCommunicationDataPointMappingMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/DataPointMapping-1' */ type SystemCommunicationDataPointMappingMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/DataPointMapping-1' */ type SystemCommunicationDataPointMappingRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/DataPointMapping-1' */ type SystemCommunicationDataPointMappingRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/DataPointMapping-1' */ type SystemCommunicationDataPointMappingTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemCommunicationDataPointMapping`. */ type SystemCommunicationDataPointMappingConnectionDto = { __typename?: 'SystemCommunicationDataPointMappingConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemCommunicationDataPointMapping`. */ type SystemCommunicationDataPointMappingEdgeDto = { __typename?: 'SystemCommunicationDataPointMappingEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemCommunicationDataPointMappingInputDto = { configuredBy?: InputMaybe>>; enabled?: InputMaybe; mappedAsSource?: InputMaybe>>; mappedAsTarget?: InputMaybe>>; mappingExpression?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; sourceAttributePath?: InputMaybe; taggedBy?: InputMaybe>>; targetAttributePath?: InputMaybe; }; type SystemCommunicationDataPointMappingInputUpdateDto = { /** Item to update */ item: SystemCommunicationDataPointMappingInputDto; rtId?: InputMaybe; }; type SystemCommunicationDataPointMappingMutationsDto = { __typename?: 'SystemCommunicationDataPointMappingMutations'; /** Creates new entities of type 'SystemCommunicationDataPointMapping'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemCommunicationDataPointMapping'. */ update?: Maybe>>; }; type SystemCommunicationDataPointMappingMutationsCreateArgsDto = { entities: Array>; }; type SystemCommunicationDataPointMappingMutationsUpdateArgsDto = { entities: Array>; }; type SystemCommunicationDataPointMappingUpdateDto = { __typename?: 'SystemCommunicationDataPointMappingUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemCommunicationDataPointMappingUpdateMessageDto = { __typename?: 'SystemCommunicationDataPointMappingUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Union of types derived from System.Communication/DataPointMapping for MapsFrom association */ type SystemCommunicationDataPointMapping_MapsFromUnionDto = SystemCommunicationDataPointMappingDto; /** A connection to `SystemCommunicationDataPointMapping_MapsFromUnion`. */ type SystemCommunicationDataPointMapping_MapsFromUnionConnectionDto = { __typename?: 'SystemCommunicationDataPointMapping_MapsFromUnionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemCommunicationDataPointMapping_MapsFromUnion`. */ type SystemCommunicationDataPointMapping_MapsFromUnionEdgeDto = { __typename?: 'SystemCommunicationDataPointMapping_MapsFromUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Union of types derived from System.Communication/DataPointMapping for MapsTo association */ type SystemCommunicationDataPointMapping_MapsToUnionDto = SystemCommunicationDataPointMappingDto; /** A connection to `SystemCommunicationDataPointMapping_MapsToUnion`. */ type SystemCommunicationDataPointMapping_MapsToUnionConnectionDto = { __typename?: 'SystemCommunicationDataPointMapping_MapsToUnionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemCommunicationDataPointMapping_MapsToUnion`. */ type SystemCommunicationDataPointMapping_MapsToUnionEdgeDto = { __typename?: 'SystemCommunicationDataPointMapping_MapsToUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/DeployableEntity-1' */ type SystemCommunicationDeployableEntityDto = SystemEntityInterfaceDto & { __typename?: 'SystemCommunicationDeployableEntity'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; deploymentState: SystemCommunicationDeploymentStateDto; description?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; name?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; statusMessage?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/DeployableEntity-1' */ type SystemCommunicationDeployableEntityAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/DeployableEntity-1' */ type SystemCommunicationDeployableEntityConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/DeployableEntity-1' */ type SystemCommunicationDeployableEntityMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/DeployableEntity-1' */ type SystemCommunicationDeployableEntityMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/DeployableEntity-1' */ type SystemCommunicationDeployableEntityRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/DeployableEntity-1' */ type SystemCommunicationDeployableEntityRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/DeployableEntity-1' */ type SystemCommunicationDeployableEntityTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemCommunicationDeployableEntity`. */ type SystemCommunicationDeployableEntityConnectionDto = { __typename?: 'SystemCommunicationDeployableEntityConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemCommunicationDeployableEntity`. */ type SystemCommunicationDeployableEntityEdgeDto = { __typename?: 'SystemCommunicationDeployableEntityEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Interface for runtime entities of construction kit type 'System.Communication-3.13.2/DeployableEntity-1' */ type SystemCommunicationDeployableEntityInterfaceDto = { ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; deploymentState: SystemCommunicationDeploymentStateDto; description?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; name?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; statusMessage?: Maybe; taggedBy?: Maybe; }; /** Interface for runtime entities of construction kit type 'System.Communication-3.13.2/DeployableEntity-1' */ type SystemCommunicationDeployableEntityInterfaceConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Interface for runtime entities of construction kit type 'System.Communication-3.13.2/DeployableEntity-1' */ type SystemCommunicationDeployableEntityInterfaceMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Interface for runtime entities of construction kit type 'System.Communication-3.13.2/DeployableEntity-1' */ type SystemCommunicationDeployableEntityInterfaceMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Interface for runtime entities of construction kit type 'System.Communication-3.13.2/DeployableEntity-1' */ type SystemCommunicationDeployableEntityInterfaceRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Interface for runtime entities of construction kit type 'System.Communication-3.13.2/DeployableEntity-1' */ type SystemCommunicationDeployableEntityInterfaceRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Interface for runtime entities of construction kit type 'System.Communication-3.13.2/DeployableEntity-1' */ type SystemCommunicationDeployableEntityInterfaceTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type SystemCommunicationDeployableEntityUpdateDto = { __typename?: 'SystemCommunicationDeployableEntityUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemCommunicationDeployableEntityUpdateMessageDto = { __typename?: 'SystemCommunicationDeployableEntityUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit enum 'System.Communication/DeploymentState' */ declare enum SystemCommunicationDeploymentStateDto { DeployedDto = "DEPLOYED", ErrorDto = "ERROR", PendingDto = "PENDING", UndeployedDto = "UNDEPLOYED" } /** Runtime entities of construction kit type 'System.Communication-3.13.2/DiscordConfiguration-1' */ type SystemCommunicationDiscordConfigurationDto = SystemConfigurationInterfaceDto & SystemEntityInterfaceDto & { __typename?: 'SystemCommunicationDiscordConfiguration'; associations?: Maybe; botToken: Scalars['String']['output']; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; guildId?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; usedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/DiscordConfiguration-1' */ type SystemCommunicationDiscordConfigurationAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/DiscordConfiguration-1' */ type SystemCommunicationDiscordConfigurationConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/DiscordConfiguration-1' */ type SystemCommunicationDiscordConfigurationMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/DiscordConfiguration-1' */ type SystemCommunicationDiscordConfigurationMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/DiscordConfiguration-1' */ type SystemCommunicationDiscordConfigurationRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/DiscordConfiguration-1' */ type SystemCommunicationDiscordConfigurationRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/DiscordConfiguration-1' */ type SystemCommunicationDiscordConfigurationTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/DiscordConfiguration-1' */ type SystemCommunicationDiscordConfigurationUsedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemCommunicationDiscordConfiguration`. */ type SystemCommunicationDiscordConfigurationConnectionDto = { __typename?: 'SystemCommunicationDiscordConfigurationConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemCommunicationDiscordConfiguration`. */ type SystemCommunicationDiscordConfigurationEdgeDto = { __typename?: 'SystemCommunicationDiscordConfigurationEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemCommunicationDiscordConfigurationInputDto = { botToken?: InputMaybe; configuredBy?: InputMaybe>>; guildId?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; usedBy?: InputMaybe>>; }; type SystemCommunicationDiscordConfigurationInputUpdateDto = { /** Item to update */ item: SystemCommunicationDiscordConfigurationInputDto; rtId?: InputMaybe; }; type SystemCommunicationDiscordConfigurationMutationsDto = { __typename?: 'SystemCommunicationDiscordConfigurationMutations'; /** Creates new entities of type 'SystemCommunicationDiscordConfiguration'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemCommunicationDiscordConfiguration'. */ update?: Maybe>>; }; type SystemCommunicationDiscordConfigurationMutationsCreateArgsDto = { entities: Array>; }; type SystemCommunicationDiscordConfigurationMutationsUpdateArgsDto = { entities: Array>; }; type SystemCommunicationDiscordConfigurationUpdateDto = { __typename?: 'SystemCommunicationDiscordConfigurationUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemCommunicationDiscordConfigurationUpdateMessageDto = { __typename?: 'SystemCommunicationDiscordConfigurationUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/EMailReceiverConfiguration-1' */ type SystemCommunicationEMailReceiverConfigurationDto = SystemConfigurationInterfaceDto & SystemEntityInterfaceDto & { __typename?: 'SystemCommunicationEMailReceiverConfiguration'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; folder?: Maybe; host: Scalars['String']['output']; isSslEnabled: Scalars['Boolean']['output']; mapsFrom?: Maybe; mapsTo?: Maybe; password: Scalars['String']['output']; port: Scalars['Int']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; usedBy?: Maybe; username: Scalars['String']['output']; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/EMailReceiverConfiguration-1' */ type SystemCommunicationEMailReceiverConfigurationAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/EMailReceiverConfiguration-1' */ type SystemCommunicationEMailReceiverConfigurationConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/EMailReceiverConfiguration-1' */ type SystemCommunicationEMailReceiverConfigurationMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/EMailReceiverConfiguration-1' */ type SystemCommunicationEMailReceiverConfigurationMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/EMailReceiverConfiguration-1' */ type SystemCommunicationEMailReceiverConfigurationRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/EMailReceiverConfiguration-1' */ type SystemCommunicationEMailReceiverConfigurationRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/EMailReceiverConfiguration-1' */ type SystemCommunicationEMailReceiverConfigurationTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/EMailReceiverConfiguration-1' */ type SystemCommunicationEMailReceiverConfigurationUsedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemCommunicationEMailReceiverConfiguration`. */ type SystemCommunicationEMailReceiverConfigurationConnectionDto = { __typename?: 'SystemCommunicationEMailReceiverConfigurationConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemCommunicationEMailReceiverConfiguration`. */ type SystemCommunicationEMailReceiverConfigurationEdgeDto = { __typename?: 'SystemCommunicationEMailReceiverConfigurationEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemCommunicationEMailReceiverConfigurationInputDto = { configuredBy?: InputMaybe>>; folder?: InputMaybe; host?: InputMaybe; isSslEnabled?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; password?: InputMaybe; port?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; usedBy?: InputMaybe>>; username?: InputMaybe; }; type SystemCommunicationEMailReceiverConfigurationInputUpdateDto = { /** Item to update */ item: SystemCommunicationEMailReceiverConfigurationInputDto; rtId?: InputMaybe; }; type SystemCommunicationEMailReceiverConfigurationMutationsDto = { __typename?: 'SystemCommunicationEMailReceiverConfigurationMutations'; /** Creates new entities of type 'SystemCommunicationEMailReceiverConfiguration'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemCommunicationEMailReceiverConfiguration'. */ update?: Maybe>>; }; type SystemCommunicationEMailReceiverConfigurationMutationsCreateArgsDto = { entities: Array>; }; type SystemCommunicationEMailReceiverConfigurationMutationsUpdateArgsDto = { entities: Array>; }; type SystemCommunicationEMailReceiverConfigurationUpdateDto = { __typename?: 'SystemCommunicationEMailReceiverConfigurationUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemCommunicationEMailReceiverConfigurationUpdateMessageDto = { __typename?: 'SystemCommunicationEMailReceiverConfigurationUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/EMailSenderConfiguration-1' */ type SystemCommunicationEMailSenderConfigurationDto = SystemConfigurationInterfaceDto & SystemEntityInterfaceDto & { __typename?: 'SystemCommunicationEMailSenderConfiguration'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; host: Scalars['String']['output']; isSslEnabled: Scalars['Boolean']['output']; mapsFrom?: Maybe; mapsTo?: Maybe; password: Scalars['String']['output']; port: Scalars['Int']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; senderEmail?: Maybe; taggedBy?: Maybe; usedBy?: Maybe; username: Scalars['String']['output']; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/EMailSenderConfiguration-1' */ type SystemCommunicationEMailSenderConfigurationAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/EMailSenderConfiguration-1' */ type SystemCommunicationEMailSenderConfigurationConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/EMailSenderConfiguration-1' */ type SystemCommunicationEMailSenderConfigurationMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/EMailSenderConfiguration-1' */ type SystemCommunicationEMailSenderConfigurationMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/EMailSenderConfiguration-1' */ type SystemCommunicationEMailSenderConfigurationRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/EMailSenderConfiguration-1' */ type SystemCommunicationEMailSenderConfigurationRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/EMailSenderConfiguration-1' */ type SystemCommunicationEMailSenderConfigurationTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/EMailSenderConfiguration-1' */ type SystemCommunicationEMailSenderConfigurationUsedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemCommunicationEMailSenderConfiguration`. */ type SystemCommunicationEMailSenderConfigurationConnectionDto = { __typename?: 'SystemCommunicationEMailSenderConfigurationConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemCommunicationEMailSenderConfiguration`. */ type SystemCommunicationEMailSenderConfigurationEdgeDto = { __typename?: 'SystemCommunicationEMailSenderConfigurationEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemCommunicationEMailSenderConfigurationInputDto = { configuredBy?: InputMaybe>>; host?: InputMaybe; isSslEnabled?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; password?: InputMaybe; port?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; senderEmail?: InputMaybe; taggedBy?: InputMaybe>>; usedBy?: InputMaybe>>; username?: InputMaybe; }; type SystemCommunicationEMailSenderConfigurationInputUpdateDto = { /** Item to update */ item: SystemCommunicationEMailSenderConfigurationInputDto; rtId?: InputMaybe; }; type SystemCommunicationEMailSenderConfigurationMutationsDto = { __typename?: 'SystemCommunicationEMailSenderConfigurationMutations'; /** Creates new entities of type 'SystemCommunicationEMailSenderConfiguration'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemCommunicationEMailSenderConfiguration'. */ update?: Maybe>>; }; type SystemCommunicationEMailSenderConfigurationMutationsCreateArgsDto = { entities: Array>; }; type SystemCommunicationEMailSenderConfigurationMutationsUpdateArgsDto = { entities: Array>; }; type SystemCommunicationEMailSenderConfigurationUpdateDto = { __typename?: 'SystemCommunicationEMailSenderConfigurationUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemCommunicationEMailSenderConfigurationUpdateMessageDto = { __typename?: 'SystemCommunicationEMailSenderConfigurationUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/EdaConfiguration-1' */ type SystemCommunicationEdaConfigurationDto = SystemConfigurationInterfaceDto & SystemEntityInterfaceDto & { __typename?: 'SystemCommunicationEdaConfiguration'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; partnerId: Scalars['String']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; usedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/EdaConfiguration-1' */ type SystemCommunicationEdaConfigurationAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/EdaConfiguration-1' */ type SystemCommunicationEdaConfigurationConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/EdaConfiguration-1' */ type SystemCommunicationEdaConfigurationMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/EdaConfiguration-1' */ type SystemCommunicationEdaConfigurationMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/EdaConfiguration-1' */ type SystemCommunicationEdaConfigurationRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/EdaConfiguration-1' */ type SystemCommunicationEdaConfigurationRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/EdaConfiguration-1' */ type SystemCommunicationEdaConfigurationTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/EdaConfiguration-1' */ type SystemCommunicationEdaConfigurationUsedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemCommunicationEdaConfiguration`. */ type SystemCommunicationEdaConfigurationConnectionDto = { __typename?: 'SystemCommunicationEdaConfigurationConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemCommunicationEdaConfiguration`. */ type SystemCommunicationEdaConfigurationEdgeDto = { __typename?: 'SystemCommunicationEdaConfigurationEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemCommunicationEdaConfigurationInputDto = { configuredBy?: InputMaybe>>; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; partnerId?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; usedBy?: InputMaybe>>; }; type SystemCommunicationEdaConfigurationInputUpdateDto = { /** Item to update */ item: SystemCommunicationEdaConfigurationInputDto; rtId?: InputMaybe; }; type SystemCommunicationEdaConfigurationMutationsDto = { __typename?: 'SystemCommunicationEdaConfigurationMutations'; /** Creates new entities of type 'SystemCommunicationEdaConfiguration'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemCommunicationEdaConfiguration'. */ update?: Maybe>>; }; type SystemCommunicationEdaConfigurationMutationsCreateArgsDto = { entities: Array>; }; type SystemCommunicationEdaConfigurationMutationsUpdateArgsDto = { entities: Array>; }; type SystemCommunicationEdaConfigurationUpdateDto = { __typename?: 'SystemCommunicationEdaConfigurationUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemCommunicationEdaConfigurationUpdateMessageDto = { __typename?: 'SystemCommunicationEdaConfigurationUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/EnergyCommunityConfiguration-1' */ type SystemCommunicationEnergyCommunityConfigurationDto = SystemConfigurationInterfaceDto & SystemEntityInterfaceDto & { __typename?: 'SystemCommunicationEnergyCommunityConfiguration'; appHeading?: Maybe; appTitle?: Maybe; associations?: Maybe; backgroundColor?: Maybe; billingReportName?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; colors?: Maybe; configuredBy?: Maybe; constructionKitType?: Maybe; consumerPrice: Scalars['Decimal']['output']; consumptionRecordRequestDelay: Scalars['Int']['output']; energyCommunityId: Scalars['String']['output']; farmerTaxRate: Scalars['Decimal']['output']; favicon?: Maybe; footerGradientEnd?: Maybe; footerGradientStart?: Maybe; footerLogo?: Maybe; headerGradientEnd?: Maybe; headerGradientStart?: Maybe; headerLogo?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; name?: Maybe; partnerId: Scalars['String']['output']; producerPrice: Scalars['Decimal']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; taxRate: Scalars['Decimal']['output']; usedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/EnergyCommunityConfiguration-1' */ type SystemCommunicationEnergyCommunityConfigurationAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/EnergyCommunityConfiguration-1' */ type SystemCommunicationEnergyCommunityConfigurationConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/EnergyCommunityConfiguration-1' */ type SystemCommunicationEnergyCommunityConfigurationMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/EnergyCommunityConfiguration-1' */ type SystemCommunicationEnergyCommunityConfigurationMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/EnergyCommunityConfiguration-1' */ type SystemCommunicationEnergyCommunityConfigurationRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/EnergyCommunityConfiguration-1' */ type SystemCommunicationEnergyCommunityConfigurationRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/EnergyCommunityConfiguration-1' */ type SystemCommunicationEnergyCommunityConfigurationTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/EnergyCommunityConfiguration-1' */ type SystemCommunicationEnergyCommunityConfigurationUsedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemCommunicationEnergyCommunityConfiguration`. */ type SystemCommunicationEnergyCommunityConfigurationConnectionDto = { __typename?: 'SystemCommunicationEnergyCommunityConfigurationConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemCommunicationEnergyCommunityConfiguration`. */ type SystemCommunicationEnergyCommunityConfigurationEdgeDto = { __typename?: 'SystemCommunicationEnergyCommunityConfigurationEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemCommunicationEnergyCommunityConfigurationInputDto = { appHeading?: InputMaybe; appTitle?: InputMaybe; backgroundColor?: InputMaybe; billingReportName?: InputMaybe; colors?: InputMaybe; configuredBy?: InputMaybe>>; consumerPrice?: InputMaybe; consumptionRecordRequestDelay?: InputMaybe; energyCommunityId?: InputMaybe; farmerTaxRate?: InputMaybe; favicon?: InputMaybe; footerGradientEnd?: InputMaybe; footerGradientStart?: InputMaybe; footerLogo?: InputMaybe; headerGradientEnd?: InputMaybe; headerGradientStart?: InputMaybe; headerLogo?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; partnerId?: InputMaybe; producerPrice?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; taxRate?: InputMaybe; usedBy?: InputMaybe>>; }; type SystemCommunicationEnergyCommunityConfigurationInputUpdateDto = { /** Item to update */ item: SystemCommunicationEnergyCommunityConfigurationInputDto; rtId?: InputMaybe; }; type SystemCommunicationEnergyCommunityConfigurationMutationsDto = { __typename?: 'SystemCommunicationEnergyCommunityConfigurationMutations'; /** Creates new entities of type 'SystemCommunicationEnergyCommunityConfiguration'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemCommunicationEnergyCommunityConfiguration'. */ update?: Maybe>>; }; type SystemCommunicationEnergyCommunityConfigurationMutationsCreateArgsDto = { entities: Array>; }; type SystemCommunicationEnergyCommunityConfigurationMutationsUpdateArgsDto = { entities: Array>; }; type SystemCommunicationEnergyCommunityConfigurationUpdateDto = { __typename?: 'SystemCommunicationEnergyCommunityConfigurationUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemCommunicationEnergyCommunityConfigurationUpdateMessageDto = { __typename?: 'SystemCommunicationEnergyCommunityConfigurationUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/FinApiConfiguration-1' */ type SystemCommunicationFinApiConfigurationDto = SystemConfigurationInterfaceDto & SystemEntityInterfaceDto & { __typename?: 'SystemCommunicationFinApiConfiguration'; associations?: Maybe; baseUrl: Scalars['String']['output']; ckTypeId: Scalars['RtCkTypeId']['output']; clientId: Scalars['String']['output']; clientSecret: Scalars['String']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; isSandbox?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; password: Scalars['String']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; usedBy?: Maybe; username: Scalars['String']['output']; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/FinApiConfiguration-1' */ type SystemCommunicationFinApiConfigurationAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/FinApiConfiguration-1' */ type SystemCommunicationFinApiConfigurationConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/FinApiConfiguration-1' */ type SystemCommunicationFinApiConfigurationMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/FinApiConfiguration-1' */ type SystemCommunicationFinApiConfigurationMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/FinApiConfiguration-1' */ type SystemCommunicationFinApiConfigurationRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/FinApiConfiguration-1' */ type SystemCommunicationFinApiConfigurationRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/FinApiConfiguration-1' */ type SystemCommunicationFinApiConfigurationTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/FinApiConfiguration-1' */ type SystemCommunicationFinApiConfigurationUsedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemCommunicationFinApiConfiguration`. */ type SystemCommunicationFinApiConfigurationConnectionDto = { __typename?: 'SystemCommunicationFinApiConfigurationConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemCommunicationFinApiConfiguration`. */ type SystemCommunicationFinApiConfigurationEdgeDto = { __typename?: 'SystemCommunicationFinApiConfigurationEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemCommunicationFinApiConfigurationInputDto = { baseUrl?: InputMaybe; clientId?: InputMaybe; clientSecret?: InputMaybe; configuredBy?: InputMaybe>>; isSandbox?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; password?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; usedBy?: InputMaybe>>; username?: InputMaybe; }; type SystemCommunicationFinApiConfigurationInputUpdateDto = { /** Item to update */ item: SystemCommunicationFinApiConfigurationInputDto; rtId?: InputMaybe; }; type SystemCommunicationFinApiConfigurationMutationsDto = { __typename?: 'SystemCommunicationFinApiConfigurationMutations'; /** Creates new entities of type 'SystemCommunicationFinApiConfiguration'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemCommunicationFinApiConfiguration'. */ update?: Maybe>>; }; type SystemCommunicationFinApiConfigurationMutationsCreateArgsDto = { entities: Array>; }; type SystemCommunicationFinApiConfigurationMutationsUpdateArgsDto = { entities: Array>; }; type SystemCommunicationFinApiConfigurationUpdateDto = { __typename?: 'SystemCommunicationFinApiConfigurationUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemCommunicationFinApiConfigurationUpdateMessageDto = { __typename?: 'SystemCommunicationFinApiConfigurationUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/GrafanaConfiguration-1' */ type SystemCommunicationGrafanaConfigurationDto = SystemConfigurationInterfaceDto & SystemEntityInterfaceDto & { __typename?: 'SystemCommunicationGrafanaConfiguration'; adminPassword: Scalars['String']['output']; adminUser: Scalars['String']['output']; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; grafanaUrl: Scalars['String']['output']; identityServerUrl: Scalars['String']['output']; mapsFrom?: Maybe; mapsTo?: Maybe; oAuthClientId?: Maybe; octoMeshUrl: Scalars['String']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; usedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/GrafanaConfiguration-1' */ type SystemCommunicationGrafanaConfigurationAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/GrafanaConfiguration-1' */ type SystemCommunicationGrafanaConfigurationConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/GrafanaConfiguration-1' */ type SystemCommunicationGrafanaConfigurationMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/GrafanaConfiguration-1' */ type SystemCommunicationGrafanaConfigurationMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/GrafanaConfiguration-1' */ type SystemCommunicationGrafanaConfigurationRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/GrafanaConfiguration-1' */ type SystemCommunicationGrafanaConfigurationRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/GrafanaConfiguration-1' */ type SystemCommunicationGrafanaConfigurationTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/GrafanaConfiguration-1' */ type SystemCommunicationGrafanaConfigurationUsedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemCommunicationGrafanaConfiguration`. */ type SystemCommunicationGrafanaConfigurationConnectionDto = { __typename?: 'SystemCommunicationGrafanaConfigurationConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemCommunicationGrafanaConfiguration`. */ type SystemCommunicationGrafanaConfigurationEdgeDto = { __typename?: 'SystemCommunicationGrafanaConfigurationEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemCommunicationGrafanaConfigurationInputDto = { adminPassword?: InputMaybe; adminUser?: InputMaybe; configuredBy?: InputMaybe>>; grafanaUrl?: InputMaybe; identityServerUrl?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; oAuthClientId?: InputMaybe; octoMeshUrl?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; usedBy?: InputMaybe>>; }; type SystemCommunicationGrafanaConfigurationInputUpdateDto = { /** Item to update */ item: SystemCommunicationGrafanaConfigurationInputDto; rtId?: InputMaybe; }; type SystemCommunicationGrafanaConfigurationMutationsDto = { __typename?: 'SystemCommunicationGrafanaConfigurationMutations'; /** Creates new entities of type 'SystemCommunicationGrafanaConfiguration'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemCommunicationGrafanaConfiguration'. */ update?: Maybe>>; }; type SystemCommunicationGrafanaConfigurationMutationsCreateArgsDto = { entities: Array>; }; type SystemCommunicationGrafanaConfigurationMutationsUpdateArgsDto = { entities: Array>; }; type SystemCommunicationGrafanaConfigurationUpdateDto = { __typename?: 'SystemCommunicationGrafanaConfigurationUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemCommunicationGrafanaConfigurationUpdateMessageDto = { __typename?: 'SystemCommunicationGrafanaConfigurationUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/LoxoneConfiguration-1' */ type SystemCommunicationLoxoneConfigurationDto = SystemConfigurationInterfaceDto & SystemEntityInterfaceDto & { __typename?: 'SystemCommunicationLoxoneConfiguration'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; host: Scalars['String']['output']; isSslEnabled: Scalars['Boolean']['output']; mappingTargets?: Maybe>; mapsFrom?: Maybe; mapsTo?: Maybe; password: Scalars['String']['output']; pollIntervalSeconds?: Maybe; port: Scalars['Int']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; usedBy?: Maybe; username: Scalars['String']['output']; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/LoxoneConfiguration-1' */ type SystemCommunicationLoxoneConfigurationAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/LoxoneConfiguration-1' */ type SystemCommunicationLoxoneConfigurationConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/LoxoneConfiguration-1' */ type SystemCommunicationLoxoneConfigurationMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/LoxoneConfiguration-1' */ type SystemCommunicationLoxoneConfigurationMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/LoxoneConfiguration-1' */ type SystemCommunicationLoxoneConfigurationRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/LoxoneConfiguration-1' */ type SystemCommunicationLoxoneConfigurationRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/LoxoneConfiguration-1' */ type SystemCommunicationLoxoneConfigurationTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/LoxoneConfiguration-1' */ type SystemCommunicationLoxoneConfigurationUsedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemCommunicationLoxoneConfiguration`. */ type SystemCommunicationLoxoneConfigurationConnectionDto = { __typename?: 'SystemCommunicationLoxoneConfigurationConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemCommunicationLoxoneConfiguration`. */ type SystemCommunicationLoxoneConfigurationEdgeDto = { __typename?: 'SystemCommunicationLoxoneConfigurationEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemCommunicationLoxoneConfigurationInputDto = { configuredBy?: InputMaybe>>; host?: InputMaybe; isSslEnabled?: InputMaybe; mappingTargets?: InputMaybe>>; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; password?: InputMaybe; pollIntervalSeconds?: InputMaybe; port?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; usedBy?: InputMaybe>>; username?: InputMaybe; }; type SystemCommunicationLoxoneConfigurationInputUpdateDto = { /** Item to update */ item: SystemCommunicationLoxoneConfigurationInputDto; rtId?: InputMaybe; }; type SystemCommunicationLoxoneConfigurationMutationsDto = { __typename?: 'SystemCommunicationLoxoneConfigurationMutations'; /** Creates new entities of type 'SystemCommunicationLoxoneConfiguration'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemCommunicationLoxoneConfiguration'. */ update?: Maybe>>; }; type SystemCommunicationLoxoneConfigurationMutationsCreateArgsDto = { entities: Array>; }; type SystemCommunicationLoxoneConfigurationMutationsUpdateArgsDto = { entities: Array>; }; type SystemCommunicationLoxoneConfigurationUpdateDto = { __typename?: 'SystemCommunicationLoxoneConfigurationUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemCommunicationLoxoneConfigurationUpdateMessageDto = { __typename?: 'SystemCommunicationLoxoneConfigurationUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit record 'System.Communication/MappingTarget' */ type SystemCommunicationMappingTargetDto = { __typename?: 'SystemCommunicationMappingTarget'; constructionKitType?: Maybe; externalId: Scalars['String']['output']; name?: Maybe; sourceIdentifier: Scalars['String']['output']; }; type SystemCommunicationMappingTargetInputDto = { externalId?: InputMaybe; name?: InputMaybe; sourceIdentifier?: InputMaybe; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/MicrosoftGraphConfiguration-1' */ type SystemCommunicationMicrosoftGraphConfigurationDto = SystemConfigurationInterfaceDto & SystemEntityInterfaceDto & { __typename?: 'SystemCommunicationMicrosoftGraphConfiguration'; associations?: Maybe; azureTenantId: Scalars['String']['output']; ckTypeId: Scalars['RtCkTypeId']['output']; clientId: Scalars['String']['output']; clientSecret: Scalars['String']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; usedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/MicrosoftGraphConfiguration-1' */ type SystemCommunicationMicrosoftGraphConfigurationAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/MicrosoftGraphConfiguration-1' */ type SystemCommunicationMicrosoftGraphConfigurationConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/MicrosoftGraphConfiguration-1' */ type SystemCommunicationMicrosoftGraphConfigurationMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/MicrosoftGraphConfiguration-1' */ type SystemCommunicationMicrosoftGraphConfigurationMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/MicrosoftGraphConfiguration-1' */ type SystemCommunicationMicrosoftGraphConfigurationRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/MicrosoftGraphConfiguration-1' */ type SystemCommunicationMicrosoftGraphConfigurationRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/MicrosoftGraphConfiguration-1' */ type SystemCommunicationMicrosoftGraphConfigurationTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/MicrosoftGraphConfiguration-1' */ type SystemCommunicationMicrosoftGraphConfigurationUsedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemCommunicationMicrosoftGraphConfiguration`. */ type SystemCommunicationMicrosoftGraphConfigurationConnectionDto = { __typename?: 'SystemCommunicationMicrosoftGraphConfigurationConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemCommunicationMicrosoftGraphConfiguration`. */ type SystemCommunicationMicrosoftGraphConfigurationEdgeDto = { __typename?: 'SystemCommunicationMicrosoftGraphConfigurationEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemCommunicationMicrosoftGraphConfigurationInputDto = { azureTenantId?: InputMaybe; clientId?: InputMaybe; clientSecret?: InputMaybe; configuredBy?: InputMaybe>>; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; usedBy?: InputMaybe>>; }; type SystemCommunicationMicrosoftGraphConfigurationInputUpdateDto = { /** Item to update */ item: SystemCommunicationMicrosoftGraphConfigurationInputDto; rtId?: InputMaybe; }; type SystemCommunicationMicrosoftGraphConfigurationMutationsDto = { __typename?: 'SystemCommunicationMicrosoftGraphConfigurationMutations'; /** Creates new entities of type 'SystemCommunicationMicrosoftGraphConfiguration'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemCommunicationMicrosoftGraphConfiguration'. */ update?: Maybe>>; }; type SystemCommunicationMicrosoftGraphConfigurationMutationsCreateArgsDto = { entities: Array>; }; type SystemCommunicationMicrosoftGraphConfigurationMutationsUpdateArgsDto = { entities: Array>; }; type SystemCommunicationMicrosoftGraphConfigurationUpdateDto = { __typename?: 'SystemCommunicationMicrosoftGraphConfigurationUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemCommunicationMicrosoftGraphConfigurationUpdateMessageDto = { __typename?: 'SystemCommunicationMicrosoftGraphConfigurationUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/Pipeline-1' */ type SystemCommunicationPipelineDto = SystemCommunicationDeployableEntityInterfaceDto & SystemEntityInterfaceDto & { __typename?: 'SystemCommunicationPipeline'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; deploymentState: SystemCommunicationDeploymentStateDto; description?: Maybe; enabled?: Maybe; executedBy?: Maybe; executedPipeline?: Maybe; isDebuggingEnabled?: Maybe; isUsing?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; name?: Maybe; parent?: Maybe; pipelineDefinition: Scalars['String']['output']; receivesDataFrom?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; sendsDataTo?: Maybe; statisticsForPipeline?: Maybe; statusMessage?: Maybe; taggedBy?: Maybe; triggers?: Maybe; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/Pipeline-1' */ type SystemCommunicationPipelineAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/Pipeline-1' */ type SystemCommunicationPipelineConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/Pipeline-1' */ type SystemCommunicationPipelineExecutedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/Pipeline-1' */ type SystemCommunicationPipelineExecutedPipelineArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/Pipeline-1' */ type SystemCommunicationPipelineIsUsingArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/Pipeline-1' */ type SystemCommunicationPipelineMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/Pipeline-1' */ type SystemCommunicationPipelineMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/Pipeline-1' */ type SystemCommunicationPipelineParentArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/Pipeline-1' */ type SystemCommunicationPipelineReceivesDataFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/Pipeline-1' */ type SystemCommunicationPipelineRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/Pipeline-1' */ type SystemCommunicationPipelineRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/Pipeline-1' */ type SystemCommunicationPipelineSendsDataToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/Pipeline-1' */ type SystemCommunicationPipelineStatisticsForPipelineArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/Pipeline-1' */ type SystemCommunicationPipelineTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/Pipeline-1' */ type SystemCommunicationPipelineTriggersArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemCommunicationPipeline`. */ type SystemCommunicationPipelineConnectionDto = { __typename?: 'SystemCommunicationPipelineConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemCommunicationPipeline`. */ type SystemCommunicationPipelineEdgeDto = { __typename?: 'SystemCommunicationPipelineEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/PipelineExecution-1' */ type SystemCommunicationPipelineExecutionDto = SystemEntityInterfaceDto & { __typename?: 'SystemCommunicationPipelineExecution'; adapterExecutions?: Maybe; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; completedAt?: Maybe; configuredBy?: Maybe; constructionKitType?: Maybe; durationMs?: Maybe; errorMessage?: Maybe; executionId: Scalars['String']['output']; inputData?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; outputData?: Maybe; pipelineExecutions?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; startedAt: Scalars['DateTime']['output']; status: SystemCommunicationPipelineExecutionStatusDto; taggedBy?: Maybe; triggerType: SystemCommunicationPipelineTriggerTypeDto; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/PipelineExecution-1' */ type SystemCommunicationPipelineExecutionAdapterExecutionsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/PipelineExecution-1' */ type SystemCommunicationPipelineExecutionAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/PipelineExecution-1' */ type SystemCommunicationPipelineExecutionConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/PipelineExecution-1' */ type SystemCommunicationPipelineExecutionMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/PipelineExecution-1' */ type SystemCommunicationPipelineExecutionMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/PipelineExecution-1' */ type SystemCommunicationPipelineExecutionPipelineExecutionsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/PipelineExecution-1' */ type SystemCommunicationPipelineExecutionRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/PipelineExecution-1' */ type SystemCommunicationPipelineExecutionRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/PipelineExecution-1' */ type SystemCommunicationPipelineExecutionTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemCommunicationPipelineExecution`. */ type SystemCommunicationPipelineExecutionConnectionDto = { __typename?: 'SystemCommunicationPipelineExecutionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemCommunicationPipelineExecution`. */ type SystemCommunicationPipelineExecutionEdgeDto = { __typename?: 'SystemCommunicationPipelineExecutionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemCommunicationPipelineExecutionInputDto = { adapterExecutions?: InputMaybe>>; completedAt?: InputMaybe; configuredBy?: InputMaybe>>; durationMs?: InputMaybe; errorMessage?: InputMaybe; executionId?: InputMaybe; inputData?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; outputData?: InputMaybe; pipelineExecutions?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; startedAt?: InputMaybe; status?: InputMaybe; taggedBy?: InputMaybe>>; triggerType?: InputMaybe; }; type SystemCommunicationPipelineExecutionInputUpdateDto = { /** Item to update */ item: SystemCommunicationPipelineExecutionInputDto; rtId?: InputMaybe; }; type SystemCommunicationPipelineExecutionMutationsDto = { __typename?: 'SystemCommunicationPipelineExecutionMutations'; /** Creates new entities of type 'SystemCommunicationPipelineExecution'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemCommunicationPipelineExecution'. */ update?: Maybe>>; }; type SystemCommunicationPipelineExecutionMutationsCreateArgsDto = { entities: Array>; }; type SystemCommunicationPipelineExecutionMutationsUpdateArgsDto = { entities: Array>; }; /** Runtime entities of construction kit enum 'System.Communication/PipelineExecutionStatus' */ declare enum SystemCommunicationPipelineExecutionStatusDto { CancelledDto = "CANCELLED", CompletedDto = "COMPLETED", FailedDto = "FAILED", InterruptedDto = "INTERRUPTED", RunningDto = "RUNNING" } type SystemCommunicationPipelineExecutionUpdateDto = { __typename?: 'SystemCommunicationPipelineExecutionUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemCommunicationPipelineExecutionUpdateMessageDto = { __typename?: 'SystemCommunicationPipelineExecutionUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Union of types derived from System.Communication/PipelineExecution for ExecutedPipeline association */ type SystemCommunicationPipelineExecution_ExecutedPipelineUnionDto = SystemCommunicationPipelineExecutionDto; /** A connection to `SystemCommunicationPipelineExecution_ExecutedPipelineUnion`. */ type SystemCommunicationPipelineExecution_ExecutedPipelineUnionConnectionDto = { __typename?: 'SystemCommunicationPipelineExecution_ExecutedPipelineUnionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemCommunicationPipelineExecution_ExecutedPipelineUnion`. */ type SystemCommunicationPipelineExecution_ExecutedPipelineUnionEdgeDto = { __typename?: 'SystemCommunicationPipelineExecution_ExecutedPipelineUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Union of types derived from System.Communication/PipelineExecution for ExecutingAdapter association */ type SystemCommunicationPipelineExecution_ExecutingAdapterUnionDto = SystemCommunicationPipelineExecutionDto; /** A connection to `SystemCommunicationPipelineExecution_ExecutingAdapterUnion`. */ type SystemCommunicationPipelineExecution_ExecutingAdapterUnionConnectionDto = { __typename?: 'SystemCommunicationPipelineExecution_ExecutingAdapterUnionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemCommunicationPipelineExecution_ExecutingAdapterUnion`. */ type SystemCommunicationPipelineExecution_ExecutingAdapterUnionEdgeDto = { __typename?: 'SystemCommunicationPipelineExecution_ExecutingAdapterUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemCommunicationPipelineInputDto = { configuredBy?: InputMaybe>>; deploymentState?: InputMaybe; description?: InputMaybe; enabled?: InputMaybe; executedBy?: InputMaybe>>; executedPipeline?: InputMaybe>>; isDebuggingEnabled?: InputMaybe; isUsing?: InputMaybe>>; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; parent?: InputMaybe>>; pipelineDefinition?: InputMaybe; receivesDataFrom?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; sendsDataTo?: InputMaybe>>; statisticsForPipeline?: InputMaybe>>; statusMessage?: InputMaybe; taggedBy?: InputMaybe>>; triggers?: InputMaybe>>; }; type SystemCommunicationPipelineInputUpdateDto = { /** Item to update */ item: SystemCommunicationPipelineInputDto; rtId?: InputMaybe; }; type SystemCommunicationPipelineMutationsDto = { __typename?: 'SystemCommunicationPipelineMutations'; /** Creates new entities of type 'SystemCommunicationPipeline'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemCommunicationPipeline'. */ update?: Maybe>>; }; type SystemCommunicationPipelineMutationsCreateArgsDto = { entities: Array>; }; type SystemCommunicationPipelineMutationsUpdateArgsDto = { entities: Array>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/PipelineStatistics-1' */ type SystemCommunicationPipelineStatisticsDto = SystemEntityInterfaceDto & { __typename?: 'SystemCommunicationPipelineStatistics'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; last12HoursAvgDurationMs: Scalars['Int']['output']; last12HoursFailureCount: Scalars['Int']['output']; last12HoursSuccessCount: Scalars['Int']['output']; last24HoursAvgDurationMs: Scalars['Int']['output']; last24HoursFailureCount: Scalars['Int']['output']; last24HoursSuccessCount: Scalars['Int']['output']; last30DaysAvgDurationMs: Scalars['Int']['output']; last30DaysFailureCount: Scalars['Int']['output']; last30DaysSuccessCount: Scalars['Int']['output']; lastExecutionAt?: Maybe; lastHourAvgDurationMs: Scalars['Int']['output']; lastHourFailureCount: Scalars['Int']['output']; lastHourSuccessCount: Scalars['Int']['output']; lastUpdatedAt?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; pipelineStatistics?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/PipelineStatistics-1' */ type SystemCommunicationPipelineStatisticsAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/PipelineStatistics-1' */ type SystemCommunicationPipelineStatisticsConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/PipelineStatistics-1' */ type SystemCommunicationPipelineStatisticsMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/PipelineStatistics-1' */ type SystemCommunicationPipelineStatisticsMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/PipelineStatistics-1' */ type SystemCommunicationPipelineStatisticsPipelineStatisticsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/PipelineStatistics-1' */ type SystemCommunicationPipelineStatisticsRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/PipelineStatistics-1' */ type SystemCommunicationPipelineStatisticsRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/PipelineStatistics-1' */ type SystemCommunicationPipelineStatisticsTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemCommunicationPipelineStatistics`. */ type SystemCommunicationPipelineStatisticsConnectionDto = { __typename?: 'SystemCommunicationPipelineStatisticsConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemCommunicationPipelineStatistics`. */ type SystemCommunicationPipelineStatisticsEdgeDto = { __typename?: 'SystemCommunicationPipelineStatisticsEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemCommunicationPipelineStatisticsInputDto = { configuredBy?: InputMaybe>>; last12HoursAvgDurationMs?: InputMaybe; last12HoursFailureCount?: InputMaybe; last12HoursSuccessCount?: InputMaybe; last24HoursAvgDurationMs?: InputMaybe; last24HoursFailureCount?: InputMaybe; last24HoursSuccessCount?: InputMaybe; last30DaysAvgDurationMs?: InputMaybe; last30DaysFailureCount?: InputMaybe; last30DaysSuccessCount?: InputMaybe; lastExecutionAt?: InputMaybe; lastHourAvgDurationMs?: InputMaybe; lastHourFailureCount?: InputMaybe; lastHourSuccessCount?: InputMaybe; lastUpdatedAt?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; pipelineStatistics?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; }; type SystemCommunicationPipelineStatisticsInputUpdateDto = { /** Item to update */ item: SystemCommunicationPipelineStatisticsInputDto; rtId?: InputMaybe; }; type SystemCommunicationPipelineStatisticsMutationsDto = { __typename?: 'SystemCommunicationPipelineStatisticsMutations'; /** Creates new entities of type 'SystemCommunicationPipelineStatistics'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemCommunicationPipelineStatistics'. */ update?: Maybe>>; }; type SystemCommunicationPipelineStatisticsMutationsCreateArgsDto = { entities: Array>; }; type SystemCommunicationPipelineStatisticsMutationsUpdateArgsDto = { entities: Array>; }; type SystemCommunicationPipelineStatisticsUpdateDto = { __typename?: 'SystemCommunicationPipelineStatisticsUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemCommunicationPipelineStatisticsUpdateMessageDto = { __typename?: 'SystemCommunicationPipelineStatisticsUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Union of types derived from System.Communication/PipelineStatistics for StatisticsForPipeline association */ type SystemCommunicationPipelineStatistics_StatisticsForPipelineUnionDto = SystemCommunicationPipelineStatisticsDto; /** A connection to `SystemCommunicationPipelineStatistics_StatisticsForPipelineUnion`. */ type SystemCommunicationPipelineStatistics_StatisticsForPipelineUnionConnectionDto = { __typename?: 'SystemCommunicationPipelineStatistics_StatisticsForPipelineUnionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemCommunicationPipelineStatistics_StatisticsForPipelineUnion`. */ type SystemCommunicationPipelineStatistics_StatisticsForPipelineUnionEdgeDto = { __typename?: 'SystemCommunicationPipelineStatistics_StatisticsForPipelineUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/PipelineTrigger-1' */ type SystemCommunicationPipelineTriggerDto = SystemCommunicationDeployableEntityInterfaceDto & SystemEntityInterfaceDto & { __typename?: 'SystemCommunicationPipelineTrigger'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; cronExpression: Scalars['String']['output']; deploymentState: SystemCommunicationDeploymentStateDto; description?: Maybe; enabled: Scalars['Boolean']['output']; mapsFrom?: Maybe; mapsTo?: Maybe; name?: Maybe; parent?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; statusMessage?: Maybe; taggedBy?: Maybe; triggeredBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/PipelineTrigger-1' */ type SystemCommunicationPipelineTriggerAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/PipelineTrigger-1' */ type SystemCommunicationPipelineTriggerConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/PipelineTrigger-1' */ type SystemCommunicationPipelineTriggerMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/PipelineTrigger-1' */ type SystemCommunicationPipelineTriggerMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/PipelineTrigger-1' */ type SystemCommunicationPipelineTriggerParentArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/PipelineTrigger-1' */ type SystemCommunicationPipelineTriggerRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/PipelineTrigger-1' */ type SystemCommunicationPipelineTriggerRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/PipelineTrigger-1' */ type SystemCommunicationPipelineTriggerTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/PipelineTrigger-1' */ type SystemCommunicationPipelineTriggerTriggeredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemCommunicationPipelineTrigger`. */ type SystemCommunicationPipelineTriggerConnectionDto = { __typename?: 'SystemCommunicationPipelineTriggerConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemCommunicationPipelineTrigger`. */ type SystemCommunicationPipelineTriggerEdgeDto = { __typename?: 'SystemCommunicationPipelineTriggerEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemCommunicationPipelineTriggerInputDto = { configuredBy?: InputMaybe>>; cronExpression?: InputMaybe; deploymentState?: InputMaybe; description?: InputMaybe; enabled?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; parent?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; statusMessage?: InputMaybe; taggedBy?: InputMaybe>>; triggeredBy?: InputMaybe>>; }; type SystemCommunicationPipelineTriggerInputUpdateDto = { /** Item to update */ item: SystemCommunicationPipelineTriggerInputDto; rtId?: InputMaybe; }; type SystemCommunicationPipelineTriggerMutationsDto = { __typename?: 'SystemCommunicationPipelineTriggerMutations'; /** Creates new entities of type 'SystemCommunicationPipelineTrigger'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemCommunicationPipelineTrigger'. */ update?: Maybe>>; }; type SystemCommunicationPipelineTriggerMutationsCreateArgsDto = { entities: Array>; }; type SystemCommunicationPipelineTriggerMutationsUpdateArgsDto = { entities: Array>; }; /** Runtime entities of construction kit enum 'System.Communication/PipelineTriggerType' */ declare enum SystemCommunicationPipelineTriggerTypeDto { EventDto = "EVENT", ManualDto = "MANUAL", ScheduledDto = "SCHEDULED", StartupDto = "STARTUP" } type SystemCommunicationPipelineTriggerUpdateDto = { __typename?: 'SystemCommunicationPipelineTriggerUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemCommunicationPipelineTriggerUpdateMessageDto = { __typename?: 'SystemCommunicationPipelineTriggerUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Union of types derived from System.Communication/PipelineTrigger for Triggers association */ type SystemCommunicationPipelineTrigger_TriggersUnionDto = SystemCommunicationPipelineTriggerDto; /** A connection to `SystemCommunicationPipelineTrigger_TriggersUnion`. */ type SystemCommunicationPipelineTrigger_TriggersUnionConnectionDto = { __typename?: 'SystemCommunicationPipelineTrigger_TriggersUnionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemCommunicationPipelineTrigger_TriggersUnion`. */ type SystemCommunicationPipelineTrigger_TriggersUnionEdgeDto = { __typename?: 'SystemCommunicationPipelineTrigger_TriggersUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemCommunicationPipelineUpdateDto = { __typename?: 'SystemCommunicationPipelineUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemCommunicationPipelineUpdateMessageDto = { __typename?: 'SystemCommunicationPipelineUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Union of types derived from System.Communication/Pipeline for Children association */ type SystemCommunicationPipeline_ChildrenUnionDto = SystemCommunicationPipelineDto | SystemCommunicationPipelineTriggerDto; /** A connection to `SystemCommunicationPipeline_ChildrenUnion`. */ type SystemCommunicationPipeline_ChildrenUnionConnectionDto = { __typename?: 'SystemCommunicationPipeline_ChildrenUnionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemCommunicationPipeline_ChildrenUnion`. */ type SystemCommunicationPipeline_ChildrenUnionEdgeDto = { __typename?: 'SystemCommunicationPipeline_ChildrenUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Union of types derived from System.Communication/Pipeline for Executes association */ type SystemCommunicationPipeline_ExecutesUnionDto = SystemCommunicationPipelineDto; /** A connection to `SystemCommunicationPipeline_ExecutesUnion`. */ type SystemCommunicationPipeline_ExecutesUnionConnectionDto = { __typename?: 'SystemCommunicationPipeline_ExecutesUnionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemCommunicationPipeline_ExecutesUnion`. */ type SystemCommunicationPipeline_ExecutesUnionEdgeDto = { __typename?: 'SystemCommunicationPipeline_ExecutesUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Union of types derived from System.Communication/Pipeline for PipelineExecutions association */ type SystemCommunicationPipeline_PipelineExecutionsUnionDto = SystemCommunicationPipelineDto; /** A connection to `SystemCommunicationPipeline_PipelineExecutionsUnion`. */ type SystemCommunicationPipeline_PipelineExecutionsUnionConnectionDto = { __typename?: 'SystemCommunicationPipeline_PipelineExecutionsUnionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemCommunicationPipeline_PipelineExecutionsUnion`. */ type SystemCommunicationPipeline_PipelineExecutionsUnionEdgeDto = { __typename?: 'SystemCommunicationPipeline_PipelineExecutionsUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Union of types derived from System.Communication/Pipeline for PipelineStatistics association */ type SystemCommunicationPipeline_PipelineStatisticsUnionDto = SystemCommunicationPipelineDto; /** A connection to `SystemCommunicationPipeline_PipelineStatisticsUnion`. */ type SystemCommunicationPipeline_PipelineStatisticsUnionConnectionDto = { __typename?: 'SystemCommunicationPipeline_PipelineStatisticsUnionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemCommunicationPipeline_PipelineStatisticsUnion`. */ type SystemCommunicationPipeline_PipelineStatisticsUnionEdgeDto = { __typename?: 'SystemCommunicationPipeline_PipelineStatisticsUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Union of types derived from System.Communication/Pipeline for ReceivesDataFrom association */ type SystemCommunicationPipeline_ReceivesDataFromUnionDto = SystemCommunicationPipelineDto; /** A connection to `SystemCommunicationPipeline_ReceivesDataFromUnion`. */ type SystemCommunicationPipeline_ReceivesDataFromUnionConnectionDto = { __typename?: 'SystemCommunicationPipeline_ReceivesDataFromUnionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemCommunicationPipeline_ReceivesDataFromUnion`. */ type SystemCommunicationPipeline_ReceivesDataFromUnionEdgeDto = { __typename?: 'SystemCommunicationPipeline_ReceivesDataFromUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Union of types derived from System.Communication/Pipeline for SendsDataTo association */ type SystemCommunicationPipeline_SendsDataToUnionDto = SystemCommunicationPipelineDto; /** A connection to `SystemCommunicationPipeline_SendsDataToUnion`. */ type SystemCommunicationPipeline_SendsDataToUnionConnectionDto = { __typename?: 'SystemCommunicationPipeline_SendsDataToUnionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemCommunicationPipeline_SendsDataToUnion`. */ type SystemCommunicationPipeline_SendsDataToUnionEdgeDto = { __typename?: 'SystemCommunicationPipeline_SendsDataToUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Union of types derived from System.Communication/Pipeline for TriggeredBy association */ type SystemCommunicationPipeline_TriggeredByUnionDto = SystemCommunicationPipelineDto; /** A connection to `SystemCommunicationPipeline_TriggeredByUnion`. */ type SystemCommunicationPipeline_TriggeredByUnionConnectionDto = { __typename?: 'SystemCommunicationPipeline_TriggeredByUnionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemCommunicationPipeline_TriggeredByUnion`. */ type SystemCommunicationPipeline_TriggeredByUnionEdgeDto = { __typename?: 'SystemCommunicationPipeline_TriggeredByUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Union of types derived from System.Communication/Pipeline for UsedBy association */ type SystemCommunicationPipeline_UsedByUnionDto = SystemCommunicationPipelineDto; /** A connection to `SystemCommunicationPipeline_UsedByUnion`. */ type SystemCommunicationPipeline_UsedByUnionConnectionDto = { __typename?: 'SystemCommunicationPipeline_UsedByUnionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemCommunicationPipeline_UsedByUnion`. */ type SystemCommunicationPipeline_UsedByUnionEdgeDto = { __typename?: 'SystemCommunicationPipeline_UsedByUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/Pool-1' */ type SystemCommunicationPoolDto = SystemCommunicationDeployableEntityInterfaceDto & SystemEntityInterfaceDto & { __typename?: 'SystemCommunicationPool'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; communicationState: SystemCommunicationCommunicationStateDto; communicationStateTimestamp?: Maybe; configurationState: SystemCommunicationConfigurationStateDto; configuredBy?: Maybe; constructionKitType?: Maybe; deploymentState: SystemCommunicationDeploymentStateDto; description?: Maybe; manages?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; name?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; statusMessage?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/Pool-1' */ type SystemCommunicationPoolAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/Pool-1' */ type SystemCommunicationPoolConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/Pool-1' */ type SystemCommunicationPoolManagesArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/Pool-1' */ type SystemCommunicationPoolMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/Pool-1' */ type SystemCommunicationPoolMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/Pool-1' */ type SystemCommunicationPoolRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/Pool-1' */ type SystemCommunicationPoolRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/Pool-1' */ type SystemCommunicationPoolTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemCommunicationPool`. */ type SystemCommunicationPoolConnectionDto = { __typename?: 'SystemCommunicationPoolConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemCommunicationPool`. */ type SystemCommunicationPoolEdgeDto = { __typename?: 'SystemCommunicationPoolEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemCommunicationPoolInputDto = { communicationState?: InputMaybe; communicationStateTimestamp?: InputMaybe; configurationState?: InputMaybe; configuredBy?: InputMaybe>>; deploymentState?: InputMaybe; description?: InputMaybe; manages?: InputMaybe>>; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; statusMessage?: InputMaybe; taggedBy?: InputMaybe>>; }; type SystemCommunicationPoolInputUpdateDto = { /** Item to update */ item: SystemCommunicationPoolInputDto; rtId?: InputMaybe; }; type SystemCommunicationPoolMutationsDto = { __typename?: 'SystemCommunicationPoolMutations'; /** Creates new entities of type 'SystemCommunicationPool'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemCommunicationPool'. */ update?: Maybe>>; }; type SystemCommunicationPoolMutationsCreateArgsDto = { entities: Array>; }; type SystemCommunicationPoolMutationsUpdateArgsDto = { entities: Array>; }; type SystemCommunicationPoolUpdateDto = { __typename?: 'SystemCommunicationPoolUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemCommunicationPoolUpdateMessageDto = { __typename?: 'SystemCommunicationPoolUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Union of types derived from System.Communication/Pool for ManagedBy association */ type SystemCommunicationPool_ManagedByUnionDto = SystemCommunicationPoolDto; /** A connection to `SystemCommunicationPool_ManagedByUnion`. */ type SystemCommunicationPool_ManagedByUnionConnectionDto = { __typename?: 'SystemCommunicationPool_ManagedByUnionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemCommunicationPool_ManagedByUnion`. */ type SystemCommunicationPool_ManagedByUnionEdgeDto = { __typename?: 'SystemCommunicationPool_ManagedByUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/SapConfiguration-1' */ type SystemCommunicationSapConfigurationDto = SystemConfigurationInterfaceDto & SystemEntityInterfaceDto & { __typename?: 'SystemCommunicationSapConfiguration'; appServerHost: Scalars['String']['output']; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; client: Scalars['String']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; gatewayHost?: Maybe; gatewayService?: Maybe; language: Scalars['String']['output']; mapsFrom?: Maybe; mapsTo?: Maybe; password: Scalars['String']['output']; programId?: Maybe; registrationCount?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; systemId?: Maybe; systemNumber: Scalars['String']['output']; taggedBy?: Maybe; trace: Scalars['String']['output']; usedBy?: Maybe; user: Scalars['String']['output']; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/SapConfiguration-1' */ type SystemCommunicationSapConfigurationAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/SapConfiguration-1' */ type SystemCommunicationSapConfigurationConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/SapConfiguration-1' */ type SystemCommunicationSapConfigurationMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/SapConfiguration-1' */ type SystemCommunicationSapConfigurationMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/SapConfiguration-1' */ type SystemCommunicationSapConfigurationRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/SapConfiguration-1' */ type SystemCommunicationSapConfigurationRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/SapConfiguration-1' */ type SystemCommunicationSapConfigurationTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/SapConfiguration-1' */ type SystemCommunicationSapConfigurationUsedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemCommunicationSapConfiguration`. */ type SystemCommunicationSapConfigurationConnectionDto = { __typename?: 'SystemCommunicationSapConfigurationConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemCommunicationSapConfiguration`. */ type SystemCommunicationSapConfigurationEdgeDto = { __typename?: 'SystemCommunicationSapConfigurationEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemCommunicationSapConfigurationInputDto = { appServerHost?: InputMaybe; client?: InputMaybe; configuredBy?: InputMaybe>>; gatewayHost?: InputMaybe; gatewayService?: InputMaybe; language?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; password?: InputMaybe; programId?: InputMaybe; registrationCount?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; systemId?: InputMaybe; systemNumber?: InputMaybe; taggedBy?: InputMaybe>>; trace?: InputMaybe; usedBy?: InputMaybe>>; user?: InputMaybe; }; type SystemCommunicationSapConfigurationInputUpdateDto = { /** Item to update */ item: SystemCommunicationSapConfigurationInputDto; rtId?: InputMaybe; }; type SystemCommunicationSapConfigurationMutationsDto = { __typename?: 'SystemCommunicationSapConfigurationMutations'; /** Creates new entities of type 'SystemCommunicationSapConfiguration'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemCommunicationSapConfiguration'. */ update?: Maybe>>; }; type SystemCommunicationSapConfigurationMutationsCreateArgsDto = { entities: Array>; }; type SystemCommunicationSapConfigurationMutationsUpdateArgsDto = { entities: Array>; }; type SystemCommunicationSapConfigurationUpdateDto = { __typename?: 'SystemCommunicationSapConfigurationUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemCommunicationSapConfigurationUpdateMessageDto = { __typename?: 'SystemCommunicationSapConfigurationUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/ServiceAccountConfiguration-1' */ type SystemCommunicationServiceAccountConfigurationDto = SystemConfigurationInterfaceDto & SystemEntityInterfaceDto & { __typename?: 'SystemCommunicationServiceAccountConfiguration'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; clientId: Scalars['String']['output']; clientSecret: Scalars['String']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; issuerUri: Scalars['String']['output']; mapsFrom?: Maybe; mapsTo?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; tenantId: Scalars['String']['output']; usedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/ServiceAccountConfiguration-1' */ type SystemCommunicationServiceAccountConfigurationAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/ServiceAccountConfiguration-1' */ type SystemCommunicationServiceAccountConfigurationConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/ServiceAccountConfiguration-1' */ type SystemCommunicationServiceAccountConfigurationMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/ServiceAccountConfiguration-1' */ type SystemCommunicationServiceAccountConfigurationMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/ServiceAccountConfiguration-1' */ type SystemCommunicationServiceAccountConfigurationRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/ServiceAccountConfiguration-1' */ type SystemCommunicationServiceAccountConfigurationRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/ServiceAccountConfiguration-1' */ type SystemCommunicationServiceAccountConfigurationTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/ServiceAccountConfiguration-1' */ type SystemCommunicationServiceAccountConfigurationUsedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemCommunicationServiceAccountConfiguration`. */ type SystemCommunicationServiceAccountConfigurationConnectionDto = { __typename?: 'SystemCommunicationServiceAccountConfigurationConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemCommunicationServiceAccountConfiguration`. */ type SystemCommunicationServiceAccountConfigurationEdgeDto = { __typename?: 'SystemCommunicationServiceAccountConfigurationEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemCommunicationServiceAccountConfigurationInputDto = { clientId?: InputMaybe; clientSecret?: InputMaybe; configuredBy?: InputMaybe>>; issuerUri?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; tenantId?: InputMaybe; usedBy?: InputMaybe>>; }; type SystemCommunicationServiceAccountConfigurationInputUpdateDto = { /** Item to update */ item: SystemCommunicationServiceAccountConfigurationInputDto; rtId?: InputMaybe; }; type SystemCommunicationServiceAccountConfigurationMutationsDto = { __typename?: 'SystemCommunicationServiceAccountConfigurationMutations'; /** Creates new entities of type 'SystemCommunicationServiceAccountConfiguration'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemCommunicationServiceAccountConfiguration'. */ update?: Maybe>>; }; type SystemCommunicationServiceAccountConfigurationMutationsCreateArgsDto = { entities: Array>; }; type SystemCommunicationServiceAccountConfigurationMutationsUpdateArgsDto = { entities: Array>; }; type SystemCommunicationServiceAccountConfigurationUpdateDto = { __typename?: 'SystemCommunicationServiceAccountConfigurationUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemCommunicationServiceAccountConfigurationUpdateMessageDto = { __typename?: 'SystemCommunicationServiceAccountConfigurationUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/SftpConfiguration-1' */ type SystemCommunicationSftpConfigurationDto = SystemConfigurationInterfaceDto & SystemEntityInterfaceDto & { __typename?: 'SystemCommunicationSftpConfiguration'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; host: Scalars['String']['output']; mapsFrom?: Maybe; mapsTo?: Maybe; maxConcurrentConnections?: Maybe; password?: Maybe; port: Scalars['Int']['output']; privateKey?: Maybe; privateKeyPassphrase?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; usedBy?: Maybe; username: Scalars['String']['output']; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/SftpConfiguration-1' */ type SystemCommunicationSftpConfigurationAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/SftpConfiguration-1' */ type SystemCommunicationSftpConfigurationConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/SftpConfiguration-1' */ type SystemCommunicationSftpConfigurationMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/SftpConfiguration-1' */ type SystemCommunicationSftpConfigurationMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/SftpConfiguration-1' */ type SystemCommunicationSftpConfigurationRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/SftpConfiguration-1' */ type SystemCommunicationSftpConfigurationRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/SftpConfiguration-1' */ type SystemCommunicationSftpConfigurationTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/SftpConfiguration-1' */ type SystemCommunicationSftpConfigurationUsedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemCommunicationSftpConfiguration`. */ type SystemCommunicationSftpConfigurationConnectionDto = { __typename?: 'SystemCommunicationSftpConfigurationConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemCommunicationSftpConfiguration`. */ type SystemCommunicationSftpConfigurationEdgeDto = { __typename?: 'SystemCommunicationSftpConfigurationEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemCommunicationSftpConfigurationInputDto = { configuredBy?: InputMaybe>>; host?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; maxConcurrentConnections?: InputMaybe; password?: InputMaybe; port?: InputMaybe; privateKey?: InputMaybe; privateKeyPassphrase?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; usedBy?: InputMaybe>>; username?: InputMaybe; }; type SystemCommunicationSftpConfigurationInputUpdateDto = { /** Item to update */ item: SystemCommunicationSftpConfigurationInputDto; rtId?: InputMaybe; }; type SystemCommunicationSftpConfigurationMutationsDto = { __typename?: 'SystemCommunicationSftpConfigurationMutations'; /** Creates new entities of type 'SystemCommunicationSftpConfiguration'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemCommunicationSftpConfiguration'. */ update?: Maybe>>; }; type SystemCommunicationSftpConfigurationMutationsCreateArgsDto = { entities: Array>; }; type SystemCommunicationSftpConfigurationMutationsUpdateArgsDto = { entities: Array>; }; type SystemCommunicationSftpConfigurationUpdateDto = { __typename?: 'SystemCommunicationSftpConfigurationUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemCommunicationSftpConfigurationUpdateMessageDto = { __typename?: 'SystemCommunicationSftpConfigurationUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/Tag-1' */ type SystemCommunicationTagDto = SystemEntityInterfaceDto & { __typename?: 'SystemCommunicationTag'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; isTagging?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; name?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; tag: Scalars['String']['output']; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/Tag-1' */ type SystemCommunicationTagAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/Tag-1' */ type SystemCommunicationTagConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/Tag-1' */ type SystemCommunicationTagIsTaggingArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/Tag-1' */ type SystemCommunicationTagMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/Tag-1' */ type SystemCommunicationTagMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/Tag-1' */ type SystemCommunicationTagRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/Tag-1' */ type SystemCommunicationTagRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Communication-3.13.2/Tag-1' */ type SystemCommunicationTagTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemCommunicationTag`. */ type SystemCommunicationTagConnectionDto = { __typename?: 'SystemCommunicationTagConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemCommunicationTag`. */ type SystemCommunicationTagEdgeDto = { __typename?: 'SystemCommunicationTagEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemCommunicationTagInputDto = { configuredBy?: InputMaybe>>; isTagging?: InputMaybe>>; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; tag?: InputMaybe; taggedBy?: InputMaybe>>; }; type SystemCommunicationTagInputUpdateDto = { /** Item to update */ item: SystemCommunicationTagInputDto; rtId?: InputMaybe; }; type SystemCommunicationTagMutationsDto = { __typename?: 'SystemCommunicationTagMutations'; /** Creates new entities of type 'SystemCommunicationTag'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemCommunicationTag'. */ update?: Maybe>>; }; type SystemCommunicationTagMutationsCreateArgsDto = { entities: Array>; }; type SystemCommunicationTagMutationsUpdateArgsDto = { entities: Array>; }; type SystemCommunicationTagUpdateDto = { __typename?: 'SystemCommunicationTagUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemCommunicationTagUpdateMessageDto = { __typename?: 'SystemCommunicationTagUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Union of types derived from System.Communication/Tag for TaggedBy association */ type SystemCommunicationTag_TaggedByUnionDto = SystemCommunicationTagDto; /** A connection to `SystemCommunicationTag_TaggedByUnion`. */ type SystemCommunicationTag_TaggedByUnionConnectionDto = { __typename?: 'SystemCommunicationTag_TaggedByUnionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemCommunicationTag_TaggedByUnion`. */ type SystemCommunicationTag_TaggedByUnionEdgeDto = { __typename?: 'SystemCommunicationTag_TaggedByUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Runtime entities of construction kit record 'System.Communication/UiThemeColors' */ type SystemCommunicationUiThemeColorsDto = { __typename?: 'SystemCommunicationUiThemeColors'; constructionKitType?: Maybe; neutralColor: Scalars['String']['output']; primaryColor: Scalars['String']['output']; secondaryColor: Scalars['String']['output']; tertiaryColor: Scalars['String']['output']; }; type SystemCommunicationUiThemeColorsInputDto = { neutralColor?: InputMaybe; primaryColor?: InputMaybe; secondaryColor?: InputMaybe; tertiaryColor?: InputMaybe; }; /** Runtime entities of construction kit type 'System-2.0.9/Configuration-1' */ type SystemConfigurationDto = SystemEntityInterfaceDto & { __typename?: 'SystemConfiguration'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; usedBy?: Maybe; }; /** Runtime entities of construction kit type 'System-2.0.9/Configuration-1' */ type SystemConfigurationAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/Configuration-1' */ type SystemConfigurationConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/Configuration-1' */ type SystemConfigurationMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/Configuration-1' */ type SystemConfigurationMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/Configuration-1' */ type SystemConfigurationRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/Configuration-1' */ type SystemConfigurationRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/Configuration-1' */ type SystemConfigurationTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/Configuration-1' */ type SystemConfigurationUsedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemConfiguration`. */ type SystemConfigurationConnectionDto = { __typename?: 'SystemConfigurationConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemConfiguration`. */ type SystemConfigurationEdgeDto = { __typename?: 'SystemConfigurationEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Interface for runtime entities of construction kit type 'System-2.0.9/Configuration-1' */ type SystemConfigurationInterfaceDto = { ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; usedBy?: Maybe; }; /** Interface for runtime entities of construction kit type 'System-2.0.9/Configuration-1' */ type SystemConfigurationInterfaceConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Interface for runtime entities of construction kit type 'System-2.0.9/Configuration-1' */ type SystemConfigurationInterfaceMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Interface for runtime entities of construction kit type 'System-2.0.9/Configuration-1' */ type SystemConfigurationInterfaceMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Interface for runtime entities of construction kit type 'System-2.0.9/Configuration-1' */ type SystemConfigurationInterfaceRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Interface for runtime entities of construction kit type 'System-2.0.9/Configuration-1' */ type SystemConfigurationInterfaceRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Interface for runtime entities of construction kit type 'System-2.0.9/Configuration-1' */ type SystemConfigurationInterfaceTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Interface for runtime entities of construction kit type 'System-2.0.9/Configuration-1' */ type SystemConfigurationInterfaceUsedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type SystemConfigurationUpdateDto = { __typename?: 'SystemConfigurationUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemConfigurationUpdateMessageDto = { __typename?: 'SystemConfigurationUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Union of types derived from System/Configuration for IsUsing association */ type SystemConfiguration_IsUsingUnionDto = SystemCommunicationAiConfigurationDto | SystemCommunicationDiscordConfigurationDto | SystemCommunicationEMailReceiverConfigurationDto | SystemCommunicationEMailSenderConfigurationDto | SystemCommunicationEdaConfigurationDto | SystemCommunicationEnergyCommunityConfigurationDto | SystemCommunicationFinApiConfigurationDto | SystemCommunicationGrafanaConfigurationDto | SystemCommunicationLoxoneConfigurationDto | SystemCommunicationMicrosoftGraphConfigurationDto | SystemCommunicationSapConfigurationDto | SystemCommunicationServiceAccountConfigurationDto | SystemCommunicationSftpConfigurationDto | SystemIdentityMailNotificationConfigurationDto | SystemNotificationCssTemplateConfigurationDto | SystemReportingConnectionInfoDto | SystemTenantConfigurationDto | SystemTenantModeConfigurationDto; /** A connection to `SystemConfiguration_IsUsingUnion`. */ type SystemConfiguration_IsUsingUnionConnectionDto = { __typename?: 'SystemConfiguration_IsUsingUnionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemConfiguration_IsUsingUnion`. */ type SystemConfiguration_IsUsingUnionEdgeDto = { __typename?: 'SystemConfiguration_IsUsingUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Runtime entities of construction kit type 'System-2.0.9/DownsamplingSdQuery-1' */ type SystemDownsamplingSdQueryDto = SystemEntityInterfaceDto & SystemPersistentQueryInterfaceDto & SystemStreamDataQueryInterfaceDto & { __typename?: 'SystemDownsamplingSdQuery'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; columns: Array; configuredBy?: Maybe; constructionKitType?: Maybe; description?: Maybe; fieldFilter?: Maybe>; from?: Maybe; limit?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; navigationFilterMode?: Maybe; queryCkTypeId: Scalars['String']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtIds?: Maybe>; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; to?: Maybe; }; /** Runtime entities of construction kit type 'System-2.0.9/DownsamplingSdQuery-1' */ type SystemDownsamplingSdQueryAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/DownsamplingSdQuery-1' */ type SystemDownsamplingSdQueryConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/DownsamplingSdQuery-1' */ type SystemDownsamplingSdQueryMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/DownsamplingSdQuery-1' */ type SystemDownsamplingSdQueryMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/DownsamplingSdQuery-1' */ type SystemDownsamplingSdQueryRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/DownsamplingSdQuery-1' */ type SystemDownsamplingSdQueryRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/DownsamplingSdQuery-1' */ type SystemDownsamplingSdQueryTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemDownsamplingSdQuery`. */ type SystemDownsamplingSdQueryConnectionDto = { __typename?: 'SystemDownsamplingSdQueryConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemDownsamplingSdQuery`. */ type SystemDownsamplingSdQueryEdgeDto = { __typename?: 'SystemDownsamplingSdQueryEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemDownsamplingSdQueryInputDto = { columns?: InputMaybe>>; configuredBy?: InputMaybe>>; description?: InputMaybe; fieldFilter?: InputMaybe>>; from?: InputMaybe; limit?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; navigationFilterMode?: InputMaybe; queryCkTypeId?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtIds?: InputMaybe>; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; to?: InputMaybe; }; type SystemDownsamplingSdQueryInputUpdateDto = { /** Item to update */ item: SystemDownsamplingSdQueryInputDto; rtId?: InputMaybe; }; type SystemDownsamplingSdQueryMutationsDto = { __typename?: 'SystemDownsamplingSdQueryMutations'; /** Creates new entities of type 'SystemDownsamplingSdQuery'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemDownsamplingSdQuery'. */ update?: Maybe>>; }; type SystemDownsamplingSdQueryMutationsCreateArgsDto = { entities: Array>; }; type SystemDownsamplingSdQueryMutationsUpdateArgsDto = { entities: Array>; }; type SystemDownsamplingSdQueryUpdateDto = { __typename?: 'SystemDownsamplingSdQueryUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemDownsamplingSdQueryUpdateMessageDto = { __typename?: 'SystemDownsamplingSdQueryUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/Entity-1' */ type SystemEntityDto = { __typename?: 'SystemEntity'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System-2.0.9/Entity-1' */ type SystemEntityAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/Entity-1' */ type SystemEntityConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/Entity-1' */ type SystemEntityMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/Entity-1' */ type SystemEntityMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/Entity-1' */ type SystemEntityRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/Entity-1' */ type SystemEntityRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/Entity-1' */ type SystemEntityTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemEntity`. */ type SystemEntityConnectionDto = { __typename?: 'SystemEntityConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemEntity`. */ type SystemEntityEdgeDto = { __typename?: 'SystemEntityEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Interface for runtime entities of construction kit type 'System-2.0.9/Entity-1' */ type SystemEntityInterfaceDto = { ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Interface for runtime entities of construction kit type 'System-2.0.9/Entity-1' */ type SystemEntityInterfaceConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Interface for runtime entities of construction kit type 'System-2.0.9/Entity-1' */ type SystemEntityInterfaceMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Interface for runtime entities of construction kit type 'System-2.0.9/Entity-1' */ type SystemEntityInterfaceMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Interface for runtime entities of construction kit type 'System-2.0.9/Entity-1' */ type SystemEntityInterfaceRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Interface for runtime entities of construction kit type 'System-2.0.9/Entity-1' */ type SystemEntityInterfaceRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Interface for runtime entities of construction kit type 'System-2.0.9/Entity-1' */ type SystemEntityInterfaceTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type SystemEntityUpdateDto = { __typename?: 'SystemEntityUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemEntityUpdateMessageDto = { __typename?: 'SystemEntityUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Union of types derived from System/Entity for Configures association */ type SystemEntity_ConfiguresUnionDto = BasicAssetDto | BasicCityDto | BasicCountryDto | BasicDistrictDto | BasicEmployeeDto | BasicStateDto | BasicTreeDto | BasicTreeNodeDto | IndustryBasicAlarmDto | IndustryBasicEventDto | IndustryBasicMachineDto | IndustryBasicRuntimeVariableDto | IndustryEnergyDemandResponseEventDto | IndustryEnergyEnergyConsumerDto | IndustryEnergyEnergyCostDto | IndustryEnergyEnergyForecastDto | IndustryEnergyEnergyMeterDto | IndustryEnergyEnergyPerformanceIndicatorDto | IndustryEnergyEnergyStorageDto | IndustryEnergyInverterDto | IndustryEnergyPhotovoltaicSystemDto | IndustryEnergyPhotovoltaicSystemModuleDto | IndustryEnergyPhotovoltaicSystemStringDto | IndustryFluidHeatMeterDto | IndustryFluidWaterMeterDto | IndustryMaintenanceAccountDto | IndustryMaintenanceCostCenterDto | IndustryMaintenanceEmployeeDto | IndustryMaintenanceEnergyBalanceDto | IndustryMaintenanceJournalEntryDto | IndustryMaintenanceOrderDto | IndustryMaintenanceOrderCostsDto | IndustryMaintenanceOrderFeedbackDto | IndustryMaintenanceWorkplaceDto | OctoSdkDemoCustomerDto | OctoSdkDemoMeteringPointDto | OctoSdkDemoOperatingFacilityDto | SystemAggregationRtQueryDto | SystemAggregationSdQueryDto | SystemAutoIncrementDto | SystemBotAttributeAggregateConfigurationDto | SystemBotFixupDto | SystemCommunicationAdapterDto | SystemCommunicationAiConfigurationDto | SystemCommunicationDataFlowDto | SystemCommunicationDataPointMappingDto | SystemCommunicationDiscordConfigurationDto | SystemCommunicationEMailReceiverConfigurationDto | SystemCommunicationEMailSenderConfigurationDto | SystemCommunicationEdaConfigurationDto | SystemCommunicationEnergyCommunityConfigurationDto | SystemCommunicationFinApiConfigurationDto | SystemCommunicationGrafanaConfigurationDto | SystemCommunicationLoxoneConfigurationDto | SystemCommunicationMicrosoftGraphConfigurationDto | SystemCommunicationPipelineDto | SystemCommunicationPipelineExecutionDto | SystemCommunicationPipelineStatisticsDto | SystemCommunicationPipelineTriggerDto | SystemCommunicationPoolDto | SystemCommunicationSapConfigurationDto | SystemCommunicationServiceAccountConfigurationDto | SystemCommunicationSftpConfigurationDto | SystemCommunicationTagDto | SystemDownsamplingSdQueryDto | SystemGroupingAggregationRtQueryDto | SystemGroupingAggregationSdQueryDto | SystemIdentityApiResourceDto | SystemIdentityApiScopeDto | SystemIdentityAzureEntraIdIdentityProviderDto | SystemIdentityClientDto | SystemIdentityEmailDomainGroupRuleDto | SystemIdentityExternalTenantUserMappingDto | SystemIdentityFacebookIdentityProviderDto | SystemIdentityGoogleIdentityProviderDto | SystemIdentityGroupDto | SystemIdentityIdentityResourceDto | SystemIdentityMailNotificationConfigurationDto | SystemIdentityMicrosoftAdIdentityProviderDto | SystemIdentityMicrosoftIdentityProviderDto | SystemIdentityOctoTenantIdentityProviderDto | SystemIdentityOpenLdapIdentityProviderDto | SystemIdentityPermissionDto | SystemIdentityPermissionRoleDto | SystemIdentityPersistedGrantDto | SystemIdentityRoleDto | SystemIdentityUserDto | SystemMigrationHistoryDto | SystemNotificationCssTemplateConfigurationDto | SystemNotificationEventDto | SystemNotificationNotificationTemplateDto | SystemNotificationStatefulEventDto | SystemReportingConnectionInfoDto | SystemReportingFileSystemItemDto | SystemReportingFolderDto | SystemReportingFolderRootDto | SystemSimpleRtQueryDto | SystemSimpleSdQueryDto | SystemTenantDto | SystemTenantConfigurationDto | SystemTenantModeConfigurationDto | SystemUiBrandingDto | SystemUiDashboardDto | SystemUiDashboardWidgetDto | SystemUiProcessDiagramDto | SystemUiSymbolDefinitionDto | SystemUiSymbolLibraryDto; /** A connection to `SystemEntity_ConfiguresUnion`. */ type SystemEntity_ConfiguresUnionConnectionDto = { __typename?: 'SystemEntity_ConfiguresUnionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemEntity_ConfiguresUnion`. */ type SystemEntity_ConfiguresUnionEdgeDto = { __typename?: 'SystemEntity_ConfiguresUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Union of types derived from System/Entity for IsTagging association */ type SystemEntity_IsTaggingUnionDto = BasicAssetDto | BasicCityDto | BasicCountryDto | BasicDistrictDto | BasicEmployeeDto | BasicStateDto | BasicTreeDto | BasicTreeNodeDto | IndustryBasicAlarmDto | IndustryBasicEventDto | IndustryBasicMachineDto | IndustryBasicRuntimeVariableDto | IndustryEnergyDemandResponseEventDto | IndustryEnergyEnergyConsumerDto | IndustryEnergyEnergyCostDto | IndustryEnergyEnergyForecastDto | IndustryEnergyEnergyMeterDto | IndustryEnergyEnergyPerformanceIndicatorDto | IndustryEnergyEnergyStorageDto | IndustryEnergyInverterDto | IndustryEnergyPhotovoltaicSystemDto | IndustryEnergyPhotovoltaicSystemModuleDto | IndustryEnergyPhotovoltaicSystemStringDto | IndustryFluidHeatMeterDto | IndustryFluidWaterMeterDto | IndustryMaintenanceAccountDto | IndustryMaintenanceCostCenterDto | IndustryMaintenanceEmployeeDto | IndustryMaintenanceEnergyBalanceDto | IndustryMaintenanceJournalEntryDto | IndustryMaintenanceOrderDto | IndustryMaintenanceOrderCostsDto | IndustryMaintenanceOrderFeedbackDto | IndustryMaintenanceWorkplaceDto | OctoSdkDemoCustomerDto | OctoSdkDemoMeteringPointDto | OctoSdkDemoOperatingFacilityDto | SystemAggregationRtQueryDto | SystemAggregationSdQueryDto | SystemAutoIncrementDto | SystemBotAttributeAggregateConfigurationDto | SystemBotFixupDto | SystemCommunicationAdapterDto | SystemCommunicationAiConfigurationDto | SystemCommunicationDataFlowDto | SystemCommunicationDataPointMappingDto | SystemCommunicationDiscordConfigurationDto | SystemCommunicationEMailReceiverConfigurationDto | SystemCommunicationEMailSenderConfigurationDto | SystemCommunicationEdaConfigurationDto | SystemCommunicationEnergyCommunityConfigurationDto | SystemCommunicationFinApiConfigurationDto | SystemCommunicationGrafanaConfigurationDto | SystemCommunicationLoxoneConfigurationDto | SystemCommunicationMicrosoftGraphConfigurationDto | SystemCommunicationPipelineDto | SystemCommunicationPipelineExecutionDto | SystemCommunicationPipelineStatisticsDto | SystemCommunicationPipelineTriggerDto | SystemCommunicationPoolDto | SystemCommunicationSapConfigurationDto | SystemCommunicationServiceAccountConfigurationDto | SystemCommunicationSftpConfigurationDto | SystemCommunicationTagDto | SystemDownsamplingSdQueryDto | SystemGroupingAggregationRtQueryDto | SystemGroupingAggregationSdQueryDto | SystemIdentityApiResourceDto | SystemIdentityApiScopeDto | SystemIdentityAzureEntraIdIdentityProviderDto | SystemIdentityClientDto | SystemIdentityEmailDomainGroupRuleDto | SystemIdentityExternalTenantUserMappingDto | SystemIdentityFacebookIdentityProviderDto | SystemIdentityGoogleIdentityProviderDto | SystemIdentityGroupDto | SystemIdentityIdentityResourceDto | SystemIdentityMailNotificationConfigurationDto | SystemIdentityMicrosoftAdIdentityProviderDto | SystemIdentityMicrosoftIdentityProviderDto | SystemIdentityOctoTenantIdentityProviderDto | SystemIdentityOpenLdapIdentityProviderDto | SystemIdentityPermissionDto | SystemIdentityPermissionRoleDto | SystemIdentityPersistedGrantDto | SystemIdentityRoleDto | SystemIdentityUserDto | SystemMigrationHistoryDto | SystemNotificationCssTemplateConfigurationDto | SystemNotificationEventDto | SystemNotificationNotificationTemplateDto | SystemNotificationStatefulEventDto | SystemReportingConnectionInfoDto | SystemReportingFileSystemItemDto | SystemReportingFolderDto | SystemReportingFolderRootDto | SystemSimpleRtQueryDto | SystemSimpleSdQueryDto | SystemTenantDto | SystemTenantConfigurationDto | SystemTenantModeConfigurationDto | SystemUiBrandingDto | SystemUiDashboardDto | SystemUiDashboardWidgetDto | SystemUiProcessDiagramDto | SystemUiSymbolDefinitionDto | SystemUiSymbolLibraryDto; /** A connection to `SystemEntity_IsTaggingUnion`. */ type SystemEntity_IsTaggingUnionConnectionDto = { __typename?: 'SystemEntity_IsTaggingUnionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemEntity_IsTaggingUnion`. */ type SystemEntity_IsTaggingUnionEdgeDto = { __typename?: 'SystemEntity_IsTaggingUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Union of types derived from System/Entity for MappedAsSource association */ type SystemEntity_MappedAsSourceUnionDto = BasicAssetDto | BasicCityDto | BasicCountryDto | BasicDistrictDto | BasicEmployeeDto | BasicStateDto | BasicTreeDto | BasicTreeNodeDto | IndustryBasicAlarmDto | IndustryBasicEventDto | IndustryBasicMachineDto | IndustryBasicRuntimeVariableDto | IndustryEnergyDemandResponseEventDto | IndustryEnergyEnergyConsumerDto | IndustryEnergyEnergyCostDto | IndustryEnergyEnergyForecastDto | IndustryEnergyEnergyMeterDto | IndustryEnergyEnergyPerformanceIndicatorDto | IndustryEnergyEnergyStorageDto | IndustryEnergyInverterDto | IndustryEnergyPhotovoltaicSystemDto | IndustryEnergyPhotovoltaicSystemModuleDto | IndustryEnergyPhotovoltaicSystemStringDto | IndustryFluidHeatMeterDto | IndustryFluidWaterMeterDto | IndustryMaintenanceAccountDto | IndustryMaintenanceCostCenterDto | IndustryMaintenanceEmployeeDto | IndustryMaintenanceEnergyBalanceDto | IndustryMaintenanceJournalEntryDto | IndustryMaintenanceOrderDto | IndustryMaintenanceOrderCostsDto | IndustryMaintenanceOrderFeedbackDto | IndustryMaintenanceWorkplaceDto | OctoSdkDemoCustomerDto | OctoSdkDemoMeteringPointDto | OctoSdkDemoOperatingFacilityDto | SystemAggregationRtQueryDto | SystemAggregationSdQueryDto | SystemAutoIncrementDto | SystemBotAttributeAggregateConfigurationDto | SystemBotFixupDto | SystemCommunicationAdapterDto | SystemCommunicationAiConfigurationDto | SystemCommunicationDataFlowDto | SystemCommunicationDataPointMappingDto | SystemCommunicationDiscordConfigurationDto | SystemCommunicationEMailReceiverConfigurationDto | SystemCommunicationEMailSenderConfigurationDto | SystemCommunicationEdaConfigurationDto | SystemCommunicationEnergyCommunityConfigurationDto | SystemCommunicationFinApiConfigurationDto | SystemCommunicationGrafanaConfigurationDto | SystemCommunicationLoxoneConfigurationDto | SystemCommunicationMicrosoftGraphConfigurationDto | SystemCommunicationPipelineDto | SystemCommunicationPipelineExecutionDto | SystemCommunicationPipelineStatisticsDto | SystemCommunicationPipelineTriggerDto | SystemCommunicationPoolDto | SystemCommunicationSapConfigurationDto | SystemCommunicationServiceAccountConfigurationDto | SystemCommunicationSftpConfigurationDto | SystemCommunicationTagDto | SystemDownsamplingSdQueryDto | SystemGroupingAggregationRtQueryDto | SystemGroupingAggregationSdQueryDto | SystemIdentityApiResourceDto | SystemIdentityApiScopeDto | SystemIdentityAzureEntraIdIdentityProviderDto | SystemIdentityClientDto | SystemIdentityEmailDomainGroupRuleDto | SystemIdentityExternalTenantUserMappingDto | SystemIdentityFacebookIdentityProviderDto | SystemIdentityGoogleIdentityProviderDto | SystemIdentityGroupDto | SystemIdentityIdentityResourceDto | SystemIdentityMailNotificationConfigurationDto | SystemIdentityMicrosoftAdIdentityProviderDto | SystemIdentityMicrosoftIdentityProviderDto | SystemIdentityOctoTenantIdentityProviderDto | SystemIdentityOpenLdapIdentityProviderDto | SystemIdentityPermissionDto | SystemIdentityPermissionRoleDto | SystemIdentityPersistedGrantDto | SystemIdentityRoleDto | SystemIdentityUserDto | SystemMigrationHistoryDto | SystemNotificationCssTemplateConfigurationDto | SystemNotificationEventDto | SystemNotificationNotificationTemplateDto | SystemNotificationStatefulEventDto | SystemReportingConnectionInfoDto | SystemReportingFileSystemItemDto | SystemReportingFolderDto | SystemReportingFolderRootDto | SystemSimpleRtQueryDto | SystemSimpleSdQueryDto | SystemTenantDto | SystemTenantConfigurationDto | SystemTenantModeConfigurationDto | SystemUiBrandingDto | SystemUiDashboardDto | SystemUiDashboardWidgetDto | SystemUiProcessDiagramDto | SystemUiSymbolDefinitionDto | SystemUiSymbolLibraryDto; /** A connection to `SystemEntity_MappedAsSourceUnion`. */ type SystemEntity_MappedAsSourceUnionConnectionDto = { __typename?: 'SystemEntity_MappedAsSourceUnionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemEntity_MappedAsSourceUnion`. */ type SystemEntity_MappedAsSourceUnionEdgeDto = { __typename?: 'SystemEntity_MappedAsSourceUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Union of types derived from System/Entity for MappedAsTarget association */ type SystemEntity_MappedAsTargetUnionDto = BasicAssetDto | BasicCityDto | BasicCountryDto | BasicDistrictDto | BasicEmployeeDto | BasicStateDto | BasicTreeDto | BasicTreeNodeDto | IndustryBasicAlarmDto | IndustryBasicEventDto | IndustryBasicMachineDto | IndustryBasicRuntimeVariableDto | IndustryEnergyDemandResponseEventDto | IndustryEnergyEnergyConsumerDto | IndustryEnergyEnergyCostDto | IndustryEnergyEnergyForecastDto | IndustryEnergyEnergyMeterDto | IndustryEnergyEnergyPerformanceIndicatorDto | IndustryEnergyEnergyStorageDto | IndustryEnergyInverterDto | IndustryEnergyPhotovoltaicSystemDto | IndustryEnergyPhotovoltaicSystemModuleDto | IndustryEnergyPhotovoltaicSystemStringDto | IndustryFluidHeatMeterDto | IndustryFluidWaterMeterDto | IndustryMaintenanceAccountDto | IndustryMaintenanceCostCenterDto | IndustryMaintenanceEmployeeDto | IndustryMaintenanceEnergyBalanceDto | IndustryMaintenanceJournalEntryDto | IndustryMaintenanceOrderDto | IndustryMaintenanceOrderCostsDto | IndustryMaintenanceOrderFeedbackDto | IndustryMaintenanceWorkplaceDto | OctoSdkDemoCustomerDto | OctoSdkDemoMeteringPointDto | OctoSdkDemoOperatingFacilityDto | SystemAggregationRtQueryDto | SystemAggregationSdQueryDto | SystemAutoIncrementDto | SystemBotAttributeAggregateConfigurationDto | SystemBotFixupDto | SystemCommunicationAdapterDto | SystemCommunicationAiConfigurationDto | SystemCommunicationDataFlowDto | SystemCommunicationDataPointMappingDto | SystemCommunicationDiscordConfigurationDto | SystemCommunicationEMailReceiverConfigurationDto | SystemCommunicationEMailSenderConfigurationDto | SystemCommunicationEdaConfigurationDto | SystemCommunicationEnergyCommunityConfigurationDto | SystemCommunicationFinApiConfigurationDto | SystemCommunicationGrafanaConfigurationDto | SystemCommunicationLoxoneConfigurationDto | SystemCommunicationMicrosoftGraphConfigurationDto | SystemCommunicationPipelineDto | SystemCommunicationPipelineExecutionDto | SystemCommunicationPipelineStatisticsDto | SystemCommunicationPipelineTriggerDto | SystemCommunicationPoolDto | SystemCommunicationSapConfigurationDto | SystemCommunicationServiceAccountConfigurationDto | SystemCommunicationSftpConfigurationDto | SystemCommunicationTagDto | SystemDownsamplingSdQueryDto | SystemGroupingAggregationRtQueryDto | SystemGroupingAggregationSdQueryDto | SystemIdentityApiResourceDto | SystemIdentityApiScopeDto | SystemIdentityAzureEntraIdIdentityProviderDto | SystemIdentityClientDto | SystemIdentityEmailDomainGroupRuleDto | SystemIdentityExternalTenantUserMappingDto | SystemIdentityFacebookIdentityProviderDto | SystemIdentityGoogleIdentityProviderDto | SystemIdentityGroupDto | SystemIdentityIdentityResourceDto | SystemIdentityMailNotificationConfigurationDto | SystemIdentityMicrosoftAdIdentityProviderDto | SystemIdentityMicrosoftIdentityProviderDto | SystemIdentityOctoTenantIdentityProviderDto | SystemIdentityOpenLdapIdentityProviderDto | SystemIdentityPermissionDto | SystemIdentityPermissionRoleDto | SystemIdentityPersistedGrantDto | SystemIdentityRoleDto | SystemIdentityUserDto | SystemMigrationHistoryDto | SystemNotificationCssTemplateConfigurationDto | SystemNotificationEventDto | SystemNotificationNotificationTemplateDto | SystemNotificationStatefulEventDto | SystemReportingConnectionInfoDto | SystemReportingFileSystemItemDto | SystemReportingFolderDto | SystemReportingFolderRootDto | SystemSimpleRtQueryDto | SystemSimpleSdQueryDto | SystemTenantDto | SystemTenantConfigurationDto | SystemTenantModeConfigurationDto | SystemUiBrandingDto | SystemUiDashboardDto | SystemUiDashboardWidgetDto | SystemUiProcessDiagramDto | SystemUiSymbolDefinitionDto | SystemUiSymbolLibraryDto; /** A connection to `SystemEntity_MappedAsTargetUnion`. */ type SystemEntity_MappedAsTargetUnionConnectionDto = { __typename?: 'SystemEntity_MappedAsTargetUnionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemEntity_MappedAsTargetUnion`. */ type SystemEntity_MappedAsTargetUnionEdgeDto = { __typename?: 'SystemEntity_MappedAsTargetUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Union of types derived from System/Entity for RelatesFrom association */ type SystemEntity_RelatesFromUnionDto = BasicAssetDto | BasicCityDto | BasicCountryDto | BasicDistrictDto | BasicEmployeeDto | BasicStateDto | BasicTreeDto | BasicTreeNodeDto | IndustryBasicAlarmDto | IndustryBasicEventDto | IndustryBasicMachineDto | IndustryBasicRuntimeVariableDto | IndustryEnergyDemandResponseEventDto | IndustryEnergyEnergyConsumerDto | IndustryEnergyEnergyCostDto | IndustryEnergyEnergyForecastDto | IndustryEnergyEnergyMeterDto | IndustryEnergyEnergyPerformanceIndicatorDto | IndustryEnergyEnergyStorageDto | IndustryEnergyInverterDto | IndustryEnergyPhotovoltaicSystemDto | IndustryEnergyPhotovoltaicSystemModuleDto | IndustryEnergyPhotovoltaicSystemStringDto | IndustryFluidHeatMeterDto | IndustryFluidWaterMeterDto | IndustryMaintenanceAccountDto | IndustryMaintenanceCostCenterDto | IndustryMaintenanceEmployeeDto | IndustryMaintenanceEnergyBalanceDto | IndustryMaintenanceJournalEntryDto | IndustryMaintenanceOrderDto | IndustryMaintenanceOrderCostsDto | IndustryMaintenanceOrderFeedbackDto | IndustryMaintenanceWorkplaceDto | OctoSdkDemoCustomerDto | OctoSdkDemoMeteringPointDto | OctoSdkDemoOperatingFacilityDto | SystemAggregationRtQueryDto | SystemAggregationSdQueryDto | SystemAutoIncrementDto | SystemBotAttributeAggregateConfigurationDto | SystemBotFixupDto | SystemCommunicationAdapterDto | SystemCommunicationAiConfigurationDto | SystemCommunicationDataFlowDto | SystemCommunicationDataPointMappingDto | SystemCommunicationDiscordConfigurationDto | SystemCommunicationEMailReceiverConfigurationDto | SystemCommunicationEMailSenderConfigurationDto | SystemCommunicationEdaConfigurationDto | SystemCommunicationEnergyCommunityConfigurationDto | SystemCommunicationFinApiConfigurationDto | SystemCommunicationGrafanaConfigurationDto | SystemCommunicationLoxoneConfigurationDto | SystemCommunicationMicrosoftGraphConfigurationDto | SystemCommunicationPipelineDto | SystemCommunicationPipelineExecutionDto | SystemCommunicationPipelineStatisticsDto | SystemCommunicationPipelineTriggerDto | SystemCommunicationPoolDto | SystemCommunicationSapConfigurationDto | SystemCommunicationServiceAccountConfigurationDto | SystemCommunicationSftpConfigurationDto | SystemCommunicationTagDto | SystemDownsamplingSdQueryDto | SystemGroupingAggregationRtQueryDto | SystemGroupingAggregationSdQueryDto | SystemIdentityApiResourceDto | SystemIdentityApiScopeDto | SystemIdentityAzureEntraIdIdentityProviderDto | SystemIdentityClientDto | SystemIdentityEmailDomainGroupRuleDto | SystemIdentityExternalTenantUserMappingDto | SystemIdentityFacebookIdentityProviderDto | SystemIdentityGoogleIdentityProviderDto | SystemIdentityGroupDto | SystemIdentityIdentityResourceDto | SystemIdentityMailNotificationConfigurationDto | SystemIdentityMicrosoftAdIdentityProviderDto | SystemIdentityMicrosoftIdentityProviderDto | SystemIdentityOctoTenantIdentityProviderDto | SystemIdentityOpenLdapIdentityProviderDto | SystemIdentityPermissionDto | SystemIdentityPermissionRoleDto | SystemIdentityPersistedGrantDto | SystemIdentityRoleDto | SystemIdentityUserDto | SystemMigrationHistoryDto | SystemNotificationCssTemplateConfigurationDto | SystemNotificationEventDto | SystemNotificationNotificationTemplateDto | SystemNotificationStatefulEventDto | SystemReportingConnectionInfoDto | SystemReportingFileSystemItemDto | SystemReportingFolderDto | SystemReportingFolderRootDto | SystemSimpleRtQueryDto | SystemSimpleSdQueryDto | SystemTenantDto | SystemTenantConfigurationDto | SystemTenantModeConfigurationDto | SystemUiBrandingDto | SystemUiDashboardDto | SystemUiDashboardWidgetDto | SystemUiProcessDiagramDto | SystemUiSymbolDefinitionDto | SystemUiSymbolLibraryDto; /** A connection to `SystemEntity_RelatesFromUnion`. */ type SystemEntity_RelatesFromUnionConnectionDto = { __typename?: 'SystemEntity_RelatesFromUnionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemEntity_RelatesFromUnion`. */ type SystemEntity_RelatesFromUnionEdgeDto = { __typename?: 'SystemEntity_RelatesFromUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Union of types derived from System/Entity for RelatesTo association */ type SystemEntity_RelatesToUnionDto = BasicAssetDto | BasicCityDto | BasicCountryDto | BasicDistrictDto | BasicEmployeeDto | BasicStateDto | BasicTreeDto | BasicTreeNodeDto | IndustryBasicAlarmDto | IndustryBasicEventDto | IndustryBasicMachineDto | IndustryBasicRuntimeVariableDto | IndustryEnergyDemandResponseEventDto | IndustryEnergyEnergyConsumerDto | IndustryEnergyEnergyCostDto | IndustryEnergyEnergyForecastDto | IndustryEnergyEnergyMeterDto | IndustryEnergyEnergyPerformanceIndicatorDto | IndustryEnergyEnergyStorageDto | IndustryEnergyInverterDto | IndustryEnergyPhotovoltaicSystemDto | IndustryEnergyPhotovoltaicSystemModuleDto | IndustryEnergyPhotovoltaicSystemStringDto | IndustryFluidHeatMeterDto | IndustryFluidWaterMeterDto | IndustryMaintenanceAccountDto | IndustryMaintenanceCostCenterDto | IndustryMaintenanceEmployeeDto | IndustryMaintenanceEnergyBalanceDto | IndustryMaintenanceJournalEntryDto | IndustryMaintenanceOrderDto | IndustryMaintenanceOrderCostsDto | IndustryMaintenanceOrderFeedbackDto | IndustryMaintenanceWorkplaceDto | OctoSdkDemoCustomerDto | OctoSdkDemoMeteringPointDto | OctoSdkDemoOperatingFacilityDto | SystemAggregationRtQueryDto | SystemAggregationSdQueryDto | SystemAutoIncrementDto | SystemBotAttributeAggregateConfigurationDto | SystemBotFixupDto | SystemCommunicationAdapterDto | SystemCommunicationAiConfigurationDto | SystemCommunicationDataFlowDto | SystemCommunicationDataPointMappingDto | SystemCommunicationDiscordConfigurationDto | SystemCommunicationEMailReceiverConfigurationDto | SystemCommunicationEMailSenderConfigurationDto | SystemCommunicationEdaConfigurationDto | SystemCommunicationEnergyCommunityConfigurationDto | SystemCommunicationFinApiConfigurationDto | SystemCommunicationGrafanaConfigurationDto | SystemCommunicationLoxoneConfigurationDto | SystemCommunicationMicrosoftGraphConfigurationDto | SystemCommunicationPipelineDto | SystemCommunicationPipelineExecutionDto | SystemCommunicationPipelineStatisticsDto | SystemCommunicationPipelineTriggerDto | SystemCommunicationPoolDto | SystemCommunicationSapConfigurationDto | SystemCommunicationServiceAccountConfigurationDto | SystemCommunicationSftpConfigurationDto | SystemCommunicationTagDto | SystemDownsamplingSdQueryDto | SystemGroupingAggregationRtQueryDto | SystemGroupingAggregationSdQueryDto | SystemIdentityApiResourceDto | SystemIdentityApiScopeDto | SystemIdentityAzureEntraIdIdentityProviderDto | SystemIdentityClientDto | SystemIdentityEmailDomainGroupRuleDto | SystemIdentityExternalTenantUserMappingDto | SystemIdentityFacebookIdentityProviderDto | SystemIdentityGoogleIdentityProviderDto | SystemIdentityGroupDto | SystemIdentityIdentityResourceDto | SystemIdentityMailNotificationConfigurationDto | SystemIdentityMicrosoftAdIdentityProviderDto | SystemIdentityMicrosoftIdentityProviderDto | SystemIdentityOctoTenantIdentityProviderDto | SystemIdentityOpenLdapIdentityProviderDto | SystemIdentityPermissionDto | SystemIdentityPermissionRoleDto | SystemIdentityPersistedGrantDto | SystemIdentityRoleDto | SystemIdentityUserDto | SystemMigrationHistoryDto | SystemNotificationCssTemplateConfigurationDto | SystemNotificationEventDto | SystemNotificationNotificationTemplateDto | SystemNotificationStatefulEventDto | SystemReportingConnectionInfoDto | SystemReportingFileSystemItemDto | SystemReportingFolderDto | SystemReportingFolderRootDto | SystemSimpleRtQueryDto | SystemSimpleSdQueryDto | SystemTenantDto | SystemTenantConfigurationDto | SystemTenantModeConfigurationDto | SystemUiBrandingDto | SystemUiDashboardDto | SystemUiDashboardWidgetDto | SystemUiProcessDiagramDto | SystemUiSymbolDefinitionDto | SystemUiSymbolLibraryDto; /** A connection to `SystemEntity_RelatesToUnion`. */ type SystemEntity_RelatesToUnionConnectionDto = { __typename?: 'SystemEntity_RelatesToUnionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemEntity_RelatesToUnion`. */ type SystemEntity_RelatesToUnionEdgeDto = { __typename?: 'SystemEntity_RelatesToUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Runtime entities of construction kit enum 'System/EnvironmentModes' */ declare enum SystemEnvironmentModesDto { /** The tenant is in development mode, used for development and testing */ DevelopmentDto = "DEVELOPMENT", /** The tenant is in production mode, used for live operations */ ProductionDto = "PRODUCTION", /** The tenant is in staging mode, used for pre-production testing */ StagingDto = "STAGING", /** The tenant is in testing mode, used for quality assurance */ TestingDto = "TESTING" } /** Runtime entities of construction kit record 'System/FieldFilter' */ type SystemFieldFilterDto = { __typename?: 'SystemFieldFilter'; attributePath: Scalars['String']['output']; comparisonValue?: Maybe; constructionKitType?: Maybe; operator: SystemFieldFilterOperatorDto; }; type SystemFieldFilterInputDto = { attributePath?: InputMaybe; comparisonValue?: InputMaybe; operator?: InputMaybe; }; /** Runtime entities of construction kit enum 'System/FieldFilterOperator' */ declare enum SystemFieldFilterOperatorDto { /** Compares an array field with at least one element that matches the specified value. */ AnyEqDto = "ANY_EQ", /** Compares an array field with at least one element that matches the specified value using a pattern matching comparison. Use * as a wildcard character. */ AnyLikeDto = "ANY_LIKE", /** Compares the specified field to the specified value. */ EqualsDto = "EQUALS", /** Compares the specified field to the specified value and returns true if the field value is greater than or equal to the specified value. */ GreaterEqualThanDto = "GREATER_EQUAL_THAN", /** Compares the specified field to the specified value and returns true if the field value is greater than the specified value. */ GreaterThanDto = "GREATER_THAN", /** Compares a field to be equal any value in the specified array. */ InDto = "IN", /** Compares the specified field to the specified value and returns true if the field value is less than or equal to the specified value. */ LessEqualThanDto = "LESS_EQUAL_THAN", /** Compares the specified field to the specified value and returns true if the field value is less than the specified value. */ LessThanDto = "LESS_THAN", /** Compares a field to the specified value using a pattern matching comparison. Use * as a wildcard character. */ LikeDto = "LIKE", /** Matches an array field with at least one element that matches all the specified query criteria. */ MatchDto = "MATCH", /** Matches a field containing a value that matches the specified regular expression. */ MatchRegExDto = "MATCH_REG_EX", /** Compares the specified field to the specified value and returns true if the values are not equal. */ NotEqualsDto = "NOT_EQUALS", /** Compares a field to be not equal any value in the specified array. */ NotInDto = "NOT_IN" } /** Runtime entities of construction kit type 'System-2.0.9/GroupingAggregationRtQuery-1' */ type SystemGroupingAggregationRtQueryDto = SystemEntityInterfaceDto & SystemPersistentQueryInterfaceDto & { __typename?: 'SystemGroupingAggregationRtQuery'; associations?: Maybe; attributeSearchFilter?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; columns: Array; configuredBy?: Maybe; constructionKitType?: Maybe; description?: Maybe; fieldFilter?: Maybe>; groupingColumns: Array; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; navigationFilterMode?: Maybe; queryCkTypeId: Scalars['String']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; textSearchFilter?: Maybe; }; /** Runtime entities of construction kit type 'System-2.0.9/GroupingAggregationRtQuery-1' */ type SystemGroupingAggregationRtQueryAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/GroupingAggregationRtQuery-1' */ type SystemGroupingAggregationRtQueryConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/GroupingAggregationRtQuery-1' */ type SystemGroupingAggregationRtQueryMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/GroupingAggregationRtQuery-1' */ type SystemGroupingAggregationRtQueryMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/GroupingAggregationRtQuery-1' */ type SystemGroupingAggregationRtQueryRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/GroupingAggregationRtQuery-1' */ type SystemGroupingAggregationRtQueryRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/GroupingAggregationRtQuery-1' */ type SystemGroupingAggregationRtQueryTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemGroupingAggregationRtQuery`. */ type SystemGroupingAggregationRtQueryConnectionDto = { __typename?: 'SystemGroupingAggregationRtQueryConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemGroupingAggregationRtQuery`. */ type SystemGroupingAggregationRtQueryEdgeDto = { __typename?: 'SystemGroupingAggregationRtQueryEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemGroupingAggregationRtQueryInputDto = { attributeSearchFilter?: InputMaybe; columns?: InputMaybe>>; configuredBy?: InputMaybe>>; description?: InputMaybe; fieldFilter?: InputMaybe>>; groupingColumns?: InputMaybe>; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; navigationFilterMode?: InputMaybe; queryCkTypeId?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; textSearchFilter?: InputMaybe; }; type SystemGroupingAggregationRtQueryInputUpdateDto = { /** Item to update */ item: SystemGroupingAggregationRtQueryInputDto; rtId?: InputMaybe; }; type SystemGroupingAggregationRtQueryMutationsDto = { __typename?: 'SystemGroupingAggregationRtQueryMutations'; /** Creates new entities of type 'SystemGroupingAggregationRtQuery'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemGroupingAggregationRtQuery'. */ update?: Maybe>>; }; type SystemGroupingAggregationRtQueryMutationsCreateArgsDto = { entities: Array>; }; type SystemGroupingAggregationRtQueryMutationsUpdateArgsDto = { entities: Array>; }; type SystemGroupingAggregationRtQueryUpdateDto = { __typename?: 'SystemGroupingAggregationRtQueryUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemGroupingAggregationRtQueryUpdateMessageDto = { __typename?: 'SystemGroupingAggregationRtQueryUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/GroupingAggregationSdQuery-1' */ type SystemGroupingAggregationSdQueryDto = SystemEntityInterfaceDto & SystemPersistentQueryInterfaceDto & SystemStreamDataQueryInterfaceDto & { __typename?: 'SystemGroupingAggregationSdQuery'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; columns: Array; configuredBy?: Maybe; constructionKitType?: Maybe; description?: Maybe; fieldFilter?: Maybe>; from?: Maybe; groupingColumns: Array; limit?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; navigationFilterMode?: Maybe; queryCkTypeId: Scalars['String']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtIds?: Maybe>; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; to?: Maybe; }; /** Runtime entities of construction kit type 'System-2.0.9/GroupingAggregationSdQuery-1' */ type SystemGroupingAggregationSdQueryAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/GroupingAggregationSdQuery-1' */ type SystemGroupingAggregationSdQueryConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/GroupingAggregationSdQuery-1' */ type SystemGroupingAggregationSdQueryMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/GroupingAggregationSdQuery-1' */ type SystemGroupingAggregationSdQueryMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/GroupingAggregationSdQuery-1' */ type SystemGroupingAggregationSdQueryRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/GroupingAggregationSdQuery-1' */ type SystemGroupingAggregationSdQueryRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/GroupingAggregationSdQuery-1' */ type SystemGroupingAggregationSdQueryTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemGroupingAggregationSdQuery`. */ type SystemGroupingAggregationSdQueryConnectionDto = { __typename?: 'SystemGroupingAggregationSdQueryConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemGroupingAggregationSdQuery`. */ type SystemGroupingAggregationSdQueryEdgeDto = { __typename?: 'SystemGroupingAggregationSdQueryEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemGroupingAggregationSdQueryInputDto = { columns?: InputMaybe>>; configuredBy?: InputMaybe>>; description?: InputMaybe; fieldFilter?: InputMaybe>>; from?: InputMaybe; groupingColumns?: InputMaybe>; limit?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; navigationFilterMode?: InputMaybe; queryCkTypeId?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtIds?: InputMaybe>; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; to?: InputMaybe; }; type SystemGroupingAggregationSdQueryInputUpdateDto = { /** Item to update */ item: SystemGroupingAggregationSdQueryInputDto; rtId?: InputMaybe; }; type SystemGroupingAggregationSdQueryMutationsDto = { __typename?: 'SystemGroupingAggregationSdQueryMutations'; /** Creates new entities of type 'SystemGroupingAggregationSdQuery'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemGroupingAggregationSdQuery'. */ update?: Maybe>>; }; type SystemGroupingAggregationSdQueryMutationsCreateArgsDto = { entities: Array>; }; type SystemGroupingAggregationSdQueryMutationsUpdateArgsDto = { entities: Array>; }; type SystemGroupingAggregationSdQueryUpdateDto = { __typename?: 'SystemGroupingAggregationSdQueryUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemGroupingAggregationSdQueryUpdateMessageDto = { __typename?: 'SystemGroupingAggregationSdQueryUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/ApiResource-1' */ type SystemIdentityApiResourceDto = SystemEntityInterfaceDto & SystemIdentityResourceInterfaceDto & { __typename?: 'SystemIdentityApiResource'; allowedAccessTokenSigningAlgorithms: Array; apiSecrets: Array; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; claims: Array; configuredBy?: Maybe; constructionKitType?: Maybe; description?: Maybe; displayName?: Maybe; enabled: Scalars['Boolean']['output']; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; requireResourceIndicator: Scalars['Boolean']['output']; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; scopes: Array; showInDiscoveryDocument: Scalars['Boolean']['output']; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/ApiResource-1' */ type SystemIdentityApiResourceAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/ApiResource-1' */ type SystemIdentityApiResourceConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/ApiResource-1' */ type SystemIdentityApiResourceMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/ApiResource-1' */ type SystemIdentityApiResourceMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/ApiResource-1' */ type SystemIdentityApiResourceRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/ApiResource-1' */ type SystemIdentityApiResourceRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/ApiResource-1' */ type SystemIdentityApiResourceTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemIdentityApiResource`. */ type SystemIdentityApiResourceConnectionDto = { __typename?: 'SystemIdentityApiResourceConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemIdentityApiResource`. */ type SystemIdentityApiResourceEdgeDto = { __typename?: 'SystemIdentityApiResourceEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemIdentityApiResourceInputDto = { allowedAccessTokenSigningAlgorithms?: InputMaybe>; apiSecrets?: InputMaybe>>; claims?: InputMaybe>; configuredBy?: InputMaybe>>; description?: InputMaybe; displayName?: InputMaybe; enabled?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; requireResourceIndicator?: InputMaybe; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; scopes?: InputMaybe>; showInDiscoveryDocument?: InputMaybe; taggedBy?: InputMaybe>>; }; type SystemIdentityApiResourceInputUpdateDto = { /** Item to update */ item: SystemIdentityApiResourceInputDto; rtId?: InputMaybe; }; type SystemIdentityApiResourceMutationsDto = { __typename?: 'SystemIdentityApiResourceMutations'; /** Creates new entities of type 'SystemIdentityApiResource'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemIdentityApiResource'. */ update?: Maybe>>; }; type SystemIdentityApiResourceMutationsCreateArgsDto = { entities: Array>; }; type SystemIdentityApiResourceMutationsUpdateArgsDto = { entities: Array>; }; type SystemIdentityApiResourceUpdateDto = { __typename?: 'SystemIdentityApiResourceUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemIdentityApiResourceUpdateMessageDto = { __typename?: 'SystemIdentityApiResourceUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/ApiScope-1' */ type SystemIdentityApiScopeDto = SystemEntityInterfaceDto & SystemIdentityResourceInterfaceDto & { __typename?: 'SystemIdentityApiScope'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; claims: Array; configuredBy?: Maybe; constructionKitType?: Maybe; description?: Maybe; displayName?: Maybe; enabled: Scalars['Boolean']['output']; isEmphasized: Scalars['Boolean']['output']; isRequired: Scalars['Boolean']['output']; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; showInDiscoveryDocument: Scalars['Boolean']['output']; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/ApiScope-1' */ type SystemIdentityApiScopeAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/ApiScope-1' */ type SystemIdentityApiScopeConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/ApiScope-1' */ type SystemIdentityApiScopeMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/ApiScope-1' */ type SystemIdentityApiScopeMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/ApiScope-1' */ type SystemIdentityApiScopeRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/ApiScope-1' */ type SystemIdentityApiScopeRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/ApiScope-1' */ type SystemIdentityApiScopeTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemIdentityApiScope`. */ type SystemIdentityApiScopeConnectionDto = { __typename?: 'SystemIdentityApiScopeConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemIdentityApiScope`. */ type SystemIdentityApiScopeEdgeDto = { __typename?: 'SystemIdentityApiScopeEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemIdentityApiScopeInputDto = { claims?: InputMaybe>; configuredBy?: InputMaybe>>; description?: InputMaybe; displayName?: InputMaybe; enabled?: InputMaybe; isEmphasized?: InputMaybe; isRequired?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; showInDiscoveryDocument?: InputMaybe; taggedBy?: InputMaybe>>; }; type SystemIdentityApiScopeInputUpdateDto = { /** Item to update */ item: SystemIdentityApiScopeInputDto; rtId?: InputMaybe; }; type SystemIdentityApiScopeMutationsDto = { __typename?: 'SystemIdentityApiScopeMutations'; /** Creates new entities of type 'SystemIdentityApiScope'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemIdentityApiScope'. */ update?: Maybe>>; }; type SystemIdentityApiScopeMutationsCreateArgsDto = { entities: Array>; }; type SystemIdentityApiScopeMutationsUpdateArgsDto = { entities: Array>; }; type SystemIdentityApiScopeUpdateDto = { __typename?: 'SystemIdentityApiScopeUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemIdentityApiScopeUpdateMessageDto = { __typename?: 'SystemIdentityApiScopeUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/AzureEntraIdIdentityProvider-1' */ type SystemIdentityAzureEntraIdIdentityProviderDto = SystemEntityInterfaceDto & SystemIdentityIdentityProviderInterfaceDto & { __typename?: 'SystemIdentityAzureEntraIdIdentityProvider'; allowSelfRegistration: Scalars['Boolean']['output']; associations?: Maybe; authority?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; clientId: Scalars['String']['output']; clientSecret: Scalars['String']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; defaultGroupRtId?: Maybe; description?: Maybe; displayName?: Maybe; isEnabled: Scalars['Boolean']['output']; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; tenantId: Scalars['String']['output']; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/AzureEntraIdIdentityProvider-1' */ type SystemIdentityAzureEntraIdIdentityProviderAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/AzureEntraIdIdentityProvider-1' */ type SystemIdentityAzureEntraIdIdentityProviderConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/AzureEntraIdIdentityProvider-1' */ type SystemIdentityAzureEntraIdIdentityProviderMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/AzureEntraIdIdentityProvider-1' */ type SystemIdentityAzureEntraIdIdentityProviderMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/AzureEntraIdIdentityProvider-1' */ type SystemIdentityAzureEntraIdIdentityProviderRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/AzureEntraIdIdentityProvider-1' */ type SystemIdentityAzureEntraIdIdentityProviderRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/AzureEntraIdIdentityProvider-1' */ type SystemIdentityAzureEntraIdIdentityProviderTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemIdentityAzureEntraIdIdentityProvider`. */ type SystemIdentityAzureEntraIdIdentityProviderConnectionDto = { __typename?: 'SystemIdentityAzureEntraIdIdentityProviderConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemIdentityAzureEntraIdIdentityProvider`. */ type SystemIdentityAzureEntraIdIdentityProviderEdgeDto = { __typename?: 'SystemIdentityAzureEntraIdIdentityProviderEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemIdentityAzureEntraIdIdentityProviderInputDto = { allowSelfRegistration?: InputMaybe; authority?: InputMaybe; clientId?: InputMaybe; clientSecret?: InputMaybe; configuredBy?: InputMaybe>>; defaultGroupRtId?: InputMaybe; description?: InputMaybe; displayName?: InputMaybe; isEnabled?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; tenantId?: InputMaybe; }; type SystemIdentityAzureEntraIdIdentityProviderInputUpdateDto = { /** Item to update */ item: SystemIdentityAzureEntraIdIdentityProviderInputDto; rtId?: InputMaybe; }; type SystemIdentityAzureEntraIdIdentityProviderMutationsDto = { __typename?: 'SystemIdentityAzureEntraIdIdentityProviderMutations'; /** Creates new entities of type 'SystemIdentityAzureEntraIdIdentityProvider'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemIdentityAzureEntraIdIdentityProvider'. */ update?: Maybe>>; }; type SystemIdentityAzureEntraIdIdentityProviderMutationsCreateArgsDto = { entities: Array>; }; type SystemIdentityAzureEntraIdIdentityProviderMutationsUpdateArgsDto = { entities: Array>; }; type SystemIdentityAzureEntraIdIdentityProviderUpdateDto = { __typename?: 'SystemIdentityAzureEntraIdIdentityProviderUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemIdentityAzureEntraIdIdentityProviderUpdateMessageDto = { __typename?: 'SystemIdentityAzureEntraIdIdentityProviderUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/Client-1' */ type SystemIdentityClientDto = SystemEntityInterfaceDto & { __typename?: 'SystemIdentityClient'; absoluteRefreshTokenLifetime: Scalars['Int']['output']; accessTokenLifetime: Scalars['Int']['output']; accessTokenType: SystemIdentityTokenTypeDto; allowAccessTokensViaBrowser: Scalars['Boolean']['output']; allowOfflineAccess: Scalars['Boolean']['output']; allowPlainTextPkce: Scalars['Boolean']['output']; allowRememberConsent: Scalars['Boolean']['output']; allowedCorsOrigins: Array; allowedGrantTypes: Array; allowedIdentityTokenSigningAlgorithms: Array; allowedScopes: Array; alwaysIncludeUserClaimsInIdToken: Scalars['Boolean']['output']; alwaysSendClientClaims: Scalars['Boolean']['output']; associations?: Maybe; authorizationCodeLifetime: Scalars['Int']['output']; backChannelLogoutSessionRequired: Scalars['Boolean']['output']; backChannelLogoutUri?: Maybe; cibaLifetime?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; clientClaims: Array; clientClaimsPrefix?: Maybe; clientId: Scalars['String']['output']; clientName?: Maybe; clientSecrets: Array; clientUri?: Maybe; configuredBy?: Maybe; consentLifetime?: Maybe; constructionKitType?: Maybe; coordinateLifetimeWithUserSession?: Maybe; dPoPClockSkew: Scalars['Seconds']['output']; dPoPValidationMode: Scalars['Int']['output']; description?: Maybe; deviceCodeLifetime: Scalars['Int']['output']; enableLocalLogin: Scalars['Boolean']['output']; enabled: Scalars['Boolean']['output']; frontChannelLogoutSessionRequired: Scalars['Boolean']['output']; frontChannelLogoutUri?: Maybe; identityProviderRestrictions: Array; identityTokenLifetime: Scalars['Int']['output']; includeJwtId: Scalars['Boolean']['output']; initiateLoginUri?: Maybe; logoUri?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; pairWiseSubjectSalt?: Maybe; pollingInterval?: Maybe; postLogoutRedirectUris: Array; protocolType: Scalars['String']['output']; redirectUris: Array; refreshTokenExpiration: SystemIdentityTokenExpirationDto; relatesFrom?: Maybe; relatesTo?: Maybe; requireClientSecret: Scalars['Boolean']['output']; requireConsent?: Maybe; requireDPoP: Scalars['Boolean']['output']; requirePkce: Scalars['Boolean']['output']; requireRequestObject: Scalars['Boolean']['output']; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; slidingRefreshTokenLifetime: Scalars['Int']['output']; taggedBy?: Maybe; updateAccessTokenClaimsOnRefresh: Scalars['Boolean']['output']; userCodeType?: Maybe; userSsoLifetime?: Maybe; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/Client-1' */ type SystemIdentityClientAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/Client-1' */ type SystemIdentityClientConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/Client-1' */ type SystemIdentityClientMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/Client-1' */ type SystemIdentityClientMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/Client-1' */ type SystemIdentityClientRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/Client-1' */ type SystemIdentityClientRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/Client-1' */ type SystemIdentityClientTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit record 'System.Identity/ClientClaim' */ type SystemIdentityClientClaimDto = { __typename?: 'SystemIdentityClientClaim'; claimType: Scalars['String']['output']; claimValue: Scalars['String']['output']; claimValueType: Scalars['String']['output']; constructionKitType?: Maybe; }; type SystemIdentityClientClaimInputDto = { claimType?: InputMaybe; claimValue?: InputMaybe; claimValueType?: InputMaybe; }; /** A connection to `SystemIdentityClient`. */ type SystemIdentityClientConnectionDto = { __typename?: 'SystemIdentityClientConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemIdentityClient`. */ type SystemIdentityClientEdgeDto = { __typename?: 'SystemIdentityClientEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemIdentityClientInputDto = { absoluteRefreshTokenLifetime?: InputMaybe; accessTokenLifetime?: InputMaybe; accessTokenType?: InputMaybe; allowAccessTokensViaBrowser?: InputMaybe; allowOfflineAccess?: InputMaybe; allowPlainTextPkce?: InputMaybe; allowRememberConsent?: InputMaybe; allowedCorsOrigins?: InputMaybe>; allowedGrantTypes?: InputMaybe>; allowedIdentityTokenSigningAlgorithms?: InputMaybe>; allowedScopes?: InputMaybe>; alwaysIncludeUserClaimsInIdToken?: InputMaybe; alwaysSendClientClaims?: InputMaybe; authorizationCodeLifetime?: InputMaybe; backChannelLogoutSessionRequired?: InputMaybe; backChannelLogoutUri?: InputMaybe; cibaLifetime?: InputMaybe; clientClaims?: InputMaybe>>; clientClaimsPrefix?: InputMaybe; clientId?: InputMaybe; clientName?: InputMaybe; clientSecrets?: InputMaybe>>; clientUri?: InputMaybe; configuredBy?: InputMaybe>>; consentLifetime?: InputMaybe; coordinateLifetimeWithUserSession?: InputMaybe; dPoPClockSkew?: InputMaybe; dPoPValidationMode?: InputMaybe; description?: InputMaybe; deviceCodeLifetime?: InputMaybe; enableLocalLogin?: InputMaybe; enabled?: InputMaybe; frontChannelLogoutSessionRequired?: InputMaybe; frontChannelLogoutUri?: InputMaybe; identityProviderRestrictions?: InputMaybe>; identityTokenLifetime?: InputMaybe; includeJwtId?: InputMaybe; initiateLoginUri?: InputMaybe; logoUri?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; pairWiseSubjectSalt?: InputMaybe; pollingInterval?: InputMaybe; postLogoutRedirectUris?: InputMaybe>; protocolType?: InputMaybe; redirectUris?: InputMaybe>; refreshTokenExpiration?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; requireClientSecret?: InputMaybe; requireConsent?: InputMaybe; requireDPoP?: InputMaybe; requirePkce?: InputMaybe; requireRequestObject?: InputMaybe; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; slidingRefreshTokenLifetime?: InputMaybe; taggedBy?: InputMaybe>>; updateAccessTokenClaimsOnRefresh?: InputMaybe; userCodeType?: InputMaybe; userSsoLifetime?: InputMaybe; }; type SystemIdentityClientInputUpdateDto = { /** Item to update */ item: SystemIdentityClientInputDto; rtId?: InputMaybe; }; type SystemIdentityClientMutationsDto = { __typename?: 'SystemIdentityClientMutations'; /** Creates new entities of type 'SystemIdentityClient'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemIdentityClient'. */ update?: Maybe>>; }; type SystemIdentityClientMutationsCreateArgsDto = { entities: Array>; }; type SystemIdentityClientMutationsUpdateArgsDto = { entities: Array>; }; type SystemIdentityClientUpdateDto = { __typename?: 'SystemIdentityClientUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemIdentityClientUpdateMessageDto = { __typename?: 'SystemIdentityClientUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/EmailDomainGroupRule-1' */ type SystemIdentityEmailDomainGroupRuleDto = SystemEntityInterfaceDto & { __typename?: 'SystemIdentityEmailDomainGroupRule'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; description?: Maybe; emailDomainPattern: Scalars['String']['output']; mapsFrom?: Maybe; mapsTo?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; targetGroupRtId: Scalars['String']['output']; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/EmailDomainGroupRule-1' */ type SystemIdentityEmailDomainGroupRuleAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/EmailDomainGroupRule-1' */ type SystemIdentityEmailDomainGroupRuleConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/EmailDomainGroupRule-1' */ type SystemIdentityEmailDomainGroupRuleMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/EmailDomainGroupRule-1' */ type SystemIdentityEmailDomainGroupRuleMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/EmailDomainGroupRule-1' */ type SystemIdentityEmailDomainGroupRuleRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/EmailDomainGroupRule-1' */ type SystemIdentityEmailDomainGroupRuleRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/EmailDomainGroupRule-1' */ type SystemIdentityEmailDomainGroupRuleTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemIdentityEmailDomainGroupRule`. */ type SystemIdentityEmailDomainGroupRuleConnectionDto = { __typename?: 'SystemIdentityEmailDomainGroupRuleConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemIdentityEmailDomainGroupRule`. */ type SystemIdentityEmailDomainGroupRuleEdgeDto = { __typename?: 'SystemIdentityEmailDomainGroupRuleEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemIdentityEmailDomainGroupRuleInputDto = { configuredBy?: InputMaybe>>; description?: InputMaybe; emailDomainPattern?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; targetGroupRtId?: InputMaybe; }; type SystemIdentityEmailDomainGroupRuleInputUpdateDto = { /** Item to update */ item: SystemIdentityEmailDomainGroupRuleInputDto; rtId?: InputMaybe; }; type SystemIdentityEmailDomainGroupRuleMutationsDto = { __typename?: 'SystemIdentityEmailDomainGroupRuleMutations'; /** Creates new entities of type 'SystemIdentityEmailDomainGroupRule'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemIdentityEmailDomainGroupRule'. */ update?: Maybe>>; }; type SystemIdentityEmailDomainGroupRuleMutationsCreateArgsDto = { entities: Array>; }; type SystemIdentityEmailDomainGroupRuleMutationsUpdateArgsDto = { entities: Array>; }; type SystemIdentityEmailDomainGroupRuleUpdateDto = { __typename?: 'SystemIdentityEmailDomainGroupRuleUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemIdentityEmailDomainGroupRuleUpdateMessageDto = { __typename?: 'SystemIdentityEmailDomainGroupRuleUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/ExternalTenantUserMapping-1' */ type SystemIdentityExternalTenantUserMappingDto = SystemEntityInterfaceDto & { __typename?: 'SystemIdentityExternalTenantUserMapping'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; mappedRoleIds?: Maybe>; mapsFrom?: Maybe; mapsTo?: Maybe; memberOfGroups?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; sourceTenantId: Scalars['String']['output']; sourceUserId: Scalars['String']['output']; sourceUserName: Scalars['String']['output']; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/ExternalTenantUserMapping-1' */ type SystemIdentityExternalTenantUserMappingAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/ExternalTenantUserMapping-1' */ type SystemIdentityExternalTenantUserMappingConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/ExternalTenantUserMapping-1' */ type SystemIdentityExternalTenantUserMappingMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/ExternalTenantUserMapping-1' */ type SystemIdentityExternalTenantUserMappingMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/ExternalTenantUserMapping-1' */ type SystemIdentityExternalTenantUserMappingMemberOfGroupsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/ExternalTenantUserMapping-1' */ type SystemIdentityExternalTenantUserMappingRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/ExternalTenantUserMapping-1' */ type SystemIdentityExternalTenantUserMappingRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/ExternalTenantUserMapping-1' */ type SystemIdentityExternalTenantUserMappingTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemIdentityExternalTenantUserMapping`. */ type SystemIdentityExternalTenantUserMappingConnectionDto = { __typename?: 'SystemIdentityExternalTenantUserMappingConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemIdentityExternalTenantUserMapping`. */ type SystemIdentityExternalTenantUserMappingEdgeDto = { __typename?: 'SystemIdentityExternalTenantUserMappingEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemIdentityExternalTenantUserMappingInputDto = { configuredBy?: InputMaybe>>; mappedRoleIds?: InputMaybe>; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; memberOfGroups?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; sourceTenantId?: InputMaybe; sourceUserId?: InputMaybe; sourceUserName?: InputMaybe; taggedBy?: InputMaybe>>; }; type SystemIdentityExternalTenantUserMappingInputUpdateDto = { /** Item to update */ item: SystemIdentityExternalTenantUserMappingInputDto; rtId?: InputMaybe; }; type SystemIdentityExternalTenantUserMappingMutationsDto = { __typename?: 'SystemIdentityExternalTenantUserMappingMutations'; /** Creates new entities of type 'SystemIdentityExternalTenantUserMapping'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemIdentityExternalTenantUserMapping'. */ update?: Maybe>>; }; type SystemIdentityExternalTenantUserMappingMutationsCreateArgsDto = { entities: Array>; }; type SystemIdentityExternalTenantUserMappingMutationsUpdateArgsDto = { entities: Array>; }; type SystemIdentityExternalTenantUserMappingUpdateDto = { __typename?: 'SystemIdentityExternalTenantUserMappingUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemIdentityExternalTenantUserMappingUpdateMessageDto = { __typename?: 'SystemIdentityExternalTenantUserMappingUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/FacebookIdentityProvider-1' */ type SystemIdentityFacebookIdentityProviderDto = SystemEntityInterfaceDto & SystemIdentityIdentityProviderInterfaceDto & { __typename?: 'SystemIdentityFacebookIdentityProvider'; allowSelfRegistration: Scalars['Boolean']['output']; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; clientId: Scalars['String']['output']; clientSecret: Scalars['String']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; defaultGroupRtId?: Maybe; description?: Maybe; displayName?: Maybe; isEnabled: Scalars['Boolean']['output']; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/FacebookIdentityProvider-1' */ type SystemIdentityFacebookIdentityProviderAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/FacebookIdentityProvider-1' */ type SystemIdentityFacebookIdentityProviderConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/FacebookIdentityProvider-1' */ type SystemIdentityFacebookIdentityProviderMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/FacebookIdentityProvider-1' */ type SystemIdentityFacebookIdentityProviderMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/FacebookIdentityProvider-1' */ type SystemIdentityFacebookIdentityProviderRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/FacebookIdentityProvider-1' */ type SystemIdentityFacebookIdentityProviderRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/FacebookIdentityProvider-1' */ type SystemIdentityFacebookIdentityProviderTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemIdentityFacebookIdentityProvider`. */ type SystemIdentityFacebookIdentityProviderConnectionDto = { __typename?: 'SystemIdentityFacebookIdentityProviderConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemIdentityFacebookIdentityProvider`. */ type SystemIdentityFacebookIdentityProviderEdgeDto = { __typename?: 'SystemIdentityFacebookIdentityProviderEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemIdentityFacebookIdentityProviderInputDto = { allowSelfRegistration?: InputMaybe; clientId?: InputMaybe; clientSecret?: InputMaybe; configuredBy?: InputMaybe>>; defaultGroupRtId?: InputMaybe; description?: InputMaybe; displayName?: InputMaybe; isEnabled?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; }; type SystemIdentityFacebookIdentityProviderInputUpdateDto = { /** Item to update */ item: SystemIdentityFacebookIdentityProviderInputDto; rtId?: InputMaybe; }; type SystemIdentityFacebookIdentityProviderMutationsDto = { __typename?: 'SystemIdentityFacebookIdentityProviderMutations'; /** Creates new entities of type 'SystemIdentityFacebookIdentityProvider'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemIdentityFacebookIdentityProvider'. */ update?: Maybe>>; }; type SystemIdentityFacebookIdentityProviderMutationsCreateArgsDto = { entities: Array>; }; type SystemIdentityFacebookIdentityProviderMutationsUpdateArgsDto = { entities: Array>; }; type SystemIdentityFacebookIdentityProviderUpdateDto = { __typename?: 'SystemIdentityFacebookIdentityProviderUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemIdentityFacebookIdentityProviderUpdateMessageDto = { __typename?: 'SystemIdentityFacebookIdentityProviderUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/GoogleIdentityProvider-1' */ type SystemIdentityGoogleIdentityProviderDto = SystemEntityInterfaceDto & SystemIdentityIdentityProviderInterfaceDto & { __typename?: 'SystemIdentityGoogleIdentityProvider'; allowSelfRegistration: Scalars['Boolean']['output']; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; clientId: Scalars['String']['output']; clientSecret: Scalars['String']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; defaultGroupRtId?: Maybe; description?: Maybe; displayName?: Maybe; isEnabled: Scalars['Boolean']['output']; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/GoogleIdentityProvider-1' */ type SystemIdentityGoogleIdentityProviderAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/GoogleIdentityProvider-1' */ type SystemIdentityGoogleIdentityProviderConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/GoogleIdentityProvider-1' */ type SystemIdentityGoogleIdentityProviderMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/GoogleIdentityProvider-1' */ type SystemIdentityGoogleIdentityProviderMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/GoogleIdentityProvider-1' */ type SystemIdentityGoogleIdentityProviderRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/GoogleIdentityProvider-1' */ type SystemIdentityGoogleIdentityProviderRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/GoogleIdentityProvider-1' */ type SystemIdentityGoogleIdentityProviderTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemIdentityGoogleIdentityProvider`. */ type SystemIdentityGoogleIdentityProviderConnectionDto = { __typename?: 'SystemIdentityGoogleIdentityProviderConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemIdentityGoogleIdentityProvider`. */ type SystemIdentityGoogleIdentityProviderEdgeDto = { __typename?: 'SystemIdentityGoogleIdentityProviderEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemIdentityGoogleIdentityProviderInputDto = { allowSelfRegistration?: InputMaybe; clientId?: InputMaybe; clientSecret?: InputMaybe; configuredBy?: InputMaybe>>; defaultGroupRtId?: InputMaybe; description?: InputMaybe; displayName?: InputMaybe; isEnabled?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; }; type SystemIdentityGoogleIdentityProviderInputUpdateDto = { /** Item to update */ item: SystemIdentityGoogleIdentityProviderInputDto; rtId?: InputMaybe; }; type SystemIdentityGoogleIdentityProviderMutationsDto = { __typename?: 'SystemIdentityGoogleIdentityProviderMutations'; /** Creates new entities of type 'SystemIdentityGoogleIdentityProvider'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemIdentityGoogleIdentityProvider'. */ update?: Maybe>>; }; type SystemIdentityGoogleIdentityProviderMutationsCreateArgsDto = { entities: Array>; }; type SystemIdentityGoogleIdentityProviderMutationsUpdateArgsDto = { entities: Array>; }; type SystemIdentityGoogleIdentityProviderUpdateDto = { __typename?: 'SystemIdentityGoogleIdentityProviderUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemIdentityGoogleIdentityProviderUpdateMessageDto = { __typename?: 'SystemIdentityGoogleIdentityProviderUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/Group-1' */ type SystemIdentityGroupDto = SystemEntityInterfaceDto & { __typename?: 'SystemIdentityGroup'; assignedRoles?: Maybe; associations?: Maybe; childGroups?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; groupDescription?: Maybe; groupName: Scalars['String']['output']; mapsFrom?: Maybe; mapsTo?: Maybe; members?: Maybe; normalizedGroupName: Scalars['String']['output']; parentGroups?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/Group-1' */ type SystemIdentityGroupAssignedRolesArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/Group-1' */ type SystemIdentityGroupAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/Group-1' */ type SystemIdentityGroupChildGroupsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/Group-1' */ type SystemIdentityGroupConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/Group-1' */ type SystemIdentityGroupMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/Group-1' */ type SystemIdentityGroupMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/Group-1' */ type SystemIdentityGroupMembersArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/Group-1' */ type SystemIdentityGroupParentGroupsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/Group-1' */ type SystemIdentityGroupRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/Group-1' */ type SystemIdentityGroupRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/Group-1' */ type SystemIdentityGroupTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemIdentityGroup`. */ type SystemIdentityGroupConnectionDto = { __typename?: 'SystemIdentityGroupConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemIdentityGroup`. */ type SystemIdentityGroupEdgeDto = { __typename?: 'SystemIdentityGroupEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemIdentityGroupInputDto = { assignedRoles?: InputMaybe>>; childGroups?: InputMaybe>>; configuredBy?: InputMaybe>>; groupDescription?: InputMaybe; groupName?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; members?: InputMaybe>>; normalizedGroupName?: InputMaybe; parentGroups?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; }; type SystemIdentityGroupInputUpdateDto = { /** Item to update */ item: SystemIdentityGroupInputDto; rtId?: InputMaybe; }; type SystemIdentityGroupMutationsDto = { __typename?: 'SystemIdentityGroupMutations'; /** Creates new entities of type 'SystemIdentityGroup'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemIdentityGroup'. */ update?: Maybe>>; }; type SystemIdentityGroupMutationsCreateArgsDto = { entities: Array>; }; type SystemIdentityGroupMutationsUpdateArgsDto = { entities: Array>; }; type SystemIdentityGroupUpdateDto = { __typename?: 'SystemIdentityGroupUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemIdentityGroupUpdateMessageDto = { __typename?: 'SystemIdentityGroupUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Union of types derived from System.Identity/Group for AssignedEntities association */ type SystemIdentityGroup_AssignedEntitiesUnionDto = SystemIdentityGroupDto | SystemIdentityUserDto; /** A connection to `SystemIdentityGroup_AssignedEntitiesUnion`. */ type SystemIdentityGroup_AssignedEntitiesUnionConnectionDto = { __typename?: 'SystemIdentityGroup_AssignedEntitiesUnionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemIdentityGroup_AssignedEntitiesUnion`. */ type SystemIdentityGroup_AssignedEntitiesUnionEdgeDto = { __typename?: 'SystemIdentityGroup_AssignedEntitiesUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Union of types derived from System.Identity/Group for ChildGroups association */ type SystemIdentityGroup_ChildGroupsUnionDto = SystemIdentityGroupDto; /** A connection to `SystemIdentityGroup_ChildGroupsUnion`. */ type SystemIdentityGroup_ChildGroupsUnionConnectionDto = { __typename?: 'SystemIdentityGroup_ChildGroupsUnionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemIdentityGroup_ChildGroupsUnion`. */ type SystemIdentityGroup_ChildGroupsUnionEdgeDto = { __typename?: 'SystemIdentityGroup_ChildGroupsUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Union of types derived from System.Identity/Group for MemberOfGroups association */ type SystemIdentityGroup_MemberOfGroupsUnionDto = SystemIdentityGroupDto; /** A connection to `SystemIdentityGroup_MemberOfGroupsUnion`. */ type SystemIdentityGroup_MemberOfGroupsUnionConnectionDto = { __typename?: 'SystemIdentityGroup_MemberOfGroupsUnionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemIdentityGroup_MemberOfGroupsUnion`. */ type SystemIdentityGroup_MemberOfGroupsUnionEdgeDto = { __typename?: 'SystemIdentityGroup_MemberOfGroupsUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Union of types derived from System.Identity/Group for ParentGroups association */ type SystemIdentityGroup_ParentGroupsUnionDto = SystemIdentityGroupDto; /** A connection to `SystemIdentityGroup_ParentGroupsUnion`. */ type SystemIdentityGroup_ParentGroupsUnionConnectionDto = { __typename?: 'SystemIdentityGroup_ParentGroupsUnionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemIdentityGroup_ParentGroupsUnion`. */ type SystemIdentityGroup_ParentGroupsUnionEdgeDto = { __typename?: 'SystemIdentityGroup_ParentGroupsUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/IdentityProvider-1' */ type SystemIdentityIdentityProviderDto = SystemEntityInterfaceDto & { __typename?: 'SystemIdentityIdentityProvider'; allowSelfRegistration: Scalars['Boolean']['output']; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; defaultGroupRtId?: Maybe; description?: Maybe; displayName?: Maybe; isEnabled: Scalars['Boolean']['output']; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/IdentityProvider-1' */ type SystemIdentityIdentityProviderAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/IdentityProvider-1' */ type SystemIdentityIdentityProviderConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/IdentityProvider-1' */ type SystemIdentityIdentityProviderMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/IdentityProvider-1' */ type SystemIdentityIdentityProviderMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/IdentityProvider-1' */ type SystemIdentityIdentityProviderRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/IdentityProvider-1' */ type SystemIdentityIdentityProviderRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/IdentityProvider-1' */ type SystemIdentityIdentityProviderTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemIdentityIdentityProvider`. */ type SystemIdentityIdentityProviderConnectionDto = { __typename?: 'SystemIdentityIdentityProviderConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemIdentityIdentityProvider`. */ type SystemIdentityIdentityProviderEdgeDto = { __typename?: 'SystemIdentityIdentityProviderEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Interface for runtime entities of construction kit type 'System.Identity-2.4.0/IdentityProvider-1' */ type SystemIdentityIdentityProviderInterfaceDto = { allowSelfRegistration: Scalars['Boolean']['output']; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; defaultGroupRtId?: Maybe; description?: Maybe; displayName?: Maybe; isEnabled: Scalars['Boolean']['output']; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Interface for runtime entities of construction kit type 'System.Identity-2.4.0/IdentityProvider-1' */ type SystemIdentityIdentityProviderInterfaceConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Interface for runtime entities of construction kit type 'System.Identity-2.4.0/IdentityProvider-1' */ type SystemIdentityIdentityProviderInterfaceMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Interface for runtime entities of construction kit type 'System.Identity-2.4.0/IdentityProvider-1' */ type SystemIdentityIdentityProviderInterfaceMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Interface for runtime entities of construction kit type 'System.Identity-2.4.0/IdentityProvider-1' */ type SystemIdentityIdentityProviderInterfaceRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Interface for runtime entities of construction kit type 'System.Identity-2.4.0/IdentityProvider-1' */ type SystemIdentityIdentityProviderInterfaceRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Interface for runtime entities of construction kit type 'System.Identity-2.4.0/IdentityProvider-1' */ type SystemIdentityIdentityProviderInterfaceTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type SystemIdentityIdentityProviderUpdateDto = { __typename?: 'SystemIdentityIdentityProviderUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemIdentityIdentityProviderUpdateMessageDto = { __typename?: 'SystemIdentityIdentityProviderUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/IdentityResource-1' */ type SystemIdentityIdentityResourceDto = SystemEntityInterfaceDto & SystemIdentityResourceInterfaceDto & { __typename?: 'SystemIdentityIdentityResource'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; claims: Array; configuredBy?: Maybe; constructionKitType?: Maybe; description?: Maybe; displayName?: Maybe; enabled: Scalars['Boolean']['output']; isEmphasized: Scalars['Boolean']['output']; isRequired: Scalars['Boolean']['output']; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; showInDiscoveryDocument: Scalars['Boolean']['output']; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/IdentityResource-1' */ type SystemIdentityIdentityResourceAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/IdentityResource-1' */ type SystemIdentityIdentityResourceConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/IdentityResource-1' */ type SystemIdentityIdentityResourceMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/IdentityResource-1' */ type SystemIdentityIdentityResourceMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/IdentityResource-1' */ type SystemIdentityIdentityResourceRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/IdentityResource-1' */ type SystemIdentityIdentityResourceRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/IdentityResource-1' */ type SystemIdentityIdentityResourceTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemIdentityIdentityResource`. */ type SystemIdentityIdentityResourceConnectionDto = { __typename?: 'SystemIdentityIdentityResourceConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemIdentityIdentityResource`. */ type SystemIdentityIdentityResourceEdgeDto = { __typename?: 'SystemIdentityIdentityResourceEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemIdentityIdentityResourceInputDto = { claims?: InputMaybe>; configuredBy?: InputMaybe>>; description?: InputMaybe; displayName?: InputMaybe; enabled?: InputMaybe; isEmphasized?: InputMaybe; isRequired?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; showInDiscoveryDocument?: InputMaybe; taggedBy?: InputMaybe>>; }; type SystemIdentityIdentityResourceInputUpdateDto = { /** Item to update */ item: SystemIdentityIdentityResourceInputDto; rtId?: InputMaybe; }; type SystemIdentityIdentityResourceMutationsDto = { __typename?: 'SystemIdentityIdentityResourceMutations'; /** Creates new entities of type 'SystemIdentityIdentityResource'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemIdentityIdentityResource'. */ update?: Maybe>>; }; type SystemIdentityIdentityResourceMutationsCreateArgsDto = { entities: Array>; }; type SystemIdentityIdentityResourceMutationsUpdateArgsDto = { entities: Array>; }; type SystemIdentityIdentityResourceUpdateDto = { __typename?: 'SystemIdentityIdentityResourceUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemIdentityIdentityResourceUpdateMessageDto = { __typename?: 'SystemIdentityIdentityResourceUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/MailNotificationConfiguration-1' */ type SystemIdentityMailNotificationConfigurationDto = SystemConfigurationInterfaceDto & SystemEntityInterfaceDto & { __typename?: 'SystemIdentityMailNotificationConfiguration'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; enableEmailNotifications: Scalars['Boolean']['output']; mapsFrom?: Maybe; mapsTo?: Maybe; redirectAfterEmailInteractionUrl?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; usedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/MailNotificationConfiguration-1' */ type SystemIdentityMailNotificationConfigurationAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/MailNotificationConfiguration-1' */ type SystemIdentityMailNotificationConfigurationConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/MailNotificationConfiguration-1' */ type SystemIdentityMailNotificationConfigurationMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/MailNotificationConfiguration-1' */ type SystemIdentityMailNotificationConfigurationMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/MailNotificationConfiguration-1' */ type SystemIdentityMailNotificationConfigurationRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/MailNotificationConfiguration-1' */ type SystemIdentityMailNotificationConfigurationRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/MailNotificationConfiguration-1' */ type SystemIdentityMailNotificationConfigurationTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/MailNotificationConfiguration-1' */ type SystemIdentityMailNotificationConfigurationUsedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemIdentityMailNotificationConfiguration`. */ type SystemIdentityMailNotificationConfigurationConnectionDto = { __typename?: 'SystemIdentityMailNotificationConfigurationConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemIdentityMailNotificationConfiguration`. */ type SystemIdentityMailNotificationConfigurationEdgeDto = { __typename?: 'SystemIdentityMailNotificationConfigurationEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemIdentityMailNotificationConfigurationInputDto = { configuredBy?: InputMaybe>>; enableEmailNotifications?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; redirectAfterEmailInteractionUrl?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; usedBy?: InputMaybe>>; }; type SystemIdentityMailNotificationConfigurationInputUpdateDto = { /** Item to update */ item: SystemIdentityMailNotificationConfigurationInputDto; rtId?: InputMaybe; }; type SystemIdentityMailNotificationConfigurationMutationsDto = { __typename?: 'SystemIdentityMailNotificationConfigurationMutations'; /** Creates new entities of type 'SystemIdentityMailNotificationConfiguration'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemIdentityMailNotificationConfiguration'. */ update?: Maybe>>; }; type SystemIdentityMailNotificationConfigurationMutationsCreateArgsDto = { entities: Array>; }; type SystemIdentityMailNotificationConfigurationMutationsUpdateArgsDto = { entities: Array>; }; type SystemIdentityMailNotificationConfigurationUpdateDto = { __typename?: 'SystemIdentityMailNotificationConfigurationUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemIdentityMailNotificationConfigurationUpdateMessageDto = { __typename?: 'SystemIdentityMailNotificationConfigurationUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/MicrosoftAdIdentityProvider-1' */ type SystemIdentityMicrosoftAdIdentityProviderDto = SystemEntityInterfaceDto & SystemIdentityIdentityProviderInterfaceDto & { __typename?: 'SystemIdentityMicrosoftAdIdentityProvider'; allowSelfRegistration: Scalars['Boolean']['output']; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; defaultGroupRtId?: Maybe; description?: Maybe; displayName?: Maybe; host: Scalars['String']['output']; isEnabled: Scalars['Boolean']['output']; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; port: Scalars['Int']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; useTls: Scalars['Boolean']['output']; userBaseDn?: Maybe; userNameAttribute?: Maybe; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/MicrosoftAdIdentityProvider-1' */ type SystemIdentityMicrosoftAdIdentityProviderAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/MicrosoftAdIdentityProvider-1' */ type SystemIdentityMicrosoftAdIdentityProviderConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/MicrosoftAdIdentityProvider-1' */ type SystemIdentityMicrosoftAdIdentityProviderMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/MicrosoftAdIdentityProvider-1' */ type SystemIdentityMicrosoftAdIdentityProviderMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/MicrosoftAdIdentityProvider-1' */ type SystemIdentityMicrosoftAdIdentityProviderRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/MicrosoftAdIdentityProvider-1' */ type SystemIdentityMicrosoftAdIdentityProviderRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/MicrosoftAdIdentityProvider-1' */ type SystemIdentityMicrosoftAdIdentityProviderTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemIdentityMicrosoftAdIdentityProvider`. */ type SystemIdentityMicrosoftAdIdentityProviderConnectionDto = { __typename?: 'SystemIdentityMicrosoftAdIdentityProviderConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemIdentityMicrosoftAdIdentityProvider`. */ type SystemIdentityMicrosoftAdIdentityProviderEdgeDto = { __typename?: 'SystemIdentityMicrosoftAdIdentityProviderEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemIdentityMicrosoftAdIdentityProviderInputDto = { allowSelfRegistration?: InputMaybe; configuredBy?: InputMaybe>>; defaultGroupRtId?: InputMaybe; description?: InputMaybe; displayName?: InputMaybe; host?: InputMaybe; isEnabled?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; port?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; useTls?: InputMaybe; userBaseDn?: InputMaybe; userNameAttribute?: InputMaybe; }; type SystemIdentityMicrosoftAdIdentityProviderInputUpdateDto = { /** Item to update */ item: SystemIdentityMicrosoftAdIdentityProviderInputDto; rtId?: InputMaybe; }; type SystemIdentityMicrosoftAdIdentityProviderMutationsDto = { __typename?: 'SystemIdentityMicrosoftAdIdentityProviderMutations'; /** Creates new entities of type 'SystemIdentityMicrosoftAdIdentityProvider'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemIdentityMicrosoftAdIdentityProvider'. */ update?: Maybe>>; }; type SystemIdentityMicrosoftAdIdentityProviderMutationsCreateArgsDto = { entities: Array>; }; type SystemIdentityMicrosoftAdIdentityProviderMutationsUpdateArgsDto = { entities: Array>; }; type SystemIdentityMicrosoftAdIdentityProviderUpdateDto = { __typename?: 'SystemIdentityMicrosoftAdIdentityProviderUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemIdentityMicrosoftAdIdentityProviderUpdateMessageDto = { __typename?: 'SystemIdentityMicrosoftAdIdentityProviderUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/MicrosoftIdentityProvider-1' */ type SystemIdentityMicrosoftIdentityProviderDto = SystemEntityInterfaceDto & SystemIdentityIdentityProviderInterfaceDto & { __typename?: 'SystemIdentityMicrosoftIdentityProvider'; allowSelfRegistration: Scalars['Boolean']['output']; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; clientId: Scalars['String']['output']; clientSecret: Scalars['String']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; defaultGroupRtId?: Maybe; description?: Maybe; displayName?: Maybe; isEnabled: Scalars['Boolean']['output']; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/MicrosoftIdentityProvider-1' */ type SystemIdentityMicrosoftIdentityProviderAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/MicrosoftIdentityProvider-1' */ type SystemIdentityMicrosoftIdentityProviderConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/MicrosoftIdentityProvider-1' */ type SystemIdentityMicrosoftIdentityProviderMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/MicrosoftIdentityProvider-1' */ type SystemIdentityMicrosoftIdentityProviderMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/MicrosoftIdentityProvider-1' */ type SystemIdentityMicrosoftIdentityProviderRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/MicrosoftIdentityProvider-1' */ type SystemIdentityMicrosoftIdentityProviderRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/MicrosoftIdentityProvider-1' */ type SystemIdentityMicrosoftIdentityProviderTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemIdentityMicrosoftIdentityProvider`. */ type SystemIdentityMicrosoftIdentityProviderConnectionDto = { __typename?: 'SystemIdentityMicrosoftIdentityProviderConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemIdentityMicrosoftIdentityProvider`. */ type SystemIdentityMicrosoftIdentityProviderEdgeDto = { __typename?: 'SystemIdentityMicrosoftIdentityProviderEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemIdentityMicrosoftIdentityProviderInputDto = { allowSelfRegistration?: InputMaybe; clientId?: InputMaybe; clientSecret?: InputMaybe; configuredBy?: InputMaybe>>; defaultGroupRtId?: InputMaybe; description?: InputMaybe; displayName?: InputMaybe; isEnabled?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; }; type SystemIdentityMicrosoftIdentityProviderInputUpdateDto = { /** Item to update */ item: SystemIdentityMicrosoftIdentityProviderInputDto; rtId?: InputMaybe; }; type SystemIdentityMicrosoftIdentityProviderMutationsDto = { __typename?: 'SystemIdentityMicrosoftIdentityProviderMutations'; /** Creates new entities of type 'SystemIdentityMicrosoftIdentityProvider'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemIdentityMicrosoftIdentityProvider'. */ update?: Maybe>>; }; type SystemIdentityMicrosoftIdentityProviderMutationsCreateArgsDto = { entities: Array>; }; type SystemIdentityMicrosoftIdentityProviderMutationsUpdateArgsDto = { entities: Array>; }; type SystemIdentityMicrosoftIdentityProviderUpdateDto = { __typename?: 'SystemIdentityMicrosoftIdentityProviderUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemIdentityMicrosoftIdentityProviderUpdateMessageDto = { __typename?: 'SystemIdentityMicrosoftIdentityProviderUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/OctoTenantIdentityProvider-1' */ type SystemIdentityOctoTenantIdentityProviderDto = SystemEntityInterfaceDto & SystemIdentityIdentityProviderInterfaceDto & { __typename?: 'SystemIdentityOctoTenantIdentityProvider'; allowSelfRegistration: Scalars['Boolean']['output']; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; defaultGroupRtId?: Maybe; description?: Maybe; displayName?: Maybe; isEnabled: Scalars['Boolean']['output']; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; parentTenantId: Scalars['String']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/OctoTenantIdentityProvider-1' */ type SystemIdentityOctoTenantIdentityProviderAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/OctoTenantIdentityProvider-1' */ type SystemIdentityOctoTenantIdentityProviderConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/OctoTenantIdentityProvider-1' */ type SystemIdentityOctoTenantIdentityProviderMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/OctoTenantIdentityProvider-1' */ type SystemIdentityOctoTenantIdentityProviderMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/OctoTenantIdentityProvider-1' */ type SystemIdentityOctoTenantIdentityProviderRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/OctoTenantIdentityProvider-1' */ type SystemIdentityOctoTenantIdentityProviderRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/OctoTenantIdentityProvider-1' */ type SystemIdentityOctoTenantIdentityProviderTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemIdentityOctoTenantIdentityProvider`. */ type SystemIdentityOctoTenantIdentityProviderConnectionDto = { __typename?: 'SystemIdentityOctoTenantIdentityProviderConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemIdentityOctoTenantIdentityProvider`. */ type SystemIdentityOctoTenantIdentityProviderEdgeDto = { __typename?: 'SystemIdentityOctoTenantIdentityProviderEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemIdentityOctoTenantIdentityProviderInputDto = { allowSelfRegistration?: InputMaybe; configuredBy?: InputMaybe>>; defaultGroupRtId?: InputMaybe; description?: InputMaybe; displayName?: InputMaybe; isEnabled?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; parentTenantId?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; }; type SystemIdentityOctoTenantIdentityProviderInputUpdateDto = { /** Item to update */ item: SystemIdentityOctoTenantIdentityProviderInputDto; rtId?: InputMaybe; }; type SystemIdentityOctoTenantIdentityProviderMutationsDto = { __typename?: 'SystemIdentityOctoTenantIdentityProviderMutations'; /** Creates new entities of type 'SystemIdentityOctoTenantIdentityProvider'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemIdentityOctoTenantIdentityProvider'. */ update?: Maybe>>; }; type SystemIdentityOctoTenantIdentityProviderMutationsCreateArgsDto = { entities: Array>; }; type SystemIdentityOctoTenantIdentityProviderMutationsUpdateArgsDto = { entities: Array>; }; type SystemIdentityOctoTenantIdentityProviderUpdateDto = { __typename?: 'SystemIdentityOctoTenantIdentityProviderUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemIdentityOctoTenantIdentityProviderUpdateMessageDto = { __typename?: 'SystemIdentityOctoTenantIdentityProviderUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/OpenLdapIdentityProvider-1' */ type SystemIdentityOpenLdapIdentityProviderDto = SystemEntityInterfaceDto & SystemIdentityIdentityProviderInterfaceDto & { __typename?: 'SystemIdentityOpenLdapIdentityProvider'; allowSelfRegistration: Scalars['Boolean']['output']; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; defaultGroupRtId?: Maybe; description?: Maybe; displayName?: Maybe; host: Scalars['String']['output']; isEnabled: Scalars['Boolean']['output']; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; port: Scalars['Int']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; useTls: Scalars['Boolean']['output']; userBaseDn: Scalars['String']['output']; userNameAttribute: Scalars['String']['output']; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/OpenLdapIdentityProvider-1' */ type SystemIdentityOpenLdapIdentityProviderAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/OpenLdapIdentityProvider-1' */ type SystemIdentityOpenLdapIdentityProviderConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/OpenLdapIdentityProvider-1' */ type SystemIdentityOpenLdapIdentityProviderMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/OpenLdapIdentityProvider-1' */ type SystemIdentityOpenLdapIdentityProviderMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/OpenLdapIdentityProvider-1' */ type SystemIdentityOpenLdapIdentityProviderRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/OpenLdapIdentityProvider-1' */ type SystemIdentityOpenLdapIdentityProviderRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/OpenLdapIdentityProvider-1' */ type SystemIdentityOpenLdapIdentityProviderTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemIdentityOpenLdapIdentityProvider`. */ type SystemIdentityOpenLdapIdentityProviderConnectionDto = { __typename?: 'SystemIdentityOpenLdapIdentityProviderConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemIdentityOpenLdapIdentityProvider`. */ type SystemIdentityOpenLdapIdentityProviderEdgeDto = { __typename?: 'SystemIdentityOpenLdapIdentityProviderEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemIdentityOpenLdapIdentityProviderInputDto = { allowSelfRegistration?: InputMaybe; configuredBy?: InputMaybe>>; defaultGroupRtId?: InputMaybe; description?: InputMaybe; displayName?: InputMaybe; host?: InputMaybe; isEnabled?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; port?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; useTls?: InputMaybe; userBaseDn?: InputMaybe; userNameAttribute?: InputMaybe; }; type SystemIdentityOpenLdapIdentityProviderInputUpdateDto = { /** Item to update */ item: SystemIdentityOpenLdapIdentityProviderInputDto; rtId?: InputMaybe; }; type SystemIdentityOpenLdapIdentityProviderMutationsDto = { __typename?: 'SystemIdentityOpenLdapIdentityProviderMutations'; /** Creates new entities of type 'SystemIdentityOpenLdapIdentityProvider'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemIdentityOpenLdapIdentityProvider'. */ update?: Maybe>>; }; type SystemIdentityOpenLdapIdentityProviderMutationsCreateArgsDto = { entities: Array>; }; type SystemIdentityOpenLdapIdentityProviderMutationsUpdateArgsDto = { entities: Array>; }; type SystemIdentityOpenLdapIdentityProviderUpdateDto = { __typename?: 'SystemIdentityOpenLdapIdentityProviderUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemIdentityOpenLdapIdentityProviderUpdateMessageDto = { __typename?: 'SystemIdentityOpenLdapIdentityProviderUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/Permission-1' */ type SystemIdentityPermissionDto = SystemEntityInterfaceDto & { __typename?: 'SystemIdentityPermission'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; identityRoleIds: Array; mapsFrom?: Maybe; mapsTo?: Maybe; permissionId: Scalars['String']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/Permission-1' */ type SystemIdentityPermissionAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/Permission-1' */ type SystemIdentityPermissionConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/Permission-1' */ type SystemIdentityPermissionMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/Permission-1' */ type SystemIdentityPermissionMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/Permission-1' */ type SystemIdentityPermissionRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/Permission-1' */ type SystemIdentityPermissionRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/Permission-1' */ type SystemIdentityPermissionTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemIdentityPermission`. */ type SystemIdentityPermissionConnectionDto = { __typename?: 'SystemIdentityPermissionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemIdentityPermission`. */ type SystemIdentityPermissionEdgeDto = { __typename?: 'SystemIdentityPermissionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemIdentityPermissionInputDto = { configuredBy?: InputMaybe>>; identityRoleIds?: InputMaybe>; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; permissionId?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; }; type SystemIdentityPermissionInputUpdateDto = { /** Item to update */ item: SystemIdentityPermissionInputDto; rtId?: InputMaybe; }; type SystemIdentityPermissionMutationsDto = { __typename?: 'SystemIdentityPermissionMutations'; /** Creates new entities of type 'SystemIdentityPermission'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemIdentityPermission'. */ update?: Maybe>>; }; type SystemIdentityPermissionMutationsCreateArgsDto = { entities: Array>; }; type SystemIdentityPermissionMutationsUpdateArgsDto = { entities: Array>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/PermissionRole-1' */ type SystemIdentityPermissionRoleDto = SystemEntityInterfaceDto & { __typename?: 'SystemIdentityPermissionRole'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; identityRoleIds: Array; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; roleId: Scalars['String']['output']; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; subjectIds: Array; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/PermissionRole-1' */ type SystemIdentityPermissionRoleAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/PermissionRole-1' */ type SystemIdentityPermissionRoleConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/PermissionRole-1' */ type SystemIdentityPermissionRoleMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/PermissionRole-1' */ type SystemIdentityPermissionRoleMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/PermissionRole-1' */ type SystemIdentityPermissionRoleRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/PermissionRole-1' */ type SystemIdentityPermissionRoleRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/PermissionRole-1' */ type SystemIdentityPermissionRoleTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemIdentityPermissionRole`. */ type SystemIdentityPermissionRoleConnectionDto = { __typename?: 'SystemIdentityPermissionRoleConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemIdentityPermissionRole`. */ type SystemIdentityPermissionRoleEdgeDto = { __typename?: 'SystemIdentityPermissionRoleEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemIdentityPermissionRoleInputDto = { configuredBy?: InputMaybe>>; identityRoleIds?: InputMaybe>; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; roleId?: InputMaybe; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; subjectIds?: InputMaybe>; taggedBy?: InputMaybe>>; }; type SystemIdentityPermissionRoleInputUpdateDto = { /** Item to update */ item: SystemIdentityPermissionRoleInputDto; rtId?: InputMaybe; }; type SystemIdentityPermissionRoleMutationsDto = { __typename?: 'SystemIdentityPermissionRoleMutations'; /** Creates new entities of type 'SystemIdentityPermissionRole'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemIdentityPermissionRole'. */ update?: Maybe>>; }; type SystemIdentityPermissionRoleMutationsCreateArgsDto = { entities: Array>; }; type SystemIdentityPermissionRoleMutationsUpdateArgsDto = { entities: Array>; }; type SystemIdentityPermissionRoleUpdateDto = { __typename?: 'SystemIdentityPermissionRoleUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemIdentityPermissionRoleUpdateMessageDto = { __typename?: 'SystemIdentityPermissionRoleUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; type SystemIdentityPermissionUpdateDto = { __typename?: 'SystemIdentityPermissionUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemIdentityPermissionUpdateMessageDto = { __typename?: 'SystemIdentityPermissionUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/PersistedGrant-1' */ type SystemIdentityPersistedGrantDto = SystemEntityInterfaceDto & { __typename?: 'SystemIdentityPersistedGrant'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; clientId: Scalars['String']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; consumedDateTime?: Maybe; creationDateTime: Scalars['DateTime']['output']; data: Scalars['String']['output']; description?: Maybe; expirationDateTime?: Maybe; grantKey: Scalars['String']['output']; grantType: Scalars['String']['output']; mapsFrom?: Maybe; mapsTo?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; sessionId?: Maybe; subjectId: Scalars['String']['output']; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/PersistedGrant-1' */ type SystemIdentityPersistedGrantAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/PersistedGrant-1' */ type SystemIdentityPersistedGrantConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/PersistedGrant-1' */ type SystemIdentityPersistedGrantMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/PersistedGrant-1' */ type SystemIdentityPersistedGrantMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/PersistedGrant-1' */ type SystemIdentityPersistedGrantRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/PersistedGrant-1' */ type SystemIdentityPersistedGrantRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/PersistedGrant-1' */ type SystemIdentityPersistedGrantTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemIdentityPersistedGrant`. */ type SystemIdentityPersistedGrantConnectionDto = { __typename?: 'SystemIdentityPersistedGrantConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemIdentityPersistedGrant`. */ type SystemIdentityPersistedGrantEdgeDto = { __typename?: 'SystemIdentityPersistedGrantEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemIdentityPersistedGrantInputDto = { clientId?: InputMaybe; configuredBy?: InputMaybe>>; consumedDateTime?: InputMaybe; creationDateTime?: InputMaybe; data?: InputMaybe; description?: InputMaybe; expirationDateTime?: InputMaybe; grantKey?: InputMaybe; grantType?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; sessionId?: InputMaybe; subjectId?: InputMaybe; taggedBy?: InputMaybe>>; }; type SystemIdentityPersistedGrantInputUpdateDto = { /** Item to update */ item: SystemIdentityPersistedGrantInputDto; rtId?: InputMaybe; }; type SystemIdentityPersistedGrantMutationsDto = { __typename?: 'SystemIdentityPersistedGrantMutations'; /** Creates new entities of type 'SystemIdentityPersistedGrant'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemIdentityPersistedGrant'. */ update?: Maybe>>; }; type SystemIdentityPersistedGrantMutationsCreateArgsDto = { entities: Array>; }; type SystemIdentityPersistedGrantMutationsUpdateArgsDto = { entities: Array>; }; type SystemIdentityPersistedGrantUpdateDto = { __typename?: 'SystemIdentityPersistedGrantUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemIdentityPersistedGrantUpdateMessageDto = { __typename?: 'SystemIdentityPersistedGrantUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/Resource-1' */ type SystemIdentityResourceDto = SystemEntityInterfaceDto & { __typename?: 'SystemIdentityResource'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; claims: Array; configuredBy?: Maybe; constructionKitType?: Maybe; description?: Maybe; displayName?: Maybe; enabled: Scalars['Boolean']['output']; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; showInDiscoveryDocument: Scalars['Boolean']['output']; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/Resource-1' */ type SystemIdentityResourceAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/Resource-1' */ type SystemIdentityResourceConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/Resource-1' */ type SystemIdentityResourceMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/Resource-1' */ type SystemIdentityResourceMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/Resource-1' */ type SystemIdentityResourceRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/Resource-1' */ type SystemIdentityResourceRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/Resource-1' */ type SystemIdentityResourceTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemIdentityResource`. */ type SystemIdentityResourceConnectionDto = { __typename?: 'SystemIdentityResourceConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemIdentityResource`. */ type SystemIdentityResourceEdgeDto = { __typename?: 'SystemIdentityResourceEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Interface for runtime entities of construction kit type 'System.Identity-2.4.0/Resource-1' */ type SystemIdentityResourceInterfaceDto = { ckTypeId: Scalars['RtCkTypeId']['output']; claims: Array; configuredBy?: Maybe; description?: Maybe; displayName?: Maybe; enabled: Scalars['Boolean']['output']; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; showInDiscoveryDocument: Scalars['Boolean']['output']; taggedBy?: Maybe; }; /** Interface for runtime entities of construction kit type 'System.Identity-2.4.0/Resource-1' */ type SystemIdentityResourceInterfaceConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Interface for runtime entities of construction kit type 'System.Identity-2.4.0/Resource-1' */ type SystemIdentityResourceInterfaceMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Interface for runtime entities of construction kit type 'System.Identity-2.4.0/Resource-1' */ type SystemIdentityResourceInterfaceMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Interface for runtime entities of construction kit type 'System.Identity-2.4.0/Resource-1' */ type SystemIdentityResourceInterfaceRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Interface for runtime entities of construction kit type 'System.Identity-2.4.0/Resource-1' */ type SystemIdentityResourceInterfaceRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Interface for runtime entities of construction kit type 'System.Identity-2.4.0/Resource-1' */ type SystemIdentityResourceInterfaceTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type SystemIdentityResourceUpdateDto = { __typename?: 'SystemIdentityResourceUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemIdentityResourceUpdateMessageDto = { __typename?: 'SystemIdentityResourceUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/Role-1' */ type SystemIdentityRoleDto = SystemEntityInterfaceDto & { __typename?: 'SystemIdentityRole'; assignedEntities?: Maybe; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; claims?: Maybe>; configuredBy?: Maybe; constructionKitType?: Maybe; identityRoleIds: Array; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; normalizedName: Scalars['String']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; subjectIds: Array; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/Role-1' */ type SystemIdentityRoleAssignedEntitiesArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/Role-1' */ type SystemIdentityRoleAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/Role-1' */ type SystemIdentityRoleConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/Role-1' */ type SystemIdentityRoleMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/Role-1' */ type SystemIdentityRoleMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/Role-1' */ type SystemIdentityRoleRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/Role-1' */ type SystemIdentityRoleRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/Role-1' */ type SystemIdentityRoleTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit record 'System.Identity/RoleClaim' */ type SystemIdentityRoleClaimDto = { __typename?: 'SystemIdentityRoleClaim'; claimType: Scalars['String']['output']; claimValue: Scalars['String']['output']; constructionKitType?: Maybe; }; type SystemIdentityRoleClaimInputDto = { claimType?: InputMaybe; claimValue?: InputMaybe; }; /** A connection to `SystemIdentityRole`. */ type SystemIdentityRoleConnectionDto = { __typename?: 'SystemIdentityRoleConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemIdentityRole`. */ type SystemIdentityRoleEdgeDto = { __typename?: 'SystemIdentityRoleEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemIdentityRoleInputDto = { assignedEntities?: InputMaybe>>; claims?: InputMaybe>>; configuredBy?: InputMaybe>>; identityRoleIds?: InputMaybe>; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; normalizedName?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; subjectIds?: InputMaybe>; taggedBy?: InputMaybe>>; }; type SystemIdentityRoleInputUpdateDto = { /** Item to update */ item: SystemIdentityRoleInputDto; rtId?: InputMaybe; }; type SystemIdentityRoleMutationsDto = { __typename?: 'SystemIdentityRoleMutations'; /** Creates new entities of type 'SystemIdentityRole'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemIdentityRole'. */ update?: Maybe>>; }; type SystemIdentityRoleMutationsCreateArgsDto = { entities: Array>; }; type SystemIdentityRoleMutationsUpdateArgsDto = { entities: Array>; }; type SystemIdentityRoleUpdateDto = { __typename?: 'SystemIdentityRoleUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemIdentityRoleUpdateMessageDto = { __typename?: 'SystemIdentityRoleUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Union of types derived from System.Identity/Role for AssignedRoles association */ type SystemIdentityRole_AssignedRolesUnionDto = SystemIdentityRoleDto; /** A connection to `SystemIdentityRole_AssignedRolesUnion`. */ type SystemIdentityRole_AssignedRolesUnionConnectionDto = { __typename?: 'SystemIdentityRole_AssignedRolesUnionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemIdentityRole_AssignedRolesUnion`. */ type SystemIdentityRole_AssignedRolesUnionEdgeDto = { __typename?: 'SystemIdentityRole_AssignedRolesUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Runtime entities of construction kit record 'System.Identity/Secret' */ type SystemIdentitySecretDto = { __typename?: 'SystemIdentitySecret'; constructionKitType?: Maybe; description?: Maybe; expirationDateTime?: Maybe; type: Scalars['String']['output']; value?: Maybe; }; type SystemIdentitySecretInputDto = { description?: InputMaybe; expirationDateTime?: InputMaybe; type?: InputMaybe; value?: InputMaybe; }; /** Runtime entities of construction kit enum 'System.Identity/TokenExpiration' */ declare enum SystemIdentityTokenExpirationDto { AbsoluteDto = "ABSOLUTE", SlidingDto = "SLIDING" } /** Runtime entities of construction kit enum 'System.Identity/TokenType' */ declare enum SystemIdentityTokenTypeDto { JwtDto = "JWT", ReferenceDto = "REFERENCE" } /** Runtime entities of construction kit enum 'System.Identity/TokenUsage' */ declare enum SystemIdentityTokenUsageDto { OneTimeOnlyDto = "ONE_TIME_ONLY", ReUseDto = "RE_USE" } /** Runtime entities of construction kit type 'System.Identity-2.4.0/User-1' */ type SystemIdentityUserDto = SystemEntityInterfaceDto & { __typename?: 'SystemIdentityUser'; accessFailedCount: Scalars['Int']['output']; assignedRoles?: Maybe; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; claims?: Maybe>; configuredBy?: Maybe; constructionKitType?: Maybe; description?: Maybe; email?: Maybe; emailConfirmed: Scalars['Boolean']['output']; firstName?: Maybe; lastName?: Maybe; lockoutEnabled: Scalars['Boolean']['output']; lockoutEnd?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; memberOfGroups?: Maybe; normalizedEmail?: Maybe; normalizedUserName?: Maybe; passwordHash?: Maybe; phoneNumber?: Maybe; phoneNumberConfirmed: Scalars['Boolean']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; resetPasswordOnLogin: Scalars['Boolean']['output']; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; securityStamp?: Maybe; taggedBy?: Maybe; twoFactorEnabled: Scalars['Boolean']['output']; userLogins?: Maybe>; userName?: Maybe; userTokens?: Maybe>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/User-1' */ type SystemIdentityUserAssignedRolesArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/User-1' */ type SystemIdentityUserAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/User-1' */ type SystemIdentityUserConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/User-1' */ type SystemIdentityUserMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/User-1' */ type SystemIdentityUserMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/User-1' */ type SystemIdentityUserMemberOfGroupsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/User-1' */ type SystemIdentityUserRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/User-1' */ type SystemIdentityUserRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.4.0/User-1' */ type SystemIdentityUserTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit record 'System.Identity/UserClaim' */ type SystemIdentityUserClaimDto = { __typename?: 'SystemIdentityUserClaim'; claimType: Scalars['String']['output']; claimValue: Scalars['String']['output']; constructionKitType?: Maybe; userId?: Maybe; }; type SystemIdentityUserClaimInputDto = { claimType?: InputMaybe; claimValue?: InputMaybe; userId?: InputMaybe; }; /** A connection to `SystemIdentityUser`. */ type SystemIdentityUserConnectionDto = { __typename?: 'SystemIdentityUserConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemIdentityUser`. */ type SystemIdentityUserEdgeDto = { __typename?: 'SystemIdentityUserEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemIdentityUserInputDto = { accessFailedCount?: InputMaybe; assignedRoles?: InputMaybe>>; claims?: InputMaybe>>; configuredBy?: InputMaybe>>; description?: InputMaybe; email?: InputMaybe; emailConfirmed?: InputMaybe; firstName?: InputMaybe; lastName?: InputMaybe; lockoutEnabled?: InputMaybe; lockoutEnd?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; memberOfGroups?: InputMaybe>>; normalizedEmail?: InputMaybe; normalizedUserName?: InputMaybe; passwordHash?: InputMaybe; phoneNumber?: InputMaybe; phoneNumberConfirmed?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; resetPasswordOnLogin?: InputMaybe; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; securityStamp?: InputMaybe; taggedBy?: InputMaybe>>; twoFactorEnabled?: InputMaybe; userLogins?: InputMaybe>>; userName?: InputMaybe; userTokens?: InputMaybe>>; }; type SystemIdentityUserInputUpdateDto = { /** Item to update */ item: SystemIdentityUserInputDto; rtId?: InputMaybe; }; /** Runtime entities of construction kit record 'System.Identity/UserLogin' */ type SystemIdentityUserLoginDto = { __typename?: 'SystemIdentityUserLogin'; constructionKitType?: Maybe; loginProvider: Scalars['String']['output']; providerDisplayName?: Maybe; providerKey: Scalars['String']['output']; userId: Scalars['String']['output']; }; type SystemIdentityUserLoginInputDto = { loginProvider?: InputMaybe; providerDisplayName?: InputMaybe; providerKey?: InputMaybe; userId?: InputMaybe; }; type SystemIdentityUserMutationsDto = { __typename?: 'SystemIdentityUserMutations'; /** Creates new entities of type 'SystemIdentityUser'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemIdentityUser'. */ update?: Maybe>>; }; type SystemIdentityUserMutationsCreateArgsDto = { entities: Array>; }; type SystemIdentityUserMutationsUpdateArgsDto = { entities: Array>; }; /** Runtime entities of construction kit record 'System.Identity/UserToken' */ type SystemIdentityUserTokenDto = { __typename?: 'SystemIdentityUserToken'; constructionKitType?: Maybe; loginProvider: Scalars['String']['output']; name: Scalars['String']['output']; userId: Scalars['String']['output']; value?: Maybe; }; type SystemIdentityUserTokenInputDto = { loginProvider?: InputMaybe; name?: InputMaybe; userId?: InputMaybe; value?: InputMaybe; }; type SystemIdentityUserUpdateDto = { __typename?: 'SystemIdentityUserUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemIdentityUserUpdateMessageDto = { __typename?: 'SystemIdentityUserUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Union of types derived from System.Identity/User for Members association */ type SystemIdentityUser_MembersUnionDto = SystemIdentityExternalTenantUserMappingDto | SystemIdentityUserDto; /** A connection to `SystemIdentityUser_MembersUnion`. */ type SystemIdentityUser_MembersUnionConnectionDto = { __typename?: 'SystemIdentityUser_MembersUnionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemIdentityUser_MembersUnion`. */ type SystemIdentityUser_MembersUnionEdgeDto = { __typename?: 'SystemIdentityUser_MembersUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Runtime entities of construction kit enum 'System/MaintenanceLevels' */ declare enum SystemMaintenanceLevelsDto { /** The full system is in maintenance mode, the tenant is not operational */ FullSystemDto = "FULL_SYSTEM", /** The maintenance mode is off, the tenant is fully operational */ OffDto = "OFF", /** The user apps are in maintenance mode, the tenant is operational but user apps are not available */ UserAppsDto = "USER_APPS" } /** Runtime entities of construction kit type 'System-2.0.9/MigrationHistory-1' */ type SystemMigrationHistoryDto = SystemEntityInterfaceDto & { __typename?: 'SystemMigrationHistory'; associations?: Maybe; backupId?: Maybe; ckModelName: Scalars['String']['output']; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; durationMs?: Maybe; entitiesAdded?: Maybe; entitiesAffected?: Maybe; entitiesDeleted?: Maybe; entitiesUpdated?: Maybe; errors?: Maybe>; executedAt: Scalars['DateTime']['output']; fromVersion: Scalars['String']['output']; mapsFrom?: Maybe; mapsTo?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; success: Scalars['Boolean']['output']; taggedBy?: Maybe; toVersion: Scalars['String']['output']; warnings?: Maybe>; }; /** Runtime entities of construction kit type 'System-2.0.9/MigrationHistory-1' */ type SystemMigrationHistoryAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/MigrationHistory-1' */ type SystemMigrationHistoryConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/MigrationHistory-1' */ type SystemMigrationHistoryMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/MigrationHistory-1' */ type SystemMigrationHistoryMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/MigrationHistory-1' */ type SystemMigrationHistoryRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/MigrationHistory-1' */ type SystemMigrationHistoryRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/MigrationHistory-1' */ type SystemMigrationHistoryTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemMigrationHistory`. */ type SystemMigrationHistoryConnectionDto = { __typename?: 'SystemMigrationHistoryConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemMigrationHistory`. */ type SystemMigrationHistoryEdgeDto = { __typename?: 'SystemMigrationHistoryEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemMigrationHistoryInputDto = { backupId?: InputMaybe; ckModelName?: InputMaybe; configuredBy?: InputMaybe>>; durationMs?: InputMaybe; entitiesAdded?: InputMaybe; entitiesAffected?: InputMaybe; entitiesDeleted?: InputMaybe; entitiesUpdated?: InputMaybe; errors?: InputMaybe>; executedAt?: InputMaybe; fromVersion?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; success?: InputMaybe; taggedBy?: InputMaybe>>; toVersion?: InputMaybe; warnings?: InputMaybe>; }; type SystemMigrationHistoryInputUpdateDto = { /** Item to update */ item: SystemMigrationHistoryInputDto; rtId?: InputMaybe; }; type SystemMigrationHistoryMutationsDto = { __typename?: 'SystemMigrationHistoryMutations'; /** Creates new entities of type 'SystemMigrationHistory'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemMigrationHistory'. */ update?: Maybe>>; }; type SystemMigrationHistoryMutationsCreateArgsDto = { entities: Array>; }; type SystemMigrationHistoryMutationsUpdateArgsDto = { entities: Array>; }; type SystemMigrationHistoryUpdateDto = { __typename?: 'SystemMigrationHistoryUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemMigrationHistoryUpdateMessageDto = { __typename?: 'SystemMigrationHistoryUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit enum 'System/NavigationFilterModes' */ declare enum SystemNavigationFilterModesDto { /** Entities without matching associations are filtered out (pre-pagination). */ FilterDto = "FILTER", /** Entities without matching associations are kept with null values (post-pagination). */ IncludeDto = "INCLUDE" } /** Runtime entities of construction kit type 'System.Notification-2.0.0/CssTemplateConfiguration-1' */ type SystemNotificationCssTemplateConfigurationDto = SystemConfigurationInterfaceDto & SystemEntityInterfaceDto & { __typename?: 'SystemNotificationCssTemplateConfiguration'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; cssStyle: Scalars['String']['output']; mapsFrom?: Maybe; mapsTo?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; usedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Notification-2.0.0/CssTemplateConfiguration-1' */ type SystemNotificationCssTemplateConfigurationAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Notification-2.0.0/CssTemplateConfiguration-1' */ type SystemNotificationCssTemplateConfigurationConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Notification-2.0.0/CssTemplateConfiguration-1' */ type SystemNotificationCssTemplateConfigurationMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Notification-2.0.0/CssTemplateConfiguration-1' */ type SystemNotificationCssTemplateConfigurationMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Notification-2.0.0/CssTemplateConfiguration-1' */ type SystemNotificationCssTemplateConfigurationRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Notification-2.0.0/CssTemplateConfiguration-1' */ type SystemNotificationCssTemplateConfigurationRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Notification-2.0.0/CssTemplateConfiguration-1' */ type SystemNotificationCssTemplateConfigurationTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Notification-2.0.0/CssTemplateConfiguration-1' */ type SystemNotificationCssTemplateConfigurationUsedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemNotificationCssTemplateConfiguration`. */ type SystemNotificationCssTemplateConfigurationConnectionDto = { __typename?: 'SystemNotificationCssTemplateConfigurationConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemNotificationCssTemplateConfiguration`. */ type SystemNotificationCssTemplateConfigurationEdgeDto = { __typename?: 'SystemNotificationCssTemplateConfigurationEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemNotificationCssTemplateConfigurationInputDto = { configuredBy?: InputMaybe>>; cssStyle?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; usedBy?: InputMaybe>>; }; type SystemNotificationCssTemplateConfigurationInputUpdateDto = { /** Item to update */ item: SystemNotificationCssTemplateConfigurationInputDto; rtId?: InputMaybe; }; type SystemNotificationCssTemplateConfigurationMutationsDto = { __typename?: 'SystemNotificationCssTemplateConfigurationMutations'; /** Creates new entities of type 'SystemNotificationCssTemplateConfiguration'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemNotificationCssTemplateConfiguration'. */ update?: Maybe>>; }; type SystemNotificationCssTemplateConfigurationMutationsCreateArgsDto = { entities: Array>; }; type SystemNotificationCssTemplateConfigurationMutationsUpdateArgsDto = { entities: Array>; }; type SystemNotificationCssTemplateConfigurationUpdateDto = { __typename?: 'SystemNotificationCssTemplateConfigurationUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemNotificationCssTemplateConfigurationUpdateMessageDto = { __typename?: 'SystemNotificationCssTemplateConfigurationUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'System.Notification-2.0.0/Event-1' */ type SystemNotificationEventDto = SystemEntityInterfaceDto & { __typename?: 'SystemNotificationEvent'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; level: SystemNotificationEventLevelsDto; mapsFrom?: Maybe; mapsTo?: Maybe; message?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; source: SystemNotificationEventSourcesDto; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Notification-2.0.0/Event-1' */ type SystemNotificationEventAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Notification-2.0.0/Event-1' */ type SystemNotificationEventConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Notification-2.0.0/Event-1' */ type SystemNotificationEventMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Notification-2.0.0/Event-1' */ type SystemNotificationEventMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Notification-2.0.0/Event-1' */ type SystemNotificationEventRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Notification-2.0.0/Event-1' */ type SystemNotificationEventRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Notification-2.0.0/Event-1' */ type SystemNotificationEventTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemNotificationEvent`. */ type SystemNotificationEventConnectionDto = { __typename?: 'SystemNotificationEventConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemNotificationEvent`. */ type SystemNotificationEventEdgeDto = { __typename?: 'SystemNotificationEventEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemNotificationEventInputDto = { configuredBy?: InputMaybe>>; level?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; message?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; source?: InputMaybe; taggedBy?: InputMaybe>>; }; type SystemNotificationEventInputUpdateDto = { /** Item to update */ item: SystemNotificationEventInputDto; rtId?: InputMaybe; }; /** Runtime entities of construction kit enum 'System.Notification/EventLevels' */ declare enum SystemNotificationEventLevelsDto { /** Critical */ CriticalDto = "CRITICAL", /** Debug */ DebugDto = "DEBUG", /** Error */ ErrorDto = "ERROR", /** Information */ InformationDto = "INFORMATION", /** Warning */ WarningDto = "WARNING" } type SystemNotificationEventMutationsDto = { __typename?: 'SystemNotificationEventMutations'; /** Creates new entities of type 'SystemNotificationEvent'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemNotificationEvent'. */ update?: Maybe>>; }; type SystemNotificationEventMutationsCreateArgsDto = { entities: Array>; }; type SystemNotificationEventMutationsUpdateArgsDto = { entities: Array>; }; /** Runtime entities of construction kit enum 'System.Notification/EventSources' */ declare enum SystemNotificationEventSourcesDto { /** The event was generated by the Admin Panel. */ AdminPanelDto = "ADMIN_PANEL", /** The event was generated by the Asset Repository Service. */ AssetRepositoryServiceDto = "ASSET_REPOSITORY_SERVICE", /** The event was generated by the Bot Service. */ BotServiceDto = "BOT_SERVICE", /** The event was generated by the Communication Service. */ CommunicationServiceDto = "COMMUNICATION_SERVICE", /** The event was generated by the Identity Service. */ IdentityServiceDto = "IDENTITY_SERVICE", /** The event was generated by the Mesh Adapter. */ MeshAdapterDto = "MESH_ADAPTER", /** No source has been assigned to the event. */ UndefinedDto = "UNDEFINED" } /** Runtime entities of construction kit enum 'System.Notification/EventStates' */ declare enum SystemNotificationEventStatesDto { ActiveDto = "ACTIVE", ErrorDto = "ERROR", InactiveDto = "INACTIVE" } type SystemNotificationEventUpdateDto = { __typename?: 'SystemNotificationEventUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemNotificationEventUpdateMessageDto = { __typename?: 'SystemNotificationEventUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'System.Notification-2.0.0/NotificationTemplate-1' */ type SystemNotificationNotificationTemplateDto = SystemEntityInterfaceDto & { __typename?: 'SystemNotificationNotificationTemplate'; associations?: Maybe; bodyTemplate?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; renderingType: SystemNotificationRenderingTypesDto; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; subjectTemplate: Scalars['String']['output']; taggedBy?: Maybe; type: SystemNotificationNotificationTypesDto; }; /** Runtime entities of construction kit type 'System.Notification-2.0.0/NotificationTemplate-1' */ type SystemNotificationNotificationTemplateAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Notification-2.0.0/NotificationTemplate-1' */ type SystemNotificationNotificationTemplateConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Notification-2.0.0/NotificationTemplate-1' */ type SystemNotificationNotificationTemplateMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Notification-2.0.0/NotificationTemplate-1' */ type SystemNotificationNotificationTemplateMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Notification-2.0.0/NotificationTemplate-1' */ type SystemNotificationNotificationTemplateRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Notification-2.0.0/NotificationTemplate-1' */ type SystemNotificationNotificationTemplateRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Notification-2.0.0/NotificationTemplate-1' */ type SystemNotificationNotificationTemplateTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemNotificationNotificationTemplate`. */ type SystemNotificationNotificationTemplateConnectionDto = { __typename?: 'SystemNotificationNotificationTemplateConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemNotificationNotificationTemplate`. */ type SystemNotificationNotificationTemplateEdgeDto = { __typename?: 'SystemNotificationNotificationTemplateEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemNotificationNotificationTemplateInputDto = { bodyTemplate?: InputMaybe; configuredBy?: InputMaybe>>; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; renderingType?: InputMaybe; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; subjectTemplate?: InputMaybe; taggedBy?: InputMaybe>>; type?: InputMaybe; }; type SystemNotificationNotificationTemplateInputUpdateDto = { /** Item to update */ item: SystemNotificationNotificationTemplateInputDto; rtId?: InputMaybe; }; type SystemNotificationNotificationTemplateMutationsDto = { __typename?: 'SystemNotificationNotificationTemplateMutations'; /** Creates new entities of type 'SystemNotificationNotificationTemplate'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemNotificationNotificationTemplate'. */ update?: Maybe>>; }; type SystemNotificationNotificationTemplateMutationsCreateArgsDto = { entities: Array>; }; type SystemNotificationNotificationTemplateMutationsUpdateArgsDto = { entities: Array>; }; type SystemNotificationNotificationTemplateUpdateDto = { __typename?: 'SystemNotificationNotificationTemplateUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemNotificationNotificationTemplateUpdateMessageDto = { __typename?: 'SystemNotificationNotificationTemplateUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit enum 'System.Notification/NotificationTypes' */ declare enum SystemNotificationNotificationTypesDto { EMailDto = "E_MAIL", PushDto = "PUSH", SmsDto = "SMS" } /** Runtime entities of construction kit enum 'System.Notification/RenderingTypes' */ declare enum SystemNotificationRenderingTypesDto { HtmlDto = "HTML", PlainDto = "PLAIN" } /** Runtime entities of construction kit type 'System.Notification-2.0.0/StatefulEvent-1' */ type SystemNotificationStatefulEventDto = SystemEntityInterfaceDto & { __typename?: 'SystemNotificationStatefulEvent'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; level: SystemNotificationEventLevelsDto; mapsFrom?: Maybe; mapsTo?: Maybe; message?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; source: SystemNotificationEventSourcesDto; state: SystemNotificationEventStatesDto; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Notification-2.0.0/StatefulEvent-1' */ type SystemNotificationStatefulEventAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Notification-2.0.0/StatefulEvent-1' */ type SystemNotificationStatefulEventConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Notification-2.0.0/StatefulEvent-1' */ type SystemNotificationStatefulEventMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Notification-2.0.0/StatefulEvent-1' */ type SystemNotificationStatefulEventMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Notification-2.0.0/StatefulEvent-1' */ type SystemNotificationStatefulEventRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Notification-2.0.0/StatefulEvent-1' */ type SystemNotificationStatefulEventRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Notification-2.0.0/StatefulEvent-1' */ type SystemNotificationStatefulEventTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemNotificationStatefulEvent`. */ type SystemNotificationStatefulEventConnectionDto = { __typename?: 'SystemNotificationStatefulEventConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemNotificationStatefulEvent`. */ type SystemNotificationStatefulEventEdgeDto = { __typename?: 'SystemNotificationStatefulEventEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemNotificationStatefulEventInputDto = { configuredBy?: InputMaybe>>; level?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; message?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; source?: InputMaybe; state?: InputMaybe; taggedBy?: InputMaybe>>; }; type SystemNotificationStatefulEventInputUpdateDto = { /** Item to update */ item: SystemNotificationStatefulEventInputDto; rtId?: InputMaybe; }; type SystemNotificationStatefulEventMutationsDto = { __typename?: 'SystemNotificationStatefulEventMutations'; /** Creates new entities of type 'SystemNotificationStatefulEvent'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemNotificationStatefulEvent'. */ update?: Maybe>>; }; type SystemNotificationStatefulEventMutationsCreateArgsDto = { entities: Array>; }; type SystemNotificationStatefulEventMutationsUpdateArgsDto = { entities: Array>; }; type SystemNotificationStatefulEventUpdateDto = { __typename?: 'SystemNotificationStatefulEventUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemNotificationStatefulEventUpdateMessageDto = { __typename?: 'SystemNotificationStatefulEventUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/PersistentQuery-1' */ type SystemPersistentQueryDto = SystemEntityInterfaceDto & { __typename?: 'SystemPersistentQuery'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; description?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; navigationFilterMode?: Maybe; queryCkTypeId: Scalars['String']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System-2.0.9/PersistentQuery-1' */ type SystemPersistentQueryAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/PersistentQuery-1' */ type SystemPersistentQueryConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/PersistentQuery-1' */ type SystemPersistentQueryMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/PersistentQuery-1' */ type SystemPersistentQueryMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/PersistentQuery-1' */ type SystemPersistentQueryRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/PersistentQuery-1' */ type SystemPersistentQueryRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/PersistentQuery-1' */ type SystemPersistentQueryTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemPersistentQuery`. */ type SystemPersistentQueryConnectionDto = { __typename?: 'SystemPersistentQueryConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemPersistentQuery`. */ type SystemPersistentQueryEdgeDto = { __typename?: 'SystemPersistentQueryEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Interface for runtime entities of construction kit type 'System-2.0.9/PersistentQuery-1' */ type SystemPersistentQueryInterfaceDto = { ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; description?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; navigationFilterMode?: Maybe; queryCkTypeId: Scalars['String']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Interface for runtime entities of construction kit type 'System-2.0.9/PersistentQuery-1' */ type SystemPersistentQueryInterfaceConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Interface for runtime entities of construction kit type 'System-2.0.9/PersistentQuery-1' */ type SystemPersistentQueryInterfaceMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Interface for runtime entities of construction kit type 'System-2.0.9/PersistentQuery-1' */ type SystemPersistentQueryInterfaceMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Interface for runtime entities of construction kit type 'System-2.0.9/PersistentQuery-1' */ type SystemPersistentQueryInterfaceRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Interface for runtime entities of construction kit type 'System-2.0.9/PersistentQuery-1' */ type SystemPersistentQueryInterfaceRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Interface for runtime entities of construction kit type 'System-2.0.9/PersistentQuery-1' */ type SystemPersistentQueryInterfaceTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type SystemPersistentQueryUpdateDto = { __typename?: 'SystemPersistentQueryUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemPersistentQueryUpdateMessageDto = { __typename?: 'SystemPersistentQueryUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit enum 'System/QueryTypes' */ declare enum SystemQueryTypesDto { /** A flat query */ FlatDto = "FLAT", /** A tree query that returns results from a tree */ TreeDto = "TREE" } /** Runtime entities of construction kit type 'System.Reporting-2.0.0/ConnectionInfo-1' */ type SystemReportingConnectionInfoDto = SystemConfigurationInterfaceDto & SystemEntityInterfaceDto & { __typename?: 'SystemReportingConnectionInfo'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; connectionString: Scalars['String']['output']; constructionKitType?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; provider?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; usedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Reporting-2.0.0/ConnectionInfo-1' */ type SystemReportingConnectionInfoAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Reporting-2.0.0/ConnectionInfo-1' */ type SystemReportingConnectionInfoConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Reporting-2.0.0/ConnectionInfo-1' */ type SystemReportingConnectionInfoMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Reporting-2.0.0/ConnectionInfo-1' */ type SystemReportingConnectionInfoMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Reporting-2.0.0/ConnectionInfo-1' */ type SystemReportingConnectionInfoRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Reporting-2.0.0/ConnectionInfo-1' */ type SystemReportingConnectionInfoRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Reporting-2.0.0/ConnectionInfo-1' */ type SystemReportingConnectionInfoTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Reporting-2.0.0/ConnectionInfo-1' */ type SystemReportingConnectionInfoUsedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemReportingConnectionInfo`. */ type SystemReportingConnectionInfoConnectionDto = { __typename?: 'SystemReportingConnectionInfoConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemReportingConnectionInfo`. */ type SystemReportingConnectionInfoEdgeDto = { __typename?: 'SystemReportingConnectionInfoEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemReportingConnectionInfoInputDto = { configuredBy?: InputMaybe>>; connectionString?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; provider?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; usedBy?: InputMaybe>>; }; type SystemReportingConnectionInfoInputUpdateDto = { /** Item to update */ item: SystemReportingConnectionInfoInputDto; rtId?: InputMaybe; }; type SystemReportingConnectionInfoMutationsDto = { __typename?: 'SystemReportingConnectionInfoMutations'; /** Creates new entities of type 'SystemReportingConnectionInfo'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemReportingConnectionInfo'. */ update?: Maybe>>; }; type SystemReportingConnectionInfoMutationsCreateArgsDto = { entities: Array>; }; type SystemReportingConnectionInfoMutationsUpdateArgsDto = { entities: Array>; }; type SystemReportingConnectionInfoUpdateDto = { __typename?: 'SystemReportingConnectionInfoUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemReportingConnectionInfoUpdateMessageDto = { __typename?: 'SystemReportingConnectionInfoUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemContainer-1' */ type SystemReportingFileSystemContainerDto = SystemEntityInterfaceDto & SystemReportingFileSystemEntityInterfaceDto & { __typename?: 'SystemReportingFileSystemContainer'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; parent?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemContainer-1' */ type SystemReportingFileSystemContainerAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemContainer-1' */ type SystemReportingFileSystemContainerConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemContainer-1' */ type SystemReportingFileSystemContainerMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemContainer-1' */ type SystemReportingFileSystemContainerMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemContainer-1' */ type SystemReportingFileSystemContainerParentArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemContainer-1' */ type SystemReportingFileSystemContainerRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemContainer-1' */ type SystemReportingFileSystemContainerRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemContainer-1' */ type SystemReportingFileSystemContainerTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemReportingFileSystemContainer`. */ type SystemReportingFileSystemContainerConnectionDto = { __typename?: 'SystemReportingFileSystemContainerConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemReportingFileSystemContainer`. */ type SystemReportingFileSystemContainerEdgeDto = { __typename?: 'SystemReportingFileSystemContainerEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Interface for runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemContainer-1' */ type SystemReportingFileSystemContainerInterfaceDto = { ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; parent?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Interface for runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemContainer-1' */ type SystemReportingFileSystemContainerInterfaceConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Interface for runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemContainer-1' */ type SystemReportingFileSystemContainerInterfaceMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Interface for runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemContainer-1' */ type SystemReportingFileSystemContainerInterfaceMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Interface for runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemContainer-1' */ type SystemReportingFileSystemContainerInterfaceParentArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Interface for runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemContainer-1' */ type SystemReportingFileSystemContainerInterfaceRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Interface for runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemContainer-1' */ type SystemReportingFileSystemContainerInterfaceRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Interface for runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemContainer-1' */ type SystemReportingFileSystemContainerInterfaceTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type SystemReportingFileSystemContainerUpdateDto = { __typename?: 'SystemReportingFileSystemContainerUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemReportingFileSystemContainerUpdateMessageDto = { __typename?: 'SystemReportingFileSystemContainerUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Union of types derived from System.Reporting/FileSystemContainer for Children association */ type SystemReportingFileSystemContainer_ChildrenUnionDto = SystemReportingFileSystemItemDto | SystemReportingFolderDto; /** A connection to `SystemReportingFileSystemContainer_ChildrenUnion`. */ type SystemReportingFileSystemContainer_ChildrenUnionConnectionDto = { __typename?: 'SystemReportingFileSystemContainer_ChildrenUnionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemReportingFileSystemContainer_ChildrenUnion`. */ type SystemReportingFileSystemContainer_ChildrenUnionEdgeDto = { __typename?: 'SystemReportingFileSystemContainer_ChildrenUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemEntity-1' */ type SystemReportingFileSystemEntityDto = SystemEntityInterfaceDto & { __typename?: 'SystemReportingFileSystemEntity'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemEntity-1' */ type SystemReportingFileSystemEntityAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemEntity-1' */ type SystemReportingFileSystemEntityConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemEntity-1' */ type SystemReportingFileSystemEntityMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemEntity-1' */ type SystemReportingFileSystemEntityMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemEntity-1' */ type SystemReportingFileSystemEntityRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemEntity-1' */ type SystemReportingFileSystemEntityRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemEntity-1' */ type SystemReportingFileSystemEntityTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemReportingFileSystemEntity`. */ type SystemReportingFileSystemEntityConnectionDto = { __typename?: 'SystemReportingFileSystemEntityConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemReportingFileSystemEntity`. */ type SystemReportingFileSystemEntityEdgeDto = { __typename?: 'SystemReportingFileSystemEntityEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Interface for runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemEntity-1' */ type SystemReportingFileSystemEntityInterfaceDto = { ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Interface for runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemEntity-1' */ type SystemReportingFileSystemEntityInterfaceConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Interface for runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemEntity-1' */ type SystemReportingFileSystemEntityInterfaceMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Interface for runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemEntity-1' */ type SystemReportingFileSystemEntityInterfaceMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Interface for runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemEntity-1' */ type SystemReportingFileSystemEntityInterfaceRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Interface for runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemEntity-1' */ type SystemReportingFileSystemEntityInterfaceRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Interface for runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemEntity-1' */ type SystemReportingFileSystemEntityInterfaceTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type SystemReportingFileSystemEntityUpdateDto = { __typename?: 'SystemReportingFileSystemEntityUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemReportingFileSystemEntityUpdateMessageDto = { __typename?: 'SystemReportingFileSystemEntityUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemItem-1' */ type SystemReportingFileSystemItemDto = SystemEntityInterfaceDto & SystemReportingFileSystemContainerInterfaceDto & SystemReportingFileSystemEntityInterfaceDto & { __typename?: 'SystemReportingFileSystemItem'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; content: LargeBinaryInfoDto; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; parent?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemItem-1' */ type SystemReportingFileSystemItemAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemItem-1' */ type SystemReportingFileSystemItemConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemItem-1' */ type SystemReportingFileSystemItemMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemItem-1' */ type SystemReportingFileSystemItemMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemItem-1' */ type SystemReportingFileSystemItemParentArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemItem-1' */ type SystemReportingFileSystemItemRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemItem-1' */ type SystemReportingFileSystemItemRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Reporting-2.0.0/FileSystemItem-1' */ type SystemReportingFileSystemItemTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemReportingFileSystemItem`. */ type SystemReportingFileSystemItemConnectionDto = { __typename?: 'SystemReportingFileSystemItemConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemReportingFileSystemItem`. */ type SystemReportingFileSystemItemEdgeDto = { __typename?: 'SystemReportingFileSystemItemEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemReportingFileSystemItemInputDto = { configuredBy?: InputMaybe>>; content?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; parent?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; }; type SystemReportingFileSystemItemInputUpdateDto = { /** Item to update */ item: SystemReportingFileSystemItemInputDto; rtId?: InputMaybe; }; type SystemReportingFileSystemItemMutationsDto = { __typename?: 'SystemReportingFileSystemItemMutations'; /** Creates new entities of type 'SystemReportingFileSystemItem'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemReportingFileSystemItem'. */ update?: Maybe>>; }; type SystemReportingFileSystemItemMutationsCreateArgsDto = { entities: Array>; }; type SystemReportingFileSystemItemMutationsUpdateArgsDto = { entities: Array>; }; type SystemReportingFileSystemItemUpdateDto = { __typename?: 'SystemReportingFileSystemItemUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemReportingFileSystemItemUpdateMessageDto = { __typename?: 'SystemReportingFileSystemItemUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'System.Reporting-2.0.0/Folder-1' */ type SystemReportingFolderDto = SystemEntityInterfaceDto & SystemReportingFileSystemContainerInterfaceDto & SystemReportingFileSystemEntityInterfaceDto & { __typename?: 'SystemReportingFolder'; associations?: Maybe; children?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; parent?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Reporting-2.0.0/Folder-1' */ type SystemReportingFolderAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Reporting-2.0.0/Folder-1' */ type SystemReportingFolderChildrenArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Reporting-2.0.0/Folder-1' */ type SystemReportingFolderConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Reporting-2.0.0/Folder-1' */ type SystemReportingFolderMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Reporting-2.0.0/Folder-1' */ type SystemReportingFolderMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Reporting-2.0.0/Folder-1' */ type SystemReportingFolderParentArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Reporting-2.0.0/Folder-1' */ type SystemReportingFolderRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Reporting-2.0.0/Folder-1' */ type SystemReportingFolderRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Reporting-2.0.0/Folder-1' */ type SystemReportingFolderTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemReportingFolder`. */ type SystemReportingFolderConnectionDto = { __typename?: 'SystemReportingFolderConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemReportingFolder`. */ type SystemReportingFolderEdgeDto = { __typename?: 'SystemReportingFolderEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemReportingFolderInputDto = { children?: InputMaybe>>; configuredBy?: InputMaybe>>; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; parent?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; }; type SystemReportingFolderInputUpdateDto = { /** Item to update */ item: SystemReportingFolderInputDto; rtId?: InputMaybe; }; type SystemReportingFolderMutationsDto = { __typename?: 'SystemReportingFolderMutations'; /** Creates new entities of type 'SystemReportingFolder'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemReportingFolder'. */ update?: Maybe>>; }; type SystemReportingFolderMutationsCreateArgsDto = { entities: Array>; }; type SystemReportingFolderMutationsUpdateArgsDto = { entities: Array>; }; /** Runtime entities of construction kit type 'System.Reporting-2.0.0/FolderRoot-1' */ type SystemReportingFolderRootDto = SystemEntityInterfaceDto & SystemReportingFileSystemEntityInterfaceDto & { __typename?: 'SystemReportingFolderRoot'; associations?: Maybe; children?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Reporting-2.0.0/FolderRoot-1' */ type SystemReportingFolderRootAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Reporting-2.0.0/FolderRoot-1' */ type SystemReportingFolderRootChildrenArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Reporting-2.0.0/FolderRoot-1' */ type SystemReportingFolderRootConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Reporting-2.0.0/FolderRoot-1' */ type SystemReportingFolderRootMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Reporting-2.0.0/FolderRoot-1' */ type SystemReportingFolderRootMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Reporting-2.0.0/FolderRoot-1' */ type SystemReportingFolderRootRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Reporting-2.0.0/FolderRoot-1' */ type SystemReportingFolderRootRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Reporting-2.0.0/FolderRoot-1' */ type SystemReportingFolderRootTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemReportingFolderRoot`. */ type SystemReportingFolderRootConnectionDto = { __typename?: 'SystemReportingFolderRootConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemReportingFolderRoot`. */ type SystemReportingFolderRootEdgeDto = { __typename?: 'SystemReportingFolderRootEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemReportingFolderRootInputDto = { children?: InputMaybe>>; configuredBy?: InputMaybe>>; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; }; type SystemReportingFolderRootInputUpdateDto = { /** Item to update */ item: SystemReportingFolderRootInputDto; rtId?: InputMaybe; }; type SystemReportingFolderRootMutationsDto = { __typename?: 'SystemReportingFolderRootMutations'; /** Creates new entities of type 'SystemReportingFolderRoot'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemReportingFolderRoot'. */ update?: Maybe>>; }; type SystemReportingFolderRootMutationsCreateArgsDto = { entities: Array>; }; type SystemReportingFolderRootMutationsUpdateArgsDto = { entities: Array>; }; type SystemReportingFolderRootUpdateDto = { __typename?: 'SystemReportingFolderRootUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemReportingFolderRootUpdateMessageDto = { __typename?: 'SystemReportingFolderRootUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; type SystemReportingFolderUpdateDto = { __typename?: 'SystemReportingFolderUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemReportingFolderUpdateMessageDto = { __typename?: 'SystemReportingFolderUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Union of types derived from System.Reporting/Folder for Parent association */ type SystemReportingFolder_ParentUnionDto = SystemReportingFolderDto | SystemReportingFolderRootDto; /** A connection to `SystemReportingFolder_ParentUnion`. */ type SystemReportingFolder_ParentUnionConnectionDto = { __typename?: 'SystemReportingFolder_ParentUnionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemReportingFolder_ParentUnion`. */ type SystemReportingFolder_ParentUnionEdgeDto = { __typename?: 'SystemReportingFolder_ParentUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Runtime entities of construction kit type 'System-2.0.9/SimpleRtQuery-1' */ type SystemSimpleRtQueryDto = SystemEntityInterfaceDto & SystemPersistentQueryInterfaceDto & { __typename?: 'SystemSimpleRtQuery'; associations?: Maybe; attributeSearchFilter?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; columns: Array; configuredBy?: Maybe; constructionKitType?: Maybe; description?: Maybe; fieldFilter?: Maybe>; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; navigationFilterMode?: Maybe; queryCkTypeId: Scalars['String']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; sorting?: Maybe>; taggedBy?: Maybe; textSearchFilter?: Maybe; }; /** Runtime entities of construction kit type 'System-2.0.9/SimpleRtQuery-1' */ type SystemSimpleRtQueryAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/SimpleRtQuery-1' */ type SystemSimpleRtQueryConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/SimpleRtQuery-1' */ type SystemSimpleRtQueryMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/SimpleRtQuery-1' */ type SystemSimpleRtQueryMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/SimpleRtQuery-1' */ type SystemSimpleRtQueryRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/SimpleRtQuery-1' */ type SystemSimpleRtQueryRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/SimpleRtQuery-1' */ type SystemSimpleRtQueryTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemSimpleRtQuery`. */ type SystemSimpleRtQueryConnectionDto = { __typename?: 'SystemSimpleRtQueryConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemSimpleRtQuery`. */ type SystemSimpleRtQueryEdgeDto = { __typename?: 'SystemSimpleRtQueryEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemSimpleRtQueryInputDto = { attributeSearchFilter?: InputMaybe; columns?: InputMaybe>; configuredBy?: InputMaybe>>; description?: InputMaybe; fieldFilter?: InputMaybe>>; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; navigationFilterMode?: InputMaybe; queryCkTypeId?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; sorting?: InputMaybe>>; taggedBy?: InputMaybe>>; textSearchFilter?: InputMaybe; }; type SystemSimpleRtQueryInputUpdateDto = { /** Item to update */ item: SystemSimpleRtQueryInputDto; rtId?: InputMaybe; }; type SystemSimpleRtQueryMutationsDto = { __typename?: 'SystemSimpleRtQueryMutations'; /** Creates new entities of type 'SystemSimpleRtQuery'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemSimpleRtQuery'. */ update?: Maybe>>; }; type SystemSimpleRtQueryMutationsCreateArgsDto = { entities: Array>; }; type SystemSimpleRtQueryMutationsUpdateArgsDto = { entities: Array>; }; type SystemSimpleRtQueryUpdateDto = { __typename?: 'SystemSimpleRtQueryUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemSimpleRtQueryUpdateMessageDto = { __typename?: 'SystemSimpleRtQueryUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/SimpleSdQuery-1' */ type SystemSimpleSdQueryDto = SystemEntityInterfaceDto & SystemPersistentQueryInterfaceDto & SystemStreamDataQueryInterfaceDto & { __typename?: 'SystemSimpleSdQuery'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; columns: Array; configuredBy?: Maybe; constructionKitType?: Maybe; description?: Maybe; fieldFilter?: Maybe>; from?: Maybe; limit?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; navigationFilterMode?: Maybe; queryCkTypeId: Scalars['String']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtIds?: Maybe>; rtVersion?: Maybe; rtWellKnownName?: Maybe; sorting?: Maybe>; taggedBy?: Maybe; to?: Maybe; }; /** Runtime entities of construction kit type 'System-2.0.9/SimpleSdQuery-1' */ type SystemSimpleSdQueryAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/SimpleSdQuery-1' */ type SystemSimpleSdQueryConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/SimpleSdQuery-1' */ type SystemSimpleSdQueryMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/SimpleSdQuery-1' */ type SystemSimpleSdQueryMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/SimpleSdQuery-1' */ type SystemSimpleSdQueryRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/SimpleSdQuery-1' */ type SystemSimpleSdQueryRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/SimpleSdQuery-1' */ type SystemSimpleSdQueryTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemSimpleSdQuery`. */ type SystemSimpleSdQueryConnectionDto = { __typename?: 'SystemSimpleSdQueryConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemSimpleSdQuery`. */ type SystemSimpleSdQueryEdgeDto = { __typename?: 'SystemSimpleSdQueryEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemSimpleSdQueryInputDto = { columns?: InputMaybe>; configuredBy?: InputMaybe>>; description?: InputMaybe; fieldFilter?: InputMaybe>>; from?: InputMaybe; limit?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; navigationFilterMode?: InputMaybe; queryCkTypeId?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtIds?: InputMaybe>; rtWellKnownName?: InputMaybe; sorting?: InputMaybe>>; taggedBy?: InputMaybe>>; to?: InputMaybe; }; type SystemSimpleSdQueryInputUpdateDto = { /** Item to update */ item: SystemSimpleSdQueryInputDto; rtId?: InputMaybe; }; type SystemSimpleSdQueryMutationsDto = { __typename?: 'SystemSimpleSdQueryMutations'; /** Creates new entities of type 'SystemSimpleSdQuery'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemSimpleSdQuery'. */ update?: Maybe>>; }; type SystemSimpleSdQueryMutationsCreateArgsDto = { entities: Array>; }; type SystemSimpleSdQueryMutationsUpdateArgsDto = { entities: Array>; }; type SystemSimpleSdQueryUpdateDto = { __typename?: 'SystemSimpleSdQueryUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemSimpleSdQueryUpdateMessageDto = { __typename?: 'SystemSimpleSdQueryUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit record 'System/SortOrderItem' */ type SystemSortOrderItemDto = { __typename?: 'SystemSortOrderItem'; attributePath: Scalars['String']['output']; constructionKitType?: Maybe; sortOrder: SystemSortOrdersDto; }; type SystemSortOrderItemInputDto = { attributePath?: InputMaybe; sortOrder?: InputMaybe; }; /** Runtime entities of construction kit enum 'System/SortOrders' */ declare enum SystemSortOrdersDto { /** Ascending order */ AscendingDto = "ASCENDING", /** Default sorting based on data source type */ DefaultDto = "DEFAULT", /** Descending order */ DescendingDto = "DESCENDING" } /** Runtime entities of construction kit type 'System-2.0.9/StreamDataQuery-1' */ type SystemStreamDataQueryDto = SystemEntityInterfaceDto & SystemPersistentQueryInterfaceDto & { __typename?: 'SystemStreamDataQuery'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; description?: Maybe; fieldFilter?: Maybe>; from?: Maybe; limit?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; navigationFilterMode?: Maybe; queryCkTypeId: Scalars['String']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtIds?: Maybe>; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; to?: Maybe; }; /** Runtime entities of construction kit type 'System-2.0.9/StreamDataQuery-1' */ type SystemStreamDataQueryAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/StreamDataQuery-1' */ type SystemStreamDataQueryConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/StreamDataQuery-1' */ type SystemStreamDataQueryMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/StreamDataQuery-1' */ type SystemStreamDataQueryMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/StreamDataQuery-1' */ type SystemStreamDataQueryRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/StreamDataQuery-1' */ type SystemStreamDataQueryRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/StreamDataQuery-1' */ type SystemStreamDataQueryTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemStreamDataQuery`. */ type SystemStreamDataQueryConnectionDto = { __typename?: 'SystemStreamDataQueryConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemStreamDataQuery`. */ type SystemStreamDataQueryEdgeDto = { __typename?: 'SystemStreamDataQueryEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Interface for runtime entities of construction kit type 'System-2.0.9/StreamDataQuery-1' */ type SystemStreamDataQueryInterfaceDto = { ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; description?: Maybe; fieldFilter?: Maybe>; from?: Maybe; limit?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; navigationFilterMode?: Maybe; queryCkTypeId: Scalars['String']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtIds?: Maybe>; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; to?: Maybe; }; /** Interface for runtime entities of construction kit type 'System-2.0.9/StreamDataQuery-1' */ type SystemStreamDataQueryInterfaceConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Interface for runtime entities of construction kit type 'System-2.0.9/StreamDataQuery-1' */ type SystemStreamDataQueryInterfaceMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Interface for runtime entities of construction kit type 'System-2.0.9/StreamDataQuery-1' */ type SystemStreamDataQueryInterfaceMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Interface for runtime entities of construction kit type 'System-2.0.9/StreamDataQuery-1' */ type SystemStreamDataQueryInterfaceRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Interface for runtime entities of construction kit type 'System-2.0.9/StreamDataQuery-1' */ type SystemStreamDataQueryInterfaceRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Interface for runtime entities of construction kit type 'System-2.0.9/StreamDataQuery-1' */ type SystemStreamDataQueryInterfaceTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type SystemStreamDataQueryUpdateDto = { __typename?: 'SystemStreamDataQueryUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemStreamDataQueryUpdateMessageDto = { __typename?: 'SystemStreamDataQueryUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/Tenant-1' */ type SystemTenantDto = SystemEntityInterfaceDto & { __typename?: 'SystemTenant'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; databaseName: Scalars['String']['output']; mapsFrom?: Maybe; mapsTo?: Maybe; parentTenantId?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; tenantId: Scalars['String']['output']; }; /** Runtime entities of construction kit type 'System-2.0.9/Tenant-1' */ type SystemTenantAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/Tenant-1' */ type SystemTenantConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/Tenant-1' */ type SystemTenantMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/Tenant-1' */ type SystemTenantMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/Tenant-1' */ type SystemTenantRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/Tenant-1' */ type SystemTenantRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/Tenant-1' */ type SystemTenantTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/TenantConfiguration-1' */ type SystemTenantConfigurationDto = SystemConfigurationInterfaceDto & SystemEntityInterfaceDto & { __typename?: 'SystemTenantConfiguration'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configurationValue?: Maybe; configuredBy?: Maybe; constructionKitType?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; usedBy?: Maybe; }; /** Runtime entities of construction kit type 'System-2.0.9/TenantConfiguration-1' */ type SystemTenantConfigurationAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/TenantConfiguration-1' */ type SystemTenantConfigurationConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/TenantConfiguration-1' */ type SystemTenantConfigurationMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/TenantConfiguration-1' */ type SystemTenantConfigurationMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/TenantConfiguration-1' */ type SystemTenantConfigurationRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/TenantConfiguration-1' */ type SystemTenantConfigurationRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/TenantConfiguration-1' */ type SystemTenantConfigurationTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/TenantConfiguration-1' */ type SystemTenantConfigurationUsedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemTenantConfiguration`. */ type SystemTenantConfigurationConnectionDto = { __typename?: 'SystemTenantConfigurationConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemTenantConfiguration`. */ type SystemTenantConfigurationEdgeDto = { __typename?: 'SystemTenantConfigurationEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemTenantConfigurationInputDto = { configurationValue?: InputMaybe; configuredBy?: InputMaybe>>; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; usedBy?: InputMaybe>>; }; type SystemTenantConfigurationInputUpdateDto = { /** Item to update */ item: SystemTenantConfigurationInputDto; rtId?: InputMaybe; }; type SystemTenantConfigurationMutationsDto = { __typename?: 'SystemTenantConfigurationMutations'; /** Creates new entities of type 'SystemTenantConfiguration'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemTenantConfiguration'. */ update?: Maybe>>; }; type SystemTenantConfigurationMutationsCreateArgsDto = { entities: Array>; }; type SystemTenantConfigurationMutationsUpdateArgsDto = { entities: Array>; }; type SystemTenantConfigurationUpdateDto = { __typename?: 'SystemTenantConfigurationUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemTenantConfigurationUpdateMessageDto = { __typename?: 'SystemTenantConfigurationUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** A connection to `SystemTenant`. */ type SystemTenantConnectionDto = { __typename?: 'SystemTenantConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemTenant`. */ type SystemTenantEdgeDto = { __typename?: 'SystemTenantEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemTenantInputDto = { configuredBy?: InputMaybe>>; databaseName?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; parentTenantId?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; tenantId?: InputMaybe; }; type SystemTenantInputUpdateDto = { /** Item to update */ item: SystemTenantInputDto; rtId?: InputMaybe; }; /** Runtime entities of construction kit type 'System-2.0.9/TenantModeConfiguration-1' */ type SystemTenantModeConfigurationDto = SystemConfigurationInterfaceDto & SystemEntityInterfaceDto & { __typename?: 'SystemTenantModeConfiguration'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; environmentMode: SystemEnvironmentModesDto; maintenanceLevel: SystemMaintenanceLevelsDto; mapsFrom?: Maybe; mapsTo?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; usedBy?: Maybe; }; /** Runtime entities of construction kit type 'System-2.0.9/TenantModeConfiguration-1' */ type SystemTenantModeConfigurationAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/TenantModeConfiguration-1' */ type SystemTenantModeConfigurationConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/TenantModeConfiguration-1' */ type SystemTenantModeConfigurationMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/TenantModeConfiguration-1' */ type SystemTenantModeConfigurationMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/TenantModeConfiguration-1' */ type SystemTenantModeConfigurationRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/TenantModeConfiguration-1' */ type SystemTenantModeConfigurationRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/TenantModeConfiguration-1' */ type SystemTenantModeConfigurationTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System-2.0.9/TenantModeConfiguration-1' */ type SystemTenantModeConfigurationUsedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemTenantModeConfiguration`. */ type SystemTenantModeConfigurationConnectionDto = { __typename?: 'SystemTenantModeConfigurationConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemTenantModeConfiguration`. */ type SystemTenantModeConfigurationEdgeDto = { __typename?: 'SystemTenantModeConfigurationEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemTenantModeConfigurationInputDto = { configuredBy?: InputMaybe>>; environmentMode?: InputMaybe; maintenanceLevel?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; usedBy?: InputMaybe>>; }; type SystemTenantModeConfigurationInputUpdateDto = { /** Item to update */ item: SystemTenantModeConfigurationInputDto; rtId?: InputMaybe; }; type SystemTenantModeConfigurationMutationsDto = { __typename?: 'SystemTenantModeConfigurationMutations'; /** Creates new entities of type 'SystemTenantModeConfiguration'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemTenantModeConfiguration'. */ update?: Maybe>>; }; type SystemTenantModeConfigurationMutationsCreateArgsDto = { entities: Array>; }; type SystemTenantModeConfigurationMutationsUpdateArgsDto = { entities: Array>; }; type SystemTenantModeConfigurationUpdateDto = { __typename?: 'SystemTenantModeConfigurationUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemTenantModeConfigurationUpdateMessageDto = { __typename?: 'SystemTenantModeConfigurationUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; type SystemTenantMutationsDto = { __typename?: 'SystemTenantMutations'; /** Creates new entities of type 'SystemTenant'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemTenant'. */ update?: Maybe>>; }; type SystemTenantMutationsCreateArgsDto = { entities: Array>; }; type SystemTenantMutationsUpdateArgsDto = { entities: Array>; }; type SystemTenantUpdateDto = { __typename?: 'SystemTenantUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemTenantUpdateMessageDto = { __typename?: 'SystemTenantUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit record 'System/TextSearchFilter' */ type SystemTextSearchFilterDto = { __typename?: 'SystemTextSearchFilter'; constructionKitType?: Maybe; searchValue: Scalars['String']['output']; }; type SystemTextSearchFilterInputDto = { searchValue?: InputMaybe; }; /** Runtime entities of construction kit type 'System.UI-2.1.0/Branding-1' */ type SystemUiBrandingDto = SystemEntityInterfaceDto & SystemUiuiElementInterfaceDto & { __typename?: 'SystemUIBranding'; appName?: Maybe; appTitle?: Maybe; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; darkTheme?: Maybe; description?: Maybe; favicon?: Maybe>>; footerLogo?: Maybe>>; headerLogo?: Maybe>>; lightTheme?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; name?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.UI-2.1.0/Branding-1' */ type SystemUiBrandingAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.UI-2.1.0/Branding-1' */ type SystemUiBrandingConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.UI-2.1.0/Branding-1' */ type SystemUiBrandingMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.UI-2.1.0/Branding-1' */ type SystemUiBrandingMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.UI-2.1.0/Branding-1' */ type SystemUiBrandingRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.UI-2.1.0/Branding-1' */ type SystemUiBrandingRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.UI-2.1.0/Branding-1' */ type SystemUiBrandingTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemUIBranding`. */ type SystemUiBrandingConnectionDto = { __typename?: 'SystemUIBrandingConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemUIBranding`. */ type SystemUiBrandingEdgeDto = { __typename?: 'SystemUIBrandingEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemUiBrandingInputDto = { appName?: InputMaybe; appTitle?: InputMaybe; configuredBy?: InputMaybe>>; darkTheme?: InputMaybe; description?: InputMaybe; favicon?: InputMaybe>>; footerLogo?: InputMaybe>>; headerLogo?: InputMaybe>>; lightTheme?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; }; type SystemUiBrandingInputUpdateDto = { /** Item to update */ item: SystemUiBrandingInputDto; rtId?: InputMaybe; }; type SystemUiBrandingMutationsDto = { __typename?: 'SystemUIBrandingMutations'; /** Creates new entities of type 'SystemUIBranding'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemUIBranding'. */ update?: Maybe>>; }; type SystemUiBrandingMutationsCreateArgsDto = { entities: Array>; }; type SystemUiBrandingMutationsUpdateArgsDto = { entities: Array>; }; type SystemUiBrandingUpdateDto = { __typename?: 'SystemUIBrandingUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemUiBrandingUpdateMessageDto = { __typename?: 'SystemUIBrandingUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'System.UI-2.1.0/Dashboard-1' */ type SystemUiDashboardDto = SystemEntityInterfaceDto & SystemUiuiElementInterfaceDto & { __typename?: 'SystemUIDashboard'; associations?: Maybe; children?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; columns: Scalars['Int']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; description: Scalars['String']['output']; gap: Scalars['Int']['output']; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rowHeight: Scalars['Int']['output']; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.UI-2.1.0/Dashboard-1' */ type SystemUiDashboardAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.UI-2.1.0/Dashboard-1' */ type SystemUiDashboardChildrenArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.UI-2.1.0/Dashboard-1' */ type SystemUiDashboardConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.UI-2.1.0/Dashboard-1' */ type SystemUiDashboardMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.UI-2.1.0/Dashboard-1' */ type SystemUiDashboardMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.UI-2.1.0/Dashboard-1' */ type SystemUiDashboardRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.UI-2.1.0/Dashboard-1' */ type SystemUiDashboardRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.UI-2.1.0/Dashboard-1' */ type SystemUiDashboardTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemUIDashboard`. */ type SystemUiDashboardConnectionDto = { __typename?: 'SystemUIDashboardConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemUIDashboard`. */ type SystemUiDashboardEdgeDto = { __typename?: 'SystemUIDashboardEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemUiDashboardInputDto = { children?: InputMaybe>>; columns?: InputMaybe; configuredBy?: InputMaybe>>; description?: InputMaybe; gap?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rowHeight?: InputMaybe; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; }; type SystemUiDashboardInputUpdateDto = { /** Item to update */ item: SystemUiDashboardInputDto; rtId?: InputMaybe; }; type SystemUiDashboardMutationsDto = { __typename?: 'SystemUIDashboardMutations'; /** Creates new entities of type 'SystemUIDashboard'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemUIDashboard'. */ update?: Maybe>>; }; type SystemUiDashboardMutationsCreateArgsDto = { entities: Array>; }; type SystemUiDashboardMutationsUpdateArgsDto = { entities: Array>; }; type SystemUiDashboardUpdateDto = { __typename?: 'SystemUIDashboardUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemUiDashboardUpdateMessageDto = { __typename?: 'SystemUIDashboardUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'System.UI-2.1.0/DashboardWidget-1' */ type SystemUiDashboardWidgetDto = SystemEntityInterfaceDto & SystemUiuiElementInterfaceDto & { __typename?: 'SystemUIDashboardWidget'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; col: Scalars['Int']['output']; colSpan: Scalars['Int']['output']; config: Scalars['String']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; dataSourceCkTypeId?: Maybe; dataSourceRtId?: Maybe; dataSourceType: Scalars['String']['output']; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; parent?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; row: Scalars['Int']['output']; rowSpan: Scalars['Int']['output']; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; type: Scalars['String']['output']; }; /** Runtime entities of construction kit type 'System.UI-2.1.0/DashboardWidget-1' */ type SystemUiDashboardWidgetAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.UI-2.1.0/DashboardWidget-1' */ type SystemUiDashboardWidgetConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.UI-2.1.0/DashboardWidget-1' */ type SystemUiDashboardWidgetMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.UI-2.1.0/DashboardWidget-1' */ type SystemUiDashboardWidgetMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.UI-2.1.0/DashboardWidget-1' */ type SystemUiDashboardWidgetParentArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.UI-2.1.0/DashboardWidget-1' */ type SystemUiDashboardWidgetRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.UI-2.1.0/DashboardWidget-1' */ type SystemUiDashboardWidgetRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.UI-2.1.0/DashboardWidget-1' */ type SystemUiDashboardWidgetTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemUIDashboardWidget`. */ type SystemUiDashboardWidgetConnectionDto = { __typename?: 'SystemUIDashboardWidgetConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemUIDashboardWidget`. */ type SystemUiDashboardWidgetEdgeDto = { __typename?: 'SystemUIDashboardWidgetEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemUiDashboardWidgetInputDto = { col?: InputMaybe; colSpan?: InputMaybe; config?: InputMaybe; configuredBy?: InputMaybe>>; dataSourceCkTypeId?: InputMaybe; dataSourceRtId?: InputMaybe; dataSourceType?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; parent?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; row?: InputMaybe; rowSpan?: InputMaybe; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; type?: InputMaybe; }; type SystemUiDashboardWidgetInputUpdateDto = { /** Item to update */ item: SystemUiDashboardWidgetInputDto; rtId?: InputMaybe; }; type SystemUiDashboardWidgetMutationsDto = { __typename?: 'SystemUIDashboardWidgetMutations'; /** Creates new entities of type 'SystemUIDashboardWidget'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemUIDashboardWidget'. */ update?: Maybe>>; }; type SystemUiDashboardWidgetMutationsCreateArgsDto = { entities: Array>; }; type SystemUiDashboardWidgetMutationsUpdateArgsDto = { entities: Array>; }; type SystemUiDashboardWidgetUpdateDto = { __typename?: 'SystemUIDashboardWidgetUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemUiDashboardWidgetUpdateMessageDto = { __typename?: 'SystemUIDashboardWidgetUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Union of types derived from System.UI/DashboardWidget for Children association */ type SystemUiDashboardWidget_ChildrenUnionDto = SystemUiDashboardWidgetDto; /** A connection to `SystemUIDashboardWidget_ChildrenUnion`. */ type SystemUiDashboardWidget_ChildrenUnionConnectionDto = { __typename?: 'SystemUIDashboardWidget_ChildrenUnionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemUIDashboardWidget_ChildrenUnion`. */ type SystemUiDashboardWidget_ChildrenUnionEdgeDto = { __typename?: 'SystemUIDashboardWidget_ChildrenUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Union of types derived from System.UI/Dashboard for Parent association */ type SystemUiDashboard_ParentUnionDto = SystemUiDashboardDto; /** A connection to `SystemUIDashboard_ParentUnion`. */ type SystemUiDashboard_ParentUnionConnectionDto = { __typename?: 'SystemUIDashboard_ParentUnionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemUIDashboard_ParentUnion`. */ type SystemUiDashboard_ParentUnionEdgeDto = { __typename?: 'SystemUIDashboard_ParentUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Runtime entities of construction kit type 'System.UI-2.1.0/ProcessDiagram-1' */ type SystemUiProcessDiagramDto = SystemEntityInterfaceDto & SystemUiuiElementInterfaceDto & { __typename?: 'SystemUIProcessDiagram'; animations?: Maybe; associations?: Maybe; canvasBackgroundColor?: Maybe; canvasHeight: Scalars['Int']['output']; canvasWidth: Scalars['Int']['output']; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; connections: Scalars['String']['output']; constructionKitType?: Maybe; description?: Maybe; elements: Scalars['String']['output']; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; primitives?: Maybe; propertyBindings?: Maybe; refreshInterval?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; symbolInstances?: Maybe; taggedBy?: Maybe; transformProperties?: Maybe; variables?: Maybe; version: Scalars['String']['output']; }; /** Runtime entities of construction kit type 'System.UI-2.1.0/ProcessDiagram-1' */ type SystemUiProcessDiagramAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.UI-2.1.0/ProcessDiagram-1' */ type SystemUiProcessDiagramConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.UI-2.1.0/ProcessDiagram-1' */ type SystemUiProcessDiagramMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.UI-2.1.0/ProcessDiagram-1' */ type SystemUiProcessDiagramMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.UI-2.1.0/ProcessDiagram-1' */ type SystemUiProcessDiagramRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.UI-2.1.0/ProcessDiagram-1' */ type SystemUiProcessDiagramRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.UI-2.1.0/ProcessDiagram-1' */ type SystemUiProcessDiagramTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemUIProcessDiagram`. */ type SystemUiProcessDiagramConnectionDto = { __typename?: 'SystemUIProcessDiagramConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemUIProcessDiagram`. */ type SystemUiProcessDiagramEdgeDto = { __typename?: 'SystemUIProcessDiagramEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemUiProcessDiagramInputDto = { animations?: InputMaybe; canvasBackgroundColor?: InputMaybe; canvasHeight?: InputMaybe; canvasWidth?: InputMaybe; configuredBy?: InputMaybe>>; connections?: InputMaybe; description?: InputMaybe; elements?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; primitives?: InputMaybe; propertyBindings?: InputMaybe; refreshInterval?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; symbolInstances?: InputMaybe; taggedBy?: InputMaybe>>; transformProperties?: InputMaybe; variables?: InputMaybe; version?: InputMaybe; }; type SystemUiProcessDiagramInputUpdateDto = { /** Item to update */ item: SystemUiProcessDiagramInputDto; rtId?: InputMaybe; }; type SystemUiProcessDiagramMutationsDto = { __typename?: 'SystemUIProcessDiagramMutations'; /** Creates new entities of type 'SystemUIProcessDiagram'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemUIProcessDiagram'. */ update?: Maybe>>; }; type SystemUiProcessDiagramMutationsCreateArgsDto = { entities: Array>; }; type SystemUiProcessDiagramMutationsUpdateArgsDto = { entities: Array>; }; type SystemUiProcessDiagramUpdateDto = { __typename?: 'SystemUIProcessDiagramUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemUiProcessDiagramUpdateMessageDto = { __typename?: 'SystemUIProcessDiagramUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'System.UI-2.1.0/SymbolDefinition-1' */ type SystemUiSymbolDefinitionDto = SystemEntityInterfaceDto & SystemUiuiElementInterfaceDto & { __typename?: 'SystemUISymbolDefinition'; associations?: Maybe; boundsHeight: Scalars['Int']['output']; boundsWidth: Scalars['Int']['output']; canvasSizeHeight?: Maybe; canvasSizeWidth?: Maybe; category?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; connectionPoints?: Maybe; constructionKitType?: Maybe; description?: Maybe; gridSize?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; parameters?: Maybe; parent?: Maybe; previewImage?: Maybe; primitives: Scalars['String']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; symbolInstances?: Maybe; taggedBy?: Maybe; tags?: Maybe; version: Scalars['String']['output']; }; /** Runtime entities of construction kit type 'System.UI-2.1.0/SymbolDefinition-1' */ type SystemUiSymbolDefinitionAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.UI-2.1.0/SymbolDefinition-1' */ type SystemUiSymbolDefinitionConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.UI-2.1.0/SymbolDefinition-1' */ type SystemUiSymbolDefinitionMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.UI-2.1.0/SymbolDefinition-1' */ type SystemUiSymbolDefinitionMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.UI-2.1.0/SymbolDefinition-1' */ type SystemUiSymbolDefinitionParentArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.UI-2.1.0/SymbolDefinition-1' */ type SystemUiSymbolDefinitionRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.UI-2.1.0/SymbolDefinition-1' */ type SystemUiSymbolDefinitionRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.UI-2.1.0/SymbolDefinition-1' */ type SystemUiSymbolDefinitionTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemUISymbolDefinition`. */ type SystemUiSymbolDefinitionConnectionDto = { __typename?: 'SystemUISymbolDefinitionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemUISymbolDefinition`. */ type SystemUiSymbolDefinitionEdgeDto = { __typename?: 'SystemUISymbolDefinitionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemUiSymbolDefinitionInputDto = { boundsHeight?: InputMaybe; boundsWidth?: InputMaybe; canvasSizeHeight?: InputMaybe; canvasSizeWidth?: InputMaybe; category?: InputMaybe; configuredBy?: InputMaybe>>; connectionPoints?: InputMaybe; description?: InputMaybe; gridSize?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; parameters?: InputMaybe; parent?: InputMaybe>>; previewImage?: InputMaybe; primitives?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; symbolInstances?: InputMaybe; taggedBy?: InputMaybe>>; tags?: InputMaybe; version?: InputMaybe; }; type SystemUiSymbolDefinitionInputUpdateDto = { /** Item to update */ item: SystemUiSymbolDefinitionInputDto; rtId?: InputMaybe; }; type SystemUiSymbolDefinitionMutationsDto = { __typename?: 'SystemUISymbolDefinitionMutations'; /** Creates new entities of type 'SystemUISymbolDefinition'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemUISymbolDefinition'. */ update?: Maybe>>; }; type SystemUiSymbolDefinitionMutationsCreateArgsDto = { entities: Array>; }; type SystemUiSymbolDefinitionMutationsUpdateArgsDto = { entities: Array>; }; type SystemUiSymbolDefinitionUpdateDto = { __typename?: 'SystemUISymbolDefinitionUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemUiSymbolDefinitionUpdateMessageDto = { __typename?: 'SystemUISymbolDefinitionUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Union of types derived from System.UI/SymbolDefinition for Children association */ type SystemUiSymbolDefinition_ChildrenUnionDto = SystemUiSymbolDefinitionDto; /** A connection to `SystemUISymbolDefinition_ChildrenUnion`. */ type SystemUiSymbolDefinition_ChildrenUnionConnectionDto = { __typename?: 'SystemUISymbolDefinition_ChildrenUnionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemUISymbolDefinition_ChildrenUnion`. */ type SystemUiSymbolDefinition_ChildrenUnionEdgeDto = { __typename?: 'SystemUISymbolDefinition_ChildrenUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Runtime entities of construction kit type 'System.UI-2.1.0/SymbolLibrary-1' */ type SystemUiSymbolLibraryDto = SystemEntityInterfaceDto & SystemUiuiElementInterfaceDto & { __typename?: 'SystemUISymbolLibrary'; associations?: Maybe; author?: Maybe; children?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; description?: Maybe; isBuiltIn?: Maybe; isReadOnly?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; version: Scalars['String']['output']; }; /** Runtime entities of construction kit type 'System.UI-2.1.0/SymbolLibrary-1' */ type SystemUiSymbolLibraryAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.UI-2.1.0/SymbolLibrary-1' */ type SystemUiSymbolLibraryChildrenArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.UI-2.1.0/SymbolLibrary-1' */ type SystemUiSymbolLibraryConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.UI-2.1.0/SymbolLibrary-1' */ type SystemUiSymbolLibraryMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.UI-2.1.0/SymbolLibrary-1' */ type SystemUiSymbolLibraryMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.UI-2.1.0/SymbolLibrary-1' */ type SystemUiSymbolLibraryRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.UI-2.1.0/SymbolLibrary-1' */ type SystemUiSymbolLibraryRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.UI-2.1.0/SymbolLibrary-1' */ type SystemUiSymbolLibraryTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemUISymbolLibrary`. */ type SystemUiSymbolLibraryConnectionDto = { __typename?: 'SystemUISymbolLibraryConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemUISymbolLibrary`. */ type SystemUiSymbolLibraryEdgeDto = { __typename?: 'SystemUISymbolLibraryEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemUiSymbolLibraryInputDto = { author?: InputMaybe; children?: InputMaybe>>; configuredBy?: InputMaybe>>; description?: InputMaybe; isBuiltIn?: InputMaybe; isReadOnly?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; version?: InputMaybe; }; type SystemUiSymbolLibraryInputUpdateDto = { /** Item to update */ item: SystemUiSymbolLibraryInputDto; rtId?: InputMaybe; }; type SystemUiSymbolLibraryMutationsDto = { __typename?: 'SystemUISymbolLibraryMutations'; /** Creates new entities of type 'SystemUISymbolLibrary'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemUISymbolLibrary'. */ update?: Maybe>>; }; type SystemUiSymbolLibraryMutationsCreateArgsDto = { entities: Array>; }; type SystemUiSymbolLibraryMutationsUpdateArgsDto = { entities: Array>; }; type SystemUiSymbolLibraryUpdateDto = { __typename?: 'SystemUISymbolLibraryUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemUiSymbolLibraryUpdateMessageDto = { __typename?: 'SystemUISymbolLibraryUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Union of types derived from System.UI/SymbolLibrary for Parent association */ type SystemUiSymbolLibrary_ParentUnionDto = SystemUiSymbolLibraryDto; /** A connection to `SystemUISymbolLibrary_ParentUnion`. */ type SystemUiSymbolLibrary_ParentUnionConnectionDto = { __typename?: 'SystemUISymbolLibrary_ParentUnionConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemUISymbolLibrary_ParentUnion`. */ type SystemUiSymbolLibrary_ParentUnionEdgeDto = { __typename?: 'SystemUISymbolLibrary_ParentUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Runtime entities of construction kit record 'System.UI/ThemeGradient' */ type SystemUiThemeGradientDto = { __typename?: 'SystemUIThemeGradient'; constructionKitType?: Maybe; endColor: Scalars['String']['output']; startColor: Scalars['String']['output']; }; type SystemUiThemeGradientInputDto = { endColor?: InputMaybe; startColor?: InputMaybe; }; /** Runtime entities of construction kit record 'System.UI/ThemePalette' */ type SystemUiThemePaletteDto = { __typename?: 'SystemUIThemePalette'; backgroundColor?: Maybe; constructionKitType?: Maybe; footerGradient?: Maybe; headerGradient?: Maybe; neutralColor?: Maybe; primaryColor?: Maybe; secondaryColor?: Maybe; tertiaryColor?: Maybe; }; type SystemUiThemePaletteInputDto = { backgroundColor?: InputMaybe; footerGradient?: InputMaybe; headerGradient?: InputMaybe; neutralColor?: InputMaybe; primaryColor?: InputMaybe; secondaryColor?: InputMaybe; tertiaryColor?: InputMaybe; }; /** Runtime entities of construction kit type 'System.UI-2.1.0/UIElement-1' */ type SystemUiuiElementDto = SystemEntityInterfaceDto & { __typename?: 'SystemUIUIElement'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.UI-2.1.0/UIElement-1' */ type SystemUiuiElementAssociationsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckId: Scalars['String']['input']; direction: GraphDirectionDto; fieldFilter?: InputMaybe>>; first?: InputMaybe; includeIndirect?: InputMaybe; roleId: Scalars['String']['input']; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.UI-2.1.0/UIElement-1' */ type SystemUiuiElementConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.UI-2.1.0/UIElement-1' */ type SystemUiuiElementMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.UI-2.1.0/UIElement-1' */ type SystemUiuiElementMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.UI-2.1.0/UIElement-1' */ type SystemUiuiElementRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.UI-2.1.0/UIElement-1' */ type SystemUiuiElementRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.UI-2.1.0/UIElement-1' */ type SystemUiuiElementTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemUIUIElement`. */ type SystemUiuiElementConnectionDto = { __typename?: 'SystemUIUIElementConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `SystemUIUIElement`. */ type SystemUiuiElementEdgeDto = { __typename?: 'SystemUIUIElementEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Interface for runtime entities of construction kit type 'System.UI-2.1.0/UIElement-1' */ type SystemUiuiElementInterfaceDto = { ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Interface for runtime entities of construction kit type 'System.UI-2.1.0/UIElement-1' */ type SystemUiuiElementInterfaceConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Interface for runtime entities of construction kit type 'System.UI-2.1.0/UIElement-1' */ type SystemUiuiElementInterfaceMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Interface for runtime entities of construction kit type 'System.UI-2.1.0/UIElement-1' */ type SystemUiuiElementInterfaceMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Interface for runtime entities of construction kit type 'System.UI-2.1.0/UIElement-1' */ type SystemUiuiElementInterfaceRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Interface for runtime entities of construction kit type 'System.UI-2.1.0/UIElement-1' */ type SystemUiuiElementInterfaceRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Interface for runtime entities of construction kit type 'System.UI-2.1.0/UIElement-1' */ type SystemUiuiElementInterfaceTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type SystemUiuiElementUpdateDto = { __typename?: 'SystemUIUIElementUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemUiuiElementUpdateMessageDto = { __typename?: 'SystemUIUIElementUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Enum of valid update types */ declare enum UpdateTypeDto { DeleteDto = "DELETE", InsertDto = "INSERT", ReplaceDto = "REPLACE", UndefinedDto = "UNDEFINED", UpdateDto = "UPDATE" } /** Aggregation result of items */ type AggregationDto = { __typename?: 'aggregation'; /** The average value of the given attribute paths. */ avgStatistics?: Maybe>>; /** The count of entities in the group. */ count: Scalars['Int']['output']; /** The count of value of the given attribute paths that are not null. */ countStatistics?: Maybe>>; /** The maximum value of the given attribute paths. */ maxStatistics?: Maybe>>; /** The minimum value of the given attribute paths. */ minStatistics?: Maybe>>; /** The sum value of the given attribute paths. */ sumStatistics?: Maybe>>; }; /** Field aggregation result of items */ type FieldAggregationDto = { __typename?: 'fieldAggregation'; /** The average value of the given attribute paths. */ avgStatistics?: Maybe>>; /** The count of entities in the group. */ count: Scalars['Int']['output']; /** The count of value of the given attribute paths that are not null. */ countStatistics?: Maybe>>; /** A list of attributes paths the items are grouped by. */ groupByAttributePaths: Array>; /** The key value of the group. */ keys: Array>; /** The maximum value of the given attribute paths. */ maxStatistics?: Maybe>>; /** The minimum value of the given attribute paths. */ minStatistics?: Maybe>>; /** The sum value of the given attribute paths. */ sumStatistics?: Maybe>>; }; /** Statistics of items result */ type StatisticsDto = { __typename?: 'statistics'; /** Attribute path of the statistic */ attributePath?: Maybe; /** Statistic value */ value?: Maybe; }; /** Stream data entities of construction kit type 'Industry.Basic-2.1.0/Alarm-1' */ type StreamIndustryBasicAlarmDto = { __typename?: 'streamIndustryBasicAlarm'; acknowledged?: Maybe; category?: Maybe; cause?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; cleared?: Maybe; constructionKitType?: Maybe; lastModified?: Maybe; message?: Maybe; priority?: Maybe; reactivated?: Maybe; reactivatedCount?: Maybe; received?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtWellKnownName?: Maybe; source?: Maybe; state?: Maybe; tagName?: Maybe; timestamp?: Maybe; type?: Maybe; }; /** Stream data entities of construction kit type 'Industry.Basic-2.1.0/Alarm-1' */ type StreamIndustryBasicAlarmAcknowledgedArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Basic-2.1.0/Alarm-1' */ type StreamIndustryBasicAlarmCategoryArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Basic-2.1.0/Alarm-1' */ type StreamIndustryBasicAlarmCauseArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Basic-2.1.0/Alarm-1' */ type StreamIndustryBasicAlarmClearedArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Basic-2.1.0/Alarm-1' */ type StreamIndustryBasicAlarmLastModifiedArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Basic-2.1.0/Alarm-1' */ type StreamIndustryBasicAlarmMessageArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Basic-2.1.0/Alarm-1' */ type StreamIndustryBasicAlarmPriorityArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Basic-2.1.0/Alarm-1' */ type StreamIndustryBasicAlarmReactivatedArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Basic-2.1.0/Alarm-1' */ type StreamIndustryBasicAlarmReactivatedCountArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Basic-2.1.0/Alarm-1' */ type StreamIndustryBasicAlarmReceivedArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Basic-2.1.0/Alarm-1' */ type StreamIndustryBasicAlarmRtChangedDateTimeArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Basic-2.1.0/Alarm-1' */ type StreamIndustryBasicAlarmSourceArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Basic-2.1.0/Alarm-1' */ type StreamIndustryBasicAlarmStateArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Basic-2.1.0/Alarm-1' */ type StreamIndustryBasicAlarmTagNameArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Basic-2.1.0/Alarm-1' */ type StreamIndustryBasicAlarmTypeArgsDto = { arg?: InputMaybe; }; /** A connection to `streamIndustryBasicAlarm`. */ type StreamIndustryBasicAlarmConnectionDto = { __typename?: 'streamIndustryBasicAlarmConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `streamIndustryBasicAlarm`. */ type StreamIndustryBasicAlarmEdgeDto = { __typename?: 'streamIndustryBasicAlarmEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Stream data entities of construction kit type 'Industry.Basic-2.1.0/Event-1' */ type StreamIndustryBasicEventDto = { __typename?: 'streamIndustryBasicEvent'; category?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; constructionKitType?: Maybe; message?: Maybe; received?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtWellKnownName?: Maybe; tagName?: Maybe; timestamp?: Maybe; }; /** Stream data entities of construction kit type 'Industry.Basic-2.1.0/Event-1' */ type StreamIndustryBasicEventCategoryArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Basic-2.1.0/Event-1' */ type StreamIndustryBasicEventMessageArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Basic-2.1.0/Event-1' */ type StreamIndustryBasicEventReceivedArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Basic-2.1.0/Event-1' */ type StreamIndustryBasicEventRtChangedDateTimeArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Basic-2.1.0/Event-1' */ type StreamIndustryBasicEventTagNameArgsDto = { arg?: InputMaybe; }; /** A connection to `streamIndustryBasicEvent`. */ type StreamIndustryBasicEventConnectionDto = { __typename?: 'streamIndustryBasicEventConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `streamIndustryBasicEvent`. */ type StreamIndustryBasicEventEdgeDto = { __typename?: 'streamIndustryBasicEventEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Stream data entities of construction kit type 'Industry.Basic-2.1.0/Machine-1' */ type StreamIndustryBasicMachineDto = { __typename?: 'streamIndustryBasicMachine'; ckTypeId: Scalars['RtCkTypeId']['output']; constructionKitType?: Maybe; machineState?: Maybe; operatingHours?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtWellKnownName?: Maybe; standStillCounter?: Maybe; timestamp?: Maybe; }; /** Stream data entities of construction kit type 'Industry.Basic-2.1.0/Machine-1' */ type StreamIndustryBasicMachineMachineStateArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Basic-2.1.0/Machine-1' */ type StreamIndustryBasicMachineOperatingHoursArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Basic-2.1.0/Machine-1' */ type StreamIndustryBasicMachineRtChangedDateTimeArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Basic-2.1.0/Machine-1' */ type StreamIndustryBasicMachineStandStillCounterArgsDto = { arg?: InputMaybe; }; /** A connection to `streamIndustryBasicMachine`. */ type StreamIndustryBasicMachineConnectionDto = { __typename?: 'streamIndustryBasicMachineConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `streamIndustryBasicMachine`. */ type StreamIndustryBasicMachineEdgeDto = { __typename?: 'streamIndustryBasicMachineEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Stream data entities of construction kit type 'Industry.Basic-2.1.0/RuntimeVariable-1' */ type StreamIndustryBasicRuntimeVariableDto = { __typename?: 'streamIndustryBasicRuntimeVariable'; booleanValue?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; constructionKitType?: Maybe; dateTimeValue?: Maybe; doubleValue?: Maybe; iecDataType?: Maybe; int64Value?: Maybe; intValue?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtWellKnownName?: Maybe; stringValue?: Maybe; timeSpanValue?: Maybe; timestamp?: Maybe; }; /** Stream data entities of construction kit type 'Industry.Basic-2.1.0/RuntimeVariable-1' */ type StreamIndustryBasicRuntimeVariableBooleanValueArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Basic-2.1.0/RuntimeVariable-1' */ type StreamIndustryBasicRuntimeVariableDateTimeValueArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Basic-2.1.0/RuntimeVariable-1' */ type StreamIndustryBasicRuntimeVariableDoubleValueArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Basic-2.1.0/RuntimeVariable-1' */ type StreamIndustryBasicRuntimeVariableIecDataTypeArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Basic-2.1.0/RuntimeVariable-1' */ type StreamIndustryBasicRuntimeVariableInt64ValueArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Basic-2.1.0/RuntimeVariable-1' */ type StreamIndustryBasicRuntimeVariableIntValueArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Basic-2.1.0/RuntimeVariable-1' */ type StreamIndustryBasicRuntimeVariableRtChangedDateTimeArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Basic-2.1.0/RuntimeVariable-1' */ type StreamIndustryBasicRuntimeVariableStringValueArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Basic-2.1.0/RuntimeVariable-1' */ type StreamIndustryBasicRuntimeVariableTimeSpanValueArgsDto = { arg?: InputMaybe; }; /** A connection to `streamIndustryBasicRuntimeVariable`. */ type StreamIndustryBasicRuntimeVariableConnectionDto = { __typename?: 'streamIndustryBasicRuntimeVariableConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `streamIndustryBasicRuntimeVariable`. */ type StreamIndustryBasicRuntimeVariableEdgeDto = { __typename?: 'streamIndustryBasicRuntimeVariableEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/EnergyConsumer-1' */ type StreamIndustryEnergyEnergyConsumerDto = { __typename?: 'streamIndustryEnergyEnergyConsumer'; ckTypeId: Scalars['RtCkTypeId']['output']; constructionKitType?: Maybe; importedEnergy?: Maybe; loadPercent?: Maybe; machineState?: Maybe; operatingHours?: Maybe; power?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtWellKnownName?: Maybe; standStillCounter?: Maybe; timestamp?: Maybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/EnergyConsumer-1' */ type StreamIndustryEnergyEnergyConsumerImportedEnergyArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/EnergyConsumer-1' */ type StreamIndustryEnergyEnergyConsumerLoadPercentArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/EnergyConsumer-1' */ type StreamIndustryEnergyEnergyConsumerMachineStateArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/EnergyConsumer-1' */ type StreamIndustryEnergyEnergyConsumerOperatingHoursArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/EnergyConsumer-1' */ type StreamIndustryEnergyEnergyConsumerPowerArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/EnergyConsumer-1' */ type StreamIndustryEnergyEnergyConsumerRtChangedDateTimeArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/EnergyConsumer-1' */ type StreamIndustryEnergyEnergyConsumerStandStillCounterArgsDto = { arg?: InputMaybe; }; /** A connection to `streamIndustryEnergyEnergyConsumer`. */ type StreamIndustryEnergyEnergyConsumerConnectionDto = { __typename?: 'streamIndustryEnergyEnergyConsumerConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `streamIndustryEnergyEnergyConsumer`. */ type StreamIndustryEnergyEnergyConsumerEdgeDto = { __typename?: 'streamIndustryEnergyEnergyConsumerEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/EnergyCost-1' */ type StreamIndustryEnergyEnergyCostDto = { __typename?: 'streamIndustryEnergyEnergyCost'; ckTypeId: Scalars['RtCkTypeId']['output']; constructionKitType?: Maybe; costAmount?: Maybe; forecastAmount?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtWellKnownName?: Maybe; timestamp?: Maybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/EnergyCost-1' */ type StreamIndustryEnergyEnergyCostCostAmountArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/EnergyCost-1' */ type StreamIndustryEnergyEnergyCostForecastAmountArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/EnergyCost-1' */ type StreamIndustryEnergyEnergyCostRtChangedDateTimeArgsDto = { arg?: InputMaybe; }; /** A connection to `streamIndustryEnergyEnergyCost`. */ type StreamIndustryEnergyEnergyCostConnectionDto = { __typename?: 'streamIndustryEnergyEnergyCostConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `streamIndustryEnergyEnergyCost`. */ type StreamIndustryEnergyEnergyCostEdgeDto = { __typename?: 'streamIndustryEnergyEnergyCostEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/EnergyForecast-1' */ type StreamIndustryEnergyEnergyForecastDto = { __typename?: 'streamIndustryEnergyEnergyForecast'; ckTypeId: Scalars['RtCkTypeId']['output']; confidence?: Maybe; constructionKitType?: Maybe; predictedLoad?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtWellKnownName?: Maybe; timestamp?: Maybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/EnergyForecast-1' */ type StreamIndustryEnergyEnergyForecastConfidenceArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/EnergyForecast-1' */ type StreamIndustryEnergyEnergyForecastPredictedLoadArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/EnergyForecast-1' */ type StreamIndustryEnergyEnergyForecastRtChangedDateTimeArgsDto = { arg?: InputMaybe; }; /** A connection to `streamIndustryEnergyEnergyForecast`. */ type StreamIndustryEnergyEnergyForecastConnectionDto = { __typename?: 'streamIndustryEnergyEnergyForecastConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `streamIndustryEnergyEnergyForecast`. */ type StreamIndustryEnergyEnergyForecastEdgeDto = { __typename?: 'streamIndustryEnergyEnergyForecastEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/EnergyMeter-1' */ type StreamIndustryEnergyEnergyMeterDto = { __typename?: 'streamIndustryEnergyEnergyMeter'; ampere?: Maybe; apparentPower?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; constructionKitType?: Maybe; exportedEnergy?: Maybe; frequency?: Maybe; importedEnergy?: Maybe; machineState?: Maybe; operatingHours?: Maybe; power?: Maybe; reactivePower?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtWellKnownName?: Maybe; standStillCounter?: Maybe; timestamp?: Maybe; voltage?: Maybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/EnergyMeter-1' */ type StreamIndustryEnergyEnergyMeterAmpereArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/EnergyMeter-1' */ type StreamIndustryEnergyEnergyMeterApparentPowerArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/EnergyMeter-1' */ type StreamIndustryEnergyEnergyMeterExportedEnergyArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/EnergyMeter-1' */ type StreamIndustryEnergyEnergyMeterFrequencyArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/EnergyMeter-1' */ type StreamIndustryEnergyEnergyMeterImportedEnergyArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/EnergyMeter-1' */ type StreamIndustryEnergyEnergyMeterMachineStateArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/EnergyMeter-1' */ type StreamIndustryEnergyEnergyMeterOperatingHoursArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/EnergyMeter-1' */ type StreamIndustryEnergyEnergyMeterPowerArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/EnergyMeter-1' */ type StreamIndustryEnergyEnergyMeterReactivePowerArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/EnergyMeter-1' */ type StreamIndustryEnergyEnergyMeterRtChangedDateTimeArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/EnergyMeter-1' */ type StreamIndustryEnergyEnergyMeterStandStillCounterArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/EnergyMeter-1' */ type StreamIndustryEnergyEnergyMeterVoltageArgsDto = { arg?: InputMaybe; }; /** A connection to `streamIndustryEnergyEnergyMeter`. */ type StreamIndustryEnergyEnergyMeterConnectionDto = { __typename?: 'streamIndustryEnergyEnergyMeterConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `streamIndustryEnergyEnergyMeter`. */ type StreamIndustryEnergyEnergyMeterEdgeDto = { __typename?: 'streamIndustryEnergyEnergyMeterEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/EnergyPerformanceIndicator-1' */ type StreamIndustryEnergyEnergyPerformanceIndicatorDto = { __typename?: 'streamIndustryEnergyEnergyPerformanceIndicator'; ckTypeId: Scalars['RtCkTypeId']['output']; constructionKitType?: Maybe; indicatorValue?: Maybe; referenceValue?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtWellKnownName?: Maybe; timestamp?: Maybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/EnergyPerformanceIndicator-1' */ type StreamIndustryEnergyEnergyPerformanceIndicatorIndicatorValueArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/EnergyPerformanceIndicator-1' */ type StreamIndustryEnergyEnergyPerformanceIndicatorReferenceValueArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/EnergyPerformanceIndicator-1' */ type StreamIndustryEnergyEnergyPerformanceIndicatorRtChangedDateTimeArgsDto = { arg?: InputMaybe; }; /** A connection to `streamIndustryEnergyEnergyPerformanceIndicator`. */ type StreamIndustryEnergyEnergyPerformanceIndicatorConnectionDto = { __typename?: 'streamIndustryEnergyEnergyPerformanceIndicatorConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `streamIndustryEnergyEnergyPerformanceIndicator`. */ type StreamIndustryEnergyEnergyPerformanceIndicatorEdgeDto = { __typename?: 'streamIndustryEnergyEnergyPerformanceIndicatorEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/EnergyStorage-1' */ type StreamIndustryEnergyEnergyStorageDto = { __typename?: 'streamIndustryEnergyEnergyStorage'; ampere?: Maybe; capacity?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; constructionKitType?: Maybe; exportedEnergy?: Maybe; importedEnergy?: Maybe; machineState?: Maybe; numOfCycles?: Maybe; operatingHours?: Maybe; power?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtWellKnownName?: Maybe; soC?: Maybe; soH?: Maybe; standStillCounter?: Maybe; timestamp?: Maybe; voltage?: Maybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/EnergyStorage-1' */ type StreamIndustryEnergyEnergyStorageAmpereArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/EnergyStorage-1' */ type StreamIndustryEnergyEnergyStorageCapacityArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/EnergyStorage-1' */ type StreamIndustryEnergyEnergyStorageExportedEnergyArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/EnergyStorage-1' */ type StreamIndustryEnergyEnergyStorageImportedEnergyArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/EnergyStorage-1' */ type StreamIndustryEnergyEnergyStorageMachineStateArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/EnergyStorage-1' */ type StreamIndustryEnergyEnergyStorageNumOfCyclesArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/EnergyStorage-1' */ type StreamIndustryEnergyEnergyStorageOperatingHoursArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/EnergyStorage-1' */ type StreamIndustryEnergyEnergyStoragePowerArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/EnergyStorage-1' */ type StreamIndustryEnergyEnergyStorageRtChangedDateTimeArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/EnergyStorage-1' */ type StreamIndustryEnergyEnergyStorageSoCArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/EnergyStorage-1' */ type StreamIndustryEnergyEnergyStorageSoHArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/EnergyStorage-1' */ type StreamIndustryEnergyEnergyStorageStandStillCounterArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/EnergyStorage-1' */ type StreamIndustryEnergyEnergyStorageVoltageArgsDto = { arg?: InputMaybe; }; /** A connection to `streamIndustryEnergyEnergyStorage`. */ type StreamIndustryEnergyEnergyStorageConnectionDto = { __typename?: 'streamIndustryEnergyEnergyStorageConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `streamIndustryEnergyEnergyStorage`. */ type StreamIndustryEnergyEnergyStorageEdgeDto = { __typename?: 'streamIndustryEnergyEnergyStorageEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/Inverter-1' */ type StreamIndustryEnergyInverterDto = { __typename?: 'streamIndustryEnergyInverter'; ampere?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; constructionKitType?: Maybe; dCAmpere?: Maybe; dCVoltage?: Maybe; machineState?: Maybe; maximumPower?: Maybe; operatingHours?: Maybe; power?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtWellKnownName?: Maybe; standStillCounter?: Maybe; timestamp?: Maybe; voltage?: Maybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/Inverter-1' */ type StreamIndustryEnergyInverterAmpereArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/Inverter-1' */ type StreamIndustryEnergyInverterDcAmpereArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/Inverter-1' */ type StreamIndustryEnergyInverterDcVoltageArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/Inverter-1' */ type StreamIndustryEnergyInverterMachineStateArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/Inverter-1' */ type StreamIndustryEnergyInverterMaximumPowerArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/Inverter-1' */ type StreamIndustryEnergyInverterOperatingHoursArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/Inverter-1' */ type StreamIndustryEnergyInverterPowerArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/Inverter-1' */ type StreamIndustryEnergyInverterRtChangedDateTimeArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/Inverter-1' */ type StreamIndustryEnergyInverterStandStillCounterArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/Inverter-1' */ type StreamIndustryEnergyInverterVoltageArgsDto = { arg?: InputMaybe; }; /** A connection to `streamIndustryEnergyInverter`. */ type StreamIndustryEnergyInverterConnectionDto = { __typename?: 'streamIndustryEnergyInverterConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `streamIndustryEnergyInverter`. */ type StreamIndustryEnergyInverterEdgeDto = { __typename?: 'streamIndustryEnergyInverterEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/PhotovoltaicSystem.Module-1' */ type StreamIndustryEnergyPhotovoltaicSystemModuleDto = { __typename?: 'streamIndustryEnergyPhotovoltaicSystemModule'; ckTypeId: Scalars['RtCkTypeId']['output']; constructionKitType?: Maybe; machineState?: Maybe; operatingHours?: Maybe; peakPower?: Maybe; power?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtWellKnownName?: Maybe; standStillCounter?: Maybe; timestamp?: Maybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/PhotovoltaicSystem.Module-1' */ type StreamIndustryEnergyPhotovoltaicSystemModuleMachineStateArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/PhotovoltaicSystem.Module-1' */ type StreamIndustryEnergyPhotovoltaicSystemModuleOperatingHoursArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/PhotovoltaicSystem.Module-1' */ type StreamIndustryEnergyPhotovoltaicSystemModulePeakPowerArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/PhotovoltaicSystem.Module-1' */ type StreamIndustryEnergyPhotovoltaicSystemModulePowerArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/PhotovoltaicSystem.Module-1' */ type StreamIndustryEnergyPhotovoltaicSystemModuleRtChangedDateTimeArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/PhotovoltaicSystem.Module-1' */ type StreamIndustryEnergyPhotovoltaicSystemModuleStandStillCounterArgsDto = { arg?: InputMaybe; }; /** A connection to `streamIndustryEnergyPhotovoltaicSystemModule`. */ type StreamIndustryEnergyPhotovoltaicSystemModuleConnectionDto = { __typename?: 'streamIndustryEnergyPhotovoltaicSystemModuleConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `streamIndustryEnergyPhotovoltaicSystemModule`. */ type StreamIndustryEnergyPhotovoltaicSystemModuleEdgeDto = { __typename?: 'streamIndustryEnergyPhotovoltaicSystemModuleEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/PhotovoltaicSystem.String-1' */ type StreamIndustryEnergyPhotovoltaicSystemStringDto = { __typename?: 'streamIndustryEnergyPhotovoltaicSystemString'; ckTypeId: Scalars['RtCkTypeId']['output']; constructionKitType?: Maybe; power?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtWellKnownName?: Maybe; timestamp?: Maybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/PhotovoltaicSystem.String-1' */ type StreamIndustryEnergyPhotovoltaicSystemStringPowerArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Energy-3.1.0/PhotovoltaicSystem.String-1' */ type StreamIndustryEnergyPhotovoltaicSystemStringRtChangedDateTimeArgsDto = { arg?: InputMaybe; }; /** A connection to `streamIndustryEnergyPhotovoltaicSystemString`. */ type StreamIndustryEnergyPhotovoltaicSystemStringConnectionDto = { __typename?: 'streamIndustryEnergyPhotovoltaicSystemStringConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `streamIndustryEnergyPhotovoltaicSystemString`. */ type StreamIndustryEnergyPhotovoltaicSystemStringEdgeDto = { __typename?: 'streamIndustryEnergyPhotovoltaicSystemStringEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Stream data entities of construction kit type 'Industry.Fluid-2.0.0/HeatMeter-1' */ type StreamIndustryFluidHeatMeterDto = { __typename?: 'streamIndustryFluidHeatMeter'; ckTypeId: Scalars['RtCkTypeId']['output']; constructionKitType?: Maybe; importedEnergy?: Maybe; machineState?: Maybe; operatingHours?: Maybe; power?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtWellKnownName?: Maybe; standStillCounter?: Maybe; timestamp?: Maybe; }; /** Stream data entities of construction kit type 'Industry.Fluid-2.0.0/HeatMeter-1' */ type StreamIndustryFluidHeatMeterImportedEnergyArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Fluid-2.0.0/HeatMeter-1' */ type StreamIndustryFluidHeatMeterMachineStateArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Fluid-2.0.0/HeatMeter-1' */ type StreamIndustryFluidHeatMeterOperatingHoursArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Fluid-2.0.0/HeatMeter-1' */ type StreamIndustryFluidHeatMeterPowerArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Fluid-2.0.0/HeatMeter-1' */ type StreamIndustryFluidHeatMeterRtChangedDateTimeArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Fluid-2.0.0/HeatMeter-1' */ type StreamIndustryFluidHeatMeterStandStillCounterArgsDto = { arg?: InputMaybe; }; /** A connection to `streamIndustryFluidHeatMeter`. */ type StreamIndustryFluidHeatMeterConnectionDto = { __typename?: 'streamIndustryFluidHeatMeterConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `streamIndustryFluidHeatMeter`. */ type StreamIndustryFluidHeatMeterEdgeDto = { __typename?: 'streamIndustryFluidHeatMeterEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; /** Stream data entities of construction kit type 'Industry.Fluid-2.0.0/WaterMeter-1' */ type StreamIndustryFluidWaterMeterDto = { __typename?: 'streamIndustryFluidWaterMeter'; ckTypeId: Scalars['RtCkTypeId']['output']; constructionKitType?: Maybe; machineState?: Maybe; operatingHours?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtId: Scalars['OctoObjectId']['output']; rtWellKnownName?: Maybe; standStillCounter?: Maybe; timestamp?: Maybe; }; /** Stream data entities of construction kit type 'Industry.Fluid-2.0.0/WaterMeter-1' */ type StreamIndustryFluidWaterMeterMachineStateArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Fluid-2.0.0/WaterMeter-1' */ type StreamIndustryFluidWaterMeterOperatingHoursArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Fluid-2.0.0/WaterMeter-1' */ type StreamIndustryFluidWaterMeterRtChangedDateTimeArgsDto = { arg?: InputMaybe; }; /** Stream data entities of construction kit type 'Industry.Fluid-2.0.0/WaterMeter-1' */ type StreamIndustryFluidWaterMeterStandStillCounterArgsDto = { arg?: InputMaybe; }; /** A connection to `streamIndustryFluidWaterMeter`. */ type StreamIndustryFluidWaterMeterConnectionDto = { __typename?: 'streamIndustryFluidWaterMeterConnection'; /** Result of aggregating the items of the result set. */ aggregation?: Maybe; /** Information to aid in pagination. */ edges?: Maybe>>; /** Result of aggregating the items by fields. */ fieldAggregations?: Maybe>>; /** 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. */ items?: Maybe>>; /** Information to aid in pagination. */ pageInfo?: Maybe; /** 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`. */ totalCount?: Maybe; }; /** An edge in a connection from an object to another object of type `streamIndustryFluidWaterMeter`. */ type StreamIndustryFluidWaterMeterEdgeDto = { __typename?: 'streamIndustryFluidWaterMeterEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type PossibleTypesResultData = { "possibleTypes": { "BasicAsset_EventSourceUnion": [ "BasicAsset", "IndustryBasicMachine", "IndustryEnergyEnergyConsumer", "IndustryEnergyEnergyMeter", "IndustryEnergyEnergyStorage", "IndustryEnergyInverter", "IndustryEnergyPhotovoltaicSystem", "IndustryEnergyPhotovoltaicSystemModule", "IndustryEnergyPhotovoltaicSystemString", "IndustryFluidHeatMeter", "IndustryFluidWaterMeter", "IndustryMaintenanceCostCenter", "IndustryMaintenanceEmployee", "IndustryMaintenanceWorkplace", "OctoSdkDemoMeteringPoint" ]; "BasicAsset_RelatesFromUnion": [ "BasicAsset", "BasicCity", "BasicCountry", "BasicDistrict", "BasicEmployee", "BasicState", "BasicTree", "BasicTreeNode", "IndustryBasicAlarm", "IndustryBasicEvent", "IndustryBasicMachine", "IndustryBasicRuntimeVariable", "IndustryEnergyDemandResponseEvent", "IndustryEnergyEnergyConsumer", "IndustryEnergyEnergyCost", "IndustryEnergyEnergyForecast", "IndustryEnergyEnergyMeter", "IndustryEnergyEnergyPerformanceIndicator", "IndustryEnergyEnergyStorage", "IndustryEnergyInverter", "IndustryEnergyPhotovoltaicSystem", "IndustryEnergyPhotovoltaicSystemModule", "IndustryEnergyPhotovoltaicSystemString", "IndustryFluidHeatMeter", "IndustryFluidWaterMeter", "IndustryMaintenanceAccount", "IndustryMaintenanceCostCenter", "IndustryMaintenanceEmployee", "IndustryMaintenanceEnergyBalance", "IndustryMaintenanceJournalEntry", "IndustryMaintenanceOrder", "IndustryMaintenanceOrderCosts", "IndustryMaintenanceOrderFeedback", "IndustryMaintenanceWorkplace", "OctoSdkDemoCustomer", "OctoSdkDemoMeteringPoint", "OctoSdkDemoOperatingFacility", "SystemAggregationRtQuery", "SystemAggregationSdQuery", "SystemAutoIncrement", "SystemBotAttributeAggregateConfiguration", "SystemBotFixup", "SystemCommunicationAdapter", "SystemCommunicationAiConfiguration", "SystemCommunicationDataFlow", "SystemCommunicationDataPointMapping", "SystemCommunicationDiscordConfiguration", "SystemCommunicationEMailReceiverConfiguration", "SystemCommunicationEMailSenderConfiguration", "SystemCommunicationEdaConfiguration", "SystemCommunicationEnergyCommunityConfiguration", "SystemCommunicationFinApiConfiguration", "SystemCommunicationGrafanaConfiguration", "SystemCommunicationLoxoneConfiguration", "SystemCommunicationMicrosoftGraphConfiguration", "SystemCommunicationPipeline", "SystemCommunicationPipelineExecution", "SystemCommunicationPipelineStatistics", "SystemCommunicationPipelineTrigger", "SystemCommunicationPool", "SystemCommunicationSapConfiguration", "SystemCommunicationServiceAccountConfiguration", "SystemCommunicationSftpConfiguration", "SystemCommunicationTag", "SystemDownsamplingSdQuery", "SystemGroupingAggregationRtQuery", "SystemGroupingAggregationSdQuery", "SystemIdentityApiResource", "SystemIdentityApiScope", "SystemIdentityAzureEntraIdIdentityProvider", "SystemIdentityClient", "SystemIdentityEmailDomainGroupRule", "SystemIdentityExternalTenantUserMapping", "SystemIdentityFacebookIdentityProvider", "SystemIdentityGoogleIdentityProvider", "SystemIdentityGroup", "SystemIdentityIdentityResource", "SystemIdentityMailNotificationConfiguration", "SystemIdentityMicrosoftAdIdentityProvider", "SystemIdentityMicrosoftIdentityProvider", "SystemIdentityOctoTenantIdentityProvider", "SystemIdentityOpenLdapIdentityProvider", "SystemIdentityPermission", "SystemIdentityPermissionRole", "SystemIdentityPersistedGrant", "SystemIdentityRole", "SystemIdentityUser", "SystemMigrationHistory", "SystemNotificationCssTemplateConfiguration", "SystemNotificationEvent", "SystemNotificationNotificationTemplate", "SystemNotificationStatefulEvent", "SystemReportingConnectionInfo", "SystemReportingFileSystemItem", "SystemReportingFolder", "SystemReportingFolderRoot", "SystemSimpleRtQuery", "SystemSimpleSdQuery", "SystemTenant", "SystemTenantConfiguration", "SystemTenantModeConfiguration", "SystemUIBranding", "SystemUIDashboard", "SystemUIDashboardWidget", "SystemUIProcessDiagram", "SystemUISymbolDefinition", "SystemUISymbolLibrary" ]; "BasicDocumentInterface": []; "BasicNamedEntityInterface": [ "BasicTree", "IndustryBasicAlarm", "IndustryBasicEvent", "IndustryBasicRuntimeVariable", "IndustryEnergyDemandResponseEvent", "IndustryEnergyEnergyPerformanceIndicator" ]; "BasicTreeNode_ChildrenUnion": [ "BasicAsset", "BasicCity", "BasicCountry", "BasicDistrict", "BasicState", "BasicTreeNode", "IndustryBasicMachine", "IndustryEnergyDemandResponseEvent", "IndustryEnergyEnergyConsumer", "IndustryEnergyEnergyCost", "IndustryEnergyEnergyForecast", "IndustryEnergyEnergyMeter", "IndustryEnergyEnergyPerformanceIndicator", "IndustryEnergyEnergyStorage", "IndustryEnergyInverter", "IndustryEnergyPhotovoltaicSystem", "IndustryEnergyPhotovoltaicSystemModule", "IndustryEnergyPhotovoltaicSystemString", "IndustryFluidHeatMeter", "IndustryFluidWaterMeter", "IndustryMaintenanceCostCenter", "IndustryMaintenanceEmployee", "IndustryMaintenanceWorkplace", "OctoSdkDemoMeteringPoint", "OctoSdkDemoOperatingFacility" ]; "BasicTreeNode_MachineUnion": [ "BasicAsset", "BasicCity", "BasicCountry", "BasicDistrict", "BasicState", "BasicTreeNode", "IndustryBasicMachine", "IndustryEnergyEnergyConsumer", "IndustryEnergyEnergyMeter", "IndustryEnergyEnergyStorage", "IndustryEnergyInverter", "IndustryEnergyPhotovoltaicSystem", "IndustryEnergyPhotovoltaicSystemModule", "IndustryEnergyPhotovoltaicSystemString", "IndustryFluidHeatMeter", "IndustryFluidWaterMeter", "IndustryMaintenanceCostCenter", "IndustryMaintenanceEmployee", "IndustryMaintenanceWorkplace", "OctoSdkDemoMeteringPoint", "OctoSdkDemoOperatingFacility" ]; "BasicTreeNode_ParentUnion": [ "BasicAsset", "BasicCity", "BasicCountry", "BasicDistrict", "BasicState", "BasicTreeNode", "IndustryBasicMachine", "IndustryEnergyEnergyConsumer", "IndustryEnergyEnergyMeter", "IndustryEnergyEnergyStorage", "IndustryEnergyInverter", "IndustryEnergyPhotovoltaicSystem", "IndustryEnergyPhotovoltaicSystemModule", "IndustryEnergyPhotovoltaicSystemString", "IndustryFluidHeatMeter", "IndustryFluidWaterMeter", "IndustryMaintenanceCostCenter", "IndustryMaintenanceEmployee", "IndustryMaintenanceWorkplace", "OctoSdkDemoMeteringPoint", "OctoSdkDemoOperatingFacility" ]; "BasicTreeNode_RelatesToUnion": [ "BasicAsset", "BasicCity", "BasicCountry", "BasicDistrict", "BasicEmployee", "BasicState", "BasicTree", "BasicTreeNode", "IndustryBasicAlarm", "IndustryBasicEvent", "IndustryBasicMachine", "IndustryBasicRuntimeVariable", "IndustryEnergyDemandResponseEvent", "IndustryEnergyEnergyConsumer", "IndustryEnergyEnergyCost", "IndustryEnergyEnergyForecast", "IndustryEnergyEnergyMeter", "IndustryEnergyEnergyPerformanceIndicator", "IndustryEnergyEnergyStorage", "IndustryEnergyInverter", "IndustryEnergyPhotovoltaicSystem", "IndustryEnergyPhotovoltaicSystemModule", "IndustryEnergyPhotovoltaicSystemString", "IndustryFluidHeatMeter", "IndustryFluidWaterMeter", "IndustryMaintenanceAccount", "IndustryMaintenanceCostCenter", "IndustryMaintenanceEmployee", "IndustryMaintenanceEnergyBalance", "IndustryMaintenanceJournalEntry", "IndustryMaintenanceOrder", "IndustryMaintenanceOrderCosts", "IndustryMaintenanceOrderFeedback", "IndustryMaintenanceWorkplace", "OctoSdkDemoCustomer", "OctoSdkDemoMeteringPoint", "OctoSdkDemoOperatingFacility", "SystemAggregationRtQuery", "SystemAggregationSdQuery", "SystemAutoIncrement", "SystemBotAttributeAggregateConfiguration", "SystemBotFixup", "SystemCommunicationAdapter", "SystemCommunicationAiConfiguration", "SystemCommunicationDataFlow", "SystemCommunicationDataPointMapping", "SystemCommunicationDiscordConfiguration", "SystemCommunicationEMailReceiverConfiguration", "SystemCommunicationEMailSenderConfiguration", "SystemCommunicationEdaConfiguration", "SystemCommunicationEnergyCommunityConfiguration", "SystemCommunicationFinApiConfiguration", "SystemCommunicationGrafanaConfiguration", "SystemCommunicationLoxoneConfiguration", "SystemCommunicationMicrosoftGraphConfiguration", "SystemCommunicationPipeline", "SystemCommunicationPipelineExecution", "SystemCommunicationPipelineStatistics", "SystemCommunicationPipelineTrigger", "SystemCommunicationPool", "SystemCommunicationSapConfiguration", "SystemCommunicationServiceAccountConfiguration", "SystemCommunicationSftpConfiguration", "SystemCommunicationTag", "SystemDownsamplingSdQuery", "SystemGroupingAggregationRtQuery", "SystemGroupingAggregationSdQuery", "SystemIdentityApiResource", "SystemIdentityApiScope", "SystemIdentityAzureEntraIdIdentityProvider", "SystemIdentityClient", "SystemIdentityEmailDomainGroupRule", "SystemIdentityExternalTenantUserMapping", "SystemIdentityFacebookIdentityProvider", "SystemIdentityGoogleIdentityProvider", "SystemIdentityGroup", "SystemIdentityIdentityResource", "SystemIdentityMailNotificationConfiguration", "SystemIdentityMicrosoftAdIdentityProvider", "SystemIdentityMicrosoftIdentityProvider", "SystemIdentityOctoTenantIdentityProvider", "SystemIdentityOpenLdapIdentityProvider", "SystemIdentityPermission", "SystemIdentityPermissionRole", "SystemIdentityPersistedGrant", "SystemIdentityRole", "SystemIdentityUser", "SystemMigrationHistory", "SystemNotificationCssTemplateConfiguration", "SystemNotificationEvent", "SystemNotificationNotificationTemplate", "SystemNotificationStatefulEvent", "SystemReportingConnectionInfo", "SystemReportingFileSystemItem", "SystemReportingFolder", "SystemReportingFolderRoot", "SystemSimpleRtQuery", "SystemSimpleSdQuery", "SystemTenant", "SystemTenantConfiguration", "SystemTenantModeConfiguration", "SystemUIBranding", "SystemUIDashboard", "SystemUIDashboardWidget", "SystemUIProcessDiagram", "SystemUISymbolDefinition", "SystemUISymbolLibrary" ]; "BasicTree_ParentUnion": [ "BasicAsset", "BasicCity", "BasicCountry", "BasicDistrict", "BasicState", "BasicTree", "BasicTreeNode", "IndustryBasicMachine", "IndustryEnergyEnergyConsumer", "IndustryEnergyEnergyMeter", "IndustryEnergyEnergyStorage", "IndustryEnergyInverter", "IndustryEnergyPhotovoltaicSystem", "IndustryEnergyPhotovoltaicSystemModule", "IndustryEnergyPhotovoltaicSystemString", "IndustryFluidHeatMeter", "IndustryFluidWaterMeter", "IndustryMaintenanceCostCenter", "IndustryMaintenanceEmployee", "IndustryMaintenanceWorkplace", "OctoSdkDemoMeteringPoint", "OctoSdkDemoOperatingFacility" ]; "IndustryBasicEvent_EventUnion": [ "IndustryBasicAlarm", "IndustryBasicEvent" ]; "IndustryBasicEvent_EventsUnion": [ "IndustryBasicAlarm", "IndustryBasicEvent" ]; "IndustryBasicMachine_MachineUnion": [ "IndustryBasicMachine", "IndustryEnergyEnergyConsumer", "IndustryEnergyEnergyMeter", "IndustryEnergyEnergyStorage", "IndustryEnergyInverter", "IndustryEnergyPhotovoltaicSystemModule", "IndustryFluidHeatMeter", "IndustryFluidWaterMeter" ]; "IndustryBasicRuntimeVariable_RuntimeVariablesUnion": [ "IndustryBasicRuntimeVariable" ]; "IndustryMaintenanceAccount_ParentUnion": [ "IndustryMaintenanceAccount" ]; "IndustryMaintenanceCostCenter_CostCenterUnion": [ "IndustryMaintenanceCostCenter" ]; "IndustryMaintenanceEmployee_EmployeeUnion": [ "IndustryMaintenanceEmployee" ]; "IndustryMaintenanceEnergyBalance_OrdersUnion": [ "IndustryMaintenanceEnergyBalance" ]; "IndustryMaintenanceJournalEntry_ChildrenUnion": [ "IndustryMaintenanceJournalEntry" ]; "IndustryMaintenanceJournalEntry_JournalEntriesUnion": [ "IndustryMaintenanceJournalEntry" ]; "IndustryMaintenanceOrderCosts_CostsUnion": [ "IndustryMaintenanceOrderCosts" ]; "IndustryMaintenanceOrderFeedback_ChildrenUnion": [ "IndustryMaintenanceOrderFeedback" ]; "IndustryMaintenanceOrderFeedback_OrderFeedbacksUnion": [ "IndustryMaintenanceOrderFeedback" ]; "IndustryMaintenanceOrder_OrderUnion": [ "IndustryMaintenanceOrder" ]; "IndustryMaintenanceOrder_OrdersUnion": [ "IndustryMaintenanceEnergyBalance", "IndustryMaintenanceOrder" ]; "IndustryMaintenanceOrder_ParentUnion": [ "IndustryMaintenanceOrder" ]; "OctoSdkDemoCustomer_OwnedByUnion": [ "OctoSdkDemoCustomer" ]; "OctoSdkDemoOperatingFacility_OwnsUnion": [ "OctoSdkDemoOperatingFacility" ]; "RtQueryRow": [ "RtAggregationQueryRow", "RtGroupingAggregationQueryRow", "RtSimpleQueryRow" ]; "SystemBotAttributeAggregateConfiguration_ConfiguredByUnion": [ "SystemBotAttributeAggregateConfiguration" ]; "SystemCommunicationAdapter_AdapterExecutionsUnion": [ "SystemCommunicationAdapter" ]; "SystemCommunicationAdapter_ExecutedByUnion": [ "SystemCommunicationAdapter" ]; "SystemCommunicationAdapter_ManagesUnion": [ "SystemCommunicationAdapter" ]; "SystemCommunicationDataFlow_ParentUnion": [ "SystemCommunicationDataFlow" ]; "SystemCommunicationDataPointMapping_MapsFromUnion": [ "SystemCommunicationDataPointMapping" ]; "SystemCommunicationDataPointMapping_MapsToUnion": [ "SystemCommunicationDataPointMapping" ]; "SystemCommunicationDeployableEntityInterface": [ "SystemCommunicationAdapter", "SystemCommunicationPipeline", "SystemCommunicationPipelineTrigger", "SystemCommunicationPool" ]; "SystemCommunicationPipelineExecution_ExecutedPipelineUnion": [ "SystemCommunicationPipelineExecution" ]; "SystemCommunicationPipelineExecution_ExecutingAdapterUnion": [ "SystemCommunicationPipelineExecution" ]; "SystemCommunicationPipelineStatistics_StatisticsForPipelineUnion": [ "SystemCommunicationPipelineStatistics" ]; "SystemCommunicationPipelineTrigger_TriggersUnion": [ "SystemCommunicationPipelineTrigger" ]; "SystemCommunicationPipeline_ChildrenUnion": [ "SystemCommunicationPipeline", "SystemCommunicationPipelineTrigger" ]; "SystemCommunicationPipeline_ExecutesUnion": [ "SystemCommunicationPipeline" ]; "SystemCommunicationPipeline_PipelineExecutionsUnion": [ "SystemCommunicationPipeline" ]; "SystemCommunicationPipeline_PipelineStatisticsUnion": [ "SystemCommunicationPipeline" ]; "SystemCommunicationPipeline_ReceivesDataFromUnion": [ "SystemCommunicationPipeline" ]; "SystemCommunicationPipeline_SendsDataToUnion": [ "SystemCommunicationPipeline" ]; "SystemCommunicationPipeline_TriggeredByUnion": [ "SystemCommunicationPipeline" ]; "SystemCommunicationPipeline_UsedByUnion": [ "SystemCommunicationPipeline" ]; "SystemCommunicationPool_ManagedByUnion": [ "SystemCommunicationPool" ]; "SystemCommunicationTag_TaggedByUnion": [ "SystemCommunicationTag" ]; "SystemConfigurationInterface": [ "SystemCommunicationAiConfiguration", "SystemCommunicationDiscordConfiguration", "SystemCommunicationEMailReceiverConfiguration", "SystemCommunicationEMailSenderConfiguration", "SystemCommunicationEdaConfiguration", "SystemCommunicationEnergyCommunityConfiguration", "SystemCommunicationFinApiConfiguration", "SystemCommunicationGrafanaConfiguration", "SystemCommunicationLoxoneConfiguration", "SystemCommunicationMicrosoftGraphConfiguration", "SystemCommunicationSapConfiguration", "SystemCommunicationServiceAccountConfiguration", "SystemCommunicationSftpConfiguration", "SystemIdentityMailNotificationConfiguration", "SystemNotificationCssTemplateConfiguration", "SystemReportingConnectionInfo", "SystemTenantConfiguration", "SystemTenantModeConfiguration" ]; "SystemConfiguration_IsUsingUnion": [ "SystemCommunicationAiConfiguration", "SystemCommunicationDiscordConfiguration", "SystemCommunicationEMailReceiverConfiguration", "SystemCommunicationEMailSenderConfiguration", "SystemCommunicationEdaConfiguration", "SystemCommunicationEnergyCommunityConfiguration", "SystemCommunicationFinApiConfiguration", "SystemCommunicationGrafanaConfiguration", "SystemCommunicationLoxoneConfiguration", "SystemCommunicationMicrosoftGraphConfiguration", "SystemCommunicationSapConfiguration", "SystemCommunicationServiceAccountConfiguration", "SystemCommunicationSftpConfiguration", "SystemIdentityMailNotificationConfiguration", "SystemNotificationCssTemplateConfiguration", "SystemReportingConnectionInfo", "SystemTenantConfiguration", "SystemTenantModeConfiguration" ]; "SystemEntityInterface": [ "BasicDocument", "BasicEmployee", "BasicNamedEntity", "BasicTree", "IndustryBasicAlarm", "IndustryBasicEvent", "IndustryBasicRuntimeVariable", "IndustryEnergyDemandResponseEvent", "IndustryEnergyEnergyCost", "IndustryEnergyEnergyForecast", "IndustryEnergyEnergyPerformanceIndicator", "IndustryMaintenanceAccount", "IndustryMaintenanceEnergyBalance", "IndustryMaintenanceJournalEntry", "IndustryMaintenanceOrder", "IndustryMaintenanceOrderCosts", "IndustryMaintenanceOrderFeedback", "OctoSdkDemoCustomer", "SystemAggregationRtQuery", "SystemAggregationSdQuery", "SystemAutoIncrement", "SystemBotAttributeAggregateConfiguration", "SystemBotFixup", "SystemCommunicationAdapter", "SystemCommunicationAiConfiguration", "SystemCommunicationDataFlow", "SystemCommunicationDataPointMapping", "SystemCommunicationDeployableEntity", "SystemCommunicationDiscordConfiguration", "SystemCommunicationEMailReceiverConfiguration", "SystemCommunicationEMailSenderConfiguration", "SystemCommunicationEdaConfiguration", "SystemCommunicationEnergyCommunityConfiguration", "SystemCommunicationFinApiConfiguration", "SystemCommunicationGrafanaConfiguration", "SystemCommunicationLoxoneConfiguration", "SystemCommunicationMicrosoftGraphConfiguration", "SystemCommunicationPipeline", "SystemCommunicationPipelineExecution", "SystemCommunicationPipelineStatistics", "SystemCommunicationPipelineTrigger", "SystemCommunicationPool", "SystemCommunicationSapConfiguration", "SystemCommunicationServiceAccountConfiguration", "SystemCommunicationSftpConfiguration", "SystemCommunicationTag", "SystemConfiguration", "SystemDownsamplingSdQuery", "SystemGroupingAggregationRtQuery", "SystemGroupingAggregationSdQuery", "SystemIdentityApiResource", "SystemIdentityApiScope", "SystemIdentityAzureEntraIdIdentityProvider", "SystemIdentityClient", "SystemIdentityEmailDomainGroupRule", "SystemIdentityExternalTenantUserMapping", "SystemIdentityFacebookIdentityProvider", "SystemIdentityGoogleIdentityProvider", "SystemIdentityGroup", "SystemIdentityIdentityProvider", "SystemIdentityIdentityResource", "SystemIdentityMailNotificationConfiguration", "SystemIdentityMicrosoftAdIdentityProvider", "SystemIdentityMicrosoftIdentityProvider", "SystemIdentityOctoTenantIdentityProvider", "SystemIdentityOpenLdapIdentityProvider", "SystemIdentityPermission", "SystemIdentityPermissionRole", "SystemIdentityPersistedGrant", "SystemIdentityResource", "SystemIdentityRole", "SystemIdentityUser", "SystemMigrationHistory", "SystemNotificationCssTemplateConfiguration", "SystemNotificationEvent", "SystemNotificationNotificationTemplate", "SystemNotificationStatefulEvent", "SystemPersistentQuery", "SystemReportingConnectionInfo", "SystemReportingFileSystemContainer", "SystemReportingFileSystemEntity", "SystemReportingFileSystemItem", "SystemReportingFolder", "SystemReportingFolderRoot", "SystemSimpleRtQuery", "SystemSimpleSdQuery", "SystemStreamDataQuery", "SystemTenant", "SystemTenantConfiguration", "SystemTenantModeConfiguration", "SystemUIBranding", "SystemUIDashboard", "SystemUIDashboardWidget", "SystemUIProcessDiagram", "SystemUISymbolDefinition", "SystemUISymbolLibrary", "SystemUIUIElement" ]; "SystemEntity_ConfiguresUnion": [ "BasicAsset", "BasicCity", "BasicCountry", "BasicDistrict", "BasicEmployee", "BasicState", "BasicTree", "BasicTreeNode", "IndustryBasicAlarm", "IndustryBasicEvent", "IndustryBasicMachine", "IndustryBasicRuntimeVariable", "IndustryEnergyDemandResponseEvent", "IndustryEnergyEnergyConsumer", "IndustryEnergyEnergyCost", "IndustryEnergyEnergyForecast", "IndustryEnergyEnergyMeter", "IndustryEnergyEnergyPerformanceIndicator", "IndustryEnergyEnergyStorage", "IndustryEnergyInverter", "IndustryEnergyPhotovoltaicSystem", "IndustryEnergyPhotovoltaicSystemModule", "IndustryEnergyPhotovoltaicSystemString", "IndustryFluidHeatMeter", "IndustryFluidWaterMeter", "IndustryMaintenanceAccount", "IndustryMaintenanceCostCenter", "IndustryMaintenanceEmployee", "IndustryMaintenanceEnergyBalance", "IndustryMaintenanceJournalEntry", "IndustryMaintenanceOrder", "IndustryMaintenanceOrderCosts", "IndustryMaintenanceOrderFeedback", "IndustryMaintenanceWorkplace", "OctoSdkDemoCustomer", "OctoSdkDemoMeteringPoint", "OctoSdkDemoOperatingFacility", "SystemAggregationRtQuery", "SystemAggregationSdQuery", "SystemAutoIncrement", "SystemBotAttributeAggregateConfiguration", "SystemBotFixup", "SystemCommunicationAdapter", "SystemCommunicationAiConfiguration", "SystemCommunicationDataFlow", "SystemCommunicationDataPointMapping", "SystemCommunicationDiscordConfiguration", "SystemCommunicationEMailReceiverConfiguration", "SystemCommunicationEMailSenderConfiguration", "SystemCommunicationEdaConfiguration", "SystemCommunicationEnergyCommunityConfiguration", "SystemCommunicationFinApiConfiguration", "SystemCommunicationGrafanaConfiguration", "SystemCommunicationLoxoneConfiguration", "SystemCommunicationMicrosoftGraphConfiguration", "SystemCommunicationPipeline", "SystemCommunicationPipelineExecution", "SystemCommunicationPipelineStatistics", "SystemCommunicationPipelineTrigger", "SystemCommunicationPool", "SystemCommunicationSapConfiguration", "SystemCommunicationServiceAccountConfiguration", "SystemCommunicationSftpConfiguration", "SystemCommunicationTag", "SystemDownsamplingSdQuery", "SystemGroupingAggregationRtQuery", "SystemGroupingAggregationSdQuery", "SystemIdentityApiResource", "SystemIdentityApiScope", "SystemIdentityAzureEntraIdIdentityProvider", "SystemIdentityClient", "SystemIdentityEmailDomainGroupRule", "SystemIdentityExternalTenantUserMapping", "SystemIdentityFacebookIdentityProvider", "SystemIdentityGoogleIdentityProvider", "SystemIdentityGroup", "SystemIdentityIdentityResource", "SystemIdentityMailNotificationConfiguration", "SystemIdentityMicrosoftAdIdentityProvider", "SystemIdentityMicrosoftIdentityProvider", "SystemIdentityOctoTenantIdentityProvider", "SystemIdentityOpenLdapIdentityProvider", "SystemIdentityPermission", "SystemIdentityPermissionRole", "SystemIdentityPersistedGrant", "SystemIdentityRole", "SystemIdentityUser", "SystemMigrationHistory", "SystemNotificationCssTemplateConfiguration", "SystemNotificationEvent", "SystemNotificationNotificationTemplate", "SystemNotificationStatefulEvent", "SystemReportingConnectionInfo", "SystemReportingFileSystemItem", "SystemReportingFolder", "SystemReportingFolderRoot", "SystemSimpleRtQuery", "SystemSimpleSdQuery", "SystemTenant", "SystemTenantConfiguration", "SystemTenantModeConfiguration", "SystemUIBranding", "SystemUIDashboard", "SystemUIDashboardWidget", "SystemUIProcessDiagram", "SystemUISymbolDefinition", "SystemUISymbolLibrary" ]; "SystemEntity_IsTaggingUnion": [ "BasicAsset", "BasicCity", "BasicCountry", "BasicDistrict", "BasicEmployee", "BasicState", "BasicTree", "BasicTreeNode", "IndustryBasicAlarm", "IndustryBasicEvent", "IndustryBasicMachine", "IndustryBasicRuntimeVariable", "IndustryEnergyDemandResponseEvent", "IndustryEnergyEnergyConsumer", "IndustryEnergyEnergyCost", "IndustryEnergyEnergyForecast", "IndustryEnergyEnergyMeter", "IndustryEnergyEnergyPerformanceIndicator", "IndustryEnergyEnergyStorage", "IndustryEnergyInverter", "IndustryEnergyPhotovoltaicSystem", "IndustryEnergyPhotovoltaicSystemModule", "IndustryEnergyPhotovoltaicSystemString", "IndustryFluidHeatMeter", "IndustryFluidWaterMeter", "IndustryMaintenanceAccount", "IndustryMaintenanceCostCenter", "IndustryMaintenanceEmployee", "IndustryMaintenanceEnergyBalance", "IndustryMaintenanceJournalEntry", "IndustryMaintenanceOrder", "IndustryMaintenanceOrderCosts", "IndustryMaintenanceOrderFeedback", "IndustryMaintenanceWorkplace", "OctoSdkDemoCustomer", "OctoSdkDemoMeteringPoint", "OctoSdkDemoOperatingFacility", "SystemAggregationRtQuery", "SystemAggregationSdQuery", "SystemAutoIncrement", "SystemBotAttributeAggregateConfiguration", "SystemBotFixup", "SystemCommunicationAdapter", "SystemCommunicationAiConfiguration", "SystemCommunicationDataFlow", "SystemCommunicationDataPointMapping", "SystemCommunicationDiscordConfiguration", "SystemCommunicationEMailReceiverConfiguration", "SystemCommunicationEMailSenderConfiguration", "SystemCommunicationEdaConfiguration", "SystemCommunicationEnergyCommunityConfiguration", "SystemCommunicationFinApiConfiguration", "SystemCommunicationGrafanaConfiguration", "SystemCommunicationLoxoneConfiguration", "SystemCommunicationMicrosoftGraphConfiguration", "SystemCommunicationPipeline", "SystemCommunicationPipelineExecution", "SystemCommunicationPipelineStatistics", "SystemCommunicationPipelineTrigger", "SystemCommunicationPool", "SystemCommunicationSapConfiguration", "SystemCommunicationServiceAccountConfiguration", "SystemCommunicationSftpConfiguration", "SystemCommunicationTag", "SystemDownsamplingSdQuery", "SystemGroupingAggregationRtQuery", "SystemGroupingAggregationSdQuery", "SystemIdentityApiResource", "SystemIdentityApiScope", "SystemIdentityAzureEntraIdIdentityProvider", "SystemIdentityClient", "SystemIdentityEmailDomainGroupRule", "SystemIdentityExternalTenantUserMapping", "SystemIdentityFacebookIdentityProvider", "SystemIdentityGoogleIdentityProvider", "SystemIdentityGroup", "SystemIdentityIdentityResource", "SystemIdentityMailNotificationConfiguration", "SystemIdentityMicrosoftAdIdentityProvider", "SystemIdentityMicrosoftIdentityProvider", "SystemIdentityOctoTenantIdentityProvider", "SystemIdentityOpenLdapIdentityProvider", "SystemIdentityPermission", "SystemIdentityPermissionRole", "SystemIdentityPersistedGrant", "SystemIdentityRole", "SystemIdentityUser", "SystemMigrationHistory", "SystemNotificationCssTemplateConfiguration", "SystemNotificationEvent", "SystemNotificationNotificationTemplate", "SystemNotificationStatefulEvent", "SystemReportingConnectionInfo", "SystemReportingFileSystemItem", "SystemReportingFolder", "SystemReportingFolderRoot", "SystemSimpleRtQuery", "SystemSimpleSdQuery", "SystemTenant", "SystemTenantConfiguration", "SystemTenantModeConfiguration", "SystemUIBranding", "SystemUIDashboard", "SystemUIDashboardWidget", "SystemUIProcessDiagram", "SystemUISymbolDefinition", "SystemUISymbolLibrary" ]; "SystemEntity_MappedAsSourceUnion": [ "BasicAsset", "BasicCity", "BasicCountry", "BasicDistrict", "BasicEmployee", "BasicState", "BasicTree", "BasicTreeNode", "IndustryBasicAlarm", "IndustryBasicEvent", "IndustryBasicMachine", "IndustryBasicRuntimeVariable", "IndustryEnergyDemandResponseEvent", "IndustryEnergyEnergyConsumer", "IndustryEnergyEnergyCost", "IndustryEnergyEnergyForecast", "IndustryEnergyEnergyMeter", "IndustryEnergyEnergyPerformanceIndicator", "IndustryEnergyEnergyStorage", "IndustryEnergyInverter", "IndustryEnergyPhotovoltaicSystem", "IndustryEnergyPhotovoltaicSystemModule", "IndustryEnergyPhotovoltaicSystemString", "IndustryFluidHeatMeter", "IndustryFluidWaterMeter", "IndustryMaintenanceAccount", "IndustryMaintenanceCostCenter", "IndustryMaintenanceEmployee", "IndustryMaintenanceEnergyBalance", "IndustryMaintenanceJournalEntry", "IndustryMaintenanceOrder", "IndustryMaintenanceOrderCosts", "IndustryMaintenanceOrderFeedback", "IndustryMaintenanceWorkplace", "OctoSdkDemoCustomer", "OctoSdkDemoMeteringPoint", "OctoSdkDemoOperatingFacility", "SystemAggregationRtQuery", "SystemAggregationSdQuery", "SystemAutoIncrement", "SystemBotAttributeAggregateConfiguration", "SystemBotFixup", "SystemCommunicationAdapter", "SystemCommunicationAiConfiguration", "SystemCommunicationDataFlow", "SystemCommunicationDataPointMapping", "SystemCommunicationDiscordConfiguration", "SystemCommunicationEMailReceiverConfiguration", "SystemCommunicationEMailSenderConfiguration", "SystemCommunicationEdaConfiguration", "SystemCommunicationEnergyCommunityConfiguration", "SystemCommunicationFinApiConfiguration", "SystemCommunicationGrafanaConfiguration", "SystemCommunicationLoxoneConfiguration", "SystemCommunicationMicrosoftGraphConfiguration", "SystemCommunicationPipeline", "SystemCommunicationPipelineExecution", "SystemCommunicationPipelineStatistics", "SystemCommunicationPipelineTrigger", "SystemCommunicationPool", "SystemCommunicationSapConfiguration", "SystemCommunicationServiceAccountConfiguration", "SystemCommunicationSftpConfiguration", "SystemCommunicationTag", "SystemDownsamplingSdQuery", "SystemGroupingAggregationRtQuery", "SystemGroupingAggregationSdQuery", "SystemIdentityApiResource", "SystemIdentityApiScope", "SystemIdentityAzureEntraIdIdentityProvider", "SystemIdentityClient", "SystemIdentityEmailDomainGroupRule", "SystemIdentityExternalTenantUserMapping", "SystemIdentityFacebookIdentityProvider", "SystemIdentityGoogleIdentityProvider", "SystemIdentityGroup", "SystemIdentityIdentityResource", "SystemIdentityMailNotificationConfiguration", "SystemIdentityMicrosoftAdIdentityProvider", "SystemIdentityMicrosoftIdentityProvider", "SystemIdentityOctoTenantIdentityProvider", "SystemIdentityOpenLdapIdentityProvider", "SystemIdentityPermission", "SystemIdentityPermissionRole", "SystemIdentityPersistedGrant", "SystemIdentityRole", "SystemIdentityUser", "SystemMigrationHistory", "SystemNotificationCssTemplateConfiguration", "SystemNotificationEvent", "SystemNotificationNotificationTemplate", "SystemNotificationStatefulEvent", "SystemReportingConnectionInfo", "SystemReportingFileSystemItem", "SystemReportingFolder", "SystemReportingFolderRoot", "SystemSimpleRtQuery", "SystemSimpleSdQuery", "SystemTenant", "SystemTenantConfiguration", "SystemTenantModeConfiguration", "SystemUIBranding", "SystemUIDashboard", "SystemUIDashboardWidget", "SystemUIProcessDiagram", "SystemUISymbolDefinition", "SystemUISymbolLibrary" ]; "SystemEntity_MappedAsTargetUnion": [ "BasicAsset", "BasicCity", "BasicCountry", "BasicDistrict", "BasicEmployee", "BasicState", "BasicTree", "BasicTreeNode", "IndustryBasicAlarm", "IndustryBasicEvent", "IndustryBasicMachine", "IndustryBasicRuntimeVariable", "IndustryEnergyDemandResponseEvent", "IndustryEnergyEnergyConsumer", "IndustryEnergyEnergyCost", "IndustryEnergyEnergyForecast", "IndustryEnergyEnergyMeter", "IndustryEnergyEnergyPerformanceIndicator", "IndustryEnergyEnergyStorage", "IndustryEnergyInverter", "IndustryEnergyPhotovoltaicSystem", "IndustryEnergyPhotovoltaicSystemModule", "IndustryEnergyPhotovoltaicSystemString", "IndustryFluidHeatMeter", "IndustryFluidWaterMeter", "IndustryMaintenanceAccount", "IndustryMaintenanceCostCenter", "IndustryMaintenanceEmployee", "IndustryMaintenanceEnergyBalance", "IndustryMaintenanceJournalEntry", "IndustryMaintenanceOrder", "IndustryMaintenanceOrderCosts", "IndustryMaintenanceOrderFeedback", "IndustryMaintenanceWorkplace", "OctoSdkDemoCustomer", "OctoSdkDemoMeteringPoint", "OctoSdkDemoOperatingFacility", "SystemAggregationRtQuery", "SystemAggregationSdQuery", "SystemAutoIncrement", "SystemBotAttributeAggregateConfiguration", "SystemBotFixup", "SystemCommunicationAdapter", "SystemCommunicationAiConfiguration", "SystemCommunicationDataFlow", "SystemCommunicationDataPointMapping", "SystemCommunicationDiscordConfiguration", "SystemCommunicationEMailReceiverConfiguration", "SystemCommunicationEMailSenderConfiguration", "SystemCommunicationEdaConfiguration", "SystemCommunicationEnergyCommunityConfiguration", "SystemCommunicationFinApiConfiguration", "SystemCommunicationGrafanaConfiguration", "SystemCommunicationLoxoneConfiguration", "SystemCommunicationMicrosoftGraphConfiguration", "SystemCommunicationPipeline", "SystemCommunicationPipelineExecution", "SystemCommunicationPipelineStatistics", "SystemCommunicationPipelineTrigger", "SystemCommunicationPool", "SystemCommunicationSapConfiguration", "SystemCommunicationServiceAccountConfiguration", "SystemCommunicationSftpConfiguration", "SystemCommunicationTag", "SystemDownsamplingSdQuery", "SystemGroupingAggregationRtQuery", "SystemGroupingAggregationSdQuery", "SystemIdentityApiResource", "SystemIdentityApiScope", "SystemIdentityAzureEntraIdIdentityProvider", "SystemIdentityClient", "SystemIdentityEmailDomainGroupRule", "SystemIdentityExternalTenantUserMapping", "SystemIdentityFacebookIdentityProvider", "SystemIdentityGoogleIdentityProvider", "SystemIdentityGroup", "SystemIdentityIdentityResource", "SystemIdentityMailNotificationConfiguration", "SystemIdentityMicrosoftAdIdentityProvider", "SystemIdentityMicrosoftIdentityProvider", "SystemIdentityOctoTenantIdentityProvider", "SystemIdentityOpenLdapIdentityProvider", "SystemIdentityPermission", "SystemIdentityPermissionRole", "SystemIdentityPersistedGrant", "SystemIdentityRole", "SystemIdentityUser", "SystemMigrationHistory", "SystemNotificationCssTemplateConfiguration", "SystemNotificationEvent", "SystemNotificationNotificationTemplate", "SystemNotificationStatefulEvent", "SystemReportingConnectionInfo", "SystemReportingFileSystemItem", "SystemReportingFolder", "SystemReportingFolderRoot", "SystemSimpleRtQuery", "SystemSimpleSdQuery", "SystemTenant", "SystemTenantConfiguration", "SystemTenantModeConfiguration", "SystemUIBranding", "SystemUIDashboard", "SystemUIDashboardWidget", "SystemUIProcessDiagram", "SystemUISymbolDefinition", "SystemUISymbolLibrary" ]; "SystemEntity_RelatesFromUnion": [ "BasicAsset", "BasicCity", "BasicCountry", "BasicDistrict", "BasicEmployee", "BasicState", "BasicTree", "BasicTreeNode", "IndustryBasicAlarm", "IndustryBasicEvent", "IndustryBasicMachine", "IndustryBasicRuntimeVariable", "IndustryEnergyDemandResponseEvent", "IndustryEnergyEnergyConsumer", "IndustryEnergyEnergyCost", "IndustryEnergyEnergyForecast", "IndustryEnergyEnergyMeter", "IndustryEnergyEnergyPerformanceIndicator", "IndustryEnergyEnergyStorage", "IndustryEnergyInverter", "IndustryEnergyPhotovoltaicSystem", "IndustryEnergyPhotovoltaicSystemModule", "IndustryEnergyPhotovoltaicSystemString", "IndustryFluidHeatMeter", "IndustryFluidWaterMeter", "IndustryMaintenanceAccount", "IndustryMaintenanceCostCenter", "IndustryMaintenanceEmployee", "IndustryMaintenanceEnergyBalance", "IndustryMaintenanceJournalEntry", "IndustryMaintenanceOrder", "IndustryMaintenanceOrderCosts", "IndustryMaintenanceOrderFeedback", "IndustryMaintenanceWorkplace", "OctoSdkDemoCustomer", "OctoSdkDemoMeteringPoint", "OctoSdkDemoOperatingFacility", "SystemAggregationRtQuery", "SystemAggregationSdQuery", "SystemAutoIncrement", "SystemBotAttributeAggregateConfiguration", "SystemBotFixup", "SystemCommunicationAdapter", "SystemCommunicationAiConfiguration", "SystemCommunicationDataFlow", "SystemCommunicationDataPointMapping", "SystemCommunicationDiscordConfiguration", "SystemCommunicationEMailReceiverConfiguration", "SystemCommunicationEMailSenderConfiguration", "SystemCommunicationEdaConfiguration", "SystemCommunicationEnergyCommunityConfiguration", "SystemCommunicationFinApiConfiguration", "SystemCommunicationGrafanaConfiguration", "SystemCommunicationLoxoneConfiguration", "SystemCommunicationMicrosoftGraphConfiguration", "SystemCommunicationPipeline", "SystemCommunicationPipelineExecution", "SystemCommunicationPipelineStatistics", "SystemCommunicationPipelineTrigger", "SystemCommunicationPool", "SystemCommunicationSapConfiguration", "SystemCommunicationServiceAccountConfiguration", "SystemCommunicationSftpConfiguration", "SystemCommunicationTag", "SystemDownsamplingSdQuery", "SystemGroupingAggregationRtQuery", "SystemGroupingAggregationSdQuery", "SystemIdentityApiResource", "SystemIdentityApiScope", "SystemIdentityAzureEntraIdIdentityProvider", "SystemIdentityClient", "SystemIdentityEmailDomainGroupRule", "SystemIdentityExternalTenantUserMapping", "SystemIdentityFacebookIdentityProvider", "SystemIdentityGoogleIdentityProvider", "SystemIdentityGroup", "SystemIdentityIdentityResource", "SystemIdentityMailNotificationConfiguration", "SystemIdentityMicrosoftAdIdentityProvider", "SystemIdentityMicrosoftIdentityProvider", "SystemIdentityOctoTenantIdentityProvider", "SystemIdentityOpenLdapIdentityProvider", "SystemIdentityPermission", "SystemIdentityPermissionRole", "SystemIdentityPersistedGrant", "SystemIdentityRole", "SystemIdentityUser", "SystemMigrationHistory", "SystemNotificationCssTemplateConfiguration", "SystemNotificationEvent", "SystemNotificationNotificationTemplate", "SystemNotificationStatefulEvent", "SystemReportingConnectionInfo", "SystemReportingFileSystemItem", "SystemReportingFolder", "SystemReportingFolderRoot", "SystemSimpleRtQuery", "SystemSimpleSdQuery", "SystemTenant", "SystemTenantConfiguration", "SystemTenantModeConfiguration", "SystemUIBranding", "SystemUIDashboard", "SystemUIDashboardWidget", "SystemUIProcessDiagram", "SystemUISymbolDefinition", "SystemUISymbolLibrary" ]; "SystemEntity_RelatesToUnion": [ "BasicAsset", "BasicCity", "BasicCountry", "BasicDistrict", "BasicEmployee", "BasicState", "BasicTree", "BasicTreeNode", "IndustryBasicAlarm", "IndustryBasicEvent", "IndustryBasicMachine", "IndustryBasicRuntimeVariable", "IndustryEnergyDemandResponseEvent", "IndustryEnergyEnergyConsumer", "IndustryEnergyEnergyCost", "IndustryEnergyEnergyForecast", "IndustryEnergyEnergyMeter", "IndustryEnergyEnergyPerformanceIndicator", "IndustryEnergyEnergyStorage", "IndustryEnergyInverter", "IndustryEnergyPhotovoltaicSystem", "IndustryEnergyPhotovoltaicSystemModule", "IndustryEnergyPhotovoltaicSystemString", "IndustryFluidHeatMeter", "IndustryFluidWaterMeter", "IndustryMaintenanceAccount", "IndustryMaintenanceCostCenter", "IndustryMaintenanceEmployee", "IndustryMaintenanceEnergyBalance", "IndustryMaintenanceJournalEntry", "IndustryMaintenanceOrder", "IndustryMaintenanceOrderCosts", "IndustryMaintenanceOrderFeedback", "IndustryMaintenanceWorkplace", "OctoSdkDemoCustomer", "OctoSdkDemoMeteringPoint", "OctoSdkDemoOperatingFacility", "SystemAggregationRtQuery", "SystemAggregationSdQuery", "SystemAutoIncrement", "SystemBotAttributeAggregateConfiguration", "SystemBotFixup", "SystemCommunicationAdapter", "SystemCommunicationAiConfiguration", "SystemCommunicationDataFlow", "SystemCommunicationDataPointMapping", "SystemCommunicationDiscordConfiguration", "SystemCommunicationEMailReceiverConfiguration", "SystemCommunicationEMailSenderConfiguration", "SystemCommunicationEdaConfiguration", "SystemCommunicationEnergyCommunityConfiguration", "SystemCommunicationFinApiConfiguration", "SystemCommunicationGrafanaConfiguration", "SystemCommunicationLoxoneConfiguration", "SystemCommunicationMicrosoftGraphConfiguration", "SystemCommunicationPipeline", "SystemCommunicationPipelineExecution", "SystemCommunicationPipelineStatistics", "SystemCommunicationPipelineTrigger", "SystemCommunicationPool", "SystemCommunicationSapConfiguration", "SystemCommunicationServiceAccountConfiguration", "SystemCommunicationSftpConfiguration", "SystemCommunicationTag", "SystemDownsamplingSdQuery", "SystemGroupingAggregationRtQuery", "SystemGroupingAggregationSdQuery", "SystemIdentityApiResource", "SystemIdentityApiScope", "SystemIdentityAzureEntraIdIdentityProvider", "SystemIdentityClient", "SystemIdentityEmailDomainGroupRule", "SystemIdentityExternalTenantUserMapping", "SystemIdentityFacebookIdentityProvider", "SystemIdentityGoogleIdentityProvider", "SystemIdentityGroup", "SystemIdentityIdentityResource", "SystemIdentityMailNotificationConfiguration", "SystemIdentityMicrosoftAdIdentityProvider", "SystemIdentityMicrosoftIdentityProvider", "SystemIdentityOctoTenantIdentityProvider", "SystemIdentityOpenLdapIdentityProvider", "SystemIdentityPermission", "SystemIdentityPermissionRole", "SystemIdentityPersistedGrant", "SystemIdentityRole", "SystemIdentityUser", "SystemMigrationHistory", "SystemNotificationCssTemplateConfiguration", "SystemNotificationEvent", "SystemNotificationNotificationTemplate", "SystemNotificationStatefulEvent", "SystemReportingConnectionInfo", "SystemReportingFileSystemItem", "SystemReportingFolder", "SystemReportingFolderRoot", "SystemSimpleRtQuery", "SystemSimpleSdQuery", "SystemTenant", "SystemTenantConfiguration", "SystemTenantModeConfiguration", "SystemUIBranding", "SystemUIDashboard", "SystemUIDashboardWidget", "SystemUIProcessDiagram", "SystemUISymbolDefinition", "SystemUISymbolLibrary" ]; "SystemIdentityGroup_AssignedEntitiesUnion": [ "SystemIdentityGroup", "SystemIdentityUser" ]; "SystemIdentityGroup_ChildGroupsUnion": [ "SystemIdentityGroup" ]; "SystemIdentityGroup_MemberOfGroupsUnion": [ "SystemIdentityGroup" ]; "SystemIdentityGroup_ParentGroupsUnion": [ "SystemIdentityGroup" ]; "SystemIdentityIdentityProviderInterface": [ "SystemIdentityAzureEntraIdIdentityProvider", "SystemIdentityFacebookIdentityProvider", "SystemIdentityGoogleIdentityProvider", "SystemIdentityMicrosoftAdIdentityProvider", "SystemIdentityMicrosoftIdentityProvider", "SystemIdentityOctoTenantIdentityProvider", "SystemIdentityOpenLdapIdentityProvider" ]; "SystemIdentityResourceInterface": [ "SystemIdentityApiResource", "SystemIdentityApiScope", "SystemIdentityIdentityResource" ]; "SystemIdentityRole_AssignedRolesUnion": [ "SystemIdentityRole" ]; "SystemIdentityUser_MembersUnion": [ "SystemIdentityExternalTenantUserMapping", "SystemIdentityUser" ]; "SystemPersistentQueryInterface": [ "SystemAggregationRtQuery", "SystemAggregationSdQuery", "SystemDownsamplingSdQuery", "SystemGroupingAggregationRtQuery", "SystemGroupingAggregationSdQuery", "SystemSimpleRtQuery", "SystemSimpleSdQuery", "SystemStreamDataQuery" ]; "SystemReportingFileSystemContainerInterface": [ "SystemReportingFileSystemItem", "SystemReportingFolder" ]; "SystemReportingFileSystemContainer_ChildrenUnion": [ "SystemReportingFileSystemItem", "SystemReportingFolder" ]; "SystemReportingFileSystemEntityInterface": [ "SystemReportingFileSystemContainer", "SystemReportingFileSystemItem", "SystemReportingFolder", "SystemReportingFolderRoot" ]; "SystemReportingFolder_ParentUnion": [ "SystemReportingFolder", "SystemReportingFolderRoot" ]; "SystemStreamDataQueryInterface": [ "SystemAggregationSdQuery", "SystemDownsamplingSdQuery", "SystemGroupingAggregationSdQuery", "SystemSimpleSdQuery" ]; "SystemUIDashboardWidget_ChildrenUnion": [ "SystemUIDashboardWidget" ]; "SystemUIDashboard_ParentUnion": [ "SystemUIDashboard" ]; "SystemUISymbolDefinition_ChildrenUnion": [ "SystemUISymbolDefinition" ]; "SystemUISymbolLibrary_ParentUnion": [ "SystemUISymbolLibrary" ]; "SystemUIUIElementInterface": [ "SystemUIBranding", "SystemUIDashboard", "SystemUIDashboardWidget", "SystemUIProcessDiagram", "SystemUISymbolDefinition", "SystemUISymbolLibrary" ]; }; }; declare const result: PossibleTypesResultData; type GetCkTypeAttributesQueryVariablesDto = Exact<{ ckTypeId: Scalars['String']['input']; first?: InputMaybe; }>; 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: AttributeValueTypeDto; } | null> | null; } | null; } | null> | null; } | null; } | null; }; declare const GetCkTypeAttributesDocumentDto: Apollo.TypedDocumentNode; declare class GetCkTypeAttributesDtoGQL extends Apollo.Query { document: Apollo.TypedDocumentNode; constructor(apollo: Apollo.Apollo); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; } type GetCkRecordAttributesQueryVariablesDto = Exact<{ ckRecordId: Scalars['String']['input']; first?: InputMaybe; }>; 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: AttributeValueTypeDto; } | null> | null; } | null; } | null> | null; } | null; } | null; }; declare const GetCkRecordAttributesDocumentDto: Apollo.TypedDocumentNode; declare class GetCkRecordAttributesDtoGQL extends Apollo.Query { document: Apollo.TypedDocumentNode; constructor(apollo: Apollo.Apollo); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; } type GetCkTypeAvailableQueryColumnsQueryVariablesDto = Exact<{ after?: InputMaybe; first?: InputMaybe; rtCkId: Scalars['String']['input']; filter?: InputMaybe; attributeValueType?: InputMaybe; searchTerm?: InputMaybe; includeNavigationProperties?: InputMaybe; maxDepth?: InputMaybe; attributePaths?: InputMaybe> | InputMaybe>; }>; type GetCkTypeAvailableQueryColumnsQueryDto = { __typename?: 'OctoQuery'; constructionKit?: { __typename?: 'ConstructionKitQuery'; types?: { __typename?: 'CkTypeDtoConnection'; items?: Array<{ __typename?: 'CkType'; rtCkTypeId: any; ckTypeId: { __typename?: 'CkTypeId'; fullName: string; semanticVersionedFullName: 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: AttributeValueTypeDto; description?: string | null; } | null> | null; } | null; } | null> | null; } | null; } | null; }; declare const GetCkTypeAvailableQueryColumnsDocumentDto: Apollo.TypedDocumentNode; declare class GetCkTypeAvailableQueryColumnsDtoGQL extends Apollo.Query { document: Apollo.TypedDocumentNode; constructor(apollo: Apollo.Apollo); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; } type GetCkTypesQueryVariablesDto = Exact<{ after?: InputMaybe; first?: InputMaybe; searchFilter?: InputMaybe; fieldFilters?: InputMaybe> | InputMaybe>; sort?: InputMaybe> | InputMaybe>; ckModelIds?: InputMaybe> | InputMaybe>; }>; 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; }; declare const GetCkTypesDocumentDto: Apollo.TypedDocumentNode; declare class GetCkTypesDtoGQL extends Apollo.Query { document: Apollo.TypedDocumentNode; constructor(apollo: Apollo.Apollo); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; } type GetDerivedCkTypesQueryVariablesDto = Exact<{ rtCkTypeId: Scalars['String']['input']; ignoreAbstractTypes?: InputMaybe; includeSelf?: InputMaybe; }>; type GetDerivedCkTypesQueryDto = { __typename?: 'OctoQuery'; constructionKit?: { __typename?: 'ConstructionKitQuery'; types?: { __typename?: 'CkTypeDtoConnection'; items?: Array<{ __typename?: 'CkType'; directAndIndirectDerivedTypes?: { __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> | null; } | null; } | null; }; declare const GetDerivedCkTypesDocumentDto: Apollo.TypedDocumentNode; declare class GetDerivedCkTypesDtoGQL extends Apollo.Query { document: Apollo.TypedDocumentNode; constructor(apollo: Apollo.Apollo); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; } type GetCkModelByIdQueryVariablesDto = Exact<{ model: Scalars['SimpleScalar']['input']; }>; type GetCkModelByIdQueryDto = { __typename?: 'OctoQuery'; constructionKit?: { __typename?: 'ConstructionKitQuery'; models?: { __typename?: 'CkModelDtoConnection'; totalCount?: number | null; items?: Array<{ __typename?: 'CkModel'; modelState?: ModelStateDto | null; id: { __typename?: 'CkModelId'; name: string; version: any; fullName: string; semanticVersionedFullName: string; }; } | null> | null; } | null; } | null; }; declare const GetCkModelByIdDocumentDto: Apollo.TypedDocumentNode; declare class GetCkModelByIdDtoGQL extends Apollo.Query { document: Apollo.TypedDocumentNode; constructor(apollo: Apollo.Apollo); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; } interface AddInConfiguration { communicationServices: string; assetServices: string; botServices: string; meshAdapterUrl: string; crateDbAdminUrl: string; issuer: string; grafanaUrl: string; systemTenantId: string; clientId: string; redirectUri: string; postLogoutRedirectUri: string; } /** * Interface for the ConfigurationService. * Must be implemented by each application to provide configuration loading logic. * * @example * ```typescript * @Injectable({ providedIn: 'root' }) * export class AppConfigurationService implements IConfigurationService { * private readonly _config: AddInConfiguration = {} as AddInConfiguration; * * get config(): AddInConfiguration { * return this._config; * } * * async loadConfigAsync(): Promise { * // App-specific loading logic * } * } * ``` */ interface IConfigurationService { /** * The loaded configuration. * Available after loadConfigAsync() has been called. */ readonly config: AddInConfiguration; /** * Loads the configuration asynchronously. * Typically called during app initialization (APP_INITIALIZER). */ loadConfigAsync(): Promise; } /** * Injection token for the ConfigurationService. * Allows each application to provide its own implementation. * * @example * ```typescript * // In app.config.ts * providers: [ * { provide: CONFIGURATION_SERVICE, useClass: AppConfigurationService } * ] * ``` */ declare const CONFIGURATION_SERVICE: InjectionToken; interface AttributeItem { attributePath: string; attributeValueType: string; description?: string | null; } interface AttributeSelectorResult { items: AttributeItem[]; totalCount: number; } declare class AttributeSelectorService { private readonly getCkTypeAvailableQueryColumnsGQL; getAvailableAttributes(ckTypeId: string, filter?: string, first?: number, after?: string, attributeValueType?: string, searchTerm?: string, includeNavigationProperties?: boolean, maxDepth?: number, attributePaths?: string[]): Observable; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; } interface CkTypeAttributeInfo { attributeName: string; attributeValueType: string; } declare class CkTypeAttributeService { private readonly getCkTypeAttributesGQL; private readonly getCkRecordAttributesGQL; /** * Load CK type attributes for a given ckTypeId * @param ckTypeId The fullName of the CK type * @returns Observable of CkTypeAttributeInfo array */ getCkTypeAttributes(ckTypeId: string): Observable; /** * Load CK record attributes for a given ckRecordId * @param ckRecordId The fullName of the CK record * @returns Observable of CkTypeAttributeInfo array */ getCkRecordAttributes(ckRecordId: string): Observable; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; } interface CkTypeSelectorItem { fullName: string; rtCkTypeId: string; baseTypeFullName?: string; baseTypeRtCkTypeId?: string; isAbstract: boolean; isFinal: boolean; description?: string; } interface CkTypeSelectorResult { items: CkTypeSelectorItem[]; totalCount: number; } declare class CkTypeSelectorService { private readonly getCkTypesGQL; private readonly getCkTypeByRtCkTypeIdGQL; private readonly getDerivedCkTypesGQL; /** * Get a CkType by its rtCkTypeId * @param rtCkTypeId The runtime CK type ID, e.g., "OctoSdkDemo-1.0.0/Customer" * @returns Observable of CkTypeSelectorItem or null if not found */ getCkTypeByRtCkTypeId(rtCkTypeId: string): Observable; /** * Get CkTypes with optional filtering by model IDs and search text * @param options Search options * @returns Observable of CkTypeSelectorResult */ getCkTypes(options?: { ckModelIds?: string[]; searchText?: string; first?: number; skip?: number; }): Observable; /** * Get derived CkTypes for a given base type rtCkTypeId, with optional client-side text filter * @param rtCkTypeId The runtime CK type ID of the base type, e.g., "Basic/TreeNode" * @param options Search options * @returns Observable of CkTypeSelectorResult */ getDerivedCkTypes(rtCkTypeId: string, options?: { searchText?: string; ignoreAbstractTypes?: boolean; includeSelf?: boolean; }): Observable; private mapToSelectorItem; private mapDerivedToSelectorItem; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; } /** * Service for checking CK model availability in the current tenant. */ declare class CkModelService { private readonly getCkModelByIdGQL; /** * Checks if a construction kit model is available in the current tenant. * @param modelId The model ID to check (e.g., 'System.UI') * @returns true if the model is available and in AVAILABLE state */ isModelAvailable(modelId: string): Promise; /** * Checks if a construction kit model is available with at least the specified version. * @param modelId The model ID to check (e.g., 'System.UI') * @param minVersion The minimum required version (e.g., '1.0.1') * @returns true if the model is available and version >= minVersion */ isModelAvailableWithMinVersion(modelId: string, minVersion: string): Promise; /** * Gets the version of an available model. * @param modelId The model ID to check * @returns The version string or null if not available */ getModelVersion(modelId: string): Promise; /** * Parses a version string into its components. * Supports formats: "1.0.1", "1.0", "1" */ private parseVersion; /** * Compares two semantic versions. * @returns negative if a < b, 0 if equal, positive if a > b */ private compareVersions; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; } declare class AssetRepoService { private readonly httpClient; private readonly configurationService; private readonly tenantIdProvider; private getTenantApiBaseUrl; getTenants(skip: number, take: number): Promise | null>; getTenantDetails(childTenantId: string): Promise; createTenant(tenantDto: TenantDto): Promise; attachTenant(dataSourceDto: TenantDto): Promise; detachTenant(childTenantId: string): Promise; deleteTenant(childTenantId: string): Promise; importRtModel(tenantId: string, file: File, importStrategy?: ImportStrategyDto): Promise; importCkModel(tenantId: string, file: File, importStrategy?: ImportStrategyDto): Promise; exportRtModelByQuery(tenantId: string, queryId: string): Promise; exportRtModelDeepGraph(tenantId: string, originRtIds: string[], originCkTypeId: string): Promise; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; } declare class BotService { private readonly httpClient; private readonly configurationService; runFixupScripts(tenantId: string): Promise; dumpRepository(tenantId: string): Promise; /** @deprecated Use TusUploadService.startUpload() instead for resumable uploads supporting large files. */ restoreRepository(tenantId: string, databaseName: string, file: File): Promise; downloadJobResultBinary(tenantId: string, jobId: string): Promise; getJobStatus(jobId: string): Promise; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; } declare class HealthService { private readonly httpClient; private readonly configurationService; private getStatusAsync; getAssetRepoServiceHealthAsync(): Promise; getIdentityServiceAsync(): Promise; getBotServiceAsync(): Promise; getCommunicationControllerServiceAsync(): Promise; getMeshAdapterAsync(): Promise; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; } declare class IdentityService { private readonly httpClient; private readonly configurationService; private readonly tenantIdProvider; private getApiBaseUrl; userDiagnostics(): Promise; getUsers(skip: number, take: number): Promise | null>; getUserDetails(userName: string): Promise; createUser(userDto: UserDto): Promise; updateUser(userName: string, userDto: UserDto): Promise; deleteUser(userName: string): Promise; getUserRoles(userName: string): Promise; getUserDirectRoles(userName: string): Promise; updateUserRoles(userName: string, roles: RoleDto[]): Promise; addUserToRole(userName: string, roleName: string): Promise; removeRoleFromUser(userName: string, roleName: string): Promise; mergeUsers(targetUserName: string, sourceUserName: string): Promise; resetPassword(userName: string, password: string): Promise; getClients(skip: number, take: number): Promise | null>; getClientDetails(clientId: string): Promise; createClient(clientDto: ClientDto): Promise; updateClient(clientId: string, clientDto: ClientDto): Promise; deleteClient(clientId: string): Promise; generatePassword(): Promise; getRoles(skip: number, take: number): Promise | null>; getRoleDetails(roleName: string): Promise; createRole(roleDto: RoleDto): Promise; updateRole(roleName: string, roleDto: RoleDto): Promise; deleteRole(roleName: string): Promise; getIdentityProviders(): Promise; getIdentityProviderDetails(rtId: string): Promise; createIdentityProvider(dto: IdentityProviderDto): Promise; updateIdentityProvider(rtId: string, dto: IdentityProviderDto): Promise; deleteIdentityProvider(rtId: string): Promise; getEmailDomainGroupRules(): Promise; getEmailDomainGroupRuleDetails(rtId: string): Promise; createEmailDomainGroupRule(dto: EmailDomainGroupRuleDto): Promise; updateEmailDomainGroupRule(rtId: string, dto: EmailDomainGroupRuleDto): Promise; deleteEmailDomainGroupRule(rtId: string): Promise; getGroups(): Promise; getGroupsPaged(skip: number, take: number): Promise; getGroupById(rtId: string): Promise; getGroupByName(groupName: string): Promise; createGroup(dto: CreateGroupDto): Promise; updateGroup(rtId: string, dto: UpdateGroupDto): Promise; deleteGroup(rtId: string): Promise; getGroupRoles(rtId: string): Promise; updateGroupRoles(rtId: string, roleIds: string[]): Promise; addUserToGroup(rtId: string, userId: string): Promise; removeUserFromGroup(rtId: string, userId: string): Promise; addGroupToGroup(rtId: string, childGroupId: string): Promise; removeGroupFromGroup(rtId: string, childGroupId: string): Promise; private getSystemTenantBaseUrl; getAdminProvisionedUsers(targetTenantId: string): Promise; provisionCurrentUser(targetTenantId: string): Promise; createAdminProvisioning(targetTenantId: string, dto: CreateExternalTenantUserMappingDto): Promise; deleteAdminProvisioning(targetTenantId: string, mappingRtId: string): Promise; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; } declare class JobManagementService { private readonly botService; private readonly messageService; private readonly progressWindowService; downloadJobResult(tenantId: string, jobId: string, fileName: string): Promise; waitForJob(jobId: string, title: string, operation: string): Promise; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; } /** * Service for communication controller operations. * Handles adapter deployment, pipeline execution, and debugging. */ declare class CommunicationService { private readonly httpClient; private readonly configurationService; /** Headers to prevent browser caching of debug/execution data. */ private readonly noCacheHeaders; /** * Gets the base URL for communication services. */ private get communicationServicesUrl(); /** * Deploys all data pipeline triggers for a tenant. */ deployTrigger(tenantId: string): Promise; /** * Deploys an adapter configuration update. * This triggers the adapter to reload its configuration. */ deployAdapterConfigurationUpdate(tenantId: string, adapterRtId: string, adapterCkTypeId: string): Promise; /** * Deploys a pool. For Cloud-environment pools, this triggers the central * Communication Operator to provision the corresponding CommunicationPool * CR and broker secret. Edge-environment pools transition state without * any operator notification. */ deployPool(tenantId: string, poolRtId: string): Promise; /** * Undeploys a pool. For Cloud-environment pools, this notifies the central * Communication Operator to remove the CommunicationPool CR and broker * secret. */ undeployPool(tenantId: string, poolRtId: string): Promise; /** * Deploys all adapters of a pool. */ deployAllAdaptersOfPool(tenantId: string, poolRtId: string): Promise; /** * Undeploys all adapters of a pool. */ undeployAllAdaptersOfPool(tenantId: string, poolRtId: string): Promise; /** * Deploys a single adapter to a pool. */ deployAdapter(tenantId: string, poolRtId: string, adapterRtId: string, adapterCkTypeId: string): Promise; /** * Undeploys a single adapter from a pool. */ undeployAdapter(tenantId: string, poolRtId: string, adapterRtId: string, adapterCkTypeId: string): Promise; /** * Executes a data pipeline manually. */ executePipeline(tenantId: string, pipelineRtId: string): Promise; /** * Deploys a pipeline definition to an adapter. */ deployPipelineDefinition(tenantId: string, adapterRtId: string, adapterCkTypeId: string, pipelineRtId: string, pipelineCkTypeId: string, pipelineDefinition: string | null): Promise; /** * Deploys a data flow. */ deployDataFlow(tenantId: string, dataFlowRtId: string): Promise; /** * Undeploys a data flow. */ undeployDataFlow(tenantId: string, dataFlowRtId: string): Promise; /** * Gets the deployment status of a pipeline. */ getPipelineStatus(tenantId: string, pipelineRtId: string, pipelineCkTypeId: string): Promise; /** * Gets all node descriptors from all connected adapters. * Each descriptor contains the node name, version, category, and configuration schema. */ getNodeDescriptors(tenantId: string): Promise; /** * Parses a YAML pipeline definition on the backend and returns the properties * of a specific node instance identified by type and occurrence index. */ parseNodeProperties(tenantId: string, definition: string, nodeType: string, nodeIndex: number): Promise; /** * Updates the properties of a specific node in a YAML pipeline definition. * Sends the current YAML, node identifier, and new property values to the backend, * which returns the updated YAML string. */ updateNodeProperties(tenantId: string, definition: string, nodeType: string, nodeIndex: number, properties: Record): Promise; /** * Gets the JSON Schema for a pipeline adapter. * Returns null if no schema is available (404). */ getPipelineSchema(tenantId: string, adapterRtId: string, adapterCkTypeId: string): Promise | null>; /** * Gets pipeline execution history. * Returns empty array if no executions found (404). */ getPipelineExecutions(tenantId: string, pipelineRtId: string, pipelineCkTypeId: string, skip: number, take: number): Promise; /** * Gets the latest pipeline execution. * Returns null if no executions found (404). */ getLatestPipelineExecution(tenantId: string, pipelineRtId: string, pipelineCkTypeId: string): Promise; /** * Gets debug point nodes for a pipeline execution. * Returns null if execution not found (404). */ getPipelineExecutionDebugPointNodes(tenantId: string, pipelineRtId: string, pipelineCkTypeId: string, pipelineExecutionId: string): Promise; /** * Gets data captured at a specific debug point. * Returns null if debug point not found (404). */ getDebugPoint(tenantId: string, pipelineRtId: string, pipelineCkTypeId: string, pipelineExecutionId: string, nodeId: string): Promise; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; } interface TusUploadOptions { file: File; tenantId: string; databaseName: string; oldDatabaseName?: string; onProgress?: (bytesUploaded: number, bytesTotal: number) => void; } interface TusUploadResult { jobId: string; } declare class TusUploadService { private readonly httpClient; private readonly configurationService; private readonly authorizeService; startUpload(options: TusUploadOptions): Promise; private performTusUpload; private startRestoreJob; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; } declare class CkModelCatalogService { private readonly httpClient; private readonly configurationService; private readonly tenantIdProvider; private getSystemApiBaseUrl; private getTenantApiBaseUrl; getCatalogs(): Promise; listModels(skip?: number, take?: number): Promise; searchModels(q: string, skip?: number, take?: number): Promise; refreshCatalogs(): Promise; importFromCatalog(tenantId: string, catalogName: string, modelId: string): Promise; resolveDependencies(tenantId: string, catalogName: string, modelId: string): Promise; checkUpgrade(tenantId: string, catalogName: string, modelId: string): Promise; getLibraryStatus(tenantId: string): Promise; resolveDependenciesBatch(tenantId: string, models: ImportFromCatalogRequestDto[]): Promise; importFromCatalogBatch(tenantId: string, catalogName: string, modelIds: string[]): Promise; getMigrationHistory(tenantId: string, modelName: string): Promise; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; } /** * Provider function type for getting the current tenant ID. * Apps must provide this for tenant-specific operations like export/import. * * @returns Promise resolving to the tenant ID or null if not available */ type TenantIdProvider = () => Promise; /** * Injection token for providing the current tenant ID. * This is required for operations that need tenant context, such as: * - Exporting/importing runtime models * - Asset repository operations * - Job management * * @example * ```typescript * // app.config.ts * import { TENANT_ID_PROVIDER } from '@meshmakers/octo-services'; * import { ActivatedRoute } from '@angular/router'; * import { firstValueFrom } from 'rxjs'; * * export const appConfig: ApplicationConfig = { * providers: [ * { * provide: TENANT_ID_PROVIDER, * useFactory: () => { * const route = inject(ActivatedRoute); * const configService = inject(CONFIGURATION_SERVICE); * return async (): Promise => { * if (route.firstChild) { * const params = await firstValueFrom(route.firstChild.params); * const tenantId = params['tenantId'] as string; * if (tenantId) { * return tenantId; * } * } * return configService.config?.systemTenantId ?? null; * }; * } * } * ] * }; * ``` */ declare const TENANT_ID_PROVIDER: InjectionToken; type GetEntitiesByCkTypeQueryVariablesDto = Exact<{ ckTypeId: Scalars['String']['input']; rtId?: InputMaybe; after?: InputMaybe; first?: InputMaybe; searchFilter?: InputMaybe; fieldFilters?: InputMaybe> | InputMaybe>; sort?: InputMaybe> | InputMaybe>; }>; type GetEntitiesByCkTypeQueryDto = { __typename?: 'OctoQuery'; runtime?: { __typename?: 'RuntimeModelQuery'; runtimeEntities?: { __typename?: 'RtEntityGenericDtoConnection'; totalCount?: number | null; items?: Array<{ __typename?: 'RtEntity'; rtId: any; ckTypeId: any; rtWellKnownName?: string | null; rtCreationDateTime?: any | null; rtChangedDateTime?: any | null; attributes?: { __typename?: 'RtEntityAttributeDtoConnection'; items?: Array<{ __typename?: 'RtEntityAttribute'; attributeName?: string | null; value?: any | null; } | null> | null; } | null; } | null> | null; } | null; } | null; }; declare const GetEntitiesByCkTypeDocumentDto: Apollo.TypedDocumentNode; declare class GetEntitiesByCkTypeDtoGQL extends Apollo.Query { document: Apollo.TypedDocumentNode; constructor(apollo: Apollo.Apollo); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; } /** * Represents a runtime entity for selection in config dialogs */ interface RuntimeEntityItem { rtId: string; ckTypeId: string; rtWellKnownName?: string; displayName: string; } /** * Data source for entity autocomplete input - filters entities by CK Type */ declare class RuntimeEntitySelectDataSource implements EntitySelectDataSource { private getEntitiesByCkTypeGQL; private ckTypeId; constructor(getEntitiesByCkTypeGQL: GetEntitiesByCkTypeDtoGQL, ckTypeId: string); onFilter(filter: string, take?: number): Promise>; onDisplayEntity(entity: RuntimeEntityItem): string; getIdEntity(entity: RuntimeEntityItem): string; } /** * Dialog data source for entity selection grid with pagination and search */ declare class RuntimeEntityDialogDataSource implements EntitySelectDialogDataSource { private getEntitiesByCkTypeGQL; private ckTypeId; constructor(getEntitiesByCkTypeGQL: GetEntitiesByCkTypeDtoGQL, ckTypeId: string); getColumns(): ColumnDefinition[]; fetchData(options: DialogFetchOptions): Observable>; onDisplayEntity(entity: RuntimeEntityItem): string; getIdEntity(entity: RuntimeEntityItem): string; } /** * Backward-compatible OctoServicesModule for legacy apps that use * importProvidersFrom(OctoServicesModule.forRoot(options)). * * New code should use provideOctoServices(options) directly. */ declare class OctoServicesModule { static forRoot(octoServiceOptions: OctoServiceOptions): ModuleWithProviders; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵmod: i0.ɵɵNgModuleDeclaration; static ɵinj: i0.ɵɵInjectorDeclaration; } /** * Backward-compatible AssetRepoGraphQlDataSource for legacy apps. * * New code should use OctoGraphQlDataSource from @meshmakers/octo-ui. */ interface IQueryVariablesDto extends OperationVariables { first?: number | null | undefined; after?: string | null | undefined; sort?: InputMaybe | InputMaybe[]> | undefined; searchFilter?: InputMaybe | undefined; fieldFilters?: InputMaybe[] | InputMaybe>; } /** * Structural interface for QueryRef to avoid private/protected member type incompatibilities * between different apollo-angular npm installations. */ interface QueryRefLike<_TQueryDto = unknown, TVariablesDto = unknown> { valueChanges: Observable; refetch(variables?: TVariablesDto): Promise; stopPolling(): void; } /** * Structural interface for apollo-angular Query. */ interface QueryLike<_TQueryDto = unknown, _TVariablesDto extends OperationVariables = OperationVariables> { watch(options?: Record): QueryRefLike; } declare abstract class GraphQlDataSource extends DataSourceBase { abstract refetch(): Promise; abstract refetchWith(skip?: number, take?: number, searchFilter?: SearchFilterDto | null, fieldFilter?: FieldFilterDto[] | null, sort?: SortDto[] | null): Promise; abstract loadData(skip?: number, take?: number, searchFilter?: SearchFilterDto | null, fieldFilter?: FieldFilterDto[] | null, sort?: SortDto[] | null): void; } declare class AssetRepoGraphQlDataSource extends GraphQlDataSource { protected messageService: MessageService; private readonly query; private readonly defaultSort; private queryRef; private subscription; constructor(messageService: MessageService, query: QueryLike, defaultSort?: SortDto[] | null); clear(): void; refetch(): Promise; refetchWith(skip?: number, take?: number, searchFilter?: SearchFilterDto | null, fieldFilter?: FieldFilterDto[] | null, sort?: SortDto[] | null): Promise; protected createVariables(skip?: number, take?: number, searchFilter?: SearchFilterDto | null, fieldFilter?: FieldFilterDto[] | null, sort?: SortDto[] | null): TVariablesDto; loadData(skip?: number, take?: number, searchFilter?: SearchFilterDto | null, fieldFilter?: FieldFilterDto[] | null, sort?: SortDto[] | null): void; protected executeLoad(_value: unknown, _index: number): PagedResultDto; } /** * Backward-compatible PagedGraphResultDto for legacy apps. */ declare class PagedGraphResultDto extends PagedResultDto { document: P | null; constructor(); } /** * Backward-compatible OctoGraphQLServiceBase for legacy apps. * * New code should use generated Apollo services directly. */ declare class OctoGraphQLServiceBase { private readonly apollo; private readonly httpLink; private readonly octoServiceOptions; constructor(apollo: Apollo$1, httpLink: HttpLink, octoServiceOptions: OctoServiceOptions); protected getEntities(tenantId: string, variables: TVariable, queryNode: DocumentNode, watchQuery: boolean, f: (resultSet: PagedResultDto, result: NonNullable | NonNullable>) => void): Observable>; protected getGraphEntities(tenantId: string, variables: TVariable, queryNode: DocumentNode, watchQuery: boolean, f: (resultSet: PagedGraphResultDto, result: NonNullable | NonNullable>) => void): Observable>; protected getEntityDetail(tenantId: string, variables: TVariable, queryNode: DocumentNode, watchQuery: boolean, f: (result: NonNullable | NonNullable>) => TEntity): Observable; protected createUpdateEntity(tenantId: string, variables: TVariable, queryNode: DocumentNode, f: (result: TResult | null | undefined) => TEntity): Observable; protected deleteEntity(tenantId: string, variables: TVariable, queryNode: DocumentNode, f: (result: TResult | null | undefined) => boolean): Observable; private createApolloForTenant; private prepareWatchQuery; private prepareQuery; } declare function provideOctoServices(octoServiceOptions?: OctoServiceOptions): EnvironmentProviders; export { AggregationInputTypesDto, AggregationTypeDto, AggregationTypesDto, AssetRepoGraphQlDataSource, AssetRepoService, AssociationModOptionsDto, AttributeSelectorService, AttributeValueTypeDto, BasicLegalEntityTypeDto, BasicSalutationDto, BasicTypeOfTelephoneBasicDto, BasicTypeOfTelephoneEnhancedDto, BasicUnitOfMeasureDto, BotService, CONFIGURATION_SERVICE, CkExtensionUpdateOperationsDto, CkModelCatalogService, CkModelService, CkTypeAttributeService, CkTypeMetaData, CkTypeSelectorService, CommunicationService, DeleteStrategiesDto, DeploymentState, FieldFilterOperatorsDto, GetCkModelByIdDocumentDto, GetCkModelByIdDtoGQL, GetCkRecordAttributesDocumentDto, GetCkRecordAttributesDtoGQL, GetCkTypeAttributesDocumentDto, GetCkTypeAttributesDtoGQL, GetCkTypeAvailableQueryColumnsDocumentDto, GetCkTypeAvailableQueryColumnsDtoGQL, GetCkTypesDocumentDto, GetCkTypesDtoGQL, GetDerivedCkTypesDocumentDto, GetDerivedCkTypesDtoGQL, GetEntitiesByCkTypeDocumentDto, GetEntitiesByCkTypeDtoGQL, GraphDirectionDto, GraphQL, GraphQLCloneIgnoredProperties, GraphQLCommonIgnoredProperties, GraphQlDataSource, HealthService, HealthStatus, IDENTITY_PROVIDER_TYPE_LABELS, IdentityProviderType, IdentityService, ImportStrategyDto, IndustryBasicAlarmPriorityDto, IndustryBasicAlarmSourceTypeDto, IndustryBasicAlarmStateDto, IndustryBasicAlarmTypeDto, IndustryBasicIecDataTypeDto, IndustryBasicMachineCapabilitiesDto, IndustryBasicMachineStateDto, IndustryEnergyDemandResponseMarketDto, IndustryEnergyDemandResponseStatusDto, IndustryEnergyTariffTypeDto, IndustryMaintenanceAggregationTypeDto, IndustryMaintenanceCostCategoryDto, IndustryMaintenanceEnergyBalanceGroupDto, IndustryMaintenanceEnergyBalanceProductDto, IndustryMaintenanceEnergyBalanceUnitDto, IndustryMaintenanceOrderPriorityDto, IndustryMaintenanceOrderStateDto, IndustryMaintenanceOrderTypeDto, IndustryMaintenanceServiceTypeDto, JobManagementService, LevelMetaData, LoggerSeverity, ModelStateDto, MultiplicitiesDto, NavigationFilterModeDto, OctoErrorLink, OctoGraphQLServiceBase, OctoSdkDemoCustomerStatusDto, OctoSdkDemoNetworkOperatorDto, OctoSdkDemoOperatingStatusDto, OctoServiceOptions, OctoServicesModule, PagedGraphResultDto, ProgressValue, ProgressWindowService, QueryModeDto, RtAssociationMetaData, RuntimeEntityDialogDataSource, RuntimeEntitySelectDataSource, SearchFilterTypesDto, SortOrderDto, SortOrdersDto, SystemAggregationTypesDto, SystemCommunicationCommunicationStateDto, SystemCommunicationConfigurationStateDto, SystemCommunicationDeploymentStateDto, SystemCommunicationPipelineExecutionStatusDto, SystemCommunicationPipelineTriggerTypeDto, SystemEnvironmentModesDto, SystemFieldFilterOperatorDto, SystemIdentityTokenExpirationDto, SystemIdentityTokenTypeDto, SystemIdentityTokenUsageDto, SystemMaintenanceLevelsDto, SystemNavigationFilterModesDto, SystemNotificationEventLevelsDto, SystemNotificationEventSourcesDto, SystemNotificationEventStatesDto, SystemNotificationNotificationTypesDto, SystemNotificationRenderingTypesDto, SystemQueryTypesDto, SystemSortOrdersDto, TENANT_ID_PROVIDER, TusUploadService, UpdateTypeDto, result as possibleTypes, provideOctoServices }; export type { AddInConfiguration, AdminPanelConfigurationDto, AggregationDto, AttributeArgumentDto, AttributeItem, AttributeSelectorResult, BasicAddressDto, BasicAddressInputDto, BasicAmountDto, BasicAmountInputDto, BasicAssetAssociationsArgsDto, BasicAssetChildrenArgsDto, BasicAssetConfiguredByArgsDto, BasicAssetConnectionDto, BasicAssetDto, BasicAssetEdgeDto, BasicAssetEventsArgsDto, BasicAssetInputDto, BasicAssetInputUpdateDto, BasicAssetMapsFromArgsDto, BasicAssetMapsToArgsDto, BasicAssetMutationsCreateArgsDto, BasicAssetMutationsDto, BasicAssetMutationsUpdateArgsDto, BasicAssetOrdersArgsDto, BasicAssetParentArgsDto, BasicAssetRelatesFromArgsDto, BasicAssetRelatesToArgsDto, BasicAssetTaggedByArgsDto, BasicAssetUpdateDto, BasicAssetUpdateMessageDto, BasicAsset_EventSourceUnionConnectionDto, BasicAsset_EventSourceUnionDto, BasicAsset_EventSourceUnionEdgeDto, BasicAsset_RelatesFromUnionConnectionDto, BasicAsset_RelatesFromUnionDto, BasicAsset_RelatesFromUnionEdgeDto, BasicBankAccountDto, BasicBankAccountInputDto, BasicCityAssociationsArgsDto, BasicCityChildrenArgsDto, BasicCityConfiguredByArgsDto, BasicCityConnectionDto, BasicCityDto, BasicCityEdgeDto, BasicCityInputDto, BasicCityInputUpdateDto, BasicCityMapsFromArgsDto, BasicCityMapsToArgsDto, BasicCityMutationsCreateArgsDto, BasicCityMutationsDto, BasicCityMutationsUpdateArgsDto, BasicCityOrdersArgsDto, BasicCityParentArgsDto, BasicCityRelatesFromArgsDto, BasicCityRelatesToArgsDto, BasicCityTaggedByArgsDto, BasicCityUpdateDto, BasicCityUpdateMessageDto, BasicContactDto, BasicContactInputDto, BasicCountryAssociationsArgsDto, BasicCountryChildrenArgsDto, BasicCountryConfiguredByArgsDto, BasicCountryConnectionDto, BasicCountryDto, BasicCountryEdgeDto, BasicCountryInputDto, BasicCountryInputUpdateDto, BasicCountryMapsFromArgsDto, BasicCountryMapsToArgsDto, BasicCountryMutationsCreateArgsDto, BasicCountryMutationsDto, BasicCountryMutationsUpdateArgsDto, BasicCountryOrdersArgsDto, BasicCountryParentArgsDto, BasicCountryRelatesFromArgsDto, BasicCountryRelatesToArgsDto, BasicCountryTaggedByArgsDto, BasicCountryUpdateDto, BasicCountryUpdateMessageDto, BasicDistrictAssociationsArgsDto, BasicDistrictChildrenArgsDto, BasicDistrictConfiguredByArgsDto, BasicDistrictConnectionDto, BasicDistrictDto, BasicDistrictEdgeDto, BasicDistrictInputDto, BasicDistrictInputUpdateDto, BasicDistrictMapsFromArgsDto, BasicDistrictMapsToArgsDto, BasicDistrictMutationsCreateArgsDto, BasicDistrictMutationsDto, BasicDistrictMutationsUpdateArgsDto, BasicDistrictOrdersArgsDto, BasicDistrictParentArgsDto, BasicDistrictRelatesFromArgsDto, BasicDistrictRelatesToArgsDto, BasicDistrictTaggedByArgsDto, BasicDistrictUpdateDto, BasicDistrictUpdateMessageDto, BasicDocumentAssociationsArgsDto, BasicDocumentConfiguredByArgsDto, BasicDocumentConnectionDto, BasicDocumentDto, BasicDocumentEdgeDto, BasicDocumentInterfaceConfiguredByArgsDto, BasicDocumentInterfaceDto, BasicDocumentInterfaceMapsFromArgsDto, BasicDocumentInterfaceMapsToArgsDto, BasicDocumentInterfaceRelatesFromArgsDto, BasicDocumentInterfaceRelatesToArgsDto, BasicDocumentInterfaceTaggedByArgsDto, BasicDocumentMapsFromArgsDto, BasicDocumentMapsToArgsDto, BasicDocumentRelatesFromArgsDto, BasicDocumentRelatesToArgsDto, BasicDocumentTaggedByArgsDto, BasicDocumentUpdateDto, BasicDocumentUpdateMessageDto, BasicEMailDto, BasicEMailInputDto, BasicEmployeeAssociationsArgsDto, BasicEmployeeConfiguredByArgsDto, BasicEmployeeConnectionDto, BasicEmployeeDto, BasicEmployeeEdgeDto, BasicEmployeeInputDto, BasicEmployeeInputUpdateDto, BasicEmployeeMapsFromArgsDto, BasicEmployeeMapsToArgsDto, BasicEmployeeMutationsCreateArgsDto, BasicEmployeeMutationsDto, BasicEmployeeMutationsUpdateArgsDto, BasicEmployeeRelatesFromArgsDto, BasicEmployeeRelatesToArgsDto, BasicEmployeeTaggedByArgsDto, BasicEmployeeUpdateDto, BasicEmployeeUpdateMessageDto, BasicFaxNumberDto, BasicFaxNumberInputDto, BasicMarkingDto, BasicMarkingInputDto, BasicNamePlateDto, BasicNamePlateInputDto, BasicNamedEntityAssociationsArgsDto, BasicNamedEntityConfiguredByArgsDto, BasicNamedEntityConnectionDto, BasicNamedEntityDto, BasicNamedEntityEdgeDto, BasicNamedEntityInterfaceConfiguredByArgsDto, BasicNamedEntityInterfaceDto, BasicNamedEntityInterfaceMapsFromArgsDto, BasicNamedEntityInterfaceMapsToArgsDto, BasicNamedEntityInterfaceRelatesFromArgsDto, BasicNamedEntityInterfaceRelatesToArgsDto, BasicNamedEntityInterfaceTaggedByArgsDto, BasicNamedEntityMapsFromArgsDto, BasicNamedEntityMapsToArgsDto, BasicNamedEntityRelatesFromArgsDto, BasicNamedEntityRelatesToArgsDto, BasicNamedEntityTaggedByArgsDto, BasicNamedEntityUpdateDto, BasicNamedEntityUpdateMessageDto, BasicPhoneNumberDto, BasicPhoneNumberInputDto, BasicStateAssociationsArgsDto, BasicStateChildrenArgsDto, BasicStateConfiguredByArgsDto, BasicStateConnectionDto, BasicStateDto, BasicStateEdgeDto, BasicStateInputDto, BasicStateInputUpdateDto, BasicStateMapsFromArgsDto, BasicStateMapsToArgsDto, BasicStateMutationsCreateArgsDto, BasicStateMutationsDto, BasicStateMutationsUpdateArgsDto, BasicStateOrdersArgsDto, BasicStateParentArgsDto, BasicStateRelatesFromArgsDto, BasicStateRelatesToArgsDto, BasicStateTaggedByArgsDto, BasicStateUpdateDto, BasicStateUpdateMessageDto, BasicTimeRangeDto, BasicTimeRangeInputDto, BasicTreeAssociationsArgsDto, BasicTreeChildrenArgsDto, BasicTreeConfiguredByArgsDto, BasicTreeConnectionDto, BasicTreeDto, BasicTreeEdgeDto, BasicTreeInputDto, BasicTreeInputUpdateDto, BasicTreeMapsFromArgsDto, BasicTreeMapsToArgsDto, BasicTreeMutationsCreateArgsDto, BasicTreeMutationsDto, BasicTreeMutationsUpdateArgsDto, BasicTreeNodeAssociationsArgsDto, BasicTreeNodeChildrenArgsDto, BasicTreeNodeConfiguredByArgsDto, BasicTreeNodeConnectionDto, BasicTreeNodeDto, BasicTreeNodeEdgeDto, BasicTreeNodeInputDto, BasicTreeNodeInputUpdateDto, BasicTreeNodeMapsFromArgsDto, BasicTreeNodeMapsToArgsDto, BasicTreeNodeMutationsCreateArgsDto, BasicTreeNodeMutationsDto, BasicTreeNodeMutationsUpdateArgsDto, BasicTreeNodeOrdersArgsDto, BasicTreeNodeParentArgsDto, BasicTreeNodeRelatesFromArgsDto, BasicTreeNodeRelatesToArgsDto, BasicTreeNodeTaggedByArgsDto, BasicTreeNodeUpdateDto, BasicTreeNodeUpdateMessageDto, BasicTreeNode_ChildrenUnionConnectionDto, BasicTreeNode_ChildrenUnionDto, BasicTreeNode_ChildrenUnionEdgeDto, BasicTreeNode_MachineUnionConnectionDto, BasicTreeNode_MachineUnionDto, BasicTreeNode_MachineUnionEdgeDto, BasicTreeNode_ParentUnionConnectionDto, BasicTreeNode_ParentUnionDto, BasicTreeNode_ParentUnionEdgeDto, BasicTreeNode_RelatesToUnionConnectionDto, BasicTreeNode_RelatesToUnionDto, BasicTreeNode_RelatesToUnionEdgeDto, BasicTreeRelatesFromArgsDto, BasicTreeRelatesToArgsDto, BasicTreeTaggedByArgsDto, BasicTreeUpdateDto, BasicTreeUpdateMessageDto, BasicTree_ParentUnionConnectionDto, BasicTree_ParentUnionDto, BasicTree_ParentUnionEdgeDto, BatchDependencyResolutionResponseDto, BatchImportResponseDto, CkAssociationRoleDto, CkAssociationRoleDtoConnectionDto, CkAssociationRoleDtoEdgeDto, CkAssociationRoleIdDto, CkAttributeDto, CkAttributeDtoConnectionDto, CkAttributeDtoEdgeDto, CkAttributeIdDto, CkAttributeMetaDataDto, CkEnumDto, CkEnumDtoConnectionDto, CkEnumDtoEdgeDto, CkEnumIdDto, CkEnumMutationsDto, CkEnumMutationsUpdateValueExtensionsArgsDto, CkEnumUpdateDto, CkEnumValueDto, CkEnumValueInputDto, CkModelAttributesArgsDto, CkModelCatalogDto, CkModelCatalogItemDto, CkModelCatalogListResponseDto, CkModelDto, CkModelDtoConnectionDto, CkModelDtoEdgeDto, CkModelEnumsArgsDto, CkModelIdDto, CkModelLibraryStatusItemDto, CkModelLibraryStatusResponseDto, CkModelRecordsArgsDto, CkModelTypesArgsDto, CkRecordAttributesArgsDto, CkRecordDerivedRecordTypesArgsDto, CkRecordDto, CkRecordDtoConnectionDto, CkRecordDtoEdgeDto, CkRecordIdDto, CkTypeAssociationDirectionDto, CkTypeAssociationDto, CkTypeAssociationSourceDto, CkTypeAttributeDto, CkTypeAttributeDtoConnectionDto, CkTypeAttributeDtoEdgeDto, CkTypeAttributeInfo, CkTypeAttributesArgsDto, CkTypeAvailableQueryColumnsArgsDto, CkTypeDerivedTypesArgsDto, CkTypeDirectAndIndirectDerivedTypesArgsDto, CkTypeDto, CkTypeDtoConnectionDto, CkTypeDtoEdgeDto, CkTypeIdDto, CkTypeQueryColumnDto, CkTypeQueryColumnDtoConnectionDto, CkTypeQueryColumnDtoEdgeDto, CkTypeSelectorItem, CkTypeSelectorResult, ClientDto, ClientScope, ConfigurationDto, ConstructionKitMutationsDto, ConstructionKitMutationsEnumsArgsDto, ConstructionKitQueryAssociationRolesArgsDto, ConstructionKitQueryAttributesArgsDto, ConstructionKitQueryDto, ConstructionKitQueryEnumsArgsDto, ConstructionKitQueryModelsArgsDto, ConstructionKitQueryRecordsArgsDto, ConstructionKitQueryTypesArgsDto, CreateExternalTenantUserMappingDto, CreateGroupDto, DebugMessage, DebugPointDataDto, DebugPointNode, DependencyResolutionItemDto, DependencyResolutionResponseDto, DeploymentResultDto, DiagnosticsModel, EmailDomainGroupRuleDto, EmailDomainGroupRulesResult, Exact, ExportModelResponseDto, ExternalLoginDto, ExternalTenantUserMappingDto, FieldAggregationDto, FieldFilterDto, FieldGroupByAggregationInputDto, GeneratedPasswordDto, GetCkModelByIdQueryDto, GetCkModelByIdQueryVariablesDto, GetCkRecordAttributesQueryDto, GetCkRecordAttributesQueryVariablesDto, GetCkTypeAttributesQueryDto, GetCkTypeAttributesQueryVariablesDto, GetCkTypeAvailableQueryColumnsQueryDto, GetCkTypeAvailableQueryColumnsQueryVariablesDto, GetCkTypesQueryDto, GetCkTypesQueryVariablesDto, GetDerivedCkTypesQueryDto, GetDerivedCkTypesQueryVariablesDto, GetEntitiesByCkTypeQueryDto, GetEntitiesByCkTypeQueryVariablesDto, GlobalQueryOptionsDto, GrantTypes, GroupDto, HealthCheck, HealthCheckResult, IConfigurationService, IQueryVariablesDto, IdentityProviderDto, IdentityProvidersResult, ImportFromCatalogBatchRequestDto, ImportFromCatalogRequestDto, ImportModelResponseDto, Incremental, IndustryBasicAlarmAssociationsArgsDto, IndustryBasicAlarmConfiguredByArgsDto, IndustryBasicAlarmConnectionDto, IndustryBasicAlarmDto, IndustryBasicAlarmEdgeDto, IndustryBasicAlarmEventSourceArgsDto, IndustryBasicAlarmInputDto, IndustryBasicAlarmInputUpdateDto, IndustryBasicAlarmMapsFromArgsDto, IndustryBasicAlarmMapsToArgsDto, IndustryBasicAlarmMutationsCreateArgsDto, IndustryBasicAlarmMutationsDto, IndustryBasicAlarmMutationsUpdateArgsDto, IndustryBasicAlarmOrderArgsDto, IndustryBasicAlarmRelatesFromArgsDto, IndustryBasicAlarmRelatesToArgsDto, IndustryBasicAlarmTaggedByArgsDto, IndustryBasicAlarmUpdateDto, IndustryBasicAlarmUpdateMessageDto, IndustryBasicEventAssociationsArgsDto, IndustryBasicEventConfiguredByArgsDto, IndustryBasicEventConnectionDto, IndustryBasicEventDto, IndustryBasicEventEdgeDto, IndustryBasicEventEventSourceArgsDto, IndustryBasicEventInputDto, IndustryBasicEventInputUpdateDto, IndustryBasicEventMapsFromArgsDto, IndustryBasicEventMapsToArgsDto, IndustryBasicEventMutationsCreateArgsDto, IndustryBasicEventMutationsDto, IndustryBasicEventMutationsUpdateArgsDto, IndustryBasicEventOrderArgsDto, IndustryBasicEventRelatesFromArgsDto, IndustryBasicEventRelatesToArgsDto, IndustryBasicEventTaggedByArgsDto, IndustryBasicEventUpdateDto, IndustryBasicEventUpdateMessageDto, IndustryBasicEvent_EventUnionConnectionDto, IndustryBasicEvent_EventUnionDto, IndustryBasicEvent_EventUnionEdgeDto, IndustryBasicEvent_EventsUnionConnectionDto, IndustryBasicEvent_EventsUnionDto, IndustryBasicEvent_EventsUnionEdgeDto, IndustryBasicMachineAssociationsArgsDto, IndustryBasicMachineChildrenArgsDto, IndustryBasicMachineConfiguredByArgsDto, IndustryBasicMachineConnectionDto, IndustryBasicMachineDto, IndustryBasicMachineEdgeDto, IndustryBasicMachineEventsArgsDto, IndustryBasicMachineInputDto, IndustryBasicMachineInputUpdateDto, IndustryBasicMachineMapsFromArgsDto, IndustryBasicMachineMapsToArgsDto, IndustryBasicMachineMutationsCreateArgsDto, IndustryBasicMachineMutationsDto, IndustryBasicMachineMutationsUpdateArgsDto, IndustryBasicMachineOrdersArgsDto, IndustryBasicMachineParentArgsDto, IndustryBasicMachineRelatesFromArgsDto, IndustryBasicMachineRelatesToArgsDto, IndustryBasicMachineRuntimeVariablesArgsDto, IndustryBasicMachineTaggedByArgsDto, IndustryBasicMachineUpdateDto, IndustryBasicMachineUpdateMessageDto, IndustryBasicMachine_MachineUnionConnectionDto, IndustryBasicMachine_MachineUnionDto, IndustryBasicMachine_MachineUnionEdgeDto, IndustryBasicRuntimeVariableAssociationsArgsDto, IndustryBasicRuntimeVariableConfiguredByArgsDto, IndustryBasicRuntimeVariableConnectionDto, IndustryBasicRuntimeVariableDto, IndustryBasicRuntimeVariableEdgeDto, IndustryBasicRuntimeVariableInputDto, IndustryBasicRuntimeVariableInputUpdateDto, IndustryBasicRuntimeVariableMachineArgsDto, IndustryBasicRuntimeVariableMapsFromArgsDto, IndustryBasicRuntimeVariableMapsToArgsDto, IndustryBasicRuntimeVariableMutationsCreateArgsDto, IndustryBasicRuntimeVariableMutationsDto, IndustryBasicRuntimeVariableMutationsUpdateArgsDto, IndustryBasicRuntimeVariableRelatesFromArgsDto, IndustryBasicRuntimeVariableRelatesToArgsDto, IndustryBasicRuntimeVariableTaggedByArgsDto, IndustryBasicRuntimeVariableUpdateDto, IndustryBasicRuntimeVariableUpdateMessageDto, IndustryBasicRuntimeVariable_RuntimeVariablesUnionConnectionDto, IndustryBasicRuntimeVariable_RuntimeVariablesUnionDto, IndustryBasicRuntimeVariable_RuntimeVariablesUnionEdgeDto, IndustryEnergyDemandResponseEventAssociationsArgsDto, IndustryEnergyDemandResponseEventConfiguredByArgsDto, IndustryEnergyDemandResponseEventConnectionDto, IndustryEnergyDemandResponseEventDto, IndustryEnergyDemandResponseEventEdgeDto, IndustryEnergyDemandResponseEventInputDto, IndustryEnergyDemandResponseEventInputUpdateDto, IndustryEnergyDemandResponseEventMapsFromArgsDto, IndustryEnergyDemandResponseEventMapsToArgsDto, IndustryEnergyDemandResponseEventMutationsCreateArgsDto, IndustryEnergyDemandResponseEventMutationsDto, IndustryEnergyDemandResponseEventMutationsUpdateArgsDto, IndustryEnergyDemandResponseEventParentArgsDto, IndustryEnergyDemandResponseEventRelatesFromArgsDto, IndustryEnergyDemandResponseEventRelatesToArgsDto, IndustryEnergyDemandResponseEventTaggedByArgsDto, IndustryEnergyDemandResponseEventUpdateDto, IndustryEnergyDemandResponseEventUpdateMessageDto, IndustryEnergyEnergyConsumerAssociationsArgsDto, IndustryEnergyEnergyConsumerChildrenArgsDto, IndustryEnergyEnergyConsumerConfiguredByArgsDto, IndustryEnergyEnergyConsumerConnectionDto, IndustryEnergyEnergyConsumerDto, IndustryEnergyEnergyConsumerEdgeDto, IndustryEnergyEnergyConsumerEventsArgsDto, IndustryEnergyEnergyConsumerInputDto, IndustryEnergyEnergyConsumerInputUpdateDto, IndustryEnergyEnergyConsumerMapsFromArgsDto, IndustryEnergyEnergyConsumerMapsToArgsDto, IndustryEnergyEnergyConsumerMutationsCreateArgsDto, IndustryEnergyEnergyConsumerMutationsDto, IndustryEnergyEnergyConsumerMutationsUpdateArgsDto, IndustryEnergyEnergyConsumerOrdersArgsDto, IndustryEnergyEnergyConsumerParentArgsDto, IndustryEnergyEnergyConsumerRelatesFromArgsDto, IndustryEnergyEnergyConsumerRelatesToArgsDto, IndustryEnergyEnergyConsumerRuntimeVariablesArgsDto, IndustryEnergyEnergyConsumerTaggedByArgsDto, IndustryEnergyEnergyConsumerUpdateDto, IndustryEnergyEnergyConsumerUpdateMessageDto, IndustryEnergyEnergyCostAssociationsArgsDto, IndustryEnergyEnergyCostConfiguredByArgsDto, IndustryEnergyEnergyCostConnectionDto, IndustryEnergyEnergyCostDto, IndustryEnergyEnergyCostEdgeDto, IndustryEnergyEnergyCostInputDto, IndustryEnergyEnergyCostInputUpdateDto, IndustryEnergyEnergyCostMapsFromArgsDto, IndustryEnergyEnergyCostMapsToArgsDto, IndustryEnergyEnergyCostMutationsCreateArgsDto, IndustryEnergyEnergyCostMutationsDto, IndustryEnergyEnergyCostMutationsUpdateArgsDto, IndustryEnergyEnergyCostParentArgsDto, IndustryEnergyEnergyCostRelatesFromArgsDto, IndustryEnergyEnergyCostRelatesToArgsDto, IndustryEnergyEnergyCostTaggedByArgsDto, IndustryEnergyEnergyCostUpdateDto, IndustryEnergyEnergyCostUpdateMessageDto, IndustryEnergyEnergyForecastAssociationsArgsDto, IndustryEnergyEnergyForecastConfiguredByArgsDto, IndustryEnergyEnergyForecastConnectionDto, IndustryEnergyEnergyForecastDto, IndustryEnergyEnergyForecastEdgeDto, IndustryEnergyEnergyForecastInputDto, IndustryEnergyEnergyForecastInputUpdateDto, IndustryEnergyEnergyForecastMapsFromArgsDto, IndustryEnergyEnergyForecastMapsToArgsDto, IndustryEnergyEnergyForecastMutationsCreateArgsDto, IndustryEnergyEnergyForecastMutationsDto, IndustryEnergyEnergyForecastMutationsUpdateArgsDto, IndustryEnergyEnergyForecastParentArgsDto, IndustryEnergyEnergyForecastRelatesFromArgsDto, IndustryEnergyEnergyForecastRelatesToArgsDto, IndustryEnergyEnergyForecastTaggedByArgsDto, IndustryEnergyEnergyForecastUpdateDto, IndustryEnergyEnergyForecastUpdateMessageDto, IndustryEnergyEnergyMeterAssociationsArgsDto, IndustryEnergyEnergyMeterChildrenArgsDto, IndustryEnergyEnergyMeterConfiguredByArgsDto, IndustryEnergyEnergyMeterConnectionDto, IndustryEnergyEnergyMeterDto, IndustryEnergyEnergyMeterEdgeDto, IndustryEnergyEnergyMeterEventsArgsDto, IndustryEnergyEnergyMeterInputDto, IndustryEnergyEnergyMeterInputUpdateDto, IndustryEnergyEnergyMeterMapsFromArgsDto, IndustryEnergyEnergyMeterMapsToArgsDto, IndustryEnergyEnergyMeterMutationsCreateArgsDto, IndustryEnergyEnergyMeterMutationsDto, IndustryEnergyEnergyMeterMutationsUpdateArgsDto, IndustryEnergyEnergyMeterOrdersArgsDto, IndustryEnergyEnergyMeterParentArgsDto, IndustryEnergyEnergyMeterRelatesFromArgsDto, IndustryEnergyEnergyMeterRelatesToArgsDto, IndustryEnergyEnergyMeterRuntimeVariablesArgsDto, IndustryEnergyEnergyMeterTaggedByArgsDto, IndustryEnergyEnergyMeterUpdateDto, IndustryEnergyEnergyMeterUpdateMessageDto, IndustryEnergyEnergyPerformanceIndicatorAssociationsArgsDto, IndustryEnergyEnergyPerformanceIndicatorConfiguredByArgsDto, IndustryEnergyEnergyPerformanceIndicatorConnectionDto, IndustryEnergyEnergyPerformanceIndicatorDto, IndustryEnergyEnergyPerformanceIndicatorEdgeDto, IndustryEnergyEnergyPerformanceIndicatorInputDto, IndustryEnergyEnergyPerformanceIndicatorInputUpdateDto, IndustryEnergyEnergyPerformanceIndicatorMapsFromArgsDto, IndustryEnergyEnergyPerformanceIndicatorMapsToArgsDto, IndustryEnergyEnergyPerformanceIndicatorMutationsCreateArgsDto, IndustryEnergyEnergyPerformanceIndicatorMutationsDto, IndustryEnergyEnergyPerformanceIndicatorMutationsUpdateArgsDto, IndustryEnergyEnergyPerformanceIndicatorParentArgsDto, IndustryEnergyEnergyPerformanceIndicatorRelatesFromArgsDto, IndustryEnergyEnergyPerformanceIndicatorRelatesToArgsDto, IndustryEnergyEnergyPerformanceIndicatorTaggedByArgsDto, IndustryEnergyEnergyPerformanceIndicatorUpdateDto, IndustryEnergyEnergyPerformanceIndicatorUpdateMessageDto, IndustryEnergyEnergyStorageAssociationsArgsDto, IndustryEnergyEnergyStorageChildrenArgsDto, IndustryEnergyEnergyStorageConfiguredByArgsDto, IndustryEnergyEnergyStorageConnectionDto, IndustryEnergyEnergyStorageDto, IndustryEnergyEnergyStorageEdgeDto, IndustryEnergyEnergyStorageEventsArgsDto, IndustryEnergyEnergyStorageInputDto, IndustryEnergyEnergyStorageInputUpdateDto, IndustryEnergyEnergyStorageMapsFromArgsDto, IndustryEnergyEnergyStorageMapsToArgsDto, IndustryEnergyEnergyStorageMutationsCreateArgsDto, IndustryEnergyEnergyStorageMutationsDto, IndustryEnergyEnergyStorageMutationsUpdateArgsDto, IndustryEnergyEnergyStorageOrdersArgsDto, IndustryEnergyEnergyStorageParentArgsDto, IndustryEnergyEnergyStorageRelatesFromArgsDto, IndustryEnergyEnergyStorageRelatesToArgsDto, IndustryEnergyEnergyStorageRuntimeVariablesArgsDto, IndustryEnergyEnergyStorageTaggedByArgsDto, IndustryEnergyEnergyStorageUpdateDto, IndustryEnergyEnergyStorageUpdateMessageDto, IndustryEnergyInverterAssociationsArgsDto, IndustryEnergyInverterChildrenArgsDto, IndustryEnergyInverterConfiguredByArgsDto, IndustryEnergyInverterConnectionDto, IndustryEnergyInverterDto, IndustryEnergyInverterEdgeDto, IndustryEnergyInverterEventsArgsDto, IndustryEnergyInverterInputDto, IndustryEnergyInverterInputUpdateDto, IndustryEnergyInverterMapsFromArgsDto, IndustryEnergyInverterMapsToArgsDto, IndustryEnergyInverterMutationsCreateArgsDto, IndustryEnergyInverterMutationsDto, IndustryEnergyInverterMutationsUpdateArgsDto, IndustryEnergyInverterOrdersArgsDto, IndustryEnergyInverterParentArgsDto, IndustryEnergyInverterRelatesFromArgsDto, IndustryEnergyInverterRelatesToArgsDto, IndustryEnergyInverterRuntimeVariablesArgsDto, IndustryEnergyInverterTaggedByArgsDto, IndustryEnergyInverterUpdateDto, IndustryEnergyInverterUpdateMessageDto, IndustryEnergyPhaseInfoDto, IndustryEnergyPhaseInfoInputDto, IndustryEnergyPhotovoltaicSystemAssociationsArgsDto, IndustryEnergyPhotovoltaicSystemChildrenArgsDto, IndustryEnergyPhotovoltaicSystemConfiguredByArgsDto, IndustryEnergyPhotovoltaicSystemConnectionDto, IndustryEnergyPhotovoltaicSystemDto, IndustryEnergyPhotovoltaicSystemEdgeDto, IndustryEnergyPhotovoltaicSystemEventsArgsDto, IndustryEnergyPhotovoltaicSystemInputDto, IndustryEnergyPhotovoltaicSystemInputUpdateDto, IndustryEnergyPhotovoltaicSystemMapsFromArgsDto, IndustryEnergyPhotovoltaicSystemMapsToArgsDto, IndustryEnergyPhotovoltaicSystemModuleAssociationsArgsDto, IndustryEnergyPhotovoltaicSystemModuleChildrenArgsDto, IndustryEnergyPhotovoltaicSystemModuleConfiguredByArgsDto, IndustryEnergyPhotovoltaicSystemModuleConnectionDto, IndustryEnergyPhotovoltaicSystemModuleDto, IndustryEnergyPhotovoltaicSystemModuleEdgeDto, IndustryEnergyPhotovoltaicSystemModuleEventsArgsDto, IndustryEnergyPhotovoltaicSystemModuleInputDto, IndustryEnergyPhotovoltaicSystemModuleInputUpdateDto, IndustryEnergyPhotovoltaicSystemModuleMapsFromArgsDto, IndustryEnergyPhotovoltaicSystemModuleMapsToArgsDto, IndustryEnergyPhotovoltaicSystemModuleMutationsCreateArgsDto, IndustryEnergyPhotovoltaicSystemModuleMutationsDto, IndustryEnergyPhotovoltaicSystemModuleMutationsUpdateArgsDto, IndustryEnergyPhotovoltaicSystemModuleOrdersArgsDto, IndustryEnergyPhotovoltaicSystemModuleParentArgsDto, IndustryEnergyPhotovoltaicSystemModuleRelatesFromArgsDto, IndustryEnergyPhotovoltaicSystemModuleRelatesToArgsDto, IndustryEnergyPhotovoltaicSystemModuleRuntimeVariablesArgsDto, IndustryEnergyPhotovoltaicSystemModuleTaggedByArgsDto, IndustryEnergyPhotovoltaicSystemModuleUpdateDto, IndustryEnergyPhotovoltaicSystemModuleUpdateMessageDto, IndustryEnergyPhotovoltaicSystemMutationsCreateArgsDto, IndustryEnergyPhotovoltaicSystemMutationsDto, IndustryEnergyPhotovoltaicSystemMutationsUpdateArgsDto, IndustryEnergyPhotovoltaicSystemOrdersArgsDto, IndustryEnergyPhotovoltaicSystemParentArgsDto, IndustryEnergyPhotovoltaicSystemRelatesFromArgsDto, IndustryEnergyPhotovoltaicSystemRelatesToArgsDto, IndustryEnergyPhotovoltaicSystemStringAssociationsArgsDto, IndustryEnergyPhotovoltaicSystemStringChildrenArgsDto, IndustryEnergyPhotovoltaicSystemStringConfiguredByArgsDto, IndustryEnergyPhotovoltaicSystemStringConnectionDto, IndustryEnergyPhotovoltaicSystemStringDto, IndustryEnergyPhotovoltaicSystemStringEdgeDto, IndustryEnergyPhotovoltaicSystemStringEventsArgsDto, IndustryEnergyPhotovoltaicSystemStringInputDto, IndustryEnergyPhotovoltaicSystemStringInputUpdateDto, IndustryEnergyPhotovoltaicSystemStringMapsFromArgsDto, IndustryEnergyPhotovoltaicSystemStringMapsToArgsDto, IndustryEnergyPhotovoltaicSystemStringMutationsCreateArgsDto, IndustryEnergyPhotovoltaicSystemStringMutationsDto, IndustryEnergyPhotovoltaicSystemStringMutationsUpdateArgsDto, IndustryEnergyPhotovoltaicSystemStringOrdersArgsDto, IndustryEnergyPhotovoltaicSystemStringParentArgsDto, IndustryEnergyPhotovoltaicSystemStringRelatesFromArgsDto, IndustryEnergyPhotovoltaicSystemStringRelatesToArgsDto, IndustryEnergyPhotovoltaicSystemStringTaggedByArgsDto, IndustryEnergyPhotovoltaicSystemStringUpdateDto, IndustryEnergyPhotovoltaicSystemStringUpdateMessageDto, IndustryEnergyPhotovoltaicSystemTaggedByArgsDto, IndustryEnergyPhotovoltaicSystemUpdateDto, IndustryEnergyPhotovoltaicSystemUpdateMessageDto, IndustryFluidHeatMeterAssociationsArgsDto, IndustryFluidHeatMeterChildrenArgsDto, IndustryFluidHeatMeterConfiguredByArgsDto, IndustryFluidHeatMeterConnectionDto, IndustryFluidHeatMeterDto, IndustryFluidHeatMeterEdgeDto, IndustryFluidHeatMeterEventsArgsDto, IndustryFluidHeatMeterInputDto, IndustryFluidHeatMeterInputUpdateDto, IndustryFluidHeatMeterMapsFromArgsDto, IndustryFluidHeatMeterMapsToArgsDto, IndustryFluidHeatMeterMutationsCreateArgsDto, IndustryFluidHeatMeterMutationsDto, IndustryFluidHeatMeterMutationsUpdateArgsDto, IndustryFluidHeatMeterOrdersArgsDto, IndustryFluidHeatMeterParentArgsDto, IndustryFluidHeatMeterRelatesFromArgsDto, IndustryFluidHeatMeterRelatesToArgsDto, IndustryFluidHeatMeterRuntimeVariablesArgsDto, IndustryFluidHeatMeterTaggedByArgsDto, IndustryFluidHeatMeterUpdateDto, IndustryFluidHeatMeterUpdateMessageDto, IndustryFluidWaterMeterAssociationsArgsDto, IndustryFluidWaterMeterChildrenArgsDto, IndustryFluidWaterMeterConfiguredByArgsDto, IndustryFluidWaterMeterConnectionDto, IndustryFluidWaterMeterDto, IndustryFluidWaterMeterEdgeDto, IndustryFluidWaterMeterEventsArgsDto, IndustryFluidWaterMeterInputDto, IndustryFluidWaterMeterInputUpdateDto, IndustryFluidWaterMeterMapsFromArgsDto, IndustryFluidWaterMeterMapsToArgsDto, IndustryFluidWaterMeterMutationsCreateArgsDto, IndustryFluidWaterMeterMutationsDto, IndustryFluidWaterMeterMutationsUpdateArgsDto, IndustryFluidWaterMeterOrdersArgsDto, IndustryFluidWaterMeterParentArgsDto, IndustryFluidWaterMeterRelatesFromArgsDto, IndustryFluidWaterMeterRelatesToArgsDto, IndustryFluidWaterMeterRuntimeVariablesArgsDto, IndustryFluidWaterMeterTaggedByArgsDto, IndustryFluidWaterMeterUpdateDto, IndustryFluidWaterMeterUpdateMessageDto, IndustryMaintenanceAccountAssociationsArgsDto, IndustryMaintenanceAccountChildrenArgsDto, IndustryMaintenanceAccountConfiguredByArgsDto, IndustryMaintenanceAccountConnectionDto, IndustryMaintenanceAccountDto, IndustryMaintenanceAccountEdgeDto, IndustryMaintenanceAccountInputDto, IndustryMaintenanceAccountInputUpdateDto, IndustryMaintenanceAccountMapsFromArgsDto, IndustryMaintenanceAccountMapsToArgsDto, IndustryMaintenanceAccountMutationsCreateArgsDto, IndustryMaintenanceAccountMutationsDto, IndustryMaintenanceAccountMutationsUpdateArgsDto, IndustryMaintenanceAccountRelatesFromArgsDto, IndustryMaintenanceAccountRelatesToArgsDto, IndustryMaintenanceAccountTaggedByArgsDto, IndustryMaintenanceAccountUpdateDto, IndustryMaintenanceAccountUpdateMessageDto, IndustryMaintenanceAccount_ParentUnionConnectionDto, IndustryMaintenanceAccount_ParentUnionDto, IndustryMaintenanceAccount_ParentUnionEdgeDto, IndustryMaintenanceCostCenterAssociationsArgsDto, IndustryMaintenanceCostCenterChildrenArgsDto, IndustryMaintenanceCostCenterConfiguredByArgsDto, IndustryMaintenanceCostCenterConnectionDto, IndustryMaintenanceCostCenterDto, IndustryMaintenanceCostCenterEdgeDto, IndustryMaintenanceCostCenterEventsArgsDto, IndustryMaintenanceCostCenterInputDto, IndustryMaintenanceCostCenterInputUpdateDto, IndustryMaintenanceCostCenterJournalEntriesArgsDto, IndustryMaintenanceCostCenterMapsFromArgsDto, IndustryMaintenanceCostCenterMapsToArgsDto, IndustryMaintenanceCostCenterMutationsCreateArgsDto, IndustryMaintenanceCostCenterMutationsDto, IndustryMaintenanceCostCenterMutationsUpdateArgsDto, IndustryMaintenanceCostCenterOrdersArgsDto, IndustryMaintenanceCostCenterParentArgsDto, IndustryMaintenanceCostCenterRelatesFromArgsDto, IndustryMaintenanceCostCenterRelatesToArgsDto, IndustryMaintenanceCostCenterTaggedByArgsDto, IndustryMaintenanceCostCenterUpdateDto, IndustryMaintenanceCostCenterUpdateMessageDto, IndustryMaintenanceCostCenter_CostCenterUnionConnectionDto, IndustryMaintenanceCostCenter_CostCenterUnionDto, IndustryMaintenanceCostCenter_CostCenterUnionEdgeDto, IndustryMaintenanceEmployeeAssociationsArgsDto, IndustryMaintenanceEmployeeChildrenArgsDto, IndustryMaintenanceEmployeeConfiguredByArgsDto, IndustryMaintenanceEmployeeConnectionDto, IndustryMaintenanceEmployeeDto, IndustryMaintenanceEmployeeEdgeDto, IndustryMaintenanceEmployeeEventsArgsDto, IndustryMaintenanceEmployeeInputDto, IndustryMaintenanceEmployeeInputUpdateDto, IndustryMaintenanceEmployeeMapsFromArgsDto, IndustryMaintenanceEmployeeMapsToArgsDto, IndustryMaintenanceEmployeeMutationsCreateArgsDto, IndustryMaintenanceEmployeeMutationsDto, IndustryMaintenanceEmployeeMutationsUpdateArgsDto, IndustryMaintenanceEmployeeOrderFeedbacksArgsDto, IndustryMaintenanceEmployeeOrdersArgsDto, IndustryMaintenanceEmployeeParentArgsDto, IndustryMaintenanceEmployeeRelatesFromArgsDto, IndustryMaintenanceEmployeeRelatesToArgsDto, IndustryMaintenanceEmployeeTaggedByArgsDto, IndustryMaintenanceEmployeeUpdateDto, IndustryMaintenanceEmployeeUpdateMessageDto, IndustryMaintenanceEmployee_EmployeeUnionConnectionDto, IndustryMaintenanceEmployee_EmployeeUnionDto, IndustryMaintenanceEmployee_EmployeeUnionEdgeDto, IndustryMaintenanceEnergyBalanceAssociationsArgsDto, IndustryMaintenanceEnergyBalanceConfiguredByArgsDto, IndustryMaintenanceEnergyBalanceConnectionDto, IndustryMaintenanceEnergyBalanceDto, IndustryMaintenanceEnergyBalanceEdgeDto, IndustryMaintenanceEnergyBalanceInputDto, IndustryMaintenanceEnergyBalanceInputUpdateDto, IndustryMaintenanceEnergyBalanceMachineArgsDto, IndustryMaintenanceEnergyBalanceMapsFromArgsDto, IndustryMaintenanceEnergyBalanceMapsToArgsDto, IndustryMaintenanceEnergyBalanceMutationsCreateArgsDto, IndustryMaintenanceEnergyBalanceMutationsDto, IndustryMaintenanceEnergyBalanceMutationsUpdateArgsDto, IndustryMaintenanceEnergyBalanceRelatesFromArgsDto, IndustryMaintenanceEnergyBalanceRelatesToArgsDto, IndustryMaintenanceEnergyBalanceTaggedByArgsDto, IndustryMaintenanceEnergyBalanceUpdateDto, IndustryMaintenanceEnergyBalanceUpdateMessageDto, IndustryMaintenanceEnergyBalance_OrdersUnionConnectionDto, IndustryMaintenanceEnergyBalance_OrdersUnionDto, IndustryMaintenanceEnergyBalance_OrdersUnionEdgeDto, IndustryMaintenanceJournalEntryAssociationsArgsDto, IndustryMaintenanceJournalEntryConfiguredByArgsDto, IndustryMaintenanceJournalEntryConnectionDto, IndustryMaintenanceJournalEntryCostCenterArgsDto, IndustryMaintenanceJournalEntryDto, IndustryMaintenanceJournalEntryEdgeDto, IndustryMaintenanceJournalEntryInputDto, IndustryMaintenanceJournalEntryInputUpdateDto, IndustryMaintenanceJournalEntryMapsFromArgsDto, IndustryMaintenanceJournalEntryMapsToArgsDto, IndustryMaintenanceJournalEntryMutationsCreateArgsDto, IndustryMaintenanceJournalEntryMutationsDto, IndustryMaintenanceJournalEntryMutationsUpdateArgsDto, IndustryMaintenanceJournalEntryParentArgsDto, IndustryMaintenanceJournalEntryRelatesFromArgsDto, IndustryMaintenanceJournalEntryRelatesToArgsDto, IndustryMaintenanceJournalEntryTaggedByArgsDto, IndustryMaintenanceJournalEntryUpdateDto, IndustryMaintenanceJournalEntryUpdateMessageDto, IndustryMaintenanceJournalEntry_ChildrenUnionConnectionDto, IndustryMaintenanceJournalEntry_ChildrenUnionDto, IndustryMaintenanceJournalEntry_ChildrenUnionEdgeDto, IndustryMaintenanceJournalEntry_JournalEntriesUnionConnectionDto, IndustryMaintenanceJournalEntry_JournalEntriesUnionDto, IndustryMaintenanceJournalEntry_JournalEntriesUnionEdgeDto, IndustryMaintenanceOrderAssociationsArgsDto, IndustryMaintenanceOrderChildrenArgsDto, IndustryMaintenanceOrderConfiguredByArgsDto, IndustryMaintenanceOrderConnectionDto, IndustryMaintenanceOrderCostsArgsDto, IndustryMaintenanceOrderCostsAssociationsArgsDto, IndustryMaintenanceOrderCostsConfiguredByArgsDto, IndustryMaintenanceOrderCostsConnectionDto, IndustryMaintenanceOrderCostsDto, IndustryMaintenanceOrderCostsEdgeDto, IndustryMaintenanceOrderCostsInputDto, IndustryMaintenanceOrderCostsInputUpdateDto, IndustryMaintenanceOrderCostsMapsFromArgsDto, IndustryMaintenanceOrderCostsMapsToArgsDto, IndustryMaintenanceOrderCostsMutationsCreateArgsDto, IndustryMaintenanceOrderCostsMutationsDto, IndustryMaintenanceOrderCostsMutationsUpdateArgsDto, IndustryMaintenanceOrderCostsOrderArgsDto, IndustryMaintenanceOrderCostsRelatesFromArgsDto, IndustryMaintenanceOrderCostsRelatesToArgsDto, IndustryMaintenanceOrderCostsTaggedByArgsDto, IndustryMaintenanceOrderCostsUpdateDto, IndustryMaintenanceOrderCostsUpdateMessageDto, IndustryMaintenanceOrderCosts_CostsUnionConnectionDto, IndustryMaintenanceOrderCosts_CostsUnionDto, IndustryMaintenanceOrderCosts_CostsUnionEdgeDto, IndustryMaintenanceOrderDto, IndustryMaintenanceOrderEdgeDto, IndustryMaintenanceOrderEventArgsDto, IndustryMaintenanceOrderFeedbackAssociationsArgsDto, IndustryMaintenanceOrderFeedbackConfiguredByArgsDto, IndustryMaintenanceOrderFeedbackConnectionDto, IndustryMaintenanceOrderFeedbackDto, IndustryMaintenanceOrderFeedbackEdgeDto, IndustryMaintenanceOrderFeedbackEmployeeArgsDto, IndustryMaintenanceOrderFeedbackInputDto, IndustryMaintenanceOrderFeedbackInputUpdateDto, IndustryMaintenanceOrderFeedbackMapsFromArgsDto, IndustryMaintenanceOrderFeedbackMapsToArgsDto, IndustryMaintenanceOrderFeedbackMutationsCreateArgsDto, IndustryMaintenanceOrderFeedbackMutationsDto, IndustryMaintenanceOrderFeedbackMutationsUpdateArgsDto, IndustryMaintenanceOrderFeedbackParentArgsDto, IndustryMaintenanceOrderFeedbackRelatesFromArgsDto, IndustryMaintenanceOrderFeedbackRelatesToArgsDto, IndustryMaintenanceOrderFeedbackTaggedByArgsDto, IndustryMaintenanceOrderFeedbackUpdateDto, IndustryMaintenanceOrderFeedbackUpdateMessageDto, IndustryMaintenanceOrderFeedback_ChildrenUnionConnectionDto, IndustryMaintenanceOrderFeedback_ChildrenUnionDto, IndustryMaintenanceOrderFeedback_ChildrenUnionEdgeDto, IndustryMaintenanceOrderFeedback_OrderFeedbacksUnionConnectionDto, IndustryMaintenanceOrderFeedback_OrderFeedbacksUnionDto, IndustryMaintenanceOrderFeedback_OrderFeedbacksUnionEdgeDto, IndustryMaintenanceOrderInputDto, IndustryMaintenanceOrderInputUpdateDto, IndustryMaintenanceOrderMachineArgsDto, IndustryMaintenanceOrderMapsFromArgsDto, IndustryMaintenanceOrderMapsToArgsDto, IndustryMaintenanceOrderMutationsCreateArgsDto, IndustryMaintenanceOrderMutationsDto, IndustryMaintenanceOrderMutationsUpdateArgsDto, IndustryMaintenanceOrderRelatesFromArgsDto, IndustryMaintenanceOrderRelatesToArgsDto, IndustryMaintenanceOrderTaggedByArgsDto, IndustryMaintenanceOrderUpdateDto, IndustryMaintenanceOrderUpdateMessageDto, IndustryMaintenanceOrder_OrderUnionConnectionDto, IndustryMaintenanceOrder_OrderUnionDto, IndustryMaintenanceOrder_OrderUnionEdgeDto, IndustryMaintenanceOrder_OrdersUnionConnectionDto, IndustryMaintenanceOrder_OrdersUnionDto, IndustryMaintenanceOrder_OrdersUnionEdgeDto, IndustryMaintenanceOrder_ParentUnionConnectionDto, IndustryMaintenanceOrder_ParentUnionDto, IndustryMaintenanceOrder_ParentUnionEdgeDto, IndustryMaintenanceWorkplaceAssociationsArgsDto, IndustryMaintenanceWorkplaceChildrenArgsDto, IndustryMaintenanceWorkplaceConfiguredByArgsDto, IndustryMaintenanceWorkplaceConnectionDto, IndustryMaintenanceWorkplaceDto, IndustryMaintenanceWorkplaceEdgeDto, IndustryMaintenanceWorkplaceEventsArgsDto, IndustryMaintenanceWorkplaceInputDto, IndustryMaintenanceWorkplaceInputUpdateDto, IndustryMaintenanceWorkplaceMapsFromArgsDto, IndustryMaintenanceWorkplaceMapsToArgsDto, IndustryMaintenanceWorkplaceMutationsCreateArgsDto, IndustryMaintenanceWorkplaceMutationsDto, IndustryMaintenanceWorkplaceMutationsUpdateArgsDto, IndustryMaintenanceWorkplaceOrdersArgsDto, IndustryMaintenanceWorkplaceParentArgsDto, IndustryMaintenanceWorkplaceRelatesFromArgsDto, IndustryMaintenanceWorkplaceRelatesToArgsDto, IndustryMaintenanceWorkplaceTaggedByArgsDto, IndustryMaintenanceWorkplaceUpdateDto, IndustryMaintenanceWorkplaceUpdateMessageDto, InputMaybe, JobDto, JobResponseDto, LargeBinaryInfoDto, MakeEmpty, MakeMaybe, MakeOptional, Maybe, MergeUsersRequestDto, MigrationHistoryEntryDto, MigrationHistoryResponseDto, NearGeospatialFilterDto, NodeDescriptorDto, OctoMutationDto, OctoQueryDto, OctoSdkDemoCustomerAssociationsArgsDto, OctoSdkDemoCustomerConfiguredByArgsDto, OctoSdkDemoCustomerConnectionDto, OctoSdkDemoCustomerDto, OctoSdkDemoCustomerEdgeDto, OctoSdkDemoCustomerInputDto, OctoSdkDemoCustomerInputUpdateDto, OctoSdkDemoCustomerMapsFromArgsDto, OctoSdkDemoCustomerMapsToArgsDto, OctoSdkDemoCustomerMutationsCreateArgsDto, OctoSdkDemoCustomerMutationsDto, OctoSdkDemoCustomerMutationsUpdateArgsDto, OctoSdkDemoCustomerNoteDto, OctoSdkDemoCustomerNoteInputDto, OctoSdkDemoCustomerOwnsArgsDto, OctoSdkDemoCustomerRelatesFromArgsDto, OctoSdkDemoCustomerRelatesToArgsDto, OctoSdkDemoCustomerTaggedByArgsDto, OctoSdkDemoCustomerUpdateDto, OctoSdkDemoCustomerUpdateMessageDto, OctoSdkDemoCustomer_OwnedByUnionConnectionDto, OctoSdkDemoCustomer_OwnedByUnionDto, OctoSdkDemoCustomer_OwnedByUnionEdgeDto, OctoSdkDemoMeteringPointAssociationsArgsDto, OctoSdkDemoMeteringPointChildrenArgsDto, OctoSdkDemoMeteringPointConfiguredByArgsDto, OctoSdkDemoMeteringPointConnectionDto, OctoSdkDemoMeteringPointDto, OctoSdkDemoMeteringPointEdgeDto, OctoSdkDemoMeteringPointEventsArgsDto, OctoSdkDemoMeteringPointInputDto, OctoSdkDemoMeteringPointInputUpdateDto, OctoSdkDemoMeteringPointMapsFromArgsDto, OctoSdkDemoMeteringPointMapsToArgsDto, OctoSdkDemoMeteringPointMutationsCreateArgsDto, OctoSdkDemoMeteringPointMutationsDto, OctoSdkDemoMeteringPointMutationsUpdateArgsDto, OctoSdkDemoMeteringPointOrdersArgsDto, OctoSdkDemoMeteringPointParentArgsDto, OctoSdkDemoMeteringPointRelatesFromArgsDto, OctoSdkDemoMeteringPointRelatesToArgsDto, OctoSdkDemoMeteringPointTaggedByArgsDto, OctoSdkDemoMeteringPointUpdateDto, OctoSdkDemoMeteringPointUpdateMessageDto, OctoSdkDemoOperatingFacilityAssociationsArgsDto, OctoSdkDemoOperatingFacilityChildrenArgsDto, OctoSdkDemoOperatingFacilityConfiguredByArgsDto, OctoSdkDemoOperatingFacilityConnectionDto, OctoSdkDemoOperatingFacilityDto, OctoSdkDemoOperatingFacilityEdgeDto, OctoSdkDemoOperatingFacilityInputDto, OctoSdkDemoOperatingFacilityInputUpdateDto, OctoSdkDemoOperatingFacilityMapsFromArgsDto, OctoSdkDemoOperatingFacilityMapsToArgsDto, OctoSdkDemoOperatingFacilityMutationsCreateArgsDto, OctoSdkDemoOperatingFacilityMutationsDto, OctoSdkDemoOperatingFacilityMutationsUpdateArgsDto, OctoSdkDemoOperatingFacilityOrdersArgsDto, OctoSdkDemoOperatingFacilityOwnedByArgsDto, OctoSdkDemoOperatingFacilityParentArgsDto, OctoSdkDemoOperatingFacilityRelatesFromArgsDto, OctoSdkDemoOperatingFacilityRelatesToArgsDto, OctoSdkDemoOperatingFacilityTaggedByArgsDto, OctoSdkDemoOperatingFacilityUpdateDto, OctoSdkDemoOperatingFacilityUpdateMessageDto, OctoSdkDemoOperatingFacility_OwnsUnionConnectionDto, OctoSdkDemoOperatingFacility_OwnsUnionDto, OctoSdkDemoOperatingFacility_OwnsUnionEdgeDto, OctoSubscriptionsBasicAssetEventsArgsDto, OctoSubscriptionsBasicCityEventsArgsDto, OctoSubscriptionsBasicCountryEventsArgsDto, OctoSubscriptionsBasicDistrictEventsArgsDto, OctoSubscriptionsBasicDocumentEventsArgsDto, OctoSubscriptionsBasicEmployeeEventsArgsDto, OctoSubscriptionsBasicNamedEntityEventsArgsDto, OctoSubscriptionsBasicStateEventsArgsDto, OctoSubscriptionsBasicTreeEventsArgsDto, OctoSubscriptionsBasicTreeNodeEventsArgsDto, OctoSubscriptionsDto, OctoSubscriptionsIndustryBasicAlarmEventsArgsDto, OctoSubscriptionsIndustryBasicEventEventsArgsDto, OctoSubscriptionsIndustryBasicMachineEventsArgsDto, OctoSubscriptionsIndustryBasicRuntimeVariableEventsArgsDto, OctoSubscriptionsIndustryEnergyDemandResponseEventEventsArgsDto, OctoSubscriptionsIndustryEnergyEnergyConsumerEventsArgsDto, OctoSubscriptionsIndustryEnergyEnergyCostEventsArgsDto, OctoSubscriptionsIndustryEnergyEnergyForecastEventsArgsDto, OctoSubscriptionsIndustryEnergyEnergyMeterEventsArgsDto, OctoSubscriptionsIndustryEnergyEnergyPerformanceIndicatorEventsArgsDto, OctoSubscriptionsIndustryEnergyEnergyStorageEventsArgsDto, OctoSubscriptionsIndustryEnergyInverterEventsArgsDto, OctoSubscriptionsIndustryEnergyPhotovoltaicSystemEventsArgsDto, OctoSubscriptionsIndustryEnergyPhotovoltaicSystemModuleEventsArgsDto, OctoSubscriptionsIndustryEnergyPhotovoltaicSystemStringEventsArgsDto, OctoSubscriptionsIndustryFluidHeatMeterEventsArgsDto, OctoSubscriptionsIndustryFluidWaterMeterEventsArgsDto, OctoSubscriptionsIndustryMaintenanceAccountEventsArgsDto, OctoSubscriptionsIndustryMaintenanceCostCenterEventsArgsDto, OctoSubscriptionsIndustryMaintenanceEmployeeEventsArgsDto, OctoSubscriptionsIndustryMaintenanceEnergyBalanceEventsArgsDto, OctoSubscriptionsIndustryMaintenanceJournalEntryEventsArgsDto, OctoSubscriptionsIndustryMaintenanceOrderCostsEventsArgsDto, OctoSubscriptionsIndustryMaintenanceOrderEventsArgsDto, OctoSubscriptionsIndustryMaintenanceOrderFeedbackEventsArgsDto, OctoSubscriptionsIndustryMaintenanceWorkplaceEventsArgsDto, OctoSubscriptionsOctoSdkDemoCustomerEventsArgsDto, OctoSubscriptionsOctoSdkDemoMeteringPointEventsArgsDto, OctoSubscriptionsOctoSdkDemoOperatingFacilityEventsArgsDto, OctoSubscriptionsSystemAggregationRtQueryEventsArgsDto, OctoSubscriptionsSystemAggregationSdQueryEventsArgsDto, OctoSubscriptionsSystemAutoIncrementEventsArgsDto, OctoSubscriptionsSystemBotAttributeAggregateConfigurationEventsArgsDto, OctoSubscriptionsSystemBotFixupEventsArgsDto, OctoSubscriptionsSystemCommunicationAdapterEventsArgsDto, OctoSubscriptionsSystemCommunicationAiConfigurationEventsArgsDto, OctoSubscriptionsSystemCommunicationDataFlowEventsArgsDto, OctoSubscriptionsSystemCommunicationDataPointMappingEventsArgsDto, OctoSubscriptionsSystemCommunicationDeployableEntityEventsArgsDto, OctoSubscriptionsSystemCommunicationDiscordConfigurationEventsArgsDto, OctoSubscriptionsSystemCommunicationEMailReceiverConfigurationEventsArgsDto, OctoSubscriptionsSystemCommunicationEMailSenderConfigurationEventsArgsDto, OctoSubscriptionsSystemCommunicationEdaConfigurationEventsArgsDto, OctoSubscriptionsSystemCommunicationEnergyCommunityConfigurationEventsArgsDto, OctoSubscriptionsSystemCommunicationFinApiConfigurationEventsArgsDto, OctoSubscriptionsSystemCommunicationGrafanaConfigurationEventsArgsDto, OctoSubscriptionsSystemCommunicationLoxoneConfigurationEventsArgsDto, OctoSubscriptionsSystemCommunicationMicrosoftGraphConfigurationEventsArgsDto, OctoSubscriptionsSystemCommunicationPipelineEventsArgsDto, OctoSubscriptionsSystemCommunicationPipelineExecutionEventsArgsDto, OctoSubscriptionsSystemCommunicationPipelineStatisticsEventsArgsDto, OctoSubscriptionsSystemCommunicationPipelineTriggerEventsArgsDto, OctoSubscriptionsSystemCommunicationPoolEventsArgsDto, OctoSubscriptionsSystemCommunicationSapConfigurationEventsArgsDto, OctoSubscriptionsSystemCommunicationServiceAccountConfigurationEventsArgsDto, OctoSubscriptionsSystemCommunicationSftpConfigurationEventsArgsDto, OctoSubscriptionsSystemCommunicationTagEventsArgsDto, OctoSubscriptionsSystemConfigurationEventsArgsDto, OctoSubscriptionsSystemDownsamplingSdQueryEventsArgsDto, OctoSubscriptionsSystemEntityEventsArgsDto, OctoSubscriptionsSystemGroupingAggregationRtQueryEventsArgsDto, OctoSubscriptionsSystemGroupingAggregationSdQueryEventsArgsDto, OctoSubscriptionsSystemIdentityApiResourceEventsArgsDto, OctoSubscriptionsSystemIdentityApiScopeEventsArgsDto, OctoSubscriptionsSystemIdentityAzureEntraIdIdentityProviderEventsArgsDto, OctoSubscriptionsSystemIdentityClientEventsArgsDto, OctoSubscriptionsSystemIdentityEmailDomainGroupRuleEventsArgsDto, OctoSubscriptionsSystemIdentityExternalTenantUserMappingEventsArgsDto, OctoSubscriptionsSystemIdentityFacebookIdentityProviderEventsArgsDto, OctoSubscriptionsSystemIdentityGoogleIdentityProviderEventsArgsDto, OctoSubscriptionsSystemIdentityGroupEventsArgsDto, OctoSubscriptionsSystemIdentityIdentityProviderEventsArgsDto, OctoSubscriptionsSystemIdentityIdentityResourceEventsArgsDto, OctoSubscriptionsSystemIdentityMailNotificationConfigurationEventsArgsDto, OctoSubscriptionsSystemIdentityMicrosoftAdIdentityProviderEventsArgsDto, OctoSubscriptionsSystemIdentityMicrosoftIdentityProviderEventsArgsDto, OctoSubscriptionsSystemIdentityOctoTenantIdentityProviderEventsArgsDto, OctoSubscriptionsSystemIdentityOpenLdapIdentityProviderEventsArgsDto, OctoSubscriptionsSystemIdentityPermissionEventsArgsDto, OctoSubscriptionsSystemIdentityPermissionRoleEventsArgsDto, OctoSubscriptionsSystemIdentityPersistedGrantEventsArgsDto, OctoSubscriptionsSystemIdentityResourceEventsArgsDto, OctoSubscriptionsSystemIdentityRoleEventsArgsDto, OctoSubscriptionsSystemIdentityUserEventsArgsDto, OctoSubscriptionsSystemMigrationHistoryEventsArgsDto, OctoSubscriptionsSystemNotificationCssTemplateConfigurationEventsArgsDto, OctoSubscriptionsSystemNotificationEventEventsArgsDto, OctoSubscriptionsSystemNotificationNotificationTemplateEventsArgsDto, OctoSubscriptionsSystemNotificationStatefulEventEventsArgsDto, OctoSubscriptionsSystemPersistentQueryEventsArgsDto, OctoSubscriptionsSystemReportingConnectionInfoEventsArgsDto, OctoSubscriptionsSystemReportingFileSystemContainerEventsArgsDto, OctoSubscriptionsSystemReportingFileSystemEntityEventsArgsDto, OctoSubscriptionsSystemReportingFileSystemItemEventsArgsDto, OctoSubscriptionsSystemReportingFolderEventsArgsDto, OctoSubscriptionsSystemReportingFolderRootEventsArgsDto, OctoSubscriptionsSystemSimpleRtQueryEventsArgsDto, OctoSubscriptionsSystemSimpleSdQueryEventsArgsDto, OctoSubscriptionsSystemStreamDataQueryEventsArgsDto, OctoSubscriptionsSystemTenantConfigurationEventsArgsDto, OctoSubscriptionsSystemTenantEventsArgsDto, OctoSubscriptionsSystemTenantModeConfigurationEventsArgsDto, OctoSubscriptionsSystemUiBrandingEventsArgsDto, OctoSubscriptionsSystemUiDashboardEventsArgsDto, OctoSubscriptionsSystemUiDashboardWidgetEventsArgsDto, OctoSubscriptionsSystemUiProcessDiagramEventsArgsDto, OctoSubscriptionsSystemUiSymbolDefinitionEventsArgsDto, OctoSubscriptionsSystemUiSymbolLibraryEventsArgsDto, OctoSubscriptionsSystemUiuiElementEventsArgsDto, PageInfoDto, PipelineExecutionDataDto, PipelineNodePropertiesDto, PointInputDto, PositionInputDto, ProgressDialogRef, ProgressWindowOptions, QueryAggregationResultConnectionDto, QueryAggregationResultDto, QueryAggregationResultEdgeDto, RegisterUserDto, ResultAggregationInputDto, RoleDto, RtAggregationQueryRowCellsArgsDto, RtAggregationQueryRowDto, RtAssociationAttributesArgsDto, RtAssociationDto, RtAssociationDtoConnectionDto, RtAssociationDtoEdgeDto, RtAssociationInputDto, RtEntityAssociationInputDto, RtEntityAttributeDto, RtEntityAttributeDtoConnectionDto, RtEntityAttributeDtoEdgeDto, RtEntityAttributeInputDto, RtEntityAttributesArgsDto, RtEntityDto, RtEntityGenericAssociationDefinitionsArgsDto, RtEntityGenericAssociationDto, RtEntityGenericAssociationTargetsArgsDto, RtEntityGenericDtoConnectionDto, RtEntityGenericDtoEdgeDto, RtEntityIdDto, RtEntityInputDto, RtEntityMutationsCreateArgsDto, RtEntityMutationsDeleteArgsDto, RtEntityMutationsDto, RtEntityMutationsUpdateArgsDto, RtEntityUpdateDto, RtGroupingAggregationQueryRowCellsArgsDto, RtGroupingAggregationQueryRowDto, RtQueryAggregationsArgsDto, RtQueryCellDto, RtQueryCellDtoConnectionDto, RtQueryCellDtoEdgeDto, RtQueryCellInputDto, RtQueryColumnDto, RtQueryColumnInputDto, RtQueryDto, RtQueryDtoConnectionDto, RtQueryDtoEdgeDto, RtQueryMutationsCreateArgsDto, RtQueryMutationsDeleteArgsDto, RtQueryMutationsDto, RtQueryMutationsUpdateArgsDto, RtQueryRowCellsArgsDto, RtQueryRowDto, RtQueryRowDtoConnectionDto, RtQueryRowDtoEdgeDto, RtQueryRowInputDto, RtQueryRowUpdateDto, RtQueryRowsArgsDto, RtSimpleQueryRowCellsArgsDto, RtSimpleQueryRowDto, RtTransientAggregationArgsDto, RtTransientDto, RtTransientGroupingAggregationArgsDto, RtTransientQueryAggregationsArgsDto, RtTransientQueryDto, RtTransientQueryDtoConnectionDto, RtTransientQueryDtoEdgeDto, RtTransientQueryRowsArgsDto, RtTransientSimpleArgsDto, RuntimeDto, RuntimeEntityItem, RuntimeModelQueryBasicAssetArgsDto, RuntimeModelQueryBasicCityArgsDto, RuntimeModelQueryBasicCountryArgsDto, RuntimeModelQueryBasicDistrictArgsDto, RuntimeModelQueryBasicDocumentArgsDto, RuntimeModelQueryBasicEmployeeArgsDto, RuntimeModelQueryBasicNamedEntityArgsDto, RuntimeModelQueryBasicStateArgsDto, RuntimeModelQueryBasicTreeArgsDto, RuntimeModelQueryBasicTreeNodeArgsDto, RuntimeModelQueryDto, RuntimeModelQueryIndustryBasicAlarmArgsDto, RuntimeModelQueryIndustryBasicEventArgsDto, RuntimeModelQueryIndustryBasicMachineArgsDto, RuntimeModelQueryIndustryBasicRuntimeVariableArgsDto, RuntimeModelQueryIndustryEnergyDemandResponseEventArgsDto, RuntimeModelQueryIndustryEnergyEnergyConsumerArgsDto, RuntimeModelQueryIndustryEnergyEnergyCostArgsDto, RuntimeModelQueryIndustryEnergyEnergyForecastArgsDto, RuntimeModelQueryIndustryEnergyEnergyMeterArgsDto, RuntimeModelQueryIndustryEnergyEnergyPerformanceIndicatorArgsDto, RuntimeModelQueryIndustryEnergyEnergyStorageArgsDto, RuntimeModelQueryIndustryEnergyInverterArgsDto, RuntimeModelQueryIndustryEnergyPhotovoltaicSystemArgsDto, RuntimeModelQueryIndustryEnergyPhotovoltaicSystemModuleArgsDto, RuntimeModelQueryIndustryEnergyPhotovoltaicSystemStringArgsDto, RuntimeModelQueryIndustryFluidHeatMeterArgsDto, RuntimeModelQueryIndustryFluidWaterMeterArgsDto, RuntimeModelQueryIndustryMaintenanceAccountArgsDto, RuntimeModelQueryIndustryMaintenanceCostCenterArgsDto, RuntimeModelQueryIndustryMaintenanceEmployeeArgsDto, RuntimeModelQueryIndustryMaintenanceEnergyBalanceArgsDto, RuntimeModelQueryIndustryMaintenanceJournalEntryArgsDto, RuntimeModelQueryIndustryMaintenanceOrderArgsDto, RuntimeModelQueryIndustryMaintenanceOrderCostsArgsDto, RuntimeModelQueryIndustryMaintenanceOrderFeedbackArgsDto, RuntimeModelQueryIndustryMaintenanceWorkplaceArgsDto, RuntimeModelQueryOctoSdkDemoCustomerArgsDto, RuntimeModelQueryOctoSdkDemoMeteringPointArgsDto, RuntimeModelQueryOctoSdkDemoOperatingFacilityArgsDto, RuntimeModelQueryRuntimeEntitiesArgsDto, RuntimeModelQueryRuntimeQueryArgsDto, RuntimeModelQuerySystemAggregationRtQueryArgsDto, RuntimeModelQuerySystemAggregationSdQueryArgsDto, RuntimeModelQuerySystemAutoIncrementArgsDto, RuntimeModelQuerySystemBotAttributeAggregateConfigurationArgsDto, RuntimeModelQuerySystemBotFixupArgsDto, RuntimeModelQuerySystemCommunicationAdapterArgsDto, RuntimeModelQuerySystemCommunicationAiConfigurationArgsDto, RuntimeModelQuerySystemCommunicationDataFlowArgsDto, RuntimeModelQuerySystemCommunicationDataPointMappingArgsDto, RuntimeModelQuerySystemCommunicationDeployableEntityArgsDto, RuntimeModelQuerySystemCommunicationDiscordConfigurationArgsDto, RuntimeModelQuerySystemCommunicationEMailReceiverConfigurationArgsDto, RuntimeModelQuerySystemCommunicationEMailSenderConfigurationArgsDto, RuntimeModelQuerySystemCommunicationEdaConfigurationArgsDto, RuntimeModelQuerySystemCommunicationEnergyCommunityConfigurationArgsDto, RuntimeModelQuerySystemCommunicationFinApiConfigurationArgsDto, RuntimeModelQuerySystemCommunicationGrafanaConfigurationArgsDto, RuntimeModelQuerySystemCommunicationLoxoneConfigurationArgsDto, RuntimeModelQuerySystemCommunicationMicrosoftGraphConfigurationArgsDto, RuntimeModelQuerySystemCommunicationPipelineArgsDto, RuntimeModelQuerySystemCommunicationPipelineExecutionArgsDto, RuntimeModelQuerySystemCommunicationPipelineStatisticsArgsDto, RuntimeModelQuerySystemCommunicationPipelineTriggerArgsDto, RuntimeModelQuerySystemCommunicationPoolArgsDto, RuntimeModelQuerySystemCommunicationSapConfigurationArgsDto, RuntimeModelQuerySystemCommunicationServiceAccountConfigurationArgsDto, RuntimeModelQuerySystemCommunicationSftpConfigurationArgsDto, RuntimeModelQuerySystemCommunicationTagArgsDto, RuntimeModelQuerySystemConfigurationArgsDto, RuntimeModelQuerySystemDownsamplingSdQueryArgsDto, RuntimeModelQuerySystemEntityArgsDto, RuntimeModelQuerySystemGroupingAggregationRtQueryArgsDto, RuntimeModelQuerySystemGroupingAggregationSdQueryArgsDto, RuntimeModelQuerySystemIdentityApiResourceArgsDto, RuntimeModelQuerySystemIdentityApiScopeArgsDto, RuntimeModelQuerySystemIdentityAzureEntraIdIdentityProviderArgsDto, RuntimeModelQuerySystemIdentityClientArgsDto, RuntimeModelQuerySystemIdentityEmailDomainGroupRuleArgsDto, RuntimeModelQuerySystemIdentityExternalTenantUserMappingArgsDto, RuntimeModelQuerySystemIdentityFacebookIdentityProviderArgsDto, RuntimeModelQuerySystemIdentityGoogleIdentityProviderArgsDto, RuntimeModelQuerySystemIdentityGroupArgsDto, RuntimeModelQuerySystemIdentityIdentityProviderArgsDto, RuntimeModelQuerySystemIdentityIdentityResourceArgsDto, RuntimeModelQuerySystemIdentityMailNotificationConfigurationArgsDto, RuntimeModelQuerySystemIdentityMicrosoftAdIdentityProviderArgsDto, RuntimeModelQuerySystemIdentityMicrosoftIdentityProviderArgsDto, RuntimeModelQuerySystemIdentityOctoTenantIdentityProviderArgsDto, RuntimeModelQuerySystemIdentityOpenLdapIdentityProviderArgsDto, RuntimeModelQuerySystemIdentityPermissionArgsDto, RuntimeModelQuerySystemIdentityPermissionRoleArgsDto, RuntimeModelQuerySystemIdentityPersistedGrantArgsDto, RuntimeModelQuerySystemIdentityResourceArgsDto, RuntimeModelQuerySystemIdentityRoleArgsDto, RuntimeModelQuerySystemIdentityUserArgsDto, RuntimeModelQuerySystemMigrationHistoryArgsDto, RuntimeModelQuerySystemNotificationCssTemplateConfigurationArgsDto, RuntimeModelQuerySystemNotificationEventArgsDto, RuntimeModelQuerySystemNotificationNotificationTemplateArgsDto, RuntimeModelQuerySystemNotificationStatefulEventArgsDto, RuntimeModelQuerySystemPersistentQueryArgsDto, RuntimeModelQuerySystemReportingConnectionInfoArgsDto, RuntimeModelQuerySystemReportingFileSystemContainerArgsDto, RuntimeModelQuerySystemReportingFileSystemEntityArgsDto, RuntimeModelQuerySystemReportingFileSystemItemArgsDto, RuntimeModelQuerySystemReportingFolderArgsDto, RuntimeModelQuerySystemReportingFolderRootArgsDto, RuntimeModelQuerySystemSimpleRtQueryArgsDto, RuntimeModelQuerySystemSimpleSdQueryArgsDto, RuntimeModelQuerySystemStreamDataQueryArgsDto, RuntimeModelQuerySystemTenantArgsDto, RuntimeModelQuerySystemTenantConfigurationArgsDto, RuntimeModelQuerySystemTenantModeConfigurationArgsDto, RuntimeModelQuerySystemUiBrandingArgsDto, RuntimeModelQuerySystemUiDashboardArgsDto, RuntimeModelQuerySystemUiDashboardWidgetArgsDto, RuntimeModelQuerySystemUiProcessDiagramArgsDto, RuntimeModelQuerySystemUiSymbolDefinitionArgsDto, RuntimeModelQuerySystemUiSymbolLibraryArgsDto, RuntimeModelQuerySystemUiuiElementArgsDto, RuntimeRuntimeQueryArgsDto, Scalars, SearchFilterDto, SortDto, StatisticsDto, StreamDataArgumentsDto, StreamDataEntityGenericCellsArgsDto, StreamDataEntityGenericDto, StreamDataEntityGenericDtoConnectionDto, StreamDataEntityGenericDtoEdgeDto, StreamDataModelQueryDto, StreamDataModelQueryIndustryBasicAlarmArgsDto, StreamDataModelQueryIndustryBasicEventArgsDto, StreamDataModelQueryIndustryBasicMachineArgsDto, StreamDataModelQueryIndustryBasicRuntimeVariableArgsDto, StreamDataModelQueryIndustryEnergyEnergyConsumerArgsDto, StreamDataModelQueryIndustryEnergyEnergyCostArgsDto, StreamDataModelQueryIndustryEnergyEnergyForecastArgsDto, StreamDataModelQueryIndustryEnergyEnergyMeterArgsDto, StreamDataModelQueryIndustryEnergyEnergyPerformanceIndicatorArgsDto, StreamDataModelQueryIndustryEnergyEnergyStorageArgsDto, StreamDataModelQueryIndustryEnergyInverterArgsDto, StreamDataModelQueryIndustryEnergyPhotovoltaicSystemModuleArgsDto, StreamDataModelQueryIndustryEnergyPhotovoltaicSystemStringArgsDto, StreamDataModelQueryIndustryFluidHeatMeterArgsDto, StreamDataModelQueryIndustryFluidWaterMeterArgsDto, StreamDataModelQueryStreamDataEntitiesArgsDto, StreamDataModelQueryStreamDataQueryArgsDto, StreamDataQueryAggregationsArgsDto, StreamDataQueryColumnInputDto, StreamDataQueryDto, StreamDataQueryDtoConnectionDto, StreamDataQueryDtoEdgeDto, StreamDataQueryRowCellsArgsDto, StreamDataQueryRowDto, StreamDataQueryRowDtoConnectionDto, StreamDataQueryRowDtoEdgeDto, StreamDataQueryRowsArgsDto, StreamDataTransientAggregationArgsDto, StreamDataTransientDownsamplingArgsDto, StreamDataTransientDto, StreamDataTransientGroupingAggregationArgsDto, StreamDataTransientQueryAggregationsArgsDto, StreamDataTransientQueryDto, StreamDataTransientQueryDtoConnectionDto, StreamDataTransientQueryDtoEdgeDto, StreamDataTransientQueryRowsArgsDto, StreamDataTransientSimpleArgsDto, StreamIndustryBasicAlarmAcknowledgedArgsDto, StreamIndustryBasicAlarmCategoryArgsDto, StreamIndustryBasicAlarmCauseArgsDto, StreamIndustryBasicAlarmClearedArgsDto, StreamIndustryBasicAlarmConnectionDto, StreamIndustryBasicAlarmDto, StreamIndustryBasicAlarmEdgeDto, StreamIndustryBasicAlarmLastModifiedArgsDto, StreamIndustryBasicAlarmMessageArgsDto, StreamIndustryBasicAlarmPriorityArgsDto, StreamIndustryBasicAlarmReactivatedArgsDto, StreamIndustryBasicAlarmReactivatedCountArgsDto, StreamIndustryBasicAlarmReceivedArgsDto, StreamIndustryBasicAlarmRtChangedDateTimeArgsDto, StreamIndustryBasicAlarmSourceArgsDto, StreamIndustryBasicAlarmStateArgsDto, StreamIndustryBasicAlarmTagNameArgsDto, StreamIndustryBasicAlarmTypeArgsDto, StreamIndustryBasicEventCategoryArgsDto, StreamIndustryBasicEventConnectionDto, StreamIndustryBasicEventDto, StreamIndustryBasicEventEdgeDto, StreamIndustryBasicEventMessageArgsDto, StreamIndustryBasicEventReceivedArgsDto, StreamIndustryBasicEventRtChangedDateTimeArgsDto, StreamIndustryBasicEventTagNameArgsDto, StreamIndustryBasicMachineConnectionDto, StreamIndustryBasicMachineDto, StreamIndustryBasicMachineEdgeDto, StreamIndustryBasicMachineMachineStateArgsDto, StreamIndustryBasicMachineOperatingHoursArgsDto, StreamIndustryBasicMachineRtChangedDateTimeArgsDto, StreamIndustryBasicMachineStandStillCounterArgsDto, StreamIndustryBasicRuntimeVariableBooleanValueArgsDto, StreamIndustryBasicRuntimeVariableConnectionDto, StreamIndustryBasicRuntimeVariableDateTimeValueArgsDto, StreamIndustryBasicRuntimeVariableDoubleValueArgsDto, StreamIndustryBasicRuntimeVariableDto, StreamIndustryBasicRuntimeVariableEdgeDto, StreamIndustryBasicRuntimeVariableIecDataTypeArgsDto, StreamIndustryBasicRuntimeVariableInt64ValueArgsDto, StreamIndustryBasicRuntimeVariableIntValueArgsDto, StreamIndustryBasicRuntimeVariableRtChangedDateTimeArgsDto, StreamIndustryBasicRuntimeVariableStringValueArgsDto, StreamIndustryBasicRuntimeVariableTimeSpanValueArgsDto, StreamIndustryEnergyEnergyConsumerConnectionDto, StreamIndustryEnergyEnergyConsumerDto, StreamIndustryEnergyEnergyConsumerEdgeDto, StreamIndustryEnergyEnergyConsumerImportedEnergyArgsDto, StreamIndustryEnergyEnergyConsumerLoadPercentArgsDto, StreamIndustryEnergyEnergyConsumerMachineStateArgsDto, StreamIndustryEnergyEnergyConsumerOperatingHoursArgsDto, StreamIndustryEnergyEnergyConsumerPowerArgsDto, StreamIndustryEnergyEnergyConsumerRtChangedDateTimeArgsDto, StreamIndustryEnergyEnergyConsumerStandStillCounterArgsDto, StreamIndustryEnergyEnergyCostConnectionDto, StreamIndustryEnergyEnergyCostCostAmountArgsDto, StreamIndustryEnergyEnergyCostDto, StreamIndustryEnergyEnergyCostEdgeDto, StreamIndustryEnergyEnergyCostForecastAmountArgsDto, StreamIndustryEnergyEnergyCostRtChangedDateTimeArgsDto, StreamIndustryEnergyEnergyForecastConfidenceArgsDto, StreamIndustryEnergyEnergyForecastConnectionDto, StreamIndustryEnergyEnergyForecastDto, StreamIndustryEnergyEnergyForecastEdgeDto, StreamIndustryEnergyEnergyForecastPredictedLoadArgsDto, StreamIndustryEnergyEnergyForecastRtChangedDateTimeArgsDto, StreamIndustryEnergyEnergyMeterAmpereArgsDto, StreamIndustryEnergyEnergyMeterApparentPowerArgsDto, StreamIndustryEnergyEnergyMeterConnectionDto, StreamIndustryEnergyEnergyMeterDto, StreamIndustryEnergyEnergyMeterEdgeDto, StreamIndustryEnergyEnergyMeterExportedEnergyArgsDto, StreamIndustryEnergyEnergyMeterFrequencyArgsDto, StreamIndustryEnergyEnergyMeterImportedEnergyArgsDto, StreamIndustryEnergyEnergyMeterMachineStateArgsDto, StreamIndustryEnergyEnergyMeterOperatingHoursArgsDto, StreamIndustryEnergyEnergyMeterPowerArgsDto, StreamIndustryEnergyEnergyMeterReactivePowerArgsDto, StreamIndustryEnergyEnergyMeterRtChangedDateTimeArgsDto, StreamIndustryEnergyEnergyMeterStandStillCounterArgsDto, StreamIndustryEnergyEnergyMeterVoltageArgsDto, StreamIndustryEnergyEnergyPerformanceIndicatorConnectionDto, StreamIndustryEnergyEnergyPerformanceIndicatorDto, StreamIndustryEnergyEnergyPerformanceIndicatorEdgeDto, StreamIndustryEnergyEnergyPerformanceIndicatorIndicatorValueArgsDto, StreamIndustryEnergyEnergyPerformanceIndicatorReferenceValueArgsDto, StreamIndustryEnergyEnergyPerformanceIndicatorRtChangedDateTimeArgsDto, StreamIndustryEnergyEnergyStorageAmpereArgsDto, StreamIndustryEnergyEnergyStorageCapacityArgsDto, StreamIndustryEnergyEnergyStorageConnectionDto, StreamIndustryEnergyEnergyStorageDto, StreamIndustryEnergyEnergyStorageEdgeDto, StreamIndustryEnergyEnergyStorageExportedEnergyArgsDto, StreamIndustryEnergyEnergyStorageImportedEnergyArgsDto, StreamIndustryEnergyEnergyStorageMachineStateArgsDto, StreamIndustryEnergyEnergyStorageNumOfCyclesArgsDto, StreamIndustryEnergyEnergyStorageOperatingHoursArgsDto, StreamIndustryEnergyEnergyStoragePowerArgsDto, StreamIndustryEnergyEnergyStorageRtChangedDateTimeArgsDto, StreamIndustryEnergyEnergyStorageSoCArgsDto, StreamIndustryEnergyEnergyStorageSoHArgsDto, StreamIndustryEnergyEnergyStorageStandStillCounterArgsDto, StreamIndustryEnergyEnergyStorageVoltageArgsDto, StreamIndustryEnergyInverterAmpereArgsDto, StreamIndustryEnergyInverterConnectionDto, StreamIndustryEnergyInverterDcAmpereArgsDto, StreamIndustryEnergyInverterDcVoltageArgsDto, StreamIndustryEnergyInverterDto, StreamIndustryEnergyInverterEdgeDto, StreamIndustryEnergyInverterMachineStateArgsDto, StreamIndustryEnergyInverterMaximumPowerArgsDto, StreamIndustryEnergyInverterOperatingHoursArgsDto, StreamIndustryEnergyInverterPowerArgsDto, StreamIndustryEnergyInverterRtChangedDateTimeArgsDto, StreamIndustryEnergyInverterStandStillCounterArgsDto, StreamIndustryEnergyInverterVoltageArgsDto, StreamIndustryEnergyPhotovoltaicSystemModuleConnectionDto, StreamIndustryEnergyPhotovoltaicSystemModuleDto, StreamIndustryEnergyPhotovoltaicSystemModuleEdgeDto, StreamIndustryEnergyPhotovoltaicSystemModuleMachineStateArgsDto, StreamIndustryEnergyPhotovoltaicSystemModuleOperatingHoursArgsDto, StreamIndustryEnergyPhotovoltaicSystemModulePeakPowerArgsDto, StreamIndustryEnergyPhotovoltaicSystemModulePowerArgsDto, StreamIndustryEnergyPhotovoltaicSystemModuleRtChangedDateTimeArgsDto, StreamIndustryEnergyPhotovoltaicSystemModuleStandStillCounterArgsDto, StreamIndustryEnergyPhotovoltaicSystemStringConnectionDto, StreamIndustryEnergyPhotovoltaicSystemStringDto, StreamIndustryEnergyPhotovoltaicSystemStringEdgeDto, StreamIndustryEnergyPhotovoltaicSystemStringPowerArgsDto, StreamIndustryEnergyPhotovoltaicSystemStringRtChangedDateTimeArgsDto, StreamIndustryFluidHeatMeterConnectionDto, StreamIndustryFluidHeatMeterDto, StreamIndustryFluidHeatMeterEdgeDto, StreamIndustryFluidHeatMeterImportedEnergyArgsDto, StreamIndustryFluidHeatMeterMachineStateArgsDto, StreamIndustryFluidHeatMeterOperatingHoursArgsDto, StreamIndustryFluidHeatMeterPowerArgsDto, StreamIndustryFluidHeatMeterRtChangedDateTimeArgsDto, StreamIndustryFluidHeatMeterStandStillCounterArgsDto, StreamIndustryFluidWaterMeterConnectionDto, StreamIndustryFluidWaterMeterDto, StreamIndustryFluidWaterMeterEdgeDto, StreamIndustryFluidWaterMeterMachineStateArgsDto, StreamIndustryFluidWaterMeterOperatingHoursArgsDto, StreamIndustryFluidWaterMeterRtChangedDateTimeArgsDto, StreamIndustryFluidWaterMeterStandStillCounterArgsDto, SystemAggregationQueryColumnDto, SystemAggregationQueryColumnInputDto, SystemAggregationRtQueryAssociationsArgsDto, SystemAggregationRtQueryConfiguredByArgsDto, SystemAggregationRtQueryConnectionDto, SystemAggregationRtQueryDto, SystemAggregationRtQueryEdgeDto, SystemAggregationRtQueryInputDto, SystemAggregationRtQueryInputUpdateDto, SystemAggregationRtQueryMapsFromArgsDto, SystemAggregationRtQueryMapsToArgsDto, SystemAggregationRtQueryMutationsCreateArgsDto, SystemAggregationRtQueryMutationsDto, SystemAggregationRtQueryMutationsUpdateArgsDto, SystemAggregationRtQueryRelatesFromArgsDto, SystemAggregationRtQueryRelatesToArgsDto, SystemAggregationRtQueryTaggedByArgsDto, SystemAggregationRtQueryUpdateDto, SystemAggregationRtQueryUpdateMessageDto, SystemAggregationSdQueryAssociationsArgsDto, SystemAggregationSdQueryConfiguredByArgsDto, SystemAggregationSdQueryConnectionDto, SystemAggregationSdQueryDto, SystemAggregationSdQueryEdgeDto, SystemAggregationSdQueryInputDto, SystemAggregationSdQueryInputUpdateDto, SystemAggregationSdQueryMapsFromArgsDto, SystemAggregationSdQueryMapsToArgsDto, SystemAggregationSdQueryMutationsCreateArgsDto, SystemAggregationSdQueryMutationsDto, SystemAggregationSdQueryMutationsUpdateArgsDto, SystemAggregationSdQueryRelatesFromArgsDto, SystemAggregationSdQueryRelatesToArgsDto, SystemAggregationSdQueryTaggedByArgsDto, SystemAggregationSdQueryUpdateDto, SystemAggregationSdQueryUpdateMessageDto, SystemAttributeSearchFilterDto, SystemAttributeSearchFilterInputDto, SystemAutoIncrementAssociationsArgsDto, SystemAutoIncrementConfiguredByArgsDto, SystemAutoIncrementConnectionDto, SystemAutoIncrementDto, SystemAutoIncrementEdgeDto, SystemAutoIncrementInputDto, SystemAutoIncrementInputUpdateDto, SystemAutoIncrementMapsFromArgsDto, SystemAutoIncrementMapsToArgsDto, SystemAutoIncrementMutationsCreateArgsDto, SystemAutoIncrementMutationsDto, SystemAutoIncrementMutationsUpdateArgsDto, SystemAutoIncrementRelatesFromArgsDto, SystemAutoIncrementRelatesToArgsDto, SystemAutoIncrementTaggedByArgsDto, SystemAutoIncrementUpdateDto, SystemAutoIncrementUpdateMessageDto, SystemBotAttributeAggregateConfigurationAssociationsArgsDto, SystemBotAttributeAggregateConfigurationConfiguredByArgsDto, SystemBotAttributeAggregateConfigurationConfiguresArgsDto, SystemBotAttributeAggregateConfigurationConnectionDto, SystemBotAttributeAggregateConfigurationDto, SystemBotAttributeAggregateConfigurationEdgeDto, SystemBotAttributeAggregateConfigurationInputDto, SystemBotAttributeAggregateConfigurationInputUpdateDto, SystemBotAttributeAggregateConfigurationMapsFromArgsDto, SystemBotAttributeAggregateConfigurationMapsToArgsDto, SystemBotAttributeAggregateConfigurationMutationsCreateArgsDto, SystemBotAttributeAggregateConfigurationMutationsDto, SystemBotAttributeAggregateConfigurationMutationsUpdateArgsDto, SystemBotAttributeAggregateConfigurationRelatesFromArgsDto, SystemBotAttributeAggregateConfigurationRelatesToArgsDto, SystemBotAttributeAggregateConfigurationTaggedByArgsDto, SystemBotAttributeAggregateConfigurationUpdateDto, SystemBotAttributeAggregateConfigurationUpdateMessageDto, SystemBotAttributeAggregateConfiguration_ConfiguredByUnionConnectionDto, SystemBotAttributeAggregateConfiguration_ConfiguredByUnionDto, SystemBotAttributeAggregateConfiguration_ConfiguredByUnionEdgeDto, SystemBotFixupAssociationsArgsDto, SystemBotFixupConfiguredByArgsDto, SystemBotFixupConnectionDto, SystemBotFixupDto, SystemBotFixupEdgeDto, SystemBotFixupInputDto, SystemBotFixupInputUpdateDto, SystemBotFixupMapsFromArgsDto, SystemBotFixupMapsToArgsDto, SystemBotFixupMutationsCreateArgsDto, SystemBotFixupMutationsDto, SystemBotFixupMutationsUpdateArgsDto, SystemBotFixupRelatesFromArgsDto, SystemBotFixupRelatesToArgsDto, SystemBotFixupTaggedByArgsDto, SystemBotFixupUpdateDto, SystemBotFixupUpdateMessageDto, SystemCommunicationAdapterAssociationsArgsDto, SystemCommunicationAdapterConfiguredByArgsDto, SystemCommunicationAdapterConnectionDto, SystemCommunicationAdapterDto, SystemCommunicationAdapterEdgeDto, SystemCommunicationAdapterExecutesArgsDto, SystemCommunicationAdapterExecutingAdapterArgsDto, SystemCommunicationAdapterInputDto, SystemCommunicationAdapterInputUpdateDto, SystemCommunicationAdapterManagedByArgsDto, SystemCommunicationAdapterMapsFromArgsDto, SystemCommunicationAdapterMapsToArgsDto, SystemCommunicationAdapterMutationsCreateArgsDto, SystemCommunicationAdapterMutationsDto, SystemCommunicationAdapterMutationsUpdateArgsDto, SystemCommunicationAdapterRelatesFromArgsDto, SystemCommunicationAdapterRelatesToArgsDto, SystemCommunicationAdapterTaggedByArgsDto, SystemCommunicationAdapterUpdateDto, SystemCommunicationAdapterUpdateMessageDto, SystemCommunicationAdapter_AdapterExecutionsUnionConnectionDto, SystemCommunicationAdapter_AdapterExecutionsUnionDto, SystemCommunicationAdapter_AdapterExecutionsUnionEdgeDto, SystemCommunicationAdapter_ExecutedByUnionConnectionDto, SystemCommunicationAdapter_ExecutedByUnionDto, SystemCommunicationAdapter_ExecutedByUnionEdgeDto, SystemCommunicationAdapter_ManagesUnionConnectionDto, SystemCommunicationAdapter_ManagesUnionDto, SystemCommunicationAdapter_ManagesUnionEdgeDto, SystemCommunicationAiConfigurationAssociationsArgsDto, SystemCommunicationAiConfigurationConfiguredByArgsDto, SystemCommunicationAiConfigurationConnectionDto, SystemCommunicationAiConfigurationDto, SystemCommunicationAiConfigurationEdgeDto, SystemCommunicationAiConfigurationInputDto, SystemCommunicationAiConfigurationInputUpdateDto, SystemCommunicationAiConfigurationMapsFromArgsDto, SystemCommunicationAiConfigurationMapsToArgsDto, SystemCommunicationAiConfigurationMutationsCreateArgsDto, SystemCommunicationAiConfigurationMutationsDto, SystemCommunicationAiConfigurationMutationsUpdateArgsDto, SystemCommunicationAiConfigurationRelatesFromArgsDto, SystemCommunicationAiConfigurationRelatesToArgsDto, SystemCommunicationAiConfigurationTaggedByArgsDto, SystemCommunicationAiConfigurationUpdateDto, SystemCommunicationAiConfigurationUpdateMessageDto, SystemCommunicationAiConfigurationUsedByArgsDto, SystemCommunicationDataFlowAssociationsArgsDto, SystemCommunicationDataFlowChildrenArgsDto, SystemCommunicationDataFlowConfiguredByArgsDto, SystemCommunicationDataFlowConnectionDto, SystemCommunicationDataFlowDto, SystemCommunicationDataFlowEdgeDto, SystemCommunicationDataFlowInputDto, SystemCommunicationDataFlowInputUpdateDto, SystemCommunicationDataFlowMapsFromArgsDto, SystemCommunicationDataFlowMapsToArgsDto, SystemCommunicationDataFlowMutationsCreateArgsDto, SystemCommunicationDataFlowMutationsDto, SystemCommunicationDataFlowMutationsUpdateArgsDto, SystemCommunicationDataFlowRelatesFromArgsDto, SystemCommunicationDataFlowRelatesToArgsDto, SystemCommunicationDataFlowTaggedByArgsDto, SystemCommunicationDataFlowUpdateDto, SystemCommunicationDataFlowUpdateMessageDto, SystemCommunicationDataFlow_ParentUnionConnectionDto, SystemCommunicationDataFlow_ParentUnionDto, SystemCommunicationDataFlow_ParentUnionEdgeDto, SystemCommunicationDataPointDto, SystemCommunicationDataPointInputDto, SystemCommunicationDataPointMappingAssociationsArgsDto, SystemCommunicationDataPointMappingConfiguredByArgsDto, SystemCommunicationDataPointMappingConnectionDto, SystemCommunicationDataPointMappingDto, SystemCommunicationDataPointMappingEdgeDto, SystemCommunicationDataPointMappingInputDto, SystemCommunicationDataPointMappingInputUpdateDto, SystemCommunicationDataPointMappingMappedAsSourceArgsDto, SystemCommunicationDataPointMappingMappedAsTargetArgsDto, SystemCommunicationDataPointMappingMapsFromArgsDto, SystemCommunicationDataPointMappingMapsToArgsDto, SystemCommunicationDataPointMappingMutationsCreateArgsDto, SystemCommunicationDataPointMappingMutationsDto, SystemCommunicationDataPointMappingMutationsUpdateArgsDto, SystemCommunicationDataPointMappingRelatesFromArgsDto, SystemCommunicationDataPointMappingRelatesToArgsDto, SystemCommunicationDataPointMappingTaggedByArgsDto, SystemCommunicationDataPointMappingUpdateDto, SystemCommunicationDataPointMappingUpdateMessageDto, SystemCommunicationDataPointMapping_MapsFromUnionConnectionDto, SystemCommunicationDataPointMapping_MapsFromUnionDto, SystemCommunicationDataPointMapping_MapsFromUnionEdgeDto, SystemCommunicationDataPointMapping_MapsToUnionConnectionDto, SystemCommunicationDataPointMapping_MapsToUnionDto, SystemCommunicationDataPointMapping_MapsToUnionEdgeDto, SystemCommunicationDeployableEntityAssociationsArgsDto, SystemCommunicationDeployableEntityConfiguredByArgsDto, SystemCommunicationDeployableEntityConnectionDto, SystemCommunicationDeployableEntityDto, SystemCommunicationDeployableEntityEdgeDto, SystemCommunicationDeployableEntityInterfaceConfiguredByArgsDto, SystemCommunicationDeployableEntityInterfaceDto, SystemCommunicationDeployableEntityInterfaceMapsFromArgsDto, SystemCommunicationDeployableEntityInterfaceMapsToArgsDto, SystemCommunicationDeployableEntityInterfaceRelatesFromArgsDto, SystemCommunicationDeployableEntityInterfaceRelatesToArgsDto, SystemCommunicationDeployableEntityInterfaceTaggedByArgsDto, SystemCommunicationDeployableEntityMapsFromArgsDto, SystemCommunicationDeployableEntityMapsToArgsDto, SystemCommunicationDeployableEntityRelatesFromArgsDto, SystemCommunicationDeployableEntityRelatesToArgsDto, SystemCommunicationDeployableEntityTaggedByArgsDto, SystemCommunicationDeployableEntityUpdateDto, SystemCommunicationDeployableEntityUpdateMessageDto, SystemCommunicationDiscordConfigurationAssociationsArgsDto, SystemCommunicationDiscordConfigurationConfiguredByArgsDto, SystemCommunicationDiscordConfigurationConnectionDto, SystemCommunicationDiscordConfigurationDto, SystemCommunicationDiscordConfigurationEdgeDto, SystemCommunicationDiscordConfigurationInputDto, SystemCommunicationDiscordConfigurationInputUpdateDto, SystemCommunicationDiscordConfigurationMapsFromArgsDto, SystemCommunicationDiscordConfigurationMapsToArgsDto, SystemCommunicationDiscordConfigurationMutationsCreateArgsDto, SystemCommunicationDiscordConfigurationMutationsDto, SystemCommunicationDiscordConfigurationMutationsUpdateArgsDto, SystemCommunicationDiscordConfigurationRelatesFromArgsDto, SystemCommunicationDiscordConfigurationRelatesToArgsDto, SystemCommunicationDiscordConfigurationTaggedByArgsDto, SystemCommunicationDiscordConfigurationUpdateDto, SystemCommunicationDiscordConfigurationUpdateMessageDto, SystemCommunicationDiscordConfigurationUsedByArgsDto, SystemCommunicationEMailReceiverConfigurationAssociationsArgsDto, SystemCommunicationEMailReceiverConfigurationConfiguredByArgsDto, SystemCommunicationEMailReceiverConfigurationConnectionDto, SystemCommunicationEMailReceiverConfigurationDto, SystemCommunicationEMailReceiverConfigurationEdgeDto, SystemCommunicationEMailReceiverConfigurationInputDto, SystemCommunicationEMailReceiverConfigurationInputUpdateDto, SystemCommunicationEMailReceiverConfigurationMapsFromArgsDto, SystemCommunicationEMailReceiverConfigurationMapsToArgsDto, SystemCommunicationEMailReceiverConfigurationMutationsCreateArgsDto, SystemCommunicationEMailReceiverConfigurationMutationsDto, SystemCommunicationEMailReceiverConfigurationMutationsUpdateArgsDto, SystemCommunicationEMailReceiverConfigurationRelatesFromArgsDto, SystemCommunicationEMailReceiverConfigurationRelatesToArgsDto, SystemCommunicationEMailReceiverConfigurationTaggedByArgsDto, SystemCommunicationEMailReceiverConfigurationUpdateDto, SystemCommunicationEMailReceiverConfigurationUpdateMessageDto, SystemCommunicationEMailReceiverConfigurationUsedByArgsDto, SystemCommunicationEMailSenderConfigurationAssociationsArgsDto, SystemCommunicationEMailSenderConfigurationConfiguredByArgsDto, SystemCommunicationEMailSenderConfigurationConnectionDto, SystemCommunicationEMailSenderConfigurationDto, SystemCommunicationEMailSenderConfigurationEdgeDto, SystemCommunicationEMailSenderConfigurationInputDto, SystemCommunicationEMailSenderConfigurationInputUpdateDto, SystemCommunicationEMailSenderConfigurationMapsFromArgsDto, SystemCommunicationEMailSenderConfigurationMapsToArgsDto, SystemCommunicationEMailSenderConfigurationMutationsCreateArgsDto, SystemCommunicationEMailSenderConfigurationMutationsDto, SystemCommunicationEMailSenderConfigurationMutationsUpdateArgsDto, SystemCommunicationEMailSenderConfigurationRelatesFromArgsDto, SystemCommunicationEMailSenderConfigurationRelatesToArgsDto, SystemCommunicationEMailSenderConfigurationTaggedByArgsDto, SystemCommunicationEMailSenderConfigurationUpdateDto, SystemCommunicationEMailSenderConfigurationUpdateMessageDto, SystemCommunicationEMailSenderConfigurationUsedByArgsDto, SystemCommunicationEdaConfigurationAssociationsArgsDto, SystemCommunicationEdaConfigurationConfiguredByArgsDto, SystemCommunicationEdaConfigurationConnectionDto, SystemCommunicationEdaConfigurationDto, SystemCommunicationEdaConfigurationEdgeDto, SystemCommunicationEdaConfigurationInputDto, SystemCommunicationEdaConfigurationInputUpdateDto, SystemCommunicationEdaConfigurationMapsFromArgsDto, SystemCommunicationEdaConfigurationMapsToArgsDto, SystemCommunicationEdaConfigurationMutationsCreateArgsDto, SystemCommunicationEdaConfigurationMutationsDto, SystemCommunicationEdaConfigurationMutationsUpdateArgsDto, SystemCommunicationEdaConfigurationRelatesFromArgsDto, SystemCommunicationEdaConfigurationRelatesToArgsDto, SystemCommunicationEdaConfigurationTaggedByArgsDto, SystemCommunicationEdaConfigurationUpdateDto, SystemCommunicationEdaConfigurationUpdateMessageDto, SystemCommunicationEdaConfigurationUsedByArgsDto, SystemCommunicationEnergyCommunityConfigurationAssociationsArgsDto, SystemCommunicationEnergyCommunityConfigurationConfiguredByArgsDto, SystemCommunicationEnergyCommunityConfigurationConnectionDto, SystemCommunicationEnergyCommunityConfigurationDto, SystemCommunicationEnergyCommunityConfigurationEdgeDto, SystemCommunicationEnergyCommunityConfigurationInputDto, SystemCommunicationEnergyCommunityConfigurationInputUpdateDto, SystemCommunicationEnergyCommunityConfigurationMapsFromArgsDto, SystemCommunicationEnergyCommunityConfigurationMapsToArgsDto, SystemCommunicationEnergyCommunityConfigurationMutationsCreateArgsDto, SystemCommunicationEnergyCommunityConfigurationMutationsDto, SystemCommunicationEnergyCommunityConfigurationMutationsUpdateArgsDto, SystemCommunicationEnergyCommunityConfigurationRelatesFromArgsDto, SystemCommunicationEnergyCommunityConfigurationRelatesToArgsDto, SystemCommunicationEnergyCommunityConfigurationTaggedByArgsDto, SystemCommunicationEnergyCommunityConfigurationUpdateDto, SystemCommunicationEnergyCommunityConfigurationUpdateMessageDto, SystemCommunicationEnergyCommunityConfigurationUsedByArgsDto, SystemCommunicationFinApiConfigurationAssociationsArgsDto, SystemCommunicationFinApiConfigurationConfiguredByArgsDto, SystemCommunicationFinApiConfigurationConnectionDto, SystemCommunicationFinApiConfigurationDto, SystemCommunicationFinApiConfigurationEdgeDto, SystemCommunicationFinApiConfigurationInputDto, SystemCommunicationFinApiConfigurationInputUpdateDto, SystemCommunicationFinApiConfigurationMapsFromArgsDto, SystemCommunicationFinApiConfigurationMapsToArgsDto, SystemCommunicationFinApiConfigurationMutationsCreateArgsDto, SystemCommunicationFinApiConfigurationMutationsDto, SystemCommunicationFinApiConfigurationMutationsUpdateArgsDto, SystemCommunicationFinApiConfigurationRelatesFromArgsDto, SystemCommunicationFinApiConfigurationRelatesToArgsDto, SystemCommunicationFinApiConfigurationTaggedByArgsDto, SystemCommunicationFinApiConfigurationUpdateDto, SystemCommunicationFinApiConfigurationUpdateMessageDto, SystemCommunicationFinApiConfigurationUsedByArgsDto, SystemCommunicationGrafanaConfigurationAssociationsArgsDto, SystemCommunicationGrafanaConfigurationConfiguredByArgsDto, SystemCommunicationGrafanaConfigurationConnectionDto, SystemCommunicationGrafanaConfigurationDto, SystemCommunicationGrafanaConfigurationEdgeDto, SystemCommunicationGrafanaConfigurationInputDto, SystemCommunicationGrafanaConfigurationInputUpdateDto, SystemCommunicationGrafanaConfigurationMapsFromArgsDto, SystemCommunicationGrafanaConfigurationMapsToArgsDto, SystemCommunicationGrafanaConfigurationMutationsCreateArgsDto, SystemCommunicationGrafanaConfigurationMutationsDto, SystemCommunicationGrafanaConfigurationMutationsUpdateArgsDto, SystemCommunicationGrafanaConfigurationRelatesFromArgsDto, SystemCommunicationGrafanaConfigurationRelatesToArgsDto, SystemCommunicationGrafanaConfigurationTaggedByArgsDto, SystemCommunicationGrafanaConfigurationUpdateDto, SystemCommunicationGrafanaConfigurationUpdateMessageDto, SystemCommunicationGrafanaConfigurationUsedByArgsDto, SystemCommunicationLoxoneConfigurationAssociationsArgsDto, SystemCommunicationLoxoneConfigurationConfiguredByArgsDto, SystemCommunicationLoxoneConfigurationConnectionDto, SystemCommunicationLoxoneConfigurationDto, SystemCommunicationLoxoneConfigurationEdgeDto, SystemCommunicationLoxoneConfigurationInputDto, SystemCommunicationLoxoneConfigurationInputUpdateDto, SystemCommunicationLoxoneConfigurationMapsFromArgsDto, SystemCommunicationLoxoneConfigurationMapsToArgsDto, SystemCommunicationLoxoneConfigurationMutationsCreateArgsDto, SystemCommunicationLoxoneConfigurationMutationsDto, SystemCommunicationLoxoneConfigurationMutationsUpdateArgsDto, SystemCommunicationLoxoneConfigurationRelatesFromArgsDto, SystemCommunicationLoxoneConfigurationRelatesToArgsDto, SystemCommunicationLoxoneConfigurationTaggedByArgsDto, SystemCommunicationLoxoneConfigurationUpdateDto, SystemCommunicationLoxoneConfigurationUpdateMessageDto, SystemCommunicationLoxoneConfigurationUsedByArgsDto, SystemCommunicationMappingTargetDto, SystemCommunicationMappingTargetInputDto, SystemCommunicationMicrosoftGraphConfigurationAssociationsArgsDto, SystemCommunicationMicrosoftGraphConfigurationConfiguredByArgsDto, SystemCommunicationMicrosoftGraphConfigurationConnectionDto, SystemCommunicationMicrosoftGraphConfigurationDto, SystemCommunicationMicrosoftGraphConfigurationEdgeDto, SystemCommunicationMicrosoftGraphConfigurationInputDto, SystemCommunicationMicrosoftGraphConfigurationInputUpdateDto, SystemCommunicationMicrosoftGraphConfigurationMapsFromArgsDto, SystemCommunicationMicrosoftGraphConfigurationMapsToArgsDto, SystemCommunicationMicrosoftGraphConfigurationMutationsCreateArgsDto, SystemCommunicationMicrosoftGraphConfigurationMutationsDto, SystemCommunicationMicrosoftGraphConfigurationMutationsUpdateArgsDto, SystemCommunicationMicrosoftGraphConfigurationRelatesFromArgsDto, SystemCommunicationMicrosoftGraphConfigurationRelatesToArgsDto, SystemCommunicationMicrosoftGraphConfigurationTaggedByArgsDto, SystemCommunicationMicrosoftGraphConfigurationUpdateDto, SystemCommunicationMicrosoftGraphConfigurationUpdateMessageDto, SystemCommunicationMicrosoftGraphConfigurationUsedByArgsDto, SystemCommunicationPipelineAssociationsArgsDto, SystemCommunicationPipelineConfiguredByArgsDto, SystemCommunicationPipelineConnectionDto, SystemCommunicationPipelineDto, SystemCommunicationPipelineEdgeDto, SystemCommunicationPipelineExecutedByArgsDto, SystemCommunicationPipelineExecutedPipelineArgsDto, SystemCommunicationPipelineExecutionAdapterExecutionsArgsDto, SystemCommunicationPipelineExecutionAssociationsArgsDto, SystemCommunicationPipelineExecutionConfiguredByArgsDto, SystemCommunicationPipelineExecutionConnectionDto, SystemCommunicationPipelineExecutionDto, SystemCommunicationPipelineExecutionEdgeDto, SystemCommunicationPipelineExecutionInputDto, SystemCommunicationPipelineExecutionInputUpdateDto, SystemCommunicationPipelineExecutionMapsFromArgsDto, SystemCommunicationPipelineExecutionMapsToArgsDto, SystemCommunicationPipelineExecutionMutationsCreateArgsDto, SystemCommunicationPipelineExecutionMutationsDto, SystemCommunicationPipelineExecutionMutationsUpdateArgsDto, SystemCommunicationPipelineExecutionPipelineExecutionsArgsDto, SystemCommunicationPipelineExecutionRelatesFromArgsDto, SystemCommunicationPipelineExecutionRelatesToArgsDto, SystemCommunicationPipelineExecutionTaggedByArgsDto, SystemCommunicationPipelineExecutionUpdateDto, SystemCommunicationPipelineExecutionUpdateMessageDto, SystemCommunicationPipelineExecution_ExecutedPipelineUnionConnectionDto, SystemCommunicationPipelineExecution_ExecutedPipelineUnionDto, SystemCommunicationPipelineExecution_ExecutedPipelineUnionEdgeDto, SystemCommunicationPipelineExecution_ExecutingAdapterUnionConnectionDto, SystemCommunicationPipelineExecution_ExecutingAdapterUnionDto, SystemCommunicationPipelineExecution_ExecutingAdapterUnionEdgeDto, SystemCommunicationPipelineInputDto, SystemCommunicationPipelineInputUpdateDto, SystemCommunicationPipelineIsUsingArgsDto, SystemCommunicationPipelineMapsFromArgsDto, SystemCommunicationPipelineMapsToArgsDto, SystemCommunicationPipelineMutationsCreateArgsDto, SystemCommunicationPipelineMutationsDto, SystemCommunicationPipelineMutationsUpdateArgsDto, SystemCommunicationPipelineParentArgsDto, SystemCommunicationPipelineReceivesDataFromArgsDto, SystemCommunicationPipelineRelatesFromArgsDto, SystemCommunicationPipelineRelatesToArgsDto, SystemCommunicationPipelineSendsDataToArgsDto, SystemCommunicationPipelineStatisticsAssociationsArgsDto, SystemCommunicationPipelineStatisticsConfiguredByArgsDto, SystemCommunicationPipelineStatisticsConnectionDto, SystemCommunicationPipelineStatisticsDto, SystemCommunicationPipelineStatisticsEdgeDto, SystemCommunicationPipelineStatisticsForPipelineArgsDto, SystemCommunicationPipelineStatisticsInputDto, SystemCommunicationPipelineStatisticsInputUpdateDto, SystemCommunicationPipelineStatisticsMapsFromArgsDto, SystemCommunicationPipelineStatisticsMapsToArgsDto, SystemCommunicationPipelineStatisticsMutationsCreateArgsDto, SystemCommunicationPipelineStatisticsMutationsDto, SystemCommunicationPipelineStatisticsMutationsUpdateArgsDto, SystemCommunicationPipelineStatisticsPipelineStatisticsArgsDto, SystemCommunicationPipelineStatisticsRelatesFromArgsDto, SystemCommunicationPipelineStatisticsRelatesToArgsDto, SystemCommunicationPipelineStatisticsTaggedByArgsDto, SystemCommunicationPipelineStatisticsUpdateDto, SystemCommunicationPipelineStatisticsUpdateMessageDto, SystemCommunicationPipelineStatistics_StatisticsForPipelineUnionConnectionDto, SystemCommunicationPipelineStatistics_StatisticsForPipelineUnionDto, SystemCommunicationPipelineStatistics_StatisticsForPipelineUnionEdgeDto, SystemCommunicationPipelineTaggedByArgsDto, SystemCommunicationPipelineTriggerAssociationsArgsDto, SystemCommunicationPipelineTriggerConfiguredByArgsDto, SystemCommunicationPipelineTriggerConnectionDto, SystemCommunicationPipelineTriggerDto, SystemCommunicationPipelineTriggerEdgeDto, SystemCommunicationPipelineTriggerInputDto, SystemCommunicationPipelineTriggerInputUpdateDto, SystemCommunicationPipelineTriggerMapsFromArgsDto, SystemCommunicationPipelineTriggerMapsToArgsDto, SystemCommunicationPipelineTriggerMutationsCreateArgsDto, SystemCommunicationPipelineTriggerMutationsDto, SystemCommunicationPipelineTriggerMutationsUpdateArgsDto, SystemCommunicationPipelineTriggerParentArgsDto, SystemCommunicationPipelineTriggerRelatesFromArgsDto, SystemCommunicationPipelineTriggerRelatesToArgsDto, SystemCommunicationPipelineTriggerTaggedByArgsDto, SystemCommunicationPipelineTriggerTriggeredByArgsDto, SystemCommunicationPipelineTriggerUpdateDto, SystemCommunicationPipelineTriggerUpdateMessageDto, SystemCommunicationPipelineTrigger_TriggersUnionConnectionDto, SystemCommunicationPipelineTrigger_TriggersUnionDto, SystemCommunicationPipelineTrigger_TriggersUnionEdgeDto, SystemCommunicationPipelineTriggersArgsDto, SystemCommunicationPipelineUpdateDto, SystemCommunicationPipelineUpdateMessageDto, SystemCommunicationPipeline_ChildrenUnionConnectionDto, SystemCommunicationPipeline_ChildrenUnionDto, SystemCommunicationPipeline_ChildrenUnionEdgeDto, SystemCommunicationPipeline_ExecutesUnionConnectionDto, SystemCommunicationPipeline_ExecutesUnionDto, SystemCommunicationPipeline_ExecutesUnionEdgeDto, SystemCommunicationPipeline_PipelineExecutionsUnionConnectionDto, SystemCommunicationPipeline_PipelineExecutionsUnionDto, SystemCommunicationPipeline_PipelineExecutionsUnionEdgeDto, SystemCommunicationPipeline_PipelineStatisticsUnionConnectionDto, SystemCommunicationPipeline_PipelineStatisticsUnionDto, SystemCommunicationPipeline_PipelineStatisticsUnionEdgeDto, SystemCommunicationPipeline_ReceivesDataFromUnionConnectionDto, SystemCommunicationPipeline_ReceivesDataFromUnionDto, SystemCommunicationPipeline_ReceivesDataFromUnionEdgeDto, SystemCommunicationPipeline_SendsDataToUnionConnectionDto, SystemCommunicationPipeline_SendsDataToUnionDto, SystemCommunicationPipeline_SendsDataToUnionEdgeDto, SystemCommunicationPipeline_TriggeredByUnionConnectionDto, SystemCommunicationPipeline_TriggeredByUnionDto, SystemCommunicationPipeline_TriggeredByUnionEdgeDto, SystemCommunicationPipeline_UsedByUnionConnectionDto, SystemCommunicationPipeline_UsedByUnionDto, SystemCommunicationPipeline_UsedByUnionEdgeDto, SystemCommunicationPoolAssociationsArgsDto, SystemCommunicationPoolConfiguredByArgsDto, SystemCommunicationPoolConnectionDto, SystemCommunicationPoolDto, SystemCommunicationPoolEdgeDto, SystemCommunicationPoolInputDto, SystemCommunicationPoolInputUpdateDto, SystemCommunicationPoolManagesArgsDto, SystemCommunicationPoolMapsFromArgsDto, SystemCommunicationPoolMapsToArgsDto, SystemCommunicationPoolMutationsCreateArgsDto, SystemCommunicationPoolMutationsDto, SystemCommunicationPoolMutationsUpdateArgsDto, SystemCommunicationPoolRelatesFromArgsDto, SystemCommunicationPoolRelatesToArgsDto, SystemCommunicationPoolTaggedByArgsDto, SystemCommunicationPoolUpdateDto, SystemCommunicationPoolUpdateMessageDto, SystemCommunicationPool_ManagedByUnionConnectionDto, SystemCommunicationPool_ManagedByUnionDto, SystemCommunicationPool_ManagedByUnionEdgeDto, SystemCommunicationSapConfigurationAssociationsArgsDto, SystemCommunicationSapConfigurationConfiguredByArgsDto, SystemCommunicationSapConfigurationConnectionDto, SystemCommunicationSapConfigurationDto, SystemCommunicationSapConfigurationEdgeDto, SystemCommunicationSapConfigurationInputDto, SystemCommunicationSapConfigurationInputUpdateDto, SystemCommunicationSapConfigurationMapsFromArgsDto, SystemCommunicationSapConfigurationMapsToArgsDto, SystemCommunicationSapConfigurationMutationsCreateArgsDto, SystemCommunicationSapConfigurationMutationsDto, SystemCommunicationSapConfigurationMutationsUpdateArgsDto, SystemCommunicationSapConfigurationRelatesFromArgsDto, SystemCommunicationSapConfigurationRelatesToArgsDto, SystemCommunicationSapConfigurationTaggedByArgsDto, SystemCommunicationSapConfigurationUpdateDto, SystemCommunicationSapConfigurationUpdateMessageDto, SystemCommunicationSapConfigurationUsedByArgsDto, SystemCommunicationServiceAccountConfigurationAssociationsArgsDto, SystemCommunicationServiceAccountConfigurationConfiguredByArgsDto, SystemCommunicationServiceAccountConfigurationConnectionDto, SystemCommunicationServiceAccountConfigurationDto, SystemCommunicationServiceAccountConfigurationEdgeDto, SystemCommunicationServiceAccountConfigurationInputDto, SystemCommunicationServiceAccountConfigurationInputUpdateDto, SystemCommunicationServiceAccountConfigurationMapsFromArgsDto, SystemCommunicationServiceAccountConfigurationMapsToArgsDto, SystemCommunicationServiceAccountConfigurationMutationsCreateArgsDto, SystemCommunicationServiceAccountConfigurationMutationsDto, SystemCommunicationServiceAccountConfigurationMutationsUpdateArgsDto, SystemCommunicationServiceAccountConfigurationRelatesFromArgsDto, SystemCommunicationServiceAccountConfigurationRelatesToArgsDto, SystemCommunicationServiceAccountConfigurationTaggedByArgsDto, SystemCommunicationServiceAccountConfigurationUpdateDto, SystemCommunicationServiceAccountConfigurationUpdateMessageDto, SystemCommunicationServiceAccountConfigurationUsedByArgsDto, SystemCommunicationSftpConfigurationAssociationsArgsDto, SystemCommunicationSftpConfigurationConfiguredByArgsDto, SystemCommunicationSftpConfigurationConnectionDto, SystemCommunicationSftpConfigurationDto, SystemCommunicationSftpConfigurationEdgeDto, SystemCommunicationSftpConfigurationInputDto, SystemCommunicationSftpConfigurationInputUpdateDto, SystemCommunicationSftpConfigurationMapsFromArgsDto, SystemCommunicationSftpConfigurationMapsToArgsDto, SystemCommunicationSftpConfigurationMutationsCreateArgsDto, SystemCommunicationSftpConfigurationMutationsDto, SystemCommunicationSftpConfigurationMutationsUpdateArgsDto, SystemCommunicationSftpConfigurationRelatesFromArgsDto, SystemCommunicationSftpConfigurationRelatesToArgsDto, SystemCommunicationSftpConfigurationTaggedByArgsDto, SystemCommunicationSftpConfigurationUpdateDto, SystemCommunicationSftpConfigurationUpdateMessageDto, SystemCommunicationSftpConfigurationUsedByArgsDto, SystemCommunicationTagAssociationsArgsDto, SystemCommunicationTagConfiguredByArgsDto, SystemCommunicationTagConnectionDto, SystemCommunicationTagDto, SystemCommunicationTagEdgeDto, SystemCommunicationTagInputDto, SystemCommunicationTagInputUpdateDto, SystemCommunicationTagIsTaggingArgsDto, SystemCommunicationTagMapsFromArgsDto, SystemCommunicationTagMapsToArgsDto, SystemCommunicationTagMutationsCreateArgsDto, SystemCommunicationTagMutationsDto, SystemCommunicationTagMutationsUpdateArgsDto, SystemCommunicationTagRelatesFromArgsDto, SystemCommunicationTagRelatesToArgsDto, SystemCommunicationTagTaggedByArgsDto, SystemCommunicationTagUpdateDto, SystemCommunicationTagUpdateMessageDto, SystemCommunicationTag_TaggedByUnionConnectionDto, SystemCommunicationTag_TaggedByUnionDto, SystemCommunicationTag_TaggedByUnionEdgeDto, SystemCommunicationUiThemeColorsDto, SystemCommunicationUiThemeColorsInputDto, SystemConfigurationAssociationsArgsDto, SystemConfigurationConfiguredByArgsDto, SystemConfigurationConnectionDto, SystemConfigurationDto, SystemConfigurationEdgeDto, SystemConfigurationInterfaceConfiguredByArgsDto, SystemConfigurationInterfaceDto, SystemConfigurationInterfaceMapsFromArgsDto, SystemConfigurationInterfaceMapsToArgsDto, SystemConfigurationInterfaceRelatesFromArgsDto, SystemConfigurationInterfaceRelatesToArgsDto, SystemConfigurationInterfaceTaggedByArgsDto, SystemConfigurationInterfaceUsedByArgsDto, SystemConfigurationMapsFromArgsDto, SystemConfigurationMapsToArgsDto, SystemConfigurationRelatesFromArgsDto, SystemConfigurationRelatesToArgsDto, SystemConfigurationTaggedByArgsDto, SystemConfigurationUpdateDto, SystemConfigurationUpdateMessageDto, SystemConfigurationUsedByArgsDto, SystemConfiguration_IsUsingUnionConnectionDto, SystemConfiguration_IsUsingUnionDto, SystemConfiguration_IsUsingUnionEdgeDto, SystemDownsamplingSdQueryAssociationsArgsDto, SystemDownsamplingSdQueryConfiguredByArgsDto, SystemDownsamplingSdQueryConnectionDto, SystemDownsamplingSdQueryDto, SystemDownsamplingSdQueryEdgeDto, SystemDownsamplingSdQueryInputDto, SystemDownsamplingSdQueryInputUpdateDto, SystemDownsamplingSdQueryMapsFromArgsDto, SystemDownsamplingSdQueryMapsToArgsDto, SystemDownsamplingSdQueryMutationsCreateArgsDto, SystemDownsamplingSdQueryMutationsDto, SystemDownsamplingSdQueryMutationsUpdateArgsDto, SystemDownsamplingSdQueryRelatesFromArgsDto, SystemDownsamplingSdQueryRelatesToArgsDto, SystemDownsamplingSdQueryTaggedByArgsDto, SystemDownsamplingSdQueryUpdateDto, SystemDownsamplingSdQueryUpdateMessageDto, SystemEntityAssociationsArgsDto, SystemEntityConfiguredByArgsDto, SystemEntityConnectionDto, SystemEntityDto, SystemEntityEdgeDto, SystemEntityInterfaceConfiguredByArgsDto, SystemEntityInterfaceDto, SystemEntityInterfaceMapsFromArgsDto, SystemEntityInterfaceMapsToArgsDto, SystemEntityInterfaceRelatesFromArgsDto, SystemEntityInterfaceRelatesToArgsDto, SystemEntityInterfaceTaggedByArgsDto, SystemEntityMapsFromArgsDto, SystemEntityMapsToArgsDto, SystemEntityRelatesFromArgsDto, SystemEntityRelatesToArgsDto, SystemEntityTaggedByArgsDto, SystemEntityUpdateDto, SystemEntityUpdateMessageDto, SystemEntity_ConfiguresUnionConnectionDto, SystemEntity_ConfiguresUnionDto, SystemEntity_ConfiguresUnionEdgeDto, SystemEntity_IsTaggingUnionConnectionDto, SystemEntity_IsTaggingUnionDto, SystemEntity_IsTaggingUnionEdgeDto, SystemEntity_MappedAsSourceUnionConnectionDto, SystemEntity_MappedAsSourceUnionDto, SystemEntity_MappedAsSourceUnionEdgeDto, SystemEntity_MappedAsTargetUnionConnectionDto, SystemEntity_MappedAsTargetUnionDto, SystemEntity_MappedAsTargetUnionEdgeDto, SystemEntity_RelatesFromUnionConnectionDto, SystemEntity_RelatesFromUnionDto, SystemEntity_RelatesFromUnionEdgeDto, SystemEntity_RelatesToUnionConnectionDto, SystemEntity_RelatesToUnionDto, SystemEntity_RelatesToUnionEdgeDto, SystemFieldFilterDto, SystemFieldFilterInputDto, SystemGroupingAggregationRtQueryAssociationsArgsDto, SystemGroupingAggregationRtQueryConfiguredByArgsDto, SystemGroupingAggregationRtQueryConnectionDto, SystemGroupingAggregationRtQueryDto, SystemGroupingAggregationRtQueryEdgeDto, SystemGroupingAggregationRtQueryInputDto, SystemGroupingAggregationRtQueryInputUpdateDto, SystemGroupingAggregationRtQueryMapsFromArgsDto, SystemGroupingAggregationRtQueryMapsToArgsDto, SystemGroupingAggregationRtQueryMutationsCreateArgsDto, SystemGroupingAggregationRtQueryMutationsDto, SystemGroupingAggregationRtQueryMutationsUpdateArgsDto, SystemGroupingAggregationRtQueryRelatesFromArgsDto, SystemGroupingAggregationRtQueryRelatesToArgsDto, SystemGroupingAggregationRtQueryTaggedByArgsDto, SystemGroupingAggregationRtQueryUpdateDto, SystemGroupingAggregationRtQueryUpdateMessageDto, SystemGroupingAggregationSdQueryAssociationsArgsDto, SystemGroupingAggregationSdQueryConfiguredByArgsDto, SystemGroupingAggregationSdQueryConnectionDto, SystemGroupingAggregationSdQueryDto, SystemGroupingAggregationSdQueryEdgeDto, SystemGroupingAggregationSdQueryInputDto, SystemGroupingAggregationSdQueryInputUpdateDto, SystemGroupingAggregationSdQueryMapsFromArgsDto, SystemGroupingAggregationSdQueryMapsToArgsDto, SystemGroupingAggregationSdQueryMutationsCreateArgsDto, SystemGroupingAggregationSdQueryMutationsDto, SystemGroupingAggregationSdQueryMutationsUpdateArgsDto, SystemGroupingAggregationSdQueryRelatesFromArgsDto, SystemGroupingAggregationSdQueryRelatesToArgsDto, SystemGroupingAggregationSdQueryTaggedByArgsDto, SystemGroupingAggregationSdQueryUpdateDto, SystemGroupingAggregationSdQueryUpdateMessageDto, SystemIdentityApiResourceAssociationsArgsDto, SystemIdentityApiResourceConfiguredByArgsDto, SystemIdentityApiResourceConnectionDto, SystemIdentityApiResourceDto, SystemIdentityApiResourceEdgeDto, SystemIdentityApiResourceInputDto, SystemIdentityApiResourceInputUpdateDto, SystemIdentityApiResourceMapsFromArgsDto, SystemIdentityApiResourceMapsToArgsDto, SystemIdentityApiResourceMutationsCreateArgsDto, SystemIdentityApiResourceMutationsDto, SystemIdentityApiResourceMutationsUpdateArgsDto, SystemIdentityApiResourceRelatesFromArgsDto, SystemIdentityApiResourceRelatesToArgsDto, SystemIdentityApiResourceTaggedByArgsDto, SystemIdentityApiResourceUpdateDto, SystemIdentityApiResourceUpdateMessageDto, SystemIdentityApiScopeAssociationsArgsDto, SystemIdentityApiScopeConfiguredByArgsDto, SystemIdentityApiScopeConnectionDto, SystemIdentityApiScopeDto, SystemIdentityApiScopeEdgeDto, SystemIdentityApiScopeInputDto, SystemIdentityApiScopeInputUpdateDto, SystemIdentityApiScopeMapsFromArgsDto, SystemIdentityApiScopeMapsToArgsDto, SystemIdentityApiScopeMutationsCreateArgsDto, SystemIdentityApiScopeMutationsDto, SystemIdentityApiScopeMutationsUpdateArgsDto, SystemIdentityApiScopeRelatesFromArgsDto, SystemIdentityApiScopeRelatesToArgsDto, SystemIdentityApiScopeTaggedByArgsDto, SystemIdentityApiScopeUpdateDto, SystemIdentityApiScopeUpdateMessageDto, SystemIdentityAzureEntraIdIdentityProviderAssociationsArgsDto, SystemIdentityAzureEntraIdIdentityProviderConfiguredByArgsDto, SystemIdentityAzureEntraIdIdentityProviderConnectionDto, SystemIdentityAzureEntraIdIdentityProviderDto, SystemIdentityAzureEntraIdIdentityProviderEdgeDto, SystemIdentityAzureEntraIdIdentityProviderInputDto, SystemIdentityAzureEntraIdIdentityProviderInputUpdateDto, SystemIdentityAzureEntraIdIdentityProviderMapsFromArgsDto, SystemIdentityAzureEntraIdIdentityProviderMapsToArgsDto, SystemIdentityAzureEntraIdIdentityProviderMutationsCreateArgsDto, SystemIdentityAzureEntraIdIdentityProviderMutationsDto, SystemIdentityAzureEntraIdIdentityProviderMutationsUpdateArgsDto, SystemIdentityAzureEntraIdIdentityProviderRelatesFromArgsDto, SystemIdentityAzureEntraIdIdentityProviderRelatesToArgsDto, SystemIdentityAzureEntraIdIdentityProviderTaggedByArgsDto, SystemIdentityAzureEntraIdIdentityProviderUpdateDto, SystemIdentityAzureEntraIdIdentityProviderUpdateMessageDto, SystemIdentityClientAssociationsArgsDto, SystemIdentityClientClaimDto, SystemIdentityClientClaimInputDto, SystemIdentityClientConfiguredByArgsDto, SystemIdentityClientConnectionDto, SystemIdentityClientDto, SystemIdentityClientEdgeDto, SystemIdentityClientInputDto, SystemIdentityClientInputUpdateDto, SystemIdentityClientMapsFromArgsDto, SystemIdentityClientMapsToArgsDto, SystemIdentityClientMutationsCreateArgsDto, SystemIdentityClientMutationsDto, SystemIdentityClientMutationsUpdateArgsDto, SystemIdentityClientRelatesFromArgsDto, SystemIdentityClientRelatesToArgsDto, SystemIdentityClientTaggedByArgsDto, SystemIdentityClientUpdateDto, SystemIdentityClientUpdateMessageDto, SystemIdentityEmailDomainGroupRuleAssociationsArgsDto, SystemIdentityEmailDomainGroupRuleConfiguredByArgsDto, SystemIdentityEmailDomainGroupRuleConnectionDto, SystemIdentityEmailDomainGroupRuleDto, SystemIdentityEmailDomainGroupRuleEdgeDto, SystemIdentityEmailDomainGroupRuleInputDto, SystemIdentityEmailDomainGroupRuleInputUpdateDto, SystemIdentityEmailDomainGroupRuleMapsFromArgsDto, SystemIdentityEmailDomainGroupRuleMapsToArgsDto, SystemIdentityEmailDomainGroupRuleMutationsCreateArgsDto, SystemIdentityEmailDomainGroupRuleMutationsDto, SystemIdentityEmailDomainGroupRuleMutationsUpdateArgsDto, SystemIdentityEmailDomainGroupRuleRelatesFromArgsDto, SystemIdentityEmailDomainGroupRuleRelatesToArgsDto, SystemIdentityEmailDomainGroupRuleTaggedByArgsDto, SystemIdentityEmailDomainGroupRuleUpdateDto, SystemIdentityEmailDomainGroupRuleUpdateMessageDto, SystemIdentityExternalTenantUserMappingAssociationsArgsDto, SystemIdentityExternalTenantUserMappingConfiguredByArgsDto, SystemIdentityExternalTenantUserMappingConnectionDto, SystemIdentityExternalTenantUserMappingDto, SystemIdentityExternalTenantUserMappingEdgeDto, SystemIdentityExternalTenantUserMappingInputDto, SystemIdentityExternalTenantUserMappingInputUpdateDto, SystemIdentityExternalTenantUserMappingMapsFromArgsDto, SystemIdentityExternalTenantUserMappingMapsToArgsDto, SystemIdentityExternalTenantUserMappingMemberOfGroupsArgsDto, SystemIdentityExternalTenantUserMappingMutationsCreateArgsDto, SystemIdentityExternalTenantUserMappingMutationsDto, SystemIdentityExternalTenantUserMappingMutationsUpdateArgsDto, SystemIdentityExternalTenantUserMappingRelatesFromArgsDto, SystemIdentityExternalTenantUserMappingRelatesToArgsDto, SystemIdentityExternalTenantUserMappingTaggedByArgsDto, SystemIdentityExternalTenantUserMappingUpdateDto, SystemIdentityExternalTenantUserMappingUpdateMessageDto, SystemIdentityFacebookIdentityProviderAssociationsArgsDto, SystemIdentityFacebookIdentityProviderConfiguredByArgsDto, SystemIdentityFacebookIdentityProviderConnectionDto, SystemIdentityFacebookIdentityProviderDto, SystemIdentityFacebookIdentityProviderEdgeDto, SystemIdentityFacebookIdentityProviderInputDto, SystemIdentityFacebookIdentityProviderInputUpdateDto, SystemIdentityFacebookIdentityProviderMapsFromArgsDto, SystemIdentityFacebookIdentityProviderMapsToArgsDto, SystemIdentityFacebookIdentityProviderMutationsCreateArgsDto, SystemIdentityFacebookIdentityProviderMutationsDto, SystemIdentityFacebookIdentityProviderMutationsUpdateArgsDto, SystemIdentityFacebookIdentityProviderRelatesFromArgsDto, SystemIdentityFacebookIdentityProviderRelatesToArgsDto, SystemIdentityFacebookIdentityProviderTaggedByArgsDto, SystemIdentityFacebookIdentityProviderUpdateDto, SystemIdentityFacebookIdentityProviderUpdateMessageDto, SystemIdentityGoogleIdentityProviderAssociationsArgsDto, SystemIdentityGoogleIdentityProviderConfiguredByArgsDto, SystemIdentityGoogleIdentityProviderConnectionDto, SystemIdentityGoogleIdentityProviderDto, SystemIdentityGoogleIdentityProviderEdgeDto, SystemIdentityGoogleIdentityProviderInputDto, SystemIdentityGoogleIdentityProviderInputUpdateDto, SystemIdentityGoogleIdentityProviderMapsFromArgsDto, SystemIdentityGoogleIdentityProviderMapsToArgsDto, SystemIdentityGoogleIdentityProviderMutationsCreateArgsDto, SystemIdentityGoogleIdentityProviderMutationsDto, SystemIdentityGoogleIdentityProviderMutationsUpdateArgsDto, SystemIdentityGoogleIdentityProviderRelatesFromArgsDto, SystemIdentityGoogleIdentityProviderRelatesToArgsDto, SystemIdentityGoogleIdentityProviderTaggedByArgsDto, SystemIdentityGoogleIdentityProviderUpdateDto, SystemIdentityGoogleIdentityProviderUpdateMessageDto, SystemIdentityGroupAssignedRolesArgsDto, SystemIdentityGroupAssociationsArgsDto, SystemIdentityGroupChildGroupsArgsDto, SystemIdentityGroupConfiguredByArgsDto, SystemIdentityGroupConnectionDto, SystemIdentityGroupDto, SystemIdentityGroupEdgeDto, SystemIdentityGroupInputDto, SystemIdentityGroupInputUpdateDto, SystemIdentityGroupMapsFromArgsDto, SystemIdentityGroupMapsToArgsDto, SystemIdentityGroupMembersArgsDto, SystemIdentityGroupMutationsCreateArgsDto, SystemIdentityGroupMutationsDto, SystemIdentityGroupMutationsUpdateArgsDto, SystemIdentityGroupParentGroupsArgsDto, SystemIdentityGroupRelatesFromArgsDto, SystemIdentityGroupRelatesToArgsDto, SystemIdentityGroupTaggedByArgsDto, SystemIdentityGroupUpdateDto, SystemIdentityGroupUpdateMessageDto, SystemIdentityGroup_AssignedEntitiesUnionConnectionDto, SystemIdentityGroup_AssignedEntitiesUnionDto, SystemIdentityGroup_AssignedEntitiesUnionEdgeDto, SystemIdentityGroup_ChildGroupsUnionConnectionDto, SystemIdentityGroup_ChildGroupsUnionDto, SystemIdentityGroup_ChildGroupsUnionEdgeDto, SystemIdentityGroup_MemberOfGroupsUnionConnectionDto, SystemIdentityGroup_MemberOfGroupsUnionDto, SystemIdentityGroup_MemberOfGroupsUnionEdgeDto, SystemIdentityGroup_ParentGroupsUnionConnectionDto, SystemIdentityGroup_ParentGroupsUnionDto, SystemIdentityGroup_ParentGroupsUnionEdgeDto, SystemIdentityIdentityProviderAssociationsArgsDto, SystemIdentityIdentityProviderConfiguredByArgsDto, SystemIdentityIdentityProviderConnectionDto, SystemIdentityIdentityProviderDto, SystemIdentityIdentityProviderEdgeDto, SystemIdentityIdentityProviderInterfaceConfiguredByArgsDto, SystemIdentityIdentityProviderInterfaceDto, SystemIdentityIdentityProviderInterfaceMapsFromArgsDto, SystemIdentityIdentityProviderInterfaceMapsToArgsDto, SystemIdentityIdentityProviderInterfaceRelatesFromArgsDto, SystemIdentityIdentityProviderInterfaceRelatesToArgsDto, SystemIdentityIdentityProviderInterfaceTaggedByArgsDto, SystemIdentityIdentityProviderMapsFromArgsDto, SystemIdentityIdentityProviderMapsToArgsDto, SystemIdentityIdentityProviderRelatesFromArgsDto, SystemIdentityIdentityProviderRelatesToArgsDto, SystemIdentityIdentityProviderTaggedByArgsDto, SystemIdentityIdentityProviderUpdateDto, SystemIdentityIdentityProviderUpdateMessageDto, SystemIdentityIdentityResourceAssociationsArgsDto, SystemIdentityIdentityResourceConfiguredByArgsDto, SystemIdentityIdentityResourceConnectionDto, SystemIdentityIdentityResourceDto, SystemIdentityIdentityResourceEdgeDto, SystemIdentityIdentityResourceInputDto, SystemIdentityIdentityResourceInputUpdateDto, SystemIdentityIdentityResourceMapsFromArgsDto, SystemIdentityIdentityResourceMapsToArgsDto, SystemIdentityIdentityResourceMutationsCreateArgsDto, SystemIdentityIdentityResourceMutationsDto, SystemIdentityIdentityResourceMutationsUpdateArgsDto, SystemIdentityIdentityResourceRelatesFromArgsDto, SystemIdentityIdentityResourceRelatesToArgsDto, SystemIdentityIdentityResourceTaggedByArgsDto, SystemIdentityIdentityResourceUpdateDto, SystemIdentityIdentityResourceUpdateMessageDto, SystemIdentityMailNotificationConfigurationAssociationsArgsDto, SystemIdentityMailNotificationConfigurationConfiguredByArgsDto, SystemIdentityMailNotificationConfigurationConnectionDto, SystemIdentityMailNotificationConfigurationDto, SystemIdentityMailNotificationConfigurationEdgeDto, SystemIdentityMailNotificationConfigurationInputDto, SystemIdentityMailNotificationConfigurationInputUpdateDto, SystemIdentityMailNotificationConfigurationMapsFromArgsDto, SystemIdentityMailNotificationConfigurationMapsToArgsDto, SystemIdentityMailNotificationConfigurationMutationsCreateArgsDto, SystemIdentityMailNotificationConfigurationMutationsDto, SystemIdentityMailNotificationConfigurationMutationsUpdateArgsDto, SystemIdentityMailNotificationConfigurationRelatesFromArgsDto, SystemIdentityMailNotificationConfigurationRelatesToArgsDto, SystemIdentityMailNotificationConfigurationTaggedByArgsDto, SystemIdentityMailNotificationConfigurationUpdateDto, SystemIdentityMailNotificationConfigurationUpdateMessageDto, SystemIdentityMailNotificationConfigurationUsedByArgsDto, SystemIdentityMicrosoftAdIdentityProviderAssociationsArgsDto, SystemIdentityMicrosoftAdIdentityProviderConfiguredByArgsDto, SystemIdentityMicrosoftAdIdentityProviderConnectionDto, SystemIdentityMicrosoftAdIdentityProviderDto, SystemIdentityMicrosoftAdIdentityProviderEdgeDto, SystemIdentityMicrosoftAdIdentityProviderInputDto, SystemIdentityMicrosoftAdIdentityProviderInputUpdateDto, SystemIdentityMicrosoftAdIdentityProviderMapsFromArgsDto, SystemIdentityMicrosoftAdIdentityProviderMapsToArgsDto, SystemIdentityMicrosoftAdIdentityProviderMutationsCreateArgsDto, SystemIdentityMicrosoftAdIdentityProviderMutationsDto, SystemIdentityMicrosoftAdIdentityProviderMutationsUpdateArgsDto, SystemIdentityMicrosoftAdIdentityProviderRelatesFromArgsDto, SystemIdentityMicrosoftAdIdentityProviderRelatesToArgsDto, SystemIdentityMicrosoftAdIdentityProviderTaggedByArgsDto, SystemIdentityMicrosoftAdIdentityProviderUpdateDto, SystemIdentityMicrosoftAdIdentityProviderUpdateMessageDto, SystemIdentityMicrosoftIdentityProviderAssociationsArgsDto, SystemIdentityMicrosoftIdentityProviderConfiguredByArgsDto, SystemIdentityMicrosoftIdentityProviderConnectionDto, SystemIdentityMicrosoftIdentityProviderDto, SystemIdentityMicrosoftIdentityProviderEdgeDto, SystemIdentityMicrosoftIdentityProviderInputDto, SystemIdentityMicrosoftIdentityProviderInputUpdateDto, SystemIdentityMicrosoftIdentityProviderMapsFromArgsDto, SystemIdentityMicrosoftIdentityProviderMapsToArgsDto, SystemIdentityMicrosoftIdentityProviderMutationsCreateArgsDto, SystemIdentityMicrosoftIdentityProviderMutationsDto, SystemIdentityMicrosoftIdentityProviderMutationsUpdateArgsDto, SystemIdentityMicrosoftIdentityProviderRelatesFromArgsDto, SystemIdentityMicrosoftIdentityProviderRelatesToArgsDto, SystemIdentityMicrosoftIdentityProviderTaggedByArgsDto, SystemIdentityMicrosoftIdentityProviderUpdateDto, SystemIdentityMicrosoftIdentityProviderUpdateMessageDto, SystemIdentityOctoTenantIdentityProviderAssociationsArgsDto, SystemIdentityOctoTenantIdentityProviderConfiguredByArgsDto, SystemIdentityOctoTenantIdentityProviderConnectionDto, SystemIdentityOctoTenantIdentityProviderDto, SystemIdentityOctoTenantIdentityProviderEdgeDto, SystemIdentityOctoTenantIdentityProviderInputDto, SystemIdentityOctoTenantIdentityProviderInputUpdateDto, SystemIdentityOctoTenantIdentityProviderMapsFromArgsDto, SystemIdentityOctoTenantIdentityProviderMapsToArgsDto, SystemIdentityOctoTenantIdentityProviderMutationsCreateArgsDto, SystemIdentityOctoTenantIdentityProviderMutationsDto, SystemIdentityOctoTenantIdentityProviderMutationsUpdateArgsDto, SystemIdentityOctoTenantIdentityProviderRelatesFromArgsDto, SystemIdentityOctoTenantIdentityProviderRelatesToArgsDto, SystemIdentityOctoTenantIdentityProviderTaggedByArgsDto, SystemIdentityOctoTenantIdentityProviderUpdateDto, SystemIdentityOctoTenantIdentityProviderUpdateMessageDto, SystemIdentityOpenLdapIdentityProviderAssociationsArgsDto, SystemIdentityOpenLdapIdentityProviderConfiguredByArgsDto, SystemIdentityOpenLdapIdentityProviderConnectionDto, SystemIdentityOpenLdapIdentityProviderDto, SystemIdentityOpenLdapIdentityProviderEdgeDto, SystemIdentityOpenLdapIdentityProviderInputDto, SystemIdentityOpenLdapIdentityProviderInputUpdateDto, SystemIdentityOpenLdapIdentityProviderMapsFromArgsDto, SystemIdentityOpenLdapIdentityProviderMapsToArgsDto, SystemIdentityOpenLdapIdentityProviderMutationsCreateArgsDto, SystemIdentityOpenLdapIdentityProviderMutationsDto, SystemIdentityOpenLdapIdentityProviderMutationsUpdateArgsDto, SystemIdentityOpenLdapIdentityProviderRelatesFromArgsDto, SystemIdentityOpenLdapIdentityProviderRelatesToArgsDto, SystemIdentityOpenLdapIdentityProviderTaggedByArgsDto, SystemIdentityOpenLdapIdentityProviderUpdateDto, SystemIdentityOpenLdapIdentityProviderUpdateMessageDto, SystemIdentityPermissionAssociationsArgsDto, SystemIdentityPermissionConfiguredByArgsDto, SystemIdentityPermissionConnectionDto, SystemIdentityPermissionDto, SystemIdentityPermissionEdgeDto, SystemIdentityPermissionInputDto, SystemIdentityPermissionInputUpdateDto, SystemIdentityPermissionMapsFromArgsDto, SystemIdentityPermissionMapsToArgsDto, SystemIdentityPermissionMutationsCreateArgsDto, SystemIdentityPermissionMutationsDto, SystemIdentityPermissionMutationsUpdateArgsDto, SystemIdentityPermissionRelatesFromArgsDto, SystemIdentityPermissionRelatesToArgsDto, SystemIdentityPermissionRoleAssociationsArgsDto, SystemIdentityPermissionRoleConfiguredByArgsDto, SystemIdentityPermissionRoleConnectionDto, SystemIdentityPermissionRoleDto, SystemIdentityPermissionRoleEdgeDto, SystemIdentityPermissionRoleInputDto, SystemIdentityPermissionRoleInputUpdateDto, SystemIdentityPermissionRoleMapsFromArgsDto, SystemIdentityPermissionRoleMapsToArgsDto, SystemIdentityPermissionRoleMutationsCreateArgsDto, SystemIdentityPermissionRoleMutationsDto, SystemIdentityPermissionRoleMutationsUpdateArgsDto, SystemIdentityPermissionRoleRelatesFromArgsDto, SystemIdentityPermissionRoleRelatesToArgsDto, SystemIdentityPermissionRoleTaggedByArgsDto, SystemIdentityPermissionRoleUpdateDto, SystemIdentityPermissionRoleUpdateMessageDto, SystemIdentityPermissionTaggedByArgsDto, SystemIdentityPermissionUpdateDto, SystemIdentityPermissionUpdateMessageDto, SystemIdentityPersistedGrantAssociationsArgsDto, SystemIdentityPersistedGrantConfiguredByArgsDto, SystemIdentityPersistedGrantConnectionDto, SystemIdentityPersistedGrantDto, SystemIdentityPersistedGrantEdgeDto, SystemIdentityPersistedGrantInputDto, SystemIdentityPersistedGrantInputUpdateDto, SystemIdentityPersistedGrantMapsFromArgsDto, SystemIdentityPersistedGrantMapsToArgsDto, SystemIdentityPersistedGrantMutationsCreateArgsDto, SystemIdentityPersistedGrantMutationsDto, SystemIdentityPersistedGrantMutationsUpdateArgsDto, SystemIdentityPersistedGrantRelatesFromArgsDto, SystemIdentityPersistedGrantRelatesToArgsDto, SystemIdentityPersistedGrantTaggedByArgsDto, SystemIdentityPersistedGrantUpdateDto, SystemIdentityPersistedGrantUpdateMessageDto, SystemIdentityResourceAssociationsArgsDto, SystemIdentityResourceConfiguredByArgsDto, SystemIdentityResourceConnectionDto, SystemIdentityResourceDto, SystemIdentityResourceEdgeDto, SystemIdentityResourceInterfaceConfiguredByArgsDto, SystemIdentityResourceInterfaceDto, SystemIdentityResourceInterfaceMapsFromArgsDto, SystemIdentityResourceInterfaceMapsToArgsDto, SystemIdentityResourceInterfaceRelatesFromArgsDto, SystemIdentityResourceInterfaceRelatesToArgsDto, SystemIdentityResourceInterfaceTaggedByArgsDto, SystemIdentityResourceMapsFromArgsDto, SystemIdentityResourceMapsToArgsDto, SystemIdentityResourceRelatesFromArgsDto, SystemIdentityResourceRelatesToArgsDto, SystemIdentityResourceTaggedByArgsDto, SystemIdentityResourceUpdateDto, SystemIdentityResourceUpdateMessageDto, SystemIdentityRoleAssignedEntitiesArgsDto, SystemIdentityRoleAssociationsArgsDto, SystemIdentityRoleClaimDto, SystemIdentityRoleClaimInputDto, SystemIdentityRoleConfiguredByArgsDto, SystemIdentityRoleConnectionDto, SystemIdentityRoleDto, SystemIdentityRoleEdgeDto, SystemIdentityRoleInputDto, SystemIdentityRoleInputUpdateDto, SystemIdentityRoleMapsFromArgsDto, SystemIdentityRoleMapsToArgsDto, SystemIdentityRoleMutationsCreateArgsDto, SystemIdentityRoleMutationsDto, SystemIdentityRoleMutationsUpdateArgsDto, SystemIdentityRoleRelatesFromArgsDto, SystemIdentityRoleRelatesToArgsDto, SystemIdentityRoleTaggedByArgsDto, SystemIdentityRoleUpdateDto, SystemIdentityRoleUpdateMessageDto, SystemIdentityRole_AssignedRolesUnionConnectionDto, SystemIdentityRole_AssignedRolesUnionDto, SystemIdentityRole_AssignedRolesUnionEdgeDto, SystemIdentitySecretDto, SystemIdentitySecretInputDto, SystemIdentityUserAssignedRolesArgsDto, SystemIdentityUserAssociationsArgsDto, SystemIdentityUserClaimDto, SystemIdentityUserClaimInputDto, SystemIdentityUserConfiguredByArgsDto, SystemIdentityUserConnectionDto, SystemIdentityUserDto, SystemIdentityUserEdgeDto, SystemIdentityUserInputDto, SystemIdentityUserInputUpdateDto, SystemIdentityUserLoginDto, SystemIdentityUserLoginInputDto, SystemIdentityUserMapsFromArgsDto, SystemIdentityUserMapsToArgsDto, SystemIdentityUserMemberOfGroupsArgsDto, SystemIdentityUserMutationsCreateArgsDto, SystemIdentityUserMutationsDto, SystemIdentityUserMutationsUpdateArgsDto, SystemIdentityUserRelatesFromArgsDto, SystemIdentityUserRelatesToArgsDto, SystemIdentityUserTaggedByArgsDto, SystemIdentityUserTokenDto, SystemIdentityUserTokenInputDto, SystemIdentityUserUpdateDto, SystemIdentityUserUpdateMessageDto, SystemIdentityUser_MembersUnionConnectionDto, SystemIdentityUser_MembersUnionDto, SystemIdentityUser_MembersUnionEdgeDto, SystemMigrationHistoryAssociationsArgsDto, SystemMigrationHistoryConfiguredByArgsDto, SystemMigrationHistoryConnectionDto, SystemMigrationHistoryDto, SystemMigrationHistoryEdgeDto, SystemMigrationHistoryInputDto, SystemMigrationHistoryInputUpdateDto, SystemMigrationHistoryMapsFromArgsDto, SystemMigrationHistoryMapsToArgsDto, SystemMigrationHistoryMutationsCreateArgsDto, SystemMigrationHistoryMutationsDto, SystemMigrationHistoryMutationsUpdateArgsDto, SystemMigrationHistoryRelatesFromArgsDto, SystemMigrationHistoryRelatesToArgsDto, SystemMigrationHistoryTaggedByArgsDto, SystemMigrationHistoryUpdateDto, SystemMigrationHistoryUpdateMessageDto, SystemNotificationCssTemplateConfigurationAssociationsArgsDto, SystemNotificationCssTemplateConfigurationConfiguredByArgsDto, SystemNotificationCssTemplateConfigurationConnectionDto, SystemNotificationCssTemplateConfigurationDto, SystemNotificationCssTemplateConfigurationEdgeDto, SystemNotificationCssTemplateConfigurationInputDto, SystemNotificationCssTemplateConfigurationInputUpdateDto, SystemNotificationCssTemplateConfigurationMapsFromArgsDto, SystemNotificationCssTemplateConfigurationMapsToArgsDto, SystemNotificationCssTemplateConfigurationMutationsCreateArgsDto, SystemNotificationCssTemplateConfigurationMutationsDto, SystemNotificationCssTemplateConfigurationMutationsUpdateArgsDto, SystemNotificationCssTemplateConfigurationRelatesFromArgsDto, SystemNotificationCssTemplateConfigurationRelatesToArgsDto, SystemNotificationCssTemplateConfigurationTaggedByArgsDto, SystemNotificationCssTemplateConfigurationUpdateDto, SystemNotificationCssTemplateConfigurationUpdateMessageDto, SystemNotificationCssTemplateConfigurationUsedByArgsDto, SystemNotificationEventAssociationsArgsDto, SystemNotificationEventConfiguredByArgsDto, SystemNotificationEventConnectionDto, SystemNotificationEventDto, SystemNotificationEventEdgeDto, SystemNotificationEventInputDto, SystemNotificationEventInputUpdateDto, SystemNotificationEventMapsFromArgsDto, SystemNotificationEventMapsToArgsDto, SystemNotificationEventMutationsCreateArgsDto, SystemNotificationEventMutationsDto, SystemNotificationEventMutationsUpdateArgsDto, SystemNotificationEventRelatesFromArgsDto, SystemNotificationEventRelatesToArgsDto, SystemNotificationEventTaggedByArgsDto, SystemNotificationEventUpdateDto, SystemNotificationEventUpdateMessageDto, SystemNotificationNotificationTemplateAssociationsArgsDto, SystemNotificationNotificationTemplateConfiguredByArgsDto, SystemNotificationNotificationTemplateConnectionDto, SystemNotificationNotificationTemplateDto, SystemNotificationNotificationTemplateEdgeDto, SystemNotificationNotificationTemplateInputDto, SystemNotificationNotificationTemplateInputUpdateDto, SystemNotificationNotificationTemplateMapsFromArgsDto, SystemNotificationNotificationTemplateMapsToArgsDto, SystemNotificationNotificationTemplateMutationsCreateArgsDto, SystemNotificationNotificationTemplateMutationsDto, SystemNotificationNotificationTemplateMutationsUpdateArgsDto, SystemNotificationNotificationTemplateRelatesFromArgsDto, SystemNotificationNotificationTemplateRelatesToArgsDto, SystemNotificationNotificationTemplateTaggedByArgsDto, SystemNotificationNotificationTemplateUpdateDto, SystemNotificationNotificationTemplateUpdateMessageDto, SystemNotificationStatefulEventAssociationsArgsDto, SystemNotificationStatefulEventConfiguredByArgsDto, SystemNotificationStatefulEventConnectionDto, SystemNotificationStatefulEventDto, SystemNotificationStatefulEventEdgeDto, SystemNotificationStatefulEventInputDto, SystemNotificationStatefulEventInputUpdateDto, SystemNotificationStatefulEventMapsFromArgsDto, SystemNotificationStatefulEventMapsToArgsDto, SystemNotificationStatefulEventMutationsCreateArgsDto, SystemNotificationStatefulEventMutationsDto, SystemNotificationStatefulEventMutationsUpdateArgsDto, SystemNotificationStatefulEventRelatesFromArgsDto, SystemNotificationStatefulEventRelatesToArgsDto, SystemNotificationStatefulEventTaggedByArgsDto, SystemNotificationStatefulEventUpdateDto, SystemNotificationStatefulEventUpdateMessageDto, SystemPersistentQueryAssociationsArgsDto, SystemPersistentQueryConfiguredByArgsDto, SystemPersistentQueryConnectionDto, SystemPersistentQueryDto, SystemPersistentQueryEdgeDto, SystemPersistentQueryInterfaceConfiguredByArgsDto, SystemPersistentQueryInterfaceDto, SystemPersistentQueryInterfaceMapsFromArgsDto, SystemPersistentQueryInterfaceMapsToArgsDto, SystemPersistentQueryInterfaceRelatesFromArgsDto, SystemPersistentQueryInterfaceRelatesToArgsDto, SystemPersistentQueryInterfaceTaggedByArgsDto, SystemPersistentQueryMapsFromArgsDto, SystemPersistentQueryMapsToArgsDto, SystemPersistentQueryRelatesFromArgsDto, SystemPersistentQueryRelatesToArgsDto, SystemPersistentQueryTaggedByArgsDto, SystemPersistentQueryUpdateDto, SystemPersistentQueryUpdateMessageDto, SystemReportingConnectionInfoAssociationsArgsDto, SystemReportingConnectionInfoConfiguredByArgsDto, SystemReportingConnectionInfoConnectionDto, SystemReportingConnectionInfoDto, SystemReportingConnectionInfoEdgeDto, SystemReportingConnectionInfoInputDto, SystemReportingConnectionInfoInputUpdateDto, SystemReportingConnectionInfoMapsFromArgsDto, SystemReportingConnectionInfoMapsToArgsDto, SystemReportingConnectionInfoMutationsCreateArgsDto, SystemReportingConnectionInfoMutationsDto, SystemReportingConnectionInfoMutationsUpdateArgsDto, SystemReportingConnectionInfoRelatesFromArgsDto, SystemReportingConnectionInfoRelatesToArgsDto, SystemReportingConnectionInfoTaggedByArgsDto, SystemReportingConnectionInfoUpdateDto, SystemReportingConnectionInfoUpdateMessageDto, SystemReportingConnectionInfoUsedByArgsDto, SystemReportingFileSystemContainerAssociationsArgsDto, SystemReportingFileSystemContainerConfiguredByArgsDto, SystemReportingFileSystemContainerConnectionDto, SystemReportingFileSystemContainerDto, SystemReportingFileSystemContainerEdgeDto, SystemReportingFileSystemContainerInterfaceConfiguredByArgsDto, SystemReportingFileSystemContainerInterfaceDto, SystemReportingFileSystemContainerInterfaceMapsFromArgsDto, SystemReportingFileSystemContainerInterfaceMapsToArgsDto, SystemReportingFileSystemContainerInterfaceParentArgsDto, SystemReportingFileSystemContainerInterfaceRelatesFromArgsDto, SystemReportingFileSystemContainerInterfaceRelatesToArgsDto, SystemReportingFileSystemContainerInterfaceTaggedByArgsDto, SystemReportingFileSystemContainerMapsFromArgsDto, SystemReportingFileSystemContainerMapsToArgsDto, SystemReportingFileSystemContainerParentArgsDto, SystemReportingFileSystemContainerRelatesFromArgsDto, SystemReportingFileSystemContainerRelatesToArgsDto, SystemReportingFileSystemContainerTaggedByArgsDto, SystemReportingFileSystemContainerUpdateDto, SystemReportingFileSystemContainerUpdateMessageDto, SystemReportingFileSystemContainer_ChildrenUnionConnectionDto, SystemReportingFileSystemContainer_ChildrenUnionDto, SystemReportingFileSystemContainer_ChildrenUnionEdgeDto, SystemReportingFileSystemEntityAssociationsArgsDto, SystemReportingFileSystemEntityConfiguredByArgsDto, SystemReportingFileSystemEntityConnectionDto, SystemReportingFileSystemEntityDto, SystemReportingFileSystemEntityEdgeDto, SystemReportingFileSystemEntityInterfaceConfiguredByArgsDto, SystemReportingFileSystemEntityInterfaceDto, SystemReportingFileSystemEntityInterfaceMapsFromArgsDto, SystemReportingFileSystemEntityInterfaceMapsToArgsDto, SystemReportingFileSystemEntityInterfaceRelatesFromArgsDto, SystemReportingFileSystemEntityInterfaceRelatesToArgsDto, SystemReportingFileSystemEntityInterfaceTaggedByArgsDto, SystemReportingFileSystemEntityMapsFromArgsDto, SystemReportingFileSystemEntityMapsToArgsDto, SystemReportingFileSystemEntityRelatesFromArgsDto, SystemReportingFileSystemEntityRelatesToArgsDto, SystemReportingFileSystemEntityTaggedByArgsDto, SystemReportingFileSystemEntityUpdateDto, SystemReportingFileSystemEntityUpdateMessageDto, SystemReportingFileSystemItemAssociationsArgsDto, SystemReportingFileSystemItemConfiguredByArgsDto, SystemReportingFileSystemItemConnectionDto, SystemReportingFileSystemItemDto, SystemReportingFileSystemItemEdgeDto, SystemReportingFileSystemItemInputDto, SystemReportingFileSystemItemInputUpdateDto, SystemReportingFileSystemItemMapsFromArgsDto, SystemReportingFileSystemItemMapsToArgsDto, SystemReportingFileSystemItemMutationsCreateArgsDto, SystemReportingFileSystemItemMutationsDto, SystemReportingFileSystemItemMutationsUpdateArgsDto, SystemReportingFileSystemItemParentArgsDto, SystemReportingFileSystemItemRelatesFromArgsDto, SystemReportingFileSystemItemRelatesToArgsDto, SystemReportingFileSystemItemTaggedByArgsDto, SystemReportingFileSystemItemUpdateDto, SystemReportingFileSystemItemUpdateMessageDto, SystemReportingFolderAssociationsArgsDto, SystemReportingFolderChildrenArgsDto, SystemReportingFolderConfiguredByArgsDto, SystemReportingFolderConnectionDto, SystemReportingFolderDto, SystemReportingFolderEdgeDto, SystemReportingFolderInputDto, SystemReportingFolderInputUpdateDto, SystemReportingFolderMapsFromArgsDto, SystemReportingFolderMapsToArgsDto, SystemReportingFolderMutationsCreateArgsDto, SystemReportingFolderMutationsDto, SystemReportingFolderMutationsUpdateArgsDto, SystemReportingFolderParentArgsDto, SystemReportingFolderRelatesFromArgsDto, SystemReportingFolderRelatesToArgsDto, SystemReportingFolderRootAssociationsArgsDto, SystemReportingFolderRootChildrenArgsDto, SystemReportingFolderRootConfiguredByArgsDto, SystemReportingFolderRootConnectionDto, SystemReportingFolderRootDto, SystemReportingFolderRootEdgeDto, SystemReportingFolderRootInputDto, SystemReportingFolderRootInputUpdateDto, SystemReportingFolderRootMapsFromArgsDto, SystemReportingFolderRootMapsToArgsDto, SystemReportingFolderRootMutationsCreateArgsDto, SystemReportingFolderRootMutationsDto, SystemReportingFolderRootMutationsUpdateArgsDto, SystemReportingFolderRootRelatesFromArgsDto, SystemReportingFolderRootRelatesToArgsDto, SystemReportingFolderRootTaggedByArgsDto, SystemReportingFolderRootUpdateDto, SystemReportingFolderRootUpdateMessageDto, SystemReportingFolderTaggedByArgsDto, SystemReportingFolderUpdateDto, SystemReportingFolderUpdateMessageDto, SystemReportingFolder_ParentUnionConnectionDto, SystemReportingFolder_ParentUnionDto, SystemReportingFolder_ParentUnionEdgeDto, SystemSimpleRtQueryAssociationsArgsDto, SystemSimpleRtQueryConfiguredByArgsDto, SystemSimpleRtQueryConnectionDto, SystemSimpleRtQueryDto, SystemSimpleRtQueryEdgeDto, SystemSimpleRtQueryInputDto, SystemSimpleRtQueryInputUpdateDto, SystemSimpleRtQueryMapsFromArgsDto, SystemSimpleRtQueryMapsToArgsDto, SystemSimpleRtQueryMutationsCreateArgsDto, SystemSimpleRtQueryMutationsDto, SystemSimpleRtQueryMutationsUpdateArgsDto, SystemSimpleRtQueryRelatesFromArgsDto, SystemSimpleRtQueryRelatesToArgsDto, SystemSimpleRtQueryTaggedByArgsDto, SystemSimpleRtQueryUpdateDto, SystemSimpleRtQueryUpdateMessageDto, SystemSimpleSdQueryAssociationsArgsDto, SystemSimpleSdQueryConfiguredByArgsDto, SystemSimpleSdQueryConnectionDto, SystemSimpleSdQueryDto, SystemSimpleSdQueryEdgeDto, SystemSimpleSdQueryInputDto, SystemSimpleSdQueryInputUpdateDto, SystemSimpleSdQueryMapsFromArgsDto, SystemSimpleSdQueryMapsToArgsDto, SystemSimpleSdQueryMutationsCreateArgsDto, SystemSimpleSdQueryMutationsDto, SystemSimpleSdQueryMutationsUpdateArgsDto, SystemSimpleSdQueryRelatesFromArgsDto, SystemSimpleSdQueryRelatesToArgsDto, SystemSimpleSdQueryTaggedByArgsDto, SystemSimpleSdQueryUpdateDto, SystemSimpleSdQueryUpdateMessageDto, SystemSortOrderItemDto, SystemSortOrderItemInputDto, SystemStreamDataQueryAssociationsArgsDto, SystemStreamDataQueryConfiguredByArgsDto, SystemStreamDataQueryConnectionDto, SystemStreamDataQueryDto, SystemStreamDataQueryEdgeDto, SystemStreamDataQueryInterfaceConfiguredByArgsDto, SystemStreamDataQueryInterfaceDto, SystemStreamDataQueryInterfaceMapsFromArgsDto, SystemStreamDataQueryInterfaceMapsToArgsDto, SystemStreamDataQueryInterfaceRelatesFromArgsDto, SystemStreamDataQueryInterfaceRelatesToArgsDto, SystemStreamDataQueryInterfaceTaggedByArgsDto, SystemStreamDataQueryMapsFromArgsDto, SystemStreamDataQueryMapsToArgsDto, SystemStreamDataQueryRelatesFromArgsDto, SystemStreamDataQueryRelatesToArgsDto, SystemStreamDataQueryTaggedByArgsDto, SystemStreamDataQueryUpdateDto, SystemStreamDataQueryUpdateMessageDto, SystemTenantAssociationsArgsDto, SystemTenantConfigurationAssociationsArgsDto, SystemTenantConfigurationConfiguredByArgsDto, SystemTenantConfigurationConnectionDto, SystemTenantConfigurationDto, SystemTenantConfigurationEdgeDto, SystemTenantConfigurationInputDto, SystemTenantConfigurationInputUpdateDto, SystemTenantConfigurationMapsFromArgsDto, SystemTenantConfigurationMapsToArgsDto, SystemTenantConfigurationMutationsCreateArgsDto, SystemTenantConfigurationMutationsDto, SystemTenantConfigurationMutationsUpdateArgsDto, SystemTenantConfigurationRelatesFromArgsDto, SystemTenantConfigurationRelatesToArgsDto, SystemTenantConfigurationTaggedByArgsDto, SystemTenantConfigurationUpdateDto, SystemTenantConfigurationUpdateMessageDto, SystemTenantConfigurationUsedByArgsDto, SystemTenantConfiguredByArgsDto, SystemTenantConnectionDto, SystemTenantDto, SystemTenantEdgeDto, SystemTenantInputDto, SystemTenantInputUpdateDto, SystemTenantMapsFromArgsDto, SystemTenantMapsToArgsDto, SystemTenantModeConfigurationAssociationsArgsDto, SystemTenantModeConfigurationConfiguredByArgsDto, SystemTenantModeConfigurationConnectionDto, SystemTenantModeConfigurationDto, SystemTenantModeConfigurationEdgeDto, SystemTenantModeConfigurationInputDto, SystemTenantModeConfigurationInputUpdateDto, SystemTenantModeConfigurationMapsFromArgsDto, SystemTenantModeConfigurationMapsToArgsDto, SystemTenantModeConfigurationMutationsCreateArgsDto, SystemTenantModeConfigurationMutationsDto, SystemTenantModeConfigurationMutationsUpdateArgsDto, SystemTenantModeConfigurationRelatesFromArgsDto, SystemTenantModeConfigurationRelatesToArgsDto, SystemTenantModeConfigurationTaggedByArgsDto, SystemTenantModeConfigurationUpdateDto, SystemTenantModeConfigurationUpdateMessageDto, SystemTenantModeConfigurationUsedByArgsDto, SystemTenantMutationsCreateArgsDto, SystemTenantMutationsDto, SystemTenantMutationsUpdateArgsDto, SystemTenantRelatesFromArgsDto, SystemTenantRelatesToArgsDto, SystemTenantTaggedByArgsDto, SystemTenantUpdateDto, SystemTenantUpdateMessageDto, SystemTextSearchFilterDto, SystemTextSearchFilterInputDto, SystemUiBrandingAssociationsArgsDto, SystemUiBrandingConfiguredByArgsDto, SystemUiBrandingConnectionDto, SystemUiBrandingDto, SystemUiBrandingEdgeDto, SystemUiBrandingInputDto, SystemUiBrandingInputUpdateDto, SystemUiBrandingMapsFromArgsDto, SystemUiBrandingMapsToArgsDto, SystemUiBrandingMutationsCreateArgsDto, SystemUiBrandingMutationsDto, SystemUiBrandingMutationsUpdateArgsDto, SystemUiBrandingRelatesFromArgsDto, SystemUiBrandingRelatesToArgsDto, SystemUiBrandingTaggedByArgsDto, SystemUiBrandingUpdateDto, SystemUiBrandingUpdateMessageDto, SystemUiDashboardAssociationsArgsDto, SystemUiDashboardChildrenArgsDto, SystemUiDashboardConfiguredByArgsDto, SystemUiDashboardConnectionDto, SystemUiDashboardDto, SystemUiDashboardEdgeDto, SystemUiDashboardInputDto, SystemUiDashboardInputUpdateDto, SystemUiDashboardMapsFromArgsDto, SystemUiDashboardMapsToArgsDto, SystemUiDashboardMutationsCreateArgsDto, SystemUiDashboardMutationsDto, SystemUiDashboardMutationsUpdateArgsDto, SystemUiDashboardRelatesFromArgsDto, SystemUiDashboardRelatesToArgsDto, SystemUiDashboardTaggedByArgsDto, SystemUiDashboardUpdateDto, SystemUiDashboardUpdateMessageDto, SystemUiDashboardWidgetAssociationsArgsDto, SystemUiDashboardWidgetConfiguredByArgsDto, SystemUiDashboardWidgetConnectionDto, SystemUiDashboardWidgetDto, SystemUiDashboardWidgetEdgeDto, SystemUiDashboardWidgetInputDto, SystemUiDashboardWidgetInputUpdateDto, SystemUiDashboardWidgetMapsFromArgsDto, SystemUiDashboardWidgetMapsToArgsDto, SystemUiDashboardWidgetMutationsCreateArgsDto, SystemUiDashboardWidgetMutationsDto, SystemUiDashboardWidgetMutationsUpdateArgsDto, SystemUiDashboardWidgetParentArgsDto, SystemUiDashboardWidgetRelatesFromArgsDto, SystemUiDashboardWidgetRelatesToArgsDto, SystemUiDashboardWidgetTaggedByArgsDto, SystemUiDashboardWidgetUpdateDto, SystemUiDashboardWidgetUpdateMessageDto, SystemUiDashboardWidget_ChildrenUnionConnectionDto, SystemUiDashboardWidget_ChildrenUnionDto, SystemUiDashboardWidget_ChildrenUnionEdgeDto, SystemUiDashboard_ParentUnionConnectionDto, SystemUiDashboard_ParentUnionDto, SystemUiDashboard_ParentUnionEdgeDto, SystemUiProcessDiagramAssociationsArgsDto, SystemUiProcessDiagramConfiguredByArgsDto, SystemUiProcessDiagramConnectionDto, SystemUiProcessDiagramDto, SystemUiProcessDiagramEdgeDto, SystemUiProcessDiagramInputDto, SystemUiProcessDiagramInputUpdateDto, SystemUiProcessDiagramMapsFromArgsDto, SystemUiProcessDiagramMapsToArgsDto, SystemUiProcessDiagramMutationsCreateArgsDto, SystemUiProcessDiagramMutationsDto, SystemUiProcessDiagramMutationsUpdateArgsDto, SystemUiProcessDiagramRelatesFromArgsDto, SystemUiProcessDiagramRelatesToArgsDto, SystemUiProcessDiagramTaggedByArgsDto, SystemUiProcessDiagramUpdateDto, SystemUiProcessDiagramUpdateMessageDto, SystemUiSymbolDefinitionAssociationsArgsDto, SystemUiSymbolDefinitionConfiguredByArgsDto, SystemUiSymbolDefinitionConnectionDto, SystemUiSymbolDefinitionDto, SystemUiSymbolDefinitionEdgeDto, SystemUiSymbolDefinitionInputDto, SystemUiSymbolDefinitionInputUpdateDto, SystemUiSymbolDefinitionMapsFromArgsDto, SystemUiSymbolDefinitionMapsToArgsDto, SystemUiSymbolDefinitionMutationsCreateArgsDto, SystemUiSymbolDefinitionMutationsDto, SystemUiSymbolDefinitionMutationsUpdateArgsDto, SystemUiSymbolDefinitionParentArgsDto, SystemUiSymbolDefinitionRelatesFromArgsDto, SystemUiSymbolDefinitionRelatesToArgsDto, SystemUiSymbolDefinitionTaggedByArgsDto, SystemUiSymbolDefinitionUpdateDto, SystemUiSymbolDefinitionUpdateMessageDto, SystemUiSymbolDefinition_ChildrenUnionConnectionDto, SystemUiSymbolDefinition_ChildrenUnionDto, SystemUiSymbolDefinition_ChildrenUnionEdgeDto, SystemUiSymbolLibraryAssociationsArgsDto, SystemUiSymbolLibraryChildrenArgsDto, SystemUiSymbolLibraryConfiguredByArgsDto, SystemUiSymbolLibraryConnectionDto, SystemUiSymbolLibraryDto, SystemUiSymbolLibraryEdgeDto, SystemUiSymbolLibraryInputDto, SystemUiSymbolLibraryInputUpdateDto, SystemUiSymbolLibraryMapsFromArgsDto, SystemUiSymbolLibraryMapsToArgsDto, SystemUiSymbolLibraryMutationsCreateArgsDto, SystemUiSymbolLibraryMutationsDto, SystemUiSymbolLibraryMutationsUpdateArgsDto, SystemUiSymbolLibraryRelatesFromArgsDto, SystemUiSymbolLibraryRelatesToArgsDto, SystemUiSymbolLibraryTaggedByArgsDto, SystemUiSymbolLibraryUpdateDto, SystemUiSymbolLibraryUpdateMessageDto, SystemUiSymbolLibrary_ParentUnionConnectionDto, SystemUiSymbolLibrary_ParentUnionDto, SystemUiSymbolLibrary_ParentUnionEdgeDto, SystemUiThemeGradientDto, SystemUiThemeGradientInputDto, SystemUiThemePaletteDto, SystemUiThemePaletteInputDto, SystemUiuiElementAssociationsArgsDto, SystemUiuiElementConfiguredByArgsDto, SystemUiuiElementConnectionDto, SystemUiuiElementDto, SystemUiuiElementEdgeDto, SystemUiuiElementInterfaceConfiguredByArgsDto, SystemUiuiElementInterfaceDto, SystemUiuiElementInterfaceMapsFromArgsDto, SystemUiuiElementInterfaceMapsToArgsDto, SystemUiuiElementInterfaceRelatesFromArgsDto, SystemUiuiElementInterfaceRelatesToArgsDto, SystemUiuiElementInterfaceTaggedByArgsDto, SystemUiuiElementMapsFromArgsDto, SystemUiuiElementMapsToArgsDto, SystemUiuiElementRelatesFromArgsDto, SystemUiuiElementRelatesToArgsDto, SystemUiuiElementTaggedByArgsDto, SystemUiuiElementUpdateDto, SystemUiuiElementUpdateMessageDto, TenantDto, TenantIdProvider, TusUploadOptions, TusUploadResult, UpdateGroupDto, UpgradeCheckResponseDto, UserDto };