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 } /** * A half-open UTC time window `[fromUtc, toUtc)` used to scope an archive-data export to a slice * of the archive (AB#4230, concept §3.1 `metadata.window`). Both bounds are ISO-8601 UTC strings. * * `fromUtc` is inclusive, `toUtc` is exclusive. When the whole archive is exported no window is * passed at all (the caller sends `undefined`), which the bot job records as `window: null` in the * export metadata. */ interface TimeWindowDto { /** Inclusive lower bound, ISO-8601 UTC (e.g. `2026-06-01T00:00:00Z`). */ fromUtc: string; /** Exclusive upper bound, ISO-8601 UTC (e.g. `2026-07-01T00:00:00Z`). */ toUtc: string; } 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 { /** Runtime ID of the client entity. Read-only; used to identify the client as a group member. */ rtId?: string; isEnabled: boolean; clientId: string; clientName: string; clientUri: string; clientSecret: string; requireClientSecret: boolean; allowedGrantTypes: string[]; redirectUris: string[]; postLogoutRedirectUris: string[]; allowedCorsOrigins: string[]; allowedScopes: string[]; isOfflineAccessEnabled: boolean; /** * When true and this is a ClientCredentials client living in a parent tenant, * every new child tenant gets a mirror of this client auto-provisioned. * Enables a single ClientCredentials identity (typically a CI/CD agent) to * reach every tenant on the instance without per-tenant manual setup. * Optional — backend treats absence as "do not modify" on PUT. */ autoProvisionInChildTenants?: boolean; /** * When set, this client is a mirror provisioned from the named parent tenant. * Sub-tenant UIs surface this as a read-only "Provisioned by parent tenant" * indicator; the client must not be edited locally because the next sync * would overwrite the change. Empty / undefined on locally-owned clients. */ provisionedByParentTenantId?: string; /** * When true, this client was self-registered via RFC 7591 Dynamic Client * Registration (client id prefix `octo-dcr-`). Such clients are server-managed * and expire automatically; UIs render them read-only and exclude them from * export. Read-only — the backend ignores it on write. */ dynamicRegistration?: boolean; /** * Expiry of a dynamically-registered client (registration time + TTL) as an * ISO 8601 string. After this moment the backend erases the client and its * per-tenant mirrors. Undefined on regular clients. Read-only. */ dynamicRegistrationExpiresAt?: string; } /** * Tracking row describing a `ClientCredentials` client that has been * auto-provisioned from a parent tenant into a specific child tenant. * Lives in the parent tenant's identity DB. */ interface ClientMirrorDto { parentClientId: string; parentTenantId: string; childTenantId: string; provisionedAt: string; secretHashVersion: number; } /** * Result body for the backfill operation * (`POST .../{clientId}/mirrors/provisionInExistingTenants`). */ interface ClientMirrorBackfillResponseDto { childTenantsConsidered: number; newlyProvisioned: number; alreadyPresent: number; } /** * Result body for a single-tenant manual provision operation * (`POST .../{clientId}/mirrors/provisionInTenant`). */ interface ClientMirrorProvisionResponseDto { flaggedClientsConsidered: number; newlyProvisioned: number; alreadyPresent: number; } /** * Result of a "clean overlay URIs" call (AB#4209, deliverable 7). * * Mirrors the identity-service `CleanOverlayEntriesResultDto`: the endpoint strips every * `Source` starting with `overlay:` (or matching a specific `overlay:` when a name was * supplied) from every blueprint-managed client's RedirectUris / PostLogoutRedirectUris / * AllowedCorsOrigins lists. `base` and `api` sourced entries are always preserved. */ interface CleanOverlayEntriesResultDto { /** Overlay name filter that was applied, or null when every `overlay:*` source was targeted. */ overlayName?: string | null; /** Number of clients that had at least one matching entry removed. */ clientsAffected: number; /** Total number of URI entries removed across every list across every client. */ totalEntriesRemoved: number; /** Per-client breakdown; clients with zero removals are omitted. */ clientResults: CleanOverlayEntriesClientResultDto[]; } /** Per-client breakdown of removed overlay entries. */ interface CleanOverlayEntriesClientResultDto { clientId: string; redirectUrisRemoved: number; postLogoutRedirectUrisRemoved: number; allowedCorsOriginsRemoved: number; } interface ClientScope { id: string; name: string; } interface GroupDto { id?: string; groupName: string; groupDescription?: string; roleIds: string[]; memberUserIds: string[]; memberExternalUserIds: string[]; memberClientIds: 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[]; } /** * A candidate user from an ancestor (parent) tenant that can be provisioned as a cross-tenant * user in a target tenant. Returned by the admin-provisioning source-user search endpoint so the * Studio can offer a picker without exposing the parent tenant's full user directory. */ interface ProvisioningSourceUserDto { sourceTenantId: string; userId: string; userName: string; email?: string; firstName?: string; lastName?: string; } /** * A group defined in the target tenant, offered as an assignable option when creating a cross-tenant * user mapping. Assigning a group makes the mapping a GroupMember, so the user inherits the group's * roles — the idiomatic, group-based grant. */ interface ProvisioningGroupDto { id: string; name: string; description?: string; } /** * Request to provision a cross-tenant user mapping and make it a member of the given target-tenant * groups (group-based role inheritance). */ interface CreateExternalTenantUserGroupMappingDto { sourceTenantId: string; sourceUserId: string; sourceUserName: string; groupIds?: string[]; } interface TenantDto { tenantId: string; database: string; } interface AdminPanelConfigurationDto { communicationServices: string; assetServices: string; botServices: string; meshAdapterUrl: string; /** AI Adapter public base URL. See {@link AddInConfiguration.aiServices}. */ aiServices: string; /** Reporting service public base URL. See {@link AddInConfiguration.reportingServices}. */ reportingServices: string; /** MCP service public base URL. See {@link AddInConfiguration.mcpServices}. */ mcpServices?: string; grafanaUrl: string; crateDbAdminUrl: string; issuer: string; systemTenantId: string; } interface ConfigurationDto { /** * URL of the platform-services backend (Phase 1+ of the platform-services * initiative). Preferred over {@link adminUri} — loaders should read this * field first and fall back to {@link adminUri} when it is absent (legacy * configs baked into older Office add-ins or PowerBI connectors). */ platformUri?: string; /** * Legacy field name from when the configuration discovery endpoint was * hosted by `octo-frontend-admin-panel`. Kept for backward compatibility * with deployed clients (Office, PowerBI) until those are rebuilt against * the new `platformUri` field. New code MUST prefer `platformUri` over * `adminUri` and only fall back when `platformUri` is undefined. * * Will be removed in Phase 4 of the platform-services initiative. */ 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; } /** * Result of toggling a pipeline's debug capture flag. * `appliedToRunningAdapter` is false when the owning adapter was offline — the * flag is persisted and takes effect on the next deploy. */ interface SetPipelineDebugResultDto { enabled: boolean; appliedToRunningAdapter: boolean; } /** * 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; } /** * Resource-utilisation snapshot of a running adapter process. Returned by the * communication controller's `GET /v1/adapter/{rtId}/metrics` endpoint to back * the live CPU / memory sparklines in the UI. Phase 1 of the adapter telemetry * feature keeps these in an in-memory ring buffer on the controller, so the * series spans roughly the last 30 minutes and resets on controller restart. */ interface AdapterMetricsSampleDto { /** Combined `{ckTypeId}@{rtId}` identifier of the reporting adapter. */ adapterRtEntityId: string; /** UTC timestamp the sample was captured at on the adapter side (ISO-8601). */ timestamp: string; /** CPU utilisation in percent (0..100), normalised across all available cores. */ cpuPercent: number; /** Working set of the adapter process in bytes. */ workingSetBytes: number; /** Managed-heap size reported by the GC in bytes. */ gcHeapBytes: number; /** Total thread count of the adapter process. */ threadCount: number; } /** * Pipeline reassignment DTOs. * * Mirrors `Meshmakers.Octo.Communication.Contracts.DataTransferObjects.MovePipeline*` * on the backend (octo-sdk). Studio's "move pipeline to another adapter" * flow PATCHes the controller with one of these and renders the per-pipeline * outcome list. */ /** * Body for PATCH `{tenantId}/v1/pipeline/move-to-adapter`. * * Each pipeline is moved atomically on the server (Executes-association * swap in one transaction). The bulk wrapper collects per-pipeline * outcomes so a single failure does not abort the batch. When `redeploy` * is set, the server re-fires `DeployPipeline` on the target adapter for * every successfully moved pipeline; a redeploy failure does NOT roll * the move back. */ interface MovePipelinesToAdapterRequestDto { pipelineRtIds: string[]; targetAdapterRtId: string; redeploy: boolean; } /** * Outcome of a single pipeline inside a bulk move. `success` is `true` iff * the assoc swap committed cleanly. The old / new adapter ids are filled in * even on success so the caller can render "moved from X to Y" toasts * without an extra round-trip. When `redeploy=true` is set on the request * and the move succeeded but the follow-up redeploy failed, `success` * stays `true` and `errorMessage` carries the redeploy warning. */ interface MovePipelineResultDto { pipelineRtId: string; success: boolean; oldAdapterRtId: string | null; newAdapterRtId: string | null; errorMessage: string | null; } /** * Response of `MovePipelinesToAdapterRequestDto`. The server always returns * 200 with the per-pipeline result list — even when every pipeline failed — * so the client can inspect each outcome without parsing different HTTP- * status shapes. */ interface MovePipelinesToAdapterResponseDto { results: MovePipelineResultDto[]; } /** * One named public base domain configured on the Communication Controller * instance. The Studio displays these in the workload edit form so users can * insert `{{domain.NAME}}` placeholders into a workload's `hostname` instead of * typing the full FQDN. The controller resolves the placeholder at deploy * time against the same map, so the runtime entity stays cluster-portable. * * Returned by `GET {tenantId}/v1/communication/domains` (see * `CommunicationService.getDomains`). Kept for backward compatibility with * older clients that only need domains — new editors should use * `WorkloadVariableDto` via `getWorkloadVariables()`, which covers all three * placeholder families. */ interface DomainConfigurationDto { /** Lookup key referenced by templates, e.g. `default` in `adapter.{{domain.default}}`. */ name: string; /** Resolved base domain (no scheme, no leading dot), e.g. `staging.octo-mesh.com`. */ baseDomain: string; } /** * One template placeholder available to workloads' `hostname`, non-secret * `valueOverride.value` and `valuesYaml`. Returned by * `GET {tenantId}/v1/communication/workload-variables` (see * `CommunicationService.getWorkloadVariables`). * * The endpoint surfaces three families in one list so the Studio's workload * editor can offer a single suggestion / preview source: * - `{{context.tenantId}}` — per-deploy, `sampleValue` is `null`. * - `{{domain.NAME}}` — one entry per configured named domain; `sampleValue` * holds the configured base domain. * - `{{service.NAME}}` — one entry per configured public service URL; * `sampleValue` holds the configured URL. */ interface WorkloadVariableDto { /** Full template token including braces, e.g. `{{service.authority}}`. */ placeholder: string; /** Human-readable description of what the placeholder resolves to. */ description: string; /** * Configured value snapshot for cluster-config-driven placeholders. * `null` for per-deploy values like `{{context.tenantId}}` that the * controller substitutes at deploy time. */ sampleValue: string | 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; unresolvedDependencies: string[]; hasCatalogInconsistency: boolean; } interface CkModelLibraryStatusResponseDto { items: CkModelLibraryStatusItemDto[]; modelsNeedingActionCount: number; modelsWithCatalogInconsistencyCount: 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" } /** Attribute path to capture as a CrateDB column on the archive table, plus index/required flags. */ type ArchiveColumnSpecInputDto = { /** When true (default), CrateDB indexes the column by its standard rules. False emits INDEX OFF. */ indexed: Scalars['Boolean']['input']; /** Attribute path on the target CK type (e.g. 'energyConsumed', 'sensor.reading.value'). */ path: Scalars['String']['input']; /** When true, every insert must supply a non-null value for this path. */ required: Scalars['Boolean']['input']; }; /** Attribute path reachable from a CK type, suitable for use as a CkArchive column. */ type ArchivePathInfoDto = { __typename?: 'ArchivePathInfo'; /** CK type id from which the leaf attribute is inherited, when not the queried type itself. */ inheritedFromCkTypeId?: Maybe; /** True when the path traverses or terminates on an array attribute. */ isArray: Scalars['Boolean']['output']; /** True when the path terminates on a record attribute. */ isRecord: Scalars['Boolean']['output']; /** Dot-separated attribute path, e.g. "voltage" or "sensor.reading.value". */ path: Scalars['String']['output']; /** Leaf primitive type when the path terminates on a scalar; null for records. */ primitiveType?: Maybe; /** CK record id of the record terminating the path; null for scalars. */ recordTypeId?: Maybe; }; /** Backend-agnostic health classification: Unknown / Good / Warning / Critical. */ declare enum ArchiveStorageHealthDto { CriticalDto = "CRITICAL", GoodDto = "GOOD", UnknownDto = "UNKNOWN", WarningDto = "WARNING" } /** Per-archive backend storage stats — row count, on-disk size, health classification. Backend-agnostic; the underlying CrateDB provider maps its native signals onto the Health enum so clients don't have to know about shards or replicas. */ type ArchiveStorageStatsDto = { __typename?: 'ArchiveStorageStats'; /** Runtime id of the archive these stats describe. */ archiveRtId: Scalars['OctoObjectId']['output']; /** Overall health classification. Unknown means the provider could not determine a state — render distinctly from Good. */ health: ArchiveStorageHealthDto; /** Total number of stored rows. Primary copies only — replicas are not double-counted. */ recordCount: Scalars['Long']['output']; /** On-disk size of the primary copies in bytes. UIs typically format this human-readable (KiB / MiB / GiB). */ sizeBytes: Scalars['Long']['output']; /** True when the backing storage table is provisioned (archive has been activated). False ⇒ RecordCount and SizeBytes are 0 and Health is Unknown. */ tableExists: Scalars['Boolean']['output']; }; /** Result of an archive lifecycle mutation: the archive's runtime id, its new status, and the transition name. */ type ArchiveTransitionResultDto = { __typename?: 'ArchiveTransitionResult'; /** Runtime id of the archive that the transition applied to. */ archiveRtId: Scalars['OctoObjectId']['output']; /** New status of the archive after the transition. */ status: Scalars['String']['output']; /** Name of the transition that was performed (Activate / Disable / Enable / RetryActivation). */ transition: Scalars['String']['output']; }; /** Defines the type of modification during write operations */ declare enum AssociationModOptionsDto { CreateDto = "CREATE", DeleteDto = "DELETE" } /** 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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; 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 | EnvironmentWasteMeterDto | 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 | BasicEnergyConsumerDto | BasicEnergyEdaMessageDto | BasicEnergyEdaMeteringPointDto | BasicEnergyEdaProcessDto | BasicEnergyEnergyMeasurementDto | BasicEnergyOperatingFacilityDto | BasicEnergyProducerDto | BasicStateDto | BasicTreeDto | BasicTreeNodeDto | EnergyCommunityBillingDocumentDto | EnergyCommunityBillingDocumentLineItemDto | EnergyCommunityConsumerDto | EnergyCommunityCustomerDto | EnergyCommunityEdaMessageDto | EnergyCommunityEdaMeteringPointDto | EnergyCommunityEdaProcessDto | EnergyCommunityEnergyPriceDto | EnergyCommunityEnergyQuantityDto | EnergyCommunityOperatingFacilityDto | EnergyCommunityParticipationPeriodDto | EnergyCommunityProducerDto | EnvironmentCarbonBudgetDto | EnvironmentCarbonEmissionDto | EnvironmentCertificateOfOriginDto | EnvironmentComplianceRecordDto | EnvironmentEnvironmentalGoalDto | EnvironmentWasteMeterDto | 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 | IndustryManufacturingPartialFeedbackDto | IndustryManufacturingProductionOrderDto | IndustryManufacturingProductionOrderItemDto | IndustryManufacturingShiftDto | IndustryManufacturingShiftMachineDto | IndustryManufacturingShiftOrderItemDto | IndustryManufacturingShiftTemplateDto | OctoSdkDemoCustomerDto | OctoSdkDemoMeteringPointDto | OctoSdkDemoOperatingFacilityDto | SystemAggregationRtQueryDto | SystemAggregationSdQueryDto | SystemAiAiAgentConfigDto | SystemAiAiAgentJobDto | SystemAiAiAgentSessionDto | SystemAiAiApprovalRequestDto | SystemAiAiAuditEventDto | SystemAiAiCredentialBindingDto | SystemAiAiCredentialTicketDto | SystemAiAiKnowledgeSourceDto | SystemAiAiPromptTemplateDto | SystemAiAiQuotaLimitDto | SystemAiAiSessionEventDto | SystemAiAiTokenLeaseDto | SystemAiAiToolPolicyDto | SystemAiAiUsageRecordDto | SystemAutoIncrementDto | SystemBlueprintBackupDto | SystemBlueprintHistoryDto | SystemBlueprintInstallationDto | SystemBotAttributeAggregateConfigurationDto | SystemBotFixupDto | SystemCommunicationAdapterDto | SystemCommunicationAiConfigurationDto | SystemCommunicationApplicationDto | SystemCommunicationDataFlowDto | SystemCommunicationDataPointMappingDto | SystemCommunicationDiscordConfigurationDto | SystemCommunicationEMailReceiverConfigurationDto | SystemCommunicationEMailSenderConfigurationDto | SystemCommunicationEdaConfigurationDto | SystemCommunicationEnergyCommunityConfigurationDto | SystemCommunicationFinApiConfigurationDto | SystemCommunicationGrafanaConfigurationDto | SystemCommunicationHelmRepositoryConfigurationDto | SystemCommunicationLoxoneConfigurationDto | SystemCommunicationMicrosoftGraphConfigurationDto | SystemCommunicationPipelineDto | SystemCommunicationPipelineExecutionDto | SystemCommunicationPipelineStatisticsDto | SystemCommunicationPipelineTriggerDto | SystemCommunicationPoolDto | SystemCommunicationSapConfigurationDto | SystemCommunicationServiceAccountConfigurationDto | SystemCommunicationSftpConfigurationDto | SystemCommunicationTagDto | SystemDownsamplingSdQueryDto | SystemGroupingAggregationRtQueryDto | SystemGroupingAggregationSdQueryDto | SystemIdentityApiResourceDto | SystemIdentityApiScopeDto | SystemIdentityAzureEntraIdIdentityProviderDto | SystemIdentityClientDto | SystemIdentityClientMirrorDto | SystemIdentityDataProtectionKeyDto | SystemIdentityEmailDomainGroupRuleDto | SystemIdentityExternalTenantUserMappingDto | SystemIdentityFacebookIdentityProviderDto | SystemIdentityGoogleIdentityProviderDto | SystemIdentityGroupDto | SystemIdentityIdentityResourceDto | SystemIdentityMicrosoftAdIdentityProviderDto | SystemIdentityMicrosoftIdentityProviderDto | SystemIdentityOctoTenantIdentityProviderDto | SystemIdentityOpenLdapIdentityProviderDto | SystemIdentityPermissionDto | SystemIdentityPermissionRoleDto | SystemIdentityPersistedGrantDto | SystemIdentityRoleDto | SystemIdentityServerSideSessionDto | SystemIdentityUserDto | SystemMigrationHistoryDto | SystemNotificationCssTemplateConfigurationDto | SystemNotificationEventDto | SystemNotificationMailNotificationConfigurationDto | SystemNotificationNotificationTemplateDto | SystemNotificationStatefulEventDto | SystemReportingConnectionInfoDto | SystemReportingFileSystemItemDto | SystemReportingFolderDto | SystemReportingFolderRootDto | SystemSimpleRtQueryDto | SystemSimpleSdQueryDto | SystemStreamDataRawArchiveDto | SystemStreamDataRecomputeJobDto | SystemStreamDataRollupArchiveDto | SystemStreamDataTimeRangeArchiveDto | SystemTenantDto | SystemTenantConfigurationDto | SystemTenantModeConfigurationDto | SystemUiBrandingDto | SystemUiDashboardDto | SystemUiDashboardWidgetDto | SystemUiProcessDiagramDto | SystemUiSymbolDefinitionDto | SystemUiSymbolLibraryDto | SystemUiTreeNavigationConfigurationDto; /** 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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; 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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; 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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; 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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; 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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; 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; partialFeedbacks?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; shiftMachines?: Maybe; shiftOrderItems?: 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 BasicEmployeePartialFeedbacksArgsDto = { 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 BasicEmployeeShiftMachinesArgsDto = { 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 BasicEmployeeShiftOrderItemsArgsDto = { 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>>; partialFeedbacks?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; shiftMachines?: InputMaybe>>; shiftOrderItems?: 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>>; }; /** Union of types derived from Basic/Employee for Employee association */ type BasicEmployee_EmployeeUnionDto = BasicEmployeeDto; /** A connection to `BasicEmployee_EmployeeUnion`. */ type BasicEmployee_EmployeeUnionConnectionDto = { __typename?: 'BasicEmployee_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 `BasicEmployee_EmployeeUnion`. */ type BasicEmployee_EmployeeUnionEdgeDto = { __typename?: 'BasicEmployee_EmployeeUnionEdge'; /** 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/Employee for Employees association */ type BasicEmployee_EmployeesUnionDto = BasicEmployeeDto; /** A connection to `BasicEmployee_EmployeesUnion`. */ type BasicEmployee_EmployeesUnionConnectionDto = { __typename?: 'BasicEmployee_EmployeesUnionConnection'; /** 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_EmployeesUnion`. */ type BasicEmployee_EmployeesUnionEdgeDto = { __typename?: 'BasicEmployee_EmployeesUnionEdge'; /** 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.Energy/CarrierType' */ declare enum BasicEnergyCarrierTypeDto { /** Electricity is used as energy carrier */ ElectricityDto = "ELECTRICITY", /** Gas is used as energy carrier */ GasDto = "GAS", /** The carrier type is unknown */ UnknownDto = "UNKNOWN" } /** Runtime entities of construction kit type 'Basic.Energy-1.0.1/Consumer-1' */ type BasicEnergyConsumerDto = BasicEnergyMeteringPointInterfaceDto & BasicNamedEntityInterfaceDto & SystemEntityInterfaceDto & { __typename?: 'BasicEnergyConsumer'; associations?: Maybe; carrierType: BasicEnergyCarrierTypeDto; children?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; consentId?: Maybe; constructionKitType?: Maybe; description?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; meteringPointNumber: Scalars['String']['output']; name: Scalars['String']['output']; parent?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; state: BasicEnergyStateDto; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'Basic.Energy-1.0.1/Consumer-1' */ type BasicEnergyConsumerAssociationsArgsDto = { 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.Energy-1.0.1/Consumer-1' */ type BasicEnergyConsumerChildrenArgsDto = { 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.Energy-1.0.1/Consumer-1' */ type BasicEnergyConsumerConfiguredByArgsDto = { 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.Energy-1.0.1/Consumer-1' */ type BasicEnergyConsumerMapsFromArgsDto = { 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.Energy-1.0.1/Consumer-1' */ type BasicEnergyConsumerMapsToArgsDto = { 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.Energy-1.0.1/Consumer-1' */ type BasicEnergyConsumerParentArgsDto = { 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.Energy-1.0.1/Consumer-1' */ type BasicEnergyConsumerRelatesFromArgsDto = { 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.Energy-1.0.1/Consumer-1' */ type BasicEnergyConsumerRelatesToArgsDto = { 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.Energy-1.0.1/Consumer-1' */ type BasicEnergyConsumerTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `BasicEnergyConsumer`. */ type BasicEnergyConsumerConnectionDto = { __typename?: 'BasicEnergyConsumerConnection'; /** 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 `BasicEnergyConsumer`. */ type BasicEnergyConsumerEdgeDto = { __typename?: 'BasicEnergyConsumerEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type BasicEnergyConsumerInputDto = { carrierType?: InputMaybe; children?: InputMaybe>>; configuredBy?: InputMaybe>>; consentId?: InputMaybe; description?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; meteringPointNumber?: InputMaybe; name?: InputMaybe; parent?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; state?: InputMaybe; taggedBy?: InputMaybe>>; }; type BasicEnergyConsumerInputUpdateDto = { /** Item to update */ item: BasicEnergyConsumerInputDto; rtId?: InputMaybe; }; type BasicEnergyConsumerMutationsDto = { __typename?: 'BasicEnergyConsumerMutations'; /** Creates new entities of type 'BasicEnergyConsumer'. */ create?: Maybe>>; /** Updates existing entity of type 'BasicEnergyConsumer'. */ update?: Maybe>>; }; type BasicEnergyConsumerMutationsCreateArgsDto = { entities: Array>; }; type BasicEnergyConsumerMutationsUpdateArgsDto = { entities: Array>; }; type BasicEnergyConsumerUpdateDto = { __typename?: 'BasicEnergyConsumerUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type BasicEnergyConsumerUpdateMessageDto = { __typename?: 'BasicEnergyConsumerUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit enum 'Basic.Energy/DataQuality' */ declare enum BasicEnergyDataQualityDto { /** The data is accurate to 15 minute meter readings */ L_1Dto = "L_1", /** The data is a linear interpolation of 2 known meter readings */ L_2Dto = "L_2", /** The data is an estimate */ L_3Dto = "L_3", /** The data quality is unknown */ UnknownDto = "UNKNOWN" } /** Runtime entities of construction kit type 'Basic.Energy-1.0.1/EdaMessage-1' */ type BasicEnergyEdaMessageDto = SystemEntityInterfaceDto & { __typename?: 'BasicEnergyEdaMessage'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; conversationId?: Maybe; creationDate: Scalars['DateTime']['output']; mapsFrom?: Maybe; mapsTo?: Maybe; messageId: Scalars['String']['output']; messageType: Scalars['String']['output']; meteringPoint?: Maybe; process?: Maybe; processed: Scalars['Boolean']['output']; rawMessage?: Maybe; receiver: Scalars['String']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; sender: Scalars['String']['output']; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'Basic.Energy-1.0.1/EdaMessage-1' */ type BasicEnergyEdaMessageAssociationsArgsDto = { 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.Energy-1.0.1/EdaMessage-1' */ type BasicEnergyEdaMessageConfiguredByArgsDto = { 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.Energy-1.0.1/EdaMessage-1' */ type BasicEnergyEdaMessageMapsFromArgsDto = { 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.Energy-1.0.1/EdaMessage-1' */ type BasicEnergyEdaMessageMapsToArgsDto = { 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.Energy-1.0.1/EdaMessage-1' */ type BasicEnergyEdaMessageProcessArgsDto = { 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.Energy-1.0.1/EdaMessage-1' */ type BasicEnergyEdaMessageRelatesFromArgsDto = { 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.Energy-1.0.1/EdaMessage-1' */ type BasicEnergyEdaMessageRelatesToArgsDto = { 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.Energy-1.0.1/EdaMessage-1' */ type BasicEnergyEdaMessageTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `BasicEnergyEdaMessage`. */ type BasicEnergyEdaMessageConnectionDto = { __typename?: 'BasicEnergyEdaMessageConnection'; /** 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 `BasicEnergyEdaMessage`. */ type BasicEnergyEdaMessageEdgeDto = { __typename?: 'BasicEnergyEdaMessageEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type BasicEnergyEdaMessageInputDto = { configuredBy?: InputMaybe>>; conversationId?: InputMaybe; creationDate?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; messageId?: InputMaybe; messageType?: InputMaybe; meteringPoint?: InputMaybe; process?: InputMaybe>>; processed?: InputMaybe; rawMessage?: InputMaybe; receiver?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; sender?: InputMaybe; taggedBy?: InputMaybe>>; }; type BasicEnergyEdaMessageInputUpdateDto = { /** Item to update */ item: BasicEnergyEdaMessageInputDto; rtId?: InputMaybe; }; type BasicEnergyEdaMessageMutationsDto = { __typename?: 'BasicEnergyEdaMessageMutations'; /** Creates new entities of type 'BasicEnergyEdaMessage'. */ create?: Maybe>>; /** Updates existing entity of type 'BasicEnergyEdaMessage'. */ update?: Maybe>>; }; type BasicEnergyEdaMessageMutationsCreateArgsDto = { entities: Array>; }; type BasicEnergyEdaMessageMutationsUpdateArgsDto = { entities: Array>; }; type BasicEnergyEdaMessageUpdateDto = { __typename?: 'BasicEnergyEdaMessageUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type BasicEnergyEdaMessageUpdateMessageDto = { __typename?: 'BasicEnergyEdaMessageUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Union of types derived from Basic.Energy/EdaMessage for Messages association */ type BasicEnergyEdaMessage_MessagesUnionDto = BasicEnergyEdaMessageDto; /** A connection to `BasicEnergyEdaMessage_MessagesUnion`. */ type BasicEnergyEdaMessage_MessagesUnionConnectionDto = { __typename?: 'BasicEnergyEdaMessage_MessagesUnionConnection'; /** 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 `BasicEnergyEdaMessage_MessagesUnion`. */ type BasicEnergyEdaMessage_MessagesUnionEdgeDto = { __typename?: 'BasicEnergyEdaMessage_MessagesUnionEdge'; /** 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 'Basic.Energy-1.0.1/EdaMeteringPoint-1' */ type BasicEnergyEdaMeteringPointDto = SystemEntityInterfaceDto & { __typename?: 'BasicEnergyEdaMeteringPoint'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; consentId?: Maybe; constructionKitType?: Maybe; isProducer: Scalars['Boolean']['output']; mapsFrom?: Maybe; mapsTo?: Maybe; meteringPointNumber: Scalars['String']['output']; productionType?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'Basic.Energy-1.0.1/EdaMeteringPoint-1' */ type BasicEnergyEdaMeteringPointAssociationsArgsDto = { 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.Energy-1.0.1/EdaMeteringPoint-1' */ type BasicEnergyEdaMeteringPointConfiguredByArgsDto = { 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.Energy-1.0.1/EdaMeteringPoint-1' */ type BasicEnergyEdaMeteringPointMapsFromArgsDto = { 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.Energy-1.0.1/EdaMeteringPoint-1' */ type BasicEnergyEdaMeteringPointMapsToArgsDto = { 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.Energy-1.0.1/EdaMeteringPoint-1' */ type BasicEnergyEdaMeteringPointRelatesFromArgsDto = { 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.Energy-1.0.1/EdaMeteringPoint-1' */ type BasicEnergyEdaMeteringPointRelatesToArgsDto = { 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.Energy-1.0.1/EdaMeteringPoint-1' */ type BasicEnergyEdaMeteringPointTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `BasicEnergyEdaMeteringPoint`. */ type BasicEnergyEdaMeteringPointConnectionDto = { __typename?: 'BasicEnergyEdaMeteringPointConnection'; /** 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 `BasicEnergyEdaMeteringPoint`. */ type BasicEnergyEdaMeteringPointEdgeDto = { __typename?: 'BasicEnergyEdaMeteringPointEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type BasicEnergyEdaMeteringPointInputDto = { configuredBy?: InputMaybe>>; consentId?: InputMaybe; isProducer?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; meteringPointNumber?: InputMaybe; productionType?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; }; type BasicEnergyEdaMeteringPointInputUpdateDto = { /** Item to update */ item: BasicEnergyEdaMeteringPointInputDto; rtId?: InputMaybe; }; type BasicEnergyEdaMeteringPointMutationsDto = { __typename?: 'BasicEnergyEdaMeteringPointMutations'; /** Creates new entities of type 'BasicEnergyEdaMeteringPoint'. */ create?: Maybe>>; /** Updates existing entity of type 'BasicEnergyEdaMeteringPoint'. */ update?: Maybe>>; }; type BasicEnergyEdaMeteringPointMutationsCreateArgsDto = { entities: Array>; }; type BasicEnergyEdaMeteringPointMutationsUpdateArgsDto = { entities: Array>; }; type BasicEnergyEdaMeteringPointUpdateDto = { __typename?: 'BasicEnergyEdaMeteringPointUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type BasicEnergyEdaMeteringPointUpdateMessageDto = { __typename?: 'BasicEnergyEdaMeteringPointUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'Basic.Energy-1.0.1/EdaProcess-1' */ type BasicEnergyEdaProcessDto = BasicNamedEntityInterfaceDto & SystemEntityInterfaceDto & { __typename?: 'BasicEnergyEdaProcess'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; conversationId: Scalars['String']['output']; description?: Maybe; finished: Scalars['Boolean']['output']; info?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; messages?: Maybe; meteringPointNumber?: Maybe; name: Scalars['String']['output']; rawMessage?: Maybe; receiver: Scalars['String']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; responseCode?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; sender: Scalars['String']['output']; startTime: Scalars['DateTime']['output']; success?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'Basic.Energy-1.0.1/EdaProcess-1' */ type BasicEnergyEdaProcessAssociationsArgsDto = { 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.Energy-1.0.1/EdaProcess-1' */ type BasicEnergyEdaProcessConfiguredByArgsDto = { 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.Energy-1.0.1/EdaProcess-1' */ type BasicEnergyEdaProcessMapsFromArgsDto = { 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.Energy-1.0.1/EdaProcess-1' */ type BasicEnergyEdaProcessMapsToArgsDto = { 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.Energy-1.0.1/EdaProcess-1' */ type BasicEnergyEdaProcessMessagesArgsDto = { 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.Energy-1.0.1/EdaProcess-1' */ type BasicEnergyEdaProcessRelatesFromArgsDto = { 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.Energy-1.0.1/EdaProcess-1' */ type BasicEnergyEdaProcessRelatesToArgsDto = { 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.Energy-1.0.1/EdaProcess-1' */ type BasicEnergyEdaProcessTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `BasicEnergyEdaProcess`. */ type BasicEnergyEdaProcessConnectionDto = { __typename?: 'BasicEnergyEdaProcessConnection'; /** 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 `BasicEnergyEdaProcess`. */ type BasicEnergyEdaProcessEdgeDto = { __typename?: 'BasicEnergyEdaProcessEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type BasicEnergyEdaProcessInputDto = { configuredBy?: InputMaybe>>; conversationId?: InputMaybe; description?: InputMaybe; finished?: InputMaybe; info?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; messages?: InputMaybe>>; meteringPointNumber?: InputMaybe; name?: InputMaybe; rawMessage?: InputMaybe; receiver?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; responseCode?: InputMaybe; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; sender?: InputMaybe; startTime?: InputMaybe; success?: InputMaybe; taggedBy?: InputMaybe>>; }; type BasicEnergyEdaProcessInputUpdateDto = { /** Item to update */ item: BasicEnergyEdaProcessInputDto; rtId?: InputMaybe; }; type BasicEnergyEdaProcessMutationsDto = { __typename?: 'BasicEnergyEdaProcessMutations'; /** Creates new entities of type 'BasicEnergyEdaProcess'. */ create?: Maybe>>; /** Updates existing entity of type 'BasicEnergyEdaProcess'. */ update?: Maybe>>; }; type BasicEnergyEdaProcessMutationsCreateArgsDto = { entities: Array>; }; type BasicEnergyEdaProcessMutationsUpdateArgsDto = { entities: Array>; }; type BasicEnergyEdaProcessUpdateDto = { __typename?: 'BasicEnergyEdaProcessUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type BasicEnergyEdaProcessUpdateMessageDto = { __typename?: 'BasicEnergyEdaProcessUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Union of types derived from Basic.Energy/EdaProcess for Process association */ type BasicEnergyEdaProcess_ProcessUnionDto = BasicEnergyEdaProcessDto; /** A connection to `BasicEnergyEdaProcess_ProcessUnion`. */ type BasicEnergyEdaProcess_ProcessUnionConnectionDto = { __typename?: 'BasicEnergyEdaProcess_ProcessUnionConnection'; /** 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 `BasicEnergyEdaProcess_ProcessUnion`. */ type BasicEnergyEdaProcess_ProcessUnionEdgeDto = { __typename?: 'BasicEnergyEdaProcess_ProcessUnionEdge'; /** 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 'Basic.Energy-1.0.1/EnergyMeasurement-1' */ type BasicEnergyEnergyMeasurementDto = SystemEntityInterfaceDto & { __typename?: 'BasicEnergyEnergyMeasurement'; amount: BasicAmountDto; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; dataQuality?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; obisCode?: Maybe; parent?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; timeRange: BasicTimeRangeDto; }; /** Runtime entities of construction kit type 'Basic.Energy-1.0.1/EnergyMeasurement-1' */ type BasicEnergyEnergyMeasurementAssociationsArgsDto = { 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.Energy-1.0.1/EnergyMeasurement-1' */ type BasicEnergyEnergyMeasurementConfiguredByArgsDto = { 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.Energy-1.0.1/EnergyMeasurement-1' */ type BasicEnergyEnergyMeasurementMapsFromArgsDto = { 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.Energy-1.0.1/EnergyMeasurement-1' */ type BasicEnergyEnergyMeasurementMapsToArgsDto = { 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.Energy-1.0.1/EnergyMeasurement-1' */ type BasicEnergyEnergyMeasurementParentArgsDto = { 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.Energy-1.0.1/EnergyMeasurement-1' */ type BasicEnergyEnergyMeasurementRelatesFromArgsDto = { 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.Energy-1.0.1/EnergyMeasurement-1' */ type BasicEnergyEnergyMeasurementRelatesToArgsDto = { 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.Energy-1.0.1/EnergyMeasurement-1' */ type BasicEnergyEnergyMeasurementTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `BasicEnergyEnergyMeasurement`. */ type BasicEnergyEnergyMeasurementConnectionDto = { __typename?: 'BasicEnergyEnergyMeasurementConnection'; /** 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 `BasicEnergyEnergyMeasurement`. */ type BasicEnergyEnergyMeasurementEdgeDto = { __typename?: 'BasicEnergyEnergyMeasurementEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type BasicEnergyEnergyMeasurementInputDto = { amount?: InputMaybe; configuredBy?: InputMaybe>>; dataQuality?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; obisCode?: InputMaybe; parent?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; timeRange?: InputMaybe; }; type BasicEnergyEnergyMeasurementInputUpdateDto = { /** Item to update */ item: BasicEnergyEnergyMeasurementInputDto; rtId?: InputMaybe; }; type BasicEnergyEnergyMeasurementMutationsDto = { __typename?: 'BasicEnergyEnergyMeasurementMutations'; /** Creates new entities of type 'BasicEnergyEnergyMeasurement'. */ create?: Maybe>>; /** Updates existing entity of type 'BasicEnergyEnergyMeasurement'. */ update?: Maybe>>; }; type BasicEnergyEnergyMeasurementMutationsCreateArgsDto = { entities: Array>; }; type BasicEnergyEnergyMeasurementMutationsUpdateArgsDto = { entities: Array>; }; type BasicEnergyEnergyMeasurementUpdateDto = { __typename?: 'BasicEnergyEnergyMeasurementUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type BasicEnergyEnergyMeasurementUpdateMessageDto = { __typename?: 'BasicEnergyEnergyMeasurementUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Union of types derived from Basic.Energy/EnergyMeasurement for Children association */ type BasicEnergyEnergyMeasurement_ChildrenUnionDto = BasicEnergyEnergyMeasurementDto; /** A connection to `BasicEnergyEnergyMeasurement_ChildrenUnion`. */ type BasicEnergyEnergyMeasurement_ChildrenUnionConnectionDto = { __typename?: 'BasicEnergyEnergyMeasurement_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 `BasicEnergyEnergyMeasurement_ChildrenUnion`. */ type BasicEnergyEnergyMeasurement_ChildrenUnionEdgeDto = { __typename?: 'BasicEnergyEnergyMeasurement_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 enum 'Basic.Energy/FacilityType' */ declare enum BasicEnergyFacilityTypeDto { /** The facility type is a business */ BusinessDto = "BUSINESS", /** The facility type is a single household */ HouseholdDto = "HOUSEHOLD", /** The facility type is a industry */ IndustryDto = "INDUSTRY", /** The facility type is a public building e.g. schools, public offices */ PublicBuildingDto = "PUBLIC_BUILDING", /** The facility type is an energy storage */ StorageDto = "STORAGE", /** The facility type is unknown or not defined */ UnknownDto = "UNKNOWN" } /** Runtime entities of construction kit type 'Basic.Energy-1.0.1/MeteringPoint-1' */ type BasicEnergyMeteringPointDto = BasicNamedEntityInterfaceDto & SystemEntityInterfaceDto & { __typename?: 'BasicEnergyMeteringPoint'; associations?: Maybe; carrierType: BasicEnergyCarrierTypeDto; children?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; consentId?: Maybe; constructionKitType?: Maybe; description?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; meteringPointNumber: Scalars['String']['output']; name: Scalars['String']['output']; parent?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; state: BasicEnergyStateDto; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'Basic.Energy-1.0.1/MeteringPoint-1' */ type BasicEnergyMeteringPointAssociationsArgsDto = { 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.Energy-1.0.1/MeteringPoint-1' */ type BasicEnergyMeteringPointChildrenArgsDto = { 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.Energy-1.0.1/MeteringPoint-1' */ type BasicEnergyMeteringPointConfiguredByArgsDto = { 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.Energy-1.0.1/MeteringPoint-1' */ type BasicEnergyMeteringPointMapsFromArgsDto = { 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.Energy-1.0.1/MeteringPoint-1' */ type BasicEnergyMeteringPointMapsToArgsDto = { 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.Energy-1.0.1/MeteringPoint-1' */ type BasicEnergyMeteringPointParentArgsDto = { 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.Energy-1.0.1/MeteringPoint-1' */ type BasicEnergyMeteringPointRelatesFromArgsDto = { 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.Energy-1.0.1/MeteringPoint-1' */ type BasicEnergyMeteringPointRelatesToArgsDto = { 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.Energy-1.0.1/MeteringPoint-1' */ type BasicEnergyMeteringPointTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `BasicEnergyMeteringPoint`. */ type BasicEnergyMeteringPointConnectionDto = { __typename?: 'BasicEnergyMeteringPointConnection'; /** 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 `BasicEnergyMeteringPoint`. */ type BasicEnergyMeteringPointEdgeDto = { __typename?: 'BasicEnergyMeteringPointEdge'; /** 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.Energy-1.0.1/MeteringPoint-1' */ type BasicEnergyMeteringPointInterfaceDto = { carrierType: BasicEnergyCarrierTypeDto; children?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; consentId?: Maybe; description?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; meteringPointNumber: Scalars['String']['output']; name: Scalars['String']['output']; parent?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; state: BasicEnergyStateDto; taggedBy?: Maybe; }; /** Interface for runtime entities of construction kit type 'Basic.Energy-1.0.1/MeteringPoint-1' */ type BasicEnergyMeteringPointInterfaceChildrenArgsDto = { 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.Energy-1.0.1/MeteringPoint-1' */ type BasicEnergyMeteringPointInterfaceConfiguredByArgsDto = { 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.Energy-1.0.1/MeteringPoint-1' */ type BasicEnergyMeteringPointInterfaceMapsFromArgsDto = { 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.Energy-1.0.1/MeteringPoint-1' */ type BasicEnergyMeteringPointInterfaceMapsToArgsDto = { 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.Energy-1.0.1/MeteringPoint-1' */ type BasicEnergyMeteringPointInterfaceParentArgsDto = { 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.Energy-1.0.1/MeteringPoint-1' */ type BasicEnergyMeteringPointInterfaceRelatesFromArgsDto = { 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.Energy-1.0.1/MeteringPoint-1' */ type BasicEnergyMeteringPointInterfaceRelatesToArgsDto = { 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.Energy-1.0.1/MeteringPoint-1' */ type BasicEnergyMeteringPointInterfaceTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type BasicEnergyMeteringPointUpdateDto = { __typename?: 'BasicEnergyMeteringPointUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type BasicEnergyMeteringPointUpdateMessageDto = { __typename?: 'BasicEnergyMeteringPointUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Union of types derived from Basic.Energy/MeteringPoint for Children association */ type BasicEnergyMeteringPoint_ChildrenUnionDto = BasicAssetDto | BasicCityDto | BasicCountryDto | BasicDistrictDto | BasicEnergyConsumerDto | BasicEnergyOperatingFacilityDto | BasicEnergyProducerDto | BasicStateDto | BasicTreeNodeDto | EnergyCommunityOperatingFacilityDto | EnvironmentCarbonBudgetDto | EnvironmentCarbonEmissionDto | EnvironmentCertificateOfOriginDto | EnvironmentComplianceRecordDto | EnvironmentEnvironmentalGoalDto | EnvironmentWasteMeterDto | IndustryBasicMachineDto | IndustryEnergyDemandResponseEventDto | IndustryEnergyEnergyConsumerDto | IndustryEnergyEnergyCostDto | IndustryEnergyEnergyForecastDto | IndustryEnergyEnergyMeterDto | IndustryEnergyEnergyPerformanceIndicatorDto | IndustryEnergyEnergyStorageDto | IndustryEnergyInverterDto | IndustryEnergyPhotovoltaicSystemDto | IndustryEnergyPhotovoltaicSystemModuleDto | IndustryEnergyPhotovoltaicSystemStringDto | IndustryFluidHeatMeterDto | IndustryFluidWaterMeterDto | IndustryMaintenanceCostCenterDto | IndustryMaintenanceEmployeeDto | IndustryMaintenanceWorkplaceDto | OctoSdkDemoMeteringPointDto | OctoSdkDemoOperatingFacilityDto; /** A connection to `BasicEnergyMeteringPoint_ChildrenUnion`. */ type BasicEnergyMeteringPoint_ChildrenUnionConnectionDto = { __typename?: 'BasicEnergyMeteringPoint_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 `BasicEnergyMeteringPoint_ChildrenUnion`. */ type BasicEnergyMeteringPoint_ChildrenUnionEdgeDto = { __typename?: 'BasicEnergyMeteringPoint_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.Energy/MeteringPoint for Parent association */ type BasicEnergyMeteringPoint_ParentUnionDto = BasicEnergyConsumerDto | BasicEnergyProducerDto; /** A connection to `BasicEnergyMeteringPoint_ParentUnion`. */ type BasicEnergyMeteringPoint_ParentUnionConnectionDto = { __typename?: 'BasicEnergyMeteringPoint_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 `BasicEnergyMeteringPoint_ParentUnion`. */ type BasicEnergyMeteringPoint_ParentUnionEdgeDto = { __typename?: 'BasicEnergyMeteringPoint_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 'Basic.Energy-1.0.1/OperatingFacility-1' */ type BasicEnergyOperatingFacilityDto = { __typename?: 'BasicEnergyOperatingFacility'; address: BasicAddressDto; associations?: Maybe; children?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; description?: Maybe; facilityType: BasicEnergyFacilityTypeDto; 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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; state: BasicEnergyStateDto; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'Basic.Energy-1.0.1/OperatingFacility-1' */ type BasicEnergyOperatingFacilityAssociationsArgsDto = { 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.Energy-1.0.1/OperatingFacility-1' */ type BasicEnergyOperatingFacilityChildrenArgsDto = { 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.Energy-1.0.1/OperatingFacility-1' */ type BasicEnergyOperatingFacilityConfiguredByArgsDto = { 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.Energy-1.0.1/OperatingFacility-1' */ type BasicEnergyOperatingFacilityMapsFromArgsDto = { 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.Energy-1.0.1/OperatingFacility-1' */ type BasicEnergyOperatingFacilityMapsToArgsDto = { 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.Energy-1.0.1/OperatingFacility-1' */ type BasicEnergyOperatingFacilityOrdersArgsDto = { 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.Energy-1.0.1/OperatingFacility-1' */ type BasicEnergyOperatingFacilityParentArgsDto = { 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.Energy-1.0.1/OperatingFacility-1' */ type BasicEnergyOperatingFacilityRelatesFromArgsDto = { 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.Energy-1.0.1/OperatingFacility-1' */ type BasicEnergyOperatingFacilityRelatesToArgsDto = { 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.Energy-1.0.1/OperatingFacility-1' */ type BasicEnergyOperatingFacilityTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `BasicEnergyOperatingFacility`. */ type BasicEnergyOperatingFacilityConnectionDto = { __typename?: 'BasicEnergyOperatingFacilityConnection'; /** 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 `BasicEnergyOperatingFacility`. */ type BasicEnergyOperatingFacilityEdgeDto = { __typename?: 'BasicEnergyOperatingFacilityEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type BasicEnergyOperatingFacilityInputDto = { address?: InputMaybe; children?: InputMaybe>>; configuredBy?: InputMaybe>>; description?: InputMaybe; facilityType?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; orders?: InputMaybe>>; parent?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; state?: InputMaybe; taggedBy?: InputMaybe>>; }; type BasicEnergyOperatingFacilityInputUpdateDto = { /** Item to update */ item: BasicEnergyOperatingFacilityInputDto; rtId?: InputMaybe; }; type BasicEnergyOperatingFacilityMutationsDto = { __typename?: 'BasicEnergyOperatingFacilityMutations'; /** Creates new entities of type 'BasicEnergyOperatingFacility'. */ create?: Maybe>>; /** Updates existing entity of type 'BasicEnergyOperatingFacility'. */ update?: Maybe>>; }; type BasicEnergyOperatingFacilityMutationsCreateArgsDto = { entities: Array>; }; type BasicEnergyOperatingFacilityMutationsUpdateArgsDto = { entities: Array>; }; type BasicEnergyOperatingFacilityUpdateDto = { __typename?: 'BasicEnergyOperatingFacilityUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type BasicEnergyOperatingFacilityUpdateMessageDto = { __typename?: 'BasicEnergyOperatingFacilityUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Union of types derived from Basic.Energy/OperatingFacility for Parent association */ type BasicEnergyOperatingFacility_ParentUnionDto = BasicEnergyOperatingFacilityDto; /** A connection to `BasicEnergyOperatingFacility_ParentUnion`. */ type BasicEnergyOperatingFacility_ParentUnionConnectionDto = { __typename?: 'BasicEnergyOperatingFacility_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 `BasicEnergyOperatingFacility_ParentUnion`. */ type BasicEnergyOperatingFacility_ParentUnionEdgeDto = { __typename?: 'BasicEnergyOperatingFacility_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 'Basic.Energy-1.0.1/Producer-1' */ type BasicEnergyProducerDto = BasicEnergyMeteringPointInterfaceDto & BasicNamedEntityInterfaceDto & SystemEntityInterfaceDto & { __typename?: 'BasicEnergyProducer'; associations?: Maybe; carrierType: BasicEnergyCarrierTypeDto; children?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; consentId?: Maybe; constructionKitType?: Maybe; description?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; meteringPointNumber: Scalars['String']['output']; name: Scalars['String']['output']; parent?: Maybe; productionType: BasicEnergyProductionTypeDto; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; state: BasicEnergyStateDto; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'Basic.Energy-1.0.1/Producer-1' */ type BasicEnergyProducerAssociationsArgsDto = { 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.Energy-1.0.1/Producer-1' */ type BasicEnergyProducerChildrenArgsDto = { 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.Energy-1.0.1/Producer-1' */ type BasicEnergyProducerConfiguredByArgsDto = { 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.Energy-1.0.1/Producer-1' */ type BasicEnergyProducerMapsFromArgsDto = { 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.Energy-1.0.1/Producer-1' */ type BasicEnergyProducerMapsToArgsDto = { 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.Energy-1.0.1/Producer-1' */ type BasicEnergyProducerParentArgsDto = { 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.Energy-1.0.1/Producer-1' */ type BasicEnergyProducerRelatesFromArgsDto = { 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.Energy-1.0.1/Producer-1' */ type BasicEnergyProducerRelatesToArgsDto = { 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.Energy-1.0.1/Producer-1' */ type BasicEnergyProducerTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `BasicEnergyProducer`. */ type BasicEnergyProducerConnectionDto = { __typename?: 'BasicEnergyProducerConnection'; /** 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 `BasicEnergyProducer`. */ type BasicEnergyProducerEdgeDto = { __typename?: 'BasicEnergyProducerEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type BasicEnergyProducerInputDto = { carrierType?: InputMaybe; children?: InputMaybe>>; configuredBy?: InputMaybe>>; consentId?: InputMaybe; description?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; meteringPointNumber?: InputMaybe; name?: InputMaybe; parent?: InputMaybe>>; productionType?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; state?: InputMaybe; taggedBy?: InputMaybe>>; }; type BasicEnergyProducerInputUpdateDto = { /** Item to update */ item: BasicEnergyProducerInputDto; rtId?: InputMaybe; }; type BasicEnergyProducerMutationsDto = { __typename?: 'BasicEnergyProducerMutations'; /** Creates new entities of type 'BasicEnergyProducer'. */ create?: Maybe>>; /** Updates existing entity of type 'BasicEnergyProducer'. */ update?: Maybe>>; }; type BasicEnergyProducerMutationsCreateArgsDto = { entities: Array>; }; type BasicEnergyProducerMutationsUpdateArgsDto = { entities: Array>; }; type BasicEnergyProducerUpdateDto = { __typename?: 'BasicEnergyProducerUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type BasicEnergyProducerUpdateMessageDto = { __typename?: 'BasicEnergyProducerUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit enum 'Basic.Energy/ProductionType' */ declare enum BasicEnergyProductionTypeDto { /** Hydroelectric power was used to produce the energy */ HepDto = "HEP", /** Other methods were used to produce the energy */ OtherDto = "OTHER", /** Solar power was used to produce the energy */ SolarDto = "SOLAR", /** The production type is unknown or not defined */ UnknownDto = "UNKNOWN", /** Wind power was used to produce the energy */ WindDto = "WIND" } /** Runtime entities of construction kit enum 'Basic.Energy/State' */ declare enum BasicEnergyStateDto { /** The object is active and in use */ ActiveDto = "ACTIVE", /** The object is inactive but may be reactivated */ InactiveDto = "INACTIVE", /** The object is just created and the state is not set */ NewDto = "NEW" } /** 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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; 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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; 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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; 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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; 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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; 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 | BasicEnergyOperatingFacilityDto | BasicStateDto | BasicTreeNodeDto | EnergyCommunityOperatingFacilityDto | EnvironmentCarbonBudgetDto | EnvironmentCarbonEmissionDto | EnvironmentCertificateOfOriginDto | EnvironmentComplianceRecordDto | EnvironmentEnvironmentalGoalDto | EnvironmentWasteMeterDto | 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 | BasicEnergyOperatingFacilityDto | BasicStateDto | BasicTreeNodeDto | EnergyCommunityOperatingFacilityDto | EnvironmentWasteMeterDto | 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 | BasicEnergyOperatingFacilityDto | BasicStateDto | BasicTreeNodeDto | EnergyCommunityOperatingFacilityDto | EnvironmentWasteMeterDto | 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 | BasicEnergyConsumerDto | BasicEnergyEdaMessageDto | BasicEnergyEdaMeteringPointDto | BasicEnergyEdaProcessDto | BasicEnergyEnergyMeasurementDto | BasicEnergyOperatingFacilityDto | BasicEnergyProducerDto | BasicStateDto | BasicTreeDto | BasicTreeNodeDto | EnergyCommunityBillingDocumentDto | EnergyCommunityBillingDocumentLineItemDto | EnergyCommunityConsumerDto | EnergyCommunityCustomerDto | EnergyCommunityEdaMessageDto | EnergyCommunityEdaMeteringPointDto | EnergyCommunityEdaProcessDto | EnergyCommunityEnergyPriceDto | EnergyCommunityEnergyQuantityDto | EnergyCommunityOperatingFacilityDto | EnergyCommunityParticipationPeriodDto | EnergyCommunityProducerDto | EnvironmentCarbonBudgetDto | EnvironmentCarbonEmissionDto | EnvironmentCertificateOfOriginDto | EnvironmentComplianceRecordDto | EnvironmentEnvironmentalGoalDto | EnvironmentWasteMeterDto | 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 | IndustryManufacturingPartialFeedbackDto | IndustryManufacturingProductionOrderDto | IndustryManufacturingProductionOrderItemDto | IndustryManufacturingShiftDto | IndustryManufacturingShiftMachineDto | IndustryManufacturingShiftOrderItemDto | IndustryManufacturingShiftTemplateDto | OctoSdkDemoCustomerDto | OctoSdkDemoMeteringPointDto | OctoSdkDemoOperatingFacilityDto | SystemAggregationRtQueryDto | SystemAggregationSdQueryDto | SystemAiAiAgentConfigDto | SystemAiAiAgentJobDto | SystemAiAiAgentSessionDto | SystemAiAiApprovalRequestDto | SystemAiAiAuditEventDto | SystemAiAiCredentialBindingDto | SystemAiAiCredentialTicketDto | SystemAiAiKnowledgeSourceDto | SystemAiAiPromptTemplateDto | SystemAiAiQuotaLimitDto | SystemAiAiSessionEventDto | SystemAiAiTokenLeaseDto | SystemAiAiToolPolicyDto | SystemAiAiUsageRecordDto | SystemAutoIncrementDto | SystemBlueprintBackupDto | SystemBlueprintHistoryDto | SystemBlueprintInstallationDto | SystemBotAttributeAggregateConfigurationDto | SystemBotFixupDto | SystemCommunicationAdapterDto | SystemCommunicationAiConfigurationDto | SystemCommunicationApplicationDto | SystemCommunicationDataFlowDto | SystemCommunicationDataPointMappingDto | SystemCommunicationDiscordConfigurationDto | SystemCommunicationEMailReceiverConfigurationDto | SystemCommunicationEMailSenderConfigurationDto | SystemCommunicationEdaConfigurationDto | SystemCommunicationEnergyCommunityConfigurationDto | SystemCommunicationFinApiConfigurationDto | SystemCommunicationGrafanaConfigurationDto | SystemCommunicationHelmRepositoryConfigurationDto | SystemCommunicationLoxoneConfigurationDto | SystemCommunicationMicrosoftGraphConfigurationDto | SystemCommunicationPipelineDto | SystemCommunicationPipelineExecutionDto | SystemCommunicationPipelineStatisticsDto | SystemCommunicationPipelineTriggerDto | SystemCommunicationPoolDto | SystemCommunicationSapConfigurationDto | SystemCommunicationServiceAccountConfigurationDto | SystemCommunicationSftpConfigurationDto | SystemCommunicationTagDto | SystemDownsamplingSdQueryDto | SystemGroupingAggregationRtQueryDto | SystemGroupingAggregationSdQueryDto | SystemIdentityApiResourceDto | SystemIdentityApiScopeDto | SystemIdentityAzureEntraIdIdentityProviderDto | SystemIdentityClientDto | SystemIdentityClientMirrorDto | SystemIdentityDataProtectionKeyDto | SystemIdentityEmailDomainGroupRuleDto | SystemIdentityExternalTenantUserMappingDto | SystemIdentityFacebookIdentityProviderDto | SystemIdentityGoogleIdentityProviderDto | SystemIdentityGroupDto | SystemIdentityIdentityResourceDto | SystemIdentityMicrosoftAdIdentityProviderDto | SystemIdentityMicrosoftIdentityProviderDto | SystemIdentityOctoTenantIdentityProviderDto | SystemIdentityOpenLdapIdentityProviderDto | SystemIdentityPermissionDto | SystemIdentityPermissionRoleDto | SystemIdentityPersistedGrantDto | SystemIdentityRoleDto | SystemIdentityServerSideSessionDto | SystemIdentityUserDto | SystemMigrationHistoryDto | SystemNotificationCssTemplateConfigurationDto | SystemNotificationEventDto | SystemNotificationMailNotificationConfigurationDto | SystemNotificationNotificationTemplateDto | SystemNotificationStatefulEventDto | SystemReportingConnectionInfoDto | SystemReportingFileSystemItemDto | SystemReportingFolderDto | SystemReportingFolderRootDto | SystemSimpleRtQueryDto | SystemSimpleSdQueryDto | SystemStreamDataRawArchiveDto | SystemStreamDataRecomputeJobDto | SystemStreamDataRollupArchiveDto | SystemStreamDataTimeRangeArchiveDto | SystemTenantDto | SystemTenantConfigurationDto | SystemTenantModeConfigurationDto | SystemUiBrandingDto | SystemUiDashboardDto | SystemUiDashboardWidgetDto | SystemUiProcessDiagramDto | SystemUiSymbolDefinitionDto | SystemUiSymbolLibraryDto | SystemUiTreeNavigationConfigurationDto; /** 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 | BasicEnergyOperatingFacilityDto | BasicStateDto | BasicTreeDto | BasicTreeNodeDto | EnergyCommunityOperatingFacilityDto | EnvironmentWasteMeterDto | 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" } /** Blueprint listing entry surfaced from any configured catalog. */ type BlueprintDto = { __typename?: 'Blueprint'; /** Name of the catalog this entry was found in (e.g. "PublicGitHubBlueprintCatalog"). */ catalogName: Scalars['String']['output']; /** Optional description. */ description?: Maybe; /** Fully-qualified blueprint id (Name-Version), e.g. "InfrastructureStarter-1.0.0". */ id: Scalars['String']['output']; /** Blueprint name without the version suffix. */ name: Scalars['String']['output']; /** Blueprint version (SemVer). */ version: Scalars['String']['output']; }; /** Result of installing a blueprint on a tenant. */ type BlueprintApplyResultDto = { __typename?: 'BlueprintApplyResult'; /** Application mode used: Initial or ReApply. */ applicationMode: Scalars['String']['output']; /** Fully-qualified blueprint id that was applied. */ blueprintId: Scalars['String']['output']; /** CK model dependencies loaded into the tenant by this apply. */ loadedCkModels: Array; /** Number of seed-data files imported as part of the apply. */ seedDataFilesApplied: Scalars['Int']['output']; /** True when the install completed without errors. */ success: Scalars['Boolean']['output']; /** Tenant the blueprint was applied to. */ tenantId: Scalars['String']['output']; /** Non-blocking warnings produced during the apply. */ warnings: Array; }; /** Tenant snapshot created before a blueprint update; usable for rollback. */ type BlueprintBackupDto = { __typename?: 'BlueprintBackup'; /** Opaque backup identifier — pass to rollback to restore this snapshot. */ backupId: Scalars['String']['output']; /** Fully-qualified blueprint id at the time of backup. */ blueprintId: Scalars['String']['output']; /** UTC timestamp when this backup was captured. */ createdAt: Scalars['DateTime']['output']; /** Human-readable reason for the backup (typically the triggering operation). */ reason: Scalars['String']['output']; /** Size of the backup payload in bytes, when reported by the storage backend. */ sizeBytes?: Maybe; }; /** Configured blueprint catalog source (local, public GitHub, private GitHub). */ type BlueprintCatalogDto = { __typename?: 'BlueprintCatalog'; /** Human-readable catalog description. */ description: Scalars['String']['output']; /** Catalog name, e.g. "PublicGitHubBlueprintCatalog". */ name: Scalars['String']['output']; }; /** Conflict detected by a blueprint update preview against an unlocked or modified tenant entity. */ type BlueprintConflictDto = { __typename?: 'BlueprintConflict'; /** Human-readable description of the conflict. */ description: Scalars['String']['output']; /** Runtime id of the conflicting tenant entity. Use this verbatim as the key in `conflictResolutions` when overriding. */ entityId: Scalars['String']['output']; /** Engine's suggested resolution: KeepUser / KeepBlueprint / Merge / Skip. */ suggestedResolution?: Maybe; }; /** Per-entity override for an unlocked-conflict during a blueprint update. */ declare enum BlueprintConflictResolutionDto { KeepBlueprintDto = "KEEP_BLUEPRINT", KeepUserDto = "KEEP_USER", MergeDto = "MERGE", SkipDto = "SKIP" } /** Per-entity override for a blueprint update conflict. */ type BlueprintConflictResolutionInputDto = { /** Runtime id of the conflicting entity. Matches the entityId surfaced by previewUpdate. */ entityId: Scalars['String']['input']; /** Override resolution for this entity. */ resolution: BlueprintConflictResolutionDto; }; /** Audit-log entry of a blueprint operation against the tenant. */ type BlueprintHistoryItemDto = { __typename?: 'BlueprintHistoryItem'; /** Application mode: Initial / ReApply / Update / Rollback / Uninstall. */ applicationMode: Scalars['String']['output']; /** UTC timestamp of the operation. */ appliedAt: Scalars['DateTime']['output']; /** Fully-qualified blueprint id that was applied. */ blueprintId: Scalars['String']['output']; /** Number of entities created by this operation. */ entitiesCreated: Scalars['Int']['output']; /** Number of entities deleted by this operation. */ entitiesDeleted: Scalars['Int']['output']; /** Number of entities updated by this operation. */ entitiesUpdated: Scalars['Int']['output']; /** Fully-qualified id of the prior version, when this entry is an update. */ previousVersion?: Maybe; /** Optional checksum of the seed data that was applied. */ seedDataChecksum?: Maybe; }; /** Blueprint currently installed on the tenant. */ type BlueprintInstallationDto = { __typename?: 'BlueprintInstallation'; /** Fully-qualified blueprint id (Name-Version). */ blueprintId: Scalars['String']['output']; /** UTC timestamp of the initial install on this tenant. */ installedAt: Scalars['DateTime']['output']; /** True when this row was originally pulled in as a transitive dependency of another blueprint. */ isDependency: Scalars['Boolean']['output']; /** UTC timestamp of the most recent update or re-apply touching this row. */ lastUpdatedAt: Scalars['DateTime']['output']; /** Blueprint ids that were resolved as transitive dependencies of this row. */ resolvedDependencies: Array; /** Optional checksum of the seed data that was applied to this row. */ seedDataChecksum?: Maybe; }; /** Paged list of blueprints from the configured catalogs. */ type BlueprintListResponseDto = { __typename?: 'BlueprintListResponse'; /** Page of blueprint entries. */ items: Array; /** Number of items skipped before this page. */ skip: Scalars['Int']['output']; /** Page size used to produce this response. */ take: Scalars['Int']['output']; /** Total number of blueprints available across all queried catalogs. */ totalCount: Scalars['Int']['output']; }; /** Result of restoring a tenant from a blueprint backup. */ type BlueprintRestoreResultDto = { __typename?: 'BlueprintRestoreResult'; /** Number of entities written back into the tenant from the backup. */ entitiesRestored: Scalars['Int']['output']; /** Diagnostic messages produced during the restore. */ messages: Array; /** True when the restore completed. */ success: Scalars['Boolean']['output']; }; /** Result of uninstalling a blueprint from a tenant. */ type BlueprintUninstallResultDto = { __typename?: 'BlueprintUninstallResult'; /** Other installed blueprints that still depend on the target. Populated when uninstall is refused because cascade was not requested. */ blockingDependents: Array; /** Blueprint ids that were cascade-uninstalled alongside the target. */ cascadedDependencies: Array; /** Number of locked entities erased from the tenant. */ entitiesDeleted: Scalars['Int']['output']; /** True when the uninstall completed. */ success: Scalars['Boolean']['output']; /** Fully-qualified id of the blueprint that was uninstalled, if any. */ uninstalledBlueprintId?: Maybe; /** Non-blocking warnings produced during the uninstall. */ warnings: Array; }; /** Available updates for the tenant's currently installed blueprint. */ type BlueprintUpdateInfoDto = { __typename?: 'BlueprintUpdateInfo'; /** All catalog versions reachable from the current installation, including downgrades. */ availableVersions: Array; /** Fully-qualified blueprint id currently installed on the tenant. */ currentBlueprintId?: Maybe; /** SemVer of the currently installed version. */ currentVersion?: Maybe; /** True when at least one newer version is available in the catalog. */ hasUpdate: Scalars['Boolean']['output']; /** Fully-qualified id of the recommended target version, when an update is available. */ recommendedVersion?: Maybe; }; /** How a blueprint update reconciles seed data with tenant state. */ declare enum BlueprintUpdateModeDto { FullDto = "FULL", MergeDto = "MERGE", MigrationDto = "MIGRATION", SafeDto = "SAFE" } /** Diff of a planned blueprint update — counts and conflicts, no side effects. */ type BlueprintUpdatePreviewDto = { __typename?: 'BlueprintUpdatePreview'; /** Per-entity conflicts the studio needs to resolve before the apply. */ conflicts: Array; /** Number of entities the update would add. */ entitiesToAdd: Scalars['Int']['output']; /** Number of entities the update would delete (Full mode only). */ entitiesToDelete: Scalars['Int']['output']; /** Number of entities the update would upsert. */ entitiesToUpdate: Scalars['Int']['output']; /** Fully-qualified id of the target blueprint version. */ targetVersion: Scalars['String']['output']; /** Non-blocking warnings reported by the diff (e.g. mode-specific notices). */ warnings: Array; }; /** Parameters for previewing or applying a blueprint update on the tenant. */ type BlueprintUpdateRequestInputDto = { /** Per-entity overrides for conflicts surfaced by previewUpdate. */ conflictResolutions?: InputMaybe>; /** Capture a pre-update tenant snapshot. Defaults to true. */ createBackup?: InputMaybe; /** Compute the diff without persisting any changes. */ dryRun?: InputMaybe; /** Fully-qualified target blueprint id (Name-Version), e.g. "InfrastructureStarter-2.0.0". */ targetVersion: Scalars['String']['input']; /** Update reconciliation mode. Defaults to Merge. */ updateMode?: InputMaybe; }; /** Install, update, uninstall and rollback blueprints on the active tenant. */ type BlueprintsMutationDto = { __typename?: 'BlueprintsMutation'; /** Applies a blueprint update to the tenant. Conflict resolutions, dry-run, and pre-update backup are controlled by the input. Returns the resulting apply summary. */ applyUpdate: BlueprintApplyResultDto; /** Applies a blueprint to the tenant for the first time. With force=true, re-applies seed data via upsert (recovery path). */ install: BlueprintApplyResultDto; /** Restores the tenant from a previously-captured backup. */ rollback: BlueprintRestoreResultDto; /** Removes a blueprint from the tenant. With cascade=true, dependents are uninstalled first and orphan dependencies are auto-cleaned. */ uninstall: BlueprintUninstallResultDto; }; /** Install, update, uninstall and rollback blueprints on the active tenant. */ type BlueprintsMutationApplyUpdateArgsDto = { input: BlueprintUpdateRequestInputDto; }; /** Install, update, uninstall and rollback blueprints on the active tenant. */ type BlueprintsMutationInstallArgsDto = { blueprintId: Scalars['String']['input']; force?: InputMaybe; }; /** Install, update, uninstall and rollback blueprints on the active tenant. */ type BlueprintsMutationRollbackArgsDto = { backupId: Scalars['String']['input']; }; /** Install, update, uninstall and rollback blueprints on the active tenant. */ type BlueprintsMutationUninstallArgsDto = { blueprintName: Scalars['String']['input']; cascade?: InputMaybe; }; /** Blueprint catalog discovery + tenant-scoped installation, history, and backup queries. */ type BlueprintsQueryDto = { __typename?: 'BlueprintsQuery'; /** Pre-update tenant snapshots available for rollback. */ backups: Array; /** Configured catalog sources — local, public GitHub, private GitHub. Used by the studio's catalog filter dropdown. */ catalogs: Array; /** Most recent history entry, or null when no blueprint has been applied to the tenant yet. */ current?: Maybe; /** Append-only audit log of blueprint operations on the tenant. */ history: Array; /** Blueprints currently installed on the tenant. */ installations: Array; /** Paged list of all blueprints across the configured catalogs. */ list: BlueprintListResponseDto; /** Diff a candidate update without applying it. Mode and target version come from the input. */ previewUpdate: BlueprintUpdatePreviewDto; /** Paged blueprint search across the configured catalogs. */ search: BlueprintListResponseDto; /** Available updates for the tenant's installed blueprint. */ updateInfo: BlueprintUpdateInfoDto; }; /** Blueprint catalog discovery + tenant-scoped installation, history, and backup queries. */ type BlueprintsQueryListArgsDto = { skip?: InputMaybe; take?: InputMaybe; }; /** Blueprint catalog discovery + tenant-scoped installation, history, and backup queries. */ type BlueprintsQueryPreviewUpdateArgsDto = { input: BlueprintUpdateRequestInputDto; }; /** Blueprint catalog discovery + tenant-scoped installation, history, and backup queries. */ type BlueprintsQuerySearchArgsDto = { query: Scalars['String']['input']; skip?: InputMaybe; take?: InputMaybe; }; /** Bucket-boundary alignment for a rollup archive: FIXED_SIZE / CALENDAR_DAY / ISO_8601_WEEK / CALENDAR_MONTH / CALENDAR_YEAR. */ declare enum BucketAlignmentInputDto { CalendarDayDto = "CALENDAR_DAY", CalendarMonthDto = "CALENDAR_MONTH", CalendarYearDto = "CALENDAR_YEAR", FixedSizeDto = "FIXED_SIZE", Iso_8601WeekDto = "ISO_8601_WEEK" } /** 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 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']; }; /** Aggregation function for a rollup. AVG is stored as two columns (sum + count) so chained rollups stay numerically correct. */ declare enum CkRollupFunctionDto { AvgDto = "AVG", CountDto = "COUNT", MaxDto = "MAX", MinDto = "MIN", StateDurationDto = "STATE_DURATION", SumDto = "SUM", TimeWeightedAvgDto = "TIME_WEIGHTED_AVG" } /** 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; includeManyNavigations?: 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 type id of the origin side of the association */ rtOriginCkTypeId: Scalars['RtCkTypeId']['output']; /** 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; }; /** 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>>; }; /** Input for createRollupArchive: source archive + bucketing/lag + aggregations. TargetCkTypeId and Columns are resolved server-side. */ type CreateRollupArchiveInputDto = { /** Aggregation specs. At least one required; duplicate target column names are rejected. */ aggregations: Array; /** Optional bucket-boundary alignment. Defaults to FIXED_SIZE. Calendar variants (CALENDAR_DAY / ISO_8601_WEEK / CALENDAR_MONTH / CALENDAR_YEAR) make day/week/month/year rollups expressible and are the only ones for which referenceTimeZone has any effect. */ bucketAlignment?: InputMaybe; /** Bucket width in milliseconds. Must be > 0. */ bucketSizeMs: Scalars['Long']['input']; /** Optional bound on the TIME_WEIGHTED_AVG carry-in scan (last observation carried forward) in milliseconds. Null keeps the engine default of 35 days. Only meaningful when the aggregations include TIME_WEIGHTED_AVG; ignored otherwise. Must be > 0 when set. */ carryLookbackMs?: InputMaybe; /** Optional IANA reference time-zone (e.g. 'Europe/Vienna') that aligns calendar bucket boundaries to local wall-clock time so they are DST-correct. Null keeps UTC boundaries. Ignored for FIXED_SIZE; an unknown zone id is rejected. */ referenceTimeZone?: InputMaybe; /** Optional human-readable name for the rollup archive. */ rtWellKnownName?: InputMaybe; /** Runtime id of the source archive (raw CkArchive or another CkRollupArchive for chained rollups). */ sourceArchiveRtId: Scalars['OctoObjectId']['input']; /** Safety-wait after bucketEnd before aggregating, in milliseconds. >= 0. */ watermarkLagMs: Scalars['Long']['input']; }; /** Input for createTimeRangeArchive: target CK type, columns, optional name + advisory period. */ type CreateTimeRangeArchiveInputDto = { /** Attribute paths to materialise as CrateDB columns. At least one required. */ columns: Array; /** Advisory window length in milliseconds (e.g. 900000 = 15 min). Optional; descriptive only. */ periodMs?: InputMaybe; /** Optional human-readable name for the archive. */ rtWellKnownName?: InputMaybe; /** CK type id whose rows this archive captures windowed values for. */ targetCkTypeId: Scalars['String']['input']; }; /** Defines possible delete strategies of a runtime type */ declare enum DeleteStrategiesDto { ArchiveDto = "ARCHIVE", EraseDto = "ERASE" } /** Runtime entities of construction kit enum 'EnergyCommunity/BillingCycle' */ declare enum EnergyCommunityBillingCycleDto { /** The billing cycle is one year */ AnnuallyDto = "ANNUALLY", /** The billing cycle is one month */ MonthlyDto = "MONTHLY", /** The billing cycle is one quarter */ QuarterlyDto = "QUARTERLY", /** The billing cycle is six months */ SemiAnnuallyDto = "SEMI_ANNUALLY" } /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/BillingDocument-1' */ type EnergyCommunityBillingDocumentDto = BasicDocumentInterfaceDto & SystemEntityInterfaceDto & { __typename?: 'EnergyCommunityBillingDocument'; assignedTo?: Maybe; associations?: Maybe; bankAccount?: Maybe; billingDocumentState: EnergyCommunityBillingDocumentStateDto; billingType: EnergyCommunityBillingTypeDto; children?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; comment?: Maybe; configuredBy?: Maybe; constructionKitType?: Maybe; contact: BasicContactDto; customerNumber: Scalars['String']['output']; documentDate: Scalars['DateTime']['output']; documentNumber: Scalars['String']['output']; grossTotal: Scalars['Decimal']['output']; mapsFrom?: Maybe; mapsTo?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; taxProcedureCreditNote: EnergyCommunityTaxProcedureCreditNoteDto; timeRange: BasicTimeRangeDto; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/BillingDocument-1' */ type EnergyCommunityBillingDocumentAssignedToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/BillingDocument-1' */ type EnergyCommunityBillingDocumentAssociationsArgsDto = { 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 'EnergyCommunity-3.0.5/BillingDocument-1' */ type EnergyCommunityBillingDocumentChildrenArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/BillingDocument-1' */ type EnergyCommunityBillingDocumentConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/BillingDocument-1' */ type EnergyCommunityBillingDocumentMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/BillingDocument-1' */ type EnergyCommunityBillingDocumentMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/BillingDocument-1' */ type EnergyCommunityBillingDocumentRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/BillingDocument-1' */ type EnergyCommunityBillingDocumentRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/BillingDocument-1' */ type EnergyCommunityBillingDocumentTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `EnergyCommunityBillingDocument`. */ type EnergyCommunityBillingDocumentConnectionDto = { __typename?: 'EnergyCommunityBillingDocumentConnection'; /** 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 `EnergyCommunityBillingDocument`. */ type EnergyCommunityBillingDocumentEdgeDto = { __typename?: 'EnergyCommunityBillingDocumentEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type EnergyCommunityBillingDocumentInputDto = { assignedTo?: InputMaybe>>; bankAccount?: InputMaybe; billingDocumentState?: InputMaybe; billingType?: InputMaybe; children?: InputMaybe>>; comment?: InputMaybe; configuredBy?: InputMaybe>>; contact?: InputMaybe; customerNumber?: InputMaybe; documentDate?: InputMaybe; documentNumber?: InputMaybe; grossTotal?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; taxProcedureCreditNote?: InputMaybe; timeRange?: InputMaybe; }; type EnergyCommunityBillingDocumentInputUpdateDto = { /** Item to update */ item: EnergyCommunityBillingDocumentInputDto; rtId?: InputMaybe; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/BillingDocumentLineItem-1' */ type EnergyCommunityBillingDocumentLineItemDto = SystemEntityInterfaceDto & { __typename?: 'EnergyCommunityBillingDocumentLineItem'; assignedTo?: Maybe; associations?: Maybe; billingType: EnergyCommunityBillingTypeDto; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; grossAmount: Scalars['Decimal']['output']; mapsFrom?: Maybe; mapsTo?: Maybe; meteringPoint?: Maybe; netAmount: Scalars['Decimal']['output']; parent?: Maybe; quantity: Scalars['Decimal']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; taxAmount: Scalars['Decimal']['output']; taxRate: Scalars['Decimal']['output']; unitPrice: Scalars['Decimal']['output']; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/BillingDocumentLineItem-1' */ type EnergyCommunityBillingDocumentLineItemAssignedToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/BillingDocumentLineItem-1' */ type EnergyCommunityBillingDocumentLineItemAssociationsArgsDto = { 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 'EnergyCommunity-3.0.5/BillingDocumentLineItem-1' */ type EnergyCommunityBillingDocumentLineItemConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/BillingDocumentLineItem-1' */ type EnergyCommunityBillingDocumentLineItemMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/BillingDocumentLineItem-1' */ type EnergyCommunityBillingDocumentLineItemMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/BillingDocumentLineItem-1' */ type EnergyCommunityBillingDocumentLineItemMeteringPointArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/BillingDocumentLineItem-1' */ type EnergyCommunityBillingDocumentLineItemParentArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/BillingDocumentLineItem-1' */ type EnergyCommunityBillingDocumentLineItemRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/BillingDocumentLineItem-1' */ type EnergyCommunityBillingDocumentLineItemRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/BillingDocumentLineItem-1' */ type EnergyCommunityBillingDocumentLineItemTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `EnergyCommunityBillingDocumentLineItem`. */ type EnergyCommunityBillingDocumentLineItemConnectionDto = { __typename?: 'EnergyCommunityBillingDocumentLineItemConnection'; /** 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 `EnergyCommunityBillingDocumentLineItem`. */ type EnergyCommunityBillingDocumentLineItemEdgeDto = { __typename?: 'EnergyCommunityBillingDocumentLineItemEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type EnergyCommunityBillingDocumentLineItemInputDto = { assignedTo?: InputMaybe>>; billingType?: InputMaybe; configuredBy?: InputMaybe>>; grossAmount?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; meteringPoint?: InputMaybe>>; netAmount?: InputMaybe; parent?: InputMaybe>>; quantity?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; taxAmount?: InputMaybe; taxRate?: InputMaybe; unitPrice?: InputMaybe; }; type EnergyCommunityBillingDocumentLineItemInputUpdateDto = { /** Item to update */ item: EnergyCommunityBillingDocumentLineItemInputDto; rtId?: InputMaybe; }; type EnergyCommunityBillingDocumentLineItemMutationsDto = { __typename?: 'EnergyCommunityBillingDocumentLineItemMutations'; /** Creates new entities of type 'EnergyCommunityBillingDocumentLineItem'. */ create?: Maybe>>; /** Updates existing entity of type 'EnergyCommunityBillingDocumentLineItem'. */ update?: Maybe>>; }; type EnergyCommunityBillingDocumentLineItemMutationsCreateArgsDto = { entities: Array>; }; type EnergyCommunityBillingDocumentLineItemMutationsUpdateArgsDto = { entities: Array>; }; type EnergyCommunityBillingDocumentLineItemUpdateDto = { __typename?: 'EnergyCommunityBillingDocumentLineItemUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type EnergyCommunityBillingDocumentLineItemUpdateMessageDto = { __typename?: 'EnergyCommunityBillingDocumentLineItemUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Union of types derived from EnergyCommunity/BillingDocumentLineItem for Billing association */ type EnergyCommunityBillingDocumentLineItem_BillingUnionDto = EnergyCommunityBillingDocumentLineItemDto; /** A connection to `EnergyCommunityBillingDocumentLineItem_BillingUnion`. */ type EnergyCommunityBillingDocumentLineItem_BillingUnionConnectionDto = { __typename?: 'EnergyCommunityBillingDocumentLineItem_BillingUnionConnection'; /** 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 `EnergyCommunityBillingDocumentLineItem_BillingUnion`. */ type EnergyCommunityBillingDocumentLineItem_BillingUnionEdgeDto = { __typename?: 'EnergyCommunityBillingDocumentLineItem_BillingUnionEdge'; /** 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 EnergyCommunity/BillingDocumentLineItem for Billings association */ type EnergyCommunityBillingDocumentLineItem_BillingsUnionDto = EnergyCommunityBillingDocumentLineItemDto; /** A connection to `EnergyCommunityBillingDocumentLineItem_BillingsUnion`. */ type EnergyCommunityBillingDocumentLineItem_BillingsUnionConnectionDto = { __typename?: 'EnergyCommunityBillingDocumentLineItem_BillingsUnionConnection'; /** 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 `EnergyCommunityBillingDocumentLineItem_BillingsUnion`. */ type EnergyCommunityBillingDocumentLineItem_BillingsUnionEdgeDto = { __typename?: 'EnergyCommunityBillingDocumentLineItem_BillingsUnionEdge'; /** 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 EnergyCommunity/BillingDocumentLineItem for Children association */ type EnergyCommunityBillingDocumentLineItem_ChildrenUnionDto = EnergyCommunityBillingDocumentLineItemDto; /** A connection to `EnergyCommunityBillingDocumentLineItem_ChildrenUnion`. */ type EnergyCommunityBillingDocumentLineItem_ChildrenUnionConnectionDto = { __typename?: 'EnergyCommunityBillingDocumentLineItem_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 `EnergyCommunityBillingDocumentLineItem_ChildrenUnion`. */ type EnergyCommunityBillingDocumentLineItem_ChildrenUnionEdgeDto = { __typename?: 'EnergyCommunityBillingDocumentLineItem_ChildrenUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type EnergyCommunityBillingDocumentMutationsDto = { __typename?: 'EnergyCommunityBillingDocumentMutations'; /** Creates new entities of type 'EnergyCommunityBillingDocument'. */ create?: Maybe>>; /** Updates existing entity of type 'EnergyCommunityBillingDocument'. */ update?: Maybe>>; }; type EnergyCommunityBillingDocumentMutationsCreateArgsDto = { entities: Array>; }; type EnergyCommunityBillingDocumentMutationsUpdateArgsDto = { entities: Array>; }; /** Runtime entities of construction kit enum 'EnergyCommunity/BillingDocumentState' */ declare enum EnergyCommunityBillingDocumentStateDto { /** The billing document has been canceled */ CanceledDto = "CANCELED", /** The billing document is a draft */ DraftDto = "DRAFT", /** The billing document has been paid */ PaidDto = "PAID", /** The billing document is released */ ReleasedDto = "RELEASED", /** The billing document has been sent */ SentDto = "SENT" } type EnergyCommunityBillingDocumentUpdateDto = { __typename?: 'EnergyCommunityBillingDocumentUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type EnergyCommunityBillingDocumentUpdateMessageDto = { __typename?: 'EnergyCommunityBillingDocumentUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Union of types derived from EnergyCommunity/BillingDocument for Billing association */ type EnergyCommunityBillingDocument_BillingUnionDto = EnergyCommunityBillingDocumentDto; /** A connection to `EnergyCommunityBillingDocument_BillingUnion`. */ type EnergyCommunityBillingDocument_BillingUnionConnectionDto = { __typename?: 'EnergyCommunityBillingDocument_BillingUnionConnection'; /** 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 `EnergyCommunityBillingDocument_BillingUnion`. */ type EnergyCommunityBillingDocument_BillingUnionEdgeDto = { __typename?: 'EnergyCommunityBillingDocument_BillingUnionEdge'; /** 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 EnergyCommunity/BillingDocument for Parent association */ type EnergyCommunityBillingDocument_ParentUnionDto = EnergyCommunityBillingDocumentDto; /** A connection to `EnergyCommunityBillingDocument_ParentUnion`. */ type EnergyCommunityBillingDocument_ParentUnionConnectionDto = { __typename?: 'EnergyCommunityBillingDocument_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 `EnergyCommunityBillingDocument_ParentUnion`. */ type EnergyCommunityBillingDocument_ParentUnionEdgeDto = { __typename?: 'EnergyCommunityBillingDocument_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 'EnergyCommunity/BillingType' */ declare enum EnergyCommunityBillingTypeDto { /** The document or item is an credit note or credit */ CreditDto = "CREDIT", /** The document is an invoice or the item is a debit note */ DebitDto = "DEBIT" } /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/Consumer-1' */ type EnergyCommunityConsumerDto = BasicNamedEntityInterfaceDto & EnergyCommunityMeteringPointInterfaceDto & SystemEntityInterfaceDto & { __typename?: 'EnergyCommunityConsumer'; associations?: Maybe; billings?: Maybe; children?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; consentId?: Maybe; constructionKitType?: Maybe; description?: Maybe; energyConsumption?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; meteringPointNumber: Scalars['String']['output']; name: Scalars['String']['output']; parent?: Maybe; partitionFactor?: Maybe; periods?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; state: EnergyCommunityStateDto; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/Consumer-1' */ type EnergyCommunityConsumerAssociationsArgsDto = { 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 'EnergyCommunity-3.0.5/Consumer-1' */ type EnergyCommunityConsumerBillingsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/Consumer-1' */ type EnergyCommunityConsumerChildrenArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/Consumer-1' */ type EnergyCommunityConsumerConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/Consumer-1' */ type EnergyCommunityConsumerMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/Consumer-1' */ type EnergyCommunityConsumerMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/Consumer-1' */ type EnergyCommunityConsumerParentArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/Consumer-1' */ type EnergyCommunityConsumerPeriodsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/Consumer-1' */ type EnergyCommunityConsumerRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/Consumer-1' */ type EnergyCommunityConsumerRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/Consumer-1' */ type EnergyCommunityConsumerTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `EnergyCommunityConsumer`. */ type EnergyCommunityConsumerConnectionDto = { __typename?: 'EnergyCommunityConsumerConnection'; /** 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 `EnergyCommunityConsumer`. */ type EnergyCommunityConsumerEdgeDto = { __typename?: 'EnergyCommunityConsumerEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type EnergyCommunityConsumerInputDto = { billings?: InputMaybe>>; children?: InputMaybe>>; configuredBy?: InputMaybe>>; consentId?: InputMaybe; description?: InputMaybe; energyConsumption?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; meteringPointNumber?: InputMaybe; name?: InputMaybe; parent?: InputMaybe>>; partitionFactor?: InputMaybe; periods?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; state?: InputMaybe; taggedBy?: InputMaybe>>; }; type EnergyCommunityConsumerInputUpdateDto = { /** Item to update */ item: EnergyCommunityConsumerInputDto; rtId?: InputMaybe; }; type EnergyCommunityConsumerMutationsDto = { __typename?: 'EnergyCommunityConsumerMutations'; /** Creates new entities of type 'EnergyCommunityConsumer'. */ create?: Maybe>>; /** Updates existing entity of type 'EnergyCommunityConsumer'. */ update?: Maybe>>; }; type EnergyCommunityConsumerMutationsCreateArgsDto = { entities: Array>; }; type EnergyCommunityConsumerMutationsUpdateArgsDto = { entities: Array>; }; type EnergyCommunityConsumerUpdateDto = { __typename?: 'EnergyCommunityConsumerUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type EnergyCommunityConsumerUpdateMessageDto = { __typename?: 'EnergyCommunityConsumerUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/Customer-1' */ type EnergyCommunityCustomerDto = SystemEntityInterfaceDto & { __typename?: 'EnergyCommunityCustomer'; associations?: Maybe; bankAccount?: Maybe; billing?: Maybe; billingCycle: EnergyCommunityBillingCycleDto; ckTypeId: Scalars['RtCkTypeId']['output']; comment?: Maybe; configuredBy?: Maybe; constructionKitType?: Maybe; contact: BasicContactDto; customerNumber: Scalars['String']['output']; facilities?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; state: EnergyCommunityStateDto; taggedBy?: Maybe; taxProcedureCreditNote: EnergyCommunityTaxProcedureCreditNoteDto; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/Customer-1' */ type EnergyCommunityCustomerAssociationsArgsDto = { 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 'EnergyCommunity-3.0.5/Customer-1' */ type EnergyCommunityCustomerBillingArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/Customer-1' */ type EnergyCommunityCustomerConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/Customer-1' */ type EnergyCommunityCustomerFacilitiesArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/Customer-1' */ type EnergyCommunityCustomerMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/Customer-1' */ type EnergyCommunityCustomerMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/Customer-1' */ type EnergyCommunityCustomerRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/Customer-1' */ type EnergyCommunityCustomerRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/Customer-1' */ type EnergyCommunityCustomerTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `EnergyCommunityCustomer`. */ type EnergyCommunityCustomerConnectionDto = { __typename?: 'EnergyCommunityCustomerConnection'; /** 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 `EnergyCommunityCustomer`. */ type EnergyCommunityCustomerEdgeDto = { __typename?: 'EnergyCommunityCustomerEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type EnergyCommunityCustomerInputDto = { bankAccount?: InputMaybe; billing?: InputMaybe>>; billingCycle?: InputMaybe; comment?: InputMaybe; configuredBy?: InputMaybe>>; contact?: InputMaybe; customerNumber?: InputMaybe; facilities?: InputMaybe>>; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; state?: InputMaybe; taggedBy?: InputMaybe>>; taxProcedureCreditNote?: InputMaybe; }; type EnergyCommunityCustomerInputUpdateDto = { /** Item to update */ item: EnergyCommunityCustomerInputDto; rtId?: InputMaybe; }; type EnergyCommunityCustomerMutationsDto = { __typename?: 'EnergyCommunityCustomerMutations'; /** Creates new entities of type 'EnergyCommunityCustomer'. */ create?: Maybe>>; /** Updates existing entity of type 'EnergyCommunityCustomer'. */ update?: Maybe>>; }; type EnergyCommunityCustomerMutationsCreateArgsDto = { entities: Array>; }; type EnergyCommunityCustomerMutationsUpdateArgsDto = { entities: Array>; }; type EnergyCommunityCustomerUpdateDto = { __typename?: 'EnergyCommunityCustomerUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type EnergyCommunityCustomerUpdateMessageDto = { __typename?: 'EnergyCommunityCustomerUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Union of types derived from EnergyCommunity/Customer for AssignedTo association */ type EnergyCommunityCustomer_AssignedToUnionDto = EnergyCommunityCustomerDto; /** A connection to `EnergyCommunityCustomer_AssignedToUnion`. */ type EnergyCommunityCustomer_AssignedToUnionConnectionDto = { __typename?: 'EnergyCommunityCustomer_AssignedToUnionConnection'; /** 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 `EnergyCommunityCustomer_AssignedToUnion`. */ type EnergyCommunityCustomer_AssignedToUnionEdgeDto = { __typename?: 'EnergyCommunityCustomer_AssignedToUnionEdge'; /** 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 EnergyCommunity/Customer for Customer association */ type EnergyCommunityCustomer_CustomerUnionDto = EnergyCommunityCustomerDto; /** A connection to `EnergyCommunityCustomer_CustomerUnion`. */ type EnergyCommunityCustomer_CustomerUnionConnectionDto = { __typename?: 'EnergyCommunityCustomer_CustomerUnionConnection'; /** 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 `EnergyCommunityCustomer_CustomerUnion`. */ type EnergyCommunityCustomer_CustomerUnionEdgeDto = { __typename?: 'EnergyCommunityCustomer_CustomerUnionEdge'; /** 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 'EnergyCommunity/DataQuality' */ declare enum EnergyCommunityDataQualityDto { /** The data is accurate to 15 minute meter readings */ L_1Dto = "L_1", /** The data is a linear interpolation of 2 known meter readings */ L_2Dto = "L_2", /** The data is an estimate */ L_3Dto = "L_3", /** The data quality is unknown */ UnknownDto = "UNKNOWN" } /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/EdaMessage-1' */ type EnergyCommunityEdaMessageDto = SystemEntityInterfaceDto & { __typename?: 'EnergyCommunityEdaMessage'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; conversationId?: Maybe; creationDate: Scalars['DateTime']['output']; mapsFrom?: Maybe; mapsTo?: Maybe; messageId: Scalars['String']['output']; messageType: Scalars['String']['output']; meteringPoint?: Maybe; process?: Maybe; processed: Scalars['Boolean']['output']; rawMessage?: Maybe; receiver: Scalars['String']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; sender: Scalars['String']['output']; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/EdaMessage-1' */ type EnergyCommunityEdaMessageAssociationsArgsDto = { 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 'EnergyCommunity-3.0.5/EdaMessage-1' */ type EnergyCommunityEdaMessageConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/EdaMessage-1' */ type EnergyCommunityEdaMessageMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/EdaMessage-1' */ type EnergyCommunityEdaMessageMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/EdaMessage-1' */ type EnergyCommunityEdaMessageProcessArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/EdaMessage-1' */ type EnergyCommunityEdaMessageRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/EdaMessage-1' */ type EnergyCommunityEdaMessageRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/EdaMessage-1' */ type EnergyCommunityEdaMessageTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `EnergyCommunityEdaMessage`. */ type EnergyCommunityEdaMessageConnectionDto = { __typename?: 'EnergyCommunityEdaMessageConnection'; /** 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 `EnergyCommunityEdaMessage`. */ type EnergyCommunityEdaMessageEdgeDto = { __typename?: 'EnergyCommunityEdaMessageEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type EnergyCommunityEdaMessageInputDto = { configuredBy?: InputMaybe>>; conversationId?: InputMaybe; creationDate?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; messageId?: InputMaybe; messageType?: InputMaybe; meteringPoint?: InputMaybe; process?: InputMaybe>>; processed?: InputMaybe; rawMessage?: InputMaybe; receiver?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; sender?: InputMaybe; taggedBy?: InputMaybe>>; }; type EnergyCommunityEdaMessageInputUpdateDto = { /** Item to update */ item: EnergyCommunityEdaMessageInputDto; rtId?: InputMaybe; }; type EnergyCommunityEdaMessageMutationsDto = { __typename?: 'EnergyCommunityEdaMessageMutations'; /** Creates new entities of type 'EnergyCommunityEdaMessage'. */ create?: Maybe>>; /** Updates existing entity of type 'EnergyCommunityEdaMessage'. */ update?: Maybe>>; }; type EnergyCommunityEdaMessageMutationsCreateArgsDto = { entities: Array>; }; type EnergyCommunityEdaMessageMutationsUpdateArgsDto = { entities: Array>; }; type EnergyCommunityEdaMessageUpdateDto = { __typename?: 'EnergyCommunityEdaMessageUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type EnergyCommunityEdaMessageUpdateMessageDto = { __typename?: 'EnergyCommunityEdaMessageUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Union of types derived from EnergyCommunity/EdaMessage for Messages association */ type EnergyCommunityEdaMessage_MessagesUnionDto = EnergyCommunityEdaMessageDto; /** A connection to `EnergyCommunityEdaMessage_MessagesUnion`. */ type EnergyCommunityEdaMessage_MessagesUnionConnectionDto = { __typename?: 'EnergyCommunityEdaMessage_MessagesUnionConnection'; /** 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 `EnergyCommunityEdaMessage_MessagesUnion`. */ type EnergyCommunityEdaMessage_MessagesUnionEdgeDto = { __typename?: 'EnergyCommunityEdaMessage_MessagesUnionEdge'; /** 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 'EnergyCommunity-3.0.5/EdaMeteringPoint-1' */ type EnergyCommunityEdaMeteringPointDto = SystemEntityInterfaceDto & { __typename?: 'EnergyCommunityEdaMeteringPoint'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; consentId?: Maybe; constructionKitType?: Maybe; isProducer: Scalars['Boolean']['output']; mapsFrom?: Maybe; mapsTo?: Maybe; meteringPointNumber: Scalars['String']['output']; partitionFactor?: Maybe; productionType?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/EdaMeteringPoint-1' */ type EnergyCommunityEdaMeteringPointAssociationsArgsDto = { 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 'EnergyCommunity-3.0.5/EdaMeteringPoint-1' */ type EnergyCommunityEdaMeteringPointConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/EdaMeteringPoint-1' */ type EnergyCommunityEdaMeteringPointMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/EdaMeteringPoint-1' */ type EnergyCommunityEdaMeteringPointMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/EdaMeteringPoint-1' */ type EnergyCommunityEdaMeteringPointRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/EdaMeteringPoint-1' */ type EnergyCommunityEdaMeteringPointRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/EdaMeteringPoint-1' */ type EnergyCommunityEdaMeteringPointTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `EnergyCommunityEdaMeteringPoint`. */ type EnergyCommunityEdaMeteringPointConnectionDto = { __typename?: 'EnergyCommunityEdaMeteringPointConnection'; /** 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 `EnergyCommunityEdaMeteringPoint`. */ type EnergyCommunityEdaMeteringPointEdgeDto = { __typename?: 'EnergyCommunityEdaMeteringPointEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type EnergyCommunityEdaMeteringPointInputDto = { configuredBy?: InputMaybe>>; consentId?: InputMaybe; isProducer?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; meteringPointNumber?: InputMaybe; partitionFactor?: InputMaybe; productionType?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; }; type EnergyCommunityEdaMeteringPointInputUpdateDto = { /** Item to update */ item: EnergyCommunityEdaMeteringPointInputDto; rtId?: InputMaybe; }; type EnergyCommunityEdaMeteringPointMutationsDto = { __typename?: 'EnergyCommunityEdaMeteringPointMutations'; /** Creates new entities of type 'EnergyCommunityEdaMeteringPoint'. */ create?: Maybe>>; /** Updates existing entity of type 'EnergyCommunityEdaMeteringPoint'. */ update?: Maybe>>; }; type EnergyCommunityEdaMeteringPointMutationsCreateArgsDto = { entities: Array>; }; type EnergyCommunityEdaMeteringPointMutationsUpdateArgsDto = { entities: Array>; }; type EnergyCommunityEdaMeteringPointUpdateDto = { __typename?: 'EnergyCommunityEdaMeteringPointUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type EnergyCommunityEdaMeteringPointUpdateMessageDto = { __typename?: 'EnergyCommunityEdaMeteringPointUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/EdaProcess-1' */ type EnergyCommunityEdaProcessDto = BasicNamedEntityInterfaceDto & SystemEntityInterfaceDto & { __typename?: 'EnergyCommunityEdaProcess'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; conversationId: Scalars['String']['output']; description?: Maybe; finished: Scalars['Boolean']['output']; info?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; messages?: Maybe; meteringPointNumber?: Maybe; name: Scalars['String']['output']; rawMessage?: Maybe; receiver: Scalars['String']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; responseCode?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; sender: Scalars['String']['output']; startTime: Scalars['DateTime']['output']; success?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/EdaProcess-1' */ type EnergyCommunityEdaProcessAssociationsArgsDto = { 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 'EnergyCommunity-3.0.5/EdaProcess-1' */ type EnergyCommunityEdaProcessConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/EdaProcess-1' */ type EnergyCommunityEdaProcessMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/EdaProcess-1' */ type EnergyCommunityEdaProcessMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/EdaProcess-1' */ type EnergyCommunityEdaProcessMessagesArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/EdaProcess-1' */ type EnergyCommunityEdaProcessRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/EdaProcess-1' */ type EnergyCommunityEdaProcessRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/EdaProcess-1' */ type EnergyCommunityEdaProcessTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `EnergyCommunityEdaProcess`. */ type EnergyCommunityEdaProcessConnectionDto = { __typename?: 'EnergyCommunityEdaProcessConnection'; /** 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 `EnergyCommunityEdaProcess`. */ type EnergyCommunityEdaProcessEdgeDto = { __typename?: 'EnergyCommunityEdaProcessEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type EnergyCommunityEdaProcessInputDto = { configuredBy?: InputMaybe>>; conversationId?: InputMaybe; description?: InputMaybe; finished?: InputMaybe; info?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; messages?: InputMaybe>>; meteringPointNumber?: InputMaybe; name?: InputMaybe; rawMessage?: InputMaybe; receiver?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; responseCode?: InputMaybe; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; sender?: InputMaybe; startTime?: InputMaybe; success?: InputMaybe; taggedBy?: InputMaybe>>; }; type EnergyCommunityEdaProcessInputUpdateDto = { /** Item to update */ item: EnergyCommunityEdaProcessInputDto; rtId?: InputMaybe; }; type EnergyCommunityEdaProcessMutationsDto = { __typename?: 'EnergyCommunityEdaProcessMutations'; /** Creates new entities of type 'EnergyCommunityEdaProcess'. */ create?: Maybe>>; /** Updates existing entity of type 'EnergyCommunityEdaProcess'. */ update?: Maybe>>; }; type EnergyCommunityEdaProcessMutationsCreateArgsDto = { entities: Array>; }; type EnergyCommunityEdaProcessMutationsUpdateArgsDto = { entities: Array>; }; type EnergyCommunityEdaProcessUpdateDto = { __typename?: 'EnergyCommunityEdaProcessUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type EnergyCommunityEdaProcessUpdateMessageDto = { __typename?: 'EnergyCommunityEdaProcessUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Union of types derived from EnergyCommunity/EdaProcess for Process association */ type EnergyCommunityEdaProcess_ProcessUnionDto = EnergyCommunityEdaProcessDto; /** A connection to `EnergyCommunityEdaProcess_ProcessUnion`. */ type EnergyCommunityEdaProcess_ProcessUnionConnectionDto = { __typename?: 'EnergyCommunityEdaProcess_ProcessUnionConnection'; /** 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 `EnergyCommunityEdaProcess_ProcessUnion`. */ type EnergyCommunityEdaProcess_ProcessUnionEdgeDto = { __typename?: 'EnergyCommunityEdaProcess_ProcessUnionEdge'; /** 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 'EnergyCommunity-3.0.5/EnergyPrice-1' */ type EnergyCommunityEnergyPriceDto = SystemEntityInterfaceDto & { __typename?: 'EnergyCommunityEnergyPrice'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; currency: Scalars['String']['output']; mapsFrom?: Maybe; mapsTo?: Maybe; price: Scalars['Decimal']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/EnergyPrice-1' */ type EnergyCommunityEnergyPriceAssociationsArgsDto = { 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 'EnergyCommunity-3.0.5/EnergyPrice-1' */ type EnergyCommunityEnergyPriceConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/EnergyPrice-1' */ type EnergyCommunityEnergyPriceMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/EnergyPrice-1' */ type EnergyCommunityEnergyPriceMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/EnergyPrice-1' */ type EnergyCommunityEnergyPriceRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/EnergyPrice-1' */ type EnergyCommunityEnergyPriceRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/EnergyPrice-1' */ type EnergyCommunityEnergyPriceTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `EnergyCommunityEnergyPrice`. */ type EnergyCommunityEnergyPriceConnectionDto = { __typename?: 'EnergyCommunityEnergyPriceConnection'; /** 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 `EnergyCommunityEnergyPrice`. */ type EnergyCommunityEnergyPriceEdgeDto = { __typename?: 'EnergyCommunityEnergyPriceEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type EnergyCommunityEnergyPriceInputDto = { configuredBy?: InputMaybe>>; currency?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; price?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; }; type EnergyCommunityEnergyPriceInputUpdateDto = { /** Item to update */ item: EnergyCommunityEnergyPriceInputDto; rtId?: InputMaybe; }; type EnergyCommunityEnergyPriceMutationsDto = { __typename?: 'EnergyCommunityEnergyPriceMutations'; /** Creates new entities of type 'EnergyCommunityEnergyPrice'. */ create?: Maybe>>; /** Updates existing entity of type 'EnergyCommunityEnergyPrice'. */ update?: Maybe>>; }; type EnergyCommunityEnergyPriceMutationsCreateArgsDto = { entities: Array>; }; type EnergyCommunityEnergyPriceMutationsUpdateArgsDto = { entities: Array>; }; type EnergyCommunityEnergyPriceUpdateDto = { __typename?: 'EnergyCommunityEnergyPriceUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type EnergyCommunityEnergyPriceUpdateMessageDto = { __typename?: 'EnergyCommunityEnergyPriceUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/EnergyQuantity-1' */ type EnergyCommunityEnergyQuantityDto = SystemEntityInterfaceDto & { __typename?: 'EnergyCommunityEnergyQuantity'; associations?: Maybe; billing?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; dataQuality: EnergyCommunityDataQualityDto; mapsFrom?: Maybe; mapsTo?: Maybe; parent?: Maybe; quantity: Scalars['Decimal']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; timeRange: BasicTimeRangeDto; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/EnergyQuantity-1' */ type EnergyCommunityEnergyQuantityAssociationsArgsDto = { 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 'EnergyCommunity-3.0.5/EnergyQuantity-1' */ type EnergyCommunityEnergyQuantityBillingArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/EnergyQuantity-1' */ type EnergyCommunityEnergyQuantityConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/EnergyQuantity-1' */ type EnergyCommunityEnergyQuantityMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/EnergyQuantity-1' */ type EnergyCommunityEnergyQuantityMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/EnergyQuantity-1' */ type EnergyCommunityEnergyQuantityParentArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/EnergyQuantity-1' */ type EnergyCommunityEnergyQuantityRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/EnergyQuantity-1' */ type EnergyCommunityEnergyQuantityRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/EnergyQuantity-1' */ type EnergyCommunityEnergyQuantityTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `EnergyCommunityEnergyQuantity`. */ type EnergyCommunityEnergyQuantityConnectionDto = { __typename?: 'EnergyCommunityEnergyQuantityConnection'; /** 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 `EnergyCommunityEnergyQuantity`. */ type EnergyCommunityEnergyQuantityEdgeDto = { __typename?: 'EnergyCommunityEnergyQuantityEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type EnergyCommunityEnergyQuantityInputDto = { billing?: InputMaybe>>; configuredBy?: InputMaybe>>; dataQuality?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; parent?: InputMaybe>>; quantity?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; timeRange?: InputMaybe; }; type EnergyCommunityEnergyQuantityInputUpdateDto = { /** Item to update */ item: EnergyCommunityEnergyQuantityInputDto; rtId?: InputMaybe; }; type EnergyCommunityEnergyQuantityMutationsDto = { __typename?: 'EnergyCommunityEnergyQuantityMutations'; /** Creates new entities of type 'EnergyCommunityEnergyQuantity'. */ create?: Maybe>>; /** Updates existing entity of type 'EnergyCommunityEnergyQuantity'. */ update?: Maybe>>; }; type EnergyCommunityEnergyQuantityMutationsCreateArgsDto = { entities: Array>; }; type EnergyCommunityEnergyQuantityMutationsUpdateArgsDto = { entities: Array>; }; type EnergyCommunityEnergyQuantityUpdateDto = { __typename?: 'EnergyCommunityEnergyQuantityUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type EnergyCommunityEnergyQuantityUpdateMessageDto = { __typename?: 'EnergyCommunityEnergyQuantityUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Union of types derived from EnergyCommunity/EnergyQuantity for AssignedTo association */ type EnergyCommunityEnergyQuantity_AssignedToUnionDto = EnergyCommunityEnergyQuantityDto; /** A connection to `EnergyCommunityEnergyQuantity_AssignedToUnion`. */ type EnergyCommunityEnergyQuantity_AssignedToUnionConnectionDto = { __typename?: 'EnergyCommunityEnergyQuantity_AssignedToUnionConnection'; /** 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 `EnergyCommunityEnergyQuantity_AssignedToUnion`. */ type EnergyCommunityEnergyQuantity_AssignedToUnionEdgeDto = { __typename?: 'EnergyCommunityEnergyQuantity_AssignedToUnionEdge'; /** 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 EnergyCommunity/EnergyQuantity for Children association */ type EnergyCommunityEnergyQuantity_ChildrenUnionDto = EnergyCommunityEnergyQuantityDto; /** A connection to `EnergyCommunityEnergyQuantity_ChildrenUnion`. */ type EnergyCommunityEnergyQuantity_ChildrenUnionConnectionDto = { __typename?: 'EnergyCommunityEnergyQuantity_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 `EnergyCommunityEnergyQuantity_ChildrenUnion`. */ type EnergyCommunityEnergyQuantity_ChildrenUnionEdgeDto = { __typename?: 'EnergyCommunityEnergyQuantity_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 enum 'EnergyCommunity/FacilityType' */ declare enum EnergyCommunityFacilityTypeDto { /** The facility type is a business */ BusinessDto = "BUSINESS", /** The facility type is a single household */ HouseholdDto = "HOUSEHOLD", /** The facility type is a industry */ IndustryDto = "INDUSTRY", /** The facility type is a public building e.g. schools, public offices */ PublicBuildingDto = "PUBLIC_BUILDING", /** The facility type is an energy storage */ StorageDto = "STORAGE", /** The facility type is unknown or not defined */ UnknownDto = "UNKNOWN" } /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/MeteringPoint-1' */ type EnergyCommunityMeteringPointDto = BasicNamedEntityInterfaceDto & SystemEntityInterfaceDto & { __typename?: 'EnergyCommunityMeteringPoint'; associations?: Maybe; billings?: Maybe; children?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; consentId?: Maybe; constructionKitType?: Maybe; description?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; meteringPointNumber: Scalars['String']['output']; name: Scalars['String']['output']; parent?: Maybe; partitionFactor?: Maybe; periods?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; state: EnergyCommunityStateDto; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/MeteringPoint-1' */ type EnergyCommunityMeteringPointAssociationsArgsDto = { 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 'EnergyCommunity-3.0.5/MeteringPoint-1' */ type EnergyCommunityMeteringPointBillingsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/MeteringPoint-1' */ type EnergyCommunityMeteringPointChildrenArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/MeteringPoint-1' */ type EnergyCommunityMeteringPointConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/MeteringPoint-1' */ type EnergyCommunityMeteringPointMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/MeteringPoint-1' */ type EnergyCommunityMeteringPointMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/MeteringPoint-1' */ type EnergyCommunityMeteringPointParentArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/MeteringPoint-1' */ type EnergyCommunityMeteringPointPeriodsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/MeteringPoint-1' */ type EnergyCommunityMeteringPointRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/MeteringPoint-1' */ type EnergyCommunityMeteringPointRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/MeteringPoint-1' */ type EnergyCommunityMeteringPointTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `EnergyCommunityMeteringPoint`. */ type EnergyCommunityMeteringPointConnectionDto = { __typename?: 'EnergyCommunityMeteringPointConnection'; /** 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 `EnergyCommunityMeteringPoint`. */ type EnergyCommunityMeteringPointEdgeDto = { __typename?: 'EnergyCommunityMeteringPointEdge'; /** 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 'EnergyCommunity-3.0.5/MeteringPoint-1' */ type EnergyCommunityMeteringPointInterfaceDto = { billings?: Maybe; children?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; consentId?: Maybe; description?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; meteringPointNumber: Scalars['String']['output']; name: Scalars['String']['output']; parent?: Maybe; partitionFactor?: Maybe; periods?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; state: EnergyCommunityStateDto; taggedBy?: Maybe; }; /** Interface for runtime entities of construction kit type 'EnergyCommunity-3.0.5/MeteringPoint-1' */ type EnergyCommunityMeteringPointInterfaceBillingsArgsDto = { 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 'EnergyCommunity-3.0.5/MeteringPoint-1' */ type EnergyCommunityMeteringPointInterfaceChildrenArgsDto = { 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 'EnergyCommunity-3.0.5/MeteringPoint-1' */ type EnergyCommunityMeteringPointInterfaceConfiguredByArgsDto = { 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 'EnergyCommunity-3.0.5/MeteringPoint-1' */ type EnergyCommunityMeteringPointInterfaceMapsFromArgsDto = { 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 'EnergyCommunity-3.0.5/MeteringPoint-1' */ type EnergyCommunityMeteringPointInterfaceMapsToArgsDto = { 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 'EnergyCommunity-3.0.5/MeteringPoint-1' */ type EnergyCommunityMeteringPointInterfaceParentArgsDto = { 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 'EnergyCommunity-3.0.5/MeteringPoint-1' */ type EnergyCommunityMeteringPointInterfacePeriodsArgsDto = { 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 'EnergyCommunity-3.0.5/MeteringPoint-1' */ type EnergyCommunityMeteringPointInterfaceRelatesFromArgsDto = { 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 'EnergyCommunity-3.0.5/MeteringPoint-1' */ type EnergyCommunityMeteringPointInterfaceRelatesToArgsDto = { 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 'EnergyCommunity-3.0.5/MeteringPoint-1' */ type EnergyCommunityMeteringPointInterfaceTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type EnergyCommunityMeteringPointUpdateDto = { __typename?: 'EnergyCommunityMeteringPointUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type EnergyCommunityMeteringPointUpdateMessageDto = { __typename?: 'EnergyCommunityMeteringPointUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Union of types derived from EnergyCommunity/MeteringPoint for Children association */ type EnergyCommunityMeteringPoint_ChildrenUnionDto = BasicAssetDto | BasicCityDto | BasicCountryDto | BasicDistrictDto | BasicEnergyOperatingFacilityDto | BasicStateDto | BasicTreeNodeDto | EnergyCommunityConsumerDto | EnergyCommunityOperatingFacilityDto | EnergyCommunityProducerDto | EnvironmentCarbonBudgetDto | EnvironmentCarbonEmissionDto | EnvironmentCertificateOfOriginDto | EnvironmentComplianceRecordDto | EnvironmentEnvironmentalGoalDto | EnvironmentWasteMeterDto | IndustryBasicMachineDto | IndustryEnergyDemandResponseEventDto | IndustryEnergyEnergyConsumerDto | IndustryEnergyEnergyCostDto | IndustryEnergyEnergyForecastDto | IndustryEnergyEnergyMeterDto | IndustryEnergyEnergyPerformanceIndicatorDto | IndustryEnergyEnergyStorageDto | IndustryEnergyInverterDto | IndustryEnergyPhotovoltaicSystemDto | IndustryEnergyPhotovoltaicSystemModuleDto | IndustryEnergyPhotovoltaicSystemStringDto | IndustryFluidHeatMeterDto | IndustryFluidWaterMeterDto | IndustryMaintenanceCostCenterDto | IndustryMaintenanceEmployeeDto | IndustryMaintenanceWorkplaceDto | OctoSdkDemoMeteringPointDto | OctoSdkDemoOperatingFacilityDto; /** A connection to `EnergyCommunityMeteringPoint_ChildrenUnion`. */ type EnergyCommunityMeteringPoint_ChildrenUnionConnectionDto = { __typename?: 'EnergyCommunityMeteringPoint_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 `EnergyCommunityMeteringPoint_ChildrenUnion`. */ type EnergyCommunityMeteringPoint_ChildrenUnionEdgeDto = { __typename?: 'EnergyCommunityMeteringPoint_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 EnergyCommunity/MeteringPoint for MeteringPoint association */ type EnergyCommunityMeteringPoint_MeteringPointUnionDto = EnergyCommunityConsumerDto | EnergyCommunityProducerDto; /** A connection to `EnergyCommunityMeteringPoint_MeteringPointUnion`. */ type EnergyCommunityMeteringPoint_MeteringPointUnionConnectionDto = { __typename?: 'EnergyCommunityMeteringPoint_MeteringPointUnionConnection'; /** 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 `EnergyCommunityMeteringPoint_MeteringPointUnion`. */ type EnergyCommunityMeteringPoint_MeteringPointUnionEdgeDto = { __typename?: 'EnergyCommunityMeteringPoint_MeteringPointUnionEdge'; /** 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 EnergyCommunity/MeteringPoint for Parent association */ type EnergyCommunityMeteringPoint_ParentUnionDto = EnergyCommunityConsumerDto | EnergyCommunityProducerDto; /** A connection to `EnergyCommunityMeteringPoint_ParentUnion`. */ type EnergyCommunityMeteringPoint_ParentUnionConnectionDto = { __typename?: 'EnergyCommunityMeteringPoint_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 `EnergyCommunityMeteringPoint_ParentUnion`. */ type EnergyCommunityMeteringPoint_ParentUnionEdgeDto = { __typename?: 'EnergyCommunityMeteringPoint_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 'EnergyCommunity-3.0.5/OperatingFacility-1' */ type EnergyCommunityOperatingFacilityDto = { __typename?: 'EnergyCommunityOperatingFacility'; address: BasicAddressDto; associations?: Maybe; children?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; customer?: Maybe; description?: Maybe; facilityType: EnergyCommunityFacilityTypeDto; 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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; state: EnergyCommunityStateDto; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/OperatingFacility-1' */ type EnergyCommunityOperatingFacilityAssociationsArgsDto = { 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 'EnergyCommunity-3.0.5/OperatingFacility-1' */ type EnergyCommunityOperatingFacilityChildrenArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/OperatingFacility-1' */ type EnergyCommunityOperatingFacilityConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/OperatingFacility-1' */ type EnergyCommunityOperatingFacilityCustomerArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/OperatingFacility-1' */ type EnergyCommunityOperatingFacilityMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/OperatingFacility-1' */ type EnergyCommunityOperatingFacilityMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/OperatingFacility-1' */ type EnergyCommunityOperatingFacilityOrdersArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/OperatingFacility-1' */ type EnergyCommunityOperatingFacilityParentArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/OperatingFacility-1' */ type EnergyCommunityOperatingFacilityRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/OperatingFacility-1' */ type EnergyCommunityOperatingFacilityRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/OperatingFacility-1' */ type EnergyCommunityOperatingFacilityTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `EnergyCommunityOperatingFacility`. */ type EnergyCommunityOperatingFacilityConnectionDto = { __typename?: 'EnergyCommunityOperatingFacilityConnection'; /** 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 `EnergyCommunityOperatingFacility`. */ type EnergyCommunityOperatingFacilityEdgeDto = { __typename?: 'EnergyCommunityOperatingFacilityEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type EnergyCommunityOperatingFacilityInputDto = { address?: InputMaybe; children?: InputMaybe>>; configuredBy?: InputMaybe>>; customer?: InputMaybe>>; description?: InputMaybe; facilityType?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; orders?: InputMaybe>>; parent?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; state?: InputMaybe; taggedBy?: InputMaybe>>; }; type EnergyCommunityOperatingFacilityInputUpdateDto = { /** Item to update */ item: EnergyCommunityOperatingFacilityInputDto; rtId?: InputMaybe; }; type EnergyCommunityOperatingFacilityMutationsDto = { __typename?: 'EnergyCommunityOperatingFacilityMutations'; /** Creates new entities of type 'EnergyCommunityOperatingFacility'. */ create?: Maybe>>; /** Updates existing entity of type 'EnergyCommunityOperatingFacility'. */ update?: Maybe>>; }; type EnergyCommunityOperatingFacilityMutationsCreateArgsDto = { entities: Array>; }; type EnergyCommunityOperatingFacilityMutationsUpdateArgsDto = { entities: Array>; }; type EnergyCommunityOperatingFacilityUpdateDto = { __typename?: 'EnergyCommunityOperatingFacilityUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type EnergyCommunityOperatingFacilityUpdateMessageDto = { __typename?: 'EnergyCommunityOperatingFacilityUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Union of types derived from EnergyCommunity/OperatingFacility for Facilities association */ type EnergyCommunityOperatingFacility_FacilitiesUnionDto = EnergyCommunityOperatingFacilityDto; /** A connection to `EnergyCommunityOperatingFacility_FacilitiesUnion`. */ type EnergyCommunityOperatingFacility_FacilitiesUnionConnectionDto = { __typename?: 'EnergyCommunityOperatingFacility_FacilitiesUnionConnection'; /** 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 `EnergyCommunityOperatingFacility_FacilitiesUnion`. */ type EnergyCommunityOperatingFacility_FacilitiesUnionEdgeDto = { __typename?: 'EnergyCommunityOperatingFacility_FacilitiesUnionEdge'; /** 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 EnergyCommunity/OperatingFacility for Parent association */ type EnergyCommunityOperatingFacility_ParentUnionDto = EnergyCommunityOperatingFacilityDto; /** A connection to `EnergyCommunityOperatingFacility_ParentUnion`. */ type EnergyCommunityOperatingFacility_ParentUnionConnectionDto = { __typename?: 'EnergyCommunityOperatingFacility_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 `EnergyCommunityOperatingFacility_ParentUnion`. */ type EnergyCommunityOperatingFacility_ParentUnionEdgeDto = { __typename?: 'EnergyCommunityOperatingFacility_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 'EnergyCommunity-3.0.5/ParticipationPeriod-1' */ type EnergyCommunityParticipationPeriodDto = SystemEntityInterfaceDto & { __typename?: 'EnergyCommunityParticipationPeriod'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; meteringPoint?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; timeRange: BasicTimeRangeDto; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/ParticipationPeriod-1' */ type EnergyCommunityParticipationPeriodAssociationsArgsDto = { 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 'EnergyCommunity-3.0.5/ParticipationPeriod-1' */ type EnergyCommunityParticipationPeriodConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/ParticipationPeriod-1' */ type EnergyCommunityParticipationPeriodMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/ParticipationPeriod-1' */ type EnergyCommunityParticipationPeriodMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/ParticipationPeriod-1' */ type EnergyCommunityParticipationPeriodMeteringPointArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/ParticipationPeriod-1' */ type EnergyCommunityParticipationPeriodRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/ParticipationPeriod-1' */ type EnergyCommunityParticipationPeriodRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/ParticipationPeriod-1' */ type EnergyCommunityParticipationPeriodTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `EnergyCommunityParticipationPeriod`. */ type EnergyCommunityParticipationPeriodConnectionDto = { __typename?: 'EnergyCommunityParticipationPeriodConnection'; /** 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 `EnergyCommunityParticipationPeriod`. */ type EnergyCommunityParticipationPeriodEdgeDto = { __typename?: 'EnergyCommunityParticipationPeriodEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type EnergyCommunityParticipationPeriodInputDto = { configuredBy?: InputMaybe>>; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; meteringPoint?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; timeRange?: InputMaybe; }; type EnergyCommunityParticipationPeriodInputUpdateDto = { /** Item to update */ item: EnergyCommunityParticipationPeriodInputDto; rtId?: InputMaybe; }; type EnergyCommunityParticipationPeriodMutationsDto = { __typename?: 'EnergyCommunityParticipationPeriodMutations'; /** Creates new entities of type 'EnergyCommunityParticipationPeriod'. */ create?: Maybe>>; /** Updates existing entity of type 'EnergyCommunityParticipationPeriod'. */ update?: Maybe>>; }; type EnergyCommunityParticipationPeriodMutationsCreateArgsDto = { entities: Array>; }; type EnergyCommunityParticipationPeriodMutationsUpdateArgsDto = { entities: Array>; }; type EnergyCommunityParticipationPeriodUpdateDto = { __typename?: 'EnergyCommunityParticipationPeriodUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type EnergyCommunityParticipationPeriodUpdateMessageDto = { __typename?: 'EnergyCommunityParticipationPeriodUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Union of types derived from EnergyCommunity/ParticipationPeriod for Periods association */ type EnergyCommunityParticipationPeriod_PeriodsUnionDto = EnergyCommunityParticipationPeriodDto; /** A connection to `EnergyCommunityParticipationPeriod_PeriodsUnion`. */ type EnergyCommunityParticipationPeriod_PeriodsUnionConnectionDto = { __typename?: 'EnergyCommunityParticipationPeriod_PeriodsUnionConnection'; /** 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 `EnergyCommunityParticipationPeriod_PeriodsUnion`. */ type EnergyCommunityParticipationPeriod_PeriodsUnionEdgeDto = { __typename?: 'EnergyCommunityParticipationPeriod_PeriodsUnionEdge'; /** 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 'EnergyCommunity-3.0.5/Producer-1' */ type EnergyCommunityProducerDto = BasicNamedEntityInterfaceDto & EnergyCommunityMeteringPointInterfaceDto & SystemEntityInterfaceDto & { __typename?: 'EnergyCommunityProducer'; associations?: Maybe; billings?: Maybe; children?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; consentId?: Maybe; constructionKitType?: Maybe; description?: Maybe; energyProductionCapacity?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; meteringPointNumber: Scalars['String']['output']; name: Scalars['String']['output']; parent?: Maybe; partitionFactor?: Maybe; periods?: Maybe; productionType: EnergyCommunityProductionTypeDto; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; state: EnergyCommunityStateDto; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/Producer-1' */ type EnergyCommunityProducerAssociationsArgsDto = { 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 'EnergyCommunity-3.0.5/Producer-1' */ type EnergyCommunityProducerBillingsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/Producer-1' */ type EnergyCommunityProducerChildrenArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/Producer-1' */ type EnergyCommunityProducerConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/Producer-1' */ type EnergyCommunityProducerMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/Producer-1' */ type EnergyCommunityProducerMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/Producer-1' */ type EnergyCommunityProducerParentArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/Producer-1' */ type EnergyCommunityProducerPeriodsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/Producer-1' */ type EnergyCommunityProducerRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/Producer-1' */ type EnergyCommunityProducerRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'EnergyCommunity-3.0.5/Producer-1' */ type EnergyCommunityProducerTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `EnergyCommunityProducer`. */ type EnergyCommunityProducerConnectionDto = { __typename?: 'EnergyCommunityProducerConnection'; /** 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 `EnergyCommunityProducer`. */ type EnergyCommunityProducerEdgeDto = { __typename?: 'EnergyCommunityProducerEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type EnergyCommunityProducerInputDto = { billings?: InputMaybe>>; children?: InputMaybe>>; configuredBy?: InputMaybe>>; consentId?: InputMaybe; description?: InputMaybe; energyProductionCapacity?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; meteringPointNumber?: InputMaybe; name?: InputMaybe; parent?: InputMaybe>>; partitionFactor?: InputMaybe; periods?: InputMaybe>>; productionType?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; state?: InputMaybe; taggedBy?: InputMaybe>>; }; type EnergyCommunityProducerInputUpdateDto = { /** Item to update */ item: EnergyCommunityProducerInputDto; rtId?: InputMaybe; }; type EnergyCommunityProducerMutationsDto = { __typename?: 'EnergyCommunityProducerMutations'; /** Creates new entities of type 'EnergyCommunityProducer'. */ create?: Maybe>>; /** Updates existing entity of type 'EnergyCommunityProducer'. */ update?: Maybe>>; }; type EnergyCommunityProducerMutationsCreateArgsDto = { entities: Array>; }; type EnergyCommunityProducerMutationsUpdateArgsDto = { entities: Array>; }; type EnergyCommunityProducerUpdateDto = { __typename?: 'EnergyCommunityProducerUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type EnergyCommunityProducerUpdateMessageDto = { __typename?: 'EnergyCommunityProducerUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit enum 'EnergyCommunity/ProductionType' */ declare enum EnergyCommunityProductionTypeDto { /** Biomass was used to produce the energy */ BiomassDto = "BIOMASS", /** Combined heat and power was used to produce the energy */ ChpDto = "CHP", /** Hydroelectric power was used to produce the energy */ HepDto = "HEP", /** Other methods were used to produce the energy */ OtherDto = "OTHER", /** Solar power was used to produce the energy */ SolarDto = "SOLAR", /** The production type is unknown or not defined */ UnknownDto = "UNKNOWN", /** Wind power was used to produce the energy */ WindDto = "WIND" } /** Runtime entities of construction kit enum 'EnergyCommunity/State' */ declare enum EnergyCommunityStateDto { /** The object is active and in use */ ActiveDto = "ACTIVE", /** The object was deleted */ DeletedDto = "DELETED", /** The object is inactive but may be reactivated */ InactiveDto = "INACTIVE", /** The object is just created and the state is not set */ NewDto = "NEW" } /** Runtime entities of construction kit enum 'EnergyCommunity/TaxProcedureCreditNote' */ declare enum EnergyCommunityTaxProcedureCreditNoteDto { /** The farmer tax procedure is applied, which is a reduced tax amount for farmers */ FarmerTaxProcedureDto = "FARMER_TAX_PROCEDURE", /** No tax procedure is applied */ NoTaxProcedureDto = "NO_TAX_PROCEDURE", /** The reverse charge procedure is applied */ ReverseChargeDto = "REVERSE_CHARGE", /** No tax procedure is applied for small business owners */ SmallBusinessOwnersDto = "SMALL_BUSINESS_OWNERS" } /** Runtime entities of construction kit type 'Environment-3.1.0/CarbonBudget-1' */ type EnvironmentCarbonBudgetDto = BasicNamedEntityInterfaceDto & SystemEntityInterfaceDto & { __typename?: 'EnvironmentCarbonBudget'; associations?: Maybe; budgetConsumed: Scalars['Decimal']['output']; budgetTotal: Scalars['Decimal']['output']; budgetYear: Scalars['Int']['output']; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; dailyEmissions?: Maybe; description?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; monthlyEmissions?: Maybe; name: Scalars['String']['output']; parent?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; targetFulfillment?: Maybe; }; /** Runtime entities of construction kit type 'Environment-3.1.0/CarbonBudget-1' */ type EnvironmentCarbonBudgetAssociationsArgsDto = { 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 'Environment-3.1.0/CarbonBudget-1' */ type EnvironmentCarbonBudgetConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Environment-3.1.0/CarbonBudget-1' */ type EnvironmentCarbonBudgetMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Environment-3.1.0/CarbonBudget-1' */ type EnvironmentCarbonBudgetMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Environment-3.1.0/CarbonBudget-1' */ type EnvironmentCarbonBudgetParentArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Environment-3.1.0/CarbonBudget-1' */ type EnvironmentCarbonBudgetRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Environment-3.1.0/CarbonBudget-1' */ type EnvironmentCarbonBudgetRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Environment-3.1.0/CarbonBudget-1' */ type EnvironmentCarbonBudgetTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `EnvironmentCarbonBudget`. */ type EnvironmentCarbonBudgetConnectionDto = { __typename?: 'EnvironmentCarbonBudgetConnection'; /** 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 `EnvironmentCarbonBudget`. */ type EnvironmentCarbonBudgetEdgeDto = { __typename?: 'EnvironmentCarbonBudgetEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type EnvironmentCarbonBudgetInputDto = { budgetConsumed?: InputMaybe; budgetTotal?: InputMaybe; budgetYear?: InputMaybe; configuredBy?: InputMaybe>>; dailyEmissions?: InputMaybe; description?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; monthlyEmissions?: InputMaybe; name?: InputMaybe; parent?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; targetFulfillment?: InputMaybe; }; type EnvironmentCarbonBudgetInputUpdateDto = { /** Item to update */ item: EnvironmentCarbonBudgetInputDto; rtId?: InputMaybe; }; type EnvironmentCarbonBudgetMutationsDto = { __typename?: 'EnvironmentCarbonBudgetMutations'; /** Creates new entities of type 'EnvironmentCarbonBudget'. */ create?: Maybe>>; /** Updates existing entity of type 'EnvironmentCarbonBudget'. */ update?: Maybe>>; }; type EnvironmentCarbonBudgetMutationsCreateArgsDto = { entities: Array>; }; type EnvironmentCarbonBudgetMutationsUpdateArgsDto = { entities: Array>; }; type EnvironmentCarbonBudgetUpdateDto = { __typename?: 'EnvironmentCarbonBudgetUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type EnvironmentCarbonBudgetUpdateMessageDto = { __typename?: 'EnvironmentCarbonBudgetUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'Environment-3.1.0/CarbonEmission-1' */ type EnvironmentCarbonEmissionDto = SystemEntityInterfaceDto & { __typename?: 'EnvironmentCarbonEmission'; associations?: Maybe; carbonScope: EnvironmentCarbonScopeDto; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; emissionAmount: Scalars['Decimal']['output']; emissionSource?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; parent?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; timeRange: BasicTimeRangeDto; }; /** Runtime entities of construction kit type 'Environment-3.1.0/CarbonEmission-1' */ type EnvironmentCarbonEmissionAssociationsArgsDto = { 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 'Environment-3.1.0/CarbonEmission-1' */ type EnvironmentCarbonEmissionConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Environment-3.1.0/CarbonEmission-1' */ type EnvironmentCarbonEmissionMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Environment-3.1.0/CarbonEmission-1' */ type EnvironmentCarbonEmissionMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Environment-3.1.0/CarbonEmission-1' */ type EnvironmentCarbonEmissionParentArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Environment-3.1.0/CarbonEmission-1' */ type EnvironmentCarbonEmissionRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Environment-3.1.0/CarbonEmission-1' */ type EnvironmentCarbonEmissionRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Environment-3.1.0/CarbonEmission-1' */ type EnvironmentCarbonEmissionTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `EnvironmentCarbonEmission`. */ type EnvironmentCarbonEmissionConnectionDto = { __typename?: 'EnvironmentCarbonEmissionConnection'; /** 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 `EnvironmentCarbonEmission`. */ type EnvironmentCarbonEmissionEdgeDto = { __typename?: 'EnvironmentCarbonEmissionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type EnvironmentCarbonEmissionInputDto = { carbonScope?: InputMaybe; configuredBy?: InputMaybe>>; emissionAmount?: InputMaybe; emissionSource?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; parent?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; timeRange?: InputMaybe; }; type EnvironmentCarbonEmissionInputUpdateDto = { /** Item to update */ item: EnvironmentCarbonEmissionInputDto; rtId?: InputMaybe; }; type EnvironmentCarbonEmissionMutationsDto = { __typename?: 'EnvironmentCarbonEmissionMutations'; /** Creates new entities of type 'EnvironmentCarbonEmission'. */ create?: Maybe>>; /** Updates existing entity of type 'EnvironmentCarbonEmission'. */ update?: Maybe>>; }; type EnvironmentCarbonEmissionMutationsCreateArgsDto = { entities: Array>; }; type EnvironmentCarbonEmissionMutationsUpdateArgsDto = { entities: Array>; }; type EnvironmentCarbonEmissionUpdateDto = { __typename?: 'EnvironmentCarbonEmissionUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type EnvironmentCarbonEmissionUpdateMessageDto = { __typename?: 'EnvironmentCarbonEmissionUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit enum 'Environment/CarbonScope' */ declare enum EnvironmentCarbonScopeDto { Scope_1Dto = "SCOPE_1", Scope_2Dto = "SCOPE_2", Scope_3Dto = "SCOPE_3" } /** Runtime entities of construction kit type 'Environment-3.1.0/CertificateOfOrigin-1' */ type EnvironmentCertificateOfOriginDto = BasicNamedEntityInterfaceDto & SystemEntityInterfaceDto & { __typename?: 'EnvironmentCertificateOfOrigin'; associations?: Maybe; certificateIssuer: Scalars['String']['output']; certificateValidFrom: Scalars['DateTime']['output']; certificateValidTo: Scalars['DateTime']['output']; certifiedAmount: Scalars['Decimal']['output']; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; description?: Maybe; energySource: EnvironmentEnergySourceDto; isVerified: Scalars['Boolean']['output']; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; parent?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'Environment-3.1.0/CertificateOfOrigin-1' */ type EnvironmentCertificateOfOriginAssociationsArgsDto = { 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 'Environment-3.1.0/CertificateOfOrigin-1' */ type EnvironmentCertificateOfOriginConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Environment-3.1.0/CertificateOfOrigin-1' */ type EnvironmentCertificateOfOriginMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Environment-3.1.0/CertificateOfOrigin-1' */ type EnvironmentCertificateOfOriginMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Environment-3.1.0/CertificateOfOrigin-1' */ type EnvironmentCertificateOfOriginParentArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Environment-3.1.0/CertificateOfOrigin-1' */ type EnvironmentCertificateOfOriginRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Environment-3.1.0/CertificateOfOrigin-1' */ type EnvironmentCertificateOfOriginRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Environment-3.1.0/CertificateOfOrigin-1' */ type EnvironmentCertificateOfOriginTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `EnvironmentCertificateOfOrigin`. */ type EnvironmentCertificateOfOriginConnectionDto = { __typename?: 'EnvironmentCertificateOfOriginConnection'; /** 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 `EnvironmentCertificateOfOrigin`. */ type EnvironmentCertificateOfOriginEdgeDto = { __typename?: 'EnvironmentCertificateOfOriginEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type EnvironmentCertificateOfOriginInputDto = { certificateIssuer?: InputMaybe; certificateValidFrom?: InputMaybe; certificateValidTo?: InputMaybe; certifiedAmount?: InputMaybe; configuredBy?: InputMaybe>>; description?: InputMaybe; energySource?: InputMaybe; isVerified?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; parent?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; }; type EnvironmentCertificateOfOriginInputUpdateDto = { /** Item to update */ item: EnvironmentCertificateOfOriginInputDto; rtId?: InputMaybe; }; type EnvironmentCertificateOfOriginMutationsDto = { __typename?: 'EnvironmentCertificateOfOriginMutations'; /** Creates new entities of type 'EnvironmentCertificateOfOrigin'. */ create?: Maybe>>; /** Updates existing entity of type 'EnvironmentCertificateOfOrigin'. */ update?: Maybe>>; }; type EnvironmentCertificateOfOriginMutationsCreateArgsDto = { entities: Array>; }; type EnvironmentCertificateOfOriginMutationsUpdateArgsDto = { entities: Array>; }; type EnvironmentCertificateOfOriginUpdateDto = { __typename?: 'EnvironmentCertificateOfOriginUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type EnvironmentCertificateOfOriginUpdateMessageDto = { __typename?: 'EnvironmentCertificateOfOriginUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit enum 'Environment/ComplianceCategory' */ declare enum EnvironmentComplianceCategoryDto { CsrdDto = "CSRD", EEffGDto = "E_EFF_G", Iso_50001Dto = "ISO_50001", Nis_2Dto = "NIS_2" } /** Runtime entities of construction kit type 'Environment-3.1.0/ComplianceRecord-1' */ type EnvironmentComplianceRecordDto = BasicNamedEntityInterfaceDto & SystemEntityInterfaceDto & { __typename?: 'EnvironmentComplianceRecord'; associations?: Maybe; auditDate?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; complianceCategory: EnvironmentComplianceCategoryDto; complianceNotes?: Maybe; complianceStatus: EnvironmentComplianceStatusDto; configuredBy?: Maybe; constructionKitType?: Maybe; description?: Maybe; dueDate?: 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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'Environment-3.1.0/ComplianceRecord-1' */ type EnvironmentComplianceRecordAssociationsArgsDto = { 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 'Environment-3.1.0/ComplianceRecord-1' */ type EnvironmentComplianceRecordConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Environment-3.1.0/ComplianceRecord-1' */ type EnvironmentComplianceRecordMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Environment-3.1.0/ComplianceRecord-1' */ type EnvironmentComplianceRecordMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Environment-3.1.0/ComplianceRecord-1' */ type EnvironmentComplianceRecordParentArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Environment-3.1.0/ComplianceRecord-1' */ type EnvironmentComplianceRecordRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Environment-3.1.0/ComplianceRecord-1' */ type EnvironmentComplianceRecordRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Environment-3.1.0/ComplianceRecord-1' */ type EnvironmentComplianceRecordTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `EnvironmentComplianceRecord`. */ type EnvironmentComplianceRecordConnectionDto = { __typename?: 'EnvironmentComplianceRecordConnection'; /** 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 `EnvironmentComplianceRecord`. */ type EnvironmentComplianceRecordEdgeDto = { __typename?: 'EnvironmentComplianceRecordEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type EnvironmentComplianceRecordInputDto = { auditDate?: InputMaybe; complianceCategory?: InputMaybe; complianceNotes?: InputMaybe; complianceStatus?: InputMaybe; configuredBy?: InputMaybe>>; description?: InputMaybe; dueDate?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; parent?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; }; type EnvironmentComplianceRecordInputUpdateDto = { /** Item to update */ item: EnvironmentComplianceRecordInputDto; rtId?: InputMaybe; }; type EnvironmentComplianceRecordMutationsDto = { __typename?: 'EnvironmentComplianceRecordMutations'; /** Creates new entities of type 'EnvironmentComplianceRecord'. */ create?: Maybe>>; /** Updates existing entity of type 'EnvironmentComplianceRecord'. */ update?: Maybe>>; }; type EnvironmentComplianceRecordMutationsCreateArgsDto = { entities: Array>; }; type EnvironmentComplianceRecordMutationsUpdateArgsDto = { entities: Array>; }; type EnvironmentComplianceRecordUpdateDto = { __typename?: 'EnvironmentComplianceRecordUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type EnvironmentComplianceRecordUpdateMessageDto = { __typename?: 'EnvironmentComplianceRecordUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit enum 'Environment/ComplianceStatus' */ declare enum EnvironmentComplianceStatusDto { CompliantDto = "COMPLIANT", InProgressDto = "IN_PROGRESS", OpenDto = "OPEN", PassedDto = "PASSED", SubmittedDto = "SUBMITTED" } /** Runtime entities of construction kit enum 'Environment/EnergySource' */ declare enum EnvironmentEnergySourceDto { BiomassDto = "BIOMASS", GeothermalDto = "GEOTHERMAL", HydroDto = "HYDRO", OtherDto = "OTHER", SolarDto = "SOLAR", WindDto = "WIND" } /** Runtime entities of construction kit type 'Environment-3.1.0/EnvironmentalGoal-1' */ type EnvironmentEnvironmentalGoalDto = BasicNamedEntityInterfaceDto & SystemEntityInterfaceDto & { __typename?: 'EnvironmentEnvironmentalGoal'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; description?: Maybe; goalStatus: EnvironmentGoalStateDto; goalText: Scalars['String']['output']; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; parent?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'Environment-3.1.0/EnvironmentalGoal-1' */ type EnvironmentEnvironmentalGoalAssociationsArgsDto = { 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 'Environment-3.1.0/EnvironmentalGoal-1' */ type EnvironmentEnvironmentalGoalConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Environment-3.1.0/EnvironmentalGoal-1' */ type EnvironmentEnvironmentalGoalMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Environment-3.1.0/EnvironmentalGoal-1' */ type EnvironmentEnvironmentalGoalMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Environment-3.1.0/EnvironmentalGoal-1' */ type EnvironmentEnvironmentalGoalParentArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Environment-3.1.0/EnvironmentalGoal-1' */ type EnvironmentEnvironmentalGoalRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Environment-3.1.0/EnvironmentalGoal-1' */ type EnvironmentEnvironmentalGoalRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Environment-3.1.0/EnvironmentalGoal-1' */ type EnvironmentEnvironmentalGoalTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `EnvironmentEnvironmentalGoal`. */ type EnvironmentEnvironmentalGoalConnectionDto = { __typename?: 'EnvironmentEnvironmentalGoalConnection'; /** 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 `EnvironmentEnvironmentalGoal`. */ type EnvironmentEnvironmentalGoalEdgeDto = { __typename?: 'EnvironmentEnvironmentalGoalEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type EnvironmentEnvironmentalGoalInputDto = { configuredBy?: InputMaybe>>; description?: InputMaybe; goalStatus?: InputMaybe; goalText?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; parent?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; }; type EnvironmentEnvironmentalGoalInputUpdateDto = { /** Item to update */ item: EnvironmentEnvironmentalGoalInputDto; rtId?: InputMaybe; }; type EnvironmentEnvironmentalGoalMutationsDto = { __typename?: 'EnvironmentEnvironmentalGoalMutations'; /** Creates new entities of type 'EnvironmentEnvironmentalGoal'. */ create?: Maybe>>; /** Updates existing entity of type 'EnvironmentEnvironmentalGoal'. */ update?: Maybe>>; }; type EnvironmentEnvironmentalGoalMutationsCreateArgsDto = { entities: Array>; }; type EnvironmentEnvironmentalGoalMutationsUpdateArgsDto = { entities: Array>; }; type EnvironmentEnvironmentalGoalUpdateDto = { __typename?: 'EnvironmentEnvironmentalGoalUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type EnvironmentEnvironmentalGoalUpdateMessageDto = { __typename?: 'EnvironmentEnvironmentalGoalUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit enum 'Environment/GoalState' */ declare enum EnvironmentGoalStateDto { OffTrackDto = "OFF_TRACK", OnTrackDto = "ON_TRACK" } /** Runtime entities of construction kit type 'Environment-3.1.0/WasteMeter-1' */ type EnvironmentWasteMeterDto = { __typename?: 'EnvironmentWasteMeter'; associations?: Maybe; children?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; description?: Maybe; events?: Maybe; grossWeight: Scalars['Decimal']['output']; 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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; tareWeight: Scalars['Decimal']['output']; weight: Scalars['Decimal']['output']; }; /** Runtime entities of construction kit type 'Environment-3.1.0/WasteMeter-1' */ type EnvironmentWasteMeterAssociationsArgsDto = { 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 'Environment-3.1.0/WasteMeter-1' */ type EnvironmentWasteMeterChildrenArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Environment-3.1.0/WasteMeter-1' */ type EnvironmentWasteMeterConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Environment-3.1.0/WasteMeter-1' */ type EnvironmentWasteMeterEventsArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Environment-3.1.0/WasteMeter-1' */ type EnvironmentWasteMeterMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Environment-3.1.0/WasteMeter-1' */ type EnvironmentWasteMeterMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Environment-3.1.0/WasteMeter-1' */ type EnvironmentWasteMeterOrdersArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Environment-3.1.0/WasteMeter-1' */ type EnvironmentWasteMeterParentArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Environment-3.1.0/WasteMeter-1' */ type EnvironmentWasteMeterRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Environment-3.1.0/WasteMeter-1' */ type EnvironmentWasteMeterRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'Environment-3.1.0/WasteMeter-1' */ type EnvironmentWasteMeterTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `EnvironmentWasteMeter`. */ type EnvironmentWasteMeterConnectionDto = { __typename?: 'EnvironmentWasteMeterConnection'; /** 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 `EnvironmentWasteMeter`. */ type EnvironmentWasteMeterEdgeDto = { __typename?: 'EnvironmentWasteMeterEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type EnvironmentWasteMeterInputDto = { children?: InputMaybe>>; configuredBy?: InputMaybe>>; description?: InputMaybe; events?: InputMaybe>>; grossWeight?: 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>>; tareWeight?: InputMaybe; weight?: InputMaybe; }; type EnvironmentWasteMeterInputUpdateDto = { /** Item to update */ item: EnvironmentWasteMeterInputDto; rtId?: InputMaybe; }; type EnvironmentWasteMeterMutationsDto = { __typename?: 'EnvironmentWasteMeterMutations'; /** Creates new entities of type 'EnvironmentWasteMeter'. */ create?: Maybe>>; /** Updates existing entity of type 'EnvironmentWasteMeter'. */ update?: Maybe>>; }; type EnvironmentWasteMeterMutationsCreateArgsDto = { entities: Array>; }; type EnvironmentWasteMeterMutationsUpdateArgsDto = { entities: Array>; }; type EnvironmentWasteMeterUpdateDto = { __typename?: 'EnvironmentWasteMeterUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type EnvironmentWasteMeterUpdateMessageDto = { __typename?: 'EnvironmentWasteMeterUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; 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>>; }; declare enum FormulaResultTypeDto { BooleanDto = "BOOLEAN", DateTimeDto = "DATE_TIME", DoubleDto = "DOUBLE", IntDto = "INT", Int_64Dto = "INT_64" } 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.1/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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; 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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; tagName?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'Industry.Basic-2.1.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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; orderItems?: Maybe; orders?: Maybe; parent?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; runtimeVariables?: Maybe; shiftAssignments?: Maybe; standStillCounter?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'Industry.Basic-2.1.1/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.1/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.1/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.1/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.1/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.1/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.1/Machine-1' */ type IndustryBasicMachineOrderItemsArgsDto = { 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.1/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.1/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.1/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.1/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.1/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.1/Machine-1' */ type IndustryBasicMachineShiftAssignmentsArgsDto = { 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.1/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; orderItems?: InputMaybe>>; orders?: InputMaybe>>; parent?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; runtimeVariables?: InputMaybe>>; shiftAssignments?: 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.1/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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; stringValue?: Maybe; taggedBy?: Maybe; timeSpanValue?: Maybe; }; /** Runtime entities of construction kit type 'Industry.Basic-2.1.1/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.1/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.1/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.1/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.1/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.1/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.1/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.1/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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; 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; orderItems?: Maybe; orders?: Maybe; parent?: Maybe; power: Scalars['Decimal']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; runtimeVariables?: Maybe; shiftAssignments?: 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 IndustryEnergyEnergyConsumerOrderItemsArgsDto = { 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 IndustryEnergyEnergyConsumerShiftAssignmentsArgsDto = { 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; orderItems?: InputMaybe>>; orders?: InputMaybe>>; parent?: InputMaybe>>; power?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; runtimeVariables?: InputMaybe>>; shiftAssignments?: 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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; 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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; 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; orderItems?: 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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; runtimeVariables?: Maybe; shiftAssignments?: 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 IndustryEnergyEnergyMeterOrderItemsArgsDto = { 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 IndustryEnergyEnergyMeterShiftAssignmentsArgsDto = { 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; orderItems?: InputMaybe>>; orders?: InputMaybe>>; parent?: InputMaybe>>; power?: InputMaybe; reactivePower?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; runtimeVariables?: InputMaybe>>; shiftAssignments?: 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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; 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; orderItems?: Maybe; orders?: Maybe; parent?: Maybe; power: Scalars['Decimal']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; runtimeVariables?: Maybe; shiftAssignments?: 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 IndustryEnergyEnergyStorageOrderItemsArgsDto = { 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 IndustryEnergyEnergyStorageShiftAssignmentsArgsDto = { 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; orderItems?: InputMaybe>>; orders?: InputMaybe>>; parent?: InputMaybe>>; power?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; runtimeVariables?: InputMaybe>>; shiftAssignments?: 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; orderItems?: Maybe; orders?: Maybe; parent?: Maybe; power: Scalars['Decimal']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; runtimeVariables?: Maybe; shiftAssignments?: 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 IndustryEnergyInverterOrderItemsArgsDto = { 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 IndustryEnergyInverterShiftAssignmentsArgsDto = { 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; orderItems?: InputMaybe>>; orders?: InputMaybe>>; parent?: InputMaybe>>; power?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; runtimeVariables?: InputMaybe>>; shiftAssignments?: 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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; 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; orderItems?: 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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; runtimeVariables?: Maybe; shiftAssignments?: 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 IndustryEnergyPhotovoltaicSystemModuleOrderItemsArgsDto = { 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 IndustryEnergyPhotovoltaicSystemModuleShiftAssignmentsArgsDto = { 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; orderItems?: InputMaybe>>; orders?: InputMaybe>>; parent?: InputMaybe>>; peakPower?: InputMaybe; power?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; runtimeVariables?: InputMaybe>>; shiftAssignments?: 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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; 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; orderItems?: Maybe; orders?: Maybe; parent?: Maybe; power?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; returnTemperature?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; runtimeVariables?: Maybe; shiftAssignments?: 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 IndustryFluidHeatMeterOrderItemsArgsDto = { 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 IndustryFluidHeatMeterShiftAssignmentsArgsDto = { 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; orderItems?: InputMaybe>>; orders?: InputMaybe>>; parent?: InputMaybe>>; power?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; returnTemperature?: InputMaybe; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; runtimeVariables?: InputMaybe>>; shiftAssignments?: 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; orderItems?: Maybe; orders?: Maybe; parent?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; reverseVolume?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; runtimeVariables?: Maybe; shiftAssignments?: 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 IndustryFluidWaterMeterOrderItemsArgsDto = { 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 IndustryFluidWaterMeterShiftAssignmentsArgsDto = { 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; orderItems?: InputMaybe>>; orders?: InputMaybe>>; parent?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; reverseVolume?: InputMaybe; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; runtimeVariables?: InputMaybe>>; shiftAssignments?: 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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; 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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; 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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; 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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; 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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; 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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; 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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; 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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; 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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; 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>>; }; /** Runtime entities of construction kit enum 'Industry.Manufacturing/FeedbackSyncState' */ declare enum IndustryManufacturingFeedbackSyncStateDto { SyncedDto = "SYNCED", UnsyncedDto = "UNSYNCED" } /** Runtime entities of construction kit record 'Industry.Manufacturing/OeeStatistics' */ type IndustryManufacturingOeeStatisticsDto = { __typename?: 'IndustryManufacturingOeeStatistics'; availability: Scalars['Decimal']['output']; constructionKitType?: Maybe; performance: Scalars['Decimal']['output']; quality: Scalars['Decimal']['output']; total: Scalars['Decimal']['output']; }; type IndustryManufacturingOeeStatisticsInputDto = { availability?: InputMaybe; performance?: InputMaybe; quality?: InputMaybe; total?: InputMaybe; }; /** Runtime entities of construction kit type 'Industry.Manufacturing-2.0.0/PartialFeedback-1' */ type IndustryManufacturingPartialFeedbackDto = SystemEntityInterfaceDto & { __typename?: 'IndustryManufacturingPartialFeedback'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; employee?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; parent?: Maybe; quantityGood: Scalars['Int']['output']; quantityPoor: Scalars['Int']['output']; quantityTestParts: Scalars['Int']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; syncState: IndustryManufacturingFeedbackSyncStateDto; syncTimestamp?: Maybe; taggedBy?: Maybe; timestamp: Scalars['DateTime']['output']; }; /** Runtime entities of construction kit type 'Industry.Manufacturing-2.0.0/PartialFeedback-1' */ type IndustryManufacturingPartialFeedbackAssociationsArgsDto = { 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.Manufacturing-2.0.0/PartialFeedback-1' */ type IndustryManufacturingPartialFeedbackConfiguredByArgsDto = { 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.Manufacturing-2.0.0/PartialFeedback-1' */ type IndustryManufacturingPartialFeedbackEmployeeArgsDto = { 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.Manufacturing-2.0.0/PartialFeedback-1' */ type IndustryManufacturingPartialFeedbackMapsFromArgsDto = { 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.Manufacturing-2.0.0/PartialFeedback-1' */ type IndustryManufacturingPartialFeedbackMapsToArgsDto = { 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.Manufacturing-2.0.0/PartialFeedback-1' */ type IndustryManufacturingPartialFeedbackParentArgsDto = { 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.Manufacturing-2.0.0/PartialFeedback-1' */ type IndustryManufacturingPartialFeedbackRelatesFromArgsDto = { 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.Manufacturing-2.0.0/PartialFeedback-1' */ type IndustryManufacturingPartialFeedbackRelatesToArgsDto = { 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.Manufacturing-2.0.0/PartialFeedback-1' */ type IndustryManufacturingPartialFeedbackTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `IndustryManufacturingPartialFeedback`. */ type IndustryManufacturingPartialFeedbackConnectionDto = { __typename?: 'IndustryManufacturingPartialFeedbackConnection'; /** 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 `IndustryManufacturingPartialFeedback`. */ type IndustryManufacturingPartialFeedbackEdgeDto = { __typename?: 'IndustryManufacturingPartialFeedbackEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type IndustryManufacturingPartialFeedbackInputDto = { configuredBy?: InputMaybe>>; employee?: InputMaybe>>; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; parent?: InputMaybe>>; quantityGood?: InputMaybe; quantityPoor?: InputMaybe; quantityTestParts?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; syncState?: InputMaybe; syncTimestamp?: InputMaybe; taggedBy?: InputMaybe>>; timestamp?: InputMaybe; }; type IndustryManufacturingPartialFeedbackInputUpdateDto = { /** Item to update */ item: IndustryManufacturingPartialFeedbackInputDto; rtId?: InputMaybe; }; type IndustryManufacturingPartialFeedbackMutationsDto = { __typename?: 'IndustryManufacturingPartialFeedbackMutations'; /** Creates new entities of type 'IndustryManufacturingPartialFeedback'. */ create?: Maybe>>; /** Updates existing entity of type 'IndustryManufacturingPartialFeedback'. */ update?: Maybe>>; }; type IndustryManufacturingPartialFeedbackMutationsCreateArgsDto = { entities: Array>; }; type IndustryManufacturingPartialFeedbackMutationsUpdateArgsDto = { entities: Array>; }; type IndustryManufacturingPartialFeedbackUpdateDto = { __typename?: 'IndustryManufacturingPartialFeedbackUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type IndustryManufacturingPartialFeedbackUpdateMessageDto = { __typename?: 'IndustryManufacturingPartialFeedbackUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Union of types derived from Industry.Manufacturing/PartialFeedback for Children association */ type IndustryManufacturingPartialFeedback_ChildrenUnionDto = IndustryManufacturingPartialFeedbackDto; /** A connection to `IndustryManufacturingPartialFeedback_ChildrenUnion`. */ type IndustryManufacturingPartialFeedback_ChildrenUnionConnectionDto = { __typename?: 'IndustryManufacturingPartialFeedback_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 `IndustryManufacturingPartialFeedback_ChildrenUnion`. */ type IndustryManufacturingPartialFeedback_ChildrenUnionEdgeDto = { __typename?: 'IndustryManufacturingPartialFeedback_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.Manufacturing/PartialFeedback for PartialFeedbacks association */ type IndustryManufacturingPartialFeedback_PartialFeedbacksUnionDto = IndustryManufacturingPartialFeedbackDto; /** A connection to `IndustryManufacturingPartialFeedback_PartialFeedbacksUnion`. */ type IndustryManufacturingPartialFeedback_PartialFeedbacksUnionConnectionDto = { __typename?: 'IndustryManufacturingPartialFeedback_PartialFeedbacksUnionConnection'; /** 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 `IndustryManufacturingPartialFeedback_PartialFeedbacksUnion`. */ type IndustryManufacturingPartialFeedback_PartialFeedbacksUnionEdgeDto = { __typename?: 'IndustryManufacturingPartialFeedback_PartialFeedbacksUnionEdge'; /** 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.Manufacturing-2.0.0/ProductionOrder-1' */ type IndustryManufacturingProductionOrderDto = SystemEntityInterfaceDto & { __typename?: 'IndustryManufacturingProductionOrder'; associations?: Maybe; children?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; endDateTime?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; orderNumber: Scalars['String']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; startDateTime?: Maybe; state: IndustryManufacturingProductionOrderStateDto; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'Industry.Manufacturing-2.0.0/ProductionOrder-1' */ type IndustryManufacturingProductionOrderAssociationsArgsDto = { 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.Manufacturing-2.0.0/ProductionOrder-1' */ type IndustryManufacturingProductionOrderChildrenArgsDto = { 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.Manufacturing-2.0.0/ProductionOrder-1' */ type IndustryManufacturingProductionOrderConfiguredByArgsDto = { 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.Manufacturing-2.0.0/ProductionOrder-1' */ type IndustryManufacturingProductionOrderMapsFromArgsDto = { 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.Manufacturing-2.0.0/ProductionOrder-1' */ type IndustryManufacturingProductionOrderMapsToArgsDto = { 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.Manufacturing-2.0.0/ProductionOrder-1' */ type IndustryManufacturingProductionOrderRelatesFromArgsDto = { 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.Manufacturing-2.0.0/ProductionOrder-1' */ type IndustryManufacturingProductionOrderRelatesToArgsDto = { 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.Manufacturing-2.0.0/ProductionOrder-1' */ type IndustryManufacturingProductionOrderTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `IndustryManufacturingProductionOrder`. */ type IndustryManufacturingProductionOrderConnectionDto = { __typename?: 'IndustryManufacturingProductionOrderConnection'; /** 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 `IndustryManufacturingProductionOrder`. */ type IndustryManufacturingProductionOrderEdgeDto = { __typename?: 'IndustryManufacturingProductionOrderEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type IndustryManufacturingProductionOrderInputDto = { children?: InputMaybe>>; configuredBy?: InputMaybe>>; endDateTime?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; orderNumber?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; startDateTime?: InputMaybe; state?: InputMaybe; taggedBy?: InputMaybe>>; }; type IndustryManufacturingProductionOrderInputUpdateDto = { /** Item to update */ item: IndustryManufacturingProductionOrderInputDto; rtId?: InputMaybe; }; /** Runtime entities of construction kit type 'Industry.Manufacturing-2.0.0/ProductionOrderItem-1' */ type IndustryManufacturingProductionOrderItemDto = SystemEntityInterfaceDto & { __typename?: 'IndustryManufacturingProductionOrderItem'; articleNumber: Scalars['String']['output']; articleText: Scalars['String']['output']; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; cycleTimeForOnePiece?: Maybe; itemNumber: Scalars['Int']['output']; machine?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; parent?: Maybe; plannedQuantity: Scalars['Int']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; shiftOrderItems?: Maybe; state: IndustryManufacturingProductionOrderItemStateDto; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'Industry.Manufacturing-2.0.0/ProductionOrderItem-1' */ type IndustryManufacturingProductionOrderItemAssociationsArgsDto = { 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.Manufacturing-2.0.0/ProductionOrderItem-1' */ type IndustryManufacturingProductionOrderItemConfiguredByArgsDto = { 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.Manufacturing-2.0.0/ProductionOrderItem-1' */ type IndustryManufacturingProductionOrderItemMachineArgsDto = { 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.Manufacturing-2.0.0/ProductionOrderItem-1' */ type IndustryManufacturingProductionOrderItemMapsFromArgsDto = { 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.Manufacturing-2.0.0/ProductionOrderItem-1' */ type IndustryManufacturingProductionOrderItemMapsToArgsDto = { 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.Manufacturing-2.0.0/ProductionOrderItem-1' */ type IndustryManufacturingProductionOrderItemParentArgsDto = { 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.Manufacturing-2.0.0/ProductionOrderItem-1' */ type IndustryManufacturingProductionOrderItemRelatesFromArgsDto = { 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.Manufacturing-2.0.0/ProductionOrderItem-1' */ type IndustryManufacturingProductionOrderItemRelatesToArgsDto = { 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.Manufacturing-2.0.0/ProductionOrderItem-1' */ type IndustryManufacturingProductionOrderItemShiftOrderItemsArgsDto = { 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.Manufacturing-2.0.0/ProductionOrderItem-1' */ type IndustryManufacturingProductionOrderItemTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `IndustryManufacturingProductionOrderItem`. */ type IndustryManufacturingProductionOrderItemConnectionDto = { __typename?: 'IndustryManufacturingProductionOrderItemConnection'; /** 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 `IndustryManufacturingProductionOrderItem`. */ type IndustryManufacturingProductionOrderItemEdgeDto = { __typename?: 'IndustryManufacturingProductionOrderItemEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type IndustryManufacturingProductionOrderItemInputDto = { articleNumber?: InputMaybe; articleText?: InputMaybe; configuredBy?: InputMaybe>>; cycleTimeForOnePiece?: InputMaybe; itemNumber?: InputMaybe; machine?: InputMaybe>>; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; parent?: InputMaybe>>; plannedQuantity?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; shiftOrderItems?: InputMaybe>>; state?: InputMaybe; taggedBy?: InputMaybe>>; }; type IndustryManufacturingProductionOrderItemInputUpdateDto = { /** Item to update */ item: IndustryManufacturingProductionOrderItemInputDto; rtId?: InputMaybe; }; type IndustryManufacturingProductionOrderItemMutationsDto = { __typename?: 'IndustryManufacturingProductionOrderItemMutations'; /** Creates new entities of type 'IndustryManufacturingProductionOrderItem'. */ create?: Maybe>>; /** Updates existing entity of type 'IndustryManufacturingProductionOrderItem'. */ update?: Maybe>>; }; type IndustryManufacturingProductionOrderItemMutationsCreateArgsDto = { entities: Array>; }; type IndustryManufacturingProductionOrderItemMutationsUpdateArgsDto = { entities: Array>; }; /** Runtime entities of construction kit enum 'Industry.Manufacturing/ProductionOrderItemState' */ declare enum IndustryManufacturingProductionOrderItemStateDto { CancelledDto = "CANCELLED", ConfirmedDto = "CONFIRMED", CreatedDto = "CREATED", DeliveredDto = "DELIVERED", InterruptedDto = "INTERRUPTED", InProgressDto = "IN_PROGRESS", PausedDto = "PAUSED", ReleasedDto = "RELEASED", TechnicallyCompletedDto = "TECHNICALLY_COMPLETED" } type IndustryManufacturingProductionOrderItemUpdateDto = { __typename?: 'IndustryManufacturingProductionOrderItemUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type IndustryManufacturingProductionOrderItemUpdateMessageDto = { __typename?: 'IndustryManufacturingProductionOrderItemUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Union of types derived from Industry.Manufacturing/ProductionOrderItem for Children association */ type IndustryManufacturingProductionOrderItem_ChildrenUnionDto = IndustryManufacturingProductionOrderItemDto; /** A connection to `IndustryManufacturingProductionOrderItem_ChildrenUnion`. */ type IndustryManufacturingProductionOrderItem_ChildrenUnionConnectionDto = { __typename?: 'IndustryManufacturingProductionOrderItem_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 `IndustryManufacturingProductionOrderItem_ChildrenUnion`. */ type IndustryManufacturingProductionOrderItem_ChildrenUnionEdgeDto = { __typename?: 'IndustryManufacturingProductionOrderItem_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.Manufacturing/ProductionOrderItem for OrderItems association */ type IndustryManufacturingProductionOrderItem_OrderItemsUnionDto = IndustryManufacturingProductionOrderItemDto; /** A connection to `IndustryManufacturingProductionOrderItem_OrderItemsUnion`. */ type IndustryManufacturingProductionOrderItem_OrderItemsUnionConnectionDto = { __typename?: 'IndustryManufacturingProductionOrderItem_OrderItemsUnionConnection'; /** 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 `IndustryManufacturingProductionOrderItem_OrderItemsUnion`. */ type IndustryManufacturingProductionOrderItem_OrderItemsUnionEdgeDto = { __typename?: 'IndustryManufacturingProductionOrderItem_OrderItemsUnionEdge'; /** 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.Manufacturing/ProductionOrderItem for ProductionOrderItem association */ type IndustryManufacturingProductionOrderItem_ProductionOrderItemUnionDto = IndustryManufacturingProductionOrderItemDto; /** A connection to `IndustryManufacturingProductionOrderItem_ProductionOrderItemUnion`. */ type IndustryManufacturingProductionOrderItem_ProductionOrderItemUnionConnectionDto = { __typename?: 'IndustryManufacturingProductionOrderItem_ProductionOrderItemUnionConnection'; /** 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 `IndustryManufacturingProductionOrderItem_ProductionOrderItemUnion`. */ type IndustryManufacturingProductionOrderItem_ProductionOrderItemUnionEdgeDto = { __typename?: 'IndustryManufacturingProductionOrderItem_ProductionOrderItemUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type IndustryManufacturingProductionOrderMutationsDto = { __typename?: 'IndustryManufacturingProductionOrderMutations'; /** Creates new entities of type 'IndustryManufacturingProductionOrder'. */ create?: Maybe>>; /** Updates existing entity of type 'IndustryManufacturingProductionOrder'. */ update?: Maybe>>; }; type IndustryManufacturingProductionOrderMutationsCreateArgsDto = { entities: Array>; }; type IndustryManufacturingProductionOrderMutationsUpdateArgsDto = { entities: Array>; }; /** Runtime entities of construction kit enum 'Industry.Manufacturing/ProductionOrderState' */ declare enum IndustryManufacturingProductionOrderStateDto { CancelledDto = "CANCELLED", ConfirmedDto = "CONFIRMED", CreatedDto = "CREATED", DeliveredDto = "DELIVERED", ReleasedDto = "RELEASED", TechnicallyCompletedDto = "TECHNICALLY_COMPLETED" } type IndustryManufacturingProductionOrderUpdateDto = { __typename?: 'IndustryManufacturingProductionOrderUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type IndustryManufacturingProductionOrderUpdateMessageDto = { __typename?: 'IndustryManufacturingProductionOrderUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Union of types derived from Industry.Manufacturing/ProductionOrder for Parent association */ type IndustryManufacturingProductionOrder_ParentUnionDto = IndustryManufacturingProductionOrderDto; /** A connection to `IndustryManufacturingProductionOrder_ParentUnion`. */ type IndustryManufacturingProductionOrder_ParentUnionConnectionDto = { __typename?: 'IndustryManufacturingProductionOrder_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 `IndustryManufacturingProductionOrder_ParentUnion`. */ type IndustryManufacturingProductionOrder_ParentUnionEdgeDto = { __typename?: 'IndustryManufacturingProductionOrder_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 'Industry.Manufacturing-2.0.0/Shift-1' */ type IndustryManufacturingShiftDto = SystemEntityInterfaceDto & { __typename?: 'IndustryManufacturingShift'; associations?: Maybe; children?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; endDateTime?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; startDateTime: Scalars['DateTime']['output']; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'Industry.Manufacturing-2.0.0/Shift-1' */ type IndustryManufacturingShiftAssociationsArgsDto = { 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.Manufacturing-2.0.0/Shift-1' */ type IndustryManufacturingShiftChildrenArgsDto = { 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.Manufacturing-2.0.0/Shift-1' */ type IndustryManufacturingShiftConfiguredByArgsDto = { 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.Manufacturing-2.0.0/Shift-1' */ type IndustryManufacturingShiftMapsFromArgsDto = { 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.Manufacturing-2.0.0/Shift-1' */ type IndustryManufacturingShiftMapsToArgsDto = { 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.Manufacturing-2.0.0/Shift-1' */ type IndustryManufacturingShiftRelatesFromArgsDto = { 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.Manufacturing-2.0.0/Shift-1' */ type IndustryManufacturingShiftRelatesToArgsDto = { 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.Manufacturing-2.0.0/Shift-1' */ type IndustryManufacturingShiftTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `IndustryManufacturingShift`. */ type IndustryManufacturingShiftConnectionDto = { __typename?: 'IndustryManufacturingShiftConnection'; /** 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 `IndustryManufacturingShift`. */ type IndustryManufacturingShiftEdgeDto = { __typename?: 'IndustryManufacturingShiftEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type IndustryManufacturingShiftInputDto = { children?: InputMaybe>>; configuredBy?: InputMaybe>>; endDateTime?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; startDateTime?: InputMaybe; taggedBy?: InputMaybe>>; }; type IndustryManufacturingShiftInputUpdateDto = { /** Item to update */ item: IndustryManufacturingShiftInputDto; rtId?: InputMaybe; }; /** Runtime entities of construction kit type 'Industry.Manufacturing-2.0.0/ShiftMachine-1' */ type IndustryManufacturingShiftMachineDto = SystemEntityInterfaceDto & { __typename?: 'IndustryManufacturingShiftMachine'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; employees?: Maybe; machine?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; oeeStatistics?: Maybe; parent?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'Industry.Manufacturing-2.0.0/ShiftMachine-1' */ type IndustryManufacturingShiftMachineAssociationsArgsDto = { 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.Manufacturing-2.0.0/ShiftMachine-1' */ type IndustryManufacturingShiftMachineConfiguredByArgsDto = { 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.Manufacturing-2.0.0/ShiftMachine-1' */ type IndustryManufacturingShiftMachineEmployeesArgsDto = { 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.Manufacturing-2.0.0/ShiftMachine-1' */ type IndustryManufacturingShiftMachineMachineArgsDto = { 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.Manufacturing-2.0.0/ShiftMachine-1' */ type IndustryManufacturingShiftMachineMapsFromArgsDto = { 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.Manufacturing-2.0.0/ShiftMachine-1' */ type IndustryManufacturingShiftMachineMapsToArgsDto = { 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.Manufacturing-2.0.0/ShiftMachine-1' */ type IndustryManufacturingShiftMachineParentArgsDto = { 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.Manufacturing-2.0.0/ShiftMachine-1' */ type IndustryManufacturingShiftMachineRelatesFromArgsDto = { 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.Manufacturing-2.0.0/ShiftMachine-1' */ type IndustryManufacturingShiftMachineRelatesToArgsDto = { 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.Manufacturing-2.0.0/ShiftMachine-1' */ type IndustryManufacturingShiftMachineTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `IndustryManufacturingShiftMachine`. */ type IndustryManufacturingShiftMachineConnectionDto = { __typename?: 'IndustryManufacturingShiftMachineConnection'; /** 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 `IndustryManufacturingShiftMachine`. */ type IndustryManufacturingShiftMachineEdgeDto = { __typename?: 'IndustryManufacturingShiftMachineEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type IndustryManufacturingShiftMachineInputDto = { configuredBy?: InputMaybe>>; employees?: InputMaybe>>; machine?: InputMaybe>>; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; oeeStatistics?: InputMaybe; parent?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; }; type IndustryManufacturingShiftMachineInputUpdateDto = { /** Item to update */ item: IndustryManufacturingShiftMachineInputDto; rtId?: InputMaybe; }; type IndustryManufacturingShiftMachineMutationsDto = { __typename?: 'IndustryManufacturingShiftMachineMutations'; /** Creates new entities of type 'IndustryManufacturingShiftMachine'. */ create?: Maybe>>; /** Updates existing entity of type 'IndustryManufacturingShiftMachine'. */ update?: Maybe>>; }; type IndustryManufacturingShiftMachineMutationsCreateArgsDto = { entities: Array>; }; type IndustryManufacturingShiftMachineMutationsUpdateArgsDto = { entities: Array>; }; type IndustryManufacturingShiftMachineUpdateDto = { __typename?: 'IndustryManufacturingShiftMachineUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type IndustryManufacturingShiftMachineUpdateMessageDto = { __typename?: 'IndustryManufacturingShiftMachineUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Union of types derived from Industry.Manufacturing/ShiftMachine for Children association */ type IndustryManufacturingShiftMachine_ChildrenUnionDto = IndustryManufacturingShiftMachineDto | IndustryManufacturingShiftOrderItemDto; /** A connection to `IndustryManufacturingShiftMachine_ChildrenUnion`. */ type IndustryManufacturingShiftMachine_ChildrenUnionConnectionDto = { __typename?: 'IndustryManufacturingShiftMachine_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 `IndustryManufacturingShiftMachine_ChildrenUnion`. */ type IndustryManufacturingShiftMachine_ChildrenUnionEdgeDto = { __typename?: 'IndustryManufacturingShiftMachine_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.Manufacturing/ShiftMachine for ShiftAssignments association */ type IndustryManufacturingShiftMachine_ShiftAssignmentsUnionDto = IndustryManufacturingShiftMachineDto; /** A connection to `IndustryManufacturingShiftMachine_ShiftAssignmentsUnion`. */ type IndustryManufacturingShiftMachine_ShiftAssignmentsUnionConnectionDto = { __typename?: 'IndustryManufacturingShiftMachine_ShiftAssignmentsUnionConnection'; /** 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 `IndustryManufacturingShiftMachine_ShiftAssignmentsUnion`. */ type IndustryManufacturingShiftMachine_ShiftAssignmentsUnionEdgeDto = { __typename?: 'IndustryManufacturingShiftMachine_ShiftAssignmentsUnionEdge'; /** 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.Manufacturing/ShiftMachine for ShiftMachines association */ type IndustryManufacturingShiftMachine_ShiftMachinesUnionDto = IndustryManufacturingShiftMachineDto; /** A connection to `IndustryManufacturingShiftMachine_ShiftMachinesUnion`. */ type IndustryManufacturingShiftMachine_ShiftMachinesUnionConnectionDto = { __typename?: 'IndustryManufacturingShiftMachine_ShiftMachinesUnionConnection'; /** 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 `IndustryManufacturingShiftMachine_ShiftMachinesUnion`. */ type IndustryManufacturingShiftMachine_ShiftMachinesUnionEdgeDto = { __typename?: 'IndustryManufacturingShiftMachine_ShiftMachinesUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type IndustryManufacturingShiftMutationsDto = { __typename?: 'IndustryManufacturingShiftMutations'; /** Creates new entities of type 'IndustryManufacturingShift'. */ create?: Maybe>>; /** Updates existing entity of type 'IndustryManufacturingShift'. */ update?: Maybe>>; }; type IndustryManufacturingShiftMutationsCreateArgsDto = { entities: Array>; }; type IndustryManufacturingShiftMutationsUpdateArgsDto = { entities: Array>; }; /** Runtime entities of construction kit type 'Industry.Manufacturing-2.0.0/ShiftOrderItem-1' */ type IndustryManufacturingShiftOrderItemDto = SystemEntityInterfaceDto & { __typename?: 'IndustryManufacturingShiftOrderItem'; associations?: Maybe; children?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; employees?: Maybe; endDateTime?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; oeeStatistics?: Maybe; parent?: Maybe; productionOrderItem?: Maybe; quantityGood: Scalars['Int']['output']; quantityPoor: Scalars['Int']['output']; quantityTestParts: Scalars['Int']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; remainingPlannedQuantity: Scalars['Int']['output']; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; startDateTime?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'Industry.Manufacturing-2.0.0/ShiftOrderItem-1' */ type IndustryManufacturingShiftOrderItemAssociationsArgsDto = { 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.Manufacturing-2.0.0/ShiftOrderItem-1' */ type IndustryManufacturingShiftOrderItemChildrenArgsDto = { 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.Manufacturing-2.0.0/ShiftOrderItem-1' */ type IndustryManufacturingShiftOrderItemConfiguredByArgsDto = { 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.Manufacturing-2.0.0/ShiftOrderItem-1' */ type IndustryManufacturingShiftOrderItemEmployeesArgsDto = { 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.Manufacturing-2.0.0/ShiftOrderItem-1' */ type IndustryManufacturingShiftOrderItemMapsFromArgsDto = { 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.Manufacturing-2.0.0/ShiftOrderItem-1' */ type IndustryManufacturingShiftOrderItemMapsToArgsDto = { 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.Manufacturing-2.0.0/ShiftOrderItem-1' */ type IndustryManufacturingShiftOrderItemParentArgsDto = { 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.Manufacturing-2.0.0/ShiftOrderItem-1' */ type IndustryManufacturingShiftOrderItemProductionOrderItemArgsDto = { 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.Manufacturing-2.0.0/ShiftOrderItem-1' */ type IndustryManufacturingShiftOrderItemRelatesFromArgsDto = { 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.Manufacturing-2.0.0/ShiftOrderItem-1' */ type IndustryManufacturingShiftOrderItemRelatesToArgsDto = { 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.Manufacturing-2.0.0/ShiftOrderItem-1' */ type IndustryManufacturingShiftOrderItemTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `IndustryManufacturingShiftOrderItem`. */ type IndustryManufacturingShiftOrderItemConnectionDto = { __typename?: 'IndustryManufacturingShiftOrderItemConnection'; /** 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 `IndustryManufacturingShiftOrderItem`. */ type IndustryManufacturingShiftOrderItemEdgeDto = { __typename?: 'IndustryManufacturingShiftOrderItemEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type IndustryManufacturingShiftOrderItemInputDto = { children?: InputMaybe>>; configuredBy?: InputMaybe>>; employees?: InputMaybe>>; endDateTime?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; oeeStatistics?: InputMaybe; parent?: InputMaybe>>; productionOrderItem?: InputMaybe>>; quantityGood?: InputMaybe; quantityPoor?: InputMaybe; quantityTestParts?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; remainingPlannedQuantity?: InputMaybe; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; startDateTime?: InputMaybe; taggedBy?: InputMaybe>>; }; type IndustryManufacturingShiftOrderItemInputUpdateDto = { /** Item to update */ item: IndustryManufacturingShiftOrderItemInputDto; rtId?: InputMaybe; }; type IndustryManufacturingShiftOrderItemMutationsDto = { __typename?: 'IndustryManufacturingShiftOrderItemMutations'; /** Creates new entities of type 'IndustryManufacturingShiftOrderItem'. */ create?: Maybe>>; /** Updates existing entity of type 'IndustryManufacturingShiftOrderItem'. */ update?: Maybe>>; }; type IndustryManufacturingShiftOrderItemMutationsCreateArgsDto = { entities: Array>; }; type IndustryManufacturingShiftOrderItemMutationsUpdateArgsDto = { entities: Array>; }; type IndustryManufacturingShiftOrderItemUpdateDto = { __typename?: 'IndustryManufacturingShiftOrderItemUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type IndustryManufacturingShiftOrderItemUpdateMessageDto = { __typename?: 'IndustryManufacturingShiftOrderItemUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Union of types derived from Industry.Manufacturing/ShiftOrderItem for Parent association */ type IndustryManufacturingShiftOrderItem_ParentUnionDto = IndustryManufacturingShiftOrderItemDto; /** A connection to `IndustryManufacturingShiftOrderItem_ParentUnion`. */ type IndustryManufacturingShiftOrderItem_ParentUnionConnectionDto = { __typename?: 'IndustryManufacturingShiftOrderItem_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 `IndustryManufacturingShiftOrderItem_ParentUnion`. */ type IndustryManufacturingShiftOrderItem_ParentUnionEdgeDto = { __typename?: 'IndustryManufacturingShiftOrderItem_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 Industry.Manufacturing/ShiftOrderItem for ShiftOrderItems association */ type IndustryManufacturingShiftOrderItem_ShiftOrderItemsUnionDto = IndustryManufacturingShiftOrderItemDto; /** A connection to `IndustryManufacturingShiftOrderItem_ShiftOrderItemsUnion`. */ type IndustryManufacturingShiftOrderItem_ShiftOrderItemsUnionConnectionDto = { __typename?: 'IndustryManufacturingShiftOrderItem_ShiftOrderItemsUnionConnection'; /** 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 `IndustryManufacturingShiftOrderItem_ShiftOrderItemsUnion`. */ type IndustryManufacturingShiftOrderItem_ShiftOrderItemsUnionEdgeDto = { __typename?: 'IndustryManufacturingShiftOrderItem_ShiftOrderItemsUnionEdge'; /** 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.Manufacturing-2.0.0/ShiftTemplate-1' */ type IndustryManufacturingShiftTemplateDto = BasicNamedEntityInterfaceDto & SystemEntityInterfaceDto & { __typename?: 'IndustryManufacturingShiftTemplate'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; description?: Maybe; endDateTime: Scalars['DateTime']['output']; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; startDateTime: Scalars['DateTime']['output']; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'Industry.Manufacturing-2.0.0/ShiftTemplate-1' */ type IndustryManufacturingShiftTemplateAssociationsArgsDto = { 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.Manufacturing-2.0.0/ShiftTemplate-1' */ type IndustryManufacturingShiftTemplateConfiguredByArgsDto = { 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.Manufacturing-2.0.0/ShiftTemplate-1' */ type IndustryManufacturingShiftTemplateMapsFromArgsDto = { 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.Manufacturing-2.0.0/ShiftTemplate-1' */ type IndustryManufacturingShiftTemplateMapsToArgsDto = { 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.Manufacturing-2.0.0/ShiftTemplate-1' */ type IndustryManufacturingShiftTemplateRelatesFromArgsDto = { 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.Manufacturing-2.0.0/ShiftTemplate-1' */ type IndustryManufacturingShiftTemplateRelatesToArgsDto = { 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.Manufacturing-2.0.0/ShiftTemplate-1' */ type IndustryManufacturingShiftTemplateTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `IndustryManufacturingShiftTemplate`. */ type IndustryManufacturingShiftTemplateConnectionDto = { __typename?: 'IndustryManufacturingShiftTemplateConnection'; /** 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 `IndustryManufacturingShiftTemplate`. */ type IndustryManufacturingShiftTemplateEdgeDto = { __typename?: 'IndustryManufacturingShiftTemplateEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type IndustryManufacturingShiftTemplateInputDto = { configuredBy?: InputMaybe>>; description?: InputMaybe; endDateTime?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; startDateTime?: InputMaybe; taggedBy?: InputMaybe>>; }; type IndustryManufacturingShiftTemplateInputUpdateDto = { /** Item to update */ item: IndustryManufacturingShiftTemplateInputDto; rtId?: InputMaybe; }; type IndustryManufacturingShiftTemplateMutationsDto = { __typename?: 'IndustryManufacturingShiftTemplateMutations'; /** Creates new entities of type 'IndustryManufacturingShiftTemplate'. */ create?: Maybe>>; /** Updates existing entity of type 'IndustryManufacturingShiftTemplate'. */ update?: Maybe>>; }; type IndustryManufacturingShiftTemplateMutationsCreateArgsDto = { entities: Array>; }; type IndustryManufacturingShiftTemplateMutationsUpdateArgsDto = { entities: Array>; }; type IndustryManufacturingShiftTemplateUpdateDto = { __typename?: 'IndustryManufacturingShiftTemplateUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type IndustryManufacturingShiftTemplateUpdateMessageDto = { __typename?: 'IndustryManufacturingShiftTemplateUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; type IndustryManufacturingShiftUpdateDto = { __typename?: 'IndustryManufacturingShiftUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type IndustryManufacturingShiftUpdateMessageDto = { __typename?: 'IndustryManufacturingShiftUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Union of types derived from Industry.Manufacturing/Shift for Parent association */ type IndustryManufacturingShift_ParentUnionDto = IndustryManufacturingShiftDto; /** A connection to `IndustryManufacturingShift_ParentUnion`. */ type IndustryManufacturingShift_ParentUnionConnectionDto = { __typename?: 'IndustryManufacturingShift_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 `IndustryManufacturingShift_ParentUnion`. */ type IndustryManufacturingShift_ParentUnionEdgeDto = { __typename?: 'IndustryManufacturingShift_ParentUnionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: 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'; blueprints?: Maybe; constructionKit?: Maybe; runtime?: Maybe; streamData?: Maybe; }; type OctoQueryDto = { __typename?: 'OctoQuery'; /** Returns the attribute paths reachable from the given CK type that may be used as columns in a CkArchive (concept §16). Bounded by maxDepth so deep records terminate predictably. */ availableArchivePaths: Array; blueprints?: Maybe; constructionKit?: Maybe; runtime?: Maybe; streamData?: Maybe; }; type OctoQueryAvailableArchivePathsArgsDto = { ckTypeId: Scalars['String']['input']; maxDepth?: InputMaybe; }; /** 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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; 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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; 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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; 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; basicEnergyConsumerEvents?: Maybe; basicEnergyEdaMessageEvents?: Maybe; basicEnergyEdaMeteringPointEvents?: Maybe; basicEnergyEdaProcessEvents?: Maybe; basicEnergyEnergyMeasurementEvents?: Maybe; basicEnergyMeteringPointEvents?: Maybe; basicEnergyOperatingFacilityEvents?: Maybe; basicEnergyProducerEvents?: Maybe; basicNamedEntityEvents?: Maybe; basicStateEvents?: Maybe; basicTreeEvents?: Maybe; basicTreeNodeEvents?: Maybe; energyCommunityBillingDocumentEvents?: Maybe; energyCommunityBillingDocumentLineItemEvents?: Maybe; energyCommunityConsumerEvents?: Maybe; energyCommunityCustomerEvents?: Maybe; energyCommunityEdaMessageEvents?: Maybe; energyCommunityEdaMeteringPointEvents?: Maybe; energyCommunityEdaProcessEvents?: Maybe; energyCommunityEnergyPriceEvents?: Maybe; energyCommunityEnergyQuantityEvents?: Maybe; energyCommunityMeteringPointEvents?: Maybe; energyCommunityOperatingFacilityEvents?: Maybe; energyCommunityParticipationPeriodEvents?: Maybe; energyCommunityProducerEvents?: Maybe; environmentCarbonBudgetEvents?: Maybe; environmentCarbonEmissionEvents?: Maybe; environmentCertificateOfOriginEvents?: Maybe; environmentComplianceRecordEvents?: Maybe; environmentEnvironmentalGoalEvents?: Maybe; environmentWasteMeterEvents?: 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; industryManufacturingPartialFeedbackEvents?: Maybe; industryManufacturingProductionOrderEvents?: Maybe; industryManufacturingProductionOrderItemEvents?: Maybe; industryManufacturingShiftEvents?: Maybe; industryManufacturingShiftMachineEvents?: Maybe; industryManufacturingShiftOrderItemEvents?: Maybe; industryManufacturingShiftTemplateEvents?: Maybe; octoSdkDemoCustomerEvents?: Maybe; octoSdkDemoMeteringPointEvents?: Maybe; octoSdkDemoOperatingFacilityEvents?: Maybe; systemAggregationRtQueryEvents?: Maybe; systemAggregationSdQueryEvents?: Maybe; systemAiAiAgentConfigEvents?: Maybe; systemAiAiAgentJobEvents?: Maybe; systemAiAiAgentSessionEvents?: Maybe; systemAiAiApprovalRequestEvents?: Maybe; systemAiAiAuditEventEvents?: Maybe; systemAiAiCredentialBindingEvents?: Maybe; systemAiAiCredentialTicketEvents?: Maybe; systemAiAiKnowledgeSourceEvents?: Maybe; systemAiAiPromptTemplateEvents?: Maybe; systemAiAiQuotaLimitEvents?: Maybe; systemAiAiSessionEventEvents?: Maybe; systemAiAiTokenLeaseEvents?: Maybe; systemAiAiToolPolicyEvents?: Maybe; systemAiAiUsageRecordEvents?: Maybe; systemAutoIncrementEvents?: Maybe; systemBlueprintBackupEvents?: Maybe; systemBlueprintHistoryEvents?: Maybe; systemBlueprintInstallationEvents?: Maybe; systemBotAttributeAggregateConfigurationEvents?: Maybe; systemBotFixupEvents?: Maybe; systemCommunicationAdapterEvents?: Maybe; systemCommunicationAiConfigurationEvents?: Maybe; systemCommunicationApplicationEvents?: Maybe; systemCommunicationDataFlowEvents?: Maybe; systemCommunicationDataPointMappingEvents?: Maybe; systemCommunicationDeployableEntityEvents?: Maybe; systemCommunicationDeployableWorkloadEvents?: Maybe; systemCommunicationDiscordConfigurationEvents?: Maybe; systemCommunicationEMailReceiverConfigurationEvents?: Maybe; systemCommunicationEMailSenderConfigurationEvents?: Maybe; systemCommunicationEdaConfigurationEvents?: Maybe; systemCommunicationEnergyCommunityConfigurationEvents?: Maybe; systemCommunicationFinApiConfigurationEvents?: Maybe; systemCommunicationGrafanaConfigurationEvents?: Maybe; systemCommunicationHelmRepositoryConfigurationEvents?: 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; systemIdentityClientMirrorEvents?: Maybe; systemIdentityDataProtectionKeyEvents?: Maybe; systemIdentityEmailDomainGroupRuleEvents?: Maybe; systemIdentityExternalTenantUserMappingEvents?: Maybe; systemIdentityFacebookIdentityProviderEvents?: Maybe; systemIdentityGoogleIdentityProviderEvents?: Maybe; systemIdentityGroupEvents?: Maybe; systemIdentityIdentityProviderEvents?: Maybe; systemIdentityIdentityResourceEvents?: Maybe; systemIdentityMicrosoftAdIdentityProviderEvents?: Maybe; systemIdentityMicrosoftIdentityProviderEvents?: Maybe; systemIdentityOctoTenantIdentityProviderEvents?: Maybe; systemIdentityOpenLdapIdentityProviderEvents?: Maybe; systemIdentityPermissionEvents?: Maybe; systemIdentityPermissionRoleEvents?: Maybe; systemIdentityPersistedGrantEvents?: Maybe; systemIdentityResourceEvents?: Maybe; systemIdentityRoleEvents?: Maybe; systemIdentityServerSideSessionEvents?: Maybe; systemIdentityUserEvents?: Maybe; systemMigrationHistoryEvents?: Maybe; systemNotificationCssTemplateConfigurationEvents?: Maybe; systemNotificationEventEvents?: Maybe; systemNotificationMailNotificationConfigurationEvents?: Maybe; systemNotificationNotificationTemplateEvents?: Maybe; systemNotificationStatefulEventEvents?: Maybe; systemPersistentQueryEvents?: Maybe; systemReportingConnectionInfoEvents?: Maybe; systemReportingFileSystemContainerEvents?: Maybe; systemReportingFileSystemEntityEvents?: Maybe; systemReportingFileSystemItemEvents?: Maybe; systemReportingFolderEvents?: Maybe; systemReportingFolderRootEvents?: Maybe; systemSimpleRtQueryEvents?: Maybe; systemSimpleSdQueryEvents?: Maybe; systemStreamDataArchiveEvents?: Maybe; systemStreamDataQueryEvents?: Maybe; systemStreamDataRawArchiveEvents?: Maybe; systemStreamDataRecomputeJobEvents?: Maybe; systemStreamDataRollupArchiveEvents?: Maybe; systemStreamDataTimeRangeArchiveEvents?: Maybe; systemTenantConfigurationEvents?: Maybe; systemTenantEvents?: Maybe; systemTenantModeConfigurationEvents?: Maybe; systemUIBrandingEvents?: Maybe; systemUIDashboardEvents?: Maybe; systemUIDashboardWidgetEvents?: Maybe; systemUIProcessDiagramEvents?: Maybe; systemUISymbolDefinitionEvents?: Maybe; systemUISymbolLibraryEvents?: Maybe; systemUITreeNavigationConfigurationEvents?: 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 OctoSubscriptionsBasicEnergyConsumerEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsBasicEnergyEdaMessageEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsBasicEnergyEdaMeteringPointEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsBasicEnergyEdaProcessEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsBasicEnergyEnergyMeasurementEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsBasicEnergyMeteringPointEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsBasicEnergyOperatingFacilityEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsBasicEnergyProducerEventsArgsDto = { 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 OctoSubscriptionsEnergyCommunityBillingDocumentEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsEnergyCommunityBillingDocumentLineItemEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsEnergyCommunityConsumerEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsEnergyCommunityCustomerEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsEnergyCommunityEdaMessageEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsEnergyCommunityEdaMeteringPointEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsEnergyCommunityEdaProcessEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsEnergyCommunityEnergyPriceEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsEnergyCommunityEnergyQuantityEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsEnergyCommunityMeteringPointEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsEnergyCommunityOperatingFacilityEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsEnergyCommunityParticipationPeriodEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsEnergyCommunityProducerEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsEnvironmentCarbonBudgetEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsEnvironmentCarbonEmissionEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsEnvironmentCertificateOfOriginEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsEnvironmentComplianceRecordEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsEnvironmentEnvironmentalGoalEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsEnvironmentWasteMeterEventsArgsDto = { 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 OctoSubscriptionsIndustryManufacturingPartialFeedbackEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsIndustryManufacturingProductionOrderEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsIndustryManufacturingProductionOrderItemEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsIndustryManufacturingShiftEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsIndustryManufacturingShiftMachineEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsIndustryManufacturingShiftOrderItemEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsIndustryManufacturingShiftTemplateEventsArgsDto = { 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 OctoSubscriptionsSystemAiAiAgentConfigEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemAiAiAgentJobEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemAiAiAgentSessionEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemAiAiApprovalRequestEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemAiAiAuditEventEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemAiAiCredentialBindingEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemAiAiCredentialTicketEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemAiAiKnowledgeSourceEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemAiAiPromptTemplateEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemAiAiQuotaLimitEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemAiAiSessionEventEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemAiAiTokenLeaseEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemAiAiToolPolicyEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemAiAiUsageRecordEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemAutoIncrementEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemBlueprintBackupEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemBlueprintHistoryEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemBlueprintInstallationEventsArgsDto = { 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 OctoSubscriptionsSystemCommunicationApplicationEventsArgsDto = { 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 OctoSubscriptionsSystemCommunicationDeployableWorkloadEventsArgsDto = { 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 OctoSubscriptionsSystemCommunicationHelmRepositoryConfigurationEventsArgsDto = { 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 OctoSubscriptionsSystemIdentityClientMirrorEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemIdentityDataProtectionKeyEventsArgsDto = { 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 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 OctoSubscriptionsSystemIdentityServerSideSessionEventsArgsDto = { 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 OctoSubscriptionsSystemNotificationMailNotificationConfigurationEventsArgsDto = { 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 OctoSubscriptionsSystemStreamDataArchiveEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemStreamDataQueryEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemStreamDataRawArchiveEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemStreamDataRecomputeJobEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemStreamDataRollupArchiveEventsArgsDto = { beforeFieldFilter?: InputMaybe>>; fieldFilter?: InputMaybe>>; rtId?: InputMaybe; updateTypes: Array>; }; type OctoSubscriptionsSystemStreamDataTimeRangeArchiveEventsArgsDto = { 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 OctoSubscriptionsSystemUiTreeNavigationConfigurationEventsArgsDto = { 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" } /** A rollup recompute run: state, row/window counts, timings, and failure reason. */ type RecomputeJobInfoDto = { __typename?: 'RecomputeJobInfo'; /** Wall-clock duration in milliseconds; null while running. */ durationMs?: Maybe; /** Failure reason when state is Failed; null otherwise. */ errorReason?: Maybe; /** When the job reached a terminal state; null while running. */ finishedAt?: Maybe; /** Rows written into the staging table; null while pending. */ rowsProcessed?: Maybe; /** Runtime id of the recompute job. */ rtId: Scalars['OctoObjectId']['output']; /** When compute started; null while pending. */ startedAt?: Maybe; /** Job lifecycle state: Pending / Running / Swapping / Completed / Failed / Coalesced. */ state: Scalars['String']['output']; /** Buckets recomputed; null while pending. */ windowsProcessed?: Maybe; }; /** Identifies a logical series (base archive + optional rtId/OBIS scope), a time window, a target point count and the required aggregation. The server picks the archive/rollup to query. */ type ResolveSeriesQueryInputDto = { /** Runtime id of the base (raw / time-range) archive of the series' resolution family. */ baseArchiveRtId: Scalars['OctoObjectId']['input']; /** How civil boundaries are resolved across mixed-timezone series (AB#4190). PER_QUERY (default) applies the query timeZone uniformly; PER_SERIES aligns each series to its own archive reference time zone. */ comparisonPolicy?: InputMaybe; /** Inclusive start of the query window (UTC). */ from: Scalars['DateTime']['input']; /** Optional OBIS-code filter narrowing the series. Forwarded by the caller to the downsampling query. */ obisFilter?: InputMaybe; /** Aggregation the series must be reduced with (energy = SUM, demand = MAX, …). Never guessed; supplied by the caller. */ requiredAggregation: CkRollupFunctionDto; /** Optional source-entity rtId scope (e.g. the EnergyMeasurement entities of a MeteringPoint). Forwarded by the caller to the downsampling query. */ rtIds?: InputMaybe>; /** Logical CK attribute path of the measured column (e.g. Amount.Value) — used to match a rollup's aggregation spec. */ sourcePath: Scalars['String']['input']; /** Desired number of output points (pixel-driven, ~600 typical). Must be positive. */ targetPoints: Scalars['Int']['input']; /** Optional IANA time zone (e.g. Europe/Vienna) the query is resolved in (AB#4190). Aligns calendar (day/week/month/year) rungs to that zone's DST-correct civil boundaries; null ⇒ UTC. Sub-day rungs are unaffected. */ timeZone?: InputMaybe; /** Exclusive end of the query window (UTC). */ to: Scalars['DateTime']['input']; }; /** Archive-selection decision for a resolution-aware series query: which archive to query, the effective bucket width, expected point count, reducer, and an outcome signal. */ type ResolveSeriesQueryResultDto = { __typename?: 'ResolveSeriesQueryResult'; /** The deliverable point count when below the requested target (ResolutionLimited) or the native raw count on the refuse path. Null when the target was met. */ actualPoints?: Maybe; /** The archive to query — a rollup, or the base archive on the refuse/raw paths. */ archiveRtId: Scalars['OctoObjectId']['output']; /** Optional human-readable explanation of the chosen route / signal. */ diagnostic?: Maybe; /** Width in milliseconds of one output bucket; 0 when no bucketing applies / grain unknown. */ effectiveBucketMs: Scalars['Long']['output']; /** Number of points the caller can expect from the downsampling query. */ points: Scalars['Int']['output']; /** Aggregation function the downsampling query must use. */ reducingFunction: CkRollupFunctionDto; /** Outcome classification (Ok / NoSuitableRollup / ResolutionLimited / UnknownBaseGrain / EmptyLadder). */ signal: SeriesResolutionSignalDto; }; type ResultAggregationInputDto = { avgAttributePaths?: InputMaybe>>; countAttributePaths?: InputMaybe>>; groupBy?: InputMaybe; maxValueAttributePaths?: InputMaybe>>; minValueAttributePaths?: InputMaybe>>; sumAttributePaths?: InputMaybe>>; }; /** One aggregation of a rollup: source column path plus the stored aggregation function. */ type RollupAggregationInfoDto = { __typename?: 'RollupAggregationInfo'; /** Stored aggregation function (Avg / Min / Max / Sum / Count). */ function: Scalars['String']['output']; /** Source column path the rollup aggregates. Logical CK attribute path for single-step rollups; parent physical storage column for cascade rollups. */ sourcePath: Scalars['String']['output']; }; /** One aggregation: source-path on the source archive plus the aggregation function and optional explicit column name. */ type RollupAggregationInputDto = { /** State literal a STATE_DURATION aggregation matches the source column against — a number ('2', '100'), a boolean ('true'/'false') or a string state name. Required for STATE_DURATION; ignored for every other function. */ comparisonValue?: InputMaybe; /** Aggregation function (AVG materialises as two columns: {base}_sum and {base}_count). */ function: CkRollupFunctionDto; /** Attribute path on the source archive (must resolve against its captured Columns at activation time). */ sourcePath: Scalars['String']['input']; /** Optional explicit storage column name. Null falls back to '{sourcePath}_{function}' lower-cased. */ targetColumnName?: InputMaybe; }; /** Rollup archive attached to a source CkArchive, with its schedule and current watermark. */ type RollupArchiveInfoDto = { __typename?: 'RollupArchiveInfo'; /** Number of aggregation specs configured on this rollup. */ aggregationCount: Scalars['Int']['output']; /** The rollup's aggregation specs (source column path + stored function), for resolution-family walking. */ aggregations: Array; /** Bucket-boundary alignment: FixedSize / CalendarDay / Iso8601Week / CalendarMonth / CalendarYear. */ bucketAlignment: Scalars['String']['output']; /** Bucket width in milliseconds. */ bucketSizeMs: Scalars['Long']['output']; /** Number of dirty windows recorded on this archive (retroactive changes not yet propagated). 0 in the steady state. */ dirtyWindowsPending: Scalars['Int']['output']; /** Upper bound of the frozen range, if set. Buckets ending at or before this point are not re-aggregated by the orchestrator. */ frozenUntil?: Maybe; /** Exclusive end timestamp of the most recently committed bucket. Null before the first orchestrator tick. */ lastAggregatedBucketEnd?: Maybe; /** Timestamp of the most recent failed recompute run. Null if the last run succeeded. */ lastRecomputeFailureAt?: Maybe; /** Human-readable reason for the most recent recompute failure. Null if the last run succeeded. */ lastRecomputeFailureReason?: Maybe; /** Start timestamp of the most recent recompute run. Null before the first run. */ lastRecomputeStartedAt?: Maybe; /** Finish timestamp of the most recent successfully committed recompute run. Null before the first success. */ lastRecomputeSuccessAt?: Maybe; /** Number of pending recompute ranges queued on this archive (the recompute work list still to drain). 0 in the steady state. */ pendingRecomputeRanges: Scalars['Int']['output']; /** True while a recompute job for this rollup is running or swapping. */ recomputeInProgress: Scalars['Boolean']['output']; /** IANA reference time-zone (e.g. Europe/Vienna) that aligns calendar bucket boundaries to local wall-clock time so they are DST-correct. Null means UTC calendar boundaries. Only meaningful for the calendar bucketAlignment variants; ignored for FixedSize. */ referenceTimeZone?: Maybe; /** Runtime id of the rollup archive. */ rtId: Scalars['OctoObjectId']['output']; /** Optional well-known name of the rollup archive. */ rtWellKnownName?: Maybe; /** Runtime id of the source archive this rollup aggregates from. */ sourceArchiveRtId: Scalars['OctoObjectId']['output']; /** Current lifecycle status: Created / Activated / Disabled / Failed. */ status: Scalars['String']['output']; /** Watermark lag in milliseconds — how far behind real-time the orchestrator stays before closing a bucket. */ watermarkLagMs: Scalars['Long']['output']; }; /** Per-rollup metadata the studio's stream-data query editor needs (bucket size, logical attribute paths derived via chain walking). */ type RollupQueryMetadataDto = { __typename?: 'RollupQueryMetadata'; /** Native bucket size of this rollup in milliseconds. Drives the downsampling bucket-alignment warning. */ bucketSizeMs: Scalars['Long']['output']; /** Distinct logical CK-attribute paths the rollup aggregates over. For cascade rollups these are derived via chain walking (RollupLogicalPathResolver). */ logicalSourcePaths: Array; /** Runtime id of the rollup archive — echo of the request argument. */ rtId: Scalars['OctoObjectId']['output']; }; /** 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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; 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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; 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 'BasicEnergyConsumer'. */ basicEnergyConsumers?: Maybe; /** Mutation for entities of type 'BasicEnergyEdaMessage'. */ basicEnergyEdaMessages?: Maybe; /** Mutation for entities of type 'BasicEnergyEdaMeteringPoint'. */ basicEnergyEdaMeteringPoints?: Maybe; /** Mutation for entities of type 'BasicEnergyEdaProcess'. */ basicEnergyEdaProcesss?: Maybe; /** Mutation for entities of type 'BasicEnergyEnergyMeasurement'. */ basicEnergyEnergyMeasurements?: Maybe; /** Mutation for entities of type 'BasicEnergyOperatingFacility'. */ basicEnergyOperatingFacilitys?: Maybe; /** Mutation for entities of type 'BasicEnergyProducer'. */ basicEnergyProducers?: 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 'EnergyCommunityBillingDocumentLineItem'. */ energyCommunityBillingDocumentLineItems?: Maybe; /** Mutation for entities of type 'EnergyCommunityBillingDocument'. */ energyCommunityBillingDocuments?: Maybe; /** Mutation for entities of type 'EnergyCommunityConsumer'. */ energyCommunityConsumers?: Maybe; /** Mutation for entities of type 'EnergyCommunityCustomer'. */ energyCommunityCustomers?: Maybe; /** Mutation for entities of type 'EnergyCommunityEdaMessage'. */ energyCommunityEdaMessages?: Maybe; /** Mutation for entities of type 'EnergyCommunityEdaMeteringPoint'. */ energyCommunityEdaMeteringPoints?: Maybe; /** Mutation for entities of type 'EnergyCommunityEdaProcess'. */ energyCommunityEdaProcesss?: Maybe; /** Mutation for entities of type 'EnergyCommunityEnergyPrice'. */ energyCommunityEnergyPrices?: Maybe; /** Mutation for entities of type 'EnergyCommunityEnergyQuantity'. */ energyCommunityEnergyQuantitys?: Maybe; /** Mutation for entities of type 'EnergyCommunityOperatingFacility'. */ energyCommunityOperatingFacilitys?: Maybe; /** Mutation for entities of type 'EnergyCommunityParticipationPeriod'. */ energyCommunityParticipationPeriods?: Maybe; /** Mutation for entities of type 'EnergyCommunityProducer'. */ energyCommunityProducers?: Maybe; /** Mutation for entities of type 'EnvironmentCarbonBudget'. */ environmentCarbonBudgets?: Maybe; /** Mutation for entities of type 'EnvironmentCarbonEmission'. */ environmentCarbonEmissions?: Maybe; /** Mutation for entities of type 'EnvironmentCertificateOfOrigin'. */ environmentCertificateOfOrigins?: Maybe; /** Mutation for entities of type 'EnvironmentComplianceRecord'. */ environmentComplianceRecords?: Maybe; /** Mutation for entities of type 'EnvironmentEnvironmentalGoal'. */ environmentEnvironmentalGoals?: Maybe; /** Mutation for entities of type 'EnvironmentWasteMeter'. */ environmentWasteMeters?: 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 'IndustryManufacturingPartialFeedback'. */ industryManufacturingPartialFeedbacks?: Maybe; /** Mutation for entities of type 'IndustryManufacturingProductionOrderItem'. */ industryManufacturingProductionOrderItems?: Maybe; /** Mutation for entities of type 'IndustryManufacturingProductionOrder'. */ industryManufacturingProductionOrders?: Maybe; /** Mutation for entities of type 'IndustryManufacturingShiftMachine'. */ industryManufacturingShiftMachines?: Maybe; /** Mutation for entities of type 'IndustryManufacturingShiftOrderItem'. */ industryManufacturingShiftOrderItems?: Maybe; /** Mutation for entities of type 'IndustryManufacturingShiftTemplate'. */ industryManufacturingShiftTemplates?: Maybe; /** Mutation for entities of type 'IndustryManufacturingShift'. */ industryManufacturingShifts?: 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 'SystemAiAiAgentConfig'. */ systemAiAiAgentConfigs?: Maybe; /** Mutation for entities of type 'SystemAiAiAgentJob'. */ systemAiAiAgentJobs?: Maybe; /** Mutation for entities of type 'SystemAiAiAgentSession'. */ systemAiAiAgentSessions?: Maybe; /** Mutation for entities of type 'SystemAiAiApprovalRequest'. */ systemAiAiApprovalRequests?: Maybe; /** Mutation for entities of type 'SystemAiAiAuditEvent'. */ systemAiAiAuditEvents?: Maybe; /** Mutation for entities of type 'SystemAiAiCredentialBinding'. */ systemAiAiCredentialBindings?: Maybe; /** Mutation for entities of type 'SystemAiAiCredentialTicket'. */ systemAiAiCredentialTickets?: Maybe; /** Mutation for entities of type 'SystemAiAiKnowledgeSource'. */ systemAiAiKnowledgeSources?: Maybe; /** Mutation for entities of type 'SystemAiAiPromptTemplate'. */ systemAiAiPromptTemplates?: Maybe; /** Mutation for entities of type 'SystemAiAiQuotaLimit'. */ systemAiAiQuotaLimits?: Maybe; /** Mutation for entities of type 'SystemAiAiSessionEvent'. */ systemAiAiSessionEvents?: Maybe; /** Mutation for entities of type 'SystemAiAiTokenLease'. */ systemAiAiTokenLeases?: Maybe; /** Mutation for entities of type 'SystemAiAiToolPolicy'. */ systemAiAiToolPolicys?: Maybe; /** Mutation for entities of type 'SystemAiAiUsageRecord'. */ systemAiAiUsageRecords?: Maybe; /** Mutation for entities of type 'SystemAutoIncrement'. */ systemAutoIncrements?: Maybe; /** Mutation for entities of type 'SystemBlueprintBackup'. */ systemBlueprintBackups?: Maybe; /** Mutation for entities of type 'SystemBlueprintHistory'. */ systemBlueprintHistorys?: Maybe; /** Mutation for entities of type 'SystemBlueprintInstallation'. */ systemBlueprintInstallations?: 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 'SystemCommunicationApplication'. */ systemCommunicationApplications?: 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 'SystemCommunicationHelmRepositoryConfiguration'. */ systemCommunicationHelmRepositoryConfigurations?: 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 'SystemIdentityClientMirror'. */ systemIdentityClientMirrors?: Maybe; /** Mutation for entities of type 'SystemIdentityClient'. */ systemIdentityClients?: Maybe; /** Mutation for entities of type 'SystemIdentityDataProtectionKey'. */ systemIdentityDataProtectionKeys?: 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 '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 'SystemIdentityServerSideSession'. */ systemIdentityServerSideSessions?: 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 'SystemNotificationMailNotificationConfiguration'. */ systemNotificationMailNotificationConfigurations?: 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 'SystemStreamDataRawArchive'. */ systemStreamDataRawArchives?: Maybe; /** Mutation for entities of type 'SystemStreamDataRecomputeJob'. */ systemStreamDataRecomputeJobs?: Maybe; /** Mutation for entities of type 'SystemStreamDataRollupArchive'. */ systemStreamDataRollupArchives?: Maybe; /** Mutation for entities of type 'SystemStreamDataTimeRangeArchive'. */ systemStreamDataTimeRangeArchives?: 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; /** Mutation for entities of type 'SystemUITreeNavigationConfiguration'. */ systemUITreeNavigationConfigurations?: Maybe; }; type RuntimeRuntimeQueryArgsDto = { rtId: Scalars['OctoObjectId']['input']; }; type RuntimeModelQueryDto = { __typename?: 'RuntimeModelQuery'; basicAsset?: Maybe; basicCity?: Maybe; basicCountry?: Maybe; basicDistrict?: Maybe; basicDocument?: Maybe; basicEmployee?: Maybe; basicEnergyConsumer?: Maybe; basicEnergyEdaMessage?: Maybe; basicEnergyEdaMeteringPoint?: Maybe; basicEnergyEdaProcess?: Maybe; basicEnergyEnergyMeasurement?: Maybe; basicEnergyMeteringPoint?: Maybe; basicEnergyOperatingFacility?: Maybe; basicEnergyProducer?: Maybe; basicNamedEntity?: Maybe; basicState?: Maybe; basicTree?: Maybe; basicTreeNode?: Maybe; energyCommunityBillingDocument?: Maybe; energyCommunityBillingDocumentLineItem?: Maybe; energyCommunityConsumer?: Maybe; energyCommunityCustomer?: Maybe; energyCommunityEdaMessage?: Maybe; energyCommunityEdaMeteringPoint?: Maybe; energyCommunityEdaProcess?: Maybe; energyCommunityEnergyPrice?: Maybe; energyCommunityEnergyQuantity?: Maybe; energyCommunityMeteringPoint?: Maybe; energyCommunityOperatingFacility?: Maybe; energyCommunityParticipationPeriod?: Maybe; energyCommunityProducer?: Maybe; environmentCarbonBudget?: Maybe; environmentCarbonEmission?: Maybe; environmentCertificateOfOrigin?: Maybe; environmentComplianceRecord?: Maybe; environmentEnvironmentalGoal?: Maybe; environmentWasteMeter?: 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; industryManufacturingPartialFeedback?: Maybe; industryManufacturingProductionOrder?: Maybe; industryManufacturingProductionOrderItem?: Maybe; industryManufacturingShift?: Maybe; industryManufacturingShiftMachine?: Maybe; industryManufacturingShiftOrderItem?: Maybe; industryManufacturingShiftTemplate?: Maybe; octoSdkDemoCustomer?: Maybe; octoSdkDemoMeteringPoint?: Maybe; octoSdkDemoOperatingFacility?: Maybe; runtimeEntities?: Maybe; runtimeQuery?: Maybe; systemAggregationRtQuery?: Maybe; systemAggregationSdQuery?: Maybe; systemAiAiAgentConfig?: Maybe; systemAiAiAgentJob?: Maybe; systemAiAiAgentSession?: Maybe; systemAiAiApprovalRequest?: Maybe; systemAiAiAuditEvent?: Maybe; systemAiAiCredentialBinding?: Maybe; systemAiAiCredentialTicket?: Maybe; systemAiAiKnowledgeSource?: Maybe; systemAiAiPromptTemplate?: Maybe; systemAiAiQuotaLimit?: Maybe; systemAiAiSessionEvent?: Maybe; systemAiAiTokenLease?: Maybe; systemAiAiToolPolicy?: Maybe; systemAiAiUsageRecord?: Maybe; systemAutoIncrement?: Maybe; systemBlueprintBackup?: Maybe; systemBlueprintHistory?: Maybe; systemBlueprintInstallation?: Maybe; systemBotAttributeAggregateConfiguration?: Maybe; systemBotFixup?: Maybe; systemCommunicationAdapter?: Maybe; systemCommunicationAiConfiguration?: Maybe; systemCommunicationApplication?: Maybe; systemCommunicationDataFlow?: Maybe; systemCommunicationDataPointMapping?: Maybe; systemCommunicationDeployableEntity?: Maybe; systemCommunicationDeployableWorkload?: Maybe; systemCommunicationDiscordConfiguration?: Maybe; systemCommunicationEMailReceiverConfiguration?: Maybe; systemCommunicationEMailSenderConfiguration?: Maybe; systemCommunicationEdaConfiguration?: Maybe; systemCommunicationEnergyCommunityConfiguration?: Maybe; systemCommunicationFinApiConfiguration?: Maybe; systemCommunicationGrafanaConfiguration?: Maybe; systemCommunicationHelmRepositoryConfiguration?: 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; systemIdentityClientMirror?: Maybe; systemIdentityDataProtectionKey?: Maybe; systemIdentityEmailDomainGroupRule?: Maybe; systemIdentityExternalTenantUserMapping?: Maybe; systemIdentityFacebookIdentityProvider?: Maybe; systemIdentityGoogleIdentityProvider?: Maybe; systemIdentityGroup?: Maybe; systemIdentityIdentityProvider?: Maybe; systemIdentityIdentityResource?: Maybe; systemIdentityMicrosoftAdIdentityProvider?: Maybe; systemIdentityMicrosoftIdentityProvider?: Maybe; systemIdentityOctoTenantIdentityProvider?: Maybe; systemIdentityOpenLdapIdentityProvider?: Maybe; systemIdentityPermission?: Maybe; systemIdentityPermissionRole?: Maybe; systemIdentityPersistedGrant?: Maybe; systemIdentityResource?: Maybe; systemIdentityRole?: Maybe; systemIdentityServerSideSession?: Maybe; systemIdentityUser?: Maybe; systemMigrationHistory?: Maybe; systemNotificationCssTemplateConfiguration?: Maybe; systemNotificationEvent?: Maybe; systemNotificationMailNotificationConfiguration?: Maybe; systemNotificationNotificationTemplate?: Maybe; systemNotificationStatefulEvent?: Maybe; systemPersistentQuery?: Maybe; systemReportingConnectionInfo?: Maybe; systemReportingFileSystemContainer?: Maybe; systemReportingFileSystemEntity?: Maybe; systemReportingFileSystemItem?: Maybe; systemReportingFolder?: Maybe; systemReportingFolderRoot?: Maybe; systemSimpleRtQuery?: Maybe; systemSimpleSdQuery?: Maybe; systemStreamDataArchive?: Maybe; systemStreamDataQuery?: Maybe; systemStreamDataRawArchive?: Maybe; systemStreamDataRecomputeJob?: Maybe; systemStreamDataRollupArchive?: Maybe; systemStreamDataTimeRangeArchive?: Maybe; systemTenant?: Maybe; systemTenantConfiguration?: Maybe; systemTenantModeConfiguration?: Maybe; systemUIBranding?: Maybe; systemUIDashboard?: Maybe; systemUIDashboardWidget?: Maybe; systemUIProcessDiagram?: Maybe; systemUISymbolDefinition?: Maybe; systemUISymbolLibrary?: Maybe; systemUITreeNavigationConfiguration?: 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 RuntimeModelQueryBasicEnergyConsumerArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryBasicEnergyEdaMessageArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryBasicEnergyEdaMeteringPointArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryBasicEnergyEdaProcessArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryBasicEnergyEnergyMeasurementArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryBasicEnergyMeteringPointArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryBasicEnergyOperatingFacilityArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryBasicEnergyProducerArgsDto = { 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 RuntimeModelQueryEnergyCommunityBillingDocumentArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryEnergyCommunityBillingDocumentLineItemArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryEnergyCommunityConsumerArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryEnergyCommunityCustomerArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryEnergyCommunityEdaMessageArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryEnergyCommunityEdaMeteringPointArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryEnergyCommunityEdaProcessArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryEnergyCommunityEnergyPriceArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryEnergyCommunityEnergyQuantityArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryEnergyCommunityMeteringPointArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryEnergyCommunityOperatingFacilityArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryEnergyCommunityParticipationPeriodArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryEnergyCommunityProducerArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryEnvironmentCarbonBudgetArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryEnvironmentCarbonEmissionArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryEnvironmentCertificateOfOriginArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryEnvironmentComplianceRecordArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryEnvironmentEnvironmentalGoalArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryEnvironmentWasteMeterArgsDto = { 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 RuntimeModelQueryIndustryManufacturingPartialFeedbackArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryIndustryManufacturingProductionOrderArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryIndustryManufacturingProductionOrderItemArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryIndustryManufacturingShiftArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryIndustryManufacturingShiftMachineArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryIndustryManufacturingShiftOrderItemArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQueryIndustryManufacturingShiftTemplateArgsDto = { 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 RuntimeModelQuerySystemAiAiAgentConfigArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemAiAiAgentJobArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemAiAiAgentSessionArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemAiAiApprovalRequestArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemAiAiAuditEventArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemAiAiCredentialBindingArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemAiAiCredentialTicketArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemAiAiKnowledgeSourceArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemAiAiPromptTemplateArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemAiAiQuotaLimitArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemAiAiSessionEventArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemAiAiTokenLeaseArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemAiAiToolPolicyArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemAiAiUsageRecordArgsDto = { 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 RuntimeModelQuerySystemBlueprintBackupArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemBlueprintHistoryArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemBlueprintInstallationArgsDto = { 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 RuntimeModelQuerySystemCommunicationApplicationArgsDto = { 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 RuntimeModelQuerySystemCommunicationDeployableWorkloadArgsDto = { 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 RuntimeModelQuerySystemCommunicationHelmRepositoryConfigurationArgsDto = { 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 RuntimeModelQuerySystemIdentityClientMirrorArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemIdentityDataProtectionKeyArgsDto = { 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 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 RuntimeModelQuerySystemIdentityServerSideSessionArgsDto = { 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 RuntimeModelQuerySystemNotificationMailNotificationConfigurationArgsDto = { 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 RuntimeModelQuerySystemStreamDataArchiveArgsDto = { 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 RuntimeModelQuerySystemStreamDataRawArchiveArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemStreamDataRecomputeJobArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemStreamDataRollupArchiveArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; fieldFilter?: InputMaybe>>; first?: InputMaybe; geoNearFilter?: InputMaybe; options?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type RuntimeModelQuerySystemStreamDataTimeRangeArchiveArgsDto = { 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 RuntimeModelQuerySystemUiTreeNavigationConfigurationArgsDto = { 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" } /** How civil boundaries are resolved for a series query that spans multiple reference time zones (AB#4190). */ declare enum SeriesComparisonPolicyDto { PerQueryDto = "PER_QUERY", PerSeriesDto = "PER_SERIES" } /** Outcome of resolution-aware series routing. Non-Ok values are truthful signals the caller can surface — the resolver never silently produces a wrong or degraded result. */ declare enum SeriesResolutionSignalDto { EmptyLadderDto = "EMPTY_LADDER", NoSuitableRollupDto = "NO_SUITABLE_ROLLUP", OkDto = "OK", ResolutionLimitedDto = "RESOLUTION_LIMITED", UnknownBaseGrainDto = "UNKNOWN_BASE_GRAIN" } type SortDto = { attributePath: Scalars['String']['input']; sortOrder?: InputMaybe; }; /** Defines the sort order */ declare enum SortOrdersDto { AscendingDto = "ASCENDING", DefaultDto = "DEFAULT", DescendingDto = "DESCENDING" } type StreamDataArgumentsDto = { from?: InputMaybe; interval?: InputMaybe; limit?: InputMaybe; queryMode: QueryModeDto; /** Override the source runtime ids the query is scoped to. When supplied, replaces the persisted RtIds (used to scope a widget to the entities resolved from a selected asset). */ rtIds?: InputMaybe>>; to?: InputMaybe; }; type StreamDataModelQueryDto = { __typename?: 'StreamDataModelQuery'; /** Bulk-fetch per-archive backend storage stats (row count, on-disk size, health) for the studio's archives list. One round-trip per call; archives whose backing table doesn't exist yet (not activated) appear with tableExists=false so callers don't have to filter the rtId list beforehand. */ archivesStorageStats: Array; /** Returns the most recent recompute jobs for a rollup archive (newest first, capped at 50) — for debugging why a recompute failed. AB#4184. */ recomputeJobsFor: Array; /** Resolution-aware series routing (AB#4290): given a base archive family, a time window, a target point count and the required aggregation, returns the archive/rollup to query at the best resolution — without the caller knowing which physical archive holds the data at a usable grain. The caller then runs the existing downsampling query against the returned archiveRtId with limit = points. Null if StreamData is not enabled for the tenant. */ resolveSeriesQuery?: Maybe; /** Returns the studio's query-editor metadata for a rollup archive: bucket size and the distinct *logical* CK-attribute paths the rollup aggregates. Cascade rollups (rollup over rollup) have their physical sourcePath storage columns reversed back to the original CK attribute paths via RollupLogicalPathResolver (concept-time-range §7). Null if the rtId doesn't resolve to a rollup archive. */ rollupQueryMetadata?: Maybe; /** Returns every non-soft-deleted rollup archive attached to the given source archive — runtime id, status, schedule, watermark, freeze state. Rollup-archives concept §9. */ rollupsFor: Array; streamDataQuery?: Maybe; /** Transient stream-data queries */ transientStreamDataQuery: StreamDataTransientDto; }; type StreamDataModelQueryArchivesStorageStatsArgsDto = { rtIds: Array; }; type StreamDataModelQueryRecomputeJobsForArgsDto = { rtId: Scalars['OctoObjectId']['input']; }; type StreamDataModelQueryResolveSeriesQueryArgsDto = { input: ResolveSeriesQueryInputDto; }; type StreamDataModelQueryRollupQueryMetadataArgsDto = { rtId: Scalars['OctoObjectId']['input']; }; type StreamDataModelQueryRollupsForArgsDto = { rtId: Scalars['OctoObjectId']['input']; }; type StreamDataModelQueryStreamDataQueryArgsDto = { after?: InputMaybe; first?: InputMaybe; rtId: Scalars['OctoObjectId']['input']; }; /** Archive lifecycle mutations: activate, disable, enable, retry activation, delete. */ type StreamDataMutationsDto = { __typename?: 'StreamDataMutations'; /** Provisions the Crate table and transitions the archive to Activated. Allowed from Created/Disabled/Failed; idempotent on Activated. */ activateArchive: ArchiveTransitionResultDto; /** Adds a computed column to an Activated raw or time-range archive and backfills it across the existing rows. The column stays hidden until the backfill completes, then becomes visible atomically; a backfill failure leaves the previous archive state intact. Requires StreamDataAdmin. AB#4189. */ addComputedColumn: ArchiveTransitionResultDto; /** Queues a durable, background backfill that populates / resets a rollup over the ENTIRE history of its source archive without supplying a timestamp (AB#4269 / AB#4286). Resolves the source archive's earliest timestamp, enqueues a persisted pending recompute range [sourceMin, now) and a Pending RecomputeJob, and returns that job immediately. The heavy recompute runs later on the background orchestrator under the host application-lifetime token — not this request — so a client timeout can no longer cancel a long backfill and the queued work survives a restart. Poll the returned job to observe Pending → Running → Completed. Returns null when the source archive holds no data. Requires StreamDataAdmin. */ backfillRollupFromSource?: Maybe; /** Creates a new CkRollupArchive in Created status. The inherited CkArchive attributes (TargetCkTypeId, Columns) are resolved server-side from the source archive and the supplied aggregations (RollupColumnGenerator). Returns the generated rtId. */ createRollupArchive: Scalars['OctoObjectId']['output']; /** Creates a new TimeRangeArchive in Created status. Takes target CK type, attribute-path columns, and optional advisory period. Unlike createRollupArchive there is no source archive to inherit anything from — the operator picks everything directly. Returns the generated rtId. Requires StreamDataAdmin. */ createTimeRangeArchive: Scalars['OctoObjectId']['output']; /** Drops the per-archive CrateDB table (idempotent) and soft-deletes the CkArchive entity. Destructive — historical data is lost. Allowed from any status. Returns true when the archive was deleted. */ deleteArchive: Scalars['Boolean']['output']; /** Transitions the archive to Disabled. Allowed only from Activated; the Crate table is preserved. */ disableArchive: ArchiveTransitionResultDto; /** Transitions the archive from Disabled back to Activated. Re-validates column paths against the current CK model. */ enableArchive: ArchiveTransitionResultDto; /** Sets FrozenUntil on the rollup archive. Monotonic — rejected when the new value is earlier than the current FrozenUntil (use unfreezeRollupArchive instead). When set, the orchestrator stops producing buckets whose bucketEnd falls within the frozen range. */ freezeRollupArchive: ArchiveTransitionResultDto; /** Triggers (or coalesces) an optimistic recompute of a rollup archive over the half-open range [from, to). Returns the resulting job snapshot. While a recompute runs, readers keep seeing a consistent snapshot. Requires StreamDataAdmin. AB#4184. */ recomputeArchive: RecomputeJobInfoDto; /** Removes a computed column from an archive. Rejected when another computed column still references it. The physical CrateDB column is left as a harmless orphan the read path no longer projects. Requires StreamDataAdmin. AB#4189. */ removeComputedColumn: ArchiveTransitionResultDto; /** Retries activation after a previous DDL failure. Allowed only from Failed. */ retryArchiveActivation: ArchiveTransitionResultDto; /** Resets LastAggregatedBucketEnd to the given timestamp (truncated to the bucket boundary). Subsequent orchestrator ticks re-aggregate the rewound range. Destructive: previously committed rows in that range are temporarily out of sync until the orchestrator catches up. */ rewindRollupWatermark: ArchiveTransitionResultDto; /** Clears FrozenUntil on the rollup archive. Idempotent. The optional acceptGaps flag is recorded but the gap-detection guard is not yet enforced (concept §9 follow-up). */ unfreezeRollupArchive: ArchiveTransitionResultDto; /** Changes the formula of an existing computed column on an active archive with optimistic / atomic semantics: readers keep seeing the previous formula's values while the new one is backfilled, then switch atomically. Rejected when another computed column references this one (it would orphan the reference) — re-point or remove the dependent first. The result type is unchanged. Requires StreamDataAdmin. AB#4189. */ updateComputedColumnFormula: ArchiveTransitionResultDto; }; /** Archive lifecycle mutations: activate, disable, enable, retry activation, delete. */ type StreamDataMutationsActivateArchiveArgsDto = { rtId: Scalars['OctoObjectId']['input']; }; /** Archive lifecycle mutations: activate, disable, enable, retry activation, delete. */ type StreamDataMutationsAddComputedColumnArgsDto = { formula: Scalars['String']['input']; indexed?: InputMaybe; name: Scalars['String']['input']; resultType: FormulaResultTypeDto; rtId: Scalars['OctoObjectId']['input']; }; /** Archive lifecycle mutations: activate, disable, enable, retry activation, delete. */ type StreamDataMutationsBackfillRollupFromSourceArgsDto = { rtId: Scalars['OctoObjectId']['input']; }; /** Archive lifecycle mutations: activate, disable, enable, retry activation, delete. */ type StreamDataMutationsCreateRollupArchiveArgsDto = { input: CreateRollupArchiveInputDto; }; /** Archive lifecycle mutations: activate, disable, enable, retry activation, delete. */ type StreamDataMutationsCreateTimeRangeArchiveArgsDto = { input: CreateTimeRangeArchiveInputDto; }; /** Archive lifecycle mutations: activate, disable, enable, retry activation, delete. */ type StreamDataMutationsDeleteArchiveArgsDto = { rtId: Scalars['OctoObjectId']['input']; }; /** Archive lifecycle mutations: activate, disable, enable, retry activation, delete. */ type StreamDataMutationsDisableArchiveArgsDto = { rtId: Scalars['OctoObjectId']['input']; }; /** Archive lifecycle mutations: activate, disable, enable, retry activation, delete. */ type StreamDataMutationsEnableArchiveArgsDto = { rtId: Scalars['OctoObjectId']['input']; }; /** Archive lifecycle mutations: activate, disable, enable, retry activation, delete. */ type StreamDataMutationsFreezeRollupArchiveArgsDto = { rtId: Scalars['OctoObjectId']['input']; until: Scalars['DateTime']['input']; }; /** Archive lifecycle mutations: activate, disable, enable, retry activation, delete. */ type StreamDataMutationsRecomputeArchiveArgsDto = { from: Scalars['DateTime']['input']; rtId: Scalars['OctoObjectId']['input']; rtIdScope?: InputMaybe; to: Scalars['DateTime']['input']; }; /** Archive lifecycle mutations: activate, disable, enable, retry activation, delete. */ type StreamDataMutationsRemoveComputedColumnArgsDto = { name: Scalars['String']['input']; rtId: Scalars['OctoObjectId']['input']; }; /** Archive lifecycle mutations: activate, disable, enable, retry activation, delete. */ type StreamDataMutationsRetryArchiveActivationArgsDto = { rtId: Scalars['OctoObjectId']['input']; }; /** Archive lifecycle mutations: activate, disable, enable, retry activation, delete. */ type StreamDataMutationsRewindRollupWatermarkArgsDto = { rtId: Scalars['OctoObjectId']['input']; toBucketEnd: Scalars['DateTime']['input']; }; /** Archive lifecycle mutations: activate, disable, enable, retry activation, delete. */ type StreamDataMutationsUnfreezeRollupArchiveArgsDto = { acceptGaps?: InputMaybe; rtId: Scalars['OctoObjectId']['input']; }; /** Archive lifecycle mutations: activate, disable, enable, retry activation, delete. */ type StreamDataMutationsUpdateComputedColumnFormulaArgsDto = { formula: Scalars['String']['input']; name: Scalars['String']['input']; 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. Accepts optional runtime field filters AND-combined with the persisted FieldFilter. */ aggregations?: Maybe; /** The rtId of the archive this persisted query reads from. For a resolution-aware series query (AB#4290) this is the base archive of the series' resolution family, so a caller can resolve the best rollup/archive without a separate lookup. */ archiveRtId: Scalars['OctoObjectId']['output']; 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, plus additional field filters AND-combined with the persisted FieldFilter. */ 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; fieldFilter?: InputMaybe>>; 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; fieldFilter?: 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; resolveEnumValuesToNames?: 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; archiveRtId: Scalars['OctoObjectId']['input']; arg?: InputMaybe; columnPaths: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtIds?: InputMaybe>>; }; /** Transient stream-data queries constructed ad-hoc at execution time. */ type StreamDataTransientDownsamplingArgsDto = { after?: InputMaybe; archiveRtId: Scalars['OctoObjectId']['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; archiveRtId: Scalars['OctoObjectId']['input']; arg?: InputMaybe; columnPaths: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; groupByColumnPaths: Array; rtIds?: InputMaybe>>; }; /** Transient stream-data queries constructed ad-hoc at execution time. */ type StreamDataTransientSimpleArgsDto = { after?: InputMaybe; archiveRtId: Scalars['OctoObjectId']['input']; arg?: InputMaybe; 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.2.0/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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; textSearchFilter?: Maybe; }; /** Runtime entities of construction kit type 'System-2.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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.2.0/AggregationSdQuery-1' */ type SystemAggregationSdQueryDto = SystemEntityInterfaceDto & SystemPersistentQueryInterfaceDto & SystemStreamDataQueryInterfaceDto & { __typename?: 'SystemAggregationSdQuery'; archiveRtId?: Maybe; 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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtIds?: Maybe>; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; to?: Maybe; }; /** Runtime entities of construction kit type 'System-2.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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 = { archiveRtId?: InputMaybe; 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 type 'System.Ai-3.1.2/AiAgentConfig-1' */ type SystemAiAiAgentConfigDto = SystemConfigurationInterfaceDto & SystemEntityInterfaceDto & { __typename?: 'SystemAiAiAgentConfig'; associations?: Maybe; authMode: SystemAiAuthModeDto; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; defaultModel: SystemAiModelTierDto; devBridgeEnabled: Scalars['Boolean']['output']; hibernationIdleMinutes: Scalars['Int']['output']; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; subscriptionScope: SystemAiSubscriptionScopeDto; taggedBy?: Maybe; usedBy?: Maybe; workerImageTag: Scalars['String']['output']; workspaceMode: SystemAiWorkspaceModeDto; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiAgentConfig-1' */ type SystemAiAiAgentConfigAssociationsArgsDto = { 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.Ai-3.1.2/AiAgentConfig-1' */ type SystemAiAiAgentConfigConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiAgentConfig-1' */ type SystemAiAiAgentConfigMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiAgentConfig-1' */ type SystemAiAiAgentConfigMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiAgentConfig-1' */ type SystemAiAiAgentConfigRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiAgentConfig-1' */ type SystemAiAiAgentConfigRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiAgentConfig-1' */ type SystemAiAiAgentConfigTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiAgentConfig-1' */ type SystemAiAiAgentConfigUsedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemAiAiAgentConfig`. */ type SystemAiAiAgentConfigConnectionDto = { __typename?: 'SystemAiAiAgentConfigConnection'; /** 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 `SystemAiAiAgentConfig`. */ type SystemAiAiAgentConfigEdgeDto = { __typename?: 'SystemAiAiAgentConfigEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemAiAiAgentConfigInputDto = { authMode?: InputMaybe; configuredBy?: InputMaybe>>; defaultModel?: InputMaybe; devBridgeEnabled?: InputMaybe; hibernationIdleMinutes?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; subscriptionScope?: InputMaybe; taggedBy?: InputMaybe>>; usedBy?: InputMaybe>>; workerImageTag?: InputMaybe; workspaceMode?: InputMaybe; }; type SystemAiAiAgentConfigInputUpdateDto = { /** Item to update */ item: SystemAiAiAgentConfigInputDto; rtId?: InputMaybe; }; type SystemAiAiAgentConfigMutationsDto = { __typename?: 'SystemAiAiAgentConfigMutations'; /** Creates new entities of type 'SystemAiAiAgentConfig'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemAiAiAgentConfig'. */ update?: Maybe>>; }; type SystemAiAiAgentConfigMutationsCreateArgsDto = { entities: Array>; }; type SystemAiAiAgentConfigMutationsUpdateArgsDto = { entities: Array>; }; type SystemAiAiAgentConfigUpdateDto = { __typename?: 'SystemAiAiAgentConfigUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemAiAiAgentConfigUpdateMessageDto = { __typename?: 'SystemAiAiAgentConfigUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiAgentJob-1' */ type SystemAiAiAgentJobDto = SystemEntityInterfaceDto & { __typename?: 'SystemAiAiAgentJob'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; completedAt?: Maybe; configuredBy?: Maybe; constructionKitType?: Maybe; goal: Scalars['String']['output']; mapsFrom?: Maybe; mapsTo?: Maybe; ownedByAiResource?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; startedAt: Scalars['DateTime']['output']; status: SystemAiJobStatusDto; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiAgentJob-1' */ type SystemAiAiAgentJobAssociationsArgsDto = { 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.Ai-3.1.2/AiAgentJob-1' */ type SystemAiAiAgentJobConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiAgentJob-1' */ type SystemAiAiAgentJobMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiAgentJob-1' */ type SystemAiAiAgentJobMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiAgentJob-1' */ type SystemAiAiAgentJobOwnedByAiResourceArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiAgentJob-1' */ type SystemAiAiAgentJobRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiAgentJob-1' */ type SystemAiAiAgentJobRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiAgentJob-1' */ type SystemAiAiAgentJobTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemAiAiAgentJob`. */ type SystemAiAiAgentJobConnectionDto = { __typename?: 'SystemAiAiAgentJobConnection'; /** 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 `SystemAiAiAgentJob`. */ type SystemAiAiAgentJobEdgeDto = { __typename?: 'SystemAiAiAgentJobEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemAiAiAgentJobInputDto = { completedAt?: InputMaybe; configuredBy?: InputMaybe>>; goal?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; ownedByAiResource?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; startedAt?: InputMaybe; status?: InputMaybe; taggedBy?: InputMaybe>>; }; type SystemAiAiAgentJobInputUpdateDto = { /** Item to update */ item: SystemAiAiAgentJobInputDto; rtId?: InputMaybe; }; type SystemAiAiAgentJobMutationsDto = { __typename?: 'SystemAiAiAgentJobMutations'; /** Creates new entities of type 'SystemAiAiAgentJob'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemAiAiAgentJob'. */ update?: Maybe>>; }; type SystemAiAiAgentJobMutationsCreateArgsDto = { entities: Array>; }; type SystemAiAiAgentJobMutationsUpdateArgsDto = { entities: Array>; }; type SystemAiAiAgentJobUpdateDto = { __typename?: 'SystemAiAiAgentJobUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemAiAiAgentJobUpdateMessageDto = { __typename?: 'SystemAiAiAgentJobUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Union of types derived from System.Ai/AiAgentJob for AiResources association */ type SystemAiAiAgentJob_AiResourcesUnionDto = SystemAiAiAgentJobDto; /** A connection to `SystemAiAiAgentJob_AiResourcesUnion`. */ type SystemAiAiAgentJob_AiResourcesUnionConnectionDto = { __typename?: 'SystemAiAiAgentJob_AiResourcesUnionConnection'; /** 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 `SystemAiAiAgentJob_AiResourcesUnion`. */ type SystemAiAiAgentJob_AiResourcesUnionEdgeDto = { __typename?: 'SystemAiAiAgentJob_AiResourcesUnionEdge'; /** 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.Ai-3.1.2/AiAgentSession-1' */ type SystemAiAiAgentSessionDto = SystemEntityInterfaceDto & { __typename?: 'SystemAiAiAgentSession'; aiResources?: Maybe; associations?: Maybe; baseBranch?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; completedAt?: Maybe; configuredBy?: Maybe; constructionKitType?: Maybe; goalSummary: Scalars['String']['output']; jobKind?: Maybe; lastEventSequence: Scalars['Int']['output']; mapsFrom?: Maybe; mapsTo?: Maybe; ownerUserId: Scalars['String']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; sourceRepo?: Maybe; startedAt: Scalars['DateTime']['output']; status: SystemAiSessionStatusDto; taggedBy?: Maybe; tokensConsumed: Scalars['Int']['output']; workspaceBranchRef?: Maybe; workspaceWorktreePath?: Maybe; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiAgentSession-1' */ type SystemAiAiAgentSessionAiResourcesArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiAgentSession-1' */ type SystemAiAiAgentSessionAssociationsArgsDto = { 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.Ai-3.1.2/AiAgentSession-1' */ type SystemAiAiAgentSessionConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiAgentSession-1' */ type SystemAiAiAgentSessionMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiAgentSession-1' */ type SystemAiAiAgentSessionMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiAgentSession-1' */ type SystemAiAiAgentSessionRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiAgentSession-1' */ type SystemAiAiAgentSessionRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiAgentSession-1' */ type SystemAiAiAgentSessionTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemAiAiAgentSession`. */ type SystemAiAiAgentSessionConnectionDto = { __typename?: 'SystemAiAiAgentSessionConnection'; /** 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 `SystemAiAiAgentSession`. */ type SystemAiAiAgentSessionEdgeDto = { __typename?: 'SystemAiAiAgentSessionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemAiAiAgentSessionInputDto = { aiResources?: InputMaybe>>; baseBranch?: InputMaybe; completedAt?: InputMaybe; configuredBy?: InputMaybe>>; goalSummary?: InputMaybe; jobKind?: InputMaybe; lastEventSequence?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; ownerUserId?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; sourceRepo?: InputMaybe; startedAt?: InputMaybe; status?: InputMaybe; taggedBy?: InputMaybe>>; tokensConsumed?: InputMaybe; workspaceBranchRef?: InputMaybe; workspaceWorktreePath?: InputMaybe; }; type SystemAiAiAgentSessionInputUpdateDto = { /** Item to update */ item: SystemAiAiAgentSessionInputDto; rtId?: InputMaybe; }; type SystemAiAiAgentSessionMutationsDto = { __typename?: 'SystemAiAiAgentSessionMutations'; /** Creates new entities of type 'SystemAiAiAgentSession'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemAiAiAgentSession'. */ update?: Maybe>>; }; type SystemAiAiAgentSessionMutationsCreateArgsDto = { entities: Array>; }; type SystemAiAiAgentSessionMutationsUpdateArgsDto = { entities: Array>; }; type SystemAiAiAgentSessionUpdateDto = { __typename?: 'SystemAiAiAgentSessionUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemAiAiAgentSessionUpdateMessageDto = { __typename?: 'SystemAiAiAgentSessionUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Union of types derived from System.Ai/AiAgentSession for OwnedByAiResource association */ type SystemAiAiAgentSession_OwnedByAiResourceUnionDto = SystemAiAiAgentSessionDto; /** A connection to `SystemAiAiAgentSession_OwnedByAiResourceUnion`. */ type SystemAiAiAgentSession_OwnedByAiResourceUnionConnectionDto = { __typename?: 'SystemAiAiAgentSession_OwnedByAiResourceUnionConnection'; /** 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 `SystemAiAiAgentSession_OwnedByAiResourceUnion`. */ type SystemAiAiAgentSession_OwnedByAiResourceUnionEdgeDto = { __typename?: 'SystemAiAiAgentSession_OwnedByAiResourceUnionEdge'; /** 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.Ai-3.1.2/AiApprovalRequest-1' */ type SystemAiAiApprovalRequestDto = SystemEntityInterfaceDto & { __typename?: 'SystemAiAiApprovalRequest'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; comment?: Maybe; configuredBy?: Maybe; constructionKitType?: Maybe; decidedAt?: Maybe; decidedBy?: Maybe; expiresAt: Scalars['DateTime']['output']; mapsFrom?: Maybe; mapsTo?: Maybe; payload: Scalars['String']['output']; reason: SystemAiApprovalReasonDto; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; status: SystemAiApprovalStatusDto; taggedBy?: Maybe; toolName: Scalars['String']['output']; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiApprovalRequest-1' */ type SystemAiAiApprovalRequestAssociationsArgsDto = { 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.Ai-3.1.2/AiApprovalRequest-1' */ type SystemAiAiApprovalRequestConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiApprovalRequest-1' */ type SystemAiAiApprovalRequestMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiApprovalRequest-1' */ type SystemAiAiApprovalRequestMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiApprovalRequest-1' */ type SystemAiAiApprovalRequestRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiApprovalRequest-1' */ type SystemAiAiApprovalRequestRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiApprovalRequest-1' */ type SystemAiAiApprovalRequestTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemAiAiApprovalRequest`. */ type SystemAiAiApprovalRequestConnectionDto = { __typename?: 'SystemAiAiApprovalRequestConnection'; /** 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 `SystemAiAiApprovalRequest`. */ type SystemAiAiApprovalRequestEdgeDto = { __typename?: 'SystemAiAiApprovalRequestEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemAiAiApprovalRequestInputDto = { comment?: InputMaybe; configuredBy?: InputMaybe>>; decidedAt?: InputMaybe; decidedBy?: InputMaybe; expiresAt?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; payload?: InputMaybe; reason?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; status?: InputMaybe; taggedBy?: InputMaybe>>; toolName?: InputMaybe; }; type SystemAiAiApprovalRequestInputUpdateDto = { /** Item to update */ item: SystemAiAiApprovalRequestInputDto; rtId?: InputMaybe; }; type SystemAiAiApprovalRequestMutationsDto = { __typename?: 'SystemAiAiApprovalRequestMutations'; /** Creates new entities of type 'SystemAiAiApprovalRequest'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemAiAiApprovalRequest'. */ update?: Maybe>>; }; type SystemAiAiApprovalRequestMutationsCreateArgsDto = { entities: Array>; }; type SystemAiAiApprovalRequestMutationsUpdateArgsDto = { entities: Array>; }; type SystemAiAiApprovalRequestUpdateDto = { __typename?: 'SystemAiAiApprovalRequestUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemAiAiApprovalRequestUpdateMessageDto = { __typename?: 'SystemAiAiApprovalRequestUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiAuditEvent-1' */ type SystemAiAiAuditEventDto = SystemEntityInterfaceDto & { __typename?: 'SystemAiAiAuditEvent'; actorRef: Scalars['String']['output']; associations?: Maybe; at: Scalars['DateTime']['output']; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; detail?: Maybe; eventType: Scalars['String']['output']; mapsFrom?: Maybe; mapsTo?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; targetRef?: Maybe; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiAuditEvent-1' */ type SystemAiAiAuditEventAssociationsArgsDto = { 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.Ai-3.1.2/AiAuditEvent-1' */ type SystemAiAiAuditEventConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiAuditEvent-1' */ type SystemAiAiAuditEventMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiAuditEvent-1' */ type SystemAiAiAuditEventMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiAuditEvent-1' */ type SystemAiAiAuditEventRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiAuditEvent-1' */ type SystemAiAiAuditEventRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiAuditEvent-1' */ type SystemAiAiAuditEventTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemAiAiAuditEvent`. */ type SystemAiAiAuditEventConnectionDto = { __typename?: 'SystemAiAiAuditEventConnection'; /** 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 `SystemAiAiAuditEvent`. */ type SystemAiAiAuditEventEdgeDto = { __typename?: 'SystemAiAiAuditEventEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemAiAiAuditEventInputDto = { actorRef?: InputMaybe; at?: InputMaybe; configuredBy?: InputMaybe>>; detail?: InputMaybe; eventType?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; targetRef?: InputMaybe; }; type SystemAiAiAuditEventInputUpdateDto = { /** Item to update */ item: SystemAiAiAuditEventInputDto; rtId?: InputMaybe; }; type SystemAiAiAuditEventMutationsDto = { __typename?: 'SystemAiAiAuditEventMutations'; /** Creates new entities of type 'SystemAiAiAuditEvent'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemAiAiAuditEvent'. */ update?: Maybe>>; }; type SystemAiAiAuditEventMutationsCreateArgsDto = { entities: Array>; }; type SystemAiAiAuditEventMutationsUpdateArgsDto = { entities: Array>; }; type SystemAiAiAuditEventUpdateDto = { __typename?: 'SystemAiAiAuditEventUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemAiAiAuditEventUpdateMessageDto = { __typename?: 'SystemAiAiAuditEventUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiCredentialBinding-1' */ type SystemAiAiCredentialBindingDto = SystemConfigurationInterfaceDto & SystemEntityInterfaceDto & { __typename?: 'SystemAiAiCredentialBinding'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; encryptedValue: Scalars['String']['output']; kind: SystemAiCredentialKindDto; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; scope: Scalars['String']['output']; taggedBy?: Maybe; usedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiCredentialBinding-1' */ type SystemAiAiCredentialBindingAssociationsArgsDto = { 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.Ai-3.1.2/AiCredentialBinding-1' */ type SystemAiAiCredentialBindingConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiCredentialBinding-1' */ type SystemAiAiCredentialBindingMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiCredentialBinding-1' */ type SystemAiAiCredentialBindingMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiCredentialBinding-1' */ type SystemAiAiCredentialBindingRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiCredentialBinding-1' */ type SystemAiAiCredentialBindingRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiCredentialBinding-1' */ type SystemAiAiCredentialBindingTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiCredentialBinding-1' */ type SystemAiAiCredentialBindingUsedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemAiAiCredentialBinding`. */ type SystemAiAiCredentialBindingConnectionDto = { __typename?: 'SystemAiAiCredentialBindingConnection'; /** 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 `SystemAiAiCredentialBinding`. */ type SystemAiAiCredentialBindingEdgeDto = { __typename?: 'SystemAiAiCredentialBindingEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemAiAiCredentialBindingInputDto = { configuredBy?: InputMaybe>>; encryptedValue?: InputMaybe; kind?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; scope?: InputMaybe; taggedBy?: InputMaybe>>; usedBy?: InputMaybe>>; }; type SystemAiAiCredentialBindingInputUpdateDto = { /** Item to update */ item: SystemAiAiCredentialBindingInputDto; rtId?: InputMaybe; }; type SystemAiAiCredentialBindingMutationsDto = { __typename?: 'SystemAiAiCredentialBindingMutations'; /** Creates new entities of type 'SystemAiAiCredentialBinding'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemAiAiCredentialBinding'. */ update?: Maybe>>; }; type SystemAiAiCredentialBindingMutationsCreateArgsDto = { entities: Array>; }; type SystemAiAiCredentialBindingMutationsUpdateArgsDto = { entities: Array>; }; type SystemAiAiCredentialBindingUpdateDto = { __typename?: 'SystemAiAiCredentialBindingUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemAiAiCredentialBindingUpdateMessageDto = { __typename?: 'SystemAiAiCredentialBindingUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiCredentialTicket-1' */ type SystemAiAiCredentialTicketDto = SystemEntityInterfaceDto & { __typename?: 'SystemAiAiCredentialTicket'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; code: Scalars['String']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; expiresAt: Scalars['DateTime']['output']; issuedByUserId: Scalars['String']['output']; mapsFrom?: Maybe; mapsTo?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; scope: SystemAiTicketScopeDto; status: SystemAiTicketStatusDto; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiCredentialTicket-1' */ type SystemAiAiCredentialTicketAssociationsArgsDto = { 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.Ai-3.1.2/AiCredentialTicket-1' */ type SystemAiAiCredentialTicketConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiCredentialTicket-1' */ type SystemAiAiCredentialTicketMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiCredentialTicket-1' */ type SystemAiAiCredentialTicketMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiCredentialTicket-1' */ type SystemAiAiCredentialTicketRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiCredentialTicket-1' */ type SystemAiAiCredentialTicketRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiCredentialTicket-1' */ type SystemAiAiCredentialTicketTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemAiAiCredentialTicket`. */ type SystemAiAiCredentialTicketConnectionDto = { __typename?: 'SystemAiAiCredentialTicketConnection'; /** 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 `SystemAiAiCredentialTicket`. */ type SystemAiAiCredentialTicketEdgeDto = { __typename?: 'SystemAiAiCredentialTicketEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemAiAiCredentialTicketInputDto = { code?: InputMaybe; configuredBy?: InputMaybe>>; expiresAt?: InputMaybe; issuedByUserId?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; scope?: InputMaybe; status?: InputMaybe; taggedBy?: InputMaybe>>; }; type SystemAiAiCredentialTicketInputUpdateDto = { /** Item to update */ item: SystemAiAiCredentialTicketInputDto; rtId?: InputMaybe; }; type SystemAiAiCredentialTicketMutationsDto = { __typename?: 'SystemAiAiCredentialTicketMutations'; /** Creates new entities of type 'SystemAiAiCredentialTicket'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemAiAiCredentialTicket'. */ update?: Maybe>>; }; type SystemAiAiCredentialTicketMutationsCreateArgsDto = { entities: Array>; }; type SystemAiAiCredentialTicketMutationsUpdateArgsDto = { entities: Array>; }; type SystemAiAiCredentialTicketUpdateDto = { __typename?: 'SystemAiAiCredentialTicketUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemAiAiCredentialTicketUpdateMessageDto = { __typename?: 'SystemAiAiCredentialTicketUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiKnowledgeSource-1' */ type SystemAiAiKnowledgeSourceDto = SystemConfigurationInterfaceDto & SystemEntityInterfaceDto & { __typename?: 'SystemAiAiKnowledgeSource'; appliesToScopes: Scalars['String']['output']; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; kind: SystemAiKnowledgeKindDto; mapsFrom?: Maybe; mapsTo?: Maybe; path: Scalars['String']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; title: Scalars['String']['output']; usedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiKnowledgeSource-1' */ type SystemAiAiKnowledgeSourceAssociationsArgsDto = { 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.Ai-3.1.2/AiKnowledgeSource-1' */ type SystemAiAiKnowledgeSourceConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiKnowledgeSource-1' */ type SystemAiAiKnowledgeSourceMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiKnowledgeSource-1' */ type SystemAiAiKnowledgeSourceMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiKnowledgeSource-1' */ type SystemAiAiKnowledgeSourceRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiKnowledgeSource-1' */ type SystemAiAiKnowledgeSourceRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiKnowledgeSource-1' */ type SystemAiAiKnowledgeSourceTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiKnowledgeSource-1' */ type SystemAiAiKnowledgeSourceUsedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemAiAiKnowledgeSource`. */ type SystemAiAiKnowledgeSourceConnectionDto = { __typename?: 'SystemAiAiKnowledgeSourceConnection'; /** 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 `SystemAiAiKnowledgeSource`. */ type SystemAiAiKnowledgeSourceEdgeDto = { __typename?: 'SystemAiAiKnowledgeSourceEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemAiAiKnowledgeSourceInputDto = { appliesToScopes?: InputMaybe; configuredBy?: InputMaybe>>; kind?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; path?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; title?: InputMaybe; usedBy?: InputMaybe>>; }; type SystemAiAiKnowledgeSourceInputUpdateDto = { /** Item to update */ item: SystemAiAiKnowledgeSourceInputDto; rtId?: InputMaybe; }; type SystemAiAiKnowledgeSourceMutationsDto = { __typename?: 'SystemAiAiKnowledgeSourceMutations'; /** Creates new entities of type 'SystemAiAiKnowledgeSource'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemAiAiKnowledgeSource'. */ update?: Maybe>>; }; type SystemAiAiKnowledgeSourceMutationsCreateArgsDto = { entities: Array>; }; type SystemAiAiKnowledgeSourceMutationsUpdateArgsDto = { entities: Array>; }; type SystemAiAiKnowledgeSourceUpdateDto = { __typename?: 'SystemAiAiKnowledgeSourceUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemAiAiKnowledgeSourceUpdateMessageDto = { __typename?: 'SystemAiAiKnowledgeSourceUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiPromptTemplate-1' */ type SystemAiAiPromptTemplateDto = SystemConfigurationInterfaceDto & SystemEntityInterfaceDto & { __typename?: 'SystemAiAiPromptTemplate'; appliesTo: SystemAiJobKindDto; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; exampleGoals: Scalars['String']['output']; mapsFrom?: Maybe; mapsTo?: Maybe; name: Scalars['String']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; systemPromptFragment: Scalars['String']['output']; taggedBy?: Maybe; usedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiPromptTemplate-1' */ type SystemAiAiPromptTemplateAssociationsArgsDto = { 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.Ai-3.1.2/AiPromptTemplate-1' */ type SystemAiAiPromptTemplateConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiPromptTemplate-1' */ type SystemAiAiPromptTemplateMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiPromptTemplate-1' */ type SystemAiAiPromptTemplateMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiPromptTemplate-1' */ type SystemAiAiPromptTemplateRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiPromptTemplate-1' */ type SystemAiAiPromptTemplateRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiPromptTemplate-1' */ type SystemAiAiPromptTemplateTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiPromptTemplate-1' */ type SystemAiAiPromptTemplateUsedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemAiAiPromptTemplate`. */ type SystemAiAiPromptTemplateConnectionDto = { __typename?: 'SystemAiAiPromptTemplateConnection'; /** 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 `SystemAiAiPromptTemplate`. */ type SystemAiAiPromptTemplateEdgeDto = { __typename?: 'SystemAiAiPromptTemplateEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemAiAiPromptTemplateInputDto = { appliesTo?: InputMaybe; configuredBy?: InputMaybe>>; exampleGoals?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; systemPromptFragment?: InputMaybe; taggedBy?: InputMaybe>>; usedBy?: InputMaybe>>; }; type SystemAiAiPromptTemplateInputUpdateDto = { /** Item to update */ item: SystemAiAiPromptTemplateInputDto; rtId?: InputMaybe; }; type SystemAiAiPromptTemplateMutationsDto = { __typename?: 'SystemAiAiPromptTemplateMutations'; /** Creates new entities of type 'SystemAiAiPromptTemplate'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemAiAiPromptTemplate'. */ update?: Maybe>>; }; type SystemAiAiPromptTemplateMutationsCreateArgsDto = { entities: Array>; }; type SystemAiAiPromptTemplateMutationsUpdateArgsDto = { entities: Array>; }; type SystemAiAiPromptTemplateUpdateDto = { __typename?: 'SystemAiAiPromptTemplateUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemAiAiPromptTemplateUpdateMessageDto = { __typename?: 'SystemAiAiPromptTemplateUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiQuotaLimit-1' */ type SystemAiAiQuotaLimitDto = SystemConfigurationInterfaceDto & SystemEntityInterfaceDto & { __typename?: 'SystemAiAiQuotaLimit'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; concurrentJobs: Scalars['Int']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; costCapMonthlyEUR: Scalars['Decimal']['output']; mapsFrom?: Maybe; mapsTo?: Maybe; maxSessionDurationMinutes: Scalars['Int']['output']; maxSessionsQueued: Scalars['Int']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; tokensPerDay: Scalars['Int']['output']; tokensPerJob: Scalars['Int']['output']; usedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiQuotaLimit-1' */ type SystemAiAiQuotaLimitAssociationsArgsDto = { 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.Ai-3.1.2/AiQuotaLimit-1' */ type SystemAiAiQuotaLimitConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiQuotaLimit-1' */ type SystemAiAiQuotaLimitMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiQuotaLimit-1' */ type SystemAiAiQuotaLimitMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiQuotaLimit-1' */ type SystemAiAiQuotaLimitRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiQuotaLimit-1' */ type SystemAiAiQuotaLimitRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiQuotaLimit-1' */ type SystemAiAiQuotaLimitTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiQuotaLimit-1' */ type SystemAiAiQuotaLimitUsedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemAiAiQuotaLimit`. */ type SystemAiAiQuotaLimitConnectionDto = { __typename?: 'SystemAiAiQuotaLimitConnection'; /** 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 `SystemAiAiQuotaLimit`. */ type SystemAiAiQuotaLimitEdgeDto = { __typename?: 'SystemAiAiQuotaLimitEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemAiAiQuotaLimitInputDto = { concurrentJobs?: InputMaybe; configuredBy?: InputMaybe>>; costCapMonthlyEUR?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; maxSessionDurationMinutes?: InputMaybe; maxSessionsQueued?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; tokensPerDay?: InputMaybe; tokensPerJob?: InputMaybe; usedBy?: InputMaybe>>; }; type SystemAiAiQuotaLimitInputUpdateDto = { /** Item to update */ item: SystemAiAiQuotaLimitInputDto; rtId?: InputMaybe; }; type SystemAiAiQuotaLimitMutationsDto = { __typename?: 'SystemAiAiQuotaLimitMutations'; /** Creates new entities of type 'SystemAiAiQuotaLimit'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemAiAiQuotaLimit'. */ update?: Maybe>>; }; type SystemAiAiQuotaLimitMutationsCreateArgsDto = { entities: Array>; }; type SystemAiAiQuotaLimitMutationsUpdateArgsDto = { entities: Array>; }; type SystemAiAiQuotaLimitUpdateDto = { __typename?: 'SystemAiAiQuotaLimitUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemAiAiQuotaLimitUpdateMessageDto = { __typename?: 'SystemAiAiQuotaLimitUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiSessionEvent-1' */ type SystemAiAiSessionEventDto = SystemEntityInterfaceDto & { __typename?: 'SystemAiAiSessionEvent'; actorRef: Scalars['String']['output']; associations?: Maybe; at: Scalars['DateTime']['output']; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; kind: SystemAiSessionEventKindDto; mapsFrom?: Maybe; mapsTo?: Maybe; payload: Scalars['String']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; sequence: Scalars['Int']['output']; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiSessionEvent-1' */ type SystemAiAiSessionEventAssociationsArgsDto = { 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.Ai-3.1.2/AiSessionEvent-1' */ type SystemAiAiSessionEventConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiSessionEvent-1' */ type SystemAiAiSessionEventMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiSessionEvent-1' */ type SystemAiAiSessionEventMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiSessionEvent-1' */ type SystemAiAiSessionEventRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiSessionEvent-1' */ type SystemAiAiSessionEventRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiSessionEvent-1' */ type SystemAiAiSessionEventTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemAiAiSessionEvent`. */ type SystemAiAiSessionEventConnectionDto = { __typename?: 'SystemAiAiSessionEventConnection'; /** 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 `SystemAiAiSessionEvent`. */ type SystemAiAiSessionEventEdgeDto = { __typename?: 'SystemAiAiSessionEventEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemAiAiSessionEventInputDto = { actorRef?: InputMaybe; at?: InputMaybe; configuredBy?: InputMaybe>>; kind?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; payload?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; sequence?: InputMaybe; taggedBy?: InputMaybe>>; }; type SystemAiAiSessionEventInputUpdateDto = { /** Item to update */ item: SystemAiAiSessionEventInputDto; rtId?: InputMaybe; }; type SystemAiAiSessionEventMutationsDto = { __typename?: 'SystemAiAiSessionEventMutations'; /** Creates new entities of type 'SystemAiAiSessionEvent'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemAiAiSessionEvent'. */ update?: Maybe>>; }; type SystemAiAiSessionEventMutationsCreateArgsDto = { entities: Array>; }; type SystemAiAiSessionEventMutationsUpdateArgsDto = { entities: Array>; }; type SystemAiAiSessionEventUpdateDto = { __typename?: 'SystemAiAiSessionEventUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemAiAiSessionEventUpdateMessageDto = { __typename?: 'SystemAiAiSessionEventUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiTokenLease-1' */ type SystemAiAiTokenLeaseDto = SystemEntityInterfaceDto & { __typename?: 'SystemAiAiTokenLease'; accessExpiresAt: Scalars['DateTime']['output']; accessToken: Scalars['String']['output']; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; generation: Scalars['Int']['output']; mapsFrom?: Maybe; mapsTo?: Maybe; rateLimitTier: Scalars['String']['output']; refreshExpiresAt: Scalars['DateTime']['output']; refreshToken: Scalars['String']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; scopes: Scalars['String']['output']; status: SystemAiLeaseStatusDto; subscriptionType: Scalars['String']['output']; taggedBy?: Maybe; trustedDeviceToken: Scalars['String']['output']; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiTokenLease-1' */ type SystemAiAiTokenLeaseAssociationsArgsDto = { 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.Ai-3.1.2/AiTokenLease-1' */ type SystemAiAiTokenLeaseConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiTokenLease-1' */ type SystemAiAiTokenLeaseMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiTokenLease-1' */ type SystemAiAiTokenLeaseMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiTokenLease-1' */ type SystemAiAiTokenLeaseRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiTokenLease-1' */ type SystemAiAiTokenLeaseRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiTokenLease-1' */ type SystemAiAiTokenLeaseTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemAiAiTokenLease`. */ type SystemAiAiTokenLeaseConnectionDto = { __typename?: 'SystemAiAiTokenLeaseConnection'; /** 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 `SystemAiAiTokenLease`. */ type SystemAiAiTokenLeaseEdgeDto = { __typename?: 'SystemAiAiTokenLeaseEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemAiAiTokenLeaseInputDto = { accessExpiresAt?: InputMaybe; accessToken?: InputMaybe; configuredBy?: InputMaybe>>; generation?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; rateLimitTier?: InputMaybe; refreshExpiresAt?: InputMaybe; refreshToken?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; scopes?: InputMaybe; status?: InputMaybe; subscriptionType?: InputMaybe; taggedBy?: InputMaybe>>; trustedDeviceToken?: InputMaybe; }; type SystemAiAiTokenLeaseInputUpdateDto = { /** Item to update */ item: SystemAiAiTokenLeaseInputDto; rtId?: InputMaybe; }; type SystemAiAiTokenLeaseMutationsDto = { __typename?: 'SystemAiAiTokenLeaseMutations'; /** Creates new entities of type 'SystemAiAiTokenLease'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemAiAiTokenLease'. */ update?: Maybe>>; }; type SystemAiAiTokenLeaseMutationsCreateArgsDto = { entities: Array>; }; type SystemAiAiTokenLeaseMutationsUpdateArgsDto = { entities: Array>; }; type SystemAiAiTokenLeaseUpdateDto = { __typename?: 'SystemAiAiTokenLeaseUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemAiAiTokenLeaseUpdateMessageDto = { __typename?: 'SystemAiAiTokenLeaseUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiToolPolicy-1' */ type SystemAiAiToolPolicyDto = SystemConfigurationInterfaceDto & SystemEntityInterfaceDto & { __typename?: 'SystemAiAiToolPolicy'; approvalMode: SystemAiApprovalModeDto; approvalTimeoutMinutes?: Maybe; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; conflictMode: SystemAiConflictModeDto; constructionKitType?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; risk: SystemAiRiskLevelDto; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; toolName: Scalars['String']['output']; usedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiToolPolicy-1' */ type SystemAiAiToolPolicyAssociationsArgsDto = { 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.Ai-3.1.2/AiToolPolicy-1' */ type SystemAiAiToolPolicyConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiToolPolicy-1' */ type SystemAiAiToolPolicyMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiToolPolicy-1' */ type SystemAiAiToolPolicyMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiToolPolicy-1' */ type SystemAiAiToolPolicyRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiToolPolicy-1' */ type SystemAiAiToolPolicyRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiToolPolicy-1' */ type SystemAiAiToolPolicyTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiToolPolicy-1' */ type SystemAiAiToolPolicyUsedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemAiAiToolPolicy`. */ type SystemAiAiToolPolicyConnectionDto = { __typename?: 'SystemAiAiToolPolicyConnection'; /** 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 `SystemAiAiToolPolicy`. */ type SystemAiAiToolPolicyEdgeDto = { __typename?: 'SystemAiAiToolPolicyEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemAiAiToolPolicyInputDto = { approvalMode?: InputMaybe; approvalTimeoutMinutes?: InputMaybe; configuredBy?: InputMaybe>>; conflictMode?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; risk?: InputMaybe; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; toolName?: InputMaybe; usedBy?: InputMaybe>>; }; type SystemAiAiToolPolicyInputUpdateDto = { /** Item to update */ item: SystemAiAiToolPolicyInputDto; rtId?: InputMaybe; }; type SystemAiAiToolPolicyMutationsDto = { __typename?: 'SystemAiAiToolPolicyMutations'; /** Creates new entities of type 'SystemAiAiToolPolicy'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemAiAiToolPolicy'. */ update?: Maybe>>; }; type SystemAiAiToolPolicyMutationsCreateArgsDto = { entities: Array>; }; type SystemAiAiToolPolicyMutationsUpdateArgsDto = { entities: Array>; }; type SystemAiAiToolPolicyUpdateDto = { __typename?: 'SystemAiAiToolPolicyUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemAiAiToolPolicyUpdateMessageDto = { __typename?: 'SystemAiAiToolPolicyUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiUsageRecord-1' */ type SystemAiAiUsageRecordDto = SystemEntityInterfaceDto & { __typename?: 'SystemAiAiUsageRecord'; associations?: Maybe; at: Scalars['DateTime']['output']; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; costCents: Scalars['Decimal']['output']; inputTokens: Scalars['Int']['output']; mapsFrom?: Maybe; mapsTo?: Maybe; model: Scalars['String']['output']; outputTokens: Scalars['Int']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; sessionRef: Scalars['String']['output']; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiUsageRecord-1' */ type SystemAiAiUsageRecordAssociationsArgsDto = { 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.Ai-3.1.2/AiUsageRecord-1' */ type SystemAiAiUsageRecordConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiUsageRecord-1' */ type SystemAiAiUsageRecordMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiUsageRecord-1' */ type SystemAiAiUsageRecordMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiUsageRecord-1' */ type SystemAiAiUsageRecordRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiUsageRecord-1' */ type SystemAiAiUsageRecordRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.Ai-3.1.2/AiUsageRecord-1' */ type SystemAiAiUsageRecordTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemAiAiUsageRecord`. */ type SystemAiAiUsageRecordConnectionDto = { __typename?: 'SystemAiAiUsageRecordConnection'; /** 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 `SystemAiAiUsageRecord`. */ type SystemAiAiUsageRecordEdgeDto = { __typename?: 'SystemAiAiUsageRecordEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemAiAiUsageRecordInputDto = { at?: InputMaybe; configuredBy?: InputMaybe>>; costCents?: InputMaybe; inputTokens?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; model?: InputMaybe; outputTokens?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; sessionRef?: InputMaybe; taggedBy?: InputMaybe>>; }; type SystemAiAiUsageRecordInputUpdateDto = { /** Item to update */ item: SystemAiAiUsageRecordInputDto; rtId?: InputMaybe; }; type SystemAiAiUsageRecordMutationsDto = { __typename?: 'SystemAiAiUsageRecordMutations'; /** Creates new entities of type 'SystemAiAiUsageRecord'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemAiAiUsageRecord'. */ update?: Maybe>>; }; type SystemAiAiUsageRecordMutationsCreateArgsDto = { entities: Array>; }; type SystemAiAiUsageRecordMutationsUpdateArgsDto = { entities: Array>; }; type SystemAiAiUsageRecordUpdateDto = { __typename?: 'SystemAiAiUsageRecordUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemAiAiUsageRecordUpdateMessageDto = { __typename?: 'SystemAiAiUsageRecordUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit enum 'System.Ai/ApprovalMode' */ declare enum SystemAiApprovalModeDto { AutoDto = "AUTO", DisabledDto = "DISABLED", RequiredDto = "REQUIRED" } /** Runtime entities of construction kit enum 'System.Ai/ApprovalReason' */ declare enum SystemAiApprovalReasonDto { ConflictDto = "CONFLICT", ManualDto = "MANUAL", QuotaOverrideDto = "QUOTA_OVERRIDE", RiskDto = "RISK" } /** Runtime entities of construction kit enum 'System.Ai/ApprovalStatus' */ declare enum SystemAiApprovalStatusDto { ApprovedDto = "APPROVED", PendingDto = "PENDING", RejectedDto = "REJECTED", TimedOutDto = "TIMED_OUT" } /** Runtime entities of construction kit enum 'System.Ai/AuthMode' */ declare enum SystemAiAuthModeDto { ByoKeyDto = "BYO_KEY", CentralKeyDto = "CENTRAL_KEY", SubscriptionDto = "SUBSCRIPTION" } /** Runtime entities of construction kit enum 'System.Ai/ConflictMode' */ declare enum SystemAiConflictModeDto { AlwaysApproveDto = "ALWAYS_APPROVE", AutoRetryDto = "AUTO_RETRY", RetryThenApproveDto = "RETRY_THEN_APPROVE" } /** Runtime entities of construction kit enum 'System.Ai/CredentialKind' */ declare enum SystemAiCredentialKindDto { DevSshAuthorizedKeyDto = "DEV_SSH_AUTHORIZED_KEY", EnvSecretDto = "ENV_SECRET", GitHubPatDto = "GIT_HUB_PAT", SshKeyDto = "SSH_KEY" } /** Runtime entities of construction kit enum 'System.Ai/JobKind' */ declare enum SystemAiJobKindDto { AdminDto = "ADMIN", ApplicationDto = "APPLICATION", BlueprintAuthoringDto = "BLUEPRINT_AUTHORING", DataModelDto = "DATA_MODEL", FreeFormDto = "FREE_FORM", PipelineDto = "PIPELINE", RuntimeDataDto = "RUNTIME_DATA" } /** Runtime entities of construction kit enum 'System.Ai/JobStatus' */ declare enum SystemAiJobStatusDto { ActiveDto = "ACTIVE", CancelledDto = "CANCELLED", CompletedDto = "COMPLETED", FailedDto = "FAILED" } /** Runtime entities of construction kit enum 'System.Ai/KnowledgeKind' */ declare enum SystemAiKnowledgeKindDto { ClaudeMdDto = "CLAUDE_MD", McpResourceDto = "MCP_RESOURCE", RagDocDto = "RAG_DOC", UrlDto = "URL" } /** Runtime entities of construction kit enum 'System.Ai/LeaseStatus' */ declare enum SystemAiLeaseStatusDto { ActiveDto = "ACTIVE", ExpiredDto = "EXPIRED", RefreshFailedDto = "REFRESH_FAILED", RevokedDto = "REVOKED" } /** Runtime entities of construction kit enum 'System.Ai/ModelTier' */ declare enum SystemAiModelTierDto { HaikuDto = "HAIKU", OpusDto = "OPUS", SonnetDto = "SONNET" } /** Runtime entities of construction kit enum 'System.Ai/RiskLevel' */ declare enum SystemAiRiskLevelDto { HighDto = "HIGH", LowDto = "LOW", MediumDto = "MEDIUM" } /** Runtime entities of construction kit enum 'System.Ai/SessionEventKind' */ declare enum SystemAiSessionEventKindDto { ErrorDto = "ERROR", HookDto = "HOOK", MessageDto = "MESSAGE", StatusChangeDto = "STATUS_CHANGE", ToolCallDto = "TOOL_CALL", ToolResultDto = "TOOL_RESULT" } /** Runtime entities of construction kit enum 'System.Ai/SessionStatus' */ declare enum SystemAiSessionStatusDto { CancelledDto = "CANCELLED", CompletedDto = "COMPLETED", FailedDto = "FAILED", PausedDto = "PAUSED", QueuedDto = "QUEUED", QuotaBlockedDto = "QUOTA_BLOCKED", RateLimitedDto = "RATE_LIMITED", RunningDto = "RUNNING" } /** Runtime entities of construction kit enum 'System.Ai/SubscriptionScope' */ declare enum SystemAiSubscriptionScopeDto { MeshmakersPoolDto = "MESHMAKERS_POOL", PerUserDto = "PER_USER", ServiceAccountDto = "SERVICE_ACCOUNT" } /** Runtime entities of construction kit enum 'System.Ai/TicketScope' */ declare enum SystemAiTicketScopeDto { CredentialRegisterDto = "CREDENTIAL_REGISTER", DevSshKeyRegisterDto = "DEV_SSH_KEY_REGISTER" } /** Runtime entities of construction kit enum 'System.Ai/TicketStatus' */ declare enum SystemAiTicketStatusDto { ExpiredDto = "EXPIRED", OpenDto = "OPEN", RedeemedDto = "REDEEMED" } /** Runtime entities of construction kit enum 'System.Ai/WorkspaceMode' */ declare enum SystemAiWorkspaceModeDto { PersistentHibernatingDto = "PERSISTENT_HIBERNATING", PerSessionDto = "PER_SESSION", PoolDto = "POOL" } /** 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.2.0/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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System-2.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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-2.2.0/BlueprintBackup-1' */ type SystemBlueprintBackupDto = SystemEntityInterfaceDto & { __typename?: 'SystemBlueprintBackup'; associations?: Maybe; blueprintName: Scalars['String']['output']; blueprintVersion: Scalars['String']['output']; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; createdAt: Scalars['DateTime']['output']; mapsFrom?: Maybe; mapsTo?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; snapshotJson: Scalars['String']['output']; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System-2.2.0/BlueprintBackup-1' */ type SystemBlueprintBackupAssociationsArgsDto = { 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.2.0/BlueprintBackup-1' */ type SystemBlueprintBackupConfiguredByArgsDto = { after?: 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.2.0/BlueprintBackup-1' */ type SystemBlueprintBackupMapsFromArgsDto = { after?: 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.2.0/BlueprintBackup-1' */ type SystemBlueprintBackupMapsToArgsDto = { after?: 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.2.0/BlueprintBackup-1' */ type SystemBlueprintBackupRelatesFromArgsDto = { after?: 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.2.0/BlueprintBackup-1' */ type SystemBlueprintBackupRelatesToArgsDto = { after?: 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.2.0/BlueprintBackup-1' */ type SystemBlueprintBackupTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemBlueprintBackup`. */ type SystemBlueprintBackupConnectionDto = { __typename?: 'SystemBlueprintBackupConnection'; /** 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 `SystemBlueprintBackup`. */ type SystemBlueprintBackupEdgeDto = { __typename?: 'SystemBlueprintBackupEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemBlueprintBackupInputDto = { blueprintName?: InputMaybe; blueprintVersion?: InputMaybe; configuredBy?: InputMaybe>>; createdAt?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; snapshotJson?: InputMaybe; taggedBy?: InputMaybe>>; }; type SystemBlueprintBackupInputUpdateDto = { /** Item to update */ item: SystemBlueprintBackupInputDto; rtId?: InputMaybe; }; type SystemBlueprintBackupMutationsDto = { __typename?: 'SystemBlueprintBackupMutations'; /** Creates new entities of type 'SystemBlueprintBackup'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemBlueprintBackup'. */ update?: Maybe>>; }; type SystemBlueprintBackupMutationsCreateArgsDto = { entities: Array>; }; type SystemBlueprintBackupMutationsUpdateArgsDto = { entities: Array>; }; type SystemBlueprintBackupUpdateDto = { __typename?: 'SystemBlueprintBackupUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemBlueprintBackupUpdateMessageDto = { __typename?: 'SystemBlueprintBackupUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'System-2.2.0/BlueprintHistory-1' */ type SystemBlueprintHistoryDto = SystemEntityInterfaceDto & { __typename?: 'SystemBlueprintHistory'; applicationMode: Scalars['String']['output']; appliedAt: Scalars['DateTime']['output']; associations?: Maybe; blueprintName: Scalars['String']['output']; blueprintVersion: Scalars['String']['output']; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; entitiesCreated: Scalars['Int']['output']; entitiesDeleted: Scalars['Int']['output']; entitiesUpdated: Scalars['Int']['output']; mapsFrom?: Maybe; mapsTo?: Maybe; previousBlueprintName?: Maybe; previousVersion?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; seedDataChecksum?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System-2.2.0/BlueprintHistory-1' */ type SystemBlueprintHistoryAssociationsArgsDto = { 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.2.0/BlueprintHistory-1' */ type SystemBlueprintHistoryConfiguredByArgsDto = { after?: 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.2.0/BlueprintHistory-1' */ type SystemBlueprintHistoryMapsFromArgsDto = { after?: 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.2.0/BlueprintHistory-1' */ type SystemBlueprintHistoryMapsToArgsDto = { after?: 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.2.0/BlueprintHistory-1' */ type SystemBlueprintHistoryRelatesFromArgsDto = { after?: 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.2.0/BlueprintHistory-1' */ type SystemBlueprintHistoryRelatesToArgsDto = { after?: 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.2.0/BlueprintHistory-1' */ type SystemBlueprintHistoryTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemBlueprintHistory`. */ type SystemBlueprintHistoryConnectionDto = { __typename?: 'SystemBlueprintHistoryConnection'; /** 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 `SystemBlueprintHistory`. */ type SystemBlueprintHistoryEdgeDto = { __typename?: 'SystemBlueprintHistoryEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemBlueprintHistoryInputDto = { applicationMode?: InputMaybe; appliedAt?: InputMaybe; blueprintName?: InputMaybe; blueprintVersion?: InputMaybe; configuredBy?: InputMaybe>>; entitiesCreated?: InputMaybe; entitiesDeleted?: InputMaybe; entitiesUpdated?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; previousBlueprintName?: InputMaybe; previousVersion?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; seedDataChecksum?: InputMaybe; taggedBy?: InputMaybe>>; }; type SystemBlueprintHistoryInputUpdateDto = { /** Item to update */ item: SystemBlueprintHistoryInputDto; rtId?: InputMaybe; }; type SystemBlueprintHistoryMutationsDto = { __typename?: 'SystemBlueprintHistoryMutations'; /** Creates new entities of type 'SystemBlueprintHistory'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemBlueprintHistory'. */ update?: Maybe>>; }; type SystemBlueprintHistoryMutationsCreateArgsDto = { entities: Array>; }; type SystemBlueprintHistoryMutationsUpdateArgsDto = { entities: Array>; }; type SystemBlueprintHistoryUpdateDto = { __typename?: 'SystemBlueprintHistoryUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemBlueprintHistoryUpdateMessageDto = { __typename?: 'SystemBlueprintHistoryUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'System-2.2.0/BlueprintInstallation-1' */ type SystemBlueprintInstallationDto = SystemEntityInterfaceDto & { __typename?: 'SystemBlueprintInstallation'; associations?: Maybe; blueprintName: Scalars['String']['output']; blueprintVersion: Scalars['String']['output']; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; installedAt: Scalars['DateTime']['output']; isDependency: Scalars['Boolean']['output']; lastUpdatedAt: Scalars['DateTime']['output']; mapsFrom?: Maybe; mapsTo?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; resolvedDependencies?: Maybe>; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; seedDataChecksum?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System-2.2.0/BlueprintInstallation-1' */ type SystemBlueprintInstallationAssociationsArgsDto = { 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.2.0/BlueprintInstallation-1' */ type SystemBlueprintInstallationConfiguredByArgsDto = { after?: 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.2.0/BlueprintInstallation-1' */ type SystemBlueprintInstallationMapsFromArgsDto = { after?: 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.2.0/BlueprintInstallation-1' */ type SystemBlueprintInstallationMapsToArgsDto = { after?: 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.2.0/BlueprintInstallation-1' */ type SystemBlueprintInstallationRelatesFromArgsDto = { after?: 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.2.0/BlueprintInstallation-1' */ type SystemBlueprintInstallationRelatesToArgsDto = { after?: 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.2.0/BlueprintInstallation-1' */ type SystemBlueprintInstallationTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemBlueprintInstallation`. */ type SystemBlueprintInstallationConnectionDto = { __typename?: 'SystemBlueprintInstallationConnection'; /** 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 `SystemBlueprintInstallation`. */ type SystemBlueprintInstallationEdgeDto = { __typename?: 'SystemBlueprintInstallationEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemBlueprintInstallationInputDto = { blueprintName?: InputMaybe; blueprintVersion?: InputMaybe; configuredBy?: InputMaybe>>; installedAt?: InputMaybe; isDependency?: InputMaybe; lastUpdatedAt?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; resolvedDependencies?: InputMaybe>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; seedDataChecksum?: InputMaybe; taggedBy?: InputMaybe>>; }; type SystemBlueprintInstallationInputUpdateDto = { /** Item to update */ item: SystemBlueprintInstallationInputDto; rtId?: InputMaybe; }; type SystemBlueprintInstallationMutationsDto = { __typename?: 'SystemBlueprintInstallationMutations'; /** Creates new entities of type 'SystemBlueprintInstallation'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemBlueprintInstallation'. */ update?: Maybe>>; }; type SystemBlueprintInstallationMutationsCreateArgsDto = { entities: Array>; }; type SystemBlueprintInstallationMutationsUpdateArgsDto = { entities: Array>; }; type SystemBlueprintInstallationUpdateDto = { __typename?: 'SystemBlueprintInstallationUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemBlueprintInstallationUpdateMessageDto = { __typename?: 'SystemBlueprintInstallationUpdateMessage'; /** 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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; 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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; 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.23.0/Adapter-1' */ type SystemCommunicationAdapterDto = SystemCommunicationDeployableEntityInterfaceDto & SystemCommunicationDeployableWorkloadInterfaceDto & SystemEntityInterfaceDto & { __typename?: 'SystemCommunicationAdapter'; associations?: Maybe; chartName?: Maybe; chartVersion?: 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; helmRepository?: Maybe; hostname?: Maybe; ingressEnabled: Scalars['Boolean']['output']; lastConfigurationError?: Maybe; lastConfigurationErrorTimestamp?: Maybe; lastDeploymentError?: Maybe; lastDeploymentErrorTimestamp?: Maybe; lastSyncedSequenceNumber: Scalars['Int']['output']; managedBy?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; name?: Maybe; receivesClusterSecrets: Scalars['Boolean']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; statusMessage?: Maybe; taggedBy?: Maybe; values?: Maybe>; valuesYaml?: Maybe; }; /** Runtime entities of construction kit type 'System.Communication-3.23.0/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.23.0/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.23.0/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.23.0/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.23.0/Adapter-1' */ type SystemCommunicationAdapterHelmRepositoryArgsDto = { after?: 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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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 = { chartName?: InputMaybe; chartVersion?: InputMaybe; communicationState?: InputMaybe; communicationStateTimestamp?: InputMaybe; configuration?: InputMaybe; configurationState?: InputMaybe; configuredBy?: InputMaybe>>; deploymentState?: InputMaybe; description?: InputMaybe; executes?: InputMaybe>>; executingAdapter?: InputMaybe>>; helmRepository?: InputMaybe>>; hostname?: InputMaybe; ingressEnabled?: InputMaybe; lastConfigurationError?: InputMaybe; lastConfigurationErrorTimestamp?: InputMaybe; lastDeploymentError?: InputMaybe; lastDeploymentErrorTimestamp?: InputMaybe; lastSyncedSequenceNumber?: InputMaybe; managedBy?: InputMaybe>>; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; receivesClusterSecrets?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; statusMessage?: InputMaybe; taggedBy?: InputMaybe>>; values?: InputMaybe>>; valuesYaml?: 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; }; /** Runtime entities of construction kit type 'System.Communication-3.23.0/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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; temperature?: Maybe; usedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Communication-3.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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 type 'System.Communication-3.23.0/Application-1' */ type SystemCommunicationApplicationDto = SystemCommunicationDeployableEntityInterfaceDto & SystemCommunicationDeployableWorkloadInterfaceDto & SystemEntityInterfaceDto & { __typename?: 'SystemCommunicationApplication'; associations?: Maybe; chartName?: Maybe; chartVersion?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; deploymentState: SystemCommunicationDeploymentStateDto; description?: Maybe; helmRepository?: Maybe; hostname?: Maybe; ingressEnabled: Scalars['Boolean']['output']; lastDeploymentError?: Maybe; lastDeploymentErrorTimestamp?: Maybe; managedBy?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; name?: Maybe; receivesClusterSecrets: Scalars['Boolean']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; statusMessage?: Maybe; taggedBy?: Maybe; values?: Maybe>; valuesYaml?: Maybe; }; /** Runtime entities of construction kit type 'System.Communication-3.23.0/Application-1' */ type SystemCommunicationApplicationAssociationsArgsDto = { 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.23.0/Application-1' */ type SystemCommunicationApplicationConfiguredByArgsDto = { after?: 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.23.0/Application-1' */ type SystemCommunicationApplicationHelmRepositoryArgsDto = { after?: 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.23.0/Application-1' */ type SystemCommunicationApplicationManagedByArgsDto = { after?: 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.23.0/Application-1' */ type SystemCommunicationApplicationMapsFromArgsDto = { after?: 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.23.0/Application-1' */ type SystemCommunicationApplicationMapsToArgsDto = { after?: 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.23.0/Application-1' */ type SystemCommunicationApplicationRelatesFromArgsDto = { after?: 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.23.0/Application-1' */ type SystemCommunicationApplicationRelatesToArgsDto = { after?: 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.23.0/Application-1' */ type SystemCommunicationApplicationTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemCommunicationApplication`. */ type SystemCommunicationApplicationConnectionDto = { __typename?: 'SystemCommunicationApplicationConnection'; /** 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 `SystemCommunicationApplication`. */ type SystemCommunicationApplicationEdgeDto = { __typename?: 'SystemCommunicationApplicationEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemCommunicationApplicationInputDto = { chartName?: InputMaybe; chartVersion?: InputMaybe; configuredBy?: InputMaybe>>; deploymentState?: InputMaybe; description?: InputMaybe; helmRepository?: InputMaybe>>; hostname?: InputMaybe; ingressEnabled?: InputMaybe; lastDeploymentError?: InputMaybe; lastDeploymentErrorTimestamp?: InputMaybe; managedBy?: InputMaybe>>; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; receivesClusterSecrets?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; statusMessage?: InputMaybe; taggedBy?: InputMaybe>>; values?: InputMaybe>>; valuesYaml?: InputMaybe; }; type SystemCommunicationApplicationInputUpdateDto = { /** Item to update */ item: SystemCommunicationApplicationInputDto; rtId?: InputMaybe; }; type SystemCommunicationApplicationMutationsDto = { __typename?: 'SystemCommunicationApplicationMutations'; /** Creates new entities of type 'SystemCommunicationApplication'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemCommunicationApplication'. */ update?: Maybe>>; }; type SystemCommunicationApplicationMutationsCreateArgsDto = { entities: Array>; }; type SystemCommunicationApplicationMutationsUpdateArgsDto = { entities: Array>; }; type SystemCommunicationApplicationUpdateDto = { __typename?: 'SystemCommunicationApplicationUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemCommunicationApplicationUpdateMessageDto = { __typename?: 'SystemCommunicationApplicationUpdateMessage'; /** 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.23.0/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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Communication-3.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; sourceAttributePath?: Maybe; taggedBy?: Maybe; targetAttributePath?: Maybe; }; /** Runtime entities of construction kit type 'System.Communication-3.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/DeployableEntity-1' */ type SystemCommunicationDeployableEntityDto = SystemEntityInterfaceDto & { __typename?: 'SystemCommunicationDeployableEntity'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; deploymentState: SystemCommunicationDeploymentStateDto; description?: Maybe; lastDeploymentError?: Maybe; lastDeploymentErrorTimestamp?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; name?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; statusMessage?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Communication-3.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/DeployableEntity-1' */ type SystemCommunicationDeployableEntityInterfaceDto = { ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; deploymentState: SystemCommunicationDeploymentStateDto; description?: Maybe; lastDeploymentError?: Maybe; lastDeploymentErrorTimestamp?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; name?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; statusMessage?: Maybe; taggedBy?: Maybe; }; /** Interface for runtime entities of construction kit type 'System.Communication-3.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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 type 'System.Communication-3.23.0/DeployableWorkload-1' */ type SystemCommunicationDeployableWorkloadDto = SystemCommunicationDeployableEntityInterfaceDto & SystemEntityInterfaceDto & { __typename?: 'SystemCommunicationDeployableWorkload'; associations?: Maybe; chartName?: Maybe; chartVersion?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; deploymentState: SystemCommunicationDeploymentStateDto; description?: Maybe; helmRepository?: Maybe; hostname?: Maybe; ingressEnabled: Scalars['Boolean']['output']; lastDeploymentError?: Maybe; lastDeploymentErrorTimestamp?: Maybe; managedBy?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; name?: Maybe; receivesClusterSecrets: Scalars['Boolean']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; statusMessage?: Maybe; taggedBy?: Maybe; values?: Maybe>; valuesYaml?: Maybe; }; /** Runtime entities of construction kit type 'System.Communication-3.23.0/DeployableWorkload-1' */ type SystemCommunicationDeployableWorkloadAssociationsArgsDto = { 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.23.0/DeployableWorkload-1' */ type SystemCommunicationDeployableWorkloadConfiguredByArgsDto = { after?: 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.23.0/DeployableWorkload-1' */ type SystemCommunicationDeployableWorkloadHelmRepositoryArgsDto = { after?: 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.23.0/DeployableWorkload-1' */ type SystemCommunicationDeployableWorkloadManagedByArgsDto = { after?: 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.23.0/DeployableWorkload-1' */ type SystemCommunicationDeployableWorkloadMapsFromArgsDto = { after?: 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.23.0/DeployableWorkload-1' */ type SystemCommunicationDeployableWorkloadMapsToArgsDto = { after?: 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.23.0/DeployableWorkload-1' */ type SystemCommunicationDeployableWorkloadRelatesFromArgsDto = { after?: 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.23.0/DeployableWorkload-1' */ type SystemCommunicationDeployableWorkloadRelatesToArgsDto = { after?: 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.23.0/DeployableWorkload-1' */ type SystemCommunicationDeployableWorkloadTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemCommunicationDeployableWorkload`. */ type SystemCommunicationDeployableWorkloadConnectionDto = { __typename?: 'SystemCommunicationDeployableWorkloadConnection'; /** 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 `SystemCommunicationDeployableWorkload`. */ type SystemCommunicationDeployableWorkloadEdgeDto = { __typename?: 'SystemCommunicationDeployableWorkloadEdge'; /** 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.23.0/DeployableWorkload-1' */ type SystemCommunicationDeployableWorkloadInterfaceDto = { chartName?: Maybe; chartVersion?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; deploymentState: SystemCommunicationDeploymentStateDto; description?: Maybe; helmRepository?: Maybe; hostname?: Maybe; ingressEnabled: Scalars['Boolean']['output']; lastDeploymentError?: Maybe; lastDeploymentErrorTimestamp?: Maybe; managedBy?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; name?: Maybe; receivesClusterSecrets: Scalars['Boolean']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; statusMessage?: Maybe; taggedBy?: Maybe; values?: Maybe>; valuesYaml?: Maybe; }; /** Interface for runtime entities of construction kit type 'System.Communication-3.23.0/DeployableWorkload-1' */ type SystemCommunicationDeployableWorkloadInterfaceConfiguredByArgsDto = { 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.23.0/DeployableWorkload-1' */ type SystemCommunicationDeployableWorkloadInterfaceHelmRepositoryArgsDto = { 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.23.0/DeployableWorkload-1' */ type SystemCommunicationDeployableWorkloadInterfaceManagedByArgsDto = { 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.23.0/DeployableWorkload-1' */ type SystemCommunicationDeployableWorkloadInterfaceMapsFromArgsDto = { 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.23.0/DeployableWorkload-1' */ type SystemCommunicationDeployableWorkloadInterfaceMapsToArgsDto = { 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.23.0/DeployableWorkload-1' */ type SystemCommunicationDeployableWorkloadInterfaceRelatesFromArgsDto = { 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.23.0/DeployableWorkload-1' */ type SystemCommunicationDeployableWorkloadInterfaceRelatesToArgsDto = { 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.23.0/DeployableWorkload-1' */ type SystemCommunicationDeployableWorkloadInterfaceTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type SystemCommunicationDeployableWorkloadUpdateDto = { __typename?: 'SystemCommunicationDeployableWorkloadUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemCommunicationDeployableWorkloadUpdateMessageDto = { __typename?: 'SystemCommunicationDeployableWorkloadUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Union of types derived from System.Communication/DeployableWorkload for HelmRepositoryUsedBy association */ type SystemCommunicationDeployableWorkload_HelmRepositoryUsedByUnionDto = SystemCommunicationAdapterDto | SystemCommunicationApplicationDto; /** A connection to `SystemCommunicationDeployableWorkload_HelmRepositoryUsedByUnion`. */ type SystemCommunicationDeployableWorkload_HelmRepositoryUsedByUnionConnectionDto = { __typename?: 'SystemCommunicationDeployableWorkload_HelmRepositoryUsedByUnionConnection'; /** 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 `SystemCommunicationDeployableWorkload_HelmRepositoryUsedByUnion`. */ type SystemCommunicationDeployableWorkload_HelmRepositoryUsedByUnionEdgeDto = { __typename?: 'SystemCommunicationDeployableWorkload_HelmRepositoryUsedByUnionEdge'; /** 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/DeployableWorkload for Manages association */ type SystemCommunicationDeployableWorkload_ManagesUnionDto = SystemCommunicationAdapterDto | SystemCommunicationApplicationDto; /** A connection to `SystemCommunicationDeployableWorkload_ManagesUnion`. */ type SystemCommunicationDeployableWorkload_ManagesUnionConnectionDto = { __typename?: 'SystemCommunicationDeployableWorkload_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 `SystemCommunicationDeployableWorkload_ManagesUnion`. */ type SystemCommunicationDeployableWorkload_ManagesUnionEdgeDto = { __typename?: 'SystemCommunicationDeployableWorkload_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 enum 'System.Communication/DeploymentState' */ declare enum SystemCommunicationDeploymentStateDto { DeployedDto = "DEPLOYED", DisabledDto = "DISABLED", ErrorDto = "ERROR", PendingDto = "PENDING", UndeployedDto = "UNDEPLOYED" } /** Runtime entities of construction kit type 'System.Communication-3.23.0/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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; usedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Communication-3.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; 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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; 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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; usedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Communication-3.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; 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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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 enum 'System.Communication/Environment' */ declare enum SystemCommunicationEnvironmentDto { CloudDto = "CLOUD", EdgeDto = "EDGE" } /** Runtime entities of construction kit type 'System.Communication-3.23.0/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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; 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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; usedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Communication-3.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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 enum 'System.Communication/HelmChannel' */ declare enum SystemCommunicationHelmChannelDto { DevDto = "DEV", ReleaseDto = "RELEASE" } /** Runtime entities of construction kit type 'System.Communication-3.23.0/HelmRepositoryConfiguration-1' */ type SystemCommunicationHelmRepositoryConfigurationDto = SystemConfigurationInterfaceDto & SystemEntityInterfaceDto & { __typename?: 'SystemCommunicationHelmRepositoryConfiguration'; associations?: Maybe; channel: SystemCommunicationHelmChannelDto; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; helmRepositoryUsedBy?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; password?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; repositoryUrl: Scalars['String']['output']; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; usedBy?: Maybe; username?: Maybe; }; /** Runtime entities of construction kit type 'System.Communication-3.23.0/HelmRepositoryConfiguration-1' */ type SystemCommunicationHelmRepositoryConfigurationAssociationsArgsDto = { 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.23.0/HelmRepositoryConfiguration-1' */ type SystemCommunicationHelmRepositoryConfigurationConfiguredByArgsDto = { after?: 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.23.0/HelmRepositoryConfiguration-1' */ type SystemCommunicationHelmRepositoryConfigurationHelmRepositoryUsedByArgsDto = { after?: 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.23.0/HelmRepositoryConfiguration-1' */ type SystemCommunicationHelmRepositoryConfigurationMapsFromArgsDto = { after?: 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.23.0/HelmRepositoryConfiguration-1' */ type SystemCommunicationHelmRepositoryConfigurationMapsToArgsDto = { after?: 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.23.0/HelmRepositoryConfiguration-1' */ type SystemCommunicationHelmRepositoryConfigurationRelatesFromArgsDto = { after?: 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.23.0/HelmRepositoryConfiguration-1' */ type SystemCommunicationHelmRepositoryConfigurationRelatesToArgsDto = { after?: 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.23.0/HelmRepositoryConfiguration-1' */ type SystemCommunicationHelmRepositoryConfigurationTaggedByArgsDto = { after?: 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.23.0/HelmRepositoryConfiguration-1' */ type SystemCommunicationHelmRepositoryConfigurationUsedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemCommunicationHelmRepositoryConfiguration`. */ type SystemCommunicationHelmRepositoryConfigurationConnectionDto = { __typename?: 'SystemCommunicationHelmRepositoryConfigurationConnection'; /** 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 `SystemCommunicationHelmRepositoryConfiguration`. */ type SystemCommunicationHelmRepositoryConfigurationEdgeDto = { __typename?: 'SystemCommunicationHelmRepositoryConfigurationEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemCommunicationHelmRepositoryConfigurationInputDto = { channel?: InputMaybe; configuredBy?: InputMaybe>>; helmRepositoryUsedBy?: InputMaybe>>; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; password?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; repositoryUrl?: InputMaybe; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; usedBy?: InputMaybe>>; username?: InputMaybe; }; type SystemCommunicationHelmRepositoryConfigurationInputUpdateDto = { /** Item to update */ item: SystemCommunicationHelmRepositoryConfigurationInputDto; rtId?: InputMaybe; }; type SystemCommunicationHelmRepositoryConfigurationMutationsDto = { __typename?: 'SystemCommunicationHelmRepositoryConfigurationMutations'; /** Creates new entities of type 'SystemCommunicationHelmRepositoryConfiguration'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemCommunicationHelmRepositoryConfiguration'. */ update?: Maybe>>; }; type SystemCommunicationHelmRepositoryConfigurationMutationsCreateArgsDto = { entities: Array>; }; type SystemCommunicationHelmRepositoryConfigurationMutationsUpdateArgsDto = { entities: Array>; }; type SystemCommunicationHelmRepositoryConfigurationUpdateDto = { __typename?: 'SystemCommunicationHelmRepositoryConfigurationUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemCommunicationHelmRepositoryConfigurationUpdateMessageDto = { __typename?: 'SystemCommunicationHelmRepositoryConfigurationUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Union of types derived from System.Communication/HelmRepositoryConfiguration for HelmRepository association */ type SystemCommunicationHelmRepositoryConfiguration_HelmRepositoryUnionDto = SystemCommunicationHelmRepositoryConfigurationDto; /** A connection to `SystemCommunicationHelmRepositoryConfiguration_HelmRepositoryUnion`. */ type SystemCommunicationHelmRepositoryConfiguration_HelmRepositoryUnionConnectionDto = { __typename?: 'SystemCommunicationHelmRepositoryConfiguration_HelmRepositoryUnionConnection'; /** 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 `SystemCommunicationHelmRepositoryConfiguration_HelmRepositoryUnion`. */ type SystemCommunicationHelmRepositoryConfiguration_HelmRepositoryUnionEdgeDto = { __typename?: 'SystemCommunicationHelmRepositoryConfiguration_HelmRepositoryUnionEdge'; /** 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.23.0/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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; 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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; usedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Communication-3.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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; lastDeploymentError?: Maybe; lastDeploymentErrorTimestamp?: 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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; 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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; 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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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>>; lastDeploymentError?: InputMaybe; lastDeploymentErrorTimestamp?: 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.23.0/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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Communication-3.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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']; lastDeploymentError?: Maybe; lastDeploymentErrorTimestamp?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; name?: Maybe; parent?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; statusMessage?: Maybe; taggedBy?: Maybe; triggeredBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Communication-3.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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; lastDeploymentError?: InputMaybe; lastDeploymentErrorTimestamp?: 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.23.0/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; environment: SystemCommunicationEnvironmentDto; lastConfigurationError?: Maybe; lastConfigurationErrorTimestamp?: Maybe; lastDeploymentError?: Maybe; lastDeploymentErrorTimestamp?: Maybe; manages?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; name?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; statusMessage?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Communication-3.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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; environment?: InputMaybe; lastConfigurationError?: InputMaybe; lastConfigurationErrorTimestamp?: InputMaybe; lastDeploymentError?: InputMaybe; lastDeploymentErrorTimestamp?: 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.23.0/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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; 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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; 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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; 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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; tag: Scalars['String']['output']; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Communication-3.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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.23.0/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 record 'System.Communication/ValueOverride' */ type SystemCommunicationValueOverrideDto = { __typename?: 'SystemCommunicationValueOverride'; constructionKitType?: Maybe; isSecret: Scalars['Boolean']['output']; path: Scalars['String']['output']; value: Scalars['String']['output']; }; type SystemCommunicationValueOverrideInputDto = { isSecret?: InputMaybe; path?: InputMaybe; value?: InputMaybe; }; /** Runtime entities of construction kit type 'System-2.2.0/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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; usedBy?: Maybe; }; /** Runtime entities of construction kit type 'System-2.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; usedBy?: Maybe; }; /** Interface for runtime entities of construction kit type 'System-2.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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 = SystemAiAiAgentConfigDto | SystemAiAiCredentialBindingDto | SystemAiAiKnowledgeSourceDto | SystemAiAiPromptTemplateDto | SystemAiAiQuotaLimitDto | SystemAiAiToolPolicyDto | SystemCommunicationAiConfigurationDto | SystemCommunicationDiscordConfigurationDto | SystemCommunicationEMailReceiverConfigurationDto | SystemCommunicationEMailSenderConfigurationDto | SystemCommunicationEdaConfigurationDto | SystemCommunicationEnergyCommunityConfigurationDto | SystemCommunicationFinApiConfigurationDto | SystemCommunicationGrafanaConfigurationDto | SystemCommunicationHelmRepositoryConfigurationDto | SystemCommunicationLoxoneConfigurationDto | SystemCommunicationMicrosoftGraphConfigurationDto | SystemCommunicationSapConfigurationDto | SystemCommunicationServiceAccountConfigurationDto | SystemCommunicationSftpConfigurationDto | SystemNotificationCssTemplateConfigurationDto | SystemNotificationMailNotificationConfigurationDto | 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.2.0/DownsamplingSdQuery-1' */ type SystemDownsamplingSdQueryDto = SystemEntityInterfaceDto & SystemPersistentQueryInterfaceDto & SystemStreamDataQueryInterfaceDto & { __typename?: 'SystemDownsamplingSdQuery'; archiveRtId?: Maybe; 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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtIds?: Maybe>; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; to?: Maybe; }; /** Runtime entities of construction kit type 'System-2.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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 = { archiveRtId?: InputMaybe; 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.2.0/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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System-2.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Interface for runtime entities of construction kit type 'System-2.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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 | BasicEnergyConsumerDto | BasicEnergyEdaMessageDto | BasicEnergyEdaMeteringPointDto | BasicEnergyEdaProcessDto | BasicEnergyEnergyMeasurementDto | BasicEnergyOperatingFacilityDto | BasicEnergyProducerDto | BasicStateDto | BasicTreeDto | BasicTreeNodeDto | EnergyCommunityBillingDocumentDto | EnergyCommunityBillingDocumentLineItemDto | EnergyCommunityConsumerDto | EnergyCommunityCustomerDto | EnergyCommunityEdaMessageDto | EnergyCommunityEdaMeteringPointDto | EnergyCommunityEdaProcessDto | EnergyCommunityEnergyPriceDto | EnergyCommunityEnergyQuantityDto | EnergyCommunityOperatingFacilityDto | EnergyCommunityParticipationPeriodDto | EnergyCommunityProducerDto | EnvironmentCarbonBudgetDto | EnvironmentCarbonEmissionDto | EnvironmentCertificateOfOriginDto | EnvironmentComplianceRecordDto | EnvironmentEnvironmentalGoalDto | EnvironmentWasteMeterDto | 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 | IndustryManufacturingPartialFeedbackDto | IndustryManufacturingProductionOrderDto | IndustryManufacturingProductionOrderItemDto | IndustryManufacturingShiftDto | IndustryManufacturingShiftMachineDto | IndustryManufacturingShiftOrderItemDto | IndustryManufacturingShiftTemplateDto | OctoSdkDemoCustomerDto | OctoSdkDemoMeteringPointDto | OctoSdkDemoOperatingFacilityDto | SystemAggregationRtQueryDto | SystemAggregationSdQueryDto | SystemAiAiAgentConfigDto | SystemAiAiAgentJobDto | SystemAiAiAgentSessionDto | SystemAiAiApprovalRequestDto | SystemAiAiAuditEventDto | SystemAiAiCredentialBindingDto | SystemAiAiCredentialTicketDto | SystemAiAiKnowledgeSourceDto | SystemAiAiPromptTemplateDto | SystemAiAiQuotaLimitDto | SystemAiAiSessionEventDto | SystemAiAiTokenLeaseDto | SystemAiAiToolPolicyDto | SystemAiAiUsageRecordDto | SystemAutoIncrementDto | SystemBlueprintBackupDto | SystemBlueprintHistoryDto | SystemBlueprintInstallationDto | SystemBotAttributeAggregateConfigurationDto | SystemBotFixupDto | SystemCommunicationAdapterDto | SystemCommunicationAiConfigurationDto | SystemCommunicationApplicationDto | SystemCommunicationDataFlowDto | SystemCommunicationDataPointMappingDto | SystemCommunicationDiscordConfigurationDto | SystemCommunicationEMailReceiverConfigurationDto | SystemCommunicationEMailSenderConfigurationDto | SystemCommunicationEdaConfigurationDto | SystemCommunicationEnergyCommunityConfigurationDto | SystemCommunicationFinApiConfigurationDto | SystemCommunicationGrafanaConfigurationDto | SystemCommunicationHelmRepositoryConfigurationDto | SystemCommunicationLoxoneConfigurationDto | SystemCommunicationMicrosoftGraphConfigurationDto | SystemCommunicationPipelineDto | SystemCommunicationPipelineExecutionDto | SystemCommunicationPipelineStatisticsDto | SystemCommunicationPipelineTriggerDto | SystemCommunicationPoolDto | SystemCommunicationSapConfigurationDto | SystemCommunicationServiceAccountConfigurationDto | SystemCommunicationSftpConfigurationDto | SystemCommunicationTagDto | SystemDownsamplingSdQueryDto | SystemGroupingAggregationRtQueryDto | SystemGroupingAggregationSdQueryDto | SystemIdentityApiResourceDto | SystemIdentityApiScopeDto | SystemIdentityAzureEntraIdIdentityProviderDto | SystemIdentityClientDto | SystemIdentityClientMirrorDto | SystemIdentityDataProtectionKeyDto | SystemIdentityEmailDomainGroupRuleDto | SystemIdentityExternalTenantUserMappingDto | SystemIdentityFacebookIdentityProviderDto | SystemIdentityGoogleIdentityProviderDto | SystemIdentityGroupDto | SystemIdentityIdentityResourceDto | SystemIdentityMicrosoftAdIdentityProviderDto | SystemIdentityMicrosoftIdentityProviderDto | SystemIdentityOctoTenantIdentityProviderDto | SystemIdentityOpenLdapIdentityProviderDto | SystemIdentityPermissionDto | SystemIdentityPermissionRoleDto | SystemIdentityPersistedGrantDto | SystemIdentityRoleDto | SystemIdentityServerSideSessionDto | SystemIdentityUserDto | SystemMigrationHistoryDto | SystemNotificationCssTemplateConfigurationDto | SystemNotificationEventDto | SystemNotificationMailNotificationConfigurationDto | SystemNotificationNotificationTemplateDto | SystemNotificationStatefulEventDto | SystemReportingConnectionInfoDto | SystemReportingFileSystemItemDto | SystemReportingFolderDto | SystemReportingFolderRootDto | SystemSimpleRtQueryDto | SystemSimpleSdQueryDto | SystemStreamDataRawArchiveDto | SystemStreamDataRecomputeJobDto | SystemStreamDataRollupArchiveDto | SystemStreamDataTimeRangeArchiveDto | SystemTenantDto | SystemTenantConfigurationDto | SystemTenantModeConfigurationDto | SystemUiBrandingDto | SystemUiDashboardDto | SystemUiDashboardWidgetDto | SystemUiProcessDiagramDto | SystemUiSymbolDefinitionDto | SystemUiSymbolLibraryDto | SystemUiTreeNavigationConfigurationDto; /** 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 | BasicEnergyConsumerDto | BasicEnergyEdaMessageDto | BasicEnergyEdaMeteringPointDto | BasicEnergyEdaProcessDto | BasicEnergyEnergyMeasurementDto | BasicEnergyOperatingFacilityDto | BasicEnergyProducerDto | BasicStateDto | BasicTreeDto | BasicTreeNodeDto | EnergyCommunityBillingDocumentDto | EnergyCommunityBillingDocumentLineItemDto | EnergyCommunityConsumerDto | EnergyCommunityCustomerDto | EnergyCommunityEdaMessageDto | EnergyCommunityEdaMeteringPointDto | EnergyCommunityEdaProcessDto | EnergyCommunityEnergyPriceDto | EnergyCommunityEnergyQuantityDto | EnergyCommunityOperatingFacilityDto | EnergyCommunityParticipationPeriodDto | EnergyCommunityProducerDto | EnvironmentCarbonBudgetDto | EnvironmentCarbonEmissionDto | EnvironmentCertificateOfOriginDto | EnvironmentComplianceRecordDto | EnvironmentEnvironmentalGoalDto | EnvironmentWasteMeterDto | 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 | IndustryManufacturingPartialFeedbackDto | IndustryManufacturingProductionOrderDto | IndustryManufacturingProductionOrderItemDto | IndustryManufacturingShiftDto | IndustryManufacturingShiftMachineDto | IndustryManufacturingShiftOrderItemDto | IndustryManufacturingShiftTemplateDto | OctoSdkDemoCustomerDto | OctoSdkDemoMeteringPointDto | OctoSdkDemoOperatingFacilityDto | SystemAggregationRtQueryDto | SystemAggregationSdQueryDto | SystemAiAiAgentConfigDto | SystemAiAiAgentJobDto | SystemAiAiAgentSessionDto | SystemAiAiApprovalRequestDto | SystemAiAiAuditEventDto | SystemAiAiCredentialBindingDto | SystemAiAiCredentialTicketDto | SystemAiAiKnowledgeSourceDto | SystemAiAiPromptTemplateDto | SystemAiAiQuotaLimitDto | SystemAiAiSessionEventDto | SystemAiAiTokenLeaseDto | SystemAiAiToolPolicyDto | SystemAiAiUsageRecordDto | SystemAutoIncrementDto | SystemBlueprintBackupDto | SystemBlueprintHistoryDto | SystemBlueprintInstallationDto | SystemBotAttributeAggregateConfigurationDto | SystemBotFixupDto | SystemCommunicationAdapterDto | SystemCommunicationAiConfigurationDto | SystemCommunicationApplicationDto | SystemCommunicationDataFlowDto | SystemCommunicationDataPointMappingDto | SystemCommunicationDiscordConfigurationDto | SystemCommunicationEMailReceiverConfigurationDto | SystemCommunicationEMailSenderConfigurationDto | SystemCommunicationEdaConfigurationDto | SystemCommunicationEnergyCommunityConfigurationDto | SystemCommunicationFinApiConfigurationDto | SystemCommunicationGrafanaConfigurationDto | SystemCommunicationHelmRepositoryConfigurationDto | SystemCommunicationLoxoneConfigurationDto | SystemCommunicationMicrosoftGraphConfigurationDto | SystemCommunicationPipelineDto | SystemCommunicationPipelineExecutionDto | SystemCommunicationPipelineStatisticsDto | SystemCommunicationPipelineTriggerDto | SystemCommunicationPoolDto | SystemCommunicationSapConfigurationDto | SystemCommunicationServiceAccountConfigurationDto | SystemCommunicationSftpConfigurationDto | SystemCommunicationTagDto | SystemDownsamplingSdQueryDto | SystemGroupingAggregationRtQueryDto | SystemGroupingAggregationSdQueryDto | SystemIdentityApiResourceDto | SystemIdentityApiScopeDto | SystemIdentityAzureEntraIdIdentityProviderDto | SystemIdentityClientDto | SystemIdentityClientMirrorDto | SystemIdentityDataProtectionKeyDto | SystemIdentityEmailDomainGroupRuleDto | SystemIdentityExternalTenantUserMappingDto | SystemIdentityFacebookIdentityProviderDto | SystemIdentityGoogleIdentityProviderDto | SystemIdentityGroupDto | SystemIdentityIdentityResourceDto | SystemIdentityMicrosoftAdIdentityProviderDto | SystemIdentityMicrosoftIdentityProviderDto | SystemIdentityOctoTenantIdentityProviderDto | SystemIdentityOpenLdapIdentityProviderDto | SystemIdentityPermissionDto | SystemIdentityPermissionRoleDto | SystemIdentityPersistedGrantDto | SystemIdentityRoleDto | SystemIdentityServerSideSessionDto | SystemIdentityUserDto | SystemMigrationHistoryDto | SystemNotificationCssTemplateConfigurationDto | SystemNotificationEventDto | SystemNotificationMailNotificationConfigurationDto | SystemNotificationNotificationTemplateDto | SystemNotificationStatefulEventDto | SystemReportingConnectionInfoDto | SystemReportingFileSystemItemDto | SystemReportingFolderDto | SystemReportingFolderRootDto | SystemSimpleRtQueryDto | SystemSimpleSdQueryDto | SystemStreamDataRawArchiveDto | SystemStreamDataRecomputeJobDto | SystemStreamDataRollupArchiveDto | SystemStreamDataTimeRangeArchiveDto | SystemTenantDto | SystemTenantConfigurationDto | SystemTenantModeConfigurationDto | SystemUiBrandingDto | SystemUiDashboardDto | SystemUiDashboardWidgetDto | SystemUiProcessDiagramDto | SystemUiSymbolDefinitionDto | SystemUiSymbolLibraryDto | SystemUiTreeNavigationConfigurationDto; /** 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 | BasicEnergyConsumerDto | BasicEnergyEdaMessageDto | BasicEnergyEdaMeteringPointDto | BasicEnergyEdaProcessDto | BasicEnergyEnergyMeasurementDto | BasicEnergyOperatingFacilityDto | BasicEnergyProducerDto | BasicStateDto | BasicTreeDto | BasicTreeNodeDto | EnergyCommunityBillingDocumentDto | EnergyCommunityBillingDocumentLineItemDto | EnergyCommunityConsumerDto | EnergyCommunityCustomerDto | EnergyCommunityEdaMessageDto | EnergyCommunityEdaMeteringPointDto | EnergyCommunityEdaProcessDto | EnergyCommunityEnergyPriceDto | EnergyCommunityEnergyQuantityDto | EnergyCommunityOperatingFacilityDto | EnergyCommunityParticipationPeriodDto | EnergyCommunityProducerDto | EnvironmentCarbonBudgetDto | EnvironmentCarbonEmissionDto | EnvironmentCertificateOfOriginDto | EnvironmentComplianceRecordDto | EnvironmentEnvironmentalGoalDto | EnvironmentWasteMeterDto | 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 | IndustryManufacturingPartialFeedbackDto | IndustryManufacturingProductionOrderDto | IndustryManufacturingProductionOrderItemDto | IndustryManufacturingShiftDto | IndustryManufacturingShiftMachineDto | IndustryManufacturingShiftOrderItemDto | IndustryManufacturingShiftTemplateDto | OctoSdkDemoCustomerDto | OctoSdkDemoMeteringPointDto | OctoSdkDemoOperatingFacilityDto | SystemAggregationRtQueryDto | SystemAggregationSdQueryDto | SystemAiAiAgentConfigDto | SystemAiAiAgentJobDto | SystemAiAiAgentSessionDto | SystemAiAiApprovalRequestDto | SystemAiAiAuditEventDto | SystemAiAiCredentialBindingDto | SystemAiAiCredentialTicketDto | SystemAiAiKnowledgeSourceDto | SystemAiAiPromptTemplateDto | SystemAiAiQuotaLimitDto | SystemAiAiSessionEventDto | SystemAiAiTokenLeaseDto | SystemAiAiToolPolicyDto | SystemAiAiUsageRecordDto | SystemAutoIncrementDto | SystemBlueprintBackupDto | SystemBlueprintHistoryDto | SystemBlueprintInstallationDto | SystemBotAttributeAggregateConfigurationDto | SystemBotFixupDto | SystemCommunicationAdapterDto | SystemCommunicationAiConfigurationDto | SystemCommunicationApplicationDto | SystemCommunicationDataFlowDto | SystemCommunicationDataPointMappingDto | SystemCommunicationDiscordConfigurationDto | SystemCommunicationEMailReceiverConfigurationDto | SystemCommunicationEMailSenderConfigurationDto | SystemCommunicationEdaConfigurationDto | SystemCommunicationEnergyCommunityConfigurationDto | SystemCommunicationFinApiConfigurationDto | SystemCommunicationGrafanaConfigurationDto | SystemCommunicationHelmRepositoryConfigurationDto | SystemCommunicationLoxoneConfigurationDto | SystemCommunicationMicrosoftGraphConfigurationDto | SystemCommunicationPipelineDto | SystemCommunicationPipelineExecutionDto | SystemCommunicationPipelineStatisticsDto | SystemCommunicationPipelineTriggerDto | SystemCommunicationPoolDto | SystemCommunicationSapConfigurationDto | SystemCommunicationServiceAccountConfigurationDto | SystemCommunicationSftpConfigurationDto | SystemCommunicationTagDto | SystemDownsamplingSdQueryDto | SystemGroupingAggregationRtQueryDto | SystemGroupingAggregationSdQueryDto | SystemIdentityApiResourceDto | SystemIdentityApiScopeDto | SystemIdentityAzureEntraIdIdentityProviderDto | SystemIdentityClientDto | SystemIdentityClientMirrorDto | SystemIdentityDataProtectionKeyDto | SystemIdentityEmailDomainGroupRuleDto | SystemIdentityExternalTenantUserMappingDto | SystemIdentityFacebookIdentityProviderDto | SystemIdentityGoogleIdentityProviderDto | SystemIdentityGroupDto | SystemIdentityIdentityResourceDto | SystemIdentityMicrosoftAdIdentityProviderDto | SystemIdentityMicrosoftIdentityProviderDto | SystemIdentityOctoTenantIdentityProviderDto | SystemIdentityOpenLdapIdentityProviderDto | SystemIdentityPermissionDto | SystemIdentityPermissionRoleDto | SystemIdentityPersistedGrantDto | SystemIdentityRoleDto | SystemIdentityServerSideSessionDto | SystemIdentityUserDto | SystemMigrationHistoryDto | SystemNotificationCssTemplateConfigurationDto | SystemNotificationEventDto | SystemNotificationMailNotificationConfigurationDto | SystemNotificationNotificationTemplateDto | SystemNotificationStatefulEventDto | SystemReportingConnectionInfoDto | SystemReportingFileSystemItemDto | SystemReportingFolderDto | SystemReportingFolderRootDto | SystemSimpleRtQueryDto | SystemSimpleSdQueryDto | SystemStreamDataRawArchiveDto | SystemStreamDataRecomputeJobDto | SystemStreamDataRollupArchiveDto | SystemStreamDataTimeRangeArchiveDto | SystemTenantDto | SystemTenantConfigurationDto | SystemTenantModeConfigurationDto | SystemUiBrandingDto | SystemUiDashboardDto | SystemUiDashboardWidgetDto | SystemUiProcessDiagramDto | SystemUiSymbolDefinitionDto | SystemUiSymbolLibraryDto | SystemUiTreeNavigationConfigurationDto; /** 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 | BasicEnergyConsumerDto | BasicEnergyEdaMessageDto | BasicEnergyEdaMeteringPointDto | BasicEnergyEdaProcessDto | BasicEnergyEnergyMeasurementDto | BasicEnergyOperatingFacilityDto | BasicEnergyProducerDto | BasicStateDto | BasicTreeDto | BasicTreeNodeDto | EnergyCommunityBillingDocumentDto | EnergyCommunityBillingDocumentLineItemDto | EnergyCommunityConsumerDto | EnergyCommunityCustomerDto | EnergyCommunityEdaMessageDto | EnergyCommunityEdaMeteringPointDto | EnergyCommunityEdaProcessDto | EnergyCommunityEnergyPriceDto | EnergyCommunityEnergyQuantityDto | EnergyCommunityOperatingFacilityDto | EnergyCommunityParticipationPeriodDto | EnergyCommunityProducerDto | EnvironmentCarbonBudgetDto | EnvironmentCarbonEmissionDto | EnvironmentCertificateOfOriginDto | EnvironmentComplianceRecordDto | EnvironmentEnvironmentalGoalDto | EnvironmentWasteMeterDto | 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 | IndustryManufacturingPartialFeedbackDto | IndustryManufacturingProductionOrderDto | IndustryManufacturingProductionOrderItemDto | IndustryManufacturingShiftDto | IndustryManufacturingShiftMachineDto | IndustryManufacturingShiftOrderItemDto | IndustryManufacturingShiftTemplateDto | OctoSdkDemoCustomerDto | OctoSdkDemoMeteringPointDto | OctoSdkDemoOperatingFacilityDto | SystemAggregationRtQueryDto | SystemAggregationSdQueryDto | SystemAiAiAgentConfigDto | SystemAiAiAgentJobDto | SystemAiAiAgentSessionDto | SystemAiAiApprovalRequestDto | SystemAiAiAuditEventDto | SystemAiAiCredentialBindingDto | SystemAiAiCredentialTicketDto | SystemAiAiKnowledgeSourceDto | SystemAiAiPromptTemplateDto | SystemAiAiQuotaLimitDto | SystemAiAiSessionEventDto | SystemAiAiTokenLeaseDto | SystemAiAiToolPolicyDto | SystemAiAiUsageRecordDto | SystemAutoIncrementDto | SystemBlueprintBackupDto | SystemBlueprintHistoryDto | SystemBlueprintInstallationDto | SystemBotAttributeAggregateConfigurationDto | SystemBotFixupDto | SystemCommunicationAdapterDto | SystemCommunicationAiConfigurationDto | SystemCommunicationApplicationDto | SystemCommunicationDataFlowDto | SystemCommunicationDataPointMappingDto | SystemCommunicationDiscordConfigurationDto | SystemCommunicationEMailReceiverConfigurationDto | SystemCommunicationEMailSenderConfigurationDto | SystemCommunicationEdaConfigurationDto | SystemCommunicationEnergyCommunityConfigurationDto | SystemCommunicationFinApiConfigurationDto | SystemCommunicationGrafanaConfigurationDto | SystemCommunicationHelmRepositoryConfigurationDto | SystemCommunicationLoxoneConfigurationDto | SystemCommunicationMicrosoftGraphConfigurationDto | SystemCommunicationPipelineDto | SystemCommunicationPipelineExecutionDto | SystemCommunicationPipelineStatisticsDto | SystemCommunicationPipelineTriggerDto | SystemCommunicationPoolDto | SystemCommunicationSapConfigurationDto | SystemCommunicationServiceAccountConfigurationDto | SystemCommunicationSftpConfigurationDto | SystemCommunicationTagDto | SystemDownsamplingSdQueryDto | SystemGroupingAggregationRtQueryDto | SystemGroupingAggregationSdQueryDto | SystemIdentityApiResourceDto | SystemIdentityApiScopeDto | SystemIdentityAzureEntraIdIdentityProviderDto | SystemIdentityClientDto | SystemIdentityClientMirrorDto | SystemIdentityDataProtectionKeyDto | SystemIdentityEmailDomainGroupRuleDto | SystemIdentityExternalTenantUserMappingDto | SystemIdentityFacebookIdentityProviderDto | SystemIdentityGoogleIdentityProviderDto | SystemIdentityGroupDto | SystemIdentityIdentityResourceDto | SystemIdentityMicrosoftAdIdentityProviderDto | SystemIdentityMicrosoftIdentityProviderDto | SystemIdentityOctoTenantIdentityProviderDto | SystemIdentityOpenLdapIdentityProviderDto | SystemIdentityPermissionDto | SystemIdentityPermissionRoleDto | SystemIdentityPersistedGrantDto | SystemIdentityRoleDto | SystemIdentityServerSideSessionDto | SystemIdentityUserDto | SystemMigrationHistoryDto | SystemNotificationCssTemplateConfigurationDto | SystemNotificationEventDto | SystemNotificationMailNotificationConfigurationDto | SystemNotificationNotificationTemplateDto | SystemNotificationStatefulEventDto | SystemReportingConnectionInfoDto | SystemReportingFileSystemItemDto | SystemReportingFolderDto | SystemReportingFolderRootDto | SystemSimpleRtQueryDto | SystemSimpleSdQueryDto | SystemStreamDataRawArchiveDto | SystemStreamDataRecomputeJobDto | SystemStreamDataRollupArchiveDto | SystemStreamDataTimeRangeArchiveDto | SystemTenantDto | SystemTenantConfigurationDto | SystemTenantModeConfigurationDto | SystemUiBrandingDto | SystemUiDashboardDto | SystemUiDashboardWidgetDto | SystemUiProcessDiagramDto | SystemUiSymbolDefinitionDto | SystemUiSymbolLibraryDto | SystemUiTreeNavigationConfigurationDto; /** 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 | BasicEnergyConsumerDto | BasicEnergyEdaMessageDto | BasicEnergyEdaMeteringPointDto | BasicEnergyEdaProcessDto | BasicEnergyEnergyMeasurementDto | BasicEnergyOperatingFacilityDto | BasicEnergyProducerDto | BasicStateDto | BasicTreeDto | BasicTreeNodeDto | EnergyCommunityBillingDocumentDto | EnergyCommunityBillingDocumentLineItemDto | EnergyCommunityConsumerDto | EnergyCommunityCustomerDto | EnergyCommunityEdaMessageDto | EnergyCommunityEdaMeteringPointDto | EnergyCommunityEdaProcessDto | EnergyCommunityEnergyPriceDto | EnergyCommunityEnergyQuantityDto | EnergyCommunityOperatingFacilityDto | EnergyCommunityParticipationPeriodDto | EnergyCommunityProducerDto | EnvironmentCarbonBudgetDto | EnvironmentCarbonEmissionDto | EnvironmentCertificateOfOriginDto | EnvironmentComplianceRecordDto | EnvironmentEnvironmentalGoalDto | EnvironmentWasteMeterDto | 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 | IndustryManufacturingPartialFeedbackDto | IndustryManufacturingProductionOrderDto | IndustryManufacturingProductionOrderItemDto | IndustryManufacturingShiftDto | IndustryManufacturingShiftMachineDto | IndustryManufacturingShiftOrderItemDto | IndustryManufacturingShiftTemplateDto | OctoSdkDemoCustomerDto | OctoSdkDemoMeteringPointDto | OctoSdkDemoOperatingFacilityDto | SystemAggregationRtQueryDto | SystemAggregationSdQueryDto | SystemAiAiAgentConfigDto | SystemAiAiAgentJobDto | SystemAiAiAgentSessionDto | SystemAiAiApprovalRequestDto | SystemAiAiAuditEventDto | SystemAiAiCredentialBindingDto | SystemAiAiCredentialTicketDto | SystemAiAiKnowledgeSourceDto | SystemAiAiPromptTemplateDto | SystemAiAiQuotaLimitDto | SystemAiAiSessionEventDto | SystemAiAiTokenLeaseDto | SystemAiAiToolPolicyDto | SystemAiAiUsageRecordDto | SystemAutoIncrementDto | SystemBlueprintBackupDto | SystemBlueprintHistoryDto | SystemBlueprintInstallationDto | SystemBotAttributeAggregateConfigurationDto | SystemBotFixupDto | SystemCommunicationAdapterDto | SystemCommunicationAiConfigurationDto | SystemCommunicationApplicationDto | SystemCommunicationDataFlowDto | SystemCommunicationDataPointMappingDto | SystemCommunicationDiscordConfigurationDto | SystemCommunicationEMailReceiverConfigurationDto | SystemCommunicationEMailSenderConfigurationDto | SystemCommunicationEdaConfigurationDto | SystemCommunicationEnergyCommunityConfigurationDto | SystemCommunicationFinApiConfigurationDto | SystemCommunicationGrafanaConfigurationDto | SystemCommunicationHelmRepositoryConfigurationDto | SystemCommunicationLoxoneConfigurationDto | SystemCommunicationMicrosoftGraphConfigurationDto | SystemCommunicationPipelineDto | SystemCommunicationPipelineExecutionDto | SystemCommunicationPipelineStatisticsDto | SystemCommunicationPipelineTriggerDto | SystemCommunicationPoolDto | SystemCommunicationSapConfigurationDto | SystemCommunicationServiceAccountConfigurationDto | SystemCommunicationSftpConfigurationDto | SystemCommunicationTagDto | SystemDownsamplingSdQueryDto | SystemGroupingAggregationRtQueryDto | SystemGroupingAggregationSdQueryDto | SystemIdentityApiResourceDto | SystemIdentityApiScopeDto | SystemIdentityAzureEntraIdIdentityProviderDto | SystemIdentityClientDto | SystemIdentityClientMirrorDto | SystemIdentityDataProtectionKeyDto | SystemIdentityEmailDomainGroupRuleDto | SystemIdentityExternalTenantUserMappingDto | SystemIdentityFacebookIdentityProviderDto | SystemIdentityGoogleIdentityProviderDto | SystemIdentityGroupDto | SystemIdentityIdentityResourceDto | SystemIdentityMicrosoftAdIdentityProviderDto | SystemIdentityMicrosoftIdentityProviderDto | SystemIdentityOctoTenantIdentityProviderDto | SystemIdentityOpenLdapIdentityProviderDto | SystemIdentityPermissionDto | SystemIdentityPermissionRoleDto | SystemIdentityPersistedGrantDto | SystemIdentityRoleDto | SystemIdentityServerSideSessionDto | SystemIdentityUserDto | SystemMigrationHistoryDto | SystemNotificationCssTemplateConfigurationDto | SystemNotificationEventDto | SystemNotificationMailNotificationConfigurationDto | SystemNotificationNotificationTemplateDto | SystemNotificationStatefulEventDto | SystemReportingConnectionInfoDto | SystemReportingFileSystemItemDto | SystemReportingFolderDto | SystemReportingFolderRootDto | SystemSimpleRtQueryDto | SystemSimpleSdQueryDto | SystemStreamDataRawArchiveDto | SystemStreamDataRecomputeJobDto | SystemStreamDataRollupArchiveDto | SystemStreamDataTimeRangeArchiveDto | SystemTenantDto | SystemTenantConfigurationDto | SystemTenantModeConfigurationDto | SystemUiBrandingDto | SystemUiDashboardDto | SystemUiDashboardWidgetDto | SystemUiProcessDiagramDto | SystemUiSymbolDefinitionDto | SystemUiSymbolLibraryDto | SystemUiTreeNavigationConfigurationDto; /** 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 | BasicEnergyConsumerDto | BasicEnergyEdaMessageDto | BasicEnergyEdaMeteringPointDto | BasicEnergyEdaProcessDto | BasicEnergyEnergyMeasurementDto | BasicEnergyOperatingFacilityDto | BasicEnergyProducerDto | BasicStateDto | BasicTreeDto | BasicTreeNodeDto | EnergyCommunityBillingDocumentDto | EnergyCommunityBillingDocumentLineItemDto | EnergyCommunityConsumerDto | EnergyCommunityCustomerDto | EnergyCommunityEdaMessageDto | EnergyCommunityEdaMeteringPointDto | EnergyCommunityEdaProcessDto | EnergyCommunityEnergyPriceDto | EnergyCommunityEnergyQuantityDto | EnergyCommunityOperatingFacilityDto | EnergyCommunityParticipationPeriodDto | EnergyCommunityProducerDto | EnvironmentCarbonBudgetDto | EnvironmentCarbonEmissionDto | EnvironmentCertificateOfOriginDto | EnvironmentComplianceRecordDto | EnvironmentEnvironmentalGoalDto | EnvironmentWasteMeterDto | 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 | IndustryManufacturingPartialFeedbackDto | IndustryManufacturingProductionOrderDto | IndustryManufacturingProductionOrderItemDto | IndustryManufacturingShiftDto | IndustryManufacturingShiftMachineDto | IndustryManufacturingShiftOrderItemDto | IndustryManufacturingShiftTemplateDto | OctoSdkDemoCustomerDto | OctoSdkDemoMeteringPointDto | OctoSdkDemoOperatingFacilityDto | SystemAggregationRtQueryDto | SystemAggregationSdQueryDto | SystemAiAiAgentConfigDto | SystemAiAiAgentJobDto | SystemAiAiAgentSessionDto | SystemAiAiApprovalRequestDto | SystemAiAiAuditEventDto | SystemAiAiCredentialBindingDto | SystemAiAiCredentialTicketDto | SystemAiAiKnowledgeSourceDto | SystemAiAiPromptTemplateDto | SystemAiAiQuotaLimitDto | SystemAiAiSessionEventDto | SystemAiAiTokenLeaseDto | SystemAiAiToolPolicyDto | SystemAiAiUsageRecordDto | SystemAutoIncrementDto | SystemBlueprintBackupDto | SystemBlueprintHistoryDto | SystemBlueprintInstallationDto | SystemBotAttributeAggregateConfigurationDto | SystemBotFixupDto | SystemCommunicationAdapterDto | SystemCommunicationAiConfigurationDto | SystemCommunicationApplicationDto | SystemCommunicationDataFlowDto | SystemCommunicationDataPointMappingDto | SystemCommunicationDiscordConfigurationDto | SystemCommunicationEMailReceiverConfigurationDto | SystemCommunicationEMailSenderConfigurationDto | SystemCommunicationEdaConfigurationDto | SystemCommunicationEnergyCommunityConfigurationDto | SystemCommunicationFinApiConfigurationDto | SystemCommunicationGrafanaConfigurationDto | SystemCommunicationHelmRepositoryConfigurationDto | SystemCommunicationLoxoneConfigurationDto | SystemCommunicationMicrosoftGraphConfigurationDto | SystemCommunicationPipelineDto | SystemCommunicationPipelineExecutionDto | SystemCommunicationPipelineStatisticsDto | SystemCommunicationPipelineTriggerDto | SystemCommunicationPoolDto | SystemCommunicationSapConfigurationDto | SystemCommunicationServiceAccountConfigurationDto | SystemCommunicationSftpConfigurationDto | SystemCommunicationTagDto | SystemDownsamplingSdQueryDto | SystemGroupingAggregationRtQueryDto | SystemGroupingAggregationSdQueryDto | SystemIdentityApiResourceDto | SystemIdentityApiScopeDto | SystemIdentityAzureEntraIdIdentityProviderDto | SystemIdentityClientDto | SystemIdentityClientMirrorDto | SystemIdentityDataProtectionKeyDto | SystemIdentityEmailDomainGroupRuleDto | SystemIdentityExternalTenantUserMappingDto | SystemIdentityFacebookIdentityProviderDto | SystemIdentityGoogleIdentityProviderDto | SystemIdentityGroupDto | SystemIdentityIdentityResourceDto | SystemIdentityMicrosoftAdIdentityProviderDto | SystemIdentityMicrosoftIdentityProviderDto | SystemIdentityOctoTenantIdentityProviderDto | SystemIdentityOpenLdapIdentityProviderDto | SystemIdentityPermissionDto | SystemIdentityPermissionRoleDto | SystemIdentityPersistedGrantDto | SystemIdentityRoleDto | SystemIdentityServerSideSessionDto | SystemIdentityUserDto | SystemMigrationHistoryDto | SystemNotificationCssTemplateConfigurationDto | SystemNotificationEventDto | SystemNotificationMailNotificationConfigurationDto | SystemNotificationNotificationTemplateDto | SystemNotificationStatefulEventDto | SystemReportingConnectionInfoDto | SystemReportingFileSystemItemDto | SystemReportingFolderDto | SystemReportingFolderRootDto | SystemSimpleRtQueryDto | SystemSimpleSdQueryDto | SystemStreamDataRawArchiveDto | SystemStreamDataRecomputeJobDto | SystemStreamDataRollupArchiveDto | SystemStreamDataTimeRangeArchiveDto | SystemTenantDto | SystemTenantConfigurationDto | SystemTenantModeConfigurationDto | SystemUiBrandingDto | SystemUiDashboardDto | SystemUiDashboardWidgetDto | SystemUiProcessDiagramDto | SystemUiSymbolDefinitionDto | SystemUiSymbolLibraryDto | SystemUiTreeNavigationConfigurationDto; /** 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.2.0/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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; textSearchFilter?: Maybe; }; /** Runtime entities of construction kit type 'System-2.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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.2.0/GroupingAggregationSdQuery-1' */ type SystemGroupingAggregationSdQueryDto = SystemEntityInterfaceDto & SystemPersistentQueryInterfaceDto & SystemStreamDataQueryInterfaceDto & { __typename?: 'SystemGroupingAggregationSdQuery'; archiveRtId?: Maybe; 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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtIds?: Maybe>; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; to?: Maybe; }; /** Runtime entities of construction kit type 'System-2.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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 = { archiveRtId?: InputMaybe; 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.10.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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; 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.10.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.10.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.10.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.10.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.10.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.10.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.10.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.10.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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; showInDiscoveryDocument: Scalars['Boolean']['output']; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Identity-2.10.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.10.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.10.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.10.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.10.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.10.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.10.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.10.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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; tenantId: Scalars['String']['output']; }; /** Runtime entities of construction kit type 'System.Identity-2.10.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.10.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.10.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.10.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.10.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.10.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.10.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.10.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']; assignedRoles?: Maybe; associations?: Maybe; authorizationCodeLifetime: Scalars['Int']['output']; autoProvisionInChildTenants: Scalars['Boolean']['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; memberOfGroups?: Maybe; pairWiseSubjectSalt?: Maybe; pollingInterval?: Maybe; postLogoutRedirectUris: Array; protocolType: Scalars['String']['output']; provisionedByParentTenantId?: Maybe; 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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; 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.10.0/Client-1' */ type SystemIdentityClientAssignedRolesArgsDto = { after?: 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.10.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.10.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.10.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.10.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.10.0/Client-1' */ type SystemIdentityClientMemberOfGroupsArgsDto = { after?: 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.10.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.10.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.10.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; assignedRoles?: InputMaybe>>; authorizationCodeLifetime?: InputMaybe; autoProvisionInChildTenants?: 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>>; memberOfGroups?: InputMaybe>>; pairWiseSubjectSalt?: InputMaybe; pollingInterval?: InputMaybe; postLogoutRedirectUris?: InputMaybe>>; protocolType?: InputMaybe; provisionedByParentTenantId?: 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; }; /** Runtime entities of construction kit type 'System.Identity-2.10.0/ClientMirror-1' */ type SystemIdentityClientMirrorDto = SystemEntityInterfaceDto & { __typename?: 'SystemIdentityClientMirror'; associations?: Maybe; childTenantId: Scalars['String']['output']; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; parentClientId: Scalars['String']['output']; parentTenantId: Scalars['String']['output']; provisionedAt: Scalars['DateTime']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; secretHashVersion: Scalars['Int']['output']; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Identity-2.10.0/ClientMirror-1' */ type SystemIdentityClientMirrorAssociationsArgsDto = { 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.10.0/ClientMirror-1' */ type SystemIdentityClientMirrorConfiguredByArgsDto = { after?: 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.10.0/ClientMirror-1' */ type SystemIdentityClientMirrorMapsFromArgsDto = { after?: 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.10.0/ClientMirror-1' */ type SystemIdentityClientMirrorMapsToArgsDto = { after?: 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.10.0/ClientMirror-1' */ type SystemIdentityClientMirrorRelatesFromArgsDto = { after?: 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.10.0/ClientMirror-1' */ type SystemIdentityClientMirrorRelatesToArgsDto = { after?: 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.10.0/ClientMirror-1' */ type SystemIdentityClientMirrorTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemIdentityClientMirror`. */ type SystemIdentityClientMirrorConnectionDto = { __typename?: 'SystemIdentityClientMirrorConnection'; /** 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 `SystemIdentityClientMirror`. */ type SystemIdentityClientMirrorEdgeDto = { __typename?: 'SystemIdentityClientMirrorEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemIdentityClientMirrorInputDto = { childTenantId?: InputMaybe; configuredBy?: InputMaybe>>; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; parentClientId?: InputMaybe; parentTenantId?: InputMaybe; provisionedAt?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; secretHashVersion?: InputMaybe; taggedBy?: InputMaybe>>; }; type SystemIdentityClientMirrorInputUpdateDto = { /** Item to update */ item: SystemIdentityClientMirrorInputDto; rtId?: InputMaybe; }; type SystemIdentityClientMirrorMutationsDto = { __typename?: 'SystemIdentityClientMirrorMutations'; /** Creates new entities of type 'SystemIdentityClientMirror'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemIdentityClientMirror'. */ update?: Maybe>>; }; type SystemIdentityClientMirrorMutationsCreateArgsDto = { entities: Array>; }; type SystemIdentityClientMirrorMutationsUpdateArgsDto = { entities: Array>; }; type SystemIdentityClientMirrorUpdateDto = { __typename?: 'SystemIdentityClientMirrorUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemIdentityClientMirrorUpdateMessageDto = { __typename?: 'SystemIdentityClientMirrorUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; 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 record 'System.Identity/ClientUriEntry' */ type SystemIdentityClientUriEntryDto = { __typename?: 'SystemIdentityClientUriEntry'; constructionKitType?: Maybe; source: Scalars['String']['output']; uri: Scalars['String']['output']; }; type SystemIdentityClientUriEntryInputDto = { source?: InputMaybe; uri?: InputMaybe; }; /** Union of types derived from System.Identity/Client for AssignedEntities association */ type SystemIdentityClient_AssignedEntitiesUnionDto = SystemIdentityClientDto | SystemIdentityGroupDto | SystemIdentityUserDto; /** A connection to `SystemIdentityClient_AssignedEntitiesUnion`. */ type SystemIdentityClient_AssignedEntitiesUnionConnectionDto = { __typename?: 'SystemIdentityClient_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 `SystemIdentityClient_AssignedEntitiesUnion`. */ type SystemIdentityClient_AssignedEntitiesUnionEdgeDto = { __typename?: 'SystemIdentityClient_AssignedEntitiesUnionEdge'; /** 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.10.0/DataProtectionKey-1' */ type SystemIdentityDataProtectionKeyDto = SystemEntityInterfaceDto & { __typename?: 'SystemIdentityDataProtectionKey'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; creationDateTime: Scalars['DateTime']['output']; friendlyName: Scalars['String']['output']; mapsFrom?: Maybe; mapsTo?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; xmlData: Scalars['String']['output']; }; /** Runtime entities of construction kit type 'System.Identity-2.10.0/DataProtectionKey-1' */ type SystemIdentityDataProtectionKeyAssociationsArgsDto = { 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.10.0/DataProtectionKey-1' */ type SystemIdentityDataProtectionKeyConfiguredByArgsDto = { after?: 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.10.0/DataProtectionKey-1' */ type SystemIdentityDataProtectionKeyMapsFromArgsDto = { after?: 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.10.0/DataProtectionKey-1' */ type SystemIdentityDataProtectionKeyMapsToArgsDto = { after?: 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.10.0/DataProtectionKey-1' */ type SystemIdentityDataProtectionKeyRelatesFromArgsDto = { after?: 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.10.0/DataProtectionKey-1' */ type SystemIdentityDataProtectionKeyRelatesToArgsDto = { after?: 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.10.0/DataProtectionKey-1' */ type SystemIdentityDataProtectionKeyTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemIdentityDataProtectionKey`. */ type SystemIdentityDataProtectionKeyConnectionDto = { __typename?: 'SystemIdentityDataProtectionKeyConnection'; /** 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 `SystemIdentityDataProtectionKey`. */ type SystemIdentityDataProtectionKeyEdgeDto = { __typename?: 'SystemIdentityDataProtectionKeyEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemIdentityDataProtectionKeyInputDto = { configuredBy?: InputMaybe>>; creationDateTime?: InputMaybe; friendlyName?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; xmlData?: InputMaybe; }; type SystemIdentityDataProtectionKeyInputUpdateDto = { /** Item to update */ item: SystemIdentityDataProtectionKeyInputDto; rtId?: InputMaybe; }; type SystemIdentityDataProtectionKeyMutationsDto = { __typename?: 'SystemIdentityDataProtectionKeyMutations'; /** Creates new entities of type 'SystemIdentityDataProtectionKey'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemIdentityDataProtectionKey'. */ update?: Maybe>>; }; type SystemIdentityDataProtectionKeyMutationsCreateArgsDto = { entities: Array>; }; type SystemIdentityDataProtectionKeyMutationsUpdateArgsDto = { entities: Array>; }; type SystemIdentityDataProtectionKeyUpdateDto = { __typename?: 'SystemIdentityDataProtectionKeyUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemIdentityDataProtectionKeyUpdateMessageDto = { __typename?: 'SystemIdentityDataProtectionKeyUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'System.Identity-2.10.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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; targetGroupRtId: Scalars['String']['output']; }; /** Runtime entities of construction kit type 'System.Identity-2.10.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.10.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.10.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.10.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.10.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.10.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.10.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.10.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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; 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.10.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.10.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.10.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.10.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.10.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.10.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.10.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.10.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.10.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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Identity-2.10.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.10.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.10.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.10.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.10.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.10.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.10.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.10.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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Identity-2.10.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.10.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.10.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.10.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.10.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.10.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.10.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.10.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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Identity-2.10.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.10.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.10.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.10.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.10.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.10.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.10.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.10.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.10.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.10.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.10.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 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.10.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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Identity-2.10.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.10.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.10.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.10.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.10.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.10.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.10.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.10.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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Interface for runtime entities of construction kit type 'System.Identity-2.10.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.10.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.10.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.10.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.10.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.10.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.10.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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; showInDiscoveryDocument: Scalars['Boolean']['output']; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Identity-2.10.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.10.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.10.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.10.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.10.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.10.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.10.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.10.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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; 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.10.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.10.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.10.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.10.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.10.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.10.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.10.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.10.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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Identity-2.10.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.10.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.10.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.10.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.10.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.10.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.10.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.10.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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Identity-2.10.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.10.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.10.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.10.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.10.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.10.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.10.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.10.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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; 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.10.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.10.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.10.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.10.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.10.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.10.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.10.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.10.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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Identity-2.10.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.10.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.10.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.10.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.10.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.10.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.10.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.10.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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; subjectIds: Array; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Identity-2.10.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.10.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.10.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.10.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.10.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.10.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.10.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.10.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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; 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.10.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.10.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.10.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.10.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.10.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.10.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.10.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.10.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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; showInDiscoveryDocument: Scalars['Boolean']['output']; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Identity-2.10.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.10.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.10.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.10.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.10.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.10.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.10.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.10.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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; 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.10.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.10.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.10.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.10.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.10.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.10.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.10.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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; subjectIds: Array; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Identity-2.10.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.10.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.10.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.10.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.10.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.10.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.10.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.10.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 type 'System.Identity-2.10.0/ServerSideSession-1' */ type SystemIdentityServerSideSessionDto = SystemEntityInterfaceDto & { __typename?: 'SystemIdentityServerSideSession'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; creationDateTime: Scalars['DateTime']['output']; displayName?: Maybe; expirationDateTime?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; renewalDateTime: Scalars['DateTime']['output']; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; scheme: Scalars['String']['output']; sessionId: Scalars['String']['output']; sessionKey: Scalars['String']['output']; subjectId: Scalars['String']['output']; taggedBy?: Maybe; ticket: Scalars['String']['output']; }; /** Runtime entities of construction kit type 'System.Identity-2.10.0/ServerSideSession-1' */ type SystemIdentityServerSideSessionAssociationsArgsDto = { 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.10.0/ServerSideSession-1' */ type SystemIdentityServerSideSessionConfiguredByArgsDto = { after?: 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.10.0/ServerSideSession-1' */ type SystemIdentityServerSideSessionMapsFromArgsDto = { after?: 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.10.0/ServerSideSession-1' */ type SystemIdentityServerSideSessionMapsToArgsDto = { after?: 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.10.0/ServerSideSession-1' */ type SystemIdentityServerSideSessionRelatesFromArgsDto = { after?: 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.10.0/ServerSideSession-1' */ type SystemIdentityServerSideSessionRelatesToArgsDto = { after?: 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.10.0/ServerSideSession-1' */ type SystemIdentityServerSideSessionTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemIdentityServerSideSession`. */ type SystemIdentityServerSideSessionConnectionDto = { __typename?: 'SystemIdentityServerSideSessionConnection'; /** 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 `SystemIdentityServerSideSession`. */ type SystemIdentityServerSideSessionEdgeDto = { __typename?: 'SystemIdentityServerSideSessionEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemIdentityServerSideSessionInputDto = { configuredBy?: InputMaybe>>; creationDateTime?: InputMaybe; displayName?: InputMaybe; expirationDateTime?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; renewalDateTime?: InputMaybe; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; scheme?: InputMaybe; sessionId?: InputMaybe; sessionKey?: InputMaybe; subjectId?: InputMaybe; taggedBy?: InputMaybe>>; ticket?: InputMaybe; }; type SystemIdentityServerSideSessionInputUpdateDto = { /** Item to update */ item: SystemIdentityServerSideSessionInputDto; rtId?: InputMaybe; }; type SystemIdentityServerSideSessionMutationsDto = { __typename?: 'SystemIdentityServerSideSessionMutations'; /** Creates new entities of type 'SystemIdentityServerSideSession'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemIdentityServerSideSession'. */ update?: Maybe>>; }; type SystemIdentityServerSideSessionMutationsCreateArgsDto = { entities: Array>; }; type SystemIdentityServerSideSessionMutationsUpdateArgsDto = { entities: Array>; }; type SystemIdentityServerSideSessionUpdateDto = { __typename?: 'SystemIdentityServerSideSessionUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemIdentityServerSideSessionUpdateMessageDto = { __typename?: 'SystemIdentityServerSideSessionUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** 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.10.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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; 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.10.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.10.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.10.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.10.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.10.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.10.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.10.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.10.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.10.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 = SystemIdentityClientDto | 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.2.0/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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; 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.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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.1.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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; usedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Notification-2.1.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.1.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.1.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.1.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.1.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.1.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.1.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.1.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.1.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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; source: SystemNotificationEventSourcesDto; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Notification-2.1.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.1.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.1.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.1.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.1.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.1.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.1.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.1.0/MailNotificationConfiguration-1' */ type SystemNotificationMailNotificationConfigurationDto = SystemConfigurationInterfaceDto & SystemEntityInterfaceDto & { __typename?: 'SystemNotificationMailNotificationConfiguration'; 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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; usedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Notification-2.1.0/MailNotificationConfiguration-1' */ type SystemNotificationMailNotificationConfigurationAssociationsArgsDto = { 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.1.0/MailNotificationConfiguration-1' */ type SystemNotificationMailNotificationConfigurationConfiguredByArgsDto = { after?: 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.1.0/MailNotificationConfiguration-1' */ type SystemNotificationMailNotificationConfigurationMapsFromArgsDto = { after?: 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.1.0/MailNotificationConfiguration-1' */ type SystemNotificationMailNotificationConfigurationMapsToArgsDto = { after?: 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.1.0/MailNotificationConfiguration-1' */ type SystemNotificationMailNotificationConfigurationRelatesFromArgsDto = { after?: 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.1.0/MailNotificationConfiguration-1' */ type SystemNotificationMailNotificationConfigurationRelatesToArgsDto = { after?: 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.1.0/MailNotificationConfiguration-1' */ type SystemNotificationMailNotificationConfigurationTaggedByArgsDto = { after?: 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.1.0/MailNotificationConfiguration-1' */ type SystemNotificationMailNotificationConfigurationUsedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemNotificationMailNotificationConfiguration`. */ type SystemNotificationMailNotificationConfigurationConnectionDto = { __typename?: 'SystemNotificationMailNotificationConfigurationConnection'; /** 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 `SystemNotificationMailNotificationConfiguration`. */ type SystemNotificationMailNotificationConfigurationEdgeDto = { __typename?: 'SystemNotificationMailNotificationConfigurationEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemNotificationMailNotificationConfigurationInputDto = { 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 SystemNotificationMailNotificationConfigurationInputUpdateDto = { /** Item to update */ item: SystemNotificationMailNotificationConfigurationInputDto; rtId?: InputMaybe; }; type SystemNotificationMailNotificationConfigurationMutationsDto = { __typename?: 'SystemNotificationMailNotificationConfigurationMutations'; /** Creates new entities of type 'SystemNotificationMailNotificationConfiguration'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemNotificationMailNotificationConfiguration'. */ update?: Maybe>>; }; type SystemNotificationMailNotificationConfigurationMutationsCreateArgsDto = { entities: Array>; }; type SystemNotificationMailNotificationConfigurationMutationsUpdateArgsDto = { entities: Array>; }; type SystemNotificationMailNotificationConfigurationUpdateDto = { __typename?: 'SystemNotificationMailNotificationConfigurationUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemNotificationMailNotificationConfigurationUpdateMessageDto = { __typename?: 'SystemNotificationMailNotificationConfigurationUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'System.Notification-2.1.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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; 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.1.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.1.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.1.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.1.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.1.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.1.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.1.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.1.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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; source: SystemNotificationEventSourcesDto; state: SystemNotificationEventStatesDto; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.Notification-2.1.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.1.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.1.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.1.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.1.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.1.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.1.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.2.0/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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System-2.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Interface for runtime entities of construction kit type 'System-2.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; 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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; 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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; 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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; 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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; 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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; 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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; 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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; 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.2.0/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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; sorting?: Maybe>; taggedBy?: Maybe; textSearchFilter?: Maybe; }; /** Runtime entities of construction kit type 'System-2.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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.2.0/SimpleSdQuery-1' */ type SystemSimpleSdQueryDto = SystemEntityInterfaceDto & SystemPersistentQueryInterfaceDto & SystemStreamDataQueryInterfaceDto & { __typename?: 'SystemSimpleSdQuery'; archiveRtId?: Maybe; 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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtIds?: Maybe>; rtVersion?: Maybe; rtWellKnownName?: Maybe; sorting?: Maybe>; taggedBy?: Maybe; to?: Maybe; }; /** Runtime entities of construction kit type 'System-2.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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 = { archiveRtId?: InputMaybe; 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.StreamData-1.6.4/Archive-1' */ type SystemStreamDataArchiveDto = SystemEntityInterfaceDto & { __typename?: 'SystemStreamDataArchive'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; columns: Array; configuredBy?: Maybe; constructionKitType?: Maybe; dirtyWindows?: Maybe>; lastRecomputeFailureAt?: Maybe; lastRecomputeFailureReason?: Maybe; lastRecomputeStartedAt?: Maybe; lastRecomputeSuccessAt?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; pendingRecomputeRanges?: Maybe>; rawRetentionMs?: Maybe; recomputeInProgress: Scalars['Boolean']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; status: SystemStreamDataCkArchiveStatusDto; taggedBy?: Maybe; targetCkTypeId: Scalars['String']['output']; }; /** Runtime entities of construction kit type 'System.StreamData-1.6.4/Archive-1' */ type SystemStreamDataArchiveAssociationsArgsDto = { 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.StreamData-1.6.4/Archive-1' */ type SystemStreamDataArchiveConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.StreamData-1.6.4/Archive-1' */ type SystemStreamDataArchiveMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.StreamData-1.6.4/Archive-1' */ type SystemStreamDataArchiveMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.StreamData-1.6.4/Archive-1' */ type SystemStreamDataArchiveRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.StreamData-1.6.4/Archive-1' */ type SystemStreamDataArchiveRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.StreamData-1.6.4/Archive-1' */ type SystemStreamDataArchiveTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemStreamDataArchive`. */ type SystemStreamDataArchiveConnectionDto = { __typename?: 'SystemStreamDataArchiveConnection'; /** 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 `SystemStreamDataArchive`. */ type SystemStreamDataArchiveEdgeDto = { __typename?: 'SystemStreamDataArchiveEdge'; /** 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.StreamData-1.6.4/Archive-1' */ type SystemStreamDataArchiveInterfaceDto = { ckTypeId: Scalars['RtCkTypeId']['output']; columns: Array; configuredBy?: Maybe; dirtyWindows?: Maybe>; lastRecomputeFailureAt?: Maybe; lastRecomputeFailureReason?: Maybe; lastRecomputeStartedAt?: Maybe; lastRecomputeSuccessAt?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; pendingRecomputeRanges?: Maybe>; rawRetentionMs?: Maybe; recomputeInProgress: Scalars['Boolean']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; status: SystemStreamDataCkArchiveStatusDto; taggedBy?: Maybe; targetCkTypeId: Scalars['String']['output']; }; /** Interface for runtime entities of construction kit type 'System.StreamData-1.6.4/Archive-1' */ type SystemStreamDataArchiveInterfaceConfiguredByArgsDto = { 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.StreamData-1.6.4/Archive-1' */ type SystemStreamDataArchiveInterfaceMapsFromArgsDto = { 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.StreamData-1.6.4/Archive-1' */ type SystemStreamDataArchiveInterfaceMapsToArgsDto = { 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.StreamData-1.6.4/Archive-1' */ type SystemStreamDataArchiveInterfaceRelatesFromArgsDto = { 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.StreamData-1.6.4/Archive-1' */ type SystemStreamDataArchiveInterfaceRelatesToArgsDto = { 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.StreamData-1.6.4/Archive-1' */ type SystemStreamDataArchiveInterfaceTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; type SystemStreamDataArchiveUpdateDto = { __typename?: 'SystemStreamDataArchiveUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemStreamDataArchiveUpdateMessageDto = { __typename?: 'SystemStreamDataArchiveUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit enum 'System.StreamData/BucketAlignment' */ declare enum SystemStreamDataBucketAlignmentDto { /** Bucket boundaries align to UTC calendar days (00:00:00 UTC). BucketSizeMs is informational only. */ CalendarDayDto = "CALENDAR_DAY", /** Bucket boundaries align to UTC calendar months (first day of month 00:00:00 UTC). BucketSizeMs is informational only; month lengths vary 28-31 days. */ CalendarMonthDto = "CALENDAR_MONTH", /** Bucket boundaries align to UTC calendar years (Jan 1 00:00:00 UTC). BucketSizeMs is informational only. */ CalendarYearDto = "CALENDAR_YEAR", /** Default. Each bucket spans exactly BucketSizeMs; boundaries are LastAggregatedBucketEnd, LastAggregatedBucketEnd + BucketSizeMs, ... */ FixedSizeDto = "FIXED_SIZE", /** Bucket boundaries align to ISO-8601 weeks (Monday 00:00:00 UTC to next Monday 00:00:00 UTC). BucketSizeMs is informational only. */ Iso_8601WeekDto = "ISO_8601_WEEK" } /** Runtime entities of construction kit record 'System.StreamData/CkArchiveColumn' */ type SystemStreamDataCkArchiveColumnDto = { __typename?: 'SystemStreamDataCkArchiveColumn'; computedState?: Maybe; computedVersion?: Maybe; constructionKitType?: Maybe; formula?: Maybe; indexed: Scalars['Boolean']['output']; name?: Maybe; path: Scalars['String']['output']; pendingFormula?: Maybe; required: Scalars['Boolean']['output']; resultType?: Maybe; }; type SystemStreamDataCkArchiveColumnInputDto = { computedState?: InputMaybe; computedVersion?: InputMaybe; formula?: InputMaybe; indexed?: InputMaybe; name?: InputMaybe; path?: InputMaybe; pendingFormula?: InputMaybe; required?: InputMaybe; resultType?: InputMaybe; }; /** Runtime entities of construction kit record 'System.StreamData/CkArchiveDirtyWindow' */ type SystemStreamDataCkArchiveDirtyWindowDto = { __typename?: 'SystemStreamDataCkArchiveDirtyWindow'; changeKind: SystemStreamDataCkRecomputeChangeKindDto; constructionKitType?: Maybe; detectedAt: Scalars['DateTime']['output']; source: SystemStreamDataCkRecomputeChangeSourceDto; windowEnd: Scalars['DateTime']['output']; windowStart: Scalars['DateTime']['output']; }; type SystemStreamDataCkArchiveDirtyWindowInputDto = { changeKind?: InputMaybe; detectedAt?: InputMaybe; source?: InputMaybe; windowEnd?: InputMaybe; windowStart?: InputMaybe; }; /** Runtime entities of construction kit record 'System.StreamData/CkArchiveRecomputeRange' */ type SystemStreamDataCkArchiveRecomputeRangeDto = { __typename?: 'SystemStreamDataCkArchiveRecomputeRange'; constructionKitType?: Maybe; dependentArchiveRtId: Scalars['String']['output']; enqueuedAt: Scalars['DateTime']['output']; rangeEnd: Scalars['DateTime']['output']; rangeStart: Scalars['DateTime']['output']; rtIdScope: Scalars['String']['output']; }; type SystemStreamDataCkArchiveRecomputeRangeInputDto = { dependentArchiveRtId?: InputMaybe; enqueuedAt?: InputMaybe; rangeEnd?: InputMaybe; rangeStart?: InputMaybe; rtIdScope?: InputMaybe; }; /** Runtime entities of construction kit enum 'System.StreamData/CkArchiveStatus' */ declare enum SystemStreamDataCkArchiveStatusDto { /** Crate table exists, schema is frozen, inserts and queries are accepted. */ ActivatedDto = "ACTIVATED", /** Archive definition exists, but no Crate table has been provisioned. Inserts and queries are rejected. */ CreatedDto = "CREATED", /** Crate table exists, but inserts and queries are rejected. Data is preserved. */ DisabledDto = "DISABLED", /** Activation failed; manual retry required. Inserts and queries are rejected. */ FailedDto = "FAILED" } /** Runtime entities of construction kit enum 'System.StreamData/CkComputedColumnResultType' */ declare enum SystemStreamDataCkComputedColumnResultTypeDto { /** Non-zero result is true. Stored as BOOLEAN. */ BooleanDto = "BOOLEAN", /** Result interpreted as ticks. Stored as TIMESTAMP WITH TIME ZONE. */ DateTimeDto = "DATE_TIME", /** Stored as DOUBLE PRECISION. */ DoubleDto = "DOUBLE", /** Result truncated to a 32-bit integer. Stored as INTEGER. */ IntDto = "INT", /** Result truncated to a 64-bit integer. Stored as BIGINT. */ Int_64Dto = "INT_64" } /** Runtime entities of construction kit enum 'System.StreamData/CkComputedColumnState' */ declare enum SystemStreamDataCkComputedColumnStateDto { /** The computed column is live: new rows include the value on ingest and readers see it. */ ActiveDto = "ACTIVE", /** The backfill is running. Consumers still see the previous archive state until it completes and is committed atomically. */ BackfillingDto = "BACKFILLING", /** The backfill failed mid-run. The previous archive state is intact; consumers never see partial computed data. */ FailedDto = "FAILED", /** A backfill has been scheduled for this computed column but has not started yet. Consumers still see the previous archive state. */ PendingDto = "PENDING" } /** Runtime entities of construction kit enum 'System.StreamData/CkRecomputeChangeKind' */ declare enum SystemStreamDataCkRecomputeChangeKindDto { /** A forward write at or after the high-water mark already consumed by dependents. Does not, by itself, make a dependent stale. */ AppendDto = "APPEND", /** A write into a window at or before the consumed high-water mark (correction, late value, re-ingest). Marks the covering window dirty so dependents are recomputed. */ RetroactiveModifyDto = "RETROACTIVE_MODIFY" } /** Runtime entities of construction kit enum 'System.StreamData/CkRecomputeChangeSource' */ declare enum SystemStreamDataCkRecomputeChangeSourceDto { /** A bulk archive-data import wrote the change. */ ImportDto = "IMPORT", /** An operator changed the data directly (manual correction). */ ManualDto = "MANUAL", /** A mesh-adapter pipeline re-ingested or corrected the data (e.g. a corrected DATEN_CRMSG from EDA). */ PipelineDto = "PIPELINE" } /** Runtime entities of construction kit enum 'System.StreamData/CkRecomputeJobState' */ declare enum SystemStreamDataCkRecomputeJobStateDto { /** The triggering request was merged into an already-active job for the same archive (its range was folded into that job). */ CoalescedDto = "COALESCED", /** The recompute committed atomically; readers now see the new values. */ CompletedDto = "COMPLETED", /** The job failed before committing. Staging is discarded; the previous archive state is intact and consumers never saw a partial result. */ FailedDto = "FAILED", /** The job is scheduled but compute has not started yet. */ PendingDto = "PENDING", /** Recomputed buckets are being written into the per-job staging table. Readers still see the previous state. */ RunningDto = "RUNNING", /** Staging is complete and the atomic commit (full-archive SWAP TABLE or per-window generation-pointer flip) is in progress. */ SwappingDto = "SWAPPING" } /** Runtime entities of construction kit enum 'System.StreamData/CkRecomputeTrigger' */ declare enum SystemStreamDataCkRecomputeTriggerDto { /** A successful recompute of an upstream archive marked this archive dirty and propagated downstream. */ ChainPropagationDto = "CHAIN_PROPAGATION", /** An operator forced the recompute via API / admin UI / octo-cli. */ ManualDto = "MANUAL", /** The recompute orchestrator picked up dirty windows on its scheduled tick. */ PeriodicDto = "PERIODIC" } /** Runtime entities of construction kit record 'System.StreamData/CkRollupAggregation' */ type SystemStreamDataCkRollupAggregationDto = { __typename?: 'SystemStreamDataCkRollupAggregation'; constructionKitType?: Maybe; function: SystemStreamDataCkRollupFunctionDto; sourcePath: Scalars['String']['output']; targetColumnName?: Maybe; }; type SystemStreamDataCkRollupAggregationInputDto = { function?: InputMaybe; sourcePath?: InputMaybe; targetColumnName?: InputMaybe; }; /** Runtime entities of construction kit enum 'System.StreamData/CkRollupFunction' */ declare enum SystemStreamDataCkRollupFunctionDto { /** Arithmetic mean. Stored as sum and count columns; the average is computed on read. */ AvgDto = "AVG", /** Number of non-null values in the bucket. */ CountDto = "COUNT", /** Maximum value in the bucket. */ MaxDto = "MAX", /** Minimum value in the bucket. */ MinDto = "MIN", /** Sum of values in the bucket. */ SumDto = "SUM" } /** Runtime entities of construction kit type 'System-2.2.0/StreamDataQuery-1' */ type SystemStreamDataQueryDto = SystemEntityInterfaceDto & SystemPersistentQueryInterfaceDto & { __typename?: 'SystemStreamDataQuery'; archiveRtId?: Maybe; 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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtIds?: Maybe>; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; to?: Maybe; }; /** Runtime entities of construction kit type 'System-2.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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.2.0/StreamDataQuery-1' */ type SystemStreamDataQueryInterfaceDto = { archiveRtId?: Maybe; 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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtIds?: Maybe>; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; to?: Maybe; }; /** Interface for runtime entities of construction kit type 'System-2.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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.StreamData-1.6.4/RawArchive-1' */ type SystemStreamDataRawArchiveDto = SystemEntityInterfaceDto & SystemStreamDataArchiveInterfaceDto & { __typename?: 'SystemStreamDataRawArchive'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; columns: Array; configuredBy?: Maybe; constructionKitType?: Maybe; dirtyWindows?: Maybe>; lastRecomputeFailureAt?: Maybe; lastRecomputeFailureReason?: Maybe; lastRecomputeStartedAt?: Maybe; lastRecomputeSuccessAt?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; pendingRecomputeRanges?: Maybe>; rawRetentionMs?: Maybe; recomputeInProgress: Scalars['Boolean']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; status: SystemStreamDataCkArchiveStatusDto; taggedBy?: Maybe; targetCkTypeId: Scalars['String']['output']; }; /** Runtime entities of construction kit type 'System.StreamData-1.6.4/RawArchive-1' */ type SystemStreamDataRawArchiveAssociationsArgsDto = { 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.StreamData-1.6.4/RawArchive-1' */ type SystemStreamDataRawArchiveConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.StreamData-1.6.4/RawArchive-1' */ type SystemStreamDataRawArchiveMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.StreamData-1.6.4/RawArchive-1' */ type SystemStreamDataRawArchiveMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.StreamData-1.6.4/RawArchive-1' */ type SystemStreamDataRawArchiveRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.StreamData-1.6.4/RawArchive-1' */ type SystemStreamDataRawArchiveRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.StreamData-1.6.4/RawArchive-1' */ type SystemStreamDataRawArchiveTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemStreamDataRawArchive`. */ type SystemStreamDataRawArchiveConnectionDto = { __typename?: 'SystemStreamDataRawArchiveConnection'; /** 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 `SystemStreamDataRawArchive`. */ type SystemStreamDataRawArchiveEdgeDto = { __typename?: 'SystemStreamDataRawArchiveEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemStreamDataRawArchiveInputDto = { columns?: InputMaybe>>; configuredBy?: InputMaybe>>; dirtyWindows?: InputMaybe>>; lastRecomputeFailureAt?: InputMaybe; lastRecomputeFailureReason?: InputMaybe; lastRecomputeStartedAt?: InputMaybe; lastRecomputeSuccessAt?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; pendingRecomputeRanges?: InputMaybe>>; rawRetentionMs?: InputMaybe; recomputeInProgress?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; status?: InputMaybe; taggedBy?: InputMaybe>>; targetCkTypeId?: InputMaybe; }; type SystemStreamDataRawArchiveInputUpdateDto = { /** Item to update */ item: SystemStreamDataRawArchiveInputDto; rtId?: InputMaybe; }; type SystemStreamDataRawArchiveMutationsDto = { __typename?: 'SystemStreamDataRawArchiveMutations'; /** Creates new entities of type 'SystemStreamDataRawArchive'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemStreamDataRawArchive'. */ update?: Maybe>>; }; type SystemStreamDataRawArchiveMutationsCreateArgsDto = { entities: Array>; }; type SystemStreamDataRawArchiveMutationsUpdateArgsDto = { entities: Array>; }; type SystemStreamDataRawArchiveUpdateDto = { __typename?: 'SystemStreamDataRawArchiveUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemStreamDataRawArchiveUpdateMessageDto = { __typename?: 'SystemStreamDataRawArchiveUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'System.StreamData-1.6.4/RecomputeJob-1' */ type SystemStreamDataRecomputeJobDto = SystemEntityInterfaceDto & { __typename?: 'SystemStreamDataRecomputeJob'; archiveRtId: Scalars['String']['output']; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; durationMs?: Maybe; errorReason?: Maybe; finishedAt?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; rangeEnd: Scalars['DateTime']['output']; rangeStart: Scalars['DateTime']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rowsProcessed?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtIdScope?: Maybe; rtVersion?: Maybe; rtWellKnownName?: Maybe; stagingTableName?: Maybe; startedAt?: Maybe; state: SystemStreamDataCkRecomputeJobStateDto; taggedBy?: Maybe; trigger: SystemStreamDataCkRecomputeTriggerDto; windowsProcessed?: Maybe; }; /** Runtime entities of construction kit type 'System.StreamData-1.6.4/RecomputeJob-1' */ type SystemStreamDataRecomputeJobAssociationsArgsDto = { 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.StreamData-1.6.4/RecomputeJob-1' */ type SystemStreamDataRecomputeJobConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.StreamData-1.6.4/RecomputeJob-1' */ type SystemStreamDataRecomputeJobMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.StreamData-1.6.4/RecomputeJob-1' */ type SystemStreamDataRecomputeJobMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.StreamData-1.6.4/RecomputeJob-1' */ type SystemStreamDataRecomputeJobRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.StreamData-1.6.4/RecomputeJob-1' */ type SystemStreamDataRecomputeJobRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.StreamData-1.6.4/RecomputeJob-1' */ type SystemStreamDataRecomputeJobTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemStreamDataRecomputeJob`. */ type SystemStreamDataRecomputeJobConnectionDto = { __typename?: 'SystemStreamDataRecomputeJobConnection'; /** 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 `SystemStreamDataRecomputeJob`. */ type SystemStreamDataRecomputeJobEdgeDto = { __typename?: 'SystemStreamDataRecomputeJobEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemStreamDataRecomputeJobInputDto = { archiveRtId?: InputMaybe; configuredBy?: InputMaybe>>; durationMs?: InputMaybe; errorReason?: InputMaybe; finishedAt?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; rangeEnd?: InputMaybe; rangeStart?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rowsProcessed?: InputMaybe; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtIdScope?: InputMaybe; rtWellKnownName?: InputMaybe; stagingTableName?: InputMaybe; startedAt?: InputMaybe; state?: InputMaybe; taggedBy?: InputMaybe>>; trigger?: InputMaybe; windowsProcessed?: InputMaybe; }; type SystemStreamDataRecomputeJobInputUpdateDto = { /** Item to update */ item: SystemStreamDataRecomputeJobInputDto; rtId?: InputMaybe; }; type SystemStreamDataRecomputeJobMutationsDto = { __typename?: 'SystemStreamDataRecomputeJobMutations'; /** Creates new entities of type 'SystemStreamDataRecomputeJob'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemStreamDataRecomputeJob'. */ update?: Maybe>>; }; type SystemStreamDataRecomputeJobMutationsCreateArgsDto = { entities: Array>; }; type SystemStreamDataRecomputeJobMutationsUpdateArgsDto = { entities: Array>; }; type SystemStreamDataRecomputeJobUpdateDto = { __typename?: 'SystemStreamDataRecomputeJobUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemStreamDataRecomputeJobUpdateMessageDto = { __typename?: 'SystemStreamDataRecomputeJobUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'System.StreamData-1.6.4/RollupArchive-1' */ type SystemStreamDataRollupArchiveDto = SystemEntityInterfaceDto & SystemStreamDataArchiveInterfaceDto & { __typename?: 'SystemStreamDataRollupArchive'; aggregations: Array; associations?: Maybe; bucketAlignment?: Maybe; bucketSizeMs: Scalars['Long']['output']; ckTypeId: Scalars['RtCkTypeId']['output']; columns: Array; configuredBy?: Maybe; constructionKitType?: Maybe; dirtyWindows?: Maybe>; frozenUntil?: Maybe; lastAggregatedBucketEnd?: Maybe; lastRecomputeFailureAt?: Maybe; lastRecomputeFailureReason?: Maybe; lastRecomputeStartedAt?: Maybe; lastRecomputeSuccessAt?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; pendingRecomputeRanges?: Maybe>; rawRetentionMs?: Maybe; recomputeInProgress: Scalars['Boolean']['output']; referenceTimeZone?: Maybe; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; sourceArchiveRtId: Scalars['String']['output']; status: SystemStreamDataCkArchiveStatusDto; taggedBy?: Maybe; targetCkTypeId: Scalars['String']['output']; watermarkLagMs: Scalars['Long']['output']; }; /** Runtime entities of construction kit type 'System.StreamData-1.6.4/RollupArchive-1' */ type SystemStreamDataRollupArchiveAssociationsArgsDto = { 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.StreamData-1.6.4/RollupArchive-1' */ type SystemStreamDataRollupArchiveConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.StreamData-1.6.4/RollupArchive-1' */ type SystemStreamDataRollupArchiveMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.StreamData-1.6.4/RollupArchive-1' */ type SystemStreamDataRollupArchiveMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.StreamData-1.6.4/RollupArchive-1' */ type SystemStreamDataRollupArchiveRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.StreamData-1.6.4/RollupArchive-1' */ type SystemStreamDataRollupArchiveRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.StreamData-1.6.4/RollupArchive-1' */ type SystemStreamDataRollupArchiveTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemStreamDataRollupArchive`. */ type SystemStreamDataRollupArchiveConnectionDto = { __typename?: 'SystemStreamDataRollupArchiveConnection'; /** 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 `SystemStreamDataRollupArchive`. */ type SystemStreamDataRollupArchiveEdgeDto = { __typename?: 'SystemStreamDataRollupArchiveEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemStreamDataRollupArchiveInputDto = { aggregations?: InputMaybe>>; bucketAlignment?: InputMaybe; bucketSizeMs?: InputMaybe; columns?: InputMaybe>>; configuredBy?: InputMaybe>>; dirtyWindows?: InputMaybe>>; frozenUntil?: InputMaybe; lastAggregatedBucketEnd?: InputMaybe; lastRecomputeFailureAt?: InputMaybe; lastRecomputeFailureReason?: InputMaybe; lastRecomputeStartedAt?: InputMaybe; lastRecomputeSuccessAt?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; pendingRecomputeRanges?: InputMaybe>>; rawRetentionMs?: InputMaybe; recomputeInProgress?: InputMaybe; referenceTimeZone?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; sourceArchiveRtId?: InputMaybe; status?: InputMaybe; taggedBy?: InputMaybe>>; targetCkTypeId?: InputMaybe; watermarkLagMs?: InputMaybe; }; type SystemStreamDataRollupArchiveInputUpdateDto = { /** Item to update */ item: SystemStreamDataRollupArchiveInputDto; rtId?: InputMaybe; }; type SystemStreamDataRollupArchiveMutationsDto = { __typename?: 'SystemStreamDataRollupArchiveMutations'; /** Creates new entities of type 'SystemStreamDataRollupArchive'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemStreamDataRollupArchive'. */ update?: Maybe>>; }; type SystemStreamDataRollupArchiveMutationsCreateArgsDto = { entities: Array>; }; type SystemStreamDataRollupArchiveMutationsUpdateArgsDto = { entities: Array>; }; type SystemStreamDataRollupArchiveUpdateDto = { __typename?: 'SystemStreamDataRollupArchiveUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemStreamDataRollupArchiveUpdateMessageDto = { __typename?: 'SystemStreamDataRollupArchiveUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'System.StreamData-1.6.4/TimeRangeArchive-1' */ type SystemStreamDataTimeRangeArchiveDto = SystemEntityInterfaceDto & SystemStreamDataArchiveInterfaceDto & { __typename?: 'SystemStreamDataTimeRangeArchive'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; columns: Array; configuredBy?: Maybe; constructionKitType?: Maybe; dirtyWindows?: Maybe>; lastRecomputeFailureAt?: Maybe; lastRecomputeFailureReason?: Maybe; lastRecomputeStartedAt?: Maybe; lastRecomputeSuccessAt?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; pendingRecomputeRanges?: Maybe>; period?: Maybe; rawRetentionMs?: Maybe; recomputeInProgress: Scalars['Boolean']['output']; relatesFrom?: Maybe; relatesTo?: Maybe; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; status: SystemStreamDataCkArchiveStatusDto; taggedBy?: Maybe; targetCkTypeId: Scalars['String']['output']; }; /** Runtime entities of construction kit type 'System.StreamData-1.6.4/TimeRangeArchive-1' */ type SystemStreamDataTimeRangeArchiveAssociationsArgsDto = { 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.StreamData-1.6.4/TimeRangeArchive-1' */ type SystemStreamDataTimeRangeArchiveConfiguredByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.StreamData-1.6.4/TimeRangeArchive-1' */ type SystemStreamDataTimeRangeArchiveMapsFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.StreamData-1.6.4/TimeRangeArchive-1' */ type SystemStreamDataTimeRangeArchiveMapsToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.StreamData-1.6.4/TimeRangeArchive-1' */ type SystemStreamDataTimeRangeArchiveRelatesFromArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.StreamData-1.6.4/TimeRangeArchive-1' */ type SystemStreamDataTimeRangeArchiveRelatesToArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** Runtime entities of construction kit type 'System.StreamData-1.6.4/TimeRangeArchive-1' */ type SystemStreamDataTimeRangeArchiveTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemStreamDataTimeRangeArchive`. */ type SystemStreamDataTimeRangeArchiveConnectionDto = { __typename?: 'SystemStreamDataTimeRangeArchiveConnection'; /** 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 `SystemStreamDataTimeRangeArchive`. */ type SystemStreamDataTimeRangeArchiveEdgeDto = { __typename?: 'SystemStreamDataTimeRangeArchiveEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemStreamDataTimeRangeArchiveInputDto = { columns?: InputMaybe>>; configuredBy?: InputMaybe>>; dirtyWindows?: InputMaybe>>; lastRecomputeFailureAt?: InputMaybe; lastRecomputeFailureReason?: InputMaybe; lastRecomputeStartedAt?: InputMaybe; lastRecomputeSuccessAt?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; pendingRecomputeRanges?: InputMaybe>>; period?: InputMaybe; rawRetentionMs?: InputMaybe; recomputeInProgress?: InputMaybe; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; status?: InputMaybe; taggedBy?: InputMaybe>>; targetCkTypeId?: InputMaybe; }; type SystemStreamDataTimeRangeArchiveInputUpdateDto = { /** Item to update */ item: SystemStreamDataTimeRangeArchiveInputDto; rtId?: InputMaybe; }; type SystemStreamDataTimeRangeArchiveMutationsDto = { __typename?: 'SystemStreamDataTimeRangeArchiveMutations'; /** Creates new entities of type 'SystemStreamDataTimeRangeArchive'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemStreamDataTimeRangeArchive'. */ update?: Maybe>>; }; type SystemStreamDataTimeRangeArchiveMutationsCreateArgsDto = { entities: Array>; }; type SystemStreamDataTimeRangeArchiveMutationsUpdateArgsDto = { entities: Array>; }; type SystemStreamDataTimeRangeArchiveUpdateDto = { __typename?: 'SystemStreamDataTimeRangeArchiveUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemStreamDataTimeRangeArchiveUpdateMessageDto = { __typename?: 'SystemStreamDataTimeRangeArchiveUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit type 'System-2.2.0/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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; tenantId: Scalars['String']['output']; }; /** Runtime entities of construction kit type 'System-2.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; usedBy?: Maybe; }; /** Runtime entities of construction kit type 'System-2.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; usedBy?: Maybe; }; /** Runtime entities of construction kit type 'System-2.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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.2.0/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 record 'System/TimeRange' */ type SystemTimeRangeDto = { __typename?: 'SystemTimeRange'; constructionKitType?: Maybe; from: Scalars['DateTime']['output']; to: Scalars['DateTime']['output']; }; type SystemTimeRangeInputDto = { from?: InputMaybe; to?: InputMaybe; }; /** Runtime entities of construction kit type 'System.UI-2.3.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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.UI-2.3.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.3.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.3.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.3.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.3.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.3.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.3.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.3.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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.UI-2.3.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.3.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.3.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.3.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.3.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.3.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.3.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.3.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.3.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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; type: Scalars['String']['output']; }; /** Runtime entities of construction kit type 'System.UI-2.3.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.3.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.3.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.3.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.3.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.3.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.3.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.3.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.3.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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; 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.3.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.3.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.3.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.3.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.3.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.3.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.3.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.3.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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; 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.3.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.3.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.3.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.3.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.3.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.3.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.3.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.3.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.3.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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; version: Scalars['String']['output']; }; /** Runtime entities of construction kit type 'System.UI-2.3.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.3.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.3.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.3.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.3.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.3.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.3.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.3.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.3.0/TreeNavigationConfiguration-1' */ type SystemUiTreeNavigationConfigurationDto = SystemEntityInterfaceDto & SystemUiuiElementInterfaceDto & { __typename?: 'SystemUITreeNavigationConfiguration'; associations?: Maybe; ckTypeId: Scalars['RtCkTypeId']['output']; configuredBy?: Maybe; constructionKitType?: Maybe; description?: Maybe; mapsFrom?: Maybe; mapsTo?: Maybe; name?: Maybe; perspectives?: Maybe>; relatesFrom?: Maybe; relatesTo?: Maybe; roles?: Maybe>; rtBlueprintAppliedAt?: Maybe; rtBlueprintLocked?: Maybe; rtBlueprintSource?: Maybe; rtChangedDateTime?: Maybe; rtCreationDateTime?: Maybe; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.UI-2.3.0/TreeNavigationConfiguration-1' */ type SystemUiTreeNavigationConfigurationAssociationsArgsDto = { 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.3.0/TreeNavigationConfiguration-1' */ type SystemUiTreeNavigationConfigurationConfiguredByArgsDto = { after?: 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.3.0/TreeNavigationConfiguration-1' */ type SystemUiTreeNavigationConfigurationMapsFromArgsDto = { after?: 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.3.0/TreeNavigationConfiguration-1' */ type SystemUiTreeNavigationConfigurationMapsToArgsDto = { after?: 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.3.0/TreeNavigationConfiguration-1' */ type SystemUiTreeNavigationConfigurationRelatesFromArgsDto = { after?: 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.3.0/TreeNavigationConfiguration-1' */ type SystemUiTreeNavigationConfigurationRelatesToArgsDto = { after?: 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.3.0/TreeNavigationConfiguration-1' */ type SystemUiTreeNavigationConfigurationTaggedByArgsDto = { after?: InputMaybe; aggregations?: InputMaybe; ckTypeIds: Array; fieldFilter?: InputMaybe>>; first?: InputMaybe; rtId?: InputMaybe; rtIds?: InputMaybe>>; searchFilter?: InputMaybe; sortOrder?: InputMaybe>>; }; /** A connection to `SystemUITreeNavigationConfiguration`. */ type SystemUiTreeNavigationConfigurationConnectionDto = { __typename?: 'SystemUITreeNavigationConfigurationConnection'; /** 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 `SystemUITreeNavigationConfiguration`. */ type SystemUiTreeNavigationConfigurationEdgeDto = { __typename?: 'SystemUITreeNavigationConfigurationEdge'; /** A cursor for use in pagination */ cursor: Scalars['String']['output']; /** The item at the end of the edge */ node?: Maybe; }; type SystemUiTreeNavigationConfigurationInputDto = { configuredBy?: InputMaybe>>; description?: InputMaybe; mapsFrom?: InputMaybe>>; mapsTo?: InputMaybe>>; name?: InputMaybe; perspectives?: InputMaybe>>; relatesFrom?: InputMaybe>>; relatesTo?: InputMaybe>>; roles?: InputMaybe>>; rtBlueprintAppliedAt?: InputMaybe; rtBlueprintLocked?: InputMaybe; rtBlueprintSource?: InputMaybe; rtWellKnownName?: InputMaybe; taggedBy?: InputMaybe>>; }; type SystemUiTreeNavigationConfigurationInputUpdateDto = { /** Item to update */ item: SystemUiTreeNavigationConfigurationInputDto; rtId?: InputMaybe; }; type SystemUiTreeNavigationConfigurationMutationsDto = { __typename?: 'SystemUITreeNavigationConfigurationMutations'; /** Creates new entities of type 'SystemUITreeNavigationConfiguration'. */ create?: Maybe>>; /** Updates existing entity of type 'SystemUITreeNavigationConfiguration'. */ update?: Maybe>>; }; type SystemUiTreeNavigationConfigurationMutationsCreateArgsDto = { entities: Array>; }; type SystemUiTreeNavigationConfigurationMutationsUpdateArgsDto = { entities: Array>; }; type SystemUiTreeNavigationConfigurationUpdateDto = { __typename?: 'SystemUITreeNavigationConfigurationUpdate'; /** The corresponding item */ item?: Maybe; updateState?: Maybe; }; type SystemUiTreeNavigationConfigurationUpdateMessageDto = { __typename?: 'SystemUITreeNavigationConfigurationUpdateMessage'; /** The corresponding items */ items?: Maybe>>; }; /** Runtime entities of construction kit record 'System.UI/TreeNavigationRoleConfig' */ type SystemUiTreeNavigationRoleConfigDto = { __typename?: 'SystemUITreeNavigationRoleConfig'; constructionKitType?: Maybe; displayName?: Maybe; grouped?: Maybe; icon?: Maybe; roleId: Scalars['String']['output']; sortIndex?: Maybe; sourceCkTypeId: Scalars['String']['output']; visible?: Maybe; }; type SystemUiTreeNavigationRoleConfigInputDto = { displayName?: InputMaybe; grouped?: InputMaybe; icon?: InputMaybe; roleId?: InputMaybe; sortIndex?: InputMaybe; sourceCkTypeId?: InputMaybe; visible?: InputMaybe; }; /** Runtime entities of construction kit record 'System.UI/TreePerspectiveConfig' */ type SystemUiTreePerspectiveConfigDto = { __typename?: 'SystemUITreePerspectiveConfig'; constructionKitType?: Maybe; displayName: Scalars['String']['output']; icon?: Maybe; key: Scalars['String']['output']; primaryDirection?: Maybe; primaryRoleId?: Maybe; rootCkTypeId?: Maybe; rootMode: Scalars['String']['output']; secondaryRoleIds?: Maybe>; sortIndex?: Maybe; }; type SystemUiTreePerspectiveConfigInputDto = { displayName?: InputMaybe; icon?: InputMaybe; key?: InputMaybe; primaryDirection?: InputMaybe; primaryRoleId?: InputMaybe; rootCkTypeId?: InputMaybe; rootMode?: InputMaybe; secondaryRoleIds?: InputMaybe>; sortIndex?: InputMaybe; }; /** Runtime entities of construction kit type 'System.UI-2.3.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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Runtime entities of construction kit type 'System.UI-2.3.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.3.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.3.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.3.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.3.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.3.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.3.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.3.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; rtDisplayDescription?: Maybe; rtDisplayName: Scalars['String']['output']; rtId: Scalars['OctoObjectId']['output']; rtVersion?: Maybe; rtWellKnownName?: Maybe; taggedBy?: Maybe; }; /** Interface for runtime entities of construction kit type 'System.UI-2.3.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.3.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.3.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.3.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.3.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.3.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; }; type PossibleTypesResultData = { "possibleTypes": { "BasicAsset_EventSourceUnion": [ "BasicAsset", "EnvironmentWasteMeter", "IndustryBasicMachine", "IndustryEnergyEnergyConsumer", "IndustryEnergyEnergyMeter", "IndustryEnergyEnergyStorage", "IndustryEnergyInverter", "IndustryEnergyPhotovoltaicSystem", "IndustryEnergyPhotovoltaicSystemModule", "IndustryEnergyPhotovoltaicSystemString", "IndustryFluidHeatMeter", "IndustryFluidWaterMeter", "IndustryMaintenanceCostCenter", "IndustryMaintenanceEmployee", "IndustryMaintenanceWorkplace", "OctoSdkDemoMeteringPoint" ]; "BasicAsset_RelatesFromUnion": [ "BasicAsset", "BasicCity", "BasicCountry", "BasicDistrict", "BasicEmployee", "BasicEnergyConsumer", "BasicEnergyEdaMessage", "BasicEnergyEdaMeteringPoint", "BasicEnergyEdaProcess", "BasicEnergyEnergyMeasurement", "BasicEnergyOperatingFacility", "BasicEnergyProducer", "BasicState", "BasicTree", "BasicTreeNode", "EnergyCommunityBillingDocument", "EnergyCommunityBillingDocumentLineItem", "EnergyCommunityConsumer", "EnergyCommunityCustomer", "EnergyCommunityEdaMessage", "EnergyCommunityEdaMeteringPoint", "EnergyCommunityEdaProcess", "EnergyCommunityEnergyPrice", "EnergyCommunityEnergyQuantity", "EnergyCommunityOperatingFacility", "EnergyCommunityParticipationPeriod", "EnergyCommunityProducer", "EnvironmentCarbonBudget", "EnvironmentCarbonEmission", "EnvironmentCertificateOfOrigin", "EnvironmentComplianceRecord", "EnvironmentEnvironmentalGoal", "EnvironmentWasteMeter", "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", "IndustryManufacturingPartialFeedback", "IndustryManufacturingProductionOrder", "IndustryManufacturingProductionOrderItem", "IndustryManufacturingShift", "IndustryManufacturingShiftMachine", "IndustryManufacturingShiftOrderItem", "IndustryManufacturingShiftTemplate", "OctoSdkDemoCustomer", "OctoSdkDemoMeteringPoint", "OctoSdkDemoOperatingFacility", "SystemAggregationRtQuery", "SystemAggregationSdQuery", "SystemAiAiAgentConfig", "SystemAiAiAgentJob", "SystemAiAiAgentSession", "SystemAiAiApprovalRequest", "SystemAiAiAuditEvent", "SystemAiAiCredentialBinding", "SystemAiAiCredentialTicket", "SystemAiAiKnowledgeSource", "SystemAiAiPromptTemplate", "SystemAiAiQuotaLimit", "SystemAiAiSessionEvent", "SystemAiAiTokenLease", "SystemAiAiToolPolicy", "SystemAiAiUsageRecord", "SystemAutoIncrement", "SystemBlueprintBackup", "SystemBlueprintHistory", "SystemBlueprintInstallation", "SystemBotAttributeAggregateConfiguration", "SystemBotFixup", "SystemCommunicationAdapter", "SystemCommunicationAiConfiguration", "SystemCommunicationApplication", "SystemCommunicationDataFlow", "SystemCommunicationDataPointMapping", "SystemCommunicationDiscordConfiguration", "SystemCommunicationEMailReceiverConfiguration", "SystemCommunicationEMailSenderConfiguration", "SystemCommunicationEdaConfiguration", "SystemCommunicationEnergyCommunityConfiguration", "SystemCommunicationFinApiConfiguration", "SystemCommunicationGrafanaConfiguration", "SystemCommunicationHelmRepositoryConfiguration", "SystemCommunicationLoxoneConfiguration", "SystemCommunicationMicrosoftGraphConfiguration", "SystemCommunicationPipeline", "SystemCommunicationPipelineExecution", "SystemCommunicationPipelineStatistics", "SystemCommunicationPipelineTrigger", "SystemCommunicationPool", "SystemCommunicationSapConfiguration", "SystemCommunicationServiceAccountConfiguration", "SystemCommunicationSftpConfiguration", "SystemCommunicationTag", "SystemDownsamplingSdQuery", "SystemGroupingAggregationRtQuery", "SystemGroupingAggregationSdQuery", "SystemIdentityApiResource", "SystemIdentityApiScope", "SystemIdentityAzureEntraIdIdentityProvider", "SystemIdentityClient", "SystemIdentityClientMirror", "SystemIdentityDataProtectionKey", "SystemIdentityEmailDomainGroupRule", "SystemIdentityExternalTenantUserMapping", "SystemIdentityFacebookIdentityProvider", "SystemIdentityGoogleIdentityProvider", "SystemIdentityGroup", "SystemIdentityIdentityResource", "SystemIdentityMicrosoftAdIdentityProvider", "SystemIdentityMicrosoftIdentityProvider", "SystemIdentityOctoTenantIdentityProvider", "SystemIdentityOpenLdapIdentityProvider", "SystemIdentityPermission", "SystemIdentityPermissionRole", "SystemIdentityPersistedGrant", "SystemIdentityRole", "SystemIdentityServerSideSession", "SystemIdentityUser", "SystemMigrationHistory", "SystemNotificationCssTemplateConfiguration", "SystemNotificationEvent", "SystemNotificationMailNotificationConfiguration", "SystemNotificationNotificationTemplate", "SystemNotificationStatefulEvent", "SystemReportingConnectionInfo", "SystemReportingFileSystemItem", "SystemReportingFolder", "SystemReportingFolderRoot", "SystemSimpleRtQuery", "SystemSimpleSdQuery", "SystemStreamDataRawArchive", "SystemStreamDataRecomputeJob", "SystemStreamDataRollupArchive", "SystemStreamDataTimeRangeArchive", "SystemTenant", "SystemTenantConfiguration", "SystemTenantModeConfiguration", "SystemUIBranding", "SystemUIDashboard", "SystemUIDashboardWidget", "SystemUIProcessDiagram", "SystemUISymbolDefinition", "SystemUISymbolLibrary", "SystemUITreeNavigationConfiguration" ]; "BasicDocumentInterface": [ "EnergyCommunityBillingDocument" ]; "BasicEmployee_EmployeeUnion": [ "BasicEmployee" ]; "BasicEmployee_EmployeesUnion": [ "BasicEmployee" ]; "BasicEnergyEdaMessage_MessagesUnion": [ "BasicEnergyEdaMessage" ]; "BasicEnergyEdaProcess_ProcessUnion": [ "BasicEnergyEdaProcess" ]; "BasicEnergyEnergyMeasurement_ChildrenUnion": [ "BasicEnergyEnergyMeasurement" ]; "BasicEnergyMeteringPointInterface": [ "BasicEnergyConsumer", "BasicEnergyProducer" ]; "BasicEnergyMeteringPoint_ChildrenUnion": [ "BasicAsset", "BasicCity", "BasicCountry", "BasicDistrict", "BasicEnergyConsumer", "BasicEnergyOperatingFacility", "BasicEnergyProducer", "BasicState", "BasicTreeNode", "EnergyCommunityOperatingFacility", "EnvironmentCarbonBudget", "EnvironmentCarbonEmission", "EnvironmentCertificateOfOrigin", "EnvironmentComplianceRecord", "EnvironmentEnvironmentalGoal", "EnvironmentWasteMeter", "IndustryBasicMachine", "IndustryEnergyDemandResponseEvent", "IndustryEnergyEnergyConsumer", "IndustryEnergyEnergyCost", "IndustryEnergyEnergyForecast", "IndustryEnergyEnergyMeter", "IndustryEnergyEnergyPerformanceIndicator", "IndustryEnergyEnergyStorage", "IndustryEnergyInverter", "IndustryEnergyPhotovoltaicSystem", "IndustryEnergyPhotovoltaicSystemModule", "IndustryEnergyPhotovoltaicSystemString", "IndustryFluidHeatMeter", "IndustryFluidWaterMeter", "IndustryMaintenanceCostCenter", "IndustryMaintenanceEmployee", "IndustryMaintenanceWorkplace", "OctoSdkDemoMeteringPoint", "OctoSdkDemoOperatingFacility" ]; "BasicEnergyMeteringPoint_ParentUnion": [ "BasicEnergyConsumer", "BasicEnergyProducer" ]; "BasicEnergyOperatingFacility_ParentUnion": [ "BasicEnergyOperatingFacility" ]; "BasicNamedEntityInterface": [ "BasicEnergyConsumer", "BasicEnergyEdaProcess", "BasicEnergyMeteringPoint", "BasicEnergyProducer", "BasicTree", "EnergyCommunityConsumer", "EnergyCommunityEdaProcess", "EnergyCommunityMeteringPoint", "EnergyCommunityProducer", "EnvironmentCarbonBudget", "EnvironmentCertificateOfOrigin", "EnvironmentComplianceRecord", "EnvironmentEnvironmentalGoal", "IndustryBasicAlarm", "IndustryBasicEvent", "IndustryBasicRuntimeVariable", "IndustryEnergyDemandResponseEvent", "IndustryEnergyEnergyPerformanceIndicator", "IndustryManufacturingShiftTemplate" ]; "BasicTreeNode_ChildrenUnion": [ "BasicAsset", "BasicCity", "BasicCountry", "BasicDistrict", "BasicEnergyOperatingFacility", "BasicState", "BasicTreeNode", "EnergyCommunityOperatingFacility", "EnvironmentCarbonBudget", "EnvironmentCarbonEmission", "EnvironmentCertificateOfOrigin", "EnvironmentComplianceRecord", "EnvironmentEnvironmentalGoal", "EnvironmentWasteMeter", "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", "BasicEnergyOperatingFacility", "BasicState", "BasicTreeNode", "EnergyCommunityOperatingFacility", "EnvironmentWasteMeter", "IndustryBasicMachine", "IndustryEnergyEnergyConsumer", "IndustryEnergyEnergyMeter", "IndustryEnergyEnergyStorage", "IndustryEnergyInverter", "IndustryEnergyPhotovoltaicSystem", "IndustryEnergyPhotovoltaicSystemModule", "IndustryEnergyPhotovoltaicSystemString", "IndustryFluidHeatMeter", "IndustryFluidWaterMeter", "IndustryMaintenanceCostCenter", "IndustryMaintenanceEmployee", "IndustryMaintenanceWorkplace", "OctoSdkDemoMeteringPoint", "OctoSdkDemoOperatingFacility" ]; "BasicTreeNode_ParentUnion": [ "BasicAsset", "BasicCity", "BasicCountry", "BasicDistrict", "BasicEnergyOperatingFacility", "BasicState", "BasicTreeNode", "EnergyCommunityOperatingFacility", "EnvironmentWasteMeter", "IndustryBasicMachine", "IndustryEnergyEnergyConsumer", "IndustryEnergyEnergyMeter", "IndustryEnergyEnergyStorage", "IndustryEnergyInverter", "IndustryEnergyPhotovoltaicSystem", "IndustryEnergyPhotovoltaicSystemModule", "IndustryEnergyPhotovoltaicSystemString", "IndustryFluidHeatMeter", "IndustryFluidWaterMeter", "IndustryMaintenanceCostCenter", "IndustryMaintenanceEmployee", "IndustryMaintenanceWorkplace", "OctoSdkDemoMeteringPoint", "OctoSdkDemoOperatingFacility" ]; "BasicTreeNode_RelatesToUnion": [ "BasicAsset", "BasicCity", "BasicCountry", "BasicDistrict", "BasicEmployee", "BasicEnergyConsumer", "BasicEnergyEdaMessage", "BasicEnergyEdaMeteringPoint", "BasicEnergyEdaProcess", "BasicEnergyEnergyMeasurement", "BasicEnergyOperatingFacility", "BasicEnergyProducer", "BasicState", "BasicTree", "BasicTreeNode", "EnergyCommunityBillingDocument", "EnergyCommunityBillingDocumentLineItem", "EnergyCommunityConsumer", "EnergyCommunityCustomer", "EnergyCommunityEdaMessage", "EnergyCommunityEdaMeteringPoint", "EnergyCommunityEdaProcess", "EnergyCommunityEnergyPrice", "EnergyCommunityEnergyQuantity", "EnergyCommunityOperatingFacility", "EnergyCommunityParticipationPeriod", "EnergyCommunityProducer", "EnvironmentCarbonBudget", "EnvironmentCarbonEmission", "EnvironmentCertificateOfOrigin", "EnvironmentComplianceRecord", "EnvironmentEnvironmentalGoal", "EnvironmentWasteMeter", "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", "IndustryManufacturingPartialFeedback", "IndustryManufacturingProductionOrder", "IndustryManufacturingProductionOrderItem", "IndustryManufacturingShift", "IndustryManufacturingShiftMachine", "IndustryManufacturingShiftOrderItem", "IndustryManufacturingShiftTemplate", "OctoSdkDemoCustomer", "OctoSdkDemoMeteringPoint", "OctoSdkDemoOperatingFacility", "SystemAggregationRtQuery", "SystemAggregationSdQuery", "SystemAiAiAgentConfig", "SystemAiAiAgentJob", "SystemAiAiAgentSession", "SystemAiAiApprovalRequest", "SystemAiAiAuditEvent", "SystemAiAiCredentialBinding", "SystemAiAiCredentialTicket", "SystemAiAiKnowledgeSource", "SystemAiAiPromptTemplate", "SystemAiAiQuotaLimit", "SystemAiAiSessionEvent", "SystemAiAiTokenLease", "SystemAiAiToolPolicy", "SystemAiAiUsageRecord", "SystemAutoIncrement", "SystemBlueprintBackup", "SystemBlueprintHistory", "SystemBlueprintInstallation", "SystemBotAttributeAggregateConfiguration", "SystemBotFixup", "SystemCommunicationAdapter", "SystemCommunicationAiConfiguration", "SystemCommunicationApplication", "SystemCommunicationDataFlow", "SystemCommunicationDataPointMapping", "SystemCommunicationDiscordConfiguration", "SystemCommunicationEMailReceiverConfiguration", "SystemCommunicationEMailSenderConfiguration", "SystemCommunicationEdaConfiguration", "SystemCommunicationEnergyCommunityConfiguration", "SystemCommunicationFinApiConfiguration", "SystemCommunicationGrafanaConfiguration", "SystemCommunicationHelmRepositoryConfiguration", "SystemCommunicationLoxoneConfiguration", "SystemCommunicationMicrosoftGraphConfiguration", "SystemCommunicationPipeline", "SystemCommunicationPipelineExecution", "SystemCommunicationPipelineStatistics", "SystemCommunicationPipelineTrigger", "SystemCommunicationPool", "SystemCommunicationSapConfiguration", "SystemCommunicationServiceAccountConfiguration", "SystemCommunicationSftpConfiguration", "SystemCommunicationTag", "SystemDownsamplingSdQuery", "SystemGroupingAggregationRtQuery", "SystemGroupingAggregationSdQuery", "SystemIdentityApiResource", "SystemIdentityApiScope", "SystemIdentityAzureEntraIdIdentityProvider", "SystemIdentityClient", "SystemIdentityClientMirror", "SystemIdentityDataProtectionKey", "SystemIdentityEmailDomainGroupRule", "SystemIdentityExternalTenantUserMapping", "SystemIdentityFacebookIdentityProvider", "SystemIdentityGoogleIdentityProvider", "SystemIdentityGroup", "SystemIdentityIdentityResource", "SystemIdentityMicrosoftAdIdentityProvider", "SystemIdentityMicrosoftIdentityProvider", "SystemIdentityOctoTenantIdentityProvider", "SystemIdentityOpenLdapIdentityProvider", "SystemIdentityPermission", "SystemIdentityPermissionRole", "SystemIdentityPersistedGrant", "SystemIdentityRole", "SystemIdentityServerSideSession", "SystemIdentityUser", "SystemMigrationHistory", "SystemNotificationCssTemplateConfiguration", "SystemNotificationEvent", "SystemNotificationMailNotificationConfiguration", "SystemNotificationNotificationTemplate", "SystemNotificationStatefulEvent", "SystemReportingConnectionInfo", "SystemReportingFileSystemItem", "SystemReportingFolder", "SystemReportingFolderRoot", "SystemSimpleRtQuery", "SystemSimpleSdQuery", "SystemStreamDataRawArchive", "SystemStreamDataRecomputeJob", "SystemStreamDataRollupArchive", "SystemStreamDataTimeRangeArchive", "SystemTenant", "SystemTenantConfiguration", "SystemTenantModeConfiguration", "SystemUIBranding", "SystemUIDashboard", "SystemUIDashboardWidget", "SystemUIProcessDiagram", "SystemUISymbolDefinition", "SystemUISymbolLibrary", "SystemUITreeNavigationConfiguration" ]; "BasicTree_ParentUnion": [ "BasicAsset", "BasicCity", "BasicCountry", "BasicDistrict", "BasicEnergyOperatingFacility", "BasicState", "BasicTree", "BasicTreeNode", "EnergyCommunityOperatingFacility", "EnvironmentWasteMeter", "IndustryBasicMachine", "IndustryEnergyEnergyConsumer", "IndustryEnergyEnergyMeter", "IndustryEnergyEnergyStorage", "IndustryEnergyInverter", "IndustryEnergyPhotovoltaicSystem", "IndustryEnergyPhotovoltaicSystemModule", "IndustryEnergyPhotovoltaicSystemString", "IndustryFluidHeatMeter", "IndustryFluidWaterMeter", "IndustryMaintenanceCostCenter", "IndustryMaintenanceEmployee", "IndustryMaintenanceWorkplace", "OctoSdkDemoMeteringPoint", "OctoSdkDemoOperatingFacility" ]; "EnergyCommunityBillingDocumentLineItem_BillingUnion": [ "EnergyCommunityBillingDocumentLineItem" ]; "EnergyCommunityBillingDocumentLineItem_BillingsUnion": [ "EnergyCommunityBillingDocumentLineItem" ]; "EnergyCommunityBillingDocumentLineItem_ChildrenUnion": [ "EnergyCommunityBillingDocumentLineItem" ]; "EnergyCommunityBillingDocument_BillingUnion": [ "EnergyCommunityBillingDocument" ]; "EnergyCommunityBillingDocument_ParentUnion": [ "EnergyCommunityBillingDocument" ]; "EnergyCommunityCustomer_AssignedToUnion": [ "EnergyCommunityCustomer" ]; "EnergyCommunityCustomer_CustomerUnion": [ "EnergyCommunityCustomer" ]; "EnergyCommunityEdaMessage_MessagesUnion": [ "EnergyCommunityEdaMessage" ]; "EnergyCommunityEdaProcess_ProcessUnion": [ "EnergyCommunityEdaProcess" ]; "EnergyCommunityEnergyQuantity_AssignedToUnion": [ "EnergyCommunityEnergyQuantity" ]; "EnergyCommunityEnergyQuantity_ChildrenUnion": [ "EnergyCommunityEnergyQuantity" ]; "EnergyCommunityMeteringPointInterface": [ "EnergyCommunityConsumer", "EnergyCommunityProducer" ]; "EnergyCommunityMeteringPoint_ChildrenUnion": [ "BasicAsset", "BasicCity", "BasicCountry", "BasicDistrict", "BasicEnergyOperatingFacility", "BasicState", "BasicTreeNode", "EnergyCommunityConsumer", "EnergyCommunityOperatingFacility", "EnergyCommunityProducer", "EnvironmentCarbonBudget", "EnvironmentCarbonEmission", "EnvironmentCertificateOfOrigin", "EnvironmentComplianceRecord", "EnvironmentEnvironmentalGoal", "EnvironmentWasteMeter", "IndustryBasicMachine", "IndustryEnergyDemandResponseEvent", "IndustryEnergyEnergyConsumer", "IndustryEnergyEnergyCost", "IndustryEnergyEnergyForecast", "IndustryEnergyEnergyMeter", "IndustryEnergyEnergyPerformanceIndicator", "IndustryEnergyEnergyStorage", "IndustryEnergyInverter", "IndustryEnergyPhotovoltaicSystem", "IndustryEnergyPhotovoltaicSystemModule", "IndustryEnergyPhotovoltaicSystemString", "IndustryFluidHeatMeter", "IndustryFluidWaterMeter", "IndustryMaintenanceCostCenter", "IndustryMaintenanceEmployee", "IndustryMaintenanceWorkplace", "OctoSdkDemoMeteringPoint", "OctoSdkDemoOperatingFacility" ]; "EnergyCommunityMeteringPoint_MeteringPointUnion": [ "EnergyCommunityConsumer", "EnergyCommunityProducer" ]; "EnergyCommunityMeteringPoint_ParentUnion": [ "EnergyCommunityConsumer", "EnergyCommunityProducer" ]; "EnergyCommunityOperatingFacility_FacilitiesUnion": [ "EnergyCommunityOperatingFacility" ]; "EnergyCommunityOperatingFacility_ParentUnion": [ "EnergyCommunityOperatingFacility" ]; "EnergyCommunityParticipationPeriod_PeriodsUnion": [ "EnergyCommunityParticipationPeriod" ]; "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" ]; "IndustryManufacturingPartialFeedback_ChildrenUnion": [ "IndustryManufacturingPartialFeedback" ]; "IndustryManufacturingPartialFeedback_PartialFeedbacksUnion": [ "IndustryManufacturingPartialFeedback" ]; "IndustryManufacturingProductionOrderItem_ChildrenUnion": [ "IndustryManufacturingProductionOrderItem" ]; "IndustryManufacturingProductionOrderItem_OrderItemsUnion": [ "IndustryManufacturingProductionOrderItem" ]; "IndustryManufacturingProductionOrderItem_ProductionOrderItemUnion": [ "IndustryManufacturingProductionOrderItem" ]; "IndustryManufacturingProductionOrder_ParentUnion": [ "IndustryManufacturingProductionOrder" ]; "IndustryManufacturingShiftMachine_ChildrenUnion": [ "IndustryManufacturingShiftMachine", "IndustryManufacturingShiftOrderItem" ]; "IndustryManufacturingShiftMachine_ShiftAssignmentsUnion": [ "IndustryManufacturingShiftMachine" ]; "IndustryManufacturingShiftMachine_ShiftMachinesUnion": [ "IndustryManufacturingShiftMachine" ]; "IndustryManufacturingShiftOrderItem_ParentUnion": [ "IndustryManufacturingShiftOrderItem" ]; "IndustryManufacturingShiftOrderItem_ShiftOrderItemsUnion": [ "IndustryManufacturingShiftOrderItem" ]; "IndustryManufacturingShift_ParentUnion": [ "IndustryManufacturingShift" ]; "OctoSdkDemoCustomer_OwnedByUnion": [ "OctoSdkDemoCustomer" ]; "OctoSdkDemoOperatingFacility_OwnsUnion": [ "OctoSdkDemoOperatingFacility" ]; "RtQueryRow": [ "RtAggregationQueryRow", "RtGroupingAggregationQueryRow", "RtSimpleQueryRow" ]; "SystemAiAiAgentJob_AiResourcesUnion": [ "SystemAiAiAgentJob" ]; "SystemAiAiAgentSession_OwnedByAiResourceUnion": [ "SystemAiAiAgentSession" ]; "SystemBotAttributeAggregateConfiguration_ConfiguredByUnion": [ "SystemBotAttributeAggregateConfiguration" ]; "SystemCommunicationAdapter_AdapterExecutionsUnion": [ "SystemCommunicationAdapter" ]; "SystemCommunicationAdapter_ExecutedByUnion": [ "SystemCommunicationAdapter" ]; "SystemCommunicationDataFlow_ParentUnion": [ "SystemCommunicationDataFlow" ]; "SystemCommunicationDataPointMapping_MapsFromUnion": [ "SystemCommunicationDataPointMapping" ]; "SystemCommunicationDataPointMapping_MapsToUnion": [ "SystemCommunicationDataPointMapping" ]; "SystemCommunicationDeployableEntityInterface": [ "SystemCommunicationAdapter", "SystemCommunicationApplication", "SystemCommunicationDeployableWorkload", "SystemCommunicationPipeline", "SystemCommunicationPipelineTrigger", "SystemCommunicationPool" ]; "SystemCommunicationDeployableWorkloadInterface": [ "SystemCommunicationAdapter", "SystemCommunicationApplication" ]; "SystemCommunicationDeployableWorkload_HelmRepositoryUsedByUnion": [ "SystemCommunicationAdapter", "SystemCommunicationApplication" ]; "SystemCommunicationDeployableWorkload_ManagesUnion": [ "SystemCommunicationAdapter", "SystemCommunicationApplication" ]; "SystemCommunicationHelmRepositoryConfiguration_HelmRepositoryUnion": [ "SystemCommunicationHelmRepositoryConfiguration" ]; "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": [ "SystemAiAiAgentConfig", "SystemAiAiCredentialBinding", "SystemAiAiKnowledgeSource", "SystemAiAiPromptTemplate", "SystemAiAiQuotaLimit", "SystemAiAiToolPolicy", "SystemCommunicationAiConfiguration", "SystemCommunicationDiscordConfiguration", "SystemCommunicationEMailReceiverConfiguration", "SystemCommunicationEMailSenderConfiguration", "SystemCommunicationEdaConfiguration", "SystemCommunicationEnergyCommunityConfiguration", "SystemCommunicationFinApiConfiguration", "SystemCommunicationGrafanaConfiguration", "SystemCommunicationHelmRepositoryConfiguration", "SystemCommunicationLoxoneConfiguration", "SystemCommunicationMicrosoftGraphConfiguration", "SystemCommunicationSapConfiguration", "SystemCommunicationServiceAccountConfiguration", "SystemCommunicationSftpConfiguration", "SystemNotificationCssTemplateConfiguration", "SystemNotificationMailNotificationConfiguration", "SystemReportingConnectionInfo", "SystemTenantConfiguration", "SystemTenantModeConfiguration" ]; "SystemConfiguration_IsUsingUnion": [ "SystemAiAiAgentConfig", "SystemAiAiCredentialBinding", "SystemAiAiKnowledgeSource", "SystemAiAiPromptTemplate", "SystemAiAiQuotaLimit", "SystemAiAiToolPolicy", "SystemCommunicationAiConfiguration", "SystemCommunicationDiscordConfiguration", "SystemCommunicationEMailReceiverConfiguration", "SystemCommunicationEMailSenderConfiguration", "SystemCommunicationEdaConfiguration", "SystemCommunicationEnergyCommunityConfiguration", "SystemCommunicationFinApiConfiguration", "SystemCommunicationGrafanaConfiguration", "SystemCommunicationHelmRepositoryConfiguration", "SystemCommunicationLoxoneConfiguration", "SystemCommunicationMicrosoftGraphConfiguration", "SystemCommunicationSapConfiguration", "SystemCommunicationServiceAccountConfiguration", "SystemCommunicationSftpConfiguration", "SystemNotificationCssTemplateConfiguration", "SystemNotificationMailNotificationConfiguration", "SystemReportingConnectionInfo", "SystemTenantConfiguration", "SystemTenantModeConfiguration" ]; "SystemEntityInterface": [ "BasicDocument", "BasicEmployee", "BasicEnergyConsumer", "BasicEnergyEdaMessage", "BasicEnergyEdaMeteringPoint", "BasicEnergyEdaProcess", "BasicEnergyEnergyMeasurement", "BasicEnergyMeteringPoint", "BasicEnergyProducer", "BasicNamedEntity", "BasicTree", "EnergyCommunityBillingDocument", "EnergyCommunityBillingDocumentLineItem", "EnergyCommunityConsumer", "EnergyCommunityCustomer", "EnergyCommunityEdaMessage", "EnergyCommunityEdaMeteringPoint", "EnergyCommunityEdaProcess", "EnergyCommunityEnergyPrice", "EnergyCommunityEnergyQuantity", "EnergyCommunityMeteringPoint", "EnergyCommunityParticipationPeriod", "EnergyCommunityProducer", "EnvironmentCarbonBudget", "EnvironmentCarbonEmission", "EnvironmentCertificateOfOrigin", "EnvironmentComplianceRecord", "EnvironmentEnvironmentalGoal", "IndustryBasicAlarm", "IndustryBasicEvent", "IndustryBasicRuntimeVariable", "IndustryEnergyDemandResponseEvent", "IndustryEnergyEnergyCost", "IndustryEnergyEnergyForecast", "IndustryEnergyEnergyPerformanceIndicator", "IndustryMaintenanceAccount", "IndustryMaintenanceEnergyBalance", "IndustryMaintenanceJournalEntry", "IndustryMaintenanceOrder", "IndustryMaintenanceOrderCosts", "IndustryMaintenanceOrderFeedback", "IndustryManufacturingPartialFeedback", "IndustryManufacturingProductionOrder", "IndustryManufacturingProductionOrderItem", "IndustryManufacturingShift", "IndustryManufacturingShiftMachine", "IndustryManufacturingShiftOrderItem", "IndustryManufacturingShiftTemplate", "OctoSdkDemoCustomer", "SystemAggregationRtQuery", "SystemAggregationSdQuery", "SystemAiAiAgentConfig", "SystemAiAiAgentJob", "SystemAiAiAgentSession", "SystemAiAiApprovalRequest", "SystemAiAiAuditEvent", "SystemAiAiCredentialBinding", "SystemAiAiCredentialTicket", "SystemAiAiKnowledgeSource", "SystemAiAiPromptTemplate", "SystemAiAiQuotaLimit", "SystemAiAiSessionEvent", "SystemAiAiTokenLease", "SystemAiAiToolPolicy", "SystemAiAiUsageRecord", "SystemAutoIncrement", "SystemBlueprintBackup", "SystemBlueprintHistory", "SystemBlueprintInstallation", "SystemBotAttributeAggregateConfiguration", "SystemBotFixup", "SystemCommunicationAdapter", "SystemCommunicationAiConfiguration", "SystemCommunicationApplication", "SystemCommunicationDataFlow", "SystemCommunicationDataPointMapping", "SystemCommunicationDeployableEntity", "SystemCommunicationDeployableWorkload", "SystemCommunicationDiscordConfiguration", "SystemCommunicationEMailReceiverConfiguration", "SystemCommunicationEMailSenderConfiguration", "SystemCommunicationEdaConfiguration", "SystemCommunicationEnergyCommunityConfiguration", "SystemCommunicationFinApiConfiguration", "SystemCommunicationGrafanaConfiguration", "SystemCommunicationHelmRepositoryConfiguration", "SystemCommunicationLoxoneConfiguration", "SystemCommunicationMicrosoftGraphConfiguration", "SystemCommunicationPipeline", "SystemCommunicationPipelineExecution", "SystemCommunicationPipelineStatistics", "SystemCommunicationPipelineTrigger", "SystemCommunicationPool", "SystemCommunicationSapConfiguration", "SystemCommunicationServiceAccountConfiguration", "SystemCommunicationSftpConfiguration", "SystemCommunicationTag", "SystemConfiguration", "SystemDownsamplingSdQuery", "SystemGroupingAggregationRtQuery", "SystemGroupingAggregationSdQuery", "SystemIdentityApiResource", "SystemIdentityApiScope", "SystemIdentityAzureEntraIdIdentityProvider", "SystemIdentityClient", "SystemIdentityClientMirror", "SystemIdentityDataProtectionKey", "SystemIdentityEmailDomainGroupRule", "SystemIdentityExternalTenantUserMapping", "SystemIdentityFacebookIdentityProvider", "SystemIdentityGoogleIdentityProvider", "SystemIdentityGroup", "SystemIdentityIdentityProvider", "SystemIdentityIdentityResource", "SystemIdentityMicrosoftAdIdentityProvider", "SystemIdentityMicrosoftIdentityProvider", "SystemIdentityOctoTenantIdentityProvider", "SystemIdentityOpenLdapIdentityProvider", "SystemIdentityPermission", "SystemIdentityPermissionRole", "SystemIdentityPersistedGrant", "SystemIdentityResource", "SystemIdentityRole", "SystemIdentityServerSideSession", "SystemIdentityUser", "SystemMigrationHistory", "SystemNotificationCssTemplateConfiguration", "SystemNotificationEvent", "SystemNotificationMailNotificationConfiguration", "SystemNotificationNotificationTemplate", "SystemNotificationStatefulEvent", "SystemPersistentQuery", "SystemReportingConnectionInfo", "SystemReportingFileSystemContainer", "SystemReportingFileSystemEntity", "SystemReportingFileSystemItem", "SystemReportingFolder", "SystemReportingFolderRoot", "SystemSimpleRtQuery", "SystemSimpleSdQuery", "SystemStreamDataArchive", "SystemStreamDataQuery", "SystemStreamDataRawArchive", "SystemStreamDataRecomputeJob", "SystemStreamDataRollupArchive", "SystemStreamDataTimeRangeArchive", "SystemTenant", "SystemTenantConfiguration", "SystemTenantModeConfiguration", "SystemUIBranding", "SystemUIDashboard", "SystemUIDashboardWidget", "SystemUIProcessDiagram", "SystemUISymbolDefinition", "SystemUISymbolLibrary", "SystemUITreeNavigationConfiguration", "SystemUIUIElement" ]; "SystemEntity_ConfiguresUnion": [ "BasicAsset", "BasicCity", "BasicCountry", "BasicDistrict", "BasicEmployee", "BasicEnergyConsumer", "BasicEnergyEdaMessage", "BasicEnergyEdaMeteringPoint", "BasicEnergyEdaProcess", "BasicEnergyEnergyMeasurement", "BasicEnergyOperatingFacility", "BasicEnergyProducer", "BasicState", "BasicTree", "BasicTreeNode", "EnergyCommunityBillingDocument", "EnergyCommunityBillingDocumentLineItem", "EnergyCommunityConsumer", "EnergyCommunityCustomer", "EnergyCommunityEdaMessage", "EnergyCommunityEdaMeteringPoint", "EnergyCommunityEdaProcess", "EnergyCommunityEnergyPrice", "EnergyCommunityEnergyQuantity", "EnergyCommunityOperatingFacility", "EnergyCommunityParticipationPeriod", "EnergyCommunityProducer", "EnvironmentCarbonBudget", "EnvironmentCarbonEmission", "EnvironmentCertificateOfOrigin", "EnvironmentComplianceRecord", "EnvironmentEnvironmentalGoal", "EnvironmentWasteMeter", "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", "IndustryManufacturingPartialFeedback", "IndustryManufacturingProductionOrder", "IndustryManufacturingProductionOrderItem", "IndustryManufacturingShift", "IndustryManufacturingShiftMachine", "IndustryManufacturingShiftOrderItem", "IndustryManufacturingShiftTemplate", "OctoSdkDemoCustomer", "OctoSdkDemoMeteringPoint", "OctoSdkDemoOperatingFacility", "SystemAggregationRtQuery", "SystemAggregationSdQuery", "SystemAiAiAgentConfig", "SystemAiAiAgentJob", "SystemAiAiAgentSession", "SystemAiAiApprovalRequest", "SystemAiAiAuditEvent", "SystemAiAiCredentialBinding", "SystemAiAiCredentialTicket", "SystemAiAiKnowledgeSource", "SystemAiAiPromptTemplate", "SystemAiAiQuotaLimit", "SystemAiAiSessionEvent", "SystemAiAiTokenLease", "SystemAiAiToolPolicy", "SystemAiAiUsageRecord", "SystemAutoIncrement", "SystemBlueprintBackup", "SystemBlueprintHistory", "SystemBlueprintInstallation", "SystemBotAttributeAggregateConfiguration", "SystemBotFixup", "SystemCommunicationAdapter", "SystemCommunicationAiConfiguration", "SystemCommunicationApplication", "SystemCommunicationDataFlow", "SystemCommunicationDataPointMapping", "SystemCommunicationDiscordConfiguration", "SystemCommunicationEMailReceiverConfiguration", "SystemCommunicationEMailSenderConfiguration", "SystemCommunicationEdaConfiguration", "SystemCommunicationEnergyCommunityConfiguration", "SystemCommunicationFinApiConfiguration", "SystemCommunicationGrafanaConfiguration", "SystemCommunicationHelmRepositoryConfiguration", "SystemCommunicationLoxoneConfiguration", "SystemCommunicationMicrosoftGraphConfiguration", "SystemCommunicationPipeline", "SystemCommunicationPipelineExecution", "SystemCommunicationPipelineStatistics", "SystemCommunicationPipelineTrigger", "SystemCommunicationPool", "SystemCommunicationSapConfiguration", "SystemCommunicationServiceAccountConfiguration", "SystemCommunicationSftpConfiguration", "SystemCommunicationTag", "SystemDownsamplingSdQuery", "SystemGroupingAggregationRtQuery", "SystemGroupingAggregationSdQuery", "SystemIdentityApiResource", "SystemIdentityApiScope", "SystemIdentityAzureEntraIdIdentityProvider", "SystemIdentityClient", "SystemIdentityClientMirror", "SystemIdentityDataProtectionKey", "SystemIdentityEmailDomainGroupRule", "SystemIdentityExternalTenantUserMapping", "SystemIdentityFacebookIdentityProvider", "SystemIdentityGoogleIdentityProvider", "SystemIdentityGroup", "SystemIdentityIdentityResource", "SystemIdentityMicrosoftAdIdentityProvider", "SystemIdentityMicrosoftIdentityProvider", "SystemIdentityOctoTenantIdentityProvider", "SystemIdentityOpenLdapIdentityProvider", "SystemIdentityPermission", "SystemIdentityPermissionRole", "SystemIdentityPersistedGrant", "SystemIdentityRole", "SystemIdentityServerSideSession", "SystemIdentityUser", "SystemMigrationHistory", "SystemNotificationCssTemplateConfiguration", "SystemNotificationEvent", "SystemNotificationMailNotificationConfiguration", "SystemNotificationNotificationTemplate", "SystemNotificationStatefulEvent", "SystemReportingConnectionInfo", "SystemReportingFileSystemItem", "SystemReportingFolder", "SystemReportingFolderRoot", "SystemSimpleRtQuery", "SystemSimpleSdQuery", "SystemStreamDataRawArchive", "SystemStreamDataRecomputeJob", "SystemStreamDataRollupArchive", "SystemStreamDataTimeRangeArchive", "SystemTenant", "SystemTenantConfiguration", "SystemTenantModeConfiguration", "SystemUIBranding", "SystemUIDashboard", "SystemUIDashboardWidget", "SystemUIProcessDiagram", "SystemUISymbolDefinition", "SystemUISymbolLibrary", "SystemUITreeNavigationConfiguration" ]; "SystemEntity_IsTaggingUnion": [ "BasicAsset", "BasicCity", "BasicCountry", "BasicDistrict", "BasicEmployee", "BasicEnergyConsumer", "BasicEnergyEdaMessage", "BasicEnergyEdaMeteringPoint", "BasicEnergyEdaProcess", "BasicEnergyEnergyMeasurement", "BasicEnergyOperatingFacility", "BasicEnergyProducer", "BasicState", "BasicTree", "BasicTreeNode", "EnergyCommunityBillingDocument", "EnergyCommunityBillingDocumentLineItem", "EnergyCommunityConsumer", "EnergyCommunityCustomer", "EnergyCommunityEdaMessage", "EnergyCommunityEdaMeteringPoint", "EnergyCommunityEdaProcess", "EnergyCommunityEnergyPrice", "EnergyCommunityEnergyQuantity", "EnergyCommunityOperatingFacility", "EnergyCommunityParticipationPeriod", "EnergyCommunityProducer", "EnvironmentCarbonBudget", "EnvironmentCarbonEmission", "EnvironmentCertificateOfOrigin", "EnvironmentComplianceRecord", "EnvironmentEnvironmentalGoal", "EnvironmentWasteMeter", "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", "IndustryManufacturingPartialFeedback", "IndustryManufacturingProductionOrder", "IndustryManufacturingProductionOrderItem", "IndustryManufacturingShift", "IndustryManufacturingShiftMachine", "IndustryManufacturingShiftOrderItem", "IndustryManufacturingShiftTemplate", "OctoSdkDemoCustomer", "OctoSdkDemoMeteringPoint", "OctoSdkDemoOperatingFacility", "SystemAggregationRtQuery", "SystemAggregationSdQuery", "SystemAiAiAgentConfig", "SystemAiAiAgentJob", "SystemAiAiAgentSession", "SystemAiAiApprovalRequest", "SystemAiAiAuditEvent", "SystemAiAiCredentialBinding", "SystemAiAiCredentialTicket", "SystemAiAiKnowledgeSource", "SystemAiAiPromptTemplate", "SystemAiAiQuotaLimit", "SystemAiAiSessionEvent", "SystemAiAiTokenLease", "SystemAiAiToolPolicy", "SystemAiAiUsageRecord", "SystemAutoIncrement", "SystemBlueprintBackup", "SystemBlueprintHistory", "SystemBlueprintInstallation", "SystemBotAttributeAggregateConfiguration", "SystemBotFixup", "SystemCommunicationAdapter", "SystemCommunicationAiConfiguration", "SystemCommunicationApplication", "SystemCommunicationDataFlow", "SystemCommunicationDataPointMapping", "SystemCommunicationDiscordConfiguration", "SystemCommunicationEMailReceiverConfiguration", "SystemCommunicationEMailSenderConfiguration", "SystemCommunicationEdaConfiguration", "SystemCommunicationEnergyCommunityConfiguration", "SystemCommunicationFinApiConfiguration", "SystemCommunicationGrafanaConfiguration", "SystemCommunicationHelmRepositoryConfiguration", "SystemCommunicationLoxoneConfiguration", "SystemCommunicationMicrosoftGraphConfiguration", "SystemCommunicationPipeline", "SystemCommunicationPipelineExecution", "SystemCommunicationPipelineStatistics", "SystemCommunicationPipelineTrigger", "SystemCommunicationPool", "SystemCommunicationSapConfiguration", "SystemCommunicationServiceAccountConfiguration", "SystemCommunicationSftpConfiguration", "SystemCommunicationTag", "SystemDownsamplingSdQuery", "SystemGroupingAggregationRtQuery", "SystemGroupingAggregationSdQuery", "SystemIdentityApiResource", "SystemIdentityApiScope", "SystemIdentityAzureEntraIdIdentityProvider", "SystemIdentityClient", "SystemIdentityClientMirror", "SystemIdentityDataProtectionKey", "SystemIdentityEmailDomainGroupRule", "SystemIdentityExternalTenantUserMapping", "SystemIdentityFacebookIdentityProvider", "SystemIdentityGoogleIdentityProvider", "SystemIdentityGroup", "SystemIdentityIdentityResource", "SystemIdentityMicrosoftAdIdentityProvider", "SystemIdentityMicrosoftIdentityProvider", "SystemIdentityOctoTenantIdentityProvider", "SystemIdentityOpenLdapIdentityProvider", "SystemIdentityPermission", "SystemIdentityPermissionRole", "SystemIdentityPersistedGrant", "SystemIdentityRole", "SystemIdentityServerSideSession", "SystemIdentityUser", "SystemMigrationHistory", "SystemNotificationCssTemplateConfiguration", "SystemNotificationEvent", "SystemNotificationMailNotificationConfiguration", "SystemNotificationNotificationTemplate", "SystemNotificationStatefulEvent", "SystemReportingConnectionInfo", "SystemReportingFileSystemItem", "SystemReportingFolder", "SystemReportingFolderRoot", "SystemSimpleRtQuery", "SystemSimpleSdQuery", "SystemStreamDataRawArchive", "SystemStreamDataRecomputeJob", "SystemStreamDataRollupArchive", "SystemStreamDataTimeRangeArchive", "SystemTenant", "SystemTenantConfiguration", "SystemTenantModeConfiguration", "SystemUIBranding", "SystemUIDashboard", "SystemUIDashboardWidget", "SystemUIProcessDiagram", "SystemUISymbolDefinition", "SystemUISymbolLibrary", "SystemUITreeNavigationConfiguration" ]; "SystemEntity_MappedAsSourceUnion": [ "BasicAsset", "BasicCity", "BasicCountry", "BasicDistrict", "BasicEmployee", "BasicEnergyConsumer", "BasicEnergyEdaMessage", "BasicEnergyEdaMeteringPoint", "BasicEnergyEdaProcess", "BasicEnergyEnergyMeasurement", "BasicEnergyOperatingFacility", "BasicEnergyProducer", "BasicState", "BasicTree", "BasicTreeNode", "EnergyCommunityBillingDocument", "EnergyCommunityBillingDocumentLineItem", "EnergyCommunityConsumer", "EnergyCommunityCustomer", "EnergyCommunityEdaMessage", "EnergyCommunityEdaMeteringPoint", "EnergyCommunityEdaProcess", "EnergyCommunityEnergyPrice", "EnergyCommunityEnergyQuantity", "EnergyCommunityOperatingFacility", "EnergyCommunityParticipationPeriod", "EnergyCommunityProducer", "EnvironmentCarbonBudget", "EnvironmentCarbonEmission", "EnvironmentCertificateOfOrigin", "EnvironmentComplianceRecord", "EnvironmentEnvironmentalGoal", "EnvironmentWasteMeter", "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", "IndustryManufacturingPartialFeedback", "IndustryManufacturingProductionOrder", "IndustryManufacturingProductionOrderItem", "IndustryManufacturingShift", "IndustryManufacturingShiftMachine", "IndustryManufacturingShiftOrderItem", "IndustryManufacturingShiftTemplate", "OctoSdkDemoCustomer", "OctoSdkDemoMeteringPoint", "OctoSdkDemoOperatingFacility", "SystemAggregationRtQuery", "SystemAggregationSdQuery", "SystemAiAiAgentConfig", "SystemAiAiAgentJob", "SystemAiAiAgentSession", "SystemAiAiApprovalRequest", "SystemAiAiAuditEvent", "SystemAiAiCredentialBinding", "SystemAiAiCredentialTicket", "SystemAiAiKnowledgeSource", "SystemAiAiPromptTemplate", "SystemAiAiQuotaLimit", "SystemAiAiSessionEvent", "SystemAiAiTokenLease", "SystemAiAiToolPolicy", "SystemAiAiUsageRecord", "SystemAutoIncrement", "SystemBlueprintBackup", "SystemBlueprintHistory", "SystemBlueprintInstallation", "SystemBotAttributeAggregateConfiguration", "SystemBotFixup", "SystemCommunicationAdapter", "SystemCommunicationAiConfiguration", "SystemCommunicationApplication", "SystemCommunicationDataFlow", "SystemCommunicationDataPointMapping", "SystemCommunicationDiscordConfiguration", "SystemCommunicationEMailReceiverConfiguration", "SystemCommunicationEMailSenderConfiguration", "SystemCommunicationEdaConfiguration", "SystemCommunicationEnergyCommunityConfiguration", "SystemCommunicationFinApiConfiguration", "SystemCommunicationGrafanaConfiguration", "SystemCommunicationHelmRepositoryConfiguration", "SystemCommunicationLoxoneConfiguration", "SystemCommunicationMicrosoftGraphConfiguration", "SystemCommunicationPipeline", "SystemCommunicationPipelineExecution", "SystemCommunicationPipelineStatistics", "SystemCommunicationPipelineTrigger", "SystemCommunicationPool", "SystemCommunicationSapConfiguration", "SystemCommunicationServiceAccountConfiguration", "SystemCommunicationSftpConfiguration", "SystemCommunicationTag", "SystemDownsamplingSdQuery", "SystemGroupingAggregationRtQuery", "SystemGroupingAggregationSdQuery", "SystemIdentityApiResource", "SystemIdentityApiScope", "SystemIdentityAzureEntraIdIdentityProvider", "SystemIdentityClient", "SystemIdentityClientMirror", "SystemIdentityDataProtectionKey", "SystemIdentityEmailDomainGroupRule", "SystemIdentityExternalTenantUserMapping", "SystemIdentityFacebookIdentityProvider", "SystemIdentityGoogleIdentityProvider", "SystemIdentityGroup", "SystemIdentityIdentityResource", "SystemIdentityMicrosoftAdIdentityProvider", "SystemIdentityMicrosoftIdentityProvider", "SystemIdentityOctoTenantIdentityProvider", "SystemIdentityOpenLdapIdentityProvider", "SystemIdentityPermission", "SystemIdentityPermissionRole", "SystemIdentityPersistedGrant", "SystemIdentityRole", "SystemIdentityServerSideSession", "SystemIdentityUser", "SystemMigrationHistory", "SystemNotificationCssTemplateConfiguration", "SystemNotificationEvent", "SystemNotificationMailNotificationConfiguration", "SystemNotificationNotificationTemplate", "SystemNotificationStatefulEvent", "SystemReportingConnectionInfo", "SystemReportingFileSystemItem", "SystemReportingFolder", "SystemReportingFolderRoot", "SystemSimpleRtQuery", "SystemSimpleSdQuery", "SystemStreamDataRawArchive", "SystemStreamDataRecomputeJob", "SystemStreamDataRollupArchive", "SystemStreamDataTimeRangeArchive", "SystemTenant", "SystemTenantConfiguration", "SystemTenantModeConfiguration", "SystemUIBranding", "SystemUIDashboard", "SystemUIDashboardWidget", "SystemUIProcessDiagram", "SystemUISymbolDefinition", "SystemUISymbolLibrary", "SystemUITreeNavigationConfiguration" ]; "SystemEntity_MappedAsTargetUnion": [ "BasicAsset", "BasicCity", "BasicCountry", "BasicDistrict", "BasicEmployee", "BasicEnergyConsumer", "BasicEnergyEdaMessage", "BasicEnergyEdaMeteringPoint", "BasicEnergyEdaProcess", "BasicEnergyEnergyMeasurement", "BasicEnergyOperatingFacility", "BasicEnergyProducer", "BasicState", "BasicTree", "BasicTreeNode", "EnergyCommunityBillingDocument", "EnergyCommunityBillingDocumentLineItem", "EnergyCommunityConsumer", "EnergyCommunityCustomer", "EnergyCommunityEdaMessage", "EnergyCommunityEdaMeteringPoint", "EnergyCommunityEdaProcess", "EnergyCommunityEnergyPrice", "EnergyCommunityEnergyQuantity", "EnergyCommunityOperatingFacility", "EnergyCommunityParticipationPeriod", "EnergyCommunityProducer", "EnvironmentCarbonBudget", "EnvironmentCarbonEmission", "EnvironmentCertificateOfOrigin", "EnvironmentComplianceRecord", "EnvironmentEnvironmentalGoal", "EnvironmentWasteMeter", "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", "IndustryManufacturingPartialFeedback", "IndustryManufacturingProductionOrder", "IndustryManufacturingProductionOrderItem", "IndustryManufacturingShift", "IndustryManufacturingShiftMachine", "IndustryManufacturingShiftOrderItem", "IndustryManufacturingShiftTemplate", "OctoSdkDemoCustomer", "OctoSdkDemoMeteringPoint", "OctoSdkDemoOperatingFacility", "SystemAggregationRtQuery", "SystemAggregationSdQuery", "SystemAiAiAgentConfig", "SystemAiAiAgentJob", "SystemAiAiAgentSession", "SystemAiAiApprovalRequest", "SystemAiAiAuditEvent", "SystemAiAiCredentialBinding", "SystemAiAiCredentialTicket", "SystemAiAiKnowledgeSource", "SystemAiAiPromptTemplate", "SystemAiAiQuotaLimit", "SystemAiAiSessionEvent", "SystemAiAiTokenLease", "SystemAiAiToolPolicy", "SystemAiAiUsageRecord", "SystemAutoIncrement", "SystemBlueprintBackup", "SystemBlueprintHistory", "SystemBlueprintInstallation", "SystemBotAttributeAggregateConfiguration", "SystemBotFixup", "SystemCommunicationAdapter", "SystemCommunicationAiConfiguration", "SystemCommunicationApplication", "SystemCommunicationDataFlow", "SystemCommunicationDataPointMapping", "SystemCommunicationDiscordConfiguration", "SystemCommunicationEMailReceiverConfiguration", "SystemCommunicationEMailSenderConfiguration", "SystemCommunicationEdaConfiguration", "SystemCommunicationEnergyCommunityConfiguration", "SystemCommunicationFinApiConfiguration", "SystemCommunicationGrafanaConfiguration", "SystemCommunicationHelmRepositoryConfiguration", "SystemCommunicationLoxoneConfiguration", "SystemCommunicationMicrosoftGraphConfiguration", "SystemCommunicationPipeline", "SystemCommunicationPipelineExecution", "SystemCommunicationPipelineStatistics", "SystemCommunicationPipelineTrigger", "SystemCommunicationPool", "SystemCommunicationSapConfiguration", "SystemCommunicationServiceAccountConfiguration", "SystemCommunicationSftpConfiguration", "SystemCommunicationTag", "SystemDownsamplingSdQuery", "SystemGroupingAggregationRtQuery", "SystemGroupingAggregationSdQuery", "SystemIdentityApiResource", "SystemIdentityApiScope", "SystemIdentityAzureEntraIdIdentityProvider", "SystemIdentityClient", "SystemIdentityClientMirror", "SystemIdentityDataProtectionKey", "SystemIdentityEmailDomainGroupRule", "SystemIdentityExternalTenantUserMapping", "SystemIdentityFacebookIdentityProvider", "SystemIdentityGoogleIdentityProvider", "SystemIdentityGroup", "SystemIdentityIdentityResource", "SystemIdentityMicrosoftAdIdentityProvider", "SystemIdentityMicrosoftIdentityProvider", "SystemIdentityOctoTenantIdentityProvider", "SystemIdentityOpenLdapIdentityProvider", "SystemIdentityPermission", "SystemIdentityPermissionRole", "SystemIdentityPersistedGrant", "SystemIdentityRole", "SystemIdentityServerSideSession", "SystemIdentityUser", "SystemMigrationHistory", "SystemNotificationCssTemplateConfiguration", "SystemNotificationEvent", "SystemNotificationMailNotificationConfiguration", "SystemNotificationNotificationTemplate", "SystemNotificationStatefulEvent", "SystemReportingConnectionInfo", "SystemReportingFileSystemItem", "SystemReportingFolder", "SystemReportingFolderRoot", "SystemSimpleRtQuery", "SystemSimpleSdQuery", "SystemStreamDataRawArchive", "SystemStreamDataRecomputeJob", "SystemStreamDataRollupArchive", "SystemStreamDataTimeRangeArchive", "SystemTenant", "SystemTenantConfiguration", "SystemTenantModeConfiguration", "SystemUIBranding", "SystemUIDashboard", "SystemUIDashboardWidget", "SystemUIProcessDiagram", "SystemUISymbolDefinition", "SystemUISymbolLibrary", "SystemUITreeNavigationConfiguration" ]; "SystemEntity_RelatesFromUnion": [ "BasicAsset", "BasicCity", "BasicCountry", "BasicDistrict", "BasicEmployee", "BasicEnergyConsumer", "BasicEnergyEdaMessage", "BasicEnergyEdaMeteringPoint", "BasicEnergyEdaProcess", "BasicEnergyEnergyMeasurement", "BasicEnergyOperatingFacility", "BasicEnergyProducer", "BasicState", "BasicTree", "BasicTreeNode", "EnergyCommunityBillingDocument", "EnergyCommunityBillingDocumentLineItem", "EnergyCommunityConsumer", "EnergyCommunityCustomer", "EnergyCommunityEdaMessage", "EnergyCommunityEdaMeteringPoint", "EnergyCommunityEdaProcess", "EnergyCommunityEnergyPrice", "EnergyCommunityEnergyQuantity", "EnergyCommunityOperatingFacility", "EnergyCommunityParticipationPeriod", "EnergyCommunityProducer", "EnvironmentCarbonBudget", "EnvironmentCarbonEmission", "EnvironmentCertificateOfOrigin", "EnvironmentComplianceRecord", "EnvironmentEnvironmentalGoal", "EnvironmentWasteMeter", "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", "IndustryManufacturingPartialFeedback", "IndustryManufacturingProductionOrder", "IndustryManufacturingProductionOrderItem", "IndustryManufacturingShift", "IndustryManufacturingShiftMachine", "IndustryManufacturingShiftOrderItem", "IndustryManufacturingShiftTemplate", "OctoSdkDemoCustomer", "OctoSdkDemoMeteringPoint", "OctoSdkDemoOperatingFacility", "SystemAggregationRtQuery", "SystemAggregationSdQuery", "SystemAiAiAgentConfig", "SystemAiAiAgentJob", "SystemAiAiAgentSession", "SystemAiAiApprovalRequest", "SystemAiAiAuditEvent", "SystemAiAiCredentialBinding", "SystemAiAiCredentialTicket", "SystemAiAiKnowledgeSource", "SystemAiAiPromptTemplate", "SystemAiAiQuotaLimit", "SystemAiAiSessionEvent", "SystemAiAiTokenLease", "SystemAiAiToolPolicy", "SystemAiAiUsageRecord", "SystemAutoIncrement", "SystemBlueprintBackup", "SystemBlueprintHistory", "SystemBlueprintInstallation", "SystemBotAttributeAggregateConfiguration", "SystemBotFixup", "SystemCommunicationAdapter", "SystemCommunicationAiConfiguration", "SystemCommunicationApplication", "SystemCommunicationDataFlow", "SystemCommunicationDataPointMapping", "SystemCommunicationDiscordConfiguration", "SystemCommunicationEMailReceiverConfiguration", "SystemCommunicationEMailSenderConfiguration", "SystemCommunicationEdaConfiguration", "SystemCommunicationEnergyCommunityConfiguration", "SystemCommunicationFinApiConfiguration", "SystemCommunicationGrafanaConfiguration", "SystemCommunicationHelmRepositoryConfiguration", "SystemCommunicationLoxoneConfiguration", "SystemCommunicationMicrosoftGraphConfiguration", "SystemCommunicationPipeline", "SystemCommunicationPipelineExecution", "SystemCommunicationPipelineStatistics", "SystemCommunicationPipelineTrigger", "SystemCommunicationPool", "SystemCommunicationSapConfiguration", "SystemCommunicationServiceAccountConfiguration", "SystemCommunicationSftpConfiguration", "SystemCommunicationTag", "SystemDownsamplingSdQuery", "SystemGroupingAggregationRtQuery", "SystemGroupingAggregationSdQuery", "SystemIdentityApiResource", "SystemIdentityApiScope", "SystemIdentityAzureEntraIdIdentityProvider", "SystemIdentityClient", "SystemIdentityClientMirror", "SystemIdentityDataProtectionKey", "SystemIdentityEmailDomainGroupRule", "SystemIdentityExternalTenantUserMapping", "SystemIdentityFacebookIdentityProvider", "SystemIdentityGoogleIdentityProvider", "SystemIdentityGroup", "SystemIdentityIdentityResource", "SystemIdentityMicrosoftAdIdentityProvider", "SystemIdentityMicrosoftIdentityProvider", "SystemIdentityOctoTenantIdentityProvider", "SystemIdentityOpenLdapIdentityProvider", "SystemIdentityPermission", "SystemIdentityPermissionRole", "SystemIdentityPersistedGrant", "SystemIdentityRole", "SystemIdentityServerSideSession", "SystemIdentityUser", "SystemMigrationHistory", "SystemNotificationCssTemplateConfiguration", "SystemNotificationEvent", "SystemNotificationMailNotificationConfiguration", "SystemNotificationNotificationTemplate", "SystemNotificationStatefulEvent", "SystemReportingConnectionInfo", "SystemReportingFileSystemItem", "SystemReportingFolder", "SystemReportingFolderRoot", "SystemSimpleRtQuery", "SystemSimpleSdQuery", "SystemStreamDataRawArchive", "SystemStreamDataRecomputeJob", "SystemStreamDataRollupArchive", "SystemStreamDataTimeRangeArchive", "SystemTenant", "SystemTenantConfiguration", "SystemTenantModeConfiguration", "SystemUIBranding", "SystemUIDashboard", "SystemUIDashboardWidget", "SystemUIProcessDiagram", "SystemUISymbolDefinition", "SystemUISymbolLibrary", "SystemUITreeNavigationConfiguration" ]; "SystemEntity_RelatesToUnion": [ "BasicAsset", "BasicCity", "BasicCountry", "BasicDistrict", "BasicEmployee", "BasicEnergyConsumer", "BasicEnergyEdaMessage", "BasicEnergyEdaMeteringPoint", "BasicEnergyEdaProcess", "BasicEnergyEnergyMeasurement", "BasicEnergyOperatingFacility", "BasicEnergyProducer", "BasicState", "BasicTree", "BasicTreeNode", "EnergyCommunityBillingDocument", "EnergyCommunityBillingDocumentLineItem", "EnergyCommunityConsumer", "EnergyCommunityCustomer", "EnergyCommunityEdaMessage", "EnergyCommunityEdaMeteringPoint", "EnergyCommunityEdaProcess", "EnergyCommunityEnergyPrice", "EnergyCommunityEnergyQuantity", "EnergyCommunityOperatingFacility", "EnergyCommunityParticipationPeriod", "EnergyCommunityProducer", "EnvironmentCarbonBudget", "EnvironmentCarbonEmission", "EnvironmentCertificateOfOrigin", "EnvironmentComplianceRecord", "EnvironmentEnvironmentalGoal", "EnvironmentWasteMeter", "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", "IndustryManufacturingPartialFeedback", "IndustryManufacturingProductionOrder", "IndustryManufacturingProductionOrderItem", "IndustryManufacturingShift", "IndustryManufacturingShiftMachine", "IndustryManufacturingShiftOrderItem", "IndustryManufacturingShiftTemplate", "OctoSdkDemoCustomer", "OctoSdkDemoMeteringPoint", "OctoSdkDemoOperatingFacility", "SystemAggregationRtQuery", "SystemAggregationSdQuery", "SystemAiAiAgentConfig", "SystemAiAiAgentJob", "SystemAiAiAgentSession", "SystemAiAiApprovalRequest", "SystemAiAiAuditEvent", "SystemAiAiCredentialBinding", "SystemAiAiCredentialTicket", "SystemAiAiKnowledgeSource", "SystemAiAiPromptTemplate", "SystemAiAiQuotaLimit", "SystemAiAiSessionEvent", "SystemAiAiTokenLease", "SystemAiAiToolPolicy", "SystemAiAiUsageRecord", "SystemAutoIncrement", "SystemBlueprintBackup", "SystemBlueprintHistory", "SystemBlueprintInstallation", "SystemBotAttributeAggregateConfiguration", "SystemBotFixup", "SystemCommunicationAdapter", "SystemCommunicationAiConfiguration", "SystemCommunicationApplication", "SystemCommunicationDataFlow", "SystemCommunicationDataPointMapping", "SystemCommunicationDiscordConfiguration", "SystemCommunicationEMailReceiverConfiguration", "SystemCommunicationEMailSenderConfiguration", "SystemCommunicationEdaConfiguration", "SystemCommunicationEnergyCommunityConfiguration", "SystemCommunicationFinApiConfiguration", "SystemCommunicationGrafanaConfiguration", "SystemCommunicationHelmRepositoryConfiguration", "SystemCommunicationLoxoneConfiguration", "SystemCommunicationMicrosoftGraphConfiguration", "SystemCommunicationPipeline", "SystemCommunicationPipelineExecution", "SystemCommunicationPipelineStatistics", "SystemCommunicationPipelineTrigger", "SystemCommunicationPool", "SystemCommunicationSapConfiguration", "SystemCommunicationServiceAccountConfiguration", "SystemCommunicationSftpConfiguration", "SystemCommunicationTag", "SystemDownsamplingSdQuery", "SystemGroupingAggregationRtQuery", "SystemGroupingAggregationSdQuery", "SystemIdentityApiResource", "SystemIdentityApiScope", "SystemIdentityAzureEntraIdIdentityProvider", "SystemIdentityClient", "SystemIdentityClientMirror", "SystemIdentityDataProtectionKey", "SystemIdentityEmailDomainGroupRule", "SystemIdentityExternalTenantUserMapping", "SystemIdentityFacebookIdentityProvider", "SystemIdentityGoogleIdentityProvider", "SystemIdentityGroup", "SystemIdentityIdentityResource", "SystemIdentityMicrosoftAdIdentityProvider", "SystemIdentityMicrosoftIdentityProvider", "SystemIdentityOctoTenantIdentityProvider", "SystemIdentityOpenLdapIdentityProvider", "SystemIdentityPermission", "SystemIdentityPermissionRole", "SystemIdentityPersistedGrant", "SystemIdentityRole", "SystemIdentityServerSideSession", "SystemIdentityUser", "SystemMigrationHistory", "SystemNotificationCssTemplateConfiguration", "SystemNotificationEvent", "SystemNotificationMailNotificationConfiguration", "SystemNotificationNotificationTemplate", "SystemNotificationStatefulEvent", "SystemReportingConnectionInfo", "SystemReportingFileSystemItem", "SystemReportingFolder", "SystemReportingFolderRoot", "SystemSimpleRtQuery", "SystemSimpleSdQuery", "SystemStreamDataRawArchive", "SystemStreamDataRecomputeJob", "SystemStreamDataRollupArchive", "SystemStreamDataTimeRangeArchive", "SystemTenant", "SystemTenantConfiguration", "SystemTenantModeConfiguration", "SystemUIBranding", "SystemUIDashboard", "SystemUIDashboardWidget", "SystemUIProcessDiagram", "SystemUISymbolDefinition", "SystemUISymbolLibrary", "SystemUITreeNavigationConfiguration" ]; "SystemIdentityClient_AssignedEntitiesUnion": [ "SystemIdentityClient", "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": [ "SystemIdentityClient", "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" ]; "SystemStreamDataArchiveInterface": [ "SystemStreamDataRawArchive", "SystemStreamDataRollupArchive", "SystemStreamDataTimeRangeArchive" ]; "SystemStreamDataQueryInterface": [ "SystemAggregationSdQuery", "SystemDownsamplingSdQuery", "SystemGroupingAggregationSdQuery", "SystemSimpleSdQuery" ]; "SystemUIDashboardWidget_ChildrenUnion": [ "SystemUIDashboardWidget" ]; "SystemUIDashboard_ParentUnion": [ "SystemUIDashboard" ]; "SystemUISymbolDefinition_ChildrenUnion": [ "SystemUISymbolDefinition" ]; "SystemUISymbolLibrary_ParentUnion": [ "SystemUISymbolLibrary" ]; "SystemUIUIElementInterface": [ "SystemUIBranding", "SystemUIDashboard", "SystemUIDashboardWidget", "SystemUIProcessDiagram", "SystemUISymbolDefinition", "SystemUISymbolLibrary", "SystemUITreeNavigationConfiguration" ]; }; }; 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>; includeManyNavigations?: 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; /** * AI Adapter (octo-ai-services) public base URL. Surfaces the per-installation * AI service host so AI Console and the AgentConfig detail pages can build * tenant-scoped REST + SignalR URLs without inheriting from `meshAdapterUrl` * (the Mesh Adapter and the AI service ship as separate workloads). */ aiServices: string; /** * Reporting service (octo-report-services) public base URL. Used to build the * tenant-scoped enable/disable REST endpoints for the reporting feature. */ reportingServices: string; /** * MCP service (octo-mcp-service) public base URL. Optional because older * platform-services deployments do not serve the `mcpServices` field yet — * consumers must hide MCP-dependent UI when it is absent. */ mcpServices?: string; /** * Platform service (octo-platform-services) public base URL. Not part of the * `_configuration` payload (the service does not describe itself there) — * apps populate it from their bootstrap config's `platformUri`. */ platformServices?: 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[], includeManyNavigations?: boolean): 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; /** * Returns the tenant the caller is currently signed into, including its database name. * * The tenants list only contains child tenants, and a tenant's own registry entry lives in * its parent's database — so the current tenant's database name is not derivable client-side * and comes from this dedicated endpoint (AB#4601). Needed by any operation that has to name * the database of the current tenant, such as restoring it from a backup. */ getOwnTenant(): Promise; createTenant(tenantDto: TenantDto): Promise; attachTenant(dataSourceDto: TenantDto): Promise; detachTenant(childTenantId: string): Promise; deleteTenant(childTenantId: string): Promise; /** * Enables the Stream Data feature for a tenant. Installs the * `System.StreamData` CK model and provisions the backing time-series * storage. Errors propagate to the caller. * * Tenant-scoped REST endpoint: `POST {assetServices}{tenantId}/v1/streamdata/enable`. */ enableStreamData(tenantId: string): Promise; /** * Disables the Stream Data feature for a tenant. Drops the backing * time-series storage and removes the `System.StreamData` model. * Destructive — the UI must confirm before calling. Errors propagate to the * caller. * * Tenant-scoped REST endpoint: `POST {assetServices}{tenantId}/v1/streamdata/disable`. */ disableStreamData(tenantId: 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; private readonly authorizeService; runFixupScripts(tenantId: string): Promise; /** * Starts a tenant repository dump (backup) job. * * When `includeArchiveData` is `true` the produced artifact additionally bundles the tenant's * CrateDB archive row data (AB#4231, concept §7). The default (`false`) keeps the historical, * fully backward-compatible behaviour (Mongo metadata/config only → single `.tar.gz`); with the * flag set the bot job emits a larger `.octobak.zip` container instead. * * Frozen bot contract: `POST system/v1/jobs/dump-repository?tenantId=&includeArchiveData=`. */ dumpRepository(tenantId: string, includeArchiveData?: boolean): 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; /** * Starts an asynchronous archive-data export job (AB#4230, concept §5.1 / §8.2). The bot job * orchestrates the CrateDB row stream into a downloadable ZIP (`metadata.json` + `data.ndjson`); * the produced artifact is fetched afterwards via {@link downloadJobResultBinary}. * * When `window` is omitted the whole archive is exported; when supplied only rows whose * timestamp / `window_start` fall in `[fromUtc, toUtc)` are included. * * Frozen bot contract: * `POST system/v1/jobs/export-archive-data?tenantId=&archiveRtId=&fromUtc=&toUtc=` → `{ jobId }`. */ startExportArchiveData(tenantId: string, archiveRtId: string, window?: TimeWindowDto): Promise; /** * Uploads an archive-data ZIP via TUS (resumable, large-file safe — same transport as tenant * restore) and starts the import job (AB#4230, concept §5.1 / §8.2). The job validates the * `metadata.json` schema against the live target archive (concept §6) before any write; on a * mismatch the job fails with a field-level message that surfaces through * `JobManagementService.waitForJob` → `MessageService.showErrorWithDetails`. * * Frozen bot contract: * 1. TUS upload to `system/v1/tus-upload` (metadata: `filename`, `filetype`, `tenantId`, * `archiveRtId`, `importMode`). * 2. `POST system/v1/jobs/import-archive-data-from-upload?tusFileId=&tenantId=&archiveRtId=&mode=` * → `{ jobId }`. */ startImportArchiveDataWithUpload(tenantId: string, archiveRtId: string, file: File, mode: ImportStrategyDto, onProgress?: (bytesUploaded: number, bytesTotal: number) => void): Promise; private uploadArchiveDataZip; 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; /** * Builds the identity API base URL for an explicit tenant, bypassing the ambient * {@link TENANT_ID_PROVIDER}. Used when an operation must target a tenant other than the * currently-routed one — e.g. cleaning overlay URIs on a child tenant before its backup. */ private getApiBaseUrlForTenant; 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; getClientRoles(clientId: string): Promise; updateClientRoles(clientId: string, roleIds: string[]): Promise; addClientToRole(clientId: string, roleName: string): Promise; removeRoleFromClient(clientId: 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; /** * Lists the sub-tenants this `ClientCredentials` client has been * auto-provisioned into. Empty array when the client has no mirrors. */ getClientMirrors(clientId: string): Promise; /** * Backfill: provisions a flagged client into every existing sub-tenant of * the calling tenant. Server returns `400` if the client is not flagged. */ provisionClientInExistingTenants(clientId: string): Promise; /** * Manually provisions a flagged client into one specific sub-tenant. */ provisionClientInTenant(clientId: string, childTenantId: string): Promise; /** * Removes a single mirror (drops both the child-side client and the parent's * tracking row). */ unprovisionClientFromTenant(clientId: string, childTenantId: string): Promise; /** * Flips the `AutoProvisionInChildTenants` flag on a client without rewriting * the full client object. Flipping `false → true` does NOT auto-backfill — * use {@link provisionClientInExistingTenants} for that. */ setClientAutoProvisionInChildTenants(clientId: string, enabled: boolean): Promise; /** * Strips overlay URI entries from every blueprint-managed client of a tenant. Without * {@link overlayName} every `overlay:*` source is removed; with it, only `overlay:`. * `base` and `api` sourced URIs are always preserved. Destructive — the typical use is * producing a template-clean tenant dump; overlays can be re-applied afterwards via the * octo-tools `Apply-IdentityOverlay` cmdlet. * * `tenantId` targets a specific tenant explicitly (e.g. a child tenant being backed up), * bypassing the ambient route tenant. Omit it to use the current route tenant. */ cleanOverlayEntries(overlayName?: string, tenantId?: 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; addClientToGroup(rtId: string, clientId: string): Promise; removeClientFromGroup(rtId: string, clientId: 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; /** * Searches provisionable users from the target tenant's ancestor (parent) tenants. Powers the * cross-tenant user picker on the Admin Provisioning page. Matches on username or email; an empty * search returns the first users. Cross-tenant shadow users (xt_) are excluded server-side. */ getProvisioningSourceUsers(targetTenantId: string, search?: string, take?: number): Promise; /** * Returns the roles defined in the target tenant, offered as assignable options when creating a * cross-tenant user mapping. */ getProvisioningRoles(targetTenantId: string): Promise; /** * Returns the groups defined in the target tenant, offered as assignable options when creating a * cross-tenant user mapping. Assigning a group makes the mapping a GroupMember (group-based role * inheritance) — the idiomatic grant, consistent with provisionCurrentUser. */ getProvisioningGroups(targetTenantId: string): Promise; /** * Creates a cross-tenant user mapping and makes it a member of the given target-tenant groups, so * the user inherits the groups' roles. */ createAdminProvisioningWithGroups(targetTenantId: string, dto: CreateExternalTenantUserGroupMappingDto): 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(); /** * Enables the Communication feature for a tenant. Installs the * `System.Communication` CK model and provisions the required runtime wiring * for adapters/pools. Errors propagate to the caller. */ enableCommunication(tenantId: string): Promise; /** * Disables the Communication feature for a tenant. Tears down the adapter * wiring and removes the `System.Communication` model. Destructive — the UI * must confirm before calling. Errors propagate to the caller. */ disableCommunication(tenantId: string): Promise; /** * 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; /** * Fetches the controller's in-memory ring buffer of CPU / memory samples for a * given adapter. Used by the UI to drive live sparklines. Returns an empty * array when the communication services URL is not configured, when the * adapter is not currently connected (controller returns 404), or when no * sample has been collected yet. * * Pass `since` for incremental polling — only samples strictly newer than the * supplied UTC timestamp are returned, keeping subsequent refreshes light. */ getAdapterMetrics(tenantId: string, adapterRtId: string, adapterCkTypeId: string, since?: Date): 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 a single workload (Adapter or Application) via its parent * pool. Independent of pool deploy — the workload's pool must already * be deployed, but only this workload's helm-install fires. */ deployWorkload(tenantId: string, workloadRtId: string): Promise; /** * Returns the named public base domains configured on the Communication * Controller instance. Workload editors use the result to populate the * hint list / dropdown behind the `{{domain.NAME}}` Hostname template * syntax. Read-only; result is identical per tenant on the instance. */ getDomains(tenantId: string): Promise; /** * Returns every template placeholder a workload can reference in its * `hostname`, non-secret `valueOverride.value` or `valuesYaml`. Spans * the three families `context.tenantId`, `domain.NAME`, `service.NAME` * in one ordered list so the workload editor can offer a single * suggestion source. Read-only; result is identical per tenant on the * instance. */ getWorkloadVariables(tenantId: string): Promise; /** * Undeploys a single workload (Adapter or Application). Triggers a * helm-uninstall for the workload only; the pool itself stays deployed. */ undeployWorkload(tenantId: string, workloadRtId: string): Promise; /** * Reassigns one or more pipelines from their current adapter to a new * target adapter (bulk). Each pipeline is moved atomically on the server * (Executes-assoc swap in a single transaction); per-pipeline failures * are returned in the result list without aborting the batch. When * `redeploy=true` is set, the server also re-fires `DeployPipeline` on * the target adapter for every successfully moved pipeline — a redeploy * failure leaves the move committed and surfaces as a warning in * `errorMessage` while `success` stays `true`. */ movePipelinesToAdapter(tenantId: string, request: MovePipelinesToAdapterRequestDto): Promise; /** * Encrypts a plaintext value via the controller's at-rest encryption key * and returns the sentinel-prefixed ciphertext (`enc:v1:...`). Use this * before saving Helm ValueOverride entries flagged IsSecret so the * plaintext is never persisted in MongoDB. Already-encrypted values pass * through unchanged. */ encryptValue(tenantId: string, plaintext: string): Promise; /** * Executes a data pipeline manually. * * The optional `pipelineInput` is serialized as the JSON request body and * becomes the pipeline's initial DataContext on the adapter side * (FromExecutePipelineCommand trigger). Pipelines that were written for an * HTTP POST trigger read their payload at `$.body`, so callers mirror that * shape by passing `{ body: }`. Omitting it preserves the * classic empty-context execution. */ executePipeline(tenantId: string, pipelineRtId: string, pipelineInput?: unknown): Promise; /** * Deploys a pipeline definition to an adapter. */ deployPipelineDefinition(tenantId: string, adapterRtId: string, adapterCkTypeId: string, pipelineRtId: string, pipelineCkTypeId: string, pipelineDefinition: string | null): Promise; /** * Enables or disables debug capture for a pipeline via the dedicated debug * endpoint (`PATCH /pipeline/{id}/debug`). This is the ONLY way debug capture * is toggled (AB#4364): deploying a pipeline pushes the persisted flag as-is * and never changes it. The endpoint persists the flag exactly as requested * and re-pushes the running adapter, so both enable and disable take effect * immediately. `appliedToRunningAdapter` is false when the owning adapter is * offline (the flag is still persisted and applies on the next deploy). */ setPipelineDebugging(tenantId: string, pipelineRtId: string, enabled: boolean): 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; } /** * Service for the tenant Reporting feature toggle. * * Backed by the reporting service base URL (`config.reportingServices`), it * enables/disables the `System.Reporting` feature per tenant via the * tenant-scoped REST endpoints * `POST {reportingServices}{tenantId}/v1/reporting/{enable,disable}`. */ declare class ReportingService { private readonly httpClient; private readonly configurationService; /** * Gets the base URL for reporting services. */ private get reportingServicesUrl(); /** * Enables the Reporting feature for a tenant. Installs the * `System.Reporting` CK model and provisions the required storage. Errors * propagate to the caller. */ enableReporting(tenantId: string): Promise; /** * Disables the Reporting feature for a tenant. Drops the backing storage and * removes the `System.Reporting` model. Destructive — the UI must confirm * before calling. Errors propagate to the caller. */ disableReporting(tenantId: string): Promise; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; } interface TusUploadOptions { file: File; tenantId: string; databaseName: string; oldDatabaseName?: string; /** * Opt-in flag (AB#4231, concept §7) to also restore the tenant's CrateDB archive row data when * the uploaded artifact is an `.octobak.zip` container that carries archives. Defaults to * `false`, in which case only the Mongo dump is restored (identical to legacy behaviour); a * legacy `.tar.gz` ignores the flag. */ restoreArchiveData?: boolean; 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; rtDisplayName: string; rtDisplayDescription?: 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; /** Engine-computed display name (rtDisplayName); the backend guarantees a value ("@" fallback). */ rtDisplayName: string; /** Engine-computed display description (rtDisplayDescription). */ rtDisplayDescription?: 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. */ /** * Cache-key function for the tenant Apollo {@link InMemoryCache}. * * Most Octo objects are normalized by their `rtId` (the runtime entity id, * unique per row in runtime queries). Stream-data rows are the exception: a * `StreamDataQueryRow` carries the *source entity's* rtId, which repeats across * every timestamped sample of that entity. Normalizing those by rtId would * collapse a whole series into one cached object (last-write-wins) — a line * chart then renders a single point per series. So they are left un-normalized * (embedded in their connection) by returning `undefined`. */ declare function octoDataIdFromObject(o: Readonly>): string | undefined; 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, ArchiveStorageHealthDto, AssetRepoGraphQlDataSource, AssetRepoService, AssociationModOptionsDto, AttributeSelectorService, AttributeValueTypeDto, BasicEnergyCarrierTypeDto, BasicEnergyDataQualityDto, BasicEnergyFacilityTypeDto, BasicEnergyProductionTypeDto, BasicEnergyStateDto, BasicLegalEntityTypeDto, BasicSalutationDto, BasicTypeOfTelephoneBasicDto, BasicTypeOfTelephoneEnhancedDto, BasicUnitOfMeasureDto, BlueprintConflictResolutionDto, BlueprintUpdateModeDto, BotService, BucketAlignmentInputDto, CONFIGURATION_SERVICE, CkExtensionUpdateOperationsDto, CkModelCatalogService, CkModelService, CkRollupFunctionDto, CkTypeAttributeService, CkTypeMetaData, CkTypeSelectorService, CommunicationService, DeleteStrategiesDto, DeploymentState, EnergyCommunityBillingCycleDto, EnergyCommunityBillingDocumentStateDto, EnergyCommunityBillingTypeDto, EnergyCommunityDataQualityDto, EnergyCommunityFacilityTypeDto, EnergyCommunityProductionTypeDto, EnergyCommunityStateDto, EnergyCommunityTaxProcedureCreditNoteDto, EnvironmentCarbonScopeDto, EnvironmentComplianceCategoryDto, EnvironmentComplianceStatusDto, EnvironmentEnergySourceDto, EnvironmentGoalStateDto, FieldFilterOperatorsDto, FormulaResultTypeDto, 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, IndustryManufacturingFeedbackSyncStateDto, IndustryManufacturingProductionOrderItemStateDto, IndustryManufacturingProductionOrderStateDto, JobManagementService, LevelMetaData, LoggerSeverity, ModelStateDto, MultiplicitiesDto, NavigationFilterModeDto, OctoErrorLink, OctoGraphQLServiceBase, OctoSdkDemoCustomerStatusDto, OctoSdkDemoNetworkOperatorDto, OctoSdkDemoOperatingStatusDto, OctoServiceOptions, OctoServicesModule, PagedGraphResultDto, ProgressValue, ProgressWindowService, QueryModeDto, ReportingService, RtAssociationMetaData, RuntimeEntityDialogDataSource, RuntimeEntitySelectDataSource, SearchFilterTypesDto, SeriesComparisonPolicyDto, SeriesResolutionSignalDto, SortOrdersDto, SystemAggregationTypesDto, SystemAiApprovalModeDto, SystemAiApprovalReasonDto, SystemAiApprovalStatusDto, SystemAiAuthModeDto, SystemAiConflictModeDto, SystemAiCredentialKindDto, SystemAiJobKindDto, SystemAiJobStatusDto, SystemAiKnowledgeKindDto, SystemAiLeaseStatusDto, SystemAiModelTierDto, SystemAiRiskLevelDto, SystemAiSessionEventKindDto, SystemAiSessionStatusDto, SystemAiSubscriptionScopeDto, SystemAiTicketScopeDto, SystemAiTicketStatusDto, SystemAiWorkspaceModeDto, SystemCommunicationCommunicationStateDto, SystemCommunicationConfigurationStateDto, SystemCommunicationDeploymentStateDto, SystemCommunicationEnvironmentDto, SystemCommunicationHelmChannelDto, SystemCommunicationPipelineExecutionStatusDto, SystemCommunicationPipelineTriggerTypeDto, SystemEnvironmentModesDto, SystemFieldFilterOperatorDto, SystemIdentityTokenExpirationDto, SystemIdentityTokenTypeDto, SystemIdentityTokenUsageDto, SystemMaintenanceLevelsDto, SystemNavigationFilterModesDto, SystemNotificationEventLevelsDto, SystemNotificationEventSourcesDto, SystemNotificationEventStatesDto, SystemNotificationNotificationTypesDto, SystemNotificationRenderingTypesDto, SystemQueryTypesDto, SystemSortOrdersDto, SystemStreamDataBucketAlignmentDto, SystemStreamDataCkArchiveStatusDto, SystemStreamDataCkComputedColumnResultTypeDto, SystemStreamDataCkComputedColumnStateDto, SystemStreamDataCkRecomputeChangeKindDto, SystemStreamDataCkRecomputeChangeSourceDto, SystemStreamDataCkRecomputeJobStateDto, SystemStreamDataCkRecomputeTriggerDto, SystemStreamDataCkRollupFunctionDto, TENANT_ID_PROVIDER, TusUploadService, UpdateTypeDto, octoDataIdFromObject, result as possibleTypes, provideOctoServices }; export type { AdapterMetricsSampleDto, AddInConfiguration, AdminPanelConfigurationDto, AggregationDto, ArchiveColumnSpecInputDto, ArchivePathInfoDto, ArchiveStorageStatsDto, ArchiveTransitionResultDto, 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, BasicEmployeePartialFeedbacksArgsDto, BasicEmployeeRelatesFromArgsDto, BasicEmployeeRelatesToArgsDto, BasicEmployeeShiftMachinesArgsDto, BasicEmployeeShiftOrderItemsArgsDto, BasicEmployeeTaggedByArgsDto, BasicEmployeeUpdateDto, BasicEmployeeUpdateMessageDto, BasicEmployee_EmployeeUnionConnectionDto, BasicEmployee_EmployeeUnionDto, BasicEmployee_EmployeeUnionEdgeDto, BasicEmployee_EmployeesUnionConnectionDto, BasicEmployee_EmployeesUnionDto, BasicEmployee_EmployeesUnionEdgeDto, BasicEnergyConsumerAssociationsArgsDto, BasicEnergyConsumerChildrenArgsDto, BasicEnergyConsumerConfiguredByArgsDto, BasicEnergyConsumerConnectionDto, BasicEnergyConsumerDto, BasicEnergyConsumerEdgeDto, BasicEnergyConsumerInputDto, BasicEnergyConsumerInputUpdateDto, BasicEnergyConsumerMapsFromArgsDto, BasicEnergyConsumerMapsToArgsDto, BasicEnergyConsumerMutationsCreateArgsDto, BasicEnergyConsumerMutationsDto, BasicEnergyConsumerMutationsUpdateArgsDto, BasicEnergyConsumerParentArgsDto, BasicEnergyConsumerRelatesFromArgsDto, BasicEnergyConsumerRelatesToArgsDto, BasicEnergyConsumerTaggedByArgsDto, BasicEnergyConsumerUpdateDto, BasicEnergyConsumerUpdateMessageDto, BasicEnergyEdaMessageAssociationsArgsDto, BasicEnergyEdaMessageConfiguredByArgsDto, BasicEnergyEdaMessageConnectionDto, BasicEnergyEdaMessageDto, BasicEnergyEdaMessageEdgeDto, BasicEnergyEdaMessageInputDto, BasicEnergyEdaMessageInputUpdateDto, BasicEnergyEdaMessageMapsFromArgsDto, BasicEnergyEdaMessageMapsToArgsDto, BasicEnergyEdaMessageMutationsCreateArgsDto, BasicEnergyEdaMessageMutationsDto, BasicEnergyEdaMessageMutationsUpdateArgsDto, BasicEnergyEdaMessageProcessArgsDto, BasicEnergyEdaMessageRelatesFromArgsDto, BasicEnergyEdaMessageRelatesToArgsDto, BasicEnergyEdaMessageTaggedByArgsDto, BasicEnergyEdaMessageUpdateDto, BasicEnergyEdaMessageUpdateMessageDto, BasicEnergyEdaMessage_MessagesUnionConnectionDto, BasicEnergyEdaMessage_MessagesUnionDto, BasicEnergyEdaMessage_MessagesUnionEdgeDto, BasicEnergyEdaMeteringPointAssociationsArgsDto, BasicEnergyEdaMeteringPointConfiguredByArgsDto, BasicEnergyEdaMeteringPointConnectionDto, BasicEnergyEdaMeteringPointDto, BasicEnergyEdaMeteringPointEdgeDto, BasicEnergyEdaMeteringPointInputDto, BasicEnergyEdaMeteringPointInputUpdateDto, BasicEnergyEdaMeteringPointMapsFromArgsDto, BasicEnergyEdaMeteringPointMapsToArgsDto, BasicEnergyEdaMeteringPointMutationsCreateArgsDto, BasicEnergyEdaMeteringPointMutationsDto, BasicEnergyEdaMeteringPointMutationsUpdateArgsDto, BasicEnergyEdaMeteringPointRelatesFromArgsDto, BasicEnergyEdaMeteringPointRelatesToArgsDto, BasicEnergyEdaMeteringPointTaggedByArgsDto, BasicEnergyEdaMeteringPointUpdateDto, BasicEnergyEdaMeteringPointUpdateMessageDto, BasicEnergyEdaProcessAssociationsArgsDto, BasicEnergyEdaProcessConfiguredByArgsDto, BasicEnergyEdaProcessConnectionDto, BasicEnergyEdaProcessDto, BasicEnergyEdaProcessEdgeDto, BasicEnergyEdaProcessInputDto, BasicEnergyEdaProcessInputUpdateDto, BasicEnergyEdaProcessMapsFromArgsDto, BasicEnergyEdaProcessMapsToArgsDto, BasicEnergyEdaProcessMessagesArgsDto, BasicEnergyEdaProcessMutationsCreateArgsDto, BasicEnergyEdaProcessMutationsDto, BasicEnergyEdaProcessMutationsUpdateArgsDto, BasicEnergyEdaProcessRelatesFromArgsDto, BasicEnergyEdaProcessRelatesToArgsDto, BasicEnergyEdaProcessTaggedByArgsDto, BasicEnergyEdaProcessUpdateDto, BasicEnergyEdaProcessUpdateMessageDto, BasicEnergyEdaProcess_ProcessUnionConnectionDto, BasicEnergyEdaProcess_ProcessUnionDto, BasicEnergyEdaProcess_ProcessUnionEdgeDto, BasicEnergyEnergyMeasurementAssociationsArgsDto, BasicEnergyEnergyMeasurementConfiguredByArgsDto, BasicEnergyEnergyMeasurementConnectionDto, BasicEnergyEnergyMeasurementDto, BasicEnergyEnergyMeasurementEdgeDto, BasicEnergyEnergyMeasurementInputDto, BasicEnergyEnergyMeasurementInputUpdateDto, BasicEnergyEnergyMeasurementMapsFromArgsDto, BasicEnergyEnergyMeasurementMapsToArgsDto, BasicEnergyEnergyMeasurementMutationsCreateArgsDto, BasicEnergyEnergyMeasurementMutationsDto, BasicEnergyEnergyMeasurementMutationsUpdateArgsDto, BasicEnergyEnergyMeasurementParentArgsDto, BasicEnergyEnergyMeasurementRelatesFromArgsDto, BasicEnergyEnergyMeasurementRelatesToArgsDto, BasicEnergyEnergyMeasurementTaggedByArgsDto, BasicEnergyEnergyMeasurementUpdateDto, BasicEnergyEnergyMeasurementUpdateMessageDto, BasicEnergyEnergyMeasurement_ChildrenUnionConnectionDto, BasicEnergyEnergyMeasurement_ChildrenUnionDto, BasicEnergyEnergyMeasurement_ChildrenUnionEdgeDto, BasicEnergyMeteringPointAssociationsArgsDto, BasicEnergyMeteringPointChildrenArgsDto, BasicEnergyMeteringPointConfiguredByArgsDto, BasicEnergyMeteringPointConnectionDto, BasicEnergyMeteringPointDto, BasicEnergyMeteringPointEdgeDto, BasicEnergyMeteringPointInterfaceChildrenArgsDto, BasicEnergyMeteringPointInterfaceConfiguredByArgsDto, BasicEnergyMeteringPointInterfaceDto, BasicEnergyMeteringPointInterfaceMapsFromArgsDto, BasicEnergyMeteringPointInterfaceMapsToArgsDto, BasicEnergyMeteringPointInterfaceParentArgsDto, BasicEnergyMeteringPointInterfaceRelatesFromArgsDto, BasicEnergyMeteringPointInterfaceRelatesToArgsDto, BasicEnergyMeteringPointInterfaceTaggedByArgsDto, BasicEnergyMeteringPointMapsFromArgsDto, BasicEnergyMeteringPointMapsToArgsDto, BasicEnergyMeteringPointParentArgsDto, BasicEnergyMeteringPointRelatesFromArgsDto, BasicEnergyMeteringPointRelatesToArgsDto, BasicEnergyMeteringPointTaggedByArgsDto, BasicEnergyMeteringPointUpdateDto, BasicEnergyMeteringPointUpdateMessageDto, BasicEnergyMeteringPoint_ChildrenUnionConnectionDto, BasicEnergyMeteringPoint_ChildrenUnionDto, BasicEnergyMeteringPoint_ChildrenUnionEdgeDto, BasicEnergyMeteringPoint_ParentUnionConnectionDto, BasicEnergyMeteringPoint_ParentUnionDto, BasicEnergyMeteringPoint_ParentUnionEdgeDto, BasicEnergyOperatingFacilityAssociationsArgsDto, BasicEnergyOperatingFacilityChildrenArgsDto, BasicEnergyOperatingFacilityConfiguredByArgsDto, BasicEnergyOperatingFacilityConnectionDto, BasicEnergyOperatingFacilityDto, BasicEnergyOperatingFacilityEdgeDto, BasicEnergyOperatingFacilityInputDto, BasicEnergyOperatingFacilityInputUpdateDto, BasicEnergyOperatingFacilityMapsFromArgsDto, BasicEnergyOperatingFacilityMapsToArgsDto, BasicEnergyOperatingFacilityMutationsCreateArgsDto, BasicEnergyOperatingFacilityMutationsDto, BasicEnergyOperatingFacilityMutationsUpdateArgsDto, BasicEnergyOperatingFacilityOrdersArgsDto, BasicEnergyOperatingFacilityParentArgsDto, BasicEnergyOperatingFacilityRelatesFromArgsDto, BasicEnergyOperatingFacilityRelatesToArgsDto, BasicEnergyOperatingFacilityTaggedByArgsDto, BasicEnergyOperatingFacilityUpdateDto, BasicEnergyOperatingFacilityUpdateMessageDto, BasicEnergyOperatingFacility_ParentUnionConnectionDto, BasicEnergyOperatingFacility_ParentUnionDto, BasicEnergyOperatingFacility_ParentUnionEdgeDto, BasicEnergyProducerAssociationsArgsDto, BasicEnergyProducerChildrenArgsDto, BasicEnergyProducerConfiguredByArgsDto, BasicEnergyProducerConnectionDto, BasicEnergyProducerDto, BasicEnergyProducerEdgeDto, BasicEnergyProducerInputDto, BasicEnergyProducerInputUpdateDto, BasicEnergyProducerMapsFromArgsDto, BasicEnergyProducerMapsToArgsDto, BasicEnergyProducerMutationsCreateArgsDto, BasicEnergyProducerMutationsDto, BasicEnergyProducerMutationsUpdateArgsDto, BasicEnergyProducerParentArgsDto, BasicEnergyProducerRelatesFromArgsDto, BasicEnergyProducerRelatesToArgsDto, BasicEnergyProducerTaggedByArgsDto, BasicEnergyProducerUpdateDto, BasicEnergyProducerUpdateMessageDto, 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, BlueprintApplyResultDto, BlueprintBackupDto, BlueprintCatalogDto, BlueprintConflictDto, BlueprintConflictResolutionInputDto, BlueprintDto, BlueprintHistoryItemDto, BlueprintInstallationDto, BlueprintListResponseDto, BlueprintRestoreResultDto, BlueprintUninstallResultDto, BlueprintUpdateInfoDto, BlueprintUpdatePreviewDto, BlueprintUpdateRequestInputDto, BlueprintsMutationApplyUpdateArgsDto, BlueprintsMutationDto, BlueprintsMutationInstallArgsDto, BlueprintsMutationRollbackArgsDto, BlueprintsMutationUninstallArgsDto, BlueprintsQueryDto, BlueprintsQueryListArgsDto, BlueprintsQueryPreviewUpdateArgsDto, BlueprintsQuerySearchArgsDto, 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, CleanOverlayEntriesClientResultDto, CleanOverlayEntriesResultDto, ClientDto, ClientMirrorBackfillResponseDto, ClientMirrorDto, ClientMirrorProvisionResponseDto, ClientScope, ConfigurationDto, ConstructionKitMutationsDto, ConstructionKitMutationsEnumsArgsDto, ConstructionKitQueryAssociationRolesArgsDto, ConstructionKitQueryAttributesArgsDto, ConstructionKitQueryDto, ConstructionKitQueryEnumsArgsDto, ConstructionKitQueryModelsArgsDto, ConstructionKitQueryRecordsArgsDto, ConstructionKitQueryTypesArgsDto, CreateExternalTenantUserGroupMappingDto, CreateExternalTenantUserMappingDto, CreateGroupDto, CreateRollupArchiveInputDto, CreateTimeRangeArchiveInputDto, DebugMessage, DebugPointDataDto, DebugPointNode, DependencyResolutionItemDto, DependencyResolutionResponseDto, DeploymentResultDto, DiagnosticsModel, DomainConfigurationDto, EmailDomainGroupRuleDto, EmailDomainGroupRulesResult, EnergyCommunityBillingDocumentAssignedToArgsDto, EnergyCommunityBillingDocumentAssociationsArgsDto, EnergyCommunityBillingDocumentChildrenArgsDto, EnergyCommunityBillingDocumentConfiguredByArgsDto, EnergyCommunityBillingDocumentConnectionDto, EnergyCommunityBillingDocumentDto, EnergyCommunityBillingDocumentEdgeDto, EnergyCommunityBillingDocumentInputDto, EnergyCommunityBillingDocumentInputUpdateDto, EnergyCommunityBillingDocumentLineItemAssignedToArgsDto, EnergyCommunityBillingDocumentLineItemAssociationsArgsDto, EnergyCommunityBillingDocumentLineItemConfiguredByArgsDto, EnergyCommunityBillingDocumentLineItemConnectionDto, EnergyCommunityBillingDocumentLineItemDto, EnergyCommunityBillingDocumentLineItemEdgeDto, EnergyCommunityBillingDocumentLineItemInputDto, EnergyCommunityBillingDocumentLineItemInputUpdateDto, EnergyCommunityBillingDocumentLineItemMapsFromArgsDto, EnergyCommunityBillingDocumentLineItemMapsToArgsDto, EnergyCommunityBillingDocumentLineItemMeteringPointArgsDto, EnergyCommunityBillingDocumentLineItemMutationsCreateArgsDto, EnergyCommunityBillingDocumentLineItemMutationsDto, EnergyCommunityBillingDocumentLineItemMutationsUpdateArgsDto, EnergyCommunityBillingDocumentLineItemParentArgsDto, EnergyCommunityBillingDocumentLineItemRelatesFromArgsDto, EnergyCommunityBillingDocumentLineItemRelatesToArgsDto, EnergyCommunityBillingDocumentLineItemTaggedByArgsDto, EnergyCommunityBillingDocumentLineItemUpdateDto, EnergyCommunityBillingDocumentLineItemUpdateMessageDto, EnergyCommunityBillingDocumentLineItem_BillingUnionConnectionDto, EnergyCommunityBillingDocumentLineItem_BillingUnionDto, EnergyCommunityBillingDocumentLineItem_BillingUnionEdgeDto, EnergyCommunityBillingDocumentLineItem_BillingsUnionConnectionDto, EnergyCommunityBillingDocumentLineItem_BillingsUnionDto, EnergyCommunityBillingDocumentLineItem_BillingsUnionEdgeDto, EnergyCommunityBillingDocumentLineItem_ChildrenUnionConnectionDto, EnergyCommunityBillingDocumentLineItem_ChildrenUnionDto, EnergyCommunityBillingDocumentLineItem_ChildrenUnionEdgeDto, EnergyCommunityBillingDocumentMapsFromArgsDto, EnergyCommunityBillingDocumentMapsToArgsDto, EnergyCommunityBillingDocumentMutationsCreateArgsDto, EnergyCommunityBillingDocumentMutationsDto, EnergyCommunityBillingDocumentMutationsUpdateArgsDto, EnergyCommunityBillingDocumentRelatesFromArgsDto, EnergyCommunityBillingDocumentRelatesToArgsDto, EnergyCommunityBillingDocumentTaggedByArgsDto, EnergyCommunityBillingDocumentUpdateDto, EnergyCommunityBillingDocumentUpdateMessageDto, EnergyCommunityBillingDocument_BillingUnionConnectionDto, EnergyCommunityBillingDocument_BillingUnionDto, EnergyCommunityBillingDocument_BillingUnionEdgeDto, EnergyCommunityBillingDocument_ParentUnionConnectionDto, EnergyCommunityBillingDocument_ParentUnionDto, EnergyCommunityBillingDocument_ParentUnionEdgeDto, EnergyCommunityConsumerAssociationsArgsDto, EnergyCommunityConsumerBillingsArgsDto, EnergyCommunityConsumerChildrenArgsDto, EnergyCommunityConsumerConfiguredByArgsDto, EnergyCommunityConsumerConnectionDto, EnergyCommunityConsumerDto, EnergyCommunityConsumerEdgeDto, EnergyCommunityConsumerInputDto, EnergyCommunityConsumerInputUpdateDto, EnergyCommunityConsumerMapsFromArgsDto, EnergyCommunityConsumerMapsToArgsDto, EnergyCommunityConsumerMutationsCreateArgsDto, EnergyCommunityConsumerMutationsDto, EnergyCommunityConsumerMutationsUpdateArgsDto, EnergyCommunityConsumerParentArgsDto, EnergyCommunityConsumerPeriodsArgsDto, EnergyCommunityConsumerRelatesFromArgsDto, EnergyCommunityConsumerRelatesToArgsDto, EnergyCommunityConsumerTaggedByArgsDto, EnergyCommunityConsumerUpdateDto, EnergyCommunityConsumerUpdateMessageDto, EnergyCommunityCustomerAssociationsArgsDto, EnergyCommunityCustomerBillingArgsDto, EnergyCommunityCustomerConfiguredByArgsDto, EnergyCommunityCustomerConnectionDto, EnergyCommunityCustomerDto, EnergyCommunityCustomerEdgeDto, EnergyCommunityCustomerFacilitiesArgsDto, EnergyCommunityCustomerInputDto, EnergyCommunityCustomerInputUpdateDto, EnergyCommunityCustomerMapsFromArgsDto, EnergyCommunityCustomerMapsToArgsDto, EnergyCommunityCustomerMutationsCreateArgsDto, EnergyCommunityCustomerMutationsDto, EnergyCommunityCustomerMutationsUpdateArgsDto, EnergyCommunityCustomerRelatesFromArgsDto, EnergyCommunityCustomerRelatesToArgsDto, EnergyCommunityCustomerTaggedByArgsDto, EnergyCommunityCustomerUpdateDto, EnergyCommunityCustomerUpdateMessageDto, EnergyCommunityCustomer_AssignedToUnionConnectionDto, EnergyCommunityCustomer_AssignedToUnionDto, EnergyCommunityCustomer_AssignedToUnionEdgeDto, EnergyCommunityCustomer_CustomerUnionConnectionDto, EnergyCommunityCustomer_CustomerUnionDto, EnergyCommunityCustomer_CustomerUnionEdgeDto, EnergyCommunityEdaMessageAssociationsArgsDto, EnergyCommunityEdaMessageConfiguredByArgsDto, EnergyCommunityEdaMessageConnectionDto, EnergyCommunityEdaMessageDto, EnergyCommunityEdaMessageEdgeDto, EnergyCommunityEdaMessageInputDto, EnergyCommunityEdaMessageInputUpdateDto, EnergyCommunityEdaMessageMapsFromArgsDto, EnergyCommunityEdaMessageMapsToArgsDto, EnergyCommunityEdaMessageMutationsCreateArgsDto, EnergyCommunityEdaMessageMutationsDto, EnergyCommunityEdaMessageMutationsUpdateArgsDto, EnergyCommunityEdaMessageProcessArgsDto, EnergyCommunityEdaMessageRelatesFromArgsDto, EnergyCommunityEdaMessageRelatesToArgsDto, EnergyCommunityEdaMessageTaggedByArgsDto, EnergyCommunityEdaMessageUpdateDto, EnergyCommunityEdaMessageUpdateMessageDto, EnergyCommunityEdaMessage_MessagesUnionConnectionDto, EnergyCommunityEdaMessage_MessagesUnionDto, EnergyCommunityEdaMessage_MessagesUnionEdgeDto, EnergyCommunityEdaMeteringPointAssociationsArgsDto, EnergyCommunityEdaMeteringPointConfiguredByArgsDto, EnergyCommunityEdaMeteringPointConnectionDto, EnergyCommunityEdaMeteringPointDto, EnergyCommunityEdaMeteringPointEdgeDto, EnergyCommunityEdaMeteringPointInputDto, EnergyCommunityEdaMeteringPointInputUpdateDto, EnergyCommunityEdaMeteringPointMapsFromArgsDto, EnergyCommunityEdaMeteringPointMapsToArgsDto, EnergyCommunityEdaMeteringPointMutationsCreateArgsDto, EnergyCommunityEdaMeteringPointMutationsDto, EnergyCommunityEdaMeteringPointMutationsUpdateArgsDto, EnergyCommunityEdaMeteringPointRelatesFromArgsDto, EnergyCommunityEdaMeteringPointRelatesToArgsDto, EnergyCommunityEdaMeteringPointTaggedByArgsDto, EnergyCommunityEdaMeteringPointUpdateDto, EnergyCommunityEdaMeteringPointUpdateMessageDto, EnergyCommunityEdaProcessAssociationsArgsDto, EnergyCommunityEdaProcessConfiguredByArgsDto, EnergyCommunityEdaProcessConnectionDto, EnergyCommunityEdaProcessDto, EnergyCommunityEdaProcessEdgeDto, EnergyCommunityEdaProcessInputDto, EnergyCommunityEdaProcessInputUpdateDto, EnergyCommunityEdaProcessMapsFromArgsDto, EnergyCommunityEdaProcessMapsToArgsDto, EnergyCommunityEdaProcessMessagesArgsDto, EnergyCommunityEdaProcessMutationsCreateArgsDto, EnergyCommunityEdaProcessMutationsDto, EnergyCommunityEdaProcessMutationsUpdateArgsDto, EnergyCommunityEdaProcessRelatesFromArgsDto, EnergyCommunityEdaProcessRelatesToArgsDto, EnergyCommunityEdaProcessTaggedByArgsDto, EnergyCommunityEdaProcessUpdateDto, EnergyCommunityEdaProcessUpdateMessageDto, EnergyCommunityEdaProcess_ProcessUnionConnectionDto, EnergyCommunityEdaProcess_ProcessUnionDto, EnergyCommunityEdaProcess_ProcessUnionEdgeDto, EnergyCommunityEnergyPriceAssociationsArgsDto, EnergyCommunityEnergyPriceConfiguredByArgsDto, EnergyCommunityEnergyPriceConnectionDto, EnergyCommunityEnergyPriceDto, EnergyCommunityEnergyPriceEdgeDto, EnergyCommunityEnergyPriceInputDto, EnergyCommunityEnergyPriceInputUpdateDto, EnergyCommunityEnergyPriceMapsFromArgsDto, EnergyCommunityEnergyPriceMapsToArgsDto, EnergyCommunityEnergyPriceMutationsCreateArgsDto, EnergyCommunityEnergyPriceMutationsDto, EnergyCommunityEnergyPriceMutationsUpdateArgsDto, EnergyCommunityEnergyPriceRelatesFromArgsDto, EnergyCommunityEnergyPriceRelatesToArgsDto, EnergyCommunityEnergyPriceTaggedByArgsDto, EnergyCommunityEnergyPriceUpdateDto, EnergyCommunityEnergyPriceUpdateMessageDto, EnergyCommunityEnergyQuantityAssociationsArgsDto, EnergyCommunityEnergyQuantityBillingArgsDto, EnergyCommunityEnergyQuantityConfiguredByArgsDto, EnergyCommunityEnergyQuantityConnectionDto, EnergyCommunityEnergyQuantityDto, EnergyCommunityEnergyQuantityEdgeDto, EnergyCommunityEnergyQuantityInputDto, EnergyCommunityEnergyQuantityInputUpdateDto, EnergyCommunityEnergyQuantityMapsFromArgsDto, EnergyCommunityEnergyQuantityMapsToArgsDto, EnergyCommunityEnergyQuantityMutationsCreateArgsDto, EnergyCommunityEnergyQuantityMutationsDto, EnergyCommunityEnergyQuantityMutationsUpdateArgsDto, EnergyCommunityEnergyQuantityParentArgsDto, EnergyCommunityEnergyQuantityRelatesFromArgsDto, EnergyCommunityEnergyQuantityRelatesToArgsDto, EnergyCommunityEnergyQuantityTaggedByArgsDto, EnergyCommunityEnergyQuantityUpdateDto, EnergyCommunityEnergyQuantityUpdateMessageDto, EnergyCommunityEnergyQuantity_AssignedToUnionConnectionDto, EnergyCommunityEnergyQuantity_AssignedToUnionDto, EnergyCommunityEnergyQuantity_AssignedToUnionEdgeDto, EnergyCommunityEnergyQuantity_ChildrenUnionConnectionDto, EnergyCommunityEnergyQuantity_ChildrenUnionDto, EnergyCommunityEnergyQuantity_ChildrenUnionEdgeDto, EnergyCommunityMeteringPointAssociationsArgsDto, EnergyCommunityMeteringPointBillingsArgsDto, EnergyCommunityMeteringPointChildrenArgsDto, EnergyCommunityMeteringPointConfiguredByArgsDto, EnergyCommunityMeteringPointConnectionDto, EnergyCommunityMeteringPointDto, EnergyCommunityMeteringPointEdgeDto, EnergyCommunityMeteringPointInterfaceBillingsArgsDto, EnergyCommunityMeteringPointInterfaceChildrenArgsDto, EnergyCommunityMeteringPointInterfaceConfiguredByArgsDto, EnergyCommunityMeteringPointInterfaceDto, EnergyCommunityMeteringPointInterfaceMapsFromArgsDto, EnergyCommunityMeteringPointInterfaceMapsToArgsDto, EnergyCommunityMeteringPointInterfaceParentArgsDto, EnergyCommunityMeteringPointInterfacePeriodsArgsDto, EnergyCommunityMeteringPointInterfaceRelatesFromArgsDto, EnergyCommunityMeteringPointInterfaceRelatesToArgsDto, EnergyCommunityMeteringPointInterfaceTaggedByArgsDto, EnergyCommunityMeteringPointMapsFromArgsDto, EnergyCommunityMeteringPointMapsToArgsDto, EnergyCommunityMeteringPointParentArgsDto, EnergyCommunityMeteringPointPeriodsArgsDto, EnergyCommunityMeteringPointRelatesFromArgsDto, EnergyCommunityMeteringPointRelatesToArgsDto, EnergyCommunityMeteringPointTaggedByArgsDto, EnergyCommunityMeteringPointUpdateDto, EnergyCommunityMeteringPointUpdateMessageDto, EnergyCommunityMeteringPoint_ChildrenUnionConnectionDto, EnergyCommunityMeteringPoint_ChildrenUnionDto, EnergyCommunityMeteringPoint_ChildrenUnionEdgeDto, EnergyCommunityMeteringPoint_MeteringPointUnionConnectionDto, EnergyCommunityMeteringPoint_MeteringPointUnionDto, EnergyCommunityMeteringPoint_MeteringPointUnionEdgeDto, EnergyCommunityMeteringPoint_ParentUnionConnectionDto, EnergyCommunityMeteringPoint_ParentUnionDto, EnergyCommunityMeteringPoint_ParentUnionEdgeDto, EnergyCommunityOperatingFacilityAssociationsArgsDto, EnergyCommunityOperatingFacilityChildrenArgsDto, EnergyCommunityOperatingFacilityConfiguredByArgsDto, EnergyCommunityOperatingFacilityConnectionDto, EnergyCommunityOperatingFacilityCustomerArgsDto, EnergyCommunityOperatingFacilityDto, EnergyCommunityOperatingFacilityEdgeDto, EnergyCommunityOperatingFacilityInputDto, EnergyCommunityOperatingFacilityInputUpdateDto, EnergyCommunityOperatingFacilityMapsFromArgsDto, EnergyCommunityOperatingFacilityMapsToArgsDto, EnergyCommunityOperatingFacilityMutationsCreateArgsDto, EnergyCommunityOperatingFacilityMutationsDto, EnergyCommunityOperatingFacilityMutationsUpdateArgsDto, EnergyCommunityOperatingFacilityOrdersArgsDto, EnergyCommunityOperatingFacilityParentArgsDto, EnergyCommunityOperatingFacilityRelatesFromArgsDto, EnergyCommunityOperatingFacilityRelatesToArgsDto, EnergyCommunityOperatingFacilityTaggedByArgsDto, EnergyCommunityOperatingFacilityUpdateDto, EnergyCommunityOperatingFacilityUpdateMessageDto, EnergyCommunityOperatingFacility_FacilitiesUnionConnectionDto, EnergyCommunityOperatingFacility_FacilitiesUnionDto, EnergyCommunityOperatingFacility_FacilitiesUnionEdgeDto, EnergyCommunityOperatingFacility_ParentUnionConnectionDto, EnergyCommunityOperatingFacility_ParentUnionDto, EnergyCommunityOperatingFacility_ParentUnionEdgeDto, EnergyCommunityParticipationPeriodAssociationsArgsDto, EnergyCommunityParticipationPeriodConfiguredByArgsDto, EnergyCommunityParticipationPeriodConnectionDto, EnergyCommunityParticipationPeriodDto, EnergyCommunityParticipationPeriodEdgeDto, EnergyCommunityParticipationPeriodInputDto, EnergyCommunityParticipationPeriodInputUpdateDto, EnergyCommunityParticipationPeriodMapsFromArgsDto, EnergyCommunityParticipationPeriodMapsToArgsDto, EnergyCommunityParticipationPeriodMeteringPointArgsDto, EnergyCommunityParticipationPeriodMutationsCreateArgsDto, EnergyCommunityParticipationPeriodMutationsDto, EnergyCommunityParticipationPeriodMutationsUpdateArgsDto, EnergyCommunityParticipationPeriodRelatesFromArgsDto, EnergyCommunityParticipationPeriodRelatesToArgsDto, EnergyCommunityParticipationPeriodTaggedByArgsDto, EnergyCommunityParticipationPeriodUpdateDto, EnergyCommunityParticipationPeriodUpdateMessageDto, EnergyCommunityParticipationPeriod_PeriodsUnionConnectionDto, EnergyCommunityParticipationPeriod_PeriodsUnionDto, EnergyCommunityParticipationPeriod_PeriodsUnionEdgeDto, EnergyCommunityProducerAssociationsArgsDto, EnergyCommunityProducerBillingsArgsDto, EnergyCommunityProducerChildrenArgsDto, EnergyCommunityProducerConfiguredByArgsDto, EnergyCommunityProducerConnectionDto, EnergyCommunityProducerDto, EnergyCommunityProducerEdgeDto, EnergyCommunityProducerInputDto, EnergyCommunityProducerInputUpdateDto, EnergyCommunityProducerMapsFromArgsDto, EnergyCommunityProducerMapsToArgsDto, EnergyCommunityProducerMutationsCreateArgsDto, EnergyCommunityProducerMutationsDto, EnergyCommunityProducerMutationsUpdateArgsDto, EnergyCommunityProducerParentArgsDto, EnergyCommunityProducerPeriodsArgsDto, EnergyCommunityProducerRelatesFromArgsDto, EnergyCommunityProducerRelatesToArgsDto, EnergyCommunityProducerTaggedByArgsDto, EnergyCommunityProducerUpdateDto, EnergyCommunityProducerUpdateMessageDto, EnvironmentCarbonBudgetAssociationsArgsDto, EnvironmentCarbonBudgetConfiguredByArgsDto, EnvironmentCarbonBudgetConnectionDto, EnvironmentCarbonBudgetDto, EnvironmentCarbonBudgetEdgeDto, EnvironmentCarbonBudgetInputDto, EnvironmentCarbonBudgetInputUpdateDto, EnvironmentCarbonBudgetMapsFromArgsDto, EnvironmentCarbonBudgetMapsToArgsDto, EnvironmentCarbonBudgetMutationsCreateArgsDto, EnvironmentCarbonBudgetMutationsDto, EnvironmentCarbonBudgetMutationsUpdateArgsDto, EnvironmentCarbonBudgetParentArgsDto, EnvironmentCarbonBudgetRelatesFromArgsDto, EnvironmentCarbonBudgetRelatesToArgsDto, EnvironmentCarbonBudgetTaggedByArgsDto, EnvironmentCarbonBudgetUpdateDto, EnvironmentCarbonBudgetUpdateMessageDto, EnvironmentCarbonEmissionAssociationsArgsDto, EnvironmentCarbonEmissionConfiguredByArgsDto, EnvironmentCarbonEmissionConnectionDto, EnvironmentCarbonEmissionDto, EnvironmentCarbonEmissionEdgeDto, EnvironmentCarbonEmissionInputDto, EnvironmentCarbonEmissionInputUpdateDto, EnvironmentCarbonEmissionMapsFromArgsDto, EnvironmentCarbonEmissionMapsToArgsDto, EnvironmentCarbonEmissionMutationsCreateArgsDto, EnvironmentCarbonEmissionMutationsDto, EnvironmentCarbonEmissionMutationsUpdateArgsDto, EnvironmentCarbonEmissionParentArgsDto, EnvironmentCarbonEmissionRelatesFromArgsDto, EnvironmentCarbonEmissionRelatesToArgsDto, EnvironmentCarbonEmissionTaggedByArgsDto, EnvironmentCarbonEmissionUpdateDto, EnvironmentCarbonEmissionUpdateMessageDto, EnvironmentCertificateOfOriginAssociationsArgsDto, EnvironmentCertificateOfOriginConfiguredByArgsDto, EnvironmentCertificateOfOriginConnectionDto, EnvironmentCertificateOfOriginDto, EnvironmentCertificateOfOriginEdgeDto, EnvironmentCertificateOfOriginInputDto, EnvironmentCertificateOfOriginInputUpdateDto, EnvironmentCertificateOfOriginMapsFromArgsDto, EnvironmentCertificateOfOriginMapsToArgsDto, EnvironmentCertificateOfOriginMutationsCreateArgsDto, EnvironmentCertificateOfOriginMutationsDto, EnvironmentCertificateOfOriginMutationsUpdateArgsDto, EnvironmentCertificateOfOriginParentArgsDto, EnvironmentCertificateOfOriginRelatesFromArgsDto, EnvironmentCertificateOfOriginRelatesToArgsDto, EnvironmentCertificateOfOriginTaggedByArgsDto, EnvironmentCertificateOfOriginUpdateDto, EnvironmentCertificateOfOriginUpdateMessageDto, EnvironmentComplianceRecordAssociationsArgsDto, EnvironmentComplianceRecordConfiguredByArgsDto, EnvironmentComplianceRecordConnectionDto, EnvironmentComplianceRecordDto, EnvironmentComplianceRecordEdgeDto, EnvironmentComplianceRecordInputDto, EnvironmentComplianceRecordInputUpdateDto, EnvironmentComplianceRecordMapsFromArgsDto, EnvironmentComplianceRecordMapsToArgsDto, EnvironmentComplianceRecordMutationsCreateArgsDto, EnvironmentComplianceRecordMutationsDto, EnvironmentComplianceRecordMutationsUpdateArgsDto, EnvironmentComplianceRecordParentArgsDto, EnvironmentComplianceRecordRelatesFromArgsDto, EnvironmentComplianceRecordRelatesToArgsDto, EnvironmentComplianceRecordTaggedByArgsDto, EnvironmentComplianceRecordUpdateDto, EnvironmentComplianceRecordUpdateMessageDto, EnvironmentEnvironmentalGoalAssociationsArgsDto, EnvironmentEnvironmentalGoalConfiguredByArgsDto, EnvironmentEnvironmentalGoalConnectionDto, EnvironmentEnvironmentalGoalDto, EnvironmentEnvironmentalGoalEdgeDto, EnvironmentEnvironmentalGoalInputDto, EnvironmentEnvironmentalGoalInputUpdateDto, EnvironmentEnvironmentalGoalMapsFromArgsDto, EnvironmentEnvironmentalGoalMapsToArgsDto, EnvironmentEnvironmentalGoalMutationsCreateArgsDto, EnvironmentEnvironmentalGoalMutationsDto, EnvironmentEnvironmentalGoalMutationsUpdateArgsDto, EnvironmentEnvironmentalGoalParentArgsDto, EnvironmentEnvironmentalGoalRelatesFromArgsDto, EnvironmentEnvironmentalGoalRelatesToArgsDto, EnvironmentEnvironmentalGoalTaggedByArgsDto, EnvironmentEnvironmentalGoalUpdateDto, EnvironmentEnvironmentalGoalUpdateMessageDto, EnvironmentWasteMeterAssociationsArgsDto, EnvironmentWasteMeterChildrenArgsDto, EnvironmentWasteMeterConfiguredByArgsDto, EnvironmentWasteMeterConnectionDto, EnvironmentWasteMeterDto, EnvironmentWasteMeterEdgeDto, EnvironmentWasteMeterEventsArgsDto, EnvironmentWasteMeterInputDto, EnvironmentWasteMeterInputUpdateDto, EnvironmentWasteMeterMapsFromArgsDto, EnvironmentWasteMeterMapsToArgsDto, EnvironmentWasteMeterMutationsCreateArgsDto, EnvironmentWasteMeterMutationsDto, EnvironmentWasteMeterMutationsUpdateArgsDto, EnvironmentWasteMeterOrdersArgsDto, EnvironmentWasteMeterParentArgsDto, EnvironmentWasteMeterRelatesFromArgsDto, EnvironmentWasteMeterRelatesToArgsDto, EnvironmentWasteMeterTaggedByArgsDto, EnvironmentWasteMeterUpdateDto, EnvironmentWasteMeterUpdateMessageDto, 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, IndustryBasicMachineOrderItemsArgsDto, IndustryBasicMachineOrdersArgsDto, IndustryBasicMachineParentArgsDto, IndustryBasicMachineRelatesFromArgsDto, IndustryBasicMachineRelatesToArgsDto, IndustryBasicMachineRuntimeVariablesArgsDto, IndustryBasicMachineShiftAssignmentsArgsDto, 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, IndustryEnergyEnergyConsumerOrderItemsArgsDto, IndustryEnergyEnergyConsumerOrdersArgsDto, IndustryEnergyEnergyConsumerParentArgsDto, IndustryEnergyEnergyConsumerRelatesFromArgsDto, IndustryEnergyEnergyConsumerRelatesToArgsDto, IndustryEnergyEnergyConsumerRuntimeVariablesArgsDto, IndustryEnergyEnergyConsumerShiftAssignmentsArgsDto, 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, IndustryEnergyEnergyMeterOrderItemsArgsDto, IndustryEnergyEnergyMeterOrdersArgsDto, IndustryEnergyEnergyMeterParentArgsDto, IndustryEnergyEnergyMeterRelatesFromArgsDto, IndustryEnergyEnergyMeterRelatesToArgsDto, IndustryEnergyEnergyMeterRuntimeVariablesArgsDto, IndustryEnergyEnergyMeterShiftAssignmentsArgsDto, 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, IndustryEnergyEnergyStorageOrderItemsArgsDto, IndustryEnergyEnergyStorageOrdersArgsDto, IndustryEnergyEnergyStorageParentArgsDto, IndustryEnergyEnergyStorageRelatesFromArgsDto, IndustryEnergyEnergyStorageRelatesToArgsDto, IndustryEnergyEnergyStorageRuntimeVariablesArgsDto, IndustryEnergyEnergyStorageShiftAssignmentsArgsDto, IndustryEnergyEnergyStorageTaggedByArgsDto, IndustryEnergyEnergyStorageUpdateDto, IndustryEnergyEnergyStorageUpdateMessageDto, IndustryEnergyInverterAssociationsArgsDto, IndustryEnergyInverterChildrenArgsDto, IndustryEnergyInverterConfiguredByArgsDto, IndustryEnergyInverterConnectionDto, IndustryEnergyInverterDto, IndustryEnergyInverterEdgeDto, IndustryEnergyInverterEventsArgsDto, IndustryEnergyInverterInputDto, IndustryEnergyInverterInputUpdateDto, IndustryEnergyInverterMapsFromArgsDto, IndustryEnergyInverterMapsToArgsDto, IndustryEnergyInverterMutationsCreateArgsDto, IndustryEnergyInverterMutationsDto, IndustryEnergyInverterMutationsUpdateArgsDto, IndustryEnergyInverterOrderItemsArgsDto, IndustryEnergyInverterOrdersArgsDto, IndustryEnergyInverterParentArgsDto, IndustryEnergyInverterRelatesFromArgsDto, IndustryEnergyInverterRelatesToArgsDto, IndustryEnergyInverterRuntimeVariablesArgsDto, IndustryEnergyInverterShiftAssignmentsArgsDto, 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, IndustryEnergyPhotovoltaicSystemModuleOrderItemsArgsDto, IndustryEnergyPhotovoltaicSystemModuleOrdersArgsDto, IndustryEnergyPhotovoltaicSystemModuleParentArgsDto, IndustryEnergyPhotovoltaicSystemModuleRelatesFromArgsDto, IndustryEnergyPhotovoltaicSystemModuleRelatesToArgsDto, IndustryEnergyPhotovoltaicSystemModuleRuntimeVariablesArgsDto, IndustryEnergyPhotovoltaicSystemModuleShiftAssignmentsArgsDto, 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, IndustryFluidHeatMeterOrderItemsArgsDto, IndustryFluidHeatMeterOrdersArgsDto, IndustryFluidHeatMeterParentArgsDto, IndustryFluidHeatMeterRelatesFromArgsDto, IndustryFluidHeatMeterRelatesToArgsDto, IndustryFluidHeatMeterRuntimeVariablesArgsDto, IndustryFluidHeatMeterShiftAssignmentsArgsDto, IndustryFluidHeatMeterTaggedByArgsDto, IndustryFluidHeatMeterUpdateDto, IndustryFluidHeatMeterUpdateMessageDto, IndustryFluidWaterMeterAssociationsArgsDto, IndustryFluidWaterMeterChildrenArgsDto, IndustryFluidWaterMeterConfiguredByArgsDto, IndustryFluidWaterMeterConnectionDto, IndustryFluidWaterMeterDto, IndustryFluidWaterMeterEdgeDto, IndustryFluidWaterMeterEventsArgsDto, IndustryFluidWaterMeterInputDto, IndustryFluidWaterMeterInputUpdateDto, IndustryFluidWaterMeterMapsFromArgsDto, IndustryFluidWaterMeterMapsToArgsDto, IndustryFluidWaterMeterMutationsCreateArgsDto, IndustryFluidWaterMeterMutationsDto, IndustryFluidWaterMeterMutationsUpdateArgsDto, IndustryFluidWaterMeterOrderItemsArgsDto, IndustryFluidWaterMeterOrdersArgsDto, IndustryFluidWaterMeterParentArgsDto, IndustryFluidWaterMeterRelatesFromArgsDto, IndustryFluidWaterMeterRelatesToArgsDto, IndustryFluidWaterMeterRuntimeVariablesArgsDto, IndustryFluidWaterMeterShiftAssignmentsArgsDto, 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, IndustryManufacturingOeeStatisticsDto, IndustryManufacturingOeeStatisticsInputDto, IndustryManufacturingPartialFeedbackAssociationsArgsDto, IndustryManufacturingPartialFeedbackConfiguredByArgsDto, IndustryManufacturingPartialFeedbackConnectionDto, IndustryManufacturingPartialFeedbackDto, IndustryManufacturingPartialFeedbackEdgeDto, IndustryManufacturingPartialFeedbackEmployeeArgsDto, IndustryManufacturingPartialFeedbackInputDto, IndustryManufacturingPartialFeedbackInputUpdateDto, IndustryManufacturingPartialFeedbackMapsFromArgsDto, IndustryManufacturingPartialFeedbackMapsToArgsDto, IndustryManufacturingPartialFeedbackMutationsCreateArgsDto, IndustryManufacturingPartialFeedbackMutationsDto, IndustryManufacturingPartialFeedbackMutationsUpdateArgsDto, IndustryManufacturingPartialFeedbackParentArgsDto, IndustryManufacturingPartialFeedbackRelatesFromArgsDto, IndustryManufacturingPartialFeedbackRelatesToArgsDto, IndustryManufacturingPartialFeedbackTaggedByArgsDto, IndustryManufacturingPartialFeedbackUpdateDto, IndustryManufacturingPartialFeedbackUpdateMessageDto, IndustryManufacturingPartialFeedback_ChildrenUnionConnectionDto, IndustryManufacturingPartialFeedback_ChildrenUnionDto, IndustryManufacturingPartialFeedback_ChildrenUnionEdgeDto, IndustryManufacturingPartialFeedback_PartialFeedbacksUnionConnectionDto, IndustryManufacturingPartialFeedback_PartialFeedbacksUnionDto, IndustryManufacturingPartialFeedback_PartialFeedbacksUnionEdgeDto, IndustryManufacturingProductionOrderAssociationsArgsDto, IndustryManufacturingProductionOrderChildrenArgsDto, IndustryManufacturingProductionOrderConfiguredByArgsDto, IndustryManufacturingProductionOrderConnectionDto, IndustryManufacturingProductionOrderDto, IndustryManufacturingProductionOrderEdgeDto, IndustryManufacturingProductionOrderInputDto, IndustryManufacturingProductionOrderInputUpdateDto, IndustryManufacturingProductionOrderItemAssociationsArgsDto, IndustryManufacturingProductionOrderItemConfiguredByArgsDto, IndustryManufacturingProductionOrderItemConnectionDto, IndustryManufacturingProductionOrderItemDto, IndustryManufacturingProductionOrderItemEdgeDto, IndustryManufacturingProductionOrderItemInputDto, IndustryManufacturingProductionOrderItemInputUpdateDto, IndustryManufacturingProductionOrderItemMachineArgsDto, IndustryManufacturingProductionOrderItemMapsFromArgsDto, IndustryManufacturingProductionOrderItemMapsToArgsDto, IndustryManufacturingProductionOrderItemMutationsCreateArgsDto, IndustryManufacturingProductionOrderItemMutationsDto, IndustryManufacturingProductionOrderItemMutationsUpdateArgsDto, IndustryManufacturingProductionOrderItemParentArgsDto, IndustryManufacturingProductionOrderItemRelatesFromArgsDto, IndustryManufacturingProductionOrderItemRelatesToArgsDto, IndustryManufacturingProductionOrderItemShiftOrderItemsArgsDto, IndustryManufacturingProductionOrderItemTaggedByArgsDto, IndustryManufacturingProductionOrderItemUpdateDto, IndustryManufacturingProductionOrderItemUpdateMessageDto, IndustryManufacturingProductionOrderItem_ChildrenUnionConnectionDto, IndustryManufacturingProductionOrderItem_ChildrenUnionDto, IndustryManufacturingProductionOrderItem_ChildrenUnionEdgeDto, IndustryManufacturingProductionOrderItem_OrderItemsUnionConnectionDto, IndustryManufacturingProductionOrderItem_OrderItemsUnionDto, IndustryManufacturingProductionOrderItem_OrderItemsUnionEdgeDto, IndustryManufacturingProductionOrderItem_ProductionOrderItemUnionConnectionDto, IndustryManufacturingProductionOrderItem_ProductionOrderItemUnionDto, IndustryManufacturingProductionOrderItem_ProductionOrderItemUnionEdgeDto, IndustryManufacturingProductionOrderMapsFromArgsDto, IndustryManufacturingProductionOrderMapsToArgsDto, IndustryManufacturingProductionOrderMutationsCreateArgsDto, IndustryManufacturingProductionOrderMutationsDto, IndustryManufacturingProductionOrderMutationsUpdateArgsDto, IndustryManufacturingProductionOrderRelatesFromArgsDto, IndustryManufacturingProductionOrderRelatesToArgsDto, IndustryManufacturingProductionOrderTaggedByArgsDto, IndustryManufacturingProductionOrderUpdateDto, IndustryManufacturingProductionOrderUpdateMessageDto, IndustryManufacturingProductionOrder_ParentUnionConnectionDto, IndustryManufacturingProductionOrder_ParentUnionDto, IndustryManufacturingProductionOrder_ParentUnionEdgeDto, IndustryManufacturingShiftAssociationsArgsDto, IndustryManufacturingShiftChildrenArgsDto, IndustryManufacturingShiftConfiguredByArgsDto, IndustryManufacturingShiftConnectionDto, IndustryManufacturingShiftDto, IndustryManufacturingShiftEdgeDto, IndustryManufacturingShiftInputDto, IndustryManufacturingShiftInputUpdateDto, IndustryManufacturingShiftMachineAssociationsArgsDto, IndustryManufacturingShiftMachineConfiguredByArgsDto, IndustryManufacturingShiftMachineConnectionDto, IndustryManufacturingShiftMachineDto, IndustryManufacturingShiftMachineEdgeDto, IndustryManufacturingShiftMachineEmployeesArgsDto, IndustryManufacturingShiftMachineInputDto, IndustryManufacturingShiftMachineInputUpdateDto, IndustryManufacturingShiftMachineMachineArgsDto, IndustryManufacturingShiftMachineMapsFromArgsDto, IndustryManufacturingShiftMachineMapsToArgsDto, IndustryManufacturingShiftMachineMutationsCreateArgsDto, IndustryManufacturingShiftMachineMutationsDto, IndustryManufacturingShiftMachineMutationsUpdateArgsDto, IndustryManufacturingShiftMachineParentArgsDto, IndustryManufacturingShiftMachineRelatesFromArgsDto, IndustryManufacturingShiftMachineRelatesToArgsDto, IndustryManufacturingShiftMachineTaggedByArgsDto, IndustryManufacturingShiftMachineUpdateDto, IndustryManufacturingShiftMachineUpdateMessageDto, IndustryManufacturingShiftMachine_ChildrenUnionConnectionDto, IndustryManufacturingShiftMachine_ChildrenUnionDto, IndustryManufacturingShiftMachine_ChildrenUnionEdgeDto, IndustryManufacturingShiftMachine_ShiftAssignmentsUnionConnectionDto, IndustryManufacturingShiftMachine_ShiftAssignmentsUnionDto, IndustryManufacturingShiftMachine_ShiftAssignmentsUnionEdgeDto, IndustryManufacturingShiftMachine_ShiftMachinesUnionConnectionDto, IndustryManufacturingShiftMachine_ShiftMachinesUnionDto, IndustryManufacturingShiftMachine_ShiftMachinesUnionEdgeDto, IndustryManufacturingShiftMapsFromArgsDto, IndustryManufacturingShiftMapsToArgsDto, IndustryManufacturingShiftMutationsCreateArgsDto, IndustryManufacturingShiftMutationsDto, IndustryManufacturingShiftMutationsUpdateArgsDto, IndustryManufacturingShiftOrderItemAssociationsArgsDto, IndustryManufacturingShiftOrderItemChildrenArgsDto, IndustryManufacturingShiftOrderItemConfiguredByArgsDto, IndustryManufacturingShiftOrderItemConnectionDto, IndustryManufacturingShiftOrderItemDto, IndustryManufacturingShiftOrderItemEdgeDto, IndustryManufacturingShiftOrderItemEmployeesArgsDto, IndustryManufacturingShiftOrderItemInputDto, IndustryManufacturingShiftOrderItemInputUpdateDto, IndustryManufacturingShiftOrderItemMapsFromArgsDto, IndustryManufacturingShiftOrderItemMapsToArgsDto, IndustryManufacturingShiftOrderItemMutationsCreateArgsDto, IndustryManufacturingShiftOrderItemMutationsDto, IndustryManufacturingShiftOrderItemMutationsUpdateArgsDto, IndustryManufacturingShiftOrderItemParentArgsDto, IndustryManufacturingShiftOrderItemProductionOrderItemArgsDto, IndustryManufacturingShiftOrderItemRelatesFromArgsDto, IndustryManufacturingShiftOrderItemRelatesToArgsDto, IndustryManufacturingShiftOrderItemTaggedByArgsDto, IndustryManufacturingShiftOrderItemUpdateDto, IndustryManufacturingShiftOrderItemUpdateMessageDto, IndustryManufacturingShiftOrderItem_ParentUnionConnectionDto, IndustryManufacturingShiftOrderItem_ParentUnionDto, IndustryManufacturingShiftOrderItem_ParentUnionEdgeDto, IndustryManufacturingShiftOrderItem_ShiftOrderItemsUnionConnectionDto, IndustryManufacturingShiftOrderItem_ShiftOrderItemsUnionDto, IndustryManufacturingShiftOrderItem_ShiftOrderItemsUnionEdgeDto, IndustryManufacturingShiftRelatesFromArgsDto, IndustryManufacturingShiftRelatesToArgsDto, IndustryManufacturingShiftTaggedByArgsDto, IndustryManufacturingShiftTemplateAssociationsArgsDto, IndustryManufacturingShiftTemplateConfiguredByArgsDto, IndustryManufacturingShiftTemplateConnectionDto, IndustryManufacturingShiftTemplateDto, IndustryManufacturingShiftTemplateEdgeDto, IndustryManufacturingShiftTemplateInputDto, IndustryManufacturingShiftTemplateInputUpdateDto, IndustryManufacturingShiftTemplateMapsFromArgsDto, IndustryManufacturingShiftTemplateMapsToArgsDto, IndustryManufacturingShiftTemplateMutationsCreateArgsDto, IndustryManufacturingShiftTemplateMutationsDto, IndustryManufacturingShiftTemplateMutationsUpdateArgsDto, IndustryManufacturingShiftTemplateRelatesFromArgsDto, IndustryManufacturingShiftTemplateRelatesToArgsDto, IndustryManufacturingShiftTemplateTaggedByArgsDto, IndustryManufacturingShiftTemplateUpdateDto, IndustryManufacturingShiftTemplateUpdateMessageDto, IndustryManufacturingShiftUpdateDto, IndustryManufacturingShiftUpdateMessageDto, IndustryManufacturingShift_ParentUnionConnectionDto, IndustryManufacturingShift_ParentUnionDto, IndustryManufacturingShift_ParentUnionEdgeDto, InputMaybe, JobDto, JobResponseDto, LargeBinaryInfoDto, MakeEmpty, MakeMaybe, MakeOptional, Maybe, MergeUsersRequestDto, MigrationHistoryEntryDto, MigrationHistoryResponseDto, MovePipelineResultDto, MovePipelinesToAdapterRequestDto, MovePipelinesToAdapterResponseDto, NearGeospatialFilterDto, NodeDescriptorDto, OctoMutationDto, OctoQueryAvailableArchivePathsArgsDto, 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, OctoSubscriptionsBasicEnergyConsumerEventsArgsDto, OctoSubscriptionsBasicEnergyEdaMessageEventsArgsDto, OctoSubscriptionsBasicEnergyEdaMeteringPointEventsArgsDto, OctoSubscriptionsBasicEnergyEdaProcessEventsArgsDto, OctoSubscriptionsBasicEnergyEnergyMeasurementEventsArgsDto, OctoSubscriptionsBasicEnergyMeteringPointEventsArgsDto, OctoSubscriptionsBasicEnergyOperatingFacilityEventsArgsDto, OctoSubscriptionsBasicEnergyProducerEventsArgsDto, OctoSubscriptionsBasicNamedEntityEventsArgsDto, OctoSubscriptionsBasicStateEventsArgsDto, OctoSubscriptionsBasicTreeEventsArgsDto, OctoSubscriptionsBasicTreeNodeEventsArgsDto, OctoSubscriptionsDto, OctoSubscriptionsEnergyCommunityBillingDocumentEventsArgsDto, OctoSubscriptionsEnergyCommunityBillingDocumentLineItemEventsArgsDto, OctoSubscriptionsEnergyCommunityConsumerEventsArgsDto, OctoSubscriptionsEnergyCommunityCustomerEventsArgsDto, OctoSubscriptionsEnergyCommunityEdaMessageEventsArgsDto, OctoSubscriptionsEnergyCommunityEdaMeteringPointEventsArgsDto, OctoSubscriptionsEnergyCommunityEdaProcessEventsArgsDto, OctoSubscriptionsEnergyCommunityEnergyPriceEventsArgsDto, OctoSubscriptionsEnergyCommunityEnergyQuantityEventsArgsDto, OctoSubscriptionsEnergyCommunityMeteringPointEventsArgsDto, OctoSubscriptionsEnergyCommunityOperatingFacilityEventsArgsDto, OctoSubscriptionsEnergyCommunityParticipationPeriodEventsArgsDto, OctoSubscriptionsEnergyCommunityProducerEventsArgsDto, OctoSubscriptionsEnvironmentCarbonBudgetEventsArgsDto, OctoSubscriptionsEnvironmentCarbonEmissionEventsArgsDto, OctoSubscriptionsEnvironmentCertificateOfOriginEventsArgsDto, OctoSubscriptionsEnvironmentComplianceRecordEventsArgsDto, OctoSubscriptionsEnvironmentEnvironmentalGoalEventsArgsDto, OctoSubscriptionsEnvironmentWasteMeterEventsArgsDto, 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, OctoSubscriptionsIndustryManufacturingPartialFeedbackEventsArgsDto, OctoSubscriptionsIndustryManufacturingProductionOrderEventsArgsDto, OctoSubscriptionsIndustryManufacturingProductionOrderItemEventsArgsDto, OctoSubscriptionsIndustryManufacturingShiftEventsArgsDto, OctoSubscriptionsIndustryManufacturingShiftMachineEventsArgsDto, OctoSubscriptionsIndustryManufacturingShiftOrderItemEventsArgsDto, OctoSubscriptionsIndustryManufacturingShiftTemplateEventsArgsDto, OctoSubscriptionsOctoSdkDemoCustomerEventsArgsDto, OctoSubscriptionsOctoSdkDemoMeteringPointEventsArgsDto, OctoSubscriptionsOctoSdkDemoOperatingFacilityEventsArgsDto, OctoSubscriptionsSystemAggregationRtQueryEventsArgsDto, OctoSubscriptionsSystemAggregationSdQueryEventsArgsDto, OctoSubscriptionsSystemAiAiAgentConfigEventsArgsDto, OctoSubscriptionsSystemAiAiAgentJobEventsArgsDto, OctoSubscriptionsSystemAiAiAgentSessionEventsArgsDto, OctoSubscriptionsSystemAiAiApprovalRequestEventsArgsDto, OctoSubscriptionsSystemAiAiAuditEventEventsArgsDto, OctoSubscriptionsSystemAiAiCredentialBindingEventsArgsDto, OctoSubscriptionsSystemAiAiCredentialTicketEventsArgsDto, OctoSubscriptionsSystemAiAiKnowledgeSourceEventsArgsDto, OctoSubscriptionsSystemAiAiPromptTemplateEventsArgsDto, OctoSubscriptionsSystemAiAiQuotaLimitEventsArgsDto, OctoSubscriptionsSystemAiAiSessionEventEventsArgsDto, OctoSubscriptionsSystemAiAiTokenLeaseEventsArgsDto, OctoSubscriptionsSystemAiAiToolPolicyEventsArgsDto, OctoSubscriptionsSystemAiAiUsageRecordEventsArgsDto, OctoSubscriptionsSystemAutoIncrementEventsArgsDto, OctoSubscriptionsSystemBlueprintBackupEventsArgsDto, OctoSubscriptionsSystemBlueprintHistoryEventsArgsDto, OctoSubscriptionsSystemBlueprintInstallationEventsArgsDto, OctoSubscriptionsSystemBotAttributeAggregateConfigurationEventsArgsDto, OctoSubscriptionsSystemBotFixupEventsArgsDto, OctoSubscriptionsSystemCommunicationAdapterEventsArgsDto, OctoSubscriptionsSystemCommunicationAiConfigurationEventsArgsDto, OctoSubscriptionsSystemCommunicationApplicationEventsArgsDto, OctoSubscriptionsSystemCommunicationDataFlowEventsArgsDto, OctoSubscriptionsSystemCommunicationDataPointMappingEventsArgsDto, OctoSubscriptionsSystemCommunicationDeployableEntityEventsArgsDto, OctoSubscriptionsSystemCommunicationDeployableWorkloadEventsArgsDto, OctoSubscriptionsSystemCommunicationDiscordConfigurationEventsArgsDto, OctoSubscriptionsSystemCommunicationEMailReceiverConfigurationEventsArgsDto, OctoSubscriptionsSystemCommunicationEMailSenderConfigurationEventsArgsDto, OctoSubscriptionsSystemCommunicationEdaConfigurationEventsArgsDto, OctoSubscriptionsSystemCommunicationEnergyCommunityConfigurationEventsArgsDto, OctoSubscriptionsSystemCommunicationFinApiConfigurationEventsArgsDto, OctoSubscriptionsSystemCommunicationGrafanaConfigurationEventsArgsDto, OctoSubscriptionsSystemCommunicationHelmRepositoryConfigurationEventsArgsDto, OctoSubscriptionsSystemCommunicationLoxoneConfigurationEventsArgsDto, OctoSubscriptionsSystemCommunicationMicrosoftGraphConfigurationEventsArgsDto, OctoSubscriptionsSystemCommunicationPipelineEventsArgsDto, OctoSubscriptionsSystemCommunicationPipelineExecutionEventsArgsDto, OctoSubscriptionsSystemCommunicationPipelineStatisticsEventsArgsDto, OctoSubscriptionsSystemCommunicationPipelineTriggerEventsArgsDto, OctoSubscriptionsSystemCommunicationPoolEventsArgsDto, OctoSubscriptionsSystemCommunicationSapConfigurationEventsArgsDto, OctoSubscriptionsSystemCommunicationServiceAccountConfigurationEventsArgsDto, OctoSubscriptionsSystemCommunicationSftpConfigurationEventsArgsDto, OctoSubscriptionsSystemCommunicationTagEventsArgsDto, OctoSubscriptionsSystemConfigurationEventsArgsDto, OctoSubscriptionsSystemDownsamplingSdQueryEventsArgsDto, OctoSubscriptionsSystemEntityEventsArgsDto, OctoSubscriptionsSystemGroupingAggregationRtQueryEventsArgsDto, OctoSubscriptionsSystemGroupingAggregationSdQueryEventsArgsDto, OctoSubscriptionsSystemIdentityApiResourceEventsArgsDto, OctoSubscriptionsSystemIdentityApiScopeEventsArgsDto, OctoSubscriptionsSystemIdentityAzureEntraIdIdentityProviderEventsArgsDto, OctoSubscriptionsSystemIdentityClientEventsArgsDto, OctoSubscriptionsSystemIdentityClientMirrorEventsArgsDto, OctoSubscriptionsSystemIdentityDataProtectionKeyEventsArgsDto, OctoSubscriptionsSystemIdentityEmailDomainGroupRuleEventsArgsDto, OctoSubscriptionsSystemIdentityExternalTenantUserMappingEventsArgsDto, OctoSubscriptionsSystemIdentityFacebookIdentityProviderEventsArgsDto, OctoSubscriptionsSystemIdentityGoogleIdentityProviderEventsArgsDto, OctoSubscriptionsSystemIdentityGroupEventsArgsDto, OctoSubscriptionsSystemIdentityIdentityProviderEventsArgsDto, OctoSubscriptionsSystemIdentityIdentityResourceEventsArgsDto, OctoSubscriptionsSystemIdentityMicrosoftAdIdentityProviderEventsArgsDto, OctoSubscriptionsSystemIdentityMicrosoftIdentityProviderEventsArgsDto, OctoSubscriptionsSystemIdentityOctoTenantIdentityProviderEventsArgsDto, OctoSubscriptionsSystemIdentityOpenLdapIdentityProviderEventsArgsDto, OctoSubscriptionsSystemIdentityPermissionEventsArgsDto, OctoSubscriptionsSystemIdentityPermissionRoleEventsArgsDto, OctoSubscriptionsSystemIdentityPersistedGrantEventsArgsDto, OctoSubscriptionsSystemIdentityResourceEventsArgsDto, OctoSubscriptionsSystemIdentityRoleEventsArgsDto, OctoSubscriptionsSystemIdentityServerSideSessionEventsArgsDto, OctoSubscriptionsSystemIdentityUserEventsArgsDto, OctoSubscriptionsSystemMigrationHistoryEventsArgsDto, OctoSubscriptionsSystemNotificationCssTemplateConfigurationEventsArgsDto, OctoSubscriptionsSystemNotificationEventEventsArgsDto, OctoSubscriptionsSystemNotificationMailNotificationConfigurationEventsArgsDto, OctoSubscriptionsSystemNotificationNotificationTemplateEventsArgsDto, OctoSubscriptionsSystemNotificationStatefulEventEventsArgsDto, OctoSubscriptionsSystemPersistentQueryEventsArgsDto, OctoSubscriptionsSystemReportingConnectionInfoEventsArgsDto, OctoSubscriptionsSystemReportingFileSystemContainerEventsArgsDto, OctoSubscriptionsSystemReportingFileSystemEntityEventsArgsDto, OctoSubscriptionsSystemReportingFileSystemItemEventsArgsDto, OctoSubscriptionsSystemReportingFolderEventsArgsDto, OctoSubscriptionsSystemReportingFolderRootEventsArgsDto, OctoSubscriptionsSystemSimpleRtQueryEventsArgsDto, OctoSubscriptionsSystemSimpleSdQueryEventsArgsDto, OctoSubscriptionsSystemStreamDataArchiveEventsArgsDto, OctoSubscriptionsSystemStreamDataQueryEventsArgsDto, OctoSubscriptionsSystemStreamDataRawArchiveEventsArgsDto, OctoSubscriptionsSystemStreamDataRecomputeJobEventsArgsDto, OctoSubscriptionsSystemStreamDataRollupArchiveEventsArgsDto, OctoSubscriptionsSystemStreamDataTimeRangeArchiveEventsArgsDto, OctoSubscriptionsSystemTenantConfigurationEventsArgsDto, OctoSubscriptionsSystemTenantEventsArgsDto, OctoSubscriptionsSystemTenantModeConfigurationEventsArgsDto, OctoSubscriptionsSystemUiBrandingEventsArgsDto, OctoSubscriptionsSystemUiDashboardEventsArgsDto, OctoSubscriptionsSystemUiDashboardWidgetEventsArgsDto, OctoSubscriptionsSystemUiProcessDiagramEventsArgsDto, OctoSubscriptionsSystemUiSymbolDefinitionEventsArgsDto, OctoSubscriptionsSystemUiSymbolLibraryEventsArgsDto, OctoSubscriptionsSystemUiTreeNavigationConfigurationEventsArgsDto, OctoSubscriptionsSystemUiuiElementEventsArgsDto, PageInfoDto, PipelineExecutionDataDto, PipelineNodePropertiesDto, PointInputDto, PositionInputDto, ProgressDialogRef, ProgressWindowOptions, ProvisioningGroupDto, ProvisioningSourceUserDto, QueryAggregationResultConnectionDto, QueryAggregationResultDto, QueryAggregationResultEdgeDto, RecomputeJobInfoDto, RegisterUserDto, ResolveSeriesQueryInputDto, ResolveSeriesQueryResultDto, ResultAggregationInputDto, RoleDto, RollupAggregationInfoDto, RollupAggregationInputDto, RollupArchiveInfoDto, RollupQueryMetadataDto, 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, RuntimeModelQueryBasicEnergyConsumerArgsDto, RuntimeModelQueryBasicEnergyEdaMessageArgsDto, RuntimeModelQueryBasicEnergyEdaMeteringPointArgsDto, RuntimeModelQueryBasicEnergyEdaProcessArgsDto, RuntimeModelQueryBasicEnergyEnergyMeasurementArgsDto, RuntimeModelQueryBasicEnergyMeteringPointArgsDto, RuntimeModelQueryBasicEnergyOperatingFacilityArgsDto, RuntimeModelQueryBasicEnergyProducerArgsDto, RuntimeModelQueryBasicNamedEntityArgsDto, RuntimeModelQueryBasicStateArgsDto, RuntimeModelQueryBasicTreeArgsDto, RuntimeModelQueryBasicTreeNodeArgsDto, RuntimeModelQueryDto, RuntimeModelQueryEnergyCommunityBillingDocumentArgsDto, RuntimeModelQueryEnergyCommunityBillingDocumentLineItemArgsDto, RuntimeModelQueryEnergyCommunityConsumerArgsDto, RuntimeModelQueryEnergyCommunityCustomerArgsDto, RuntimeModelQueryEnergyCommunityEdaMessageArgsDto, RuntimeModelQueryEnergyCommunityEdaMeteringPointArgsDto, RuntimeModelQueryEnergyCommunityEdaProcessArgsDto, RuntimeModelQueryEnergyCommunityEnergyPriceArgsDto, RuntimeModelQueryEnergyCommunityEnergyQuantityArgsDto, RuntimeModelQueryEnergyCommunityMeteringPointArgsDto, RuntimeModelQueryEnergyCommunityOperatingFacilityArgsDto, RuntimeModelQueryEnergyCommunityParticipationPeriodArgsDto, RuntimeModelQueryEnergyCommunityProducerArgsDto, RuntimeModelQueryEnvironmentCarbonBudgetArgsDto, RuntimeModelQueryEnvironmentCarbonEmissionArgsDto, RuntimeModelQueryEnvironmentCertificateOfOriginArgsDto, RuntimeModelQueryEnvironmentComplianceRecordArgsDto, RuntimeModelQueryEnvironmentEnvironmentalGoalArgsDto, RuntimeModelQueryEnvironmentWasteMeterArgsDto, 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, RuntimeModelQueryIndustryManufacturingPartialFeedbackArgsDto, RuntimeModelQueryIndustryManufacturingProductionOrderArgsDto, RuntimeModelQueryIndustryManufacturingProductionOrderItemArgsDto, RuntimeModelQueryIndustryManufacturingShiftArgsDto, RuntimeModelQueryIndustryManufacturingShiftMachineArgsDto, RuntimeModelQueryIndustryManufacturingShiftOrderItemArgsDto, RuntimeModelQueryIndustryManufacturingShiftTemplateArgsDto, RuntimeModelQueryOctoSdkDemoCustomerArgsDto, RuntimeModelQueryOctoSdkDemoMeteringPointArgsDto, RuntimeModelQueryOctoSdkDemoOperatingFacilityArgsDto, RuntimeModelQueryRuntimeEntitiesArgsDto, RuntimeModelQueryRuntimeQueryArgsDto, RuntimeModelQuerySystemAggregationRtQueryArgsDto, RuntimeModelQuerySystemAggregationSdQueryArgsDto, RuntimeModelQuerySystemAiAiAgentConfigArgsDto, RuntimeModelQuerySystemAiAiAgentJobArgsDto, RuntimeModelQuerySystemAiAiAgentSessionArgsDto, RuntimeModelQuerySystemAiAiApprovalRequestArgsDto, RuntimeModelQuerySystemAiAiAuditEventArgsDto, RuntimeModelQuerySystemAiAiCredentialBindingArgsDto, RuntimeModelQuerySystemAiAiCredentialTicketArgsDto, RuntimeModelQuerySystemAiAiKnowledgeSourceArgsDto, RuntimeModelQuerySystemAiAiPromptTemplateArgsDto, RuntimeModelQuerySystemAiAiQuotaLimitArgsDto, RuntimeModelQuerySystemAiAiSessionEventArgsDto, RuntimeModelQuerySystemAiAiTokenLeaseArgsDto, RuntimeModelQuerySystemAiAiToolPolicyArgsDto, RuntimeModelQuerySystemAiAiUsageRecordArgsDto, RuntimeModelQuerySystemAutoIncrementArgsDto, RuntimeModelQuerySystemBlueprintBackupArgsDto, RuntimeModelQuerySystemBlueprintHistoryArgsDto, RuntimeModelQuerySystemBlueprintInstallationArgsDto, RuntimeModelQuerySystemBotAttributeAggregateConfigurationArgsDto, RuntimeModelQuerySystemBotFixupArgsDto, RuntimeModelQuerySystemCommunicationAdapterArgsDto, RuntimeModelQuerySystemCommunicationAiConfigurationArgsDto, RuntimeModelQuerySystemCommunicationApplicationArgsDto, RuntimeModelQuerySystemCommunicationDataFlowArgsDto, RuntimeModelQuerySystemCommunicationDataPointMappingArgsDto, RuntimeModelQuerySystemCommunicationDeployableEntityArgsDto, RuntimeModelQuerySystemCommunicationDeployableWorkloadArgsDto, RuntimeModelQuerySystemCommunicationDiscordConfigurationArgsDto, RuntimeModelQuerySystemCommunicationEMailReceiverConfigurationArgsDto, RuntimeModelQuerySystemCommunicationEMailSenderConfigurationArgsDto, RuntimeModelQuerySystemCommunicationEdaConfigurationArgsDto, RuntimeModelQuerySystemCommunicationEnergyCommunityConfigurationArgsDto, RuntimeModelQuerySystemCommunicationFinApiConfigurationArgsDto, RuntimeModelQuerySystemCommunicationGrafanaConfigurationArgsDto, RuntimeModelQuerySystemCommunicationHelmRepositoryConfigurationArgsDto, RuntimeModelQuerySystemCommunicationLoxoneConfigurationArgsDto, RuntimeModelQuerySystemCommunicationMicrosoftGraphConfigurationArgsDto, RuntimeModelQuerySystemCommunicationPipelineArgsDto, RuntimeModelQuerySystemCommunicationPipelineExecutionArgsDto, RuntimeModelQuerySystemCommunicationPipelineStatisticsArgsDto, RuntimeModelQuerySystemCommunicationPipelineTriggerArgsDto, RuntimeModelQuerySystemCommunicationPoolArgsDto, RuntimeModelQuerySystemCommunicationSapConfigurationArgsDto, RuntimeModelQuerySystemCommunicationServiceAccountConfigurationArgsDto, RuntimeModelQuerySystemCommunicationSftpConfigurationArgsDto, RuntimeModelQuerySystemCommunicationTagArgsDto, RuntimeModelQuerySystemConfigurationArgsDto, RuntimeModelQuerySystemDownsamplingSdQueryArgsDto, RuntimeModelQuerySystemEntityArgsDto, RuntimeModelQuerySystemGroupingAggregationRtQueryArgsDto, RuntimeModelQuerySystemGroupingAggregationSdQueryArgsDto, RuntimeModelQuerySystemIdentityApiResourceArgsDto, RuntimeModelQuerySystemIdentityApiScopeArgsDto, RuntimeModelQuerySystemIdentityAzureEntraIdIdentityProviderArgsDto, RuntimeModelQuerySystemIdentityClientArgsDto, RuntimeModelQuerySystemIdentityClientMirrorArgsDto, RuntimeModelQuerySystemIdentityDataProtectionKeyArgsDto, RuntimeModelQuerySystemIdentityEmailDomainGroupRuleArgsDto, RuntimeModelQuerySystemIdentityExternalTenantUserMappingArgsDto, RuntimeModelQuerySystemIdentityFacebookIdentityProviderArgsDto, RuntimeModelQuerySystemIdentityGoogleIdentityProviderArgsDto, RuntimeModelQuerySystemIdentityGroupArgsDto, RuntimeModelQuerySystemIdentityIdentityProviderArgsDto, RuntimeModelQuerySystemIdentityIdentityResourceArgsDto, RuntimeModelQuerySystemIdentityMicrosoftAdIdentityProviderArgsDto, RuntimeModelQuerySystemIdentityMicrosoftIdentityProviderArgsDto, RuntimeModelQuerySystemIdentityOctoTenantIdentityProviderArgsDto, RuntimeModelQuerySystemIdentityOpenLdapIdentityProviderArgsDto, RuntimeModelQuerySystemIdentityPermissionArgsDto, RuntimeModelQuerySystemIdentityPermissionRoleArgsDto, RuntimeModelQuerySystemIdentityPersistedGrantArgsDto, RuntimeModelQuerySystemIdentityResourceArgsDto, RuntimeModelQuerySystemIdentityRoleArgsDto, RuntimeModelQuerySystemIdentityServerSideSessionArgsDto, RuntimeModelQuerySystemIdentityUserArgsDto, RuntimeModelQuerySystemMigrationHistoryArgsDto, RuntimeModelQuerySystemNotificationCssTemplateConfigurationArgsDto, RuntimeModelQuerySystemNotificationEventArgsDto, RuntimeModelQuerySystemNotificationMailNotificationConfigurationArgsDto, RuntimeModelQuerySystemNotificationNotificationTemplateArgsDto, RuntimeModelQuerySystemNotificationStatefulEventArgsDto, RuntimeModelQuerySystemPersistentQueryArgsDto, RuntimeModelQuerySystemReportingConnectionInfoArgsDto, RuntimeModelQuerySystemReportingFileSystemContainerArgsDto, RuntimeModelQuerySystemReportingFileSystemEntityArgsDto, RuntimeModelQuerySystemReportingFileSystemItemArgsDto, RuntimeModelQuerySystemReportingFolderArgsDto, RuntimeModelQuerySystemReportingFolderRootArgsDto, RuntimeModelQuerySystemSimpleRtQueryArgsDto, RuntimeModelQuerySystemSimpleSdQueryArgsDto, RuntimeModelQuerySystemStreamDataArchiveArgsDto, RuntimeModelQuerySystemStreamDataQueryArgsDto, RuntimeModelQuerySystemStreamDataRawArchiveArgsDto, RuntimeModelQuerySystemStreamDataRecomputeJobArgsDto, RuntimeModelQuerySystemStreamDataRollupArchiveArgsDto, RuntimeModelQuerySystemStreamDataTimeRangeArchiveArgsDto, RuntimeModelQuerySystemTenantArgsDto, RuntimeModelQuerySystemTenantConfigurationArgsDto, RuntimeModelQuerySystemTenantModeConfigurationArgsDto, RuntimeModelQuerySystemUiBrandingArgsDto, RuntimeModelQuerySystemUiDashboardArgsDto, RuntimeModelQuerySystemUiDashboardWidgetArgsDto, RuntimeModelQuerySystemUiProcessDiagramArgsDto, RuntimeModelQuerySystemUiSymbolDefinitionArgsDto, RuntimeModelQuerySystemUiSymbolLibraryArgsDto, RuntimeModelQuerySystemUiTreeNavigationConfigurationArgsDto, RuntimeModelQuerySystemUiuiElementArgsDto, RuntimeRuntimeQueryArgsDto, Scalars, SearchFilterDto, SetPipelineDebugResultDto, SortDto, StatisticsDto, StreamDataArgumentsDto, StreamDataModelQueryArchivesStorageStatsArgsDto, StreamDataModelQueryDto, StreamDataModelQueryRecomputeJobsForArgsDto, StreamDataModelQueryResolveSeriesQueryArgsDto, StreamDataModelQueryRollupQueryMetadataArgsDto, StreamDataModelQueryRollupsForArgsDto, StreamDataModelQueryStreamDataQueryArgsDto, StreamDataMutationsActivateArchiveArgsDto, StreamDataMutationsAddComputedColumnArgsDto, StreamDataMutationsBackfillRollupFromSourceArgsDto, StreamDataMutationsCreateRollupArchiveArgsDto, StreamDataMutationsCreateTimeRangeArchiveArgsDto, StreamDataMutationsDeleteArchiveArgsDto, StreamDataMutationsDisableArchiveArgsDto, StreamDataMutationsDto, StreamDataMutationsEnableArchiveArgsDto, StreamDataMutationsFreezeRollupArchiveArgsDto, StreamDataMutationsRecomputeArchiveArgsDto, StreamDataMutationsRemoveComputedColumnArgsDto, StreamDataMutationsRetryArchiveActivationArgsDto, StreamDataMutationsRewindRollupWatermarkArgsDto, StreamDataMutationsUnfreezeRollupArchiveArgsDto, StreamDataMutationsUpdateComputedColumnFormulaArgsDto, StreamDataQueryAggregationsArgsDto, StreamDataQueryColumnInputDto, StreamDataQueryDto, StreamDataQueryDtoConnectionDto, StreamDataQueryDtoEdgeDto, StreamDataQueryRowCellsArgsDto, StreamDataQueryRowDto, StreamDataQueryRowDtoConnectionDto, StreamDataQueryRowDtoEdgeDto, StreamDataQueryRowsArgsDto, StreamDataTransientAggregationArgsDto, StreamDataTransientDownsamplingArgsDto, StreamDataTransientDto, StreamDataTransientGroupingAggregationArgsDto, StreamDataTransientQueryAggregationsArgsDto, StreamDataTransientQueryDto, StreamDataTransientQueryDtoConnectionDto, StreamDataTransientQueryDtoEdgeDto, StreamDataTransientQueryRowsArgsDto, StreamDataTransientSimpleArgsDto, 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, SystemAiAiAgentConfigAssociationsArgsDto, SystemAiAiAgentConfigConfiguredByArgsDto, SystemAiAiAgentConfigConnectionDto, SystemAiAiAgentConfigDto, SystemAiAiAgentConfigEdgeDto, SystemAiAiAgentConfigInputDto, SystemAiAiAgentConfigInputUpdateDto, SystemAiAiAgentConfigMapsFromArgsDto, SystemAiAiAgentConfigMapsToArgsDto, SystemAiAiAgentConfigMutationsCreateArgsDto, SystemAiAiAgentConfigMutationsDto, SystemAiAiAgentConfigMutationsUpdateArgsDto, SystemAiAiAgentConfigRelatesFromArgsDto, SystemAiAiAgentConfigRelatesToArgsDto, SystemAiAiAgentConfigTaggedByArgsDto, SystemAiAiAgentConfigUpdateDto, SystemAiAiAgentConfigUpdateMessageDto, SystemAiAiAgentConfigUsedByArgsDto, SystemAiAiAgentJobAssociationsArgsDto, SystemAiAiAgentJobConfiguredByArgsDto, SystemAiAiAgentJobConnectionDto, SystemAiAiAgentJobDto, SystemAiAiAgentJobEdgeDto, SystemAiAiAgentJobInputDto, SystemAiAiAgentJobInputUpdateDto, SystemAiAiAgentJobMapsFromArgsDto, SystemAiAiAgentJobMapsToArgsDto, SystemAiAiAgentJobMutationsCreateArgsDto, SystemAiAiAgentJobMutationsDto, SystemAiAiAgentJobMutationsUpdateArgsDto, SystemAiAiAgentJobOwnedByAiResourceArgsDto, SystemAiAiAgentJobRelatesFromArgsDto, SystemAiAiAgentJobRelatesToArgsDto, SystemAiAiAgentJobTaggedByArgsDto, SystemAiAiAgentJobUpdateDto, SystemAiAiAgentJobUpdateMessageDto, SystemAiAiAgentJob_AiResourcesUnionConnectionDto, SystemAiAiAgentJob_AiResourcesUnionDto, SystemAiAiAgentJob_AiResourcesUnionEdgeDto, SystemAiAiAgentSessionAiResourcesArgsDto, SystemAiAiAgentSessionAssociationsArgsDto, SystemAiAiAgentSessionConfiguredByArgsDto, SystemAiAiAgentSessionConnectionDto, SystemAiAiAgentSessionDto, SystemAiAiAgentSessionEdgeDto, SystemAiAiAgentSessionInputDto, SystemAiAiAgentSessionInputUpdateDto, SystemAiAiAgentSessionMapsFromArgsDto, SystemAiAiAgentSessionMapsToArgsDto, SystemAiAiAgentSessionMutationsCreateArgsDto, SystemAiAiAgentSessionMutationsDto, SystemAiAiAgentSessionMutationsUpdateArgsDto, SystemAiAiAgentSessionRelatesFromArgsDto, SystemAiAiAgentSessionRelatesToArgsDto, SystemAiAiAgentSessionTaggedByArgsDto, SystemAiAiAgentSessionUpdateDto, SystemAiAiAgentSessionUpdateMessageDto, SystemAiAiAgentSession_OwnedByAiResourceUnionConnectionDto, SystemAiAiAgentSession_OwnedByAiResourceUnionDto, SystemAiAiAgentSession_OwnedByAiResourceUnionEdgeDto, SystemAiAiApprovalRequestAssociationsArgsDto, SystemAiAiApprovalRequestConfiguredByArgsDto, SystemAiAiApprovalRequestConnectionDto, SystemAiAiApprovalRequestDto, SystemAiAiApprovalRequestEdgeDto, SystemAiAiApprovalRequestInputDto, SystemAiAiApprovalRequestInputUpdateDto, SystemAiAiApprovalRequestMapsFromArgsDto, SystemAiAiApprovalRequestMapsToArgsDto, SystemAiAiApprovalRequestMutationsCreateArgsDto, SystemAiAiApprovalRequestMutationsDto, SystemAiAiApprovalRequestMutationsUpdateArgsDto, SystemAiAiApprovalRequestRelatesFromArgsDto, SystemAiAiApprovalRequestRelatesToArgsDto, SystemAiAiApprovalRequestTaggedByArgsDto, SystemAiAiApprovalRequestUpdateDto, SystemAiAiApprovalRequestUpdateMessageDto, SystemAiAiAuditEventAssociationsArgsDto, SystemAiAiAuditEventConfiguredByArgsDto, SystemAiAiAuditEventConnectionDto, SystemAiAiAuditEventDto, SystemAiAiAuditEventEdgeDto, SystemAiAiAuditEventInputDto, SystemAiAiAuditEventInputUpdateDto, SystemAiAiAuditEventMapsFromArgsDto, SystemAiAiAuditEventMapsToArgsDto, SystemAiAiAuditEventMutationsCreateArgsDto, SystemAiAiAuditEventMutationsDto, SystemAiAiAuditEventMutationsUpdateArgsDto, SystemAiAiAuditEventRelatesFromArgsDto, SystemAiAiAuditEventRelatesToArgsDto, SystemAiAiAuditEventTaggedByArgsDto, SystemAiAiAuditEventUpdateDto, SystemAiAiAuditEventUpdateMessageDto, SystemAiAiCredentialBindingAssociationsArgsDto, SystemAiAiCredentialBindingConfiguredByArgsDto, SystemAiAiCredentialBindingConnectionDto, SystemAiAiCredentialBindingDto, SystemAiAiCredentialBindingEdgeDto, SystemAiAiCredentialBindingInputDto, SystemAiAiCredentialBindingInputUpdateDto, SystemAiAiCredentialBindingMapsFromArgsDto, SystemAiAiCredentialBindingMapsToArgsDto, SystemAiAiCredentialBindingMutationsCreateArgsDto, SystemAiAiCredentialBindingMutationsDto, SystemAiAiCredentialBindingMutationsUpdateArgsDto, SystemAiAiCredentialBindingRelatesFromArgsDto, SystemAiAiCredentialBindingRelatesToArgsDto, SystemAiAiCredentialBindingTaggedByArgsDto, SystemAiAiCredentialBindingUpdateDto, SystemAiAiCredentialBindingUpdateMessageDto, SystemAiAiCredentialBindingUsedByArgsDto, SystemAiAiCredentialTicketAssociationsArgsDto, SystemAiAiCredentialTicketConfiguredByArgsDto, SystemAiAiCredentialTicketConnectionDto, SystemAiAiCredentialTicketDto, SystemAiAiCredentialTicketEdgeDto, SystemAiAiCredentialTicketInputDto, SystemAiAiCredentialTicketInputUpdateDto, SystemAiAiCredentialTicketMapsFromArgsDto, SystemAiAiCredentialTicketMapsToArgsDto, SystemAiAiCredentialTicketMutationsCreateArgsDto, SystemAiAiCredentialTicketMutationsDto, SystemAiAiCredentialTicketMutationsUpdateArgsDto, SystemAiAiCredentialTicketRelatesFromArgsDto, SystemAiAiCredentialTicketRelatesToArgsDto, SystemAiAiCredentialTicketTaggedByArgsDto, SystemAiAiCredentialTicketUpdateDto, SystemAiAiCredentialTicketUpdateMessageDto, SystemAiAiKnowledgeSourceAssociationsArgsDto, SystemAiAiKnowledgeSourceConfiguredByArgsDto, SystemAiAiKnowledgeSourceConnectionDto, SystemAiAiKnowledgeSourceDto, SystemAiAiKnowledgeSourceEdgeDto, SystemAiAiKnowledgeSourceInputDto, SystemAiAiKnowledgeSourceInputUpdateDto, SystemAiAiKnowledgeSourceMapsFromArgsDto, SystemAiAiKnowledgeSourceMapsToArgsDto, SystemAiAiKnowledgeSourceMutationsCreateArgsDto, SystemAiAiKnowledgeSourceMutationsDto, SystemAiAiKnowledgeSourceMutationsUpdateArgsDto, SystemAiAiKnowledgeSourceRelatesFromArgsDto, SystemAiAiKnowledgeSourceRelatesToArgsDto, SystemAiAiKnowledgeSourceTaggedByArgsDto, SystemAiAiKnowledgeSourceUpdateDto, SystemAiAiKnowledgeSourceUpdateMessageDto, SystemAiAiKnowledgeSourceUsedByArgsDto, SystemAiAiPromptTemplateAssociationsArgsDto, SystemAiAiPromptTemplateConfiguredByArgsDto, SystemAiAiPromptTemplateConnectionDto, SystemAiAiPromptTemplateDto, SystemAiAiPromptTemplateEdgeDto, SystemAiAiPromptTemplateInputDto, SystemAiAiPromptTemplateInputUpdateDto, SystemAiAiPromptTemplateMapsFromArgsDto, SystemAiAiPromptTemplateMapsToArgsDto, SystemAiAiPromptTemplateMutationsCreateArgsDto, SystemAiAiPromptTemplateMutationsDto, SystemAiAiPromptTemplateMutationsUpdateArgsDto, SystemAiAiPromptTemplateRelatesFromArgsDto, SystemAiAiPromptTemplateRelatesToArgsDto, SystemAiAiPromptTemplateTaggedByArgsDto, SystemAiAiPromptTemplateUpdateDto, SystemAiAiPromptTemplateUpdateMessageDto, SystemAiAiPromptTemplateUsedByArgsDto, SystemAiAiQuotaLimitAssociationsArgsDto, SystemAiAiQuotaLimitConfiguredByArgsDto, SystemAiAiQuotaLimitConnectionDto, SystemAiAiQuotaLimitDto, SystemAiAiQuotaLimitEdgeDto, SystemAiAiQuotaLimitInputDto, SystemAiAiQuotaLimitInputUpdateDto, SystemAiAiQuotaLimitMapsFromArgsDto, SystemAiAiQuotaLimitMapsToArgsDto, SystemAiAiQuotaLimitMutationsCreateArgsDto, SystemAiAiQuotaLimitMutationsDto, SystemAiAiQuotaLimitMutationsUpdateArgsDto, SystemAiAiQuotaLimitRelatesFromArgsDto, SystemAiAiQuotaLimitRelatesToArgsDto, SystemAiAiQuotaLimitTaggedByArgsDto, SystemAiAiQuotaLimitUpdateDto, SystemAiAiQuotaLimitUpdateMessageDto, SystemAiAiQuotaLimitUsedByArgsDto, SystemAiAiSessionEventAssociationsArgsDto, SystemAiAiSessionEventConfiguredByArgsDto, SystemAiAiSessionEventConnectionDto, SystemAiAiSessionEventDto, SystemAiAiSessionEventEdgeDto, SystemAiAiSessionEventInputDto, SystemAiAiSessionEventInputUpdateDto, SystemAiAiSessionEventMapsFromArgsDto, SystemAiAiSessionEventMapsToArgsDto, SystemAiAiSessionEventMutationsCreateArgsDto, SystemAiAiSessionEventMutationsDto, SystemAiAiSessionEventMutationsUpdateArgsDto, SystemAiAiSessionEventRelatesFromArgsDto, SystemAiAiSessionEventRelatesToArgsDto, SystemAiAiSessionEventTaggedByArgsDto, SystemAiAiSessionEventUpdateDto, SystemAiAiSessionEventUpdateMessageDto, SystemAiAiTokenLeaseAssociationsArgsDto, SystemAiAiTokenLeaseConfiguredByArgsDto, SystemAiAiTokenLeaseConnectionDto, SystemAiAiTokenLeaseDto, SystemAiAiTokenLeaseEdgeDto, SystemAiAiTokenLeaseInputDto, SystemAiAiTokenLeaseInputUpdateDto, SystemAiAiTokenLeaseMapsFromArgsDto, SystemAiAiTokenLeaseMapsToArgsDto, SystemAiAiTokenLeaseMutationsCreateArgsDto, SystemAiAiTokenLeaseMutationsDto, SystemAiAiTokenLeaseMutationsUpdateArgsDto, SystemAiAiTokenLeaseRelatesFromArgsDto, SystemAiAiTokenLeaseRelatesToArgsDto, SystemAiAiTokenLeaseTaggedByArgsDto, SystemAiAiTokenLeaseUpdateDto, SystemAiAiTokenLeaseUpdateMessageDto, SystemAiAiToolPolicyAssociationsArgsDto, SystemAiAiToolPolicyConfiguredByArgsDto, SystemAiAiToolPolicyConnectionDto, SystemAiAiToolPolicyDto, SystemAiAiToolPolicyEdgeDto, SystemAiAiToolPolicyInputDto, SystemAiAiToolPolicyInputUpdateDto, SystemAiAiToolPolicyMapsFromArgsDto, SystemAiAiToolPolicyMapsToArgsDto, SystemAiAiToolPolicyMutationsCreateArgsDto, SystemAiAiToolPolicyMutationsDto, SystemAiAiToolPolicyMutationsUpdateArgsDto, SystemAiAiToolPolicyRelatesFromArgsDto, SystemAiAiToolPolicyRelatesToArgsDto, SystemAiAiToolPolicyTaggedByArgsDto, SystemAiAiToolPolicyUpdateDto, SystemAiAiToolPolicyUpdateMessageDto, SystemAiAiToolPolicyUsedByArgsDto, SystemAiAiUsageRecordAssociationsArgsDto, SystemAiAiUsageRecordConfiguredByArgsDto, SystemAiAiUsageRecordConnectionDto, SystemAiAiUsageRecordDto, SystemAiAiUsageRecordEdgeDto, SystemAiAiUsageRecordInputDto, SystemAiAiUsageRecordInputUpdateDto, SystemAiAiUsageRecordMapsFromArgsDto, SystemAiAiUsageRecordMapsToArgsDto, SystemAiAiUsageRecordMutationsCreateArgsDto, SystemAiAiUsageRecordMutationsDto, SystemAiAiUsageRecordMutationsUpdateArgsDto, SystemAiAiUsageRecordRelatesFromArgsDto, SystemAiAiUsageRecordRelatesToArgsDto, SystemAiAiUsageRecordTaggedByArgsDto, SystemAiAiUsageRecordUpdateDto, SystemAiAiUsageRecordUpdateMessageDto, SystemAttributeSearchFilterDto, SystemAttributeSearchFilterInputDto, SystemAutoIncrementAssociationsArgsDto, SystemAutoIncrementConfiguredByArgsDto, SystemAutoIncrementConnectionDto, SystemAutoIncrementDto, SystemAutoIncrementEdgeDto, SystemAutoIncrementInputDto, SystemAutoIncrementInputUpdateDto, SystemAutoIncrementMapsFromArgsDto, SystemAutoIncrementMapsToArgsDto, SystemAutoIncrementMutationsCreateArgsDto, SystemAutoIncrementMutationsDto, SystemAutoIncrementMutationsUpdateArgsDto, SystemAutoIncrementRelatesFromArgsDto, SystemAutoIncrementRelatesToArgsDto, SystemAutoIncrementTaggedByArgsDto, SystemAutoIncrementUpdateDto, SystemAutoIncrementUpdateMessageDto, SystemBlueprintBackupAssociationsArgsDto, SystemBlueprintBackupConfiguredByArgsDto, SystemBlueprintBackupConnectionDto, SystemBlueprintBackupDto, SystemBlueprintBackupEdgeDto, SystemBlueprintBackupInputDto, SystemBlueprintBackupInputUpdateDto, SystemBlueprintBackupMapsFromArgsDto, SystemBlueprintBackupMapsToArgsDto, SystemBlueprintBackupMutationsCreateArgsDto, SystemBlueprintBackupMutationsDto, SystemBlueprintBackupMutationsUpdateArgsDto, SystemBlueprintBackupRelatesFromArgsDto, SystemBlueprintBackupRelatesToArgsDto, SystemBlueprintBackupTaggedByArgsDto, SystemBlueprintBackupUpdateDto, SystemBlueprintBackupUpdateMessageDto, SystemBlueprintHistoryAssociationsArgsDto, SystemBlueprintHistoryConfiguredByArgsDto, SystemBlueprintHistoryConnectionDto, SystemBlueprintHistoryDto, SystemBlueprintHistoryEdgeDto, SystemBlueprintHistoryInputDto, SystemBlueprintHistoryInputUpdateDto, SystemBlueprintHistoryMapsFromArgsDto, SystemBlueprintHistoryMapsToArgsDto, SystemBlueprintHistoryMutationsCreateArgsDto, SystemBlueprintHistoryMutationsDto, SystemBlueprintHistoryMutationsUpdateArgsDto, SystemBlueprintHistoryRelatesFromArgsDto, SystemBlueprintHistoryRelatesToArgsDto, SystemBlueprintHistoryTaggedByArgsDto, SystemBlueprintHistoryUpdateDto, SystemBlueprintHistoryUpdateMessageDto, SystemBlueprintInstallationAssociationsArgsDto, SystemBlueprintInstallationConfiguredByArgsDto, SystemBlueprintInstallationConnectionDto, SystemBlueprintInstallationDto, SystemBlueprintInstallationEdgeDto, SystemBlueprintInstallationInputDto, SystemBlueprintInstallationInputUpdateDto, SystemBlueprintInstallationMapsFromArgsDto, SystemBlueprintInstallationMapsToArgsDto, SystemBlueprintInstallationMutationsCreateArgsDto, SystemBlueprintInstallationMutationsDto, SystemBlueprintInstallationMutationsUpdateArgsDto, SystemBlueprintInstallationRelatesFromArgsDto, SystemBlueprintInstallationRelatesToArgsDto, SystemBlueprintInstallationTaggedByArgsDto, SystemBlueprintInstallationUpdateDto, SystemBlueprintInstallationUpdateMessageDto, 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, SystemCommunicationAdapterHelmRepositoryArgsDto, 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, SystemCommunicationAiConfigurationAssociationsArgsDto, SystemCommunicationAiConfigurationConfiguredByArgsDto, SystemCommunicationAiConfigurationConnectionDto, SystemCommunicationAiConfigurationDto, SystemCommunicationAiConfigurationEdgeDto, SystemCommunicationAiConfigurationInputDto, SystemCommunicationAiConfigurationInputUpdateDto, SystemCommunicationAiConfigurationMapsFromArgsDto, SystemCommunicationAiConfigurationMapsToArgsDto, SystemCommunicationAiConfigurationMutationsCreateArgsDto, SystemCommunicationAiConfigurationMutationsDto, SystemCommunicationAiConfigurationMutationsUpdateArgsDto, SystemCommunicationAiConfigurationRelatesFromArgsDto, SystemCommunicationAiConfigurationRelatesToArgsDto, SystemCommunicationAiConfigurationTaggedByArgsDto, SystemCommunicationAiConfigurationUpdateDto, SystemCommunicationAiConfigurationUpdateMessageDto, SystemCommunicationAiConfigurationUsedByArgsDto, SystemCommunicationApplicationAssociationsArgsDto, SystemCommunicationApplicationConfiguredByArgsDto, SystemCommunicationApplicationConnectionDto, SystemCommunicationApplicationDto, SystemCommunicationApplicationEdgeDto, SystemCommunicationApplicationHelmRepositoryArgsDto, SystemCommunicationApplicationInputDto, SystemCommunicationApplicationInputUpdateDto, SystemCommunicationApplicationManagedByArgsDto, SystemCommunicationApplicationMapsFromArgsDto, SystemCommunicationApplicationMapsToArgsDto, SystemCommunicationApplicationMutationsCreateArgsDto, SystemCommunicationApplicationMutationsDto, SystemCommunicationApplicationMutationsUpdateArgsDto, SystemCommunicationApplicationRelatesFromArgsDto, SystemCommunicationApplicationRelatesToArgsDto, SystemCommunicationApplicationTaggedByArgsDto, SystemCommunicationApplicationUpdateDto, SystemCommunicationApplicationUpdateMessageDto, 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, SystemCommunicationDeployableWorkloadAssociationsArgsDto, SystemCommunicationDeployableWorkloadConfiguredByArgsDto, SystemCommunicationDeployableWorkloadConnectionDto, SystemCommunicationDeployableWorkloadDto, SystemCommunicationDeployableWorkloadEdgeDto, SystemCommunicationDeployableWorkloadHelmRepositoryArgsDto, SystemCommunicationDeployableWorkloadInterfaceConfiguredByArgsDto, SystemCommunicationDeployableWorkloadInterfaceDto, SystemCommunicationDeployableWorkloadInterfaceHelmRepositoryArgsDto, SystemCommunicationDeployableWorkloadInterfaceManagedByArgsDto, SystemCommunicationDeployableWorkloadInterfaceMapsFromArgsDto, SystemCommunicationDeployableWorkloadInterfaceMapsToArgsDto, SystemCommunicationDeployableWorkloadInterfaceRelatesFromArgsDto, SystemCommunicationDeployableWorkloadInterfaceRelatesToArgsDto, SystemCommunicationDeployableWorkloadInterfaceTaggedByArgsDto, SystemCommunicationDeployableWorkloadManagedByArgsDto, SystemCommunicationDeployableWorkloadMapsFromArgsDto, SystemCommunicationDeployableWorkloadMapsToArgsDto, SystemCommunicationDeployableWorkloadRelatesFromArgsDto, SystemCommunicationDeployableWorkloadRelatesToArgsDto, SystemCommunicationDeployableWorkloadTaggedByArgsDto, SystemCommunicationDeployableWorkloadUpdateDto, SystemCommunicationDeployableWorkloadUpdateMessageDto, SystemCommunicationDeployableWorkload_HelmRepositoryUsedByUnionConnectionDto, SystemCommunicationDeployableWorkload_HelmRepositoryUsedByUnionDto, SystemCommunicationDeployableWorkload_HelmRepositoryUsedByUnionEdgeDto, SystemCommunicationDeployableWorkload_ManagesUnionConnectionDto, SystemCommunicationDeployableWorkload_ManagesUnionDto, SystemCommunicationDeployableWorkload_ManagesUnionEdgeDto, 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, SystemCommunicationHelmRepositoryConfigurationAssociationsArgsDto, SystemCommunicationHelmRepositoryConfigurationConfiguredByArgsDto, SystemCommunicationHelmRepositoryConfigurationConnectionDto, SystemCommunicationHelmRepositoryConfigurationDto, SystemCommunicationHelmRepositoryConfigurationEdgeDto, SystemCommunicationHelmRepositoryConfigurationHelmRepositoryUsedByArgsDto, SystemCommunicationHelmRepositoryConfigurationInputDto, SystemCommunicationHelmRepositoryConfigurationInputUpdateDto, SystemCommunicationHelmRepositoryConfigurationMapsFromArgsDto, SystemCommunicationHelmRepositoryConfigurationMapsToArgsDto, SystemCommunicationHelmRepositoryConfigurationMutationsCreateArgsDto, SystemCommunicationHelmRepositoryConfigurationMutationsDto, SystemCommunicationHelmRepositoryConfigurationMutationsUpdateArgsDto, SystemCommunicationHelmRepositoryConfigurationRelatesFromArgsDto, SystemCommunicationHelmRepositoryConfigurationRelatesToArgsDto, SystemCommunicationHelmRepositoryConfigurationTaggedByArgsDto, SystemCommunicationHelmRepositoryConfigurationUpdateDto, SystemCommunicationHelmRepositoryConfigurationUpdateMessageDto, SystemCommunicationHelmRepositoryConfigurationUsedByArgsDto, SystemCommunicationHelmRepositoryConfiguration_HelmRepositoryUnionConnectionDto, SystemCommunicationHelmRepositoryConfiguration_HelmRepositoryUnionDto, SystemCommunicationHelmRepositoryConfiguration_HelmRepositoryUnionEdgeDto, 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, SystemCommunicationValueOverrideDto, SystemCommunicationValueOverrideInputDto, 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, SystemIdentityClientAssignedRolesArgsDto, SystemIdentityClientAssociationsArgsDto, SystemIdentityClientClaimDto, SystemIdentityClientClaimInputDto, SystemIdentityClientConfiguredByArgsDto, SystemIdentityClientConnectionDto, SystemIdentityClientDto, SystemIdentityClientEdgeDto, SystemIdentityClientInputDto, SystemIdentityClientInputUpdateDto, SystemIdentityClientMapsFromArgsDto, SystemIdentityClientMapsToArgsDto, SystemIdentityClientMemberOfGroupsArgsDto, SystemIdentityClientMirrorAssociationsArgsDto, SystemIdentityClientMirrorConfiguredByArgsDto, SystemIdentityClientMirrorConnectionDto, SystemIdentityClientMirrorDto, SystemIdentityClientMirrorEdgeDto, SystemIdentityClientMirrorInputDto, SystemIdentityClientMirrorInputUpdateDto, SystemIdentityClientMirrorMapsFromArgsDto, SystemIdentityClientMirrorMapsToArgsDto, SystemIdentityClientMirrorMutationsCreateArgsDto, SystemIdentityClientMirrorMutationsDto, SystemIdentityClientMirrorMutationsUpdateArgsDto, SystemIdentityClientMirrorRelatesFromArgsDto, SystemIdentityClientMirrorRelatesToArgsDto, SystemIdentityClientMirrorTaggedByArgsDto, SystemIdentityClientMirrorUpdateDto, SystemIdentityClientMirrorUpdateMessageDto, SystemIdentityClientMutationsCreateArgsDto, SystemIdentityClientMutationsDto, SystemIdentityClientMutationsUpdateArgsDto, SystemIdentityClientRelatesFromArgsDto, SystemIdentityClientRelatesToArgsDto, SystemIdentityClientTaggedByArgsDto, SystemIdentityClientUpdateDto, SystemIdentityClientUpdateMessageDto, SystemIdentityClientUriEntryDto, SystemIdentityClientUriEntryInputDto, SystemIdentityClient_AssignedEntitiesUnionConnectionDto, SystemIdentityClient_AssignedEntitiesUnionDto, SystemIdentityClient_AssignedEntitiesUnionEdgeDto, SystemIdentityDataProtectionKeyAssociationsArgsDto, SystemIdentityDataProtectionKeyConfiguredByArgsDto, SystemIdentityDataProtectionKeyConnectionDto, SystemIdentityDataProtectionKeyDto, SystemIdentityDataProtectionKeyEdgeDto, SystemIdentityDataProtectionKeyInputDto, SystemIdentityDataProtectionKeyInputUpdateDto, SystemIdentityDataProtectionKeyMapsFromArgsDto, SystemIdentityDataProtectionKeyMapsToArgsDto, SystemIdentityDataProtectionKeyMutationsCreateArgsDto, SystemIdentityDataProtectionKeyMutationsDto, SystemIdentityDataProtectionKeyMutationsUpdateArgsDto, SystemIdentityDataProtectionKeyRelatesFromArgsDto, SystemIdentityDataProtectionKeyRelatesToArgsDto, SystemIdentityDataProtectionKeyTaggedByArgsDto, SystemIdentityDataProtectionKeyUpdateDto, SystemIdentityDataProtectionKeyUpdateMessageDto, 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_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, 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, SystemIdentityServerSideSessionAssociationsArgsDto, SystemIdentityServerSideSessionConfiguredByArgsDto, SystemIdentityServerSideSessionConnectionDto, SystemIdentityServerSideSessionDto, SystemIdentityServerSideSessionEdgeDto, SystemIdentityServerSideSessionInputDto, SystemIdentityServerSideSessionInputUpdateDto, SystemIdentityServerSideSessionMapsFromArgsDto, SystemIdentityServerSideSessionMapsToArgsDto, SystemIdentityServerSideSessionMutationsCreateArgsDto, SystemIdentityServerSideSessionMutationsDto, SystemIdentityServerSideSessionMutationsUpdateArgsDto, SystemIdentityServerSideSessionRelatesFromArgsDto, SystemIdentityServerSideSessionRelatesToArgsDto, SystemIdentityServerSideSessionTaggedByArgsDto, SystemIdentityServerSideSessionUpdateDto, SystemIdentityServerSideSessionUpdateMessageDto, 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, SystemNotificationMailNotificationConfigurationAssociationsArgsDto, SystemNotificationMailNotificationConfigurationConfiguredByArgsDto, SystemNotificationMailNotificationConfigurationConnectionDto, SystemNotificationMailNotificationConfigurationDto, SystemNotificationMailNotificationConfigurationEdgeDto, SystemNotificationMailNotificationConfigurationInputDto, SystemNotificationMailNotificationConfigurationInputUpdateDto, SystemNotificationMailNotificationConfigurationMapsFromArgsDto, SystemNotificationMailNotificationConfigurationMapsToArgsDto, SystemNotificationMailNotificationConfigurationMutationsCreateArgsDto, SystemNotificationMailNotificationConfigurationMutationsDto, SystemNotificationMailNotificationConfigurationMutationsUpdateArgsDto, SystemNotificationMailNotificationConfigurationRelatesFromArgsDto, SystemNotificationMailNotificationConfigurationRelatesToArgsDto, SystemNotificationMailNotificationConfigurationTaggedByArgsDto, SystemNotificationMailNotificationConfigurationUpdateDto, SystemNotificationMailNotificationConfigurationUpdateMessageDto, SystemNotificationMailNotificationConfigurationUsedByArgsDto, 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, SystemStreamDataArchiveAssociationsArgsDto, SystemStreamDataArchiveConfiguredByArgsDto, SystemStreamDataArchiveConnectionDto, SystemStreamDataArchiveDto, SystemStreamDataArchiveEdgeDto, SystemStreamDataArchiveInterfaceConfiguredByArgsDto, SystemStreamDataArchiveInterfaceDto, SystemStreamDataArchiveInterfaceMapsFromArgsDto, SystemStreamDataArchiveInterfaceMapsToArgsDto, SystemStreamDataArchiveInterfaceRelatesFromArgsDto, SystemStreamDataArchiveInterfaceRelatesToArgsDto, SystemStreamDataArchiveInterfaceTaggedByArgsDto, SystemStreamDataArchiveMapsFromArgsDto, SystemStreamDataArchiveMapsToArgsDto, SystemStreamDataArchiveRelatesFromArgsDto, SystemStreamDataArchiveRelatesToArgsDto, SystemStreamDataArchiveTaggedByArgsDto, SystemStreamDataArchiveUpdateDto, SystemStreamDataArchiveUpdateMessageDto, SystemStreamDataCkArchiveColumnDto, SystemStreamDataCkArchiveColumnInputDto, SystemStreamDataCkArchiveDirtyWindowDto, SystemStreamDataCkArchiveDirtyWindowInputDto, SystemStreamDataCkArchiveRecomputeRangeDto, SystemStreamDataCkArchiveRecomputeRangeInputDto, SystemStreamDataCkRollupAggregationDto, SystemStreamDataCkRollupAggregationInputDto, SystemStreamDataQueryAssociationsArgsDto, SystemStreamDataQueryConfiguredByArgsDto, SystemStreamDataQueryConnectionDto, SystemStreamDataQueryDto, SystemStreamDataQueryEdgeDto, SystemStreamDataQueryInterfaceConfiguredByArgsDto, SystemStreamDataQueryInterfaceDto, SystemStreamDataQueryInterfaceMapsFromArgsDto, SystemStreamDataQueryInterfaceMapsToArgsDto, SystemStreamDataQueryInterfaceRelatesFromArgsDto, SystemStreamDataQueryInterfaceRelatesToArgsDto, SystemStreamDataQueryInterfaceTaggedByArgsDto, SystemStreamDataQueryMapsFromArgsDto, SystemStreamDataQueryMapsToArgsDto, SystemStreamDataQueryRelatesFromArgsDto, SystemStreamDataQueryRelatesToArgsDto, SystemStreamDataQueryTaggedByArgsDto, SystemStreamDataQueryUpdateDto, SystemStreamDataQueryUpdateMessageDto, SystemStreamDataRawArchiveAssociationsArgsDto, SystemStreamDataRawArchiveConfiguredByArgsDto, SystemStreamDataRawArchiveConnectionDto, SystemStreamDataRawArchiveDto, SystemStreamDataRawArchiveEdgeDto, SystemStreamDataRawArchiveInputDto, SystemStreamDataRawArchiveInputUpdateDto, SystemStreamDataRawArchiveMapsFromArgsDto, SystemStreamDataRawArchiveMapsToArgsDto, SystemStreamDataRawArchiveMutationsCreateArgsDto, SystemStreamDataRawArchiveMutationsDto, SystemStreamDataRawArchiveMutationsUpdateArgsDto, SystemStreamDataRawArchiveRelatesFromArgsDto, SystemStreamDataRawArchiveRelatesToArgsDto, SystemStreamDataRawArchiveTaggedByArgsDto, SystemStreamDataRawArchiveUpdateDto, SystemStreamDataRawArchiveUpdateMessageDto, SystemStreamDataRecomputeJobAssociationsArgsDto, SystemStreamDataRecomputeJobConfiguredByArgsDto, SystemStreamDataRecomputeJobConnectionDto, SystemStreamDataRecomputeJobDto, SystemStreamDataRecomputeJobEdgeDto, SystemStreamDataRecomputeJobInputDto, SystemStreamDataRecomputeJobInputUpdateDto, SystemStreamDataRecomputeJobMapsFromArgsDto, SystemStreamDataRecomputeJobMapsToArgsDto, SystemStreamDataRecomputeJobMutationsCreateArgsDto, SystemStreamDataRecomputeJobMutationsDto, SystemStreamDataRecomputeJobMutationsUpdateArgsDto, SystemStreamDataRecomputeJobRelatesFromArgsDto, SystemStreamDataRecomputeJobRelatesToArgsDto, SystemStreamDataRecomputeJobTaggedByArgsDto, SystemStreamDataRecomputeJobUpdateDto, SystemStreamDataRecomputeJobUpdateMessageDto, SystemStreamDataRollupArchiveAssociationsArgsDto, SystemStreamDataRollupArchiveConfiguredByArgsDto, SystemStreamDataRollupArchiveConnectionDto, SystemStreamDataRollupArchiveDto, SystemStreamDataRollupArchiveEdgeDto, SystemStreamDataRollupArchiveInputDto, SystemStreamDataRollupArchiveInputUpdateDto, SystemStreamDataRollupArchiveMapsFromArgsDto, SystemStreamDataRollupArchiveMapsToArgsDto, SystemStreamDataRollupArchiveMutationsCreateArgsDto, SystemStreamDataRollupArchiveMutationsDto, SystemStreamDataRollupArchiveMutationsUpdateArgsDto, SystemStreamDataRollupArchiveRelatesFromArgsDto, SystemStreamDataRollupArchiveRelatesToArgsDto, SystemStreamDataRollupArchiveTaggedByArgsDto, SystemStreamDataRollupArchiveUpdateDto, SystemStreamDataRollupArchiveUpdateMessageDto, SystemStreamDataTimeRangeArchiveAssociationsArgsDto, SystemStreamDataTimeRangeArchiveConfiguredByArgsDto, SystemStreamDataTimeRangeArchiveConnectionDto, SystemStreamDataTimeRangeArchiveDto, SystemStreamDataTimeRangeArchiveEdgeDto, SystemStreamDataTimeRangeArchiveInputDto, SystemStreamDataTimeRangeArchiveInputUpdateDto, SystemStreamDataTimeRangeArchiveMapsFromArgsDto, SystemStreamDataTimeRangeArchiveMapsToArgsDto, SystemStreamDataTimeRangeArchiveMutationsCreateArgsDto, SystemStreamDataTimeRangeArchiveMutationsDto, SystemStreamDataTimeRangeArchiveMutationsUpdateArgsDto, SystemStreamDataTimeRangeArchiveRelatesFromArgsDto, SystemStreamDataTimeRangeArchiveRelatesToArgsDto, SystemStreamDataTimeRangeArchiveTaggedByArgsDto, SystemStreamDataTimeRangeArchiveUpdateDto, SystemStreamDataTimeRangeArchiveUpdateMessageDto, 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, SystemTimeRangeDto, SystemTimeRangeInputDto, 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, SystemUiTreeNavigationConfigurationAssociationsArgsDto, SystemUiTreeNavigationConfigurationConfiguredByArgsDto, SystemUiTreeNavigationConfigurationConnectionDto, SystemUiTreeNavigationConfigurationDto, SystemUiTreeNavigationConfigurationEdgeDto, SystemUiTreeNavigationConfigurationInputDto, SystemUiTreeNavigationConfigurationInputUpdateDto, SystemUiTreeNavigationConfigurationMapsFromArgsDto, SystemUiTreeNavigationConfigurationMapsToArgsDto, SystemUiTreeNavigationConfigurationMutationsCreateArgsDto, SystemUiTreeNavigationConfigurationMutationsDto, SystemUiTreeNavigationConfigurationMutationsUpdateArgsDto, SystemUiTreeNavigationConfigurationRelatesFromArgsDto, SystemUiTreeNavigationConfigurationRelatesToArgsDto, SystemUiTreeNavigationConfigurationTaggedByArgsDto, SystemUiTreeNavigationConfigurationUpdateDto, SystemUiTreeNavigationConfigurationUpdateMessageDto, SystemUiTreeNavigationRoleConfigDto, SystemUiTreeNavigationRoleConfigInputDto, SystemUiTreePerspectiveConfigDto, SystemUiTreePerspectiveConfigInputDto, SystemUiuiElementAssociationsArgsDto, SystemUiuiElementConfiguredByArgsDto, SystemUiuiElementConnectionDto, SystemUiuiElementDto, SystemUiuiElementEdgeDto, SystemUiuiElementInterfaceConfiguredByArgsDto, SystemUiuiElementInterfaceDto, SystemUiuiElementInterfaceMapsFromArgsDto, SystemUiuiElementInterfaceMapsToArgsDto, SystemUiuiElementInterfaceRelatesFromArgsDto, SystemUiuiElementInterfaceRelatesToArgsDto, SystemUiuiElementInterfaceTaggedByArgsDto, SystemUiuiElementMapsFromArgsDto, SystemUiuiElementMapsToArgsDto, SystemUiuiElementRelatesFromArgsDto, SystemUiuiElementRelatesToArgsDto, SystemUiuiElementTaggedByArgsDto, SystemUiuiElementUpdateDto, SystemUiuiElementUpdateMessageDto, TenantDto, TenantIdProvider, TimeWindowDto, TusUploadOptions, TusUploadResult, UpdateGroupDto, UpgradeCheckResponseDto, UserDto, WorkloadVariableDto };