@forge/cli-shared 8.15.1-next.7 → 8.15.1-next.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +13 -0
- package/out/graphql/graphql-types.d.ts +2599 -202
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +60 -13
- package/out/tunnel/docker-compose-lifecycle.d.ts +5 -0
- package/out/tunnel/docker-compose-lifecycle.d.ts.map +1 -1
- package/out/tunnel/docker-compose-lifecycle.js +21 -1
- package/out/ui/text.d.ts +3 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +4 -1
- package/package.json +2 -2
|
@@ -289,6 +289,7 @@ export declare type AvpChartInput = {
|
|
|
289
289
|
chartConfig?: InputMaybe<AvpChartConfigInput>;
|
|
290
290
|
chartType?: InputMaybe<Scalars['String']['input']>;
|
|
291
291
|
envVarId?: InputMaybe<Scalars['ID']['input']>;
|
|
292
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
292
293
|
pipeline?: InputMaybe<AvpChartPipelineInput>;
|
|
293
294
|
templateChartId?: InputMaybe<Scalars['String']['input']>;
|
|
294
295
|
};
|
|
@@ -3189,6 +3190,7 @@ export declare type AgentStudioActorRoles = {
|
|
|
3189
3190
|
edges?: Maybe<Array<AgentStudioActorRoleEdge>>;
|
|
3190
3191
|
etag?: Maybe<Scalars['String']['output']>;
|
|
3191
3192
|
pageInfo: PageInfo;
|
|
3193
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
3192
3194
|
};
|
|
3193
3195
|
export declare type AgentStudioAddGroupsToCreatePermissionPayload = Payload & {
|
|
3194
3196
|
__typename?: 'AgentStudioAddGroupsToCreatePermissionPayload';
|
|
@@ -4215,6 +4217,7 @@ export declare type AgentWorkspaceAgent = {
|
|
|
4215
4217
|
__typename?: 'AgentWorkspaceAgent';
|
|
4216
4218
|
displayName: Scalars['String']['output'];
|
|
4217
4219
|
id: Scalars['ID']['output'];
|
|
4220
|
+
teamIds: Array<Scalars['ID']['output']>;
|
|
4218
4221
|
teamNames: Array<Scalars['String']['output']>;
|
|
4219
4222
|
};
|
|
4220
4223
|
export declare type AgentWorkspaceAgentAvailability = {
|
|
@@ -4246,9 +4249,11 @@ export declare type AgentWorkspaceAvailabilityConnection = {
|
|
|
4246
4249
|
};
|
|
4247
4250
|
export declare type AgentWorkspaceAvailabilityInput = {
|
|
4248
4251
|
agentIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
4252
|
+
cloudId: Scalars['ID']['input'];
|
|
4249
4253
|
page?: InputMaybe<Scalars['Int']['input']>;
|
|
4250
4254
|
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
4251
|
-
projectId
|
|
4255
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
4256
|
+
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
4252
4257
|
statuses?: InputMaybe<Array<AgentWorkspaceAvailabilityStatus>>;
|
|
4253
4258
|
teamIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
4254
4259
|
};
|
|
@@ -4273,14 +4278,15 @@ export declare type AgentWorkspaceAvailabilitySummary = {
|
|
|
4273
4278
|
};
|
|
4274
4279
|
export declare type AgentWorkspaceCreateScheduleInput = {
|
|
4275
4280
|
agentIds: Array<Scalars['ID']['input']>;
|
|
4281
|
+
cloudId: Scalars['ID']['input'];
|
|
4276
4282
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
4277
4283
|
effectiveUntil?: InputMaybe<Scalars['DateTime']['input']>;
|
|
4278
4284
|
endTime: Scalars['DateTime']['input'];
|
|
4279
4285
|
name: Scalars['String']['input'];
|
|
4280
|
-
projectId
|
|
4286
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
4287
|
+
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
4281
4288
|
recurrence?: InputMaybe<AgentWorkspaceRecurrenceRuleInput>;
|
|
4282
4289
|
startTime: Scalars['DateTime']['input'];
|
|
4283
|
-
teamId: Scalars['ID']['input'];
|
|
4284
4290
|
};
|
|
4285
4291
|
export declare type AgentWorkspaceCreateSchedulePayload = {
|
|
4286
4292
|
__typename?: 'AgentWorkspaceCreateSchedulePayload';
|
|
@@ -4298,7 +4304,9 @@ export declare enum AgentWorkspaceDayOfWeek {
|
|
|
4298
4304
|
Wednesday = "WEDNESDAY"
|
|
4299
4305
|
}
|
|
4300
4306
|
export declare type AgentWorkspaceDeleteScheduleInput = {
|
|
4301
|
-
|
|
4307
|
+
cloudId: Scalars['ID']['input'];
|
|
4308
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
4309
|
+
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
4302
4310
|
scheduleId: Scalars['ID']['input'];
|
|
4303
4311
|
};
|
|
4304
4312
|
export declare type AgentWorkspaceDeleteSchedulePayload = {
|
|
@@ -4342,6 +4350,7 @@ export declare type AgentWorkspaceRecurrenceRuleInput = {
|
|
|
4342
4350
|
export declare type AgentWorkspaceSchedule = {
|
|
4343
4351
|
__typename?: 'AgentWorkspaceSchedule';
|
|
4344
4352
|
agents: Array<AgentWorkspaceAgent>;
|
|
4353
|
+
cloudId: Scalars['ID']['output'];
|
|
4345
4354
|
createdAt: Scalars['DateTime']['output'];
|
|
4346
4355
|
createdBy: Scalars['String']['output'];
|
|
4347
4356
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -4350,12 +4359,11 @@ export declare type AgentWorkspaceSchedule = {
|
|
|
4350
4359
|
endTime: Scalars['DateTime']['output'];
|
|
4351
4360
|
id: Scalars['ID']['output'];
|
|
4352
4361
|
name: Scalars['String']['output'];
|
|
4353
|
-
projectId
|
|
4362
|
+
projectId?: Maybe<Scalars['ID']['output']>;
|
|
4363
|
+
projectKey?: Maybe<Scalars['String']['output']>;
|
|
4354
4364
|
recurrence?: Maybe<AgentWorkspaceRecurrenceRule>;
|
|
4355
4365
|
recurring: Scalars['Boolean']['output'];
|
|
4356
4366
|
startTime: Scalars['DateTime']['output'];
|
|
4357
|
-
teamId: Scalars['ID']['output'];
|
|
4358
|
-
teamName: Scalars['String']['output'];
|
|
4359
4367
|
updatedAt: Scalars['DateTime']['output'];
|
|
4360
4368
|
};
|
|
4361
4369
|
export declare type AgentWorkspaceScheduleError = {
|
|
@@ -4402,17 +4410,19 @@ export declare type AgentWorkspaceShiftsConnection = {
|
|
|
4402
4410
|
};
|
|
4403
4411
|
export declare type AgentWorkspaceShiftsMetadata = {
|
|
4404
4412
|
__typename?: 'AgentWorkspaceShiftsMetadata';
|
|
4413
|
+
cloudId: Scalars['ID']['output'];
|
|
4405
4414
|
endTime: Scalars['DateTime']['output'];
|
|
4406
4415
|
generatedAt: Scalars['DateTime']['output'];
|
|
4407
|
-
projectId
|
|
4416
|
+
projectId?: Maybe<Scalars['ID']['output']>;
|
|
4417
|
+
projectKey?: Maybe<Scalars['String']['output']>;
|
|
4408
4418
|
startTime: Scalars['DateTime']['output'];
|
|
4409
4419
|
};
|
|
4410
4420
|
export declare type AgentWorkspaceShiftsQueryInput = {
|
|
4411
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
4412
4421
|
agentIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
4422
|
+
cloudId: Scalars['ID']['input'];
|
|
4413
4423
|
endTime: Scalars['DateTime']['input'];
|
|
4414
|
-
|
|
4415
|
-
|
|
4424
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
4425
|
+
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
4416
4426
|
startTime: Scalars['DateTime']['input'];
|
|
4417
4427
|
teamIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
4418
4428
|
};
|
|
@@ -4425,16 +4435,17 @@ export declare type AgentWorkspaceShiftsSummary = {
|
|
|
4425
4435
|
};
|
|
4426
4436
|
export declare type AgentWorkspaceUpdateScheduleInput = {
|
|
4427
4437
|
agentIds: Array<Scalars['ID']['input']>;
|
|
4438
|
+
cloudId: Scalars['ID']['input'];
|
|
4428
4439
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
4429
4440
|
effectiveUntil?: InputMaybe<Scalars['DateTime']['input']>;
|
|
4430
4441
|
enabled: Scalars['Boolean']['input'];
|
|
4431
4442
|
endTime: Scalars['DateTime']['input'];
|
|
4432
4443
|
name: Scalars['String']['input'];
|
|
4433
|
-
projectId
|
|
4444
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
4445
|
+
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
4434
4446
|
recurrence?: InputMaybe<AgentWorkspaceRecurrenceRuleInput>;
|
|
4435
4447
|
scheduleId: Scalars['ID']['input'];
|
|
4436
4448
|
startTime: Scalars['DateTime']['input'];
|
|
4437
|
-
teamId: Scalars['ID']['input'];
|
|
4438
4449
|
};
|
|
4439
4450
|
export declare type AgentWorkspaceUpdateSchedulePayload = {
|
|
4440
4451
|
__typename?: 'AgentWorkspaceUpdateSchedulePayload';
|
|
@@ -6201,10 +6212,14 @@ export declare type ArjHierarchyConfigurationLevel = {
|
|
|
6201
6212
|
issueTypes?: Maybe<Array<Scalars['String']['output']>>;
|
|
6202
6213
|
title: Scalars['String']['output'];
|
|
6203
6214
|
};
|
|
6204
|
-
export declare type
|
|
6215
|
+
export declare type AssetsAriAttributeOnObject = {
|
|
6216
|
+
__typename?: 'AssetsARIAttributeOnObject';
|
|
6205
6217
|
attribute?: Maybe<AssetsObjectTypeAttribute>;
|
|
6206
6218
|
id: Scalars['ID']['output'];
|
|
6219
|
+
values?: Maybe<Array<AssetsAriAttributeValue>>;
|
|
6207
6220
|
};
|
|
6221
|
+
export declare type AssetsAriAttributeValue = AppUser | AtlassianAccountUser | CustomerUser | IdentityGroup | TeamV2;
|
|
6222
|
+
export declare type AssetsAttributeOnObject = AssetsAriAttributeOnObject | AssetsBooleanAttributeOnObject | AssetsDateAttributeOnObject | AssetsDatetimeAttributeOnObject | AssetsEmailAttributeOnObject | AssetsFloatAttributeOnObject | AssetsGroupAttributeOnObject | AssetsIpAddressAttributeOnObject | AssetsIntegerAttributeOnObject | AssetsObjectReferenceAttributeOnObject | AssetsSelectAttributeOnObject | AssetsSpaceAttributeOnObject | AssetsStatusAttributeOnObject | AssetsTagAttributeOnObject | AssetsTextAttributeOnObject | AssetsTextareaAttributeOnObject | AssetsUrlAttributeOnObject | AssetsUserAttributeOnObject;
|
|
6208
6223
|
export declare type AssetsAvatar = {
|
|
6209
6224
|
__typename?: 'AssetsAvatar';
|
|
6210
6225
|
url16?: Maybe<Scalars['String']['output']>;
|
|
@@ -6213,15 +6228,10 @@ export declare type AssetsAvatar = {
|
|
|
6213
6228
|
url144?: Maybe<Scalars['String']['output']>;
|
|
6214
6229
|
url288?: Maybe<Scalars['String']['output']>;
|
|
6215
6230
|
};
|
|
6216
|
-
export declare type AssetsBooleanAttributeOnObject =
|
|
6231
|
+
export declare type AssetsBooleanAttributeOnObject = {
|
|
6217
6232
|
__typename?: 'AssetsBooleanAttributeOnObject';
|
|
6218
6233
|
attribute?: Maybe<AssetsObjectTypeAttribute>;
|
|
6219
6234
|
id: Scalars['ID']['output'];
|
|
6220
|
-
values: Array<AssetsBooleanAttributeValue>;
|
|
6221
|
-
};
|
|
6222
|
-
export declare type AssetsBooleanAttributeValue = {
|
|
6223
|
-
__typename?: 'AssetsBooleanAttributeValue';
|
|
6224
|
-
displayValue: Scalars['String']['output'];
|
|
6225
6235
|
value?: Maybe<Scalars['Boolean']['output']>;
|
|
6226
6236
|
};
|
|
6227
6237
|
export declare type AssetsDmAdapter = {
|
|
@@ -7648,6 +7658,59 @@ export declare enum AssetsDmJobDataType {
|
|
|
7648
7658
|
Raw = "RAW",
|
|
7649
7659
|
Transformed = "TRANSFORMED"
|
|
7650
7660
|
}
|
|
7661
|
+
export declare type AssetsDmJobDetails = {
|
|
7662
|
+
__typename?: 'AssetsDMJobDetails';
|
|
7663
|
+
createdBy: Scalars['String']['output'];
|
|
7664
|
+
createdDate: Scalars['String']['output'];
|
|
7665
|
+
dataSourceType?: Maybe<Scalars['String']['output']>;
|
|
7666
|
+
dataSourceTypeId: Scalars['Int']['output'];
|
|
7667
|
+
enabled: Scalars['Boolean']['output'];
|
|
7668
|
+
isAirTrackDataSource: Scalars['Boolean']['output'];
|
|
7669
|
+
isTemplate: Scalars['Boolean']['output'];
|
|
7670
|
+
jobId: Scalars['ID']['output'];
|
|
7671
|
+
name: Scalars['String']['output'];
|
|
7672
|
+
tableName: Scalars['String']['output'];
|
|
7673
|
+
templateGroupDataSourceType?: Maybe<Scalars['String']['output']>;
|
|
7674
|
+
templateGroupDataSourceTypeId?: Maybe<Scalars['Int']['output']>;
|
|
7675
|
+
templateIcon?: Maybe<Scalars['String']['output']>;
|
|
7676
|
+
tenantConnectionStringId?: Maybe<Scalars['ID']['output']>;
|
|
7677
|
+
tenantId: Scalars['ID']['output'];
|
|
7678
|
+
updateBy?: Maybe<Scalars['String']['output']>;
|
|
7679
|
+
updateDate?: Maybe<Scalars['String']['output']>;
|
|
7680
|
+
};
|
|
7681
|
+
export declare type AssetsDmJobExecution = {
|
|
7682
|
+
__typename?: 'AssetsDMJobExecution';
|
|
7683
|
+
cliVersion?: Maybe<Scalars['String']['output']>;
|
|
7684
|
+
createdDate: Scalars['String']['output'];
|
|
7685
|
+
endedDate: Scalars['String']['output'];
|
|
7686
|
+
executeBy: Scalars['String']['output'];
|
|
7687
|
+
finalisedTime: Scalars['String']['output'];
|
|
7688
|
+
importDate?: Maybe<Scalars['String']['output']>;
|
|
7689
|
+
importTime: Scalars['String']['output'];
|
|
7690
|
+
isInteractiveUser: Scalars['Boolean']['output'];
|
|
7691
|
+
isStoppedByShutdown: Scalars['Boolean']['output'];
|
|
7692
|
+
job: AssetsDmJobDetails;
|
|
7693
|
+
jobExecutiveId: Scalars['ID']['output'];
|
|
7694
|
+
jobId: Scalars['ID']['output'];
|
|
7695
|
+
machineName: Scalars['String']['output'];
|
|
7696
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
7697
|
+
processDate?: Maybe<Scalars['String']['output']>;
|
|
7698
|
+
receivedTime: Scalars['String']['output'];
|
|
7699
|
+
recordCount: Scalars['Int']['output'];
|
|
7700
|
+
stackTrace?: Maybe<Scalars['String']['output']>;
|
|
7701
|
+
status: Scalars['Int']['output'];
|
|
7702
|
+
statusId: Scalars['Int']['output'];
|
|
7703
|
+
transformTime: Scalars['String']['output'];
|
|
7704
|
+
uploadDate?: Maybe<Scalars['String']['output']>;
|
|
7705
|
+
};
|
|
7706
|
+
export declare type AssetsDmJobExecutionsResponse = {
|
|
7707
|
+
__typename?: 'AssetsDMJobExecutionsResponse';
|
|
7708
|
+
page: Scalars['Int']['output'];
|
|
7709
|
+
pageSize: Scalars['Int']['output'];
|
|
7710
|
+
pagesCount: Scalars['Int']['output'];
|
|
7711
|
+
rows: Array<AssetsDmJobExecution>;
|
|
7712
|
+
rowsCount: Scalars['Int']['output'];
|
|
7713
|
+
};
|
|
7651
7714
|
export declare type AssetsDmMappedColumn = {
|
|
7652
7715
|
__typename?: 'AssetsDMMappedColumn';
|
|
7653
7716
|
columnMappingId: Scalars['ID']['output'];
|
|
@@ -8256,74 +8319,45 @@ export declare type AssetsDmUpdateDefaultCleansingRuleResponse = {
|
|
|
8256
8319
|
isSuccessful: Scalars['Boolean']['output'];
|
|
8257
8320
|
message?: Maybe<Scalars['String']['output']>;
|
|
8258
8321
|
};
|
|
8259
|
-
export declare type AssetsDateAttributeOnObject =
|
|
8322
|
+
export declare type AssetsDateAttributeOnObject = {
|
|
8260
8323
|
__typename?: 'AssetsDateAttributeOnObject';
|
|
8261
8324
|
attribute?: Maybe<AssetsObjectTypeAttribute>;
|
|
8262
8325
|
id: Scalars['ID']['output'];
|
|
8263
|
-
|
|
8264
|
-
};
|
|
8265
|
-
export declare type AssetsDateAttributeValue = {
|
|
8266
|
-
__typename?: 'AssetsDateAttributeValue';
|
|
8267
|
-
displayValue: Scalars['String']['output'];
|
|
8326
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
8268
8327
|
};
|
|
8269
|
-
export declare type AssetsDatetimeAttributeOnObject =
|
|
8328
|
+
export declare type AssetsDatetimeAttributeOnObject = {
|
|
8270
8329
|
__typename?: 'AssetsDatetimeAttributeOnObject';
|
|
8271
8330
|
attribute?: Maybe<AssetsObjectTypeAttribute>;
|
|
8272
8331
|
id: Scalars['ID']['output'];
|
|
8273
|
-
values: Array<AssetsDatetimeAttributeValue>;
|
|
8274
|
-
};
|
|
8275
|
-
export declare type AssetsDatetimeAttributeValue = {
|
|
8276
|
-
__typename?: 'AssetsDatetimeAttributeValue';
|
|
8277
|
-
displayValue: Scalars['String']['output'];
|
|
8278
8332
|
value?: Maybe<Scalars['DateTime']['output']>;
|
|
8279
8333
|
};
|
|
8280
|
-
export declare type AssetsEmailAttributeOnObject =
|
|
8334
|
+
export declare type AssetsEmailAttributeOnObject = {
|
|
8281
8335
|
__typename?: 'AssetsEmailAttributeOnObject';
|
|
8282
8336
|
attribute?: Maybe<AssetsObjectTypeAttribute>;
|
|
8283
8337
|
id: Scalars['ID']['output'];
|
|
8284
|
-
|
|
8285
|
-
};
|
|
8286
|
-
export declare type AssetsEmailAttributeValue = {
|
|
8287
|
-
__typename?: 'AssetsEmailAttributeValue';
|
|
8288
|
-
displayValue: Scalars['String']['output'];
|
|
8289
|
-
value?: Maybe<Scalars['String']['output']>;
|
|
8338
|
+
value?: Maybe<Array<Scalars['String']['output']>>;
|
|
8290
8339
|
};
|
|
8291
|
-
export declare type AssetsFloatAttributeOnObject =
|
|
8340
|
+
export declare type AssetsFloatAttributeOnObject = {
|
|
8292
8341
|
__typename?: 'AssetsFloatAttributeOnObject';
|
|
8293
8342
|
attribute?: Maybe<AssetsObjectTypeAttribute>;
|
|
8294
8343
|
id: Scalars['ID']['output'];
|
|
8295
|
-
values: Array<AssetsFloatAttributeValue>;
|
|
8296
|
-
};
|
|
8297
|
-
export declare type AssetsFloatAttributeValue = {
|
|
8298
|
-
__typename?: 'AssetsFloatAttributeValue';
|
|
8299
|
-
displayValue: Scalars['String']['output'];
|
|
8300
8344
|
value?: Maybe<Scalars['Float']['output']>;
|
|
8301
8345
|
};
|
|
8302
|
-
export declare type AssetsGroupAttributeOnObject =
|
|
8346
|
+
export declare type AssetsGroupAttributeOnObject = {
|
|
8303
8347
|
__typename?: 'AssetsGroupAttributeOnObject';
|
|
8304
8348
|
attribute?: Maybe<AssetsObjectTypeAttribute>;
|
|
8305
8349
|
id: Scalars['ID']['output'];
|
|
8306
|
-
|
|
8350
|
+
value?: Maybe<Array<AssetsGroupAttributeValue>>;
|
|
8307
8351
|
};
|
|
8308
8352
|
export declare type AssetsGroupAttributeValue = {
|
|
8309
8353
|
__typename?: 'AssetsGroupAttributeValue';
|
|
8310
|
-
displayValue: Scalars['String']['output'];
|
|
8311
|
-
value?: Maybe<AssetsGroupValueData>;
|
|
8312
|
-
};
|
|
8313
|
-
export declare type AssetsGroupValueData = {
|
|
8314
|
-
__typename?: 'AssetsGroupValueData';
|
|
8315
8354
|
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
8316
8355
|
name?: Maybe<Scalars['String']['output']>;
|
|
8317
8356
|
};
|
|
8318
|
-
export declare type AssetsIpAddressAttributeOnObject =
|
|
8357
|
+
export declare type AssetsIpAddressAttributeOnObject = {
|
|
8319
8358
|
__typename?: 'AssetsIPAddressAttributeOnObject';
|
|
8320
8359
|
attribute?: Maybe<AssetsObjectTypeAttribute>;
|
|
8321
8360
|
id: Scalars['ID']['output'];
|
|
8322
|
-
values: Array<AssetsIpAddressAttributeValue>;
|
|
8323
|
-
};
|
|
8324
|
-
export declare type AssetsIpAddressAttributeValue = {
|
|
8325
|
-
__typename?: 'AssetsIPAddressAttributeValue';
|
|
8326
|
-
displayValue: Scalars['String']['output'];
|
|
8327
8361
|
value?: Maybe<Scalars['String']['output']>;
|
|
8328
8362
|
};
|
|
8329
8363
|
export declare type AssetsIcon = {
|
|
@@ -8332,15 +8366,10 @@ export declare type AssetsIcon = {
|
|
|
8332
8366
|
url16?: Maybe<Scalars['String']['output']>;
|
|
8333
8367
|
url48?: Maybe<Scalars['String']['output']>;
|
|
8334
8368
|
};
|
|
8335
|
-
export declare type AssetsIntegerAttributeOnObject =
|
|
8369
|
+
export declare type AssetsIntegerAttributeOnObject = {
|
|
8336
8370
|
__typename?: 'AssetsIntegerAttributeOnObject';
|
|
8337
8371
|
attribute?: Maybe<AssetsObjectTypeAttribute>;
|
|
8338
8372
|
id: Scalars['ID']['output'];
|
|
8339
|
-
values: Array<AssetsIntegerAttributeValue>;
|
|
8340
|
-
};
|
|
8341
|
-
export declare type AssetsIntegerAttributeValue = {
|
|
8342
|
-
__typename?: 'AssetsIntegerAttributeValue';
|
|
8343
|
-
displayValue: Scalars['String']['output'];
|
|
8344
8373
|
value?: Maybe<Scalars['Int']['output']>;
|
|
8345
8374
|
};
|
|
8346
8375
|
export declare type AssetsLinks = {
|
|
@@ -8392,16 +8421,11 @@ export declare type AssetsObjectNode = {
|
|
|
8392
8421
|
export declare type AssetsObjectNodeAttributesArgs = {
|
|
8393
8422
|
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
8394
8423
|
};
|
|
8395
|
-
export declare type AssetsObjectReferenceAttributeOnObject =
|
|
8424
|
+
export declare type AssetsObjectReferenceAttributeOnObject = {
|
|
8396
8425
|
__typename?: 'AssetsObjectReferenceAttributeOnObject';
|
|
8397
8426
|
attribute?: Maybe<AssetsObjectAttribute>;
|
|
8398
8427
|
id: Scalars['ID']['output'];
|
|
8399
|
-
|
|
8400
|
-
};
|
|
8401
|
-
export declare type AssetsObjectReferenceAttributeValue = {
|
|
8402
|
-
__typename?: 'AssetsObjectReferenceAttributeValue';
|
|
8403
|
-
displayValue: Scalars['String']['output'];
|
|
8404
|
-
value?: Maybe<AssetsObjectNode>;
|
|
8428
|
+
value?: Maybe<Array<AssetsObjectNode>>;
|
|
8405
8429
|
};
|
|
8406
8430
|
export declare type AssetsObjectType = Node & {
|
|
8407
8431
|
__typename?: 'AssetsObjectType';
|
|
@@ -8436,22 +8460,18 @@ export declare type AssetsSelectAttribute = AssetsObjectTypeAttribute & {
|
|
|
8436
8460
|
name?: Maybe<Scalars['String']['output']>;
|
|
8437
8461
|
options?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
8438
8462
|
};
|
|
8439
|
-
export declare type AssetsSelectAttributeOnObject =
|
|
8463
|
+
export declare type AssetsSelectAttributeOnObject = {
|
|
8440
8464
|
__typename?: 'AssetsSelectAttributeOnObject';
|
|
8441
8465
|
attribute?: Maybe<AssetsSelectAttribute>;
|
|
8442
8466
|
id: Scalars['ID']['output'];
|
|
8443
|
-
|
|
8444
|
-
};
|
|
8445
|
-
export declare type AssetsSelectAttributeValue = {
|
|
8446
|
-
__typename?: 'AssetsSelectAttributeValue';
|
|
8447
|
-
displayValue: Scalars['String']['output'];
|
|
8448
|
-
value?: Maybe<Scalars['String']['output']>;
|
|
8467
|
+
value?: Maybe<Array<Scalars['String']['output']>>;
|
|
8449
8468
|
};
|
|
8450
|
-
export declare type AssetsServiceObject = AssetsObjectNode & {
|
|
8469
|
+
export declare type AssetsServiceObject = AssetsObjectNode & Node & {
|
|
8451
8470
|
__typename?: 'AssetsServiceObject';
|
|
8452
8471
|
alertCount?: Maybe<Scalars['Int']['output']>;
|
|
8453
8472
|
attributes?: Maybe<Array<Maybe<AssetsAttributeOnObject>>>;
|
|
8454
8473
|
avatar?: Maybe<AssetsAvatar>;
|
|
8474
|
+
changeCount?: Maybe<Scalars['Int']['output']>;
|
|
8455
8475
|
created?: Maybe<Scalars['DateTime']['output']>;
|
|
8456
8476
|
id: Scalars['ID']['output'];
|
|
8457
8477
|
inboundDependencyCount?: Maybe<Scalars['Int']['output']>;
|
|
@@ -8467,19 +8487,14 @@ export declare type AssetsServiceObject = AssetsObjectNode & {
|
|
|
8467
8487
|
export declare type AssetsServiceObjectAttributesArgs = {
|
|
8468
8488
|
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
8469
8489
|
};
|
|
8470
|
-
export declare type AssetsSpaceAttributeOnObject =
|
|
8490
|
+
export declare type AssetsSpaceAttributeOnObject = {
|
|
8471
8491
|
__typename?: 'AssetsSpaceAttributeOnObject';
|
|
8472
8492
|
attribute?: Maybe<AssetsObjectTypeAttribute>;
|
|
8473
8493
|
id: Scalars['ID']['output'];
|
|
8474
|
-
|
|
8494
|
+
value?: Maybe<Array<AssetsSpaceAttributeValue>>;
|
|
8475
8495
|
};
|
|
8476
8496
|
export declare type AssetsSpaceAttributeValue = {
|
|
8477
8497
|
__typename?: 'AssetsSpaceAttributeValue';
|
|
8478
|
-
displayValue: Scalars['String']['output'];
|
|
8479
|
-
value?: Maybe<AssetsSpaceValueData>;
|
|
8480
|
-
};
|
|
8481
|
-
export declare type AssetsSpaceValueData = {
|
|
8482
|
-
__typename?: 'AssetsSpaceValueData';
|
|
8483
8498
|
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
8484
8499
|
id: Scalars['ID']['output'];
|
|
8485
8500
|
key?: Maybe<Scalars['String']['output']>;
|
|
@@ -8491,16 +8506,11 @@ export declare type AssetsStatusAttribute = AssetsObjectTypeAttribute & {
|
|
|
8491
8506
|
id: Scalars['ID']['output'];
|
|
8492
8507
|
name?: Maybe<Scalars['String']['output']>;
|
|
8493
8508
|
};
|
|
8494
|
-
export declare type AssetsStatusAttributeOnObject =
|
|
8509
|
+
export declare type AssetsStatusAttributeOnObject = {
|
|
8495
8510
|
__typename?: 'AssetsStatusAttributeOnObject';
|
|
8496
8511
|
attribute?: Maybe<AssetsStatusAttribute>;
|
|
8497
8512
|
id: Scalars['ID']['output'];
|
|
8498
|
-
|
|
8499
|
-
};
|
|
8500
|
-
export declare type AssetsStatusAttributeValue = {
|
|
8501
|
-
__typename?: 'AssetsStatusAttributeValue';
|
|
8502
|
-
displayValue: Scalars['String']['output'];
|
|
8503
|
-
value?: Maybe<AssetsStatusType>;
|
|
8513
|
+
value?: Maybe<Array<AssetsStatusType>>;
|
|
8504
8514
|
};
|
|
8505
8515
|
export declare enum AssetsStatusCategory {
|
|
8506
8516
|
Active = "ACTIVE",
|
|
@@ -8514,63 +8524,47 @@ export declare type AssetsStatusType = {
|
|
|
8514
8524
|
id: Scalars['ID']['output'];
|
|
8515
8525
|
name?: Maybe<Scalars['String']['output']>;
|
|
8516
8526
|
};
|
|
8517
|
-
export declare type
|
|
8518
|
-
__typename?: '
|
|
8527
|
+
export declare type AssetsTagAttributeOnObject = {
|
|
8528
|
+
__typename?: 'AssetsTagAttributeOnObject';
|
|
8519
8529
|
attribute?: Maybe<AssetsObjectTypeAttribute>;
|
|
8520
8530
|
id: Scalars['ID']['output'];
|
|
8521
|
-
|
|
8531
|
+
value?: Maybe<Array<Scalars['String']['output']>>;
|
|
8522
8532
|
};
|
|
8523
|
-
export declare type
|
|
8524
|
-
__typename?: '
|
|
8525
|
-
|
|
8533
|
+
export declare type AssetsTextAttributeOnObject = {
|
|
8534
|
+
__typename?: 'AssetsTextAttributeOnObject';
|
|
8535
|
+
attribute?: Maybe<AssetsObjectTypeAttribute>;
|
|
8536
|
+
id: Scalars['ID']['output'];
|
|
8526
8537
|
value?: Maybe<Scalars['String']['output']>;
|
|
8527
8538
|
};
|
|
8528
|
-
export declare type AssetsTextareaAttributeOnObject =
|
|
8539
|
+
export declare type AssetsTextareaAttributeOnObject = {
|
|
8529
8540
|
__typename?: 'AssetsTextareaAttributeOnObject';
|
|
8530
8541
|
attribute?: Maybe<AssetsObjectTypeAttribute>;
|
|
8531
8542
|
id: Scalars['ID']['output'];
|
|
8532
|
-
values: Array<AssetsTextareaAttributeValue>;
|
|
8533
|
-
};
|
|
8534
|
-
export declare type AssetsTextareaAttributeValue = {
|
|
8535
|
-
__typename?: 'AssetsTextareaAttributeValue';
|
|
8536
|
-
displayValue: Scalars['String']['output'];
|
|
8537
8543
|
value?: Maybe<Scalars['String']['output']>;
|
|
8538
8544
|
};
|
|
8539
|
-
export declare type AssetsUrlAttributeOnObject =
|
|
8545
|
+
export declare type AssetsUrlAttributeOnObject = {
|
|
8540
8546
|
__typename?: 'AssetsURLAttributeOnObject';
|
|
8541
8547
|
attribute?: Maybe<AssetsObjectTypeAttribute>;
|
|
8542
8548
|
id: Scalars['ID']['output'];
|
|
8543
|
-
|
|
8544
|
-
};
|
|
8545
|
-
export declare type AssetsUrlAttributeValue = {
|
|
8546
|
-
__typename?: 'AssetsURLAttributeValue';
|
|
8547
|
-
displayValue: Scalars['String']['output'];
|
|
8549
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
8548
8550
|
};
|
|
8549
8551
|
export declare type AssetsUserAttribute = AssetsObjectTypeAttribute & {
|
|
8550
8552
|
__typename?: 'AssetsUserAttribute';
|
|
8551
8553
|
id: Scalars['ID']['output'];
|
|
8552
8554
|
name?: Maybe<Scalars['String']['output']>;
|
|
8553
|
-
userGroups?: Maybe<Array<
|
|
8555
|
+
userGroups?: Maybe<Array<AssetsGroupAttributeValue>>;
|
|
8554
8556
|
};
|
|
8555
|
-
export declare type AssetsUserAttributeOnObject =
|
|
8557
|
+
export declare type AssetsUserAttributeOnObject = {
|
|
8556
8558
|
__typename?: 'AssetsUserAttributeOnObject';
|
|
8557
8559
|
attribute?: Maybe<AssetsUserAttribute>;
|
|
8558
8560
|
id: Scalars['ID']['output'];
|
|
8559
|
-
|
|
8561
|
+
value?: Maybe<Array<AssetsUserAttributeValue>>;
|
|
8560
8562
|
};
|
|
8561
8563
|
export declare type AssetsUserAttributeValue = {
|
|
8562
8564
|
__typename?: 'AssetsUserAttributeValue';
|
|
8563
|
-
displayValue: Scalars['String']['output'];
|
|
8564
|
-
value?: Maybe<AssetsUserValueData>;
|
|
8565
|
-
};
|
|
8566
|
-
export declare type AssetsUserValueData = {
|
|
8567
|
-
__typename?: 'AssetsUserValueData';
|
|
8568
8565
|
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
8569
|
-
|
|
8570
|
-
|
|
8571
|
-
isDeleted?: Maybe<Scalars['Boolean']['output']>;
|
|
8572
|
-
key?: Maybe<Scalars['String']['output']>;
|
|
8573
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
8566
|
+
id: Scalars['ID']['output'];
|
|
8567
|
+
name: Scalars['String']['output'];
|
|
8574
8568
|
};
|
|
8575
8569
|
export declare type AssignIssueParentInput = {
|
|
8576
8570
|
boardId: Scalars['ID']['input'];
|
|
@@ -14535,6 +14529,8 @@ export declare type CommerceExpGupsMutation = {
|
|
|
14535
14529
|
export declare type CommerceExpGupsMutationCreateEntitlementProfileArgs = {
|
|
14536
14530
|
orderId: Scalars['ID']['input'];
|
|
14537
14531
|
transactionAccountId: Scalars['ID']['input'];
|
|
14532
|
+
trialTrigger?: InputMaybe<Scalars['String']['input']>;
|
|
14533
|
+
trialType?: InputMaybe<Scalars['String']['input']>;
|
|
14538
14534
|
};
|
|
14539
14535
|
export declare type CommerceExpIntegerComparator = {
|
|
14540
14536
|
__typename?: 'CommerceExpIntegerComparator';
|
|
@@ -30229,6 +30225,7 @@ export declare type CplsWorkContributorEdge = {
|
|
|
30229
30225
|
contributorData?: Maybe<CplsContributorData>;
|
|
30230
30226
|
contributorDataId: Scalars['ID']['output'];
|
|
30231
30227
|
cursor: Scalars['String']['output'];
|
|
30228
|
+
node?: Maybe<CplsContributor>;
|
|
30232
30229
|
};
|
|
30233
30230
|
export declare type CplsWorkData = CplsCustomContributionTarget | JiraIssue;
|
|
30234
30231
|
export declare type CplsWorkDataId = {
|
|
@@ -33433,11 +33430,6 @@ export declare type DeletePolarisPlayContributionPayload = {
|
|
|
33433
33430
|
errors?: Maybe<Array<MutationError>>;
|
|
33434
33431
|
success: Scalars['Boolean']['output'];
|
|
33435
33432
|
};
|
|
33436
|
-
export declare type DeletePolarisViewSetPayload = Payload & {
|
|
33437
|
-
__typename?: 'DeletePolarisViewSetPayload';
|
|
33438
|
-
errors?: Maybe<Array<MutationError>>;
|
|
33439
|
-
success: Scalars['Boolean']['output'];
|
|
33440
|
-
};
|
|
33441
33433
|
export declare type DeleteRelationInput = {
|
|
33442
33434
|
relationName: RelationType;
|
|
33443
33435
|
sourceKey: Scalars['String']['input'];
|
|
@@ -37299,7 +37291,7 @@ export declare type ExternalAssociationEdge = {
|
|
|
37299
37291
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
37300
37292
|
node?: Maybe<ExternalAssociation>;
|
|
37301
37293
|
};
|
|
37302
|
-
export declare type ExternalAssociationEntity = DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraIssue | JiraProject | JiraVersion | ThirdPartyUser;
|
|
37294
|
+
export declare type ExternalAssociationEntity = DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraIssue | JiraProject | JiraVersion | ThirdPartyUser;
|
|
37303
37295
|
export declare type ExternalAttachment = {
|
|
37304
37296
|
__typename?: 'ExternalAttachment';
|
|
37305
37297
|
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
@@ -37944,6 +37936,7 @@ export declare type ExternalEntities = {
|
|
|
37944
37936
|
deployment?: Maybe<Array<Maybe<ExternalDeployment>>>;
|
|
37945
37937
|
design?: Maybe<Array<Maybe<ExternalDesign>>>;
|
|
37946
37938
|
document?: Maybe<Array<Maybe<ExternalDocument>>>;
|
|
37939
|
+
experimental?: Maybe<Array<Maybe<ExternalExperimental>>>;
|
|
37947
37940
|
featureFlag?: Maybe<Array<Maybe<ExternalFeatureFlag>>>;
|
|
37948
37941
|
message?: Maybe<Array<Maybe<ExternalMessage>>>;
|
|
37949
37942
|
organisation?: Maybe<Array<Maybe<ExternalOrganisation>>>;
|
|
@@ -37965,7 +37958,7 @@ export declare type ExternalEntities = {
|
|
|
37965
37958
|
workItem?: Maybe<Array<Maybe<ExternalWorkItem>>>;
|
|
37966
37959
|
worker?: Maybe<Array<Maybe<ExternalWorker>>>;
|
|
37967
37960
|
};
|
|
37968
|
-
export declare type ExternalEntity = ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker;
|
|
37961
|
+
export declare type ExternalEntity = ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker;
|
|
37969
37962
|
export declare type ExternalEntityExtendedValue = {
|
|
37970
37963
|
__typename?: 'ExternalEntityExtendedValue';
|
|
37971
37964
|
fieldDisplayName?: Maybe<ExternalEntityExtendedValueDisplayName>;
|
|
@@ -38001,6 +37994,28 @@ export declare enum ExternalEventType {
|
|
|
38001
37994
|
Task = "TASK",
|
|
38002
37995
|
WorkingLocation = "WORKING_LOCATION"
|
|
38003
37996
|
}
|
|
37997
|
+
export declare type ExternalExperimental = Node & {
|
|
37998
|
+
__typename?: 'ExternalExperimental';
|
|
37999
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
38000
|
+
container?: Maybe<ExternalEntity>;
|
|
38001
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
38002
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
38003
|
+
createdBy?: Maybe<ExternalUser>;
|
|
38004
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
38005
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
38006
|
+
externalId?: Maybe<Scalars['String']['output']>;
|
|
38007
|
+
id: Scalars['ID']['output'];
|
|
38008
|
+
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
38009
|
+
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
38010
|
+
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
38011
|
+
parent?: Maybe<ExternalEntity>;
|
|
38012
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
38013
|
+
provider?: Maybe<ExternalProvider>;
|
|
38014
|
+
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
38015
|
+
thumbnail?: Maybe<ExternalThumbnail>;
|
|
38016
|
+
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
38017
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
38018
|
+
};
|
|
38004
38019
|
export declare type ExternalExportLink = {
|
|
38005
38020
|
__typename?: 'ExternalExportLink';
|
|
38006
38021
|
mimeType?: Maybe<Scalars['String']['output']>;
|
|
@@ -44434,6 +44449,14 @@ export declare type GraphStore = {
|
|
|
44434
44449
|
atlassianUserCreatedExternalCustomerOrgCategoryInverse?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerOrgCategoryInverseConnection>;
|
|
44435
44450
|
atlassianUserCreatedExternalTeam?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalTeamConnection>;
|
|
44436
44451
|
atlassianUserCreatedExternalTeamInverse?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalTeamInverseConnection>;
|
|
44452
|
+
atlassianUserCreatedExternalTestExecution?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalTestExecutionConnection>;
|
|
44453
|
+
atlassianUserCreatedExternalTestExecutionInverse?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalTestExecutionInverseConnection>;
|
|
44454
|
+
atlassianUserCreatedExternalTestPlan?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalTestPlanConnection>;
|
|
44455
|
+
atlassianUserCreatedExternalTestPlanInverse?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalTestPlanInverseConnection>;
|
|
44456
|
+
atlassianUserCreatedExternalTestRun?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalTestRunConnection>;
|
|
44457
|
+
atlassianUserCreatedExternalTestRunInverse?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalTestRunInverseConnection>;
|
|
44458
|
+
atlassianUserCreatedExternalTestStatus?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalTestStatusConnection>;
|
|
44459
|
+
atlassianUserCreatedExternalTestStatusInverse?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalTestStatusInverseConnection>;
|
|
44437
44460
|
atlassianUserDismissedJiraForYouRecommendationEntity?: Maybe<GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityConnection>;
|
|
44438
44461
|
atlassianUserDismissedJiraForYouRecommendationEntityBatch?: Maybe<GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityConnection>;
|
|
44439
44462
|
atlassianUserDismissedJiraForYouRecommendationEntityInverse?: Maybe<GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityInverseConnection>;
|
|
@@ -44450,12 +44473,28 @@ export declare type GraphStore = {
|
|
|
44450
44473
|
atlassianUserOwnsExternalCustomerOrgCategoryInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerOrgCategoryInverseConnection>;
|
|
44451
44474
|
atlassianUserOwnsExternalTeam?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTeamConnection>;
|
|
44452
44475
|
atlassianUserOwnsExternalTeamInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTeamInverseConnection>;
|
|
44476
|
+
atlassianUserOwnsExternalTestExecution?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestExecutionConnection>;
|
|
44477
|
+
atlassianUserOwnsExternalTestExecutionInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestExecutionInverseConnection>;
|
|
44478
|
+
atlassianUserOwnsExternalTestPlan?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestPlanConnection>;
|
|
44479
|
+
atlassianUserOwnsExternalTestPlanInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestPlanInverseConnection>;
|
|
44480
|
+
atlassianUserOwnsExternalTestRun?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestRunConnection>;
|
|
44481
|
+
atlassianUserOwnsExternalTestRunInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestRunInverseConnection>;
|
|
44482
|
+
atlassianUserOwnsExternalTestStatus?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusConnection>;
|
|
44483
|
+
atlassianUserOwnsExternalTestStatusInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusInverseConnection>;
|
|
44453
44484
|
atlassianUserUpdatedExternalCustomerContact?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerContactConnection>;
|
|
44454
44485
|
atlassianUserUpdatedExternalCustomerContactInverse?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerContactInverseConnection>;
|
|
44455
44486
|
atlassianUserUpdatedExternalCustomerOrgCategory?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerOrgCategoryConnection>;
|
|
44456
44487
|
atlassianUserUpdatedExternalCustomerOrgCategoryInverse?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerOrgCategoryInverseConnection>;
|
|
44457
44488
|
atlassianUserUpdatedExternalTeam?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalTeamConnection>;
|
|
44458
44489
|
atlassianUserUpdatedExternalTeamInverse?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalTeamInverseConnection>;
|
|
44490
|
+
atlassianUserUpdatedExternalTestExecution?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalTestExecutionConnection>;
|
|
44491
|
+
atlassianUserUpdatedExternalTestExecutionInverse?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalTestExecutionInverseConnection>;
|
|
44492
|
+
atlassianUserUpdatedExternalTestPlan?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalTestPlanConnection>;
|
|
44493
|
+
atlassianUserUpdatedExternalTestPlanInverse?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalTestPlanInverseConnection>;
|
|
44494
|
+
atlassianUserUpdatedExternalTestRun?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalTestRunConnection>;
|
|
44495
|
+
atlassianUserUpdatedExternalTestRunInverse?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalTestRunInverseConnection>;
|
|
44496
|
+
atlassianUserUpdatedExternalTestStatus?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalTestStatusConnection>;
|
|
44497
|
+
atlassianUserUpdatedExternalTestStatusInverse?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalTestStatusInverseConnection>;
|
|
44459
44498
|
boardBelongsToProject?: Maybe<GraphStoreSimplifiedBoardBelongsToProjectConnection>;
|
|
44460
44499
|
boardBelongsToProjectInverse?: Maybe<GraphStoreSimplifiedBoardBelongsToProjectInverseConnection>;
|
|
44461
44500
|
branchInRepo?: Maybe<GraphStoreSimplifiedBranchInRepoConnection>;
|
|
@@ -44518,6 +44557,8 @@ export declare type GraphStore = {
|
|
|
44518
44557
|
contentReferencedEntityRelationship?: Maybe<GraphStoreFullContentReferencedEntityConnection>;
|
|
44519
44558
|
conversationHasMessage?: Maybe<GraphStoreSimplifiedConversationHasMessageConnection>;
|
|
44520
44559
|
conversationHasMessageInverse?: Maybe<GraphStoreSimplifiedConversationHasMessageInverseConnection>;
|
|
44560
|
+
csmCustomerHasJiraWorkItem?: Maybe<GraphStoreSimplifiedCsmCustomerHasJiraWorkItemConnection>;
|
|
44561
|
+
csmCustomerHasJiraWorkItemInverse?: Maybe<GraphStoreSimplifiedCsmCustomerHasJiraWorkItemInverseConnection>;
|
|
44521
44562
|
customerAssociatedIssue?: Maybe<GraphStoreSimplifiedCustomerAssociatedIssueConnection>;
|
|
44522
44563
|
customerAssociatedIssueInverse?: Maybe<GraphStoreSimplifiedCustomerAssociatedIssueInverseConnection>;
|
|
44523
44564
|
customerHasExternalConversation?: Maybe<GraphStoreSimplifiedCustomerHasExternalConversationConnection>;
|
|
@@ -44804,6 +44845,14 @@ export declare type GraphStore = {
|
|
|
44804
44845
|
parentMessageHasChildMessageInverse?: Maybe<GraphStoreSimplifiedParentMessageHasChildMessageInverseConnection>;
|
|
44805
44846
|
parentTeamHasChildTeam?: Maybe<GraphStoreSimplifiedParentTeamHasChildTeamConnection>;
|
|
44806
44847
|
parentTeamHasChildTeamInverse?: Maybe<GraphStoreSimplifiedParentTeamHasChildTeamInverseConnection>;
|
|
44848
|
+
planHasPortfolio?: Maybe<GraphStoreSimplifiedPlanHasPortfolioConnection>;
|
|
44849
|
+
planHasPortfolioInverse?: Maybe<GraphStoreSimplifiedPlanHasPortfolioInverseConnection>;
|
|
44850
|
+
planHasScenario?: Maybe<GraphStoreSimplifiedPlanHasScenarioConnection>;
|
|
44851
|
+
planHasScenarioInverse?: Maybe<GraphStoreSimplifiedPlanHasScenarioInverseConnection>;
|
|
44852
|
+
planScenarioHasInvestment?: Maybe<GraphStoreSimplifiedPlanScenarioHasInvestmentConnection>;
|
|
44853
|
+
planScenarioHasInvestmentInverse?: Maybe<GraphStoreSimplifiedPlanScenarioHasInvestmentInverseConnection>;
|
|
44854
|
+
planScenarioInvestmentHasInvestmentEntity?: Maybe<GraphStoreSimplifiedPlanScenarioInvestmentHasInvestmentEntityConnection>;
|
|
44855
|
+
planScenarioInvestmentHasInvestmentEntityInverse?: Maybe<GraphStoreSimplifiedPlanScenarioInvestmentHasInvestmentEntityInverseConnection>;
|
|
44807
44856
|
positionAllocatedToFocusArea?: Maybe<GraphStoreSimplifiedPositionAllocatedToFocusAreaConnection>;
|
|
44808
44857
|
positionAllocatedToFocusAreaInverse?: Maybe<GraphStoreSimplifiedPositionAllocatedToFocusAreaInverseConnection>;
|
|
44809
44858
|
positionAssociatedExternalPosition?: Maybe<GraphStoreSimplifiedPositionAssociatedExternalPositionConnection>;
|
|
@@ -44890,6 +44939,8 @@ export declare type GraphStore = {
|
|
|
44890
44939
|
projectExplicitlyAssociatedRepoInverse?: Maybe<GraphStoreSimplifiedProjectExplicitlyAssociatedRepoInverseConnection>;
|
|
44891
44940
|
projectExplicitlyAssociatedRepoInverseRelationship?: Maybe<GraphStoreFullProjectExplicitlyAssociatedRepoConnection>;
|
|
44892
44941
|
projectExplicitlyAssociatedRepoRelationship?: Maybe<GraphStoreFullProjectExplicitlyAssociatedRepoConnection>;
|
|
44942
|
+
projectHasAvpDashboard?: Maybe<GraphStoreSimplifiedProjectHasAvpDashboardConnection>;
|
|
44943
|
+
projectHasAvpDashboardInverse?: Maybe<GraphStoreSimplifiedProjectHasAvpDashboardInverseConnection>;
|
|
44893
44944
|
projectHasIssue?: Maybe<GraphStoreSimplifiedProjectHasIssueConnection>;
|
|
44894
44945
|
projectHasIssueInverse?: Maybe<GraphStoreSimplifiedProjectHasIssueInverseConnection>;
|
|
44895
44946
|
projectHasIssueInverseRelationship?: Maybe<GraphStoreFullProjectHasIssueConnection>;
|
|
@@ -45013,6 +45064,8 @@ export declare type GraphStore = {
|
|
|
45013
45064
|
thirdPartyToGraphRemoteLink?: Maybe<GraphStoreSimplifiedThirdPartyToGraphRemoteLinkConnection>;
|
|
45014
45065
|
topicHasRelatedEntity?: Maybe<GraphStoreSimplifiedTopicHasRelatedEntityConnection>;
|
|
45015
45066
|
topicHasRelatedEntityInverse?: Maybe<GraphStoreSimplifiedTopicHasRelatedEntityInverseConnection>;
|
|
45067
|
+
userApprovesPlan?: Maybe<GraphStoreSimplifiedUserApprovesPlanConnection>;
|
|
45068
|
+
userApprovesPlanInverse?: Maybe<GraphStoreSimplifiedUserApprovesPlanInverseConnection>;
|
|
45016
45069
|
userAssignedIncident?: Maybe<GraphStoreSimplifiedUserAssignedIncidentConnection>;
|
|
45017
45070
|
userAssignedIncidentInverse?: Maybe<GraphStoreSimplifiedUserAssignedIncidentInverseConnection>;
|
|
45018
45071
|
userAssignedIssue?: Maybe<GraphStoreSimplifiedUserAssignedIssueConnection>;
|
|
@@ -45177,6 +45230,8 @@ export declare type GraphStore = {
|
|
|
45177
45230
|
userOwnsFocusAreaInverse?: Maybe<GraphStoreSimplifiedUserOwnsFocusAreaInverseConnection>;
|
|
45178
45231
|
userOwnsPage?: Maybe<GraphStoreSimplifiedUserOwnsPageConnection>;
|
|
45179
45232
|
userOwnsPageInverse?: Maybe<GraphStoreSimplifiedUserOwnsPageInverseConnection>;
|
|
45233
|
+
userOwnsPlan?: Maybe<GraphStoreSimplifiedUserOwnsPlanConnection>;
|
|
45234
|
+
userOwnsPlanInverse?: Maybe<GraphStoreSimplifiedUserOwnsPlanInverseConnection>;
|
|
45180
45235
|
userReactedToIssueComment?: Maybe<GraphStoreSimplifiedUserReactedToIssueCommentConnection>;
|
|
45181
45236
|
userReactedToIssueCommentInverse?: Maybe<GraphStoreSimplifiedUserReactedToIssueCommentInverseConnection>;
|
|
45182
45237
|
userReactionVideo?: Maybe<GraphStoreSimplifiedUserReactionVideoConnection>;
|
|
@@ -45812,6 +45867,70 @@ export declare type GraphStoreAtlassianUserCreatedExternalTeamInverseArgs = {
|
|
|
45812
45867
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
45813
45868
|
sort?: InputMaybe<GraphStoreAtlassianUserCreatedExternalTeamSortInput>;
|
|
45814
45869
|
};
|
|
45870
|
+
export declare type GraphStoreAtlassianUserCreatedExternalTestExecutionArgs = {
|
|
45871
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
45872
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
45873
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
45874
|
+
id: Scalars['ID']['input'];
|
|
45875
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
45876
|
+
sort?: InputMaybe<GraphStoreAtlassianUserCreatedExternalTestExecutionSortInput>;
|
|
45877
|
+
};
|
|
45878
|
+
export declare type GraphStoreAtlassianUserCreatedExternalTestExecutionInverseArgs = {
|
|
45879
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
45880
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
45881
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
45882
|
+
id: Scalars['ID']['input'];
|
|
45883
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
45884
|
+
sort?: InputMaybe<GraphStoreAtlassianUserCreatedExternalTestExecutionSortInput>;
|
|
45885
|
+
};
|
|
45886
|
+
export declare type GraphStoreAtlassianUserCreatedExternalTestPlanArgs = {
|
|
45887
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
45888
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
45889
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
45890
|
+
id: Scalars['ID']['input'];
|
|
45891
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
45892
|
+
sort?: InputMaybe<GraphStoreAtlassianUserCreatedExternalTestPlanSortInput>;
|
|
45893
|
+
};
|
|
45894
|
+
export declare type GraphStoreAtlassianUserCreatedExternalTestPlanInverseArgs = {
|
|
45895
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
45896
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
45897
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
45898
|
+
id: Scalars['ID']['input'];
|
|
45899
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
45900
|
+
sort?: InputMaybe<GraphStoreAtlassianUserCreatedExternalTestPlanSortInput>;
|
|
45901
|
+
};
|
|
45902
|
+
export declare type GraphStoreAtlassianUserCreatedExternalTestRunArgs = {
|
|
45903
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
45904
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
45905
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
45906
|
+
id: Scalars['ID']['input'];
|
|
45907
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
45908
|
+
sort?: InputMaybe<GraphStoreAtlassianUserCreatedExternalTestRunSortInput>;
|
|
45909
|
+
};
|
|
45910
|
+
export declare type GraphStoreAtlassianUserCreatedExternalTestRunInverseArgs = {
|
|
45911
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
45912
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
45913
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
45914
|
+
id: Scalars['ID']['input'];
|
|
45915
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
45916
|
+
sort?: InputMaybe<GraphStoreAtlassianUserCreatedExternalTestRunSortInput>;
|
|
45917
|
+
};
|
|
45918
|
+
export declare type GraphStoreAtlassianUserCreatedExternalTestStatusArgs = {
|
|
45919
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
45920
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
45921
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
45922
|
+
id: Scalars['ID']['input'];
|
|
45923
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
45924
|
+
sort?: InputMaybe<GraphStoreAtlassianUserCreatedExternalTestStatusSortInput>;
|
|
45925
|
+
};
|
|
45926
|
+
export declare type GraphStoreAtlassianUserCreatedExternalTestStatusInverseArgs = {
|
|
45927
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
45928
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
45929
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
45930
|
+
id: Scalars['ID']['input'];
|
|
45931
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
45932
|
+
sort?: InputMaybe<GraphStoreAtlassianUserCreatedExternalTestStatusSortInput>;
|
|
45933
|
+
};
|
|
45815
45934
|
export declare type GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityArgs = {
|
|
45816
45935
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
45817
45936
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -45940,6 +46059,70 @@ export declare type GraphStoreAtlassianUserOwnsExternalTeamInverseArgs = {
|
|
|
45940
46059
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
45941
46060
|
sort?: InputMaybe<GraphStoreAtlassianUserOwnsExternalTeamSortInput>;
|
|
45942
46061
|
};
|
|
46062
|
+
export declare type GraphStoreAtlassianUserOwnsExternalTestExecutionArgs = {
|
|
46063
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
46064
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
46065
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
46066
|
+
id: Scalars['ID']['input'];
|
|
46067
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
46068
|
+
sort?: InputMaybe<GraphStoreAtlassianUserOwnsExternalTestExecutionSortInput>;
|
|
46069
|
+
};
|
|
46070
|
+
export declare type GraphStoreAtlassianUserOwnsExternalTestExecutionInverseArgs = {
|
|
46071
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
46072
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
46073
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
46074
|
+
id: Scalars['ID']['input'];
|
|
46075
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
46076
|
+
sort?: InputMaybe<GraphStoreAtlassianUserOwnsExternalTestExecutionSortInput>;
|
|
46077
|
+
};
|
|
46078
|
+
export declare type GraphStoreAtlassianUserOwnsExternalTestPlanArgs = {
|
|
46079
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
46080
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
46081
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
46082
|
+
id: Scalars['ID']['input'];
|
|
46083
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
46084
|
+
sort?: InputMaybe<GraphStoreAtlassianUserOwnsExternalTestPlanSortInput>;
|
|
46085
|
+
};
|
|
46086
|
+
export declare type GraphStoreAtlassianUserOwnsExternalTestPlanInverseArgs = {
|
|
46087
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
46088
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
46089
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
46090
|
+
id: Scalars['ID']['input'];
|
|
46091
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
46092
|
+
sort?: InputMaybe<GraphStoreAtlassianUserOwnsExternalTestPlanSortInput>;
|
|
46093
|
+
};
|
|
46094
|
+
export declare type GraphStoreAtlassianUserOwnsExternalTestRunArgs = {
|
|
46095
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
46096
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
46097
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
46098
|
+
id: Scalars['ID']['input'];
|
|
46099
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
46100
|
+
sort?: InputMaybe<GraphStoreAtlassianUserOwnsExternalTestRunSortInput>;
|
|
46101
|
+
};
|
|
46102
|
+
export declare type GraphStoreAtlassianUserOwnsExternalTestRunInverseArgs = {
|
|
46103
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
46104
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
46105
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
46106
|
+
id: Scalars['ID']['input'];
|
|
46107
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
46108
|
+
sort?: InputMaybe<GraphStoreAtlassianUserOwnsExternalTestRunSortInput>;
|
|
46109
|
+
};
|
|
46110
|
+
export declare type GraphStoreAtlassianUserOwnsExternalTestStatusArgs = {
|
|
46111
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
46112
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
46113
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
46114
|
+
id: Scalars['ID']['input'];
|
|
46115
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
46116
|
+
sort?: InputMaybe<GraphStoreAtlassianUserOwnsExternalTestStatusSortInput>;
|
|
46117
|
+
};
|
|
46118
|
+
export declare type GraphStoreAtlassianUserOwnsExternalTestStatusInverseArgs = {
|
|
46119
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
46120
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
46121
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
46122
|
+
id: Scalars['ID']['input'];
|
|
46123
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
46124
|
+
sort?: InputMaybe<GraphStoreAtlassianUserOwnsExternalTestStatusSortInput>;
|
|
46125
|
+
};
|
|
45943
46126
|
export declare type GraphStoreAtlassianUserUpdatedExternalCustomerContactArgs = {
|
|
45944
46127
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
45945
46128
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -45988,6 +46171,70 @@ export declare type GraphStoreAtlassianUserUpdatedExternalTeamInverseArgs = {
|
|
|
45988
46171
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
45989
46172
|
sort?: InputMaybe<GraphStoreAtlassianUserUpdatedExternalTeamSortInput>;
|
|
45990
46173
|
};
|
|
46174
|
+
export declare type GraphStoreAtlassianUserUpdatedExternalTestExecutionArgs = {
|
|
46175
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
46176
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
46177
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
46178
|
+
id: Scalars['ID']['input'];
|
|
46179
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
46180
|
+
sort?: InputMaybe<GraphStoreAtlassianUserUpdatedExternalTestExecutionSortInput>;
|
|
46181
|
+
};
|
|
46182
|
+
export declare type GraphStoreAtlassianUserUpdatedExternalTestExecutionInverseArgs = {
|
|
46183
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
46184
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
46185
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
46186
|
+
id: Scalars['ID']['input'];
|
|
46187
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
46188
|
+
sort?: InputMaybe<GraphStoreAtlassianUserUpdatedExternalTestExecutionSortInput>;
|
|
46189
|
+
};
|
|
46190
|
+
export declare type GraphStoreAtlassianUserUpdatedExternalTestPlanArgs = {
|
|
46191
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
46192
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
46193
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
46194
|
+
id: Scalars['ID']['input'];
|
|
46195
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
46196
|
+
sort?: InputMaybe<GraphStoreAtlassianUserUpdatedExternalTestPlanSortInput>;
|
|
46197
|
+
};
|
|
46198
|
+
export declare type GraphStoreAtlassianUserUpdatedExternalTestPlanInverseArgs = {
|
|
46199
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
46200
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
46201
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
46202
|
+
id: Scalars['ID']['input'];
|
|
46203
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
46204
|
+
sort?: InputMaybe<GraphStoreAtlassianUserUpdatedExternalTestPlanSortInput>;
|
|
46205
|
+
};
|
|
46206
|
+
export declare type GraphStoreAtlassianUserUpdatedExternalTestRunArgs = {
|
|
46207
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
46208
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
46209
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
46210
|
+
id: Scalars['ID']['input'];
|
|
46211
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
46212
|
+
sort?: InputMaybe<GraphStoreAtlassianUserUpdatedExternalTestRunSortInput>;
|
|
46213
|
+
};
|
|
46214
|
+
export declare type GraphStoreAtlassianUserUpdatedExternalTestRunInverseArgs = {
|
|
46215
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
46216
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
46217
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
46218
|
+
id: Scalars['ID']['input'];
|
|
46219
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
46220
|
+
sort?: InputMaybe<GraphStoreAtlassianUserUpdatedExternalTestRunSortInput>;
|
|
46221
|
+
};
|
|
46222
|
+
export declare type GraphStoreAtlassianUserUpdatedExternalTestStatusArgs = {
|
|
46223
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
46224
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
46225
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
46226
|
+
id: Scalars['ID']['input'];
|
|
46227
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
46228
|
+
sort?: InputMaybe<GraphStoreAtlassianUserUpdatedExternalTestStatusSortInput>;
|
|
46229
|
+
};
|
|
46230
|
+
export declare type GraphStoreAtlassianUserUpdatedExternalTestStatusInverseArgs = {
|
|
46231
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
46232
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
46233
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
46234
|
+
id: Scalars['ID']['input'];
|
|
46235
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
46236
|
+
sort?: InputMaybe<GraphStoreAtlassianUserUpdatedExternalTestStatusSortInput>;
|
|
46237
|
+
};
|
|
45991
46238
|
export declare type GraphStoreBoardBelongsToProjectArgs = {
|
|
45992
46239
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
45993
46240
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -46464,6 +46711,22 @@ export declare type GraphStoreConversationHasMessageInverseArgs = {
|
|
|
46464
46711
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
46465
46712
|
sort?: InputMaybe<GraphStoreConversationHasMessageSortInput>;
|
|
46466
46713
|
};
|
|
46714
|
+
export declare type GraphStoreCsmCustomerHasJiraWorkItemArgs = {
|
|
46715
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
46716
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
46717
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
46718
|
+
id: Scalars['ID']['input'];
|
|
46719
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
46720
|
+
sort?: InputMaybe<GraphStoreCsmCustomerHasJiraWorkItemSortInput>;
|
|
46721
|
+
};
|
|
46722
|
+
export declare type GraphStoreCsmCustomerHasJiraWorkItemInverseArgs = {
|
|
46723
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
46724
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
46725
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
46726
|
+
id: Scalars['ID']['input'];
|
|
46727
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
46728
|
+
sort?: InputMaybe<GraphStoreCsmCustomerHasJiraWorkItemSortInput>;
|
|
46729
|
+
};
|
|
46467
46730
|
export declare type GraphStoreCustomerAssociatedIssueArgs = {
|
|
46468
46731
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
46469
46732
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -48614,6 +48877,70 @@ export declare type GraphStoreParentTeamHasChildTeamInverseArgs = {
|
|
|
48614
48877
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
48615
48878
|
sort?: InputMaybe<GraphStoreParentTeamHasChildTeamSortInput>;
|
|
48616
48879
|
};
|
|
48880
|
+
export declare type GraphStorePlanHasPortfolioArgs = {
|
|
48881
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
48882
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
48883
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
48884
|
+
id: Scalars['ID']['input'];
|
|
48885
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
48886
|
+
sort?: InputMaybe<GraphStorePlanHasPortfolioSortInput>;
|
|
48887
|
+
};
|
|
48888
|
+
export declare type GraphStorePlanHasPortfolioInverseArgs = {
|
|
48889
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
48890
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
48891
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
48892
|
+
id: Scalars['ID']['input'];
|
|
48893
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
48894
|
+
sort?: InputMaybe<GraphStorePlanHasPortfolioSortInput>;
|
|
48895
|
+
};
|
|
48896
|
+
export declare type GraphStorePlanHasScenarioArgs = {
|
|
48897
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
48898
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
48899
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
48900
|
+
id: Scalars['ID']['input'];
|
|
48901
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
48902
|
+
sort?: InputMaybe<GraphStorePlanHasScenarioSortInput>;
|
|
48903
|
+
};
|
|
48904
|
+
export declare type GraphStorePlanHasScenarioInverseArgs = {
|
|
48905
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
48906
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
48907
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
48908
|
+
id: Scalars['ID']['input'];
|
|
48909
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
48910
|
+
sort?: InputMaybe<GraphStorePlanHasScenarioSortInput>;
|
|
48911
|
+
};
|
|
48912
|
+
export declare type GraphStorePlanScenarioHasInvestmentArgs = {
|
|
48913
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
48914
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
48915
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
48916
|
+
id: Scalars['ID']['input'];
|
|
48917
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
48918
|
+
sort?: InputMaybe<GraphStorePlanScenarioHasInvestmentSortInput>;
|
|
48919
|
+
};
|
|
48920
|
+
export declare type GraphStorePlanScenarioHasInvestmentInverseArgs = {
|
|
48921
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
48922
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
48923
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
48924
|
+
id: Scalars['ID']['input'];
|
|
48925
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
48926
|
+
sort?: InputMaybe<GraphStorePlanScenarioHasInvestmentSortInput>;
|
|
48927
|
+
};
|
|
48928
|
+
export declare type GraphStorePlanScenarioInvestmentHasInvestmentEntityArgs = {
|
|
48929
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
48930
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
48931
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
48932
|
+
id: Scalars['ID']['input'];
|
|
48933
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
48934
|
+
sort?: InputMaybe<GraphStorePlanScenarioInvestmentHasInvestmentEntitySortInput>;
|
|
48935
|
+
};
|
|
48936
|
+
export declare type GraphStorePlanScenarioInvestmentHasInvestmentEntityInverseArgs = {
|
|
48937
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
48938
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
48939
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
48940
|
+
id: Scalars['ID']['input'];
|
|
48941
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
48942
|
+
sort?: InputMaybe<GraphStorePlanScenarioInvestmentHasInvestmentEntitySortInput>;
|
|
48943
|
+
};
|
|
48617
48944
|
export declare type GraphStorePositionAllocatedToFocusAreaArgs = {
|
|
48618
48945
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
48619
48946
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -49266,6 +49593,22 @@ export declare type GraphStoreProjectExplicitlyAssociatedRepoRelationshipArgs =
|
|
|
49266
49593
|
id: Scalars['ID']['input'];
|
|
49267
49594
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
49268
49595
|
};
|
|
49596
|
+
export declare type GraphStoreProjectHasAvpDashboardArgs = {
|
|
49597
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
49598
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
49599
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
49600
|
+
id: Scalars['ID']['input'];
|
|
49601
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
49602
|
+
sort?: InputMaybe<GraphStoreProjectHasAvpDashboardSortInput>;
|
|
49603
|
+
};
|
|
49604
|
+
export declare type GraphStoreProjectHasAvpDashboardInverseArgs = {
|
|
49605
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
49606
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
49607
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
49608
|
+
id: Scalars['ID']['input'];
|
|
49609
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
49610
|
+
sort?: InputMaybe<GraphStoreProjectHasAvpDashboardSortInput>;
|
|
49611
|
+
};
|
|
49269
49612
|
export declare type GraphStoreProjectHasIssueArgs = {
|
|
49270
49613
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
49271
49614
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -50214,6 +50557,22 @@ export declare type GraphStoreTopicHasRelatedEntityInverseArgs = {
|
|
|
50214
50557
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
50215
50558
|
sort?: InputMaybe<GraphStoreTopicHasRelatedEntitySortInput>;
|
|
50216
50559
|
};
|
|
50560
|
+
export declare type GraphStoreUserApprovesPlanArgs = {
|
|
50561
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
50562
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
50563
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
50564
|
+
id: Scalars['ID']['input'];
|
|
50565
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
50566
|
+
sort?: InputMaybe<GraphStoreUserApprovesPlanSortInput>;
|
|
50567
|
+
};
|
|
50568
|
+
export declare type GraphStoreUserApprovesPlanInverseArgs = {
|
|
50569
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
50570
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
50571
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
50572
|
+
id: Scalars['ID']['input'];
|
|
50573
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
50574
|
+
sort?: InputMaybe<GraphStoreUserApprovesPlanSortInput>;
|
|
50575
|
+
};
|
|
50217
50576
|
export declare type GraphStoreUserAssignedIncidentArgs = {
|
|
50218
50577
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
50219
50578
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -51534,6 +51893,22 @@ export declare type GraphStoreUserOwnsPageInverseArgs = {
|
|
|
51534
51893
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
51535
51894
|
sort?: InputMaybe<GraphStoreUserOwnsPageSortInput>;
|
|
51536
51895
|
};
|
|
51896
|
+
export declare type GraphStoreUserOwnsPlanArgs = {
|
|
51897
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
51898
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
51899
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
51900
|
+
id: Scalars['ID']['input'];
|
|
51901
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
51902
|
+
sort?: InputMaybe<GraphStoreUserOwnsPlanSortInput>;
|
|
51903
|
+
};
|
|
51904
|
+
export declare type GraphStoreUserOwnsPlanInverseArgs = {
|
|
51905
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
51906
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
51907
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
51908
|
+
id: Scalars['ID']['input'];
|
|
51909
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
51910
|
+
sort?: InputMaybe<GraphStoreUserOwnsPlanSortInput>;
|
|
51911
|
+
};
|
|
51537
51912
|
export declare type GraphStoreUserReactedToIssueCommentArgs = {
|
|
51538
51913
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
51539
51914
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -52740,6 +53115,18 @@ export declare type GraphStoreAtlassianUserCreatedExternalCustomerOrgCategorySor
|
|
|
52740
53115
|
export declare type GraphStoreAtlassianUserCreatedExternalTeamSortInput = {
|
|
52741
53116
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
52742
53117
|
};
|
|
53118
|
+
export declare type GraphStoreAtlassianUserCreatedExternalTestExecutionSortInput = {
|
|
53119
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
53120
|
+
};
|
|
53121
|
+
export declare type GraphStoreAtlassianUserCreatedExternalTestPlanSortInput = {
|
|
53122
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
53123
|
+
};
|
|
53124
|
+
export declare type GraphStoreAtlassianUserCreatedExternalTestRunSortInput = {
|
|
53125
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
53126
|
+
};
|
|
53127
|
+
export declare type GraphStoreAtlassianUserCreatedExternalTestStatusSortInput = {
|
|
53128
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
53129
|
+
};
|
|
52743
53130
|
export declare type GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalFilterInput = {
|
|
52744
53131
|
and?: InputMaybe<Array<InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalFilterInput>>>;
|
|
52745
53132
|
category?: InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalRecommendationCategoryFilterInput>;
|
|
@@ -52802,6 +53189,18 @@ export declare type GraphStoreAtlassianUserOwnsExternalCustomerOrgCategorySortIn
|
|
|
52802
53189
|
export declare type GraphStoreAtlassianUserOwnsExternalTeamSortInput = {
|
|
52803
53190
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
52804
53191
|
};
|
|
53192
|
+
export declare type GraphStoreAtlassianUserOwnsExternalTestExecutionSortInput = {
|
|
53193
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
53194
|
+
};
|
|
53195
|
+
export declare type GraphStoreAtlassianUserOwnsExternalTestPlanSortInput = {
|
|
53196
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
53197
|
+
};
|
|
53198
|
+
export declare type GraphStoreAtlassianUserOwnsExternalTestRunSortInput = {
|
|
53199
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
53200
|
+
};
|
|
53201
|
+
export declare type GraphStoreAtlassianUserOwnsExternalTestStatusSortInput = {
|
|
53202
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
53203
|
+
};
|
|
52805
53204
|
export declare type GraphStoreAtlassianUserUpdatedExternalCustomerContactSortInput = {
|
|
52806
53205
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
52807
53206
|
};
|
|
@@ -52811,6 +53210,18 @@ export declare type GraphStoreAtlassianUserUpdatedExternalCustomerOrgCategorySor
|
|
|
52811
53210
|
export declare type GraphStoreAtlassianUserUpdatedExternalTeamSortInput = {
|
|
52812
53211
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
52813
53212
|
};
|
|
53213
|
+
export declare type GraphStoreAtlassianUserUpdatedExternalTestExecutionSortInput = {
|
|
53214
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
53215
|
+
};
|
|
53216
|
+
export declare type GraphStoreAtlassianUserUpdatedExternalTestPlanSortInput = {
|
|
53217
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
53218
|
+
};
|
|
53219
|
+
export declare type GraphStoreAtlassianUserUpdatedExternalTestRunSortInput = {
|
|
53220
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
53221
|
+
};
|
|
53222
|
+
export declare type GraphStoreAtlassianUserUpdatedExternalTestStatusSortInput = {
|
|
53223
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
53224
|
+
};
|
|
52814
53225
|
export declare type GraphStoreBatchAtlasGoalHasJiraAlignProjectConnection = HasPageInfo & {
|
|
52815
53226
|
__typename?: 'GraphStoreBatchAtlasGoalHasJiraAlignProjectConnection';
|
|
52816
53227
|
edges: Array<Maybe<GraphStoreBatchAtlasGoalHasJiraAlignProjectEdge>>;
|
|
@@ -53031,7 +53442,7 @@ export declare type GraphStoreBatchContentReferencedEntityEndNode = {
|
|
|
53031
53442
|
data?: Maybe<GraphStoreBatchContentReferencedEntityEndUnion>;
|
|
53032
53443
|
id: Scalars['ID']['output'];
|
|
53033
53444
|
};
|
|
53034
|
-
export declare type GraphStoreBatchContentReferencedEntityEndUnion = AvpDashboard | AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
53445
|
+
export declare type GraphStoreBatchContentReferencedEntityEndUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
53035
53446
|
export declare type GraphStoreBatchContentReferencedEntityInnerConnection = {
|
|
53036
53447
|
__typename?: 'GraphStoreBatchContentReferencedEntityInnerConnection';
|
|
53037
53448
|
edges: Array<Maybe<GraphStoreBatchContentReferencedEntityInnerEdge>>;
|
|
@@ -53056,7 +53467,7 @@ export declare type GraphStoreBatchContentReferencedEntityStartNode = {
|
|
|
53056
53467
|
data?: Maybe<GraphStoreBatchContentReferencedEntityStartUnion>;
|
|
53057
53468
|
id: Scalars['ID']['output'];
|
|
53058
53469
|
};
|
|
53059
|
-
export declare type GraphStoreBatchContentReferencedEntityStartUnion = AvpDashboard | AppUser | AssetsObject | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
53470
|
+
export declare type GraphStoreBatchContentReferencedEntityStartUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
53060
53471
|
export declare type GraphStoreBatchFocusAreaAssociatedToProjectConnection = HasPageInfo & {
|
|
53061
53472
|
__typename?: 'GraphStoreBatchFocusAreaAssociatedToProjectConnection';
|
|
53062
53473
|
edges: Array<Maybe<GraphStoreBatchFocusAreaAssociatedToProjectEdge>>;
|
|
@@ -54832,6 +55243,9 @@ export declare enum GraphStoreCreateVulnerabilityAssociatedIssueVulnerabilityTyp
|
|
|
54832
55243
|
Sca = "SCA",
|
|
54833
55244
|
Unknown = "UNKNOWN"
|
|
54834
55245
|
}
|
|
55246
|
+
export declare type GraphStoreCsmCustomerHasJiraWorkItemSortInput = {
|
|
55247
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
55248
|
+
};
|
|
54835
55249
|
export declare type GraphStoreCustomerAssociatedIssueSortInput = {
|
|
54836
55250
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
54837
55251
|
};
|
|
@@ -54851,6 +55265,10 @@ export declare type GraphStoreCypherQueryFloatObject = {
|
|
|
54851
55265
|
__typename?: 'GraphStoreCypherQueryFloatObject';
|
|
54852
55266
|
value: Scalars['Float']['output'];
|
|
54853
55267
|
};
|
|
55268
|
+
export declare type GraphStoreCypherQueryIntListObject = {
|
|
55269
|
+
__typename?: 'GraphStoreCypherQueryIntListObject';
|
|
55270
|
+
values: Array<Scalars['Int']['output']>;
|
|
55271
|
+
};
|
|
54854
55272
|
export declare type GraphStoreCypherQueryIntObject = {
|
|
54855
55273
|
__typename?: 'GraphStoreCypherQueryIntObject';
|
|
54856
55274
|
value: Scalars['Int']['output'];
|
|
@@ -54874,17 +55292,25 @@ export declare type GraphStoreCypherQueryResultRowItem = {
|
|
|
54874
55292
|
value: Array<GraphStoreCypherQueryValueNode>;
|
|
54875
55293
|
valueUnion?: Maybe<GraphStoreCypherQueryResultRowItemValueUnion>;
|
|
54876
55294
|
};
|
|
54877
|
-
export declare type GraphStoreCypherQueryResultRowItemValueUnion = GraphStoreCypherQueryBooleanObject | GraphStoreCypherQueryFloatObject | GraphStoreCypherQueryIntObject | GraphStoreCypherQueryResultNodeList | GraphStoreCypherQueryStringObject | GraphStoreCypherQueryTimestampObject;
|
|
55295
|
+
export declare type GraphStoreCypherQueryResultRowItemValueUnion = GraphStoreCypherQueryBooleanObject | GraphStoreCypherQueryFloatObject | GraphStoreCypherQueryIntListObject | GraphStoreCypherQueryIntObject | GraphStoreCypherQueryResultNodeList | GraphStoreCypherQueryStringListObject | GraphStoreCypherQueryStringObject | GraphStoreCypherQueryTimestampListObject | GraphStoreCypherQueryTimestampObject;
|
|
54878
55296
|
export declare type GraphStoreCypherQueryRowItemNode = {
|
|
54879
55297
|
__typename?: 'GraphStoreCypherQueryRowItemNode';
|
|
54880
55298
|
data?: Maybe<GraphStoreCypherQueryRowItemNodeNodeUnion>;
|
|
54881
55299
|
id: Scalars['ID']['output'];
|
|
54882
55300
|
};
|
|
54883
|
-
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AvpDashboard | AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
55301
|
+
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
55302
|
+
export declare type GraphStoreCypherQueryStringListObject = {
|
|
55303
|
+
__typename?: 'GraphStoreCypherQueryStringListObject';
|
|
55304
|
+
values: Array<Scalars['String']['output']>;
|
|
55305
|
+
};
|
|
54884
55306
|
export declare type GraphStoreCypherQueryStringObject = {
|
|
54885
55307
|
__typename?: 'GraphStoreCypherQueryStringObject';
|
|
54886
55308
|
value: Scalars['String']['output'];
|
|
54887
55309
|
};
|
|
55310
|
+
export declare type GraphStoreCypherQueryTimestampListObject = {
|
|
55311
|
+
__typename?: 'GraphStoreCypherQueryTimestampListObject';
|
|
55312
|
+
values: Array<Scalars['Long']['output']>;
|
|
55313
|
+
};
|
|
54888
55314
|
export declare type GraphStoreCypherQueryTimestampObject = {
|
|
54889
55315
|
__typename?: 'GraphStoreCypherQueryTimestampObject';
|
|
54890
55316
|
value: Scalars['Long']['output'];
|
|
@@ -54894,13 +55320,13 @@ export declare type GraphStoreCypherQueryV2AriNode = {
|
|
|
54894
55320
|
data?: Maybe<GraphStoreCypherQueryV2AriNodeUnion>;
|
|
54895
55321
|
id: Scalars['ID']['output'];
|
|
54896
55322
|
};
|
|
54897
|
-
export declare type GraphStoreCypherQueryV2AriNodeUnion = AvpDashboard | AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
55323
|
+
export declare type GraphStoreCypherQueryV2AriNodeUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
54898
55324
|
export declare type GraphStoreCypherQueryV2BatchAriNode = {
|
|
54899
55325
|
__typename?: 'GraphStoreCypherQueryV2BatchAriNode';
|
|
54900
55326
|
data?: Maybe<GraphStoreCypherQueryV2BatchAriNodeUnion>;
|
|
54901
55327
|
id: Scalars['ID']['output'];
|
|
54902
55328
|
};
|
|
54903
|
-
export declare type GraphStoreCypherQueryV2BatchAriNodeUnion = AvpDashboard | AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
55329
|
+
export declare type GraphStoreCypherQueryV2BatchAriNodeUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
54904
55330
|
export declare type GraphStoreCypherQueryV2BatchBooleanObject = {
|
|
54905
55331
|
__typename?: 'GraphStoreCypherQueryV2BatchBooleanObject';
|
|
54906
55332
|
value: Scalars['Boolean']['output'];
|
|
@@ -54924,6 +55350,10 @@ export declare type GraphStoreCypherQueryV2BatchFloatObject = {
|
|
|
54924
55350
|
__typename?: 'GraphStoreCypherQueryV2BatchFloatObject';
|
|
54925
55351
|
value: Scalars['Float']['output'];
|
|
54926
55352
|
};
|
|
55353
|
+
export declare type GraphStoreCypherQueryV2BatchIntListObject = {
|
|
55354
|
+
__typename?: 'GraphStoreCypherQueryV2BatchIntListObject';
|
|
55355
|
+
values: Array<Scalars['Int']['output']>;
|
|
55356
|
+
};
|
|
54927
55357
|
export declare type GraphStoreCypherQueryV2BatchIntObject = {
|
|
54928
55358
|
__typename?: 'GraphStoreCypherQueryV2BatchIntObject';
|
|
54929
55359
|
value: Scalars['Int']['output'];
|
|
@@ -54947,11 +55377,19 @@ export declare type GraphStoreCypherQueryV2BatchQueryResult = {
|
|
|
54947
55377
|
pageInfo: PageInfo;
|
|
54948
55378
|
version: Scalars['String']['output'];
|
|
54949
55379
|
};
|
|
54950
|
-
export declare type GraphStoreCypherQueryV2BatchResultRowItemValueUnion = GraphStoreCypherQueryV2BatchAriNode | GraphStoreCypherQueryV2BatchBooleanObject | GraphStoreCypherQueryV2BatchFloatObject | GraphStoreCypherQueryV2BatchIntObject | GraphStoreCypherQueryV2BatchNodeList | GraphStoreCypherQueryV2BatchStringObject | GraphStoreCypherQueryV2BatchTimestampObject;
|
|
55380
|
+
export declare type GraphStoreCypherQueryV2BatchResultRowItemValueUnion = GraphStoreCypherQueryV2BatchAriNode | GraphStoreCypherQueryV2BatchBooleanObject | GraphStoreCypherQueryV2BatchFloatObject | GraphStoreCypherQueryV2BatchIntListObject | GraphStoreCypherQueryV2BatchIntObject | GraphStoreCypherQueryV2BatchNodeList | GraphStoreCypherQueryV2BatchStringListObject | GraphStoreCypherQueryV2BatchStringObject | GraphStoreCypherQueryV2BatchTimestampListObject | GraphStoreCypherQueryV2BatchTimestampObject;
|
|
55381
|
+
export declare type GraphStoreCypherQueryV2BatchStringListObject = {
|
|
55382
|
+
__typename?: 'GraphStoreCypherQueryV2BatchStringListObject';
|
|
55383
|
+
values: Array<Scalars['String']['output']>;
|
|
55384
|
+
};
|
|
54951
55385
|
export declare type GraphStoreCypherQueryV2BatchStringObject = {
|
|
54952
55386
|
__typename?: 'GraphStoreCypherQueryV2BatchStringObject';
|
|
54953
55387
|
value: Scalars['String']['output'];
|
|
54954
55388
|
};
|
|
55389
|
+
export declare type GraphStoreCypherQueryV2BatchTimestampListObject = {
|
|
55390
|
+
__typename?: 'GraphStoreCypherQueryV2BatchTimestampListObject';
|
|
55391
|
+
values: Array<Scalars['Long']['output']>;
|
|
55392
|
+
};
|
|
54955
55393
|
export declare type GraphStoreCypherQueryV2BatchTimestampObject = {
|
|
54956
55394
|
__typename?: 'GraphStoreCypherQueryV2BatchTimestampObject';
|
|
54957
55395
|
value: Scalars['Long']['output'];
|
|
@@ -54984,6 +55422,10 @@ export declare type GraphStoreCypherQueryV2FloatObject = {
|
|
|
54984
55422
|
__typename?: 'GraphStoreCypherQueryV2FloatObject';
|
|
54985
55423
|
value: Scalars['Float']['output'];
|
|
54986
55424
|
};
|
|
55425
|
+
export declare type GraphStoreCypherQueryV2IntListObject = {
|
|
55426
|
+
__typename?: 'GraphStoreCypherQueryV2IntListObject';
|
|
55427
|
+
values: Array<Scalars['Int']['output']>;
|
|
55428
|
+
};
|
|
54987
55429
|
export declare type GraphStoreCypherQueryV2IntObject = {
|
|
54988
55430
|
__typename?: 'GraphStoreCypherQueryV2IntObject';
|
|
54989
55431
|
value: Scalars['Int']['output'];
|
|
@@ -55000,11 +55442,19 @@ export declare type GraphStoreCypherQueryV2Path = {
|
|
|
55000
55442
|
__typename?: 'GraphStoreCypherQueryV2Path';
|
|
55001
55443
|
elements: Array<Scalars['String']['output']>;
|
|
55002
55444
|
};
|
|
55003
|
-
export declare type GraphStoreCypherQueryV2ResultRowItemValueUnion = GraphStoreCypherQueryV2AriNode | GraphStoreCypherQueryV2BooleanObject | GraphStoreCypherQueryV2FloatObject | GraphStoreCypherQueryV2IntObject | GraphStoreCypherQueryV2NodeList | GraphStoreCypherQueryV2Path | GraphStoreCypherQueryV2StringObject | GraphStoreCypherQueryV2TimestampObject;
|
|
55445
|
+
export declare type GraphStoreCypherQueryV2ResultRowItemValueUnion = GraphStoreCypherQueryV2AriNode | GraphStoreCypherQueryV2BooleanObject | GraphStoreCypherQueryV2FloatObject | GraphStoreCypherQueryV2IntListObject | GraphStoreCypherQueryV2IntObject | GraphStoreCypherQueryV2NodeList | GraphStoreCypherQueryV2Path | GraphStoreCypherQueryV2StringListObject | GraphStoreCypherQueryV2StringObject | GraphStoreCypherQueryV2TimestampListObject | GraphStoreCypherQueryV2TimestampObject;
|
|
55446
|
+
export declare type GraphStoreCypherQueryV2StringListObject = {
|
|
55447
|
+
__typename?: 'GraphStoreCypherQueryV2StringListObject';
|
|
55448
|
+
values: Array<Scalars['String']['output']>;
|
|
55449
|
+
};
|
|
55004
55450
|
export declare type GraphStoreCypherQueryV2StringObject = {
|
|
55005
55451
|
__typename?: 'GraphStoreCypherQueryV2StringObject';
|
|
55006
55452
|
value: Scalars['String']['output'];
|
|
55007
55453
|
};
|
|
55454
|
+
export declare type GraphStoreCypherQueryV2TimestampListObject = {
|
|
55455
|
+
__typename?: 'GraphStoreCypherQueryV2TimestampListObject';
|
|
55456
|
+
values: Array<Scalars['Long']['output']>;
|
|
55457
|
+
};
|
|
55008
55458
|
export declare type GraphStoreCypherQueryV2TimestampObject = {
|
|
55009
55459
|
__typename?: 'GraphStoreCypherQueryV2TimestampObject';
|
|
55010
55460
|
value: Scalars['Long']['output'];
|
|
@@ -55013,7 +55463,7 @@ export declare enum GraphStoreCypherQueryV2VersionEnum {
|
|
|
55013
55463
|
V2 = "V2",
|
|
55014
55464
|
V3 = "V3"
|
|
55015
55465
|
}
|
|
55016
|
-
export declare type GraphStoreCypherQueryValueItemUnion = AvpDashboard | AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
55466
|
+
export declare type GraphStoreCypherQueryValueItemUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
55017
55467
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
55018
55468
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
55019
55469
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -55838,7 +56288,7 @@ export declare type GraphStoreFullContentReferencedEntityEndNode = {
|
|
|
55838
56288
|
data?: Maybe<GraphStoreFullContentReferencedEntityEndUnion>;
|
|
55839
56289
|
id: Scalars['ID']['output'];
|
|
55840
56290
|
};
|
|
55841
|
-
export declare type GraphStoreFullContentReferencedEntityEndUnion = AvpDashboard | AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
56291
|
+
export declare type GraphStoreFullContentReferencedEntityEndUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
55842
56292
|
export declare type GraphStoreFullContentReferencedEntityNode = Node & {
|
|
55843
56293
|
__typename?: 'GraphStoreFullContentReferencedEntityNode';
|
|
55844
56294
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -55852,7 +56302,7 @@ export declare type GraphStoreFullContentReferencedEntityStartNode = {
|
|
|
55852
56302
|
data?: Maybe<GraphStoreFullContentReferencedEntityStartUnion>;
|
|
55853
56303
|
id: Scalars['ID']['output'];
|
|
55854
56304
|
};
|
|
55855
|
-
export declare type GraphStoreFullContentReferencedEntityStartUnion = AvpDashboard | AppUser | AssetsObject | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
56305
|
+
export declare type GraphStoreFullContentReferencedEntityStartUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
55856
56306
|
export declare type GraphStoreFullIncidentAssociatedPostIncidentReviewConnection = HasPageInfo & HasTotal & {
|
|
55857
56307
|
__typename?: 'GraphStoreFullIncidentAssociatedPostIncidentReviewConnection';
|
|
55858
56308
|
edges: Array<Maybe<GraphStoreFullIncidentAssociatedPostIncidentReviewEdge>>;
|
|
@@ -59737,6 +60187,18 @@ export declare type GraphStoreParentTeamHasChildTeamSortInput = {
|
|
|
59737
60187
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
59738
60188
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
59739
60189
|
};
|
|
60190
|
+
export declare type GraphStorePlanHasPortfolioSortInput = {
|
|
60191
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
60192
|
+
};
|
|
60193
|
+
export declare type GraphStorePlanHasScenarioSortInput = {
|
|
60194
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
60195
|
+
};
|
|
60196
|
+
export declare type GraphStorePlanScenarioHasInvestmentSortInput = {
|
|
60197
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
60198
|
+
};
|
|
60199
|
+
export declare type GraphStorePlanScenarioInvestmentHasInvestmentEntitySortInput = {
|
|
60200
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
60201
|
+
};
|
|
59740
60202
|
export declare type GraphStorePositionAllocatedToFocusAreaSortInput = {
|
|
59741
60203
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
59742
60204
|
};
|
|
@@ -60191,6 +60653,9 @@ export declare type GraphStoreProjectExplicitlyAssociatedRepoSortInput = {
|
|
|
60191
60653
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
60192
60654
|
to_providerAri?: InputMaybe<GraphStoreSortInput>;
|
|
60193
60655
|
};
|
|
60656
|
+
export declare type GraphStoreProjectHasAvpDashboardSortInput = {
|
|
60657
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
60658
|
+
};
|
|
60194
60659
|
export declare type GraphStoreProjectHasIssueConditionalFilterInput = {
|
|
60195
60660
|
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
60196
60661
|
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
@@ -61098,6 +61563,118 @@ export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalTeamInverseE
|
|
|
61098
61563
|
};
|
|
61099
61564
|
export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalTeamInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
61100
61565
|
export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalTeamUnion = ExternalTeam;
|
|
61566
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalTestExecutionConnection = HasPageInfo & {
|
|
61567
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserCreatedExternalTestExecutionConnection';
|
|
61568
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalTestExecutionEdge>>>;
|
|
61569
|
+
pageInfo: PageInfo;
|
|
61570
|
+
};
|
|
61571
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalTestExecutionEdge = {
|
|
61572
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserCreatedExternalTestExecutionEdge';
|
|
61573
|
+
createdAt: Scalars['DateTime']['output'];
|
|
61574
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
61575
|
+
id: Scalars['ID']['output'];
|
|
61576
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
61577
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalTestExecutionUnion>;
|
|
61578
|
+
};
|
|
61579
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalTestExecutionInverseConnection = HasPageInfo & {
|
|
61580
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserCreatedExternalTestExecutionInverseConnection';
|
|
61581
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalTestExecutionInverseEdge>>>;
|
|
61582
|
+
pageInfo: PageInfo;
|
|
61583
|
+
};
|
|
61584
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalTestExecutionInverseEdge = {
|
|
61585
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserCreatedExternalTestExecutionInverseEdge';
|
|
61586
|
+
createdAt: Scalars['DateTime']['output'];
|
|
61587
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
61588
|
+
id: Scalars['ID']['output'];
|
|
61589
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
61590
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalTestExecutionInverseUnion>;
|
|
61591
|
+
};
|
|
61592
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalTestExecutionInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
61593
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalTestExecutionUnion = ExternalTestExecution;
|
|
61594
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalTestPlanConnection = HasPageInfo & {
|
|
61595
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserCreatedExternalTestPlanConnection';
|
|
61596
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalTestPlanEdge>>>;
|
|
61597
|
+
pageInfo: PageInfo;
|
|
61598
|
+
};
|
|
61599
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalTestPlanEdge = {
|
|
61600
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserCreatedExternalTestPlanEdge';
|
|
61601
|
+
createdAt: Scalars['DateTime']['output'];
|
|
61602
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
61603
|
+
id: Scalars['ID']['output'];
|
|
61604
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
61605
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalTestPlanUnion>;
|
|
61606
|
+
};
|
|
61607
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalTestPlanInverseConnection = HasPageInfo & {
|
|
61608
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserCreatedExternalTestPlanInverseConnection';
|
|
61609
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalTestPlanInverseEdge>>>;
|
|
61610
|
+
pageInfo: PageInfo;
|
|
61611
|
+
};
|
|
61612
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalTestPlanInverseEdge = {
|
|
61613
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserCreatedExternalTestPlanInverseEdge';
|
|
61614
|
+
createdAt: Scalars['DateTime']['output'];
|
|
61615
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
61616
|
+
id: Scalars['ID']['output'];
|
|
61617
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
61618
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalTestPlanInverseUnion>;
|
|
61619
|
+
};
|
|
61620
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalTestPlanInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
61621
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalTestPlanUnion = ExternalTestPlan;
|
|
61622
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalTestRunConnection = HasPageInfo & {
|
|
61623
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserCreatedExternalTestRunConnection';
|
|
61624
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalTestRunEdge>>>;
|
|
61625
|
+
pageInfo: PageInfo;
|
|
61626
|
+
};
|
|
61627
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalTestRunEdge = {
|
|
61628
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserCreatedExternalTestRunEdge';
|
|
61629
|
+
createdAt: Scalars['DateTime']['output'];
|
|
61630
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
61631
|
+
id: Scalars['ID']['output'];
|
|
61632
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
61633
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalTestRunUnion>;
|
|
61634
|
+
};
|
|
61635
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalTestRunInverseConnection = HasPageInfo & {
|
|
61636
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserCreatedExternalTestRunInverseConnection';
|
|
61637
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalTestRunInverseEdge>>>;
|
|
61638
|
+
pageInfo: PageInfo;
|
|
61639
|
+
};
|
|
61640
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalTestRunInverseEdge = {
|
|
61641
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserCreatedExternalTestRunInverseEdge';
|
|
61642
|
+
createdAt: Scalars['DateTime']['output'];
|
|
61643
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
61644
|
+
id: Scalars['ID']['output'];
|
|
61645
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
61646
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalTestRunInverseUnion>;
|
|
61647
|
+
};
|
|
61648
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalTestRunInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
61649
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalTestRunUnion = ExternalTestRun;
|
|
61650
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalTestStatusConnection = HasPageInfo & {
|
|
61651
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserCreatedExternalTestStatusConnection';
|
|
61652
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalTestStatusEdge>>>;
|
|
61653
|
+
pageInfo: PageInfo;
|
|
61654
|
+
};
|
|
61655
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalTestStatusEdge = {
|
|
61656
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserCreatedExternalTestStatusEdge';
|
|
61657
|
+
createdAt: Scalars['DateTime']['output'];
|
|
61658
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
61659
|
+
id: Scalars['ID']['output'];
|
|
61660
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
61661
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalTestStatusUnion>;
|
|
61662
|
+
};
|
|
61663
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalTestStatusInverseConnection = HasPageInfo & {
|
|
61664
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserCreatedExternalTestStatusInverseConnection';
|
|
61665
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalTestStatusInverseEdge>>>;
|
|
61666
|
+
pageInfo: PageInfo;
|
|
61667
|
+
};
|
|
61668
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalTestStatusInverseEdge = {
|
|
61669
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserCreatedExternalTestStatusInverseEdge';
|
|
61670
|
+
createdAt: Scalars['DateTime']['output'];
|
|
61671
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
61672
|
+
id: Scalars['ID']['output'];
|
|
61673
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
61674
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalTestStatusInverseUnion>;
|
|
61675
|
+
};
|
|
61676
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalTestStatusInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
61677
|
+
export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalTestStatusUnion = ExternalTestStatus;
|
|
61101
61678
|
export declare type GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityConnection = HasPageInfo & HasTotal & {
|
|
61102
61679
|
__typename?: 'GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityConnection';
|
|
61103
61680
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityEdge>>>;
|
|
@@ -61270,6 +61847,118 @@ export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalTeamInverseEdge
|
|
|
61270
61847
|
};
|
|
61271
61848
|
export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalTeamInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
61272
61849
|
export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalTeamUnion = ExternalTeam;
|
|
61850
|
+
export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalTestExecutionConnection = HasPageInfo & {
|
|
61851
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserOwnsExternalTestExecutionConnection';
|
|
61852
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestExecutionEdge>>>;
|
|
61853
|
+
pageInfo: PageInfo;
|
|
61854
|
+
};
|
|
61855
|
+
export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalTestExecutionEdge = {
|
|
61856
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserOwnsExternalTestExecutionEdge';
|
|
61857
|
+
createdAt: Scalars['DateTime']['output'];
|
|
61858
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
61859
|
+
id: Scalars['ID']['output'];
|
|
61860
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
61861
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestExecutionUnion>;
|
|
61862
|
+
};
|
|
61863
|
+
export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalTestExecutionInverseConnection = HasPageInfo & {
|
|
61864
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserOwnsExternalTestExecutionInverseConnection';
|
|
61865
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestExecutionInverseEdge>>>;
|
|
61866
|
+
pageInfo: PageInfo;
|
|
61867
|
+
};
|
|
61868
|
+
export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalTestExecutionInverseEdge = {
|
|
61869
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserOwnsExternalTestExecutionInverseEdge';
|
|
61870
|
+
createdAt: Scalars['DateTime']['output'];
|
|
61871
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
61872
|
+
id: Scalars['ID']['output'];
|
|
61873
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
61874
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestExecutionInverseUnion>;
|
|
61875
|
+
};
|
|
61876
|
+
export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalTestExecutionInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
61877
|
+
export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalTestExecutionUnion = ExternalTestExecution;
|
|
61878
|
+
export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalTestPlanConnection = HasPageInfo & {
|
|
61879
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserOwnsExternalTestPlanConnection';
|
|
61880
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestPlanEdge>>>;
|
|
61881
|
+
pageInfo: PageInfo;
|
|
61882
|
+
};
|
|
61883
|
+
export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalTestPlanEdge = {
|
|
61884
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserOwnsExternalTestPlanEdge';
|
|
61885
|
+
createdAt: Scalars['DateTime']['output'];
|
|
61886
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
61887
|
+
id: Scalars['ID']['output'];
|
|
61888
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
61889
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestPlanUnion>;
|
|
61890
|
+
};
|
|
61891
|
+
export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalTestPlanInverseConnection = HasPageInfo & {
|
|
61892
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserOwnsExternalTestPlanInverseConnection';
|
|
61893
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestPlanInverseEdge>>>;
|
|
61894
|
+
pageInfo: PageInfo;
|
|
61895
|
+
};
|
|
61896
|
+
export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalTestPlanInverseEdge = {
|
|
61897
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserOwnsExternalTestPlanInverseEdge';
|
|
61898
|
+
createdAt: Scalars['DateTime']['output'];
|
|
61899
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
61900
|
+
id: Scalars['ID']['output'];
|
|
61901
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
61902
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestPlanInverseUnion>;
|
|
61903
|
+
};
|
|
61904
|
+
export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalTestPlanInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
61905
|
+
export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalTestPlanUnion = ExternalTestPlan;
|
|
61906
|
+
export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalTestRunConnection = HasPageInfo & {
|
|
61907
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserOwnsExternalTestRunConnection';
|
|
61908
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestRunEdge>>>;
|
|
61909
|
+
pageInfo: PageInfo;
|
|
61910
|
+
};
|
|
61911
|
+
export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalTestRunEdge = {
|
|
61912
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserOwnsExternalTestRunEdge';
|
|
61913
|
+
createdAt: Scalars['DateTime']['output'];
|
|
61914
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
61915
|
+
id: Scalars['ID']['output'];
|
|
61916
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
61917
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestRunUnion>;
|
|
61918
|
+
};
|
|
61919
|
+
export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalTestRunInverseConnection = HasPageInfo & {
|
|
61920
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserOwnsExternalTestRunInverseConnection';
|
|
61921
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestRunInverseEdge>>>;
|
|
61922
|
+
pageInfo: PageInfo;
|
|
61923
|
+
};
|
|
61924
|
+
export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalTestRunInverseEdge = {
|
|
61925
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserOwnsExternalTestRunInverseEdge';
|
|
61926
|
+
createdAt: Scalars['DateTime']['output'];
|
|
61927
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
61928
|
+
id: Scalars['ID']['output'];
|
|
61929
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
61930
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestRunInverseUnion>;
|
|
61931
|
+
};
|
|
61932
|
+
export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalTestRunInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
61933
|
+
export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalTestRunUnion = ExternalTestRun;
|
|
61934
|
+
export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusConnection = HasPageInfo & {
|
|
61935
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusConnection';
|
|
61936
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusEdge>>>;
|
|
61937
|
+
pageInfo: PageInfo;
|
|
61938
|
+
};
|
|
61939
|
+
export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusEdge = {
|
|
61940
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusEdge';
|
|
61941
|
+
createdAt: Scalars['DateTime']['output'];
|
|
61942
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
61943
|
+
id: Scalars['ID']['output'];
|
|
61944
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
61945
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusUnion>;
|
|
61946
|
+
};
|
|
61947
|
+
export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusInverseConnection = HasPageInfo & {
|
|
61948
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusInverseConnection';
|
|
61949
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusInverseEdge>>>;
|
|
61950
|
+
pageInfo: PageInfo;
|
|
61951
|
+
};
|
|
61952
|
+
export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusInverseEdge = {
|
|
61953
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusInverseEdge';
|
|
61954
|
+
createdAt: Scalars['DateTime']['output'];
|
|
61955
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
61956
|
+
id: Scalars['ID']['output'];
|
|
61957
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
61958
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusInverseUnion>;
|
|
61959
|
+
};
|
|
61960
|
+
export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
61961
|
+
export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalTestStatusUnion = ExternalTestStatus;
|
|
61273
61962
|
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerContactConnection = HasPageInfo & {
|
|
61274
61963
|
__typename?: 'GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerContactConnection';
|
|
61275
61964
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerContactEdge>>>;
|
|
@@ -61354,6 +62043,118 @@ export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalTeamInverseE
|
|
|
61354
62043
|
};
|
|
61355
62044
|
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalTeamInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
61356
62045
|
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalTeamUnion = ExternalTeam;
|
|
62046
|
+
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalTestExecutionConnection = HasPageInfo & {
|
|
62047
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserUpdatedExternalTestExecutionConnection';
|
|
62048
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalTestExecutionEdge>>>;
|
|
62049
|
+
pageInfo: PageInfo;
|
|
62050
|
+
};
|
|
62051
|
+
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalTestExecutionEdge = {
|
|
62052
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserUpdatedExternalTestExecutionEdge';
|
|
62053
|
+
createdAt: Scalars['DateTime']['output'];
|
|
62054
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
62055
|
+
id: Scalars['ID']['output'];
|
|
62056
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
62057
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalTestExecutionUnion>;
|
|
62058
|
+
};
|
|
62059
|
+
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalTestExecutionInverseConnection = HasPageInfo & {
|
|
62060
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserUpdatedExternalTestExecutionInverseConnection';
|
|
62061
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalTestExecutionInverseEdge>>>;
|
|
62062
|
+
pageInfo: PageInfo;
|
|
62063
|
+
};
|
|
62064
|
+
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalTestExecutionInverseEdge = {
|
|
62065
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserUpdatedExternalTestExecutionInverseEdge';
|
|
62066
|
+
createdAt: Scalars['DateTime']['output'];
|
|
62067
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
62068
|
+
id: Scalars['ID']['output'];
|
|
62069
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
62070
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalTestExecutionInverseUnion>;
|
|
62071
|
+
};
|
|
62072
|
+
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalTestExecutionInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
62073
|
+
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalTestExecutionUnion = ExternalTestExecution;
|
|
62074
|
+
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalTestPlanConnection = HasPageInfo & {
|
|
62075
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserUpdatedExternalTestPlanConnection';
|
|
62076
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalTestPlanEdge>>>;
|
|
62077
|
+
pageInfo: PageInfo;
|
|
62078
|
+
};
|
|
62079
|
+
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalTestPlanEdge = {
|
|
62080
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserUpdatedExternalTestPlanEdge';
|
|
62081
|
+
createdAt: Scalars['DateTime']['output'];
|
|
62082
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
62083
|
+
id: Scalars['ID']['output'];
|
|
62084
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
62085
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalTestPlanUnion>;
|
|
62086
|
+
};
|
|
62087
|
+
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalTestPlanInverseConnection = HasPageInfo & {
|
|
62088
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserUpdatedExternalTestPlanInverseConnection';
|
|
62089
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalTestPlanInverseEdge>>>;
|
|
62090
|
+
pageInfo: PageInfo;
|
|
62091
|
+
};
|
|
62092
|
+
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalTestPlanInverseEdge = {
|
|
62093
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserUpdatedExternalTestPlanInverseEdge';
|
|
62094
|
+
createdAt: Scalars['DateTime']['output'];
|
|
62095
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
62096
|
+
id: Scalars['ID']['output'];
|
|
62097
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
62098
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalTestPlanInverseUnion>;
|
|
62099
|
+
};
|
|
62100
|
+
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalTestPlanInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
62101
|
+
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalTestPlanUnion = ExternalTestPlan;
|
|
62102
|
+
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalTestRunConnection = HasPageInfo & {
|
|
62103
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserUpdatedExternalTestRunConnection';
|
|
62104
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalTestRunEdge>>>;
|
|
62105
|
+
pageInfo: PageInfo;
|
|
62106
|
+
};
|
|
62107
|
+
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalTestRunEdge = {
|
|
62108
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserUpdatedExternalTestRunEdge';
|
|
62109
|
+
createdAt: Scalars['DateTime']['output'];
|
|
62110
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
62111
|
+
id: Scalars['ID']['output'];
|
|
62112
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
62113
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalTestRunUnion>;
|
|
62114
|
+
};
|
|
62115
|
+
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalTestRunInverseConnection = HasPageInfo & {
|
|
62116
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserUpdatedExternalTestRunInverseConnection';
|
|
62117
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalTestRunInverseEdge>>>;
|
|
62118
|
+
pageInfo: PageInfo;
|
|
62119
|
+
};
|
|
62120
|
+
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalTestRunInverseEdge = {
|
|
62121
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserUpdatedExternalTestRunInverseEdge';
|
|
62122
|
+
createdAt: Scalars['DateTime']['output'];
|
|
62123
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
62124
|
+
id: Scalars['ID']['output'];
|
|
62125
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
62126
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalTestRunInverseUnion>;
|
|
62127
|
+
};
|
|
62128
|
+
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalTestRunInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
62129
|
+
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalTestRunUnion = ExternalTestRun;
|
|
62130
|
+
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalTestStatusConnection = HasPageInfo & {
|
|
62131
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserUpdatedExternalTestStatusConnection';
|
|
62132
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalTestStatusEdge>>>;
|
|
62133
|
+
pageInfo: PageInfo;
|
|
62134
|
+
};
|
|
62135
|
+
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalTestStatusEdge = {
|
|
62136
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserUpdatedExternalTestStatusEdge';
|
|
62137
|
+
createdAt: Scalars['DateTime']['output'];
|
|
62138
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
62139
|
+
id: Scalars['ID']['output'];
|
|
62140
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
62141
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalTestStatusUnion>;
|
|
62142
|
+
};
|
|
62143
|
+
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalTestStatusInverseConnection = HasPageInfo & {
|
|
62144
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserUpdatedExternalTestStatusInverseConnection';
|
|
62145
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalTestStatusInverseEdge>>>;
|
|
62146
|
+
pageInfo: PageInfo;
|
|
62147
|
+
};
|
|
62148
|
+
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalTestStatusInverseEdge = {
|
|
62149
|
+
__typename?: 'GraphStoreSimplifiedAtlassianUserUpdatedExternalTestStatusInverseEdge';
|
|
62150
|
+
createdAt: Scalars['DateTime']['output'];
|
|
62151
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
62152
|
+
id: Scalars['ID']['output'];
|
|
62153
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
62154
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalTestStatusInverseUnion>;
|
|
62155
|
+
};
|
|
62156
|
+
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalTestStatusInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
62157
|
+
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalTestStatusUnion = ExternalTestStatus;
|
|
61357
62158
|
export declare type GraphStoreSimplifiedBoardBelongsToProjectConnection = HasPageInfo & {
|
|
61358
62159
|
__typename?: 'GraphStoreSimplifiedBoardBelongsToProjectConnection';
|
|
61359
62160
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedBoardBelongsToProjectEdge>>>;
|
|
@@ -62028,8 +62829,8 @@ export declare type GraphStoreSimplifiedContentReferencedEntityInverseEdge = {
|
|
|
62028
62829
|
lastUpdated: Scalars['DateTime']['output'];
|
|
62029
62830
|
node?: Maybe<GraphStoreSimplifiedContentReferencedEntityInverseUnion>;
|
|
62030
62831
|
};
|
|
62031
|
-
export declare type GraphStoreSimplifiedContentReferencedEntityInverseUnion = AvpDashboard | AppUser | AssetsObject | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
62032
|
-
export declare type GraphStoreSimplifiedContentReferencedEntityUnion = AvpDashboard | AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
62832
|
+
export declare type GraphStoreSimplifiedContentReferencedEntityInverseUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
62833
|
+
export declare type GraphStoreSimplifiedContentReferencedEntityUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
62033
62834
|
export declare type GraphStoreSimplifiedConversationHasMessageConnection = HasPageInfo & {
|
|
62034
62835
|
__typename?: 'GraphStoreSimplifiedConversationHasMessageConnection';
|
|
62035
62836
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConversationHasMessageEdge>>>;
|
|
@@ -62058,6 +62859,34 @@ export declare type GraphStoreSimplifiedConversationHasMessageInverseEdge = {
|
|
|
62058
62859
|
};
|
|
62059
62860
|
export declare type GraphStoreSimplifiedConversationHasMessageInverseUnion = ExternalConversation;
|
|
62060
62861
|
export declare type GraphStoreSimplifiedConversationHasMessageUnion = ExternalMessage;
|
|
62862
|
+
export declare type GraphStoreSimplifiedCsmCustomerHasJiraWorkItemConnection = HasPageInfo & {
|
|
62863
|
+
__typename?: 'GraphStoreSimplifiedCsmCustomerHasJiraWorkItemConnection';
|
|
62864
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedCsmCustomerHasJiraWorkItemEdge>>>;
|
|
62865
|
+
pageInfo: PageInfo;
|
|
62866
|
+
};
|
|
62867
|
+
export declare type GraphStoreSimplifiedCsmCustomerHasJiraWorkItemEdge = {
|
|
62868
|
+
__typename?: 'GraphStoreSimplifiedCsmCustomerHasJiraWorkItemEdge';
|
|
62869
|
+
createdAt: Scalars['DateTime']['output'];
|
|
62870
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
62871
|
+
id: Scalars['ID']['output'];
|
|
62872
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
62873
|
+
node?: Maybe<GraphStoreSimplifiedCsmCustomerHasJiraWorkItemUnion>;
|
|
62874
|
+
};
|
|
62875
|
+
export declare type GraphStoreSimplifiedCsmCustomerHasJiraWorkItemInverseConnection = HasPageInfo & {
|
|
62876
|
+
__typename?: 'GraphStoreSimplifiedCsmCustomerHasJiraWorkItemInverseConnection';
|
|
62877
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedCsmCustomerHasJiraWorkItemInverseEdge>>>;
|
|
62878
|
+
pageInfo: PageInfo;
|
|
62879
|
+
};
|
|
62880
|
+
export declare type GraphStoreSimplifiedCsmCustomerHasJiraWorkItemInverseEdge = {
|
|
62881
|
+
__typename?: 'GraphStoreSimplifiedCsmCustomerHasJiraWorkItemInverseEdge';
|
|
62882
|
+
createdAt: Scalars['DateTime']['output'];
|
|
62883
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
62884
|
+
id: Scalars['ID']['output'];
|
|
62885
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
62886
|
+
node?: Maybe<GraphStoreSimplifiedCsmCustomerHasJiraWorkItemInverseUnion>;
|
|
62887
|
+
};
|
|
62888
|
+
export declare type GraphStoreSimplifiedCsmCustomerHasJiraWorkItemInverseUnion = CustomerServiceCsmCustomer;
|
|
62889
|
+
export declare type GraphStoreSimplifiedCsmCustomerHasJiraWorkItemUnion = JiraIssue;
|
|
62061
62890
|
export declare type GraphStoreSimplifiedCustomerAssociatedIssueConnection = HasPageInfo & {
|
|
62062
62891
|
__typename?: 'GraphStoreSimplifiedCustomerAssociatedIssueConnection';
|
|
62063
62892
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedCustomerAssociatedIssueEdge>>>;
|
|
@@ -64754,6 +65583,118 @@ export declare type GraphStoreSimplifiedParentTeamHasChildTeamInverseEdge = {
|
|
|
64754
65583
|
};
|
|
64755
65584
|
export declare type GraphStoreSimplifiedParentTeamHasChildTeamInverseUnion = TeamV2;
|
|
64756
65585
|
export declare type GraphStoreSimplifiedParentTeamHasChildTeamUnion = TeamV2;
|
|
65586
|
+
export declare type GraphStoreSimplifiedPlanHasPortfolioConnection = HasPageInfo & {
|
|
65587
|
+
__typename?: 'GraphStoreSimplifiedPlanHasPortfolioConnection';
|
|
65588
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedPlanHasPortfolioEdge>>>;
|
|
65589
|
+
pageInfo: PageInfo;
|
|
65590
|
+
};
|
|
65591
|
+
export declare type GraphStoreSimplifiedPlanHasPortfolioEdge = {
|
|
65592
|
+
__typename?: 'GraphStoreSimplifiedPlanHasPortfolioEdge';
|
|
65593
|
+
createdAt: Scalars['DateTime']['output'];
|
|
65594
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
65595
|
+
id: Scalars['ID']['output'];
|
|
65596
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
65597
|
+
node?: Maybe<GraphStoreSimplifiedPlanHasPortfolioUnion>;
|
|
65598
|
+
};
|
|
65599
|
+
export declare type GraphStoreSimplifiedPlanHasPortfolioInverseConnection = HasPageInfo & {
|
|
65600
|
+
__typename?: 'GraphStoreSimplifiedPlanHasPortfolioInverseConnection';
|
|
65601
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedPlanHasPortfolioInverseEdge>>>;
|
|
65602
|
+
pageInfo: PageInfo;
|
|
65603
|
+
};
|
|
65604
|
+
export declare type GraphStoreSimplifiedPlanHasPortfolioInverseEdge = {
|
|
65605
|
+
__typename?: 'GraphStoreSimplifiedPlanHasPortfolioInverseEdge';
|
|
65606
|
+
createdAt: Scalars['DateTime']['output'];
|
|
65607
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
65608
|
+
id: Scalars['ID']['output'];
|
|
65609
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
65610
|
+
node?: Maybe<GraphStoreSimplifiedPlanHasPortfolioInverseUnion>;
|
|
65611
|
+
};
|
|
65612
|
+
export declare type GraphStoreSimplifiedPlanHasPortfolioInverseUnion = SpfPlan;
|
|
65613
|
+
export declare type GraphStoreSimplifiedPlanHasPortfolioUnion = MercuryFocusArea;
|
|
65614
|
+
export declare type GraphStoreSimplifiedPlanHasScenarioConnection = HasPageInfo & {
|
|
65615
|
+
__typename?: 'GraphStoreSimplifiedPlanHasScenarioConnection';
|
|
65616
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedPlanHasScenarioEdge>>>;
|
|
65617
|
+
pageInfo: PageInfo;
|
|
65618
|
+
};
|
|
65619
|
+
export declare type GraphStoreSimplifiedPlanHasScenarioEdge = {
|
|
65620
|
+
__typename?: 'GraphStoreSimplifiedPlanHasScenarioEdge';
|
|
65621
|
+
createdAt: Scalars['DateTime']['output'];
|
|
65622
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
65623
|
+
id: Scalars['ID']['output'];
|
|
65624
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
65625
|
+
node?: Maybe<GraphStoreSimplifiedPlanHasScenarioUnion>;
|
|
65626
|
+
};
|
|
65627
|
+
export declare type GraphStoreSimplifiedPlanHasScenarioInverseConnection = HasPageInfo & {
|
|
65628
|
+
__typename?: 'GraphStoreSimplifiedPlanHasScenarioInverseConnection';
|
|
65629
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedPlanHasScenarioInverseEdge>>>;
|
|
65630
|
+
pageInfo: PageInfo;
|
|
65631
|
+
};
|
|
65632
|
+
export declare type GraphStoreSimplifiedPlanHasScenarioInverseEdge = {
|
|
65633
|
+
__typename?: 'GraphStoreSimplifiedPlanHasScenarioInverseEdge';
|
|
65634
|
+
createdAt: Scalars['DateTime']['output'];
|
|
65635
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
65636
|
+
id: Scalars['ID']['output'];
|
|
65637
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
65638
|
+
node?: Maybe<GraphStoreSimplifiedPlanHasScenarioInverseUnion>;
|
|
65639
|
+
};
|
|
65640
|
+
export declare type GraphStoreSimplifiedPlanHasScenarioInverseUnion = SpfPlan;
|
|
65641
|
+
export declare type GraphStoreSimplifiedPlanHasScenarioUnion = SpfPlanScenario;
|
|
65642
|
+
export declare type GraphStoreSimplifiedPlanScenarioHasInvestmentConnection = HasPageInfo & {
|
|
65643
|
+
__typename?: 'GraphStoreSimplifiedPlanScenarioHasInvestmentConnection';
|
|
65644
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedPlanScenarioHasInvestmentEdge>>>;
|
|
65645
|
+
pageInfo: PageInfo;
|
|
65646
|
+
};
|
|
65647
|
+
export declare type GraphStoreSimplifiedPlanScenarioHasInvestmentEdge = {
|
|
65648
|
+
__typename?: 'GraphStoreSimplifiedPlanScenarioHasInvestmentEdge';
|
|
65649
|
+
createdAt: Scalars['DateTime']['output'];
|
|
65650
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
65651
|
+
id: Scalars['ID']['output'];
|
|
65652
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
65653
|
+
node?: Maybe<GraphStoreSimplifiedPlanScenarioHasInvestmentUnion>;
|
|
65654
|
+
};
|
|
65655
|
+
export declare type GraphStoreSimplifiedPlanScenarioHasInvestmentInverseConnection = HasPageInfo & {
|
|
65656
|
+
__typename?: 'GraphStoreSimplifiedPlanScenarioHasInvestmentInverseConnection';
|
|
65657
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedPlanScenarioHasInvestmentInverseEdge>>>;
|
|
65658
|
+
pageInfo: PageInfo;
|
|
65659
|
+
};
|
|
65660
|
+
export declare type GraphStoreSimplifiedPlanScenarioHasInvestmentInverseEdge = {
|
|
65661
|
+
__typename?: 'GraphStoreSimplifiedPlanScenarioHasInvestmentInverseEdge';
|
|
65662
|
+
createdAt: Scalars['DateTime']['output'];
|
|
65663
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
65664
|
+
id: Scalars['ID']['output'];
|
|
65665
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
65666
|
+
node?: Maybe<GraphStoreSimplifiedPlanScenarioHasInvestmentInverseUnion>;
|
|
65667
|
+
};
|
|
65668
|
+
export declare type GraphStoreSimplifiedPlanScenarioHasInvestmentInverseUnion = SpfPlanScenario;
|
|
65669
|
+
export declare type GraphStoreSimplifiedPlanScenarioHasInvestmentUnion = SpfPlanScenarioInvestment;
|
|
65670
|
+
export declare type GraphStoreSimplifiedPlanScenarioInvestmentHasInvestmentEntityConnection = HasPageInfo & {
|
|
65671
|
+
__typename?: 'GraphStoreSimplifiedPlanScenarioInvestmentHasInvestmentEntityConnection';
|
|
65672
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedPlanScenarioInvestmentHasInvestmentEntityEdge>>>;
|
|
65673
|
+
pageInfo: PageInfo;
|
|
65674
|
+
};
|
|
65675
|
+
export declare type GraphStoreSimplifiedPlanScenarioInvestmentHasInvestmentEntityEdge = {
|
|
65676
|
+
__typename?: 'GraphStoreSimplifiedPlanScenarioInvestmentHasInvestmentEntityEdge';
|
|
65677
|
+
createdAt: Scalars['DateTime']['output'];
|
|
65678
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
65679
|
+
id: Scalars['ID']['output'];
|
|
65680
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
65681
|
+
node?: Maybe<GraphStoreSimplifiedPlanScenarioInvestmentHasInvestmentEntityUnion>;
|
|
65682
|
+
};
|
|
65683
|
+
export declare type GraphStoreSimplifiedPlanScenarioInvestmentHasInvestmentEntityInverseConnection = HasPageInfo & {
|
|
65684
|
+
__typename?: 'GraphStoreSimplifiedPlanScenarioInvestmentHasInvestmentEntityInverseConnection';
|
|
65685
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedPlanScenarioInvestmentHasInvestmentEntityInverseEdge>>>;
|
|
65686
|
+
pageInfo: PageInfo;
|
|
65687
|
+
};
|
|
65688
|
+
export declare type GraphStoreSimplifiedPlanScenarioInvestmentHasInvestmentEntityInverseEdge = {
|
|
65689
|
+
__typename?: 'GraphStoreSimplifiedPlanScenarioInvestmentHasInvestmentEntityInverseEdge';
|
|
65690
|
+
createdAt: Scalars['DateTime']['output'];
|
|
65691
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
65692
|
+
id: Scalars['ID']['output'];
|
|
65693
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
65694
|
+
node?: Maybe<GraphStoreSimplifiedPlanScenarioInvestmentHasInvestmentEntityInverseUnion>;
|
|
65695
|
+
};
|
|
65696
|
+
export declare type GraphStoreSimplifiedPlanScenarioInvestmentHasInvestmentEntityInverseUnion = SpfPlanScenarioInvestment;
|
|
65697
|
+
export declare type GraphStoreSimplifiedPlanScenarioInvestmentHasInvestmentEntityUnion = JiraAlignAggProject | MercuryFocusArea;
|
|
64757
65698
|
export declare type GraphStoreSimplifiedPositionAllocatedToFocusAreaConnection = HasPageInfo & {
|
|
64758
65699
|
__typename?: 'GraphStoreSimplifiedPositionAllocatedToFocusAreaConnection';
|
|
64759
65700
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedPositionAllocatedToFocusAreaEdge>>>;
|
|
@@ -65506,6 +66447,34 @@ export declare type GraphStoreSimplifiedProjectExplicitlyAssociatedRepoInverseEd
|
|
|
65506
66447
|
};
|
|
65507
66448
|
export declare type GraphStoreSimplifiedProjectExplicitlyAssociatedRepoInverseUnion = JiraProject;
|
|
65508
66449
|
export declare type GraphStoreSimplifiedProjectExplicitlyAssociatedRepoUnion = DevOpsRepository | ExternalRepository;
|
|
66450
|
+
export declare type GraphStoreSimplifiedProjectHasAvpDashboardConnection = HasPageInfo & {
|
|
66451
|
+
__typename?: 'GraphStoreSimplifiedProjectHasAvpDashboardConnection';
|
|
66452
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectHasAvpDashboardEdge>>>;
|
|
66453
|
+
pageInfo: PageInfo;
|
|
66454
|
+
};
|
|
66455
|
+
export declare type GraphStoreSimplifiedProjectHasAvpDashboardEdge = {
|
|
66456
|
+
__typename?: 'GraphStoreSimplifiedProjectHasAvpDashboardEdge';
|
|
66457
|
+
createdAt: Scalars['DateTime']['output'];
|
|
66458
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
66459
|
+
id: Scalars['ID']['output'];
|
|
66460
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
66461
|
+
node?: Maybe<GraphStoreSimplifiedProjectHasAvpDashboardUnion>;
|
|
66462
|
+
};
|
|
66463
|
+
export declare type GraphStoreSimplifiedProjectHasAvpDashboardInverseConnection = HasPageInfo & {
|
|
66464
|
+
__typename?: 'GraphStoreSimplifiedProjectHasAvpDashboardInverseConnection';
|
|
66465
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectHasAvpDashboardInverseEdge>>>;
|
|
66466
|
+
pageInfo: PageInfo;
|
|
66467
|
+
};
|
|
66468
|
+
export declare type GraphStoreSimplifiedProjectHasAvpDashboardInverseEdge = {
|
|
66469
|
+
__typename?: 'GraphStoreSimplifiedProjectHasAvpDashboardInverseEdge';
|
|
66470
|
+
createdAt: Scalars['DateTime']['output'];
|
|
66471
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
66472
|
+
id: Scalars['ID']['output'];
|
|
66473
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
66474
|
+
node?: Maybe<GraphStoreSimplifiedProjectHasAvpDashboardInverseUnion>;
|
|
66475
|
+
};
|
|
66476
|
+
export declare type GraphStoreSimplifiedProjectHasAvpDashboardInverseUnion = JiraProject;
|
|
66477
|
+
export declare type GraphStoreSimplifiedProjectHasAvpDashboardUnion = AvpDashboard;
|
|
65509
66478
|
export declare type GraphStoreSimplifiedProjectHasIssueConnection = HasPageInfo & HasTotal & {
|
|
65510
66479
|
__typename?: 'GraphStoreSimplifiedProjectHasIssueConnection';
|
|
65511
66480
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectHasIssueEdge>>>;
|
|
@@ -66748,6 +67717,34 @@ export declare type GraphStoreSimplifiedTopicHasRelatedEntityInverseEdge = {
|
|
|
66748
67717
|
};
|
|
66749
67718
|
export declare type GraphStoreSimplifiedTopicHasRelatedEntityInverseUnion = KnowledgeDiscoveryTopicByAri;
|
|
66750
67719
|
export declare type GraphStoreSimplifiedTopicHasRelatedEntityUnion = AppUser | AtlassianAccountUser | ConfluenceBlogPost | ConfluencePage | CustomerUser;
|
|
67720
|
+
export declare type GraphStoreSimplifiedUserApprovesPlanConnection = HasPageInfo & {
|
|
67721
|
+
__typename?: 'GraphStoreSimplifiedUserApprovesPlanConnection';
|
|
67722
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserApprovesPlanEdge>>>;
|
|
67723
|
+
pageInfo: PageInfo;
|
|
67724
|
+
};
|
|
67725
|
+
export declare type GraphStoreSimplifiedUserApprovesPlanEdge = {
|
|
67726
|
+
__typename?: 'GraphStoreSimplifiedUserApprovesPlanEdge';
|
|
67727
|
+
createdAt: Scalars['DateTime']['output'];
|
|
67728
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
67729
|
+
id: Scalars['ID']['output'];
|
|
67730
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
67731
|
+
node?: Maybe<GraphStoreSimplifiedUserApprovesPlanUnion>;
|
|
67732
|
+
};
|
|
67733
|
+
export declare type GraphStoreSimplifiedUserApprovesPlanInverseConnection = HasPageInfo & {
|
|
67734
|
+
__typename?: 'GraphStoreSimplifiedUserApprovesPlanInverseConnection';
|
|
67735
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserApprovesPlanInverseEdge>>>;
|
|
67736
|
+
pageInfo: PageInfo;
|
|
67737
|
+
};
|
|
67738
|
+
export declare type GraphStoreSimplifiedUserApprovesPlanInverseEdge = {
|
|
67739
|
+
__typename?: 'GraphStoreSimplifiedUserApprovesPlanInverseEdge';
|
|
67740
|
+
createdAt: Scalars['DateTime']['output'];
|
|
67741
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
67742
|
+
id: Scalars['ID']['output'];
|
|
67743
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
67744
|
+
node?: Maybe<GraphStoreSimplifiedUserApprovesPlanInverseUnion>;
|
|
67745
|
+
};
|
|
67746
|
+
export declare type GraphStoreSimplifiedUserApprovesPlanInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
67747
|
+
export declare type GraphStoreSimplifiedUserApprovesPlanUnion = SpfPlan;
|
|
66751
67748
|
export declare type GraphStoreSimplifiedUserAssignedIncidentConnection = HasPageInfo & {
|
|
66752
67749
|
__typename?: 'GraphStoreSimplifiedUserAssignedIncidentConnection';
|
|
66753
67750
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserAssignedIncidentEdge>>>;
|
|
@@ -69056,6 +70053,34 @@ export declare type GraphStoreSimplifiedUserOwnsPageInverseEdge = {
|
|
|
69056
70053
|
};
|
|
69057
70054
|
export declare type GraphStoreSimplifiedUserOwnsPageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
69058
70055
|
export declare type GraphStoreSimplifiedUserOwnsPageUnion = ConfluencePage;
|
|
70056
|
+
export declare type GraphStoreSimplifiedUserOwnsPlanConnection = HasPageInfo & {
|
|
70057
|
+
__typename?: 'GraphStoreSimplifiedUserOwnsPlanConnection';
|
|
70058
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnsPlanEdge>>>;
|
|
70059
|
+
pageInfo: PageInfo;
|
|
70060
|
+
};
|
|
70061
|
+
export declare type GraphStoreSimplifiedUserOwnsPlanEdge = {
|
|
70062
|
+
__typename?: 'GraphStoreSimplifiedUserOwnsPlanEdge';
|
|
70063
|
+
createdAt: Scalars['DateTime']['output'];
|
|
70064
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
70065
|
+
id: Scalars['ID']['output'];
|
|
70066
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
70067
|
+
node?: Maybe<GraphStoreSimplifiedUserOwnsPlanUnion>;
|
|
70068
|
+
};
|
|
70069
|
+
export declare type GraphStoreSimplifiedUserOwnsPlanInverseConnection = HasPageInfo & {
|
|
70070
|
+
__typename?: 'GraphStoreSimplifiedUserOwnsPlanInverseConnection';
|
|
70071
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnsPlanInverseEdge>>>;
|
|
70072
|
+
pageInfo: PageInfo;
|
|
70073
|
+
};
|
|
70074
|
+
export declare type GraphStoreSimplifiedUserOwnsPlanInverseEdge = {
|
|
70075
|
+
__typename?: 'GraphStoreSimplifiedUserOwnsPlanInverseEdge';
|
|
70076
|
+
createdAt: Scalars['DateTime']['output'];
|
|
70077
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
70078
|
+
id: Scalars['ID']['output'];
|
|
70079
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
70080
|
+
node?: Maybe<GraphStoreSimplifiedUserOwnsPlanInverseUnion>;
|
|
70081
|
+
};
|
|
70082
|
+
export declare type GraphStoreSimplifiedUserOwnsPlanInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
70083
|
+
export declare type GraphStoreSimplifiedUserOwnsPlanUnion = SpfPlan;
|
|
69059
70084
|
export declare type GraphStoreSimplifiedUserReactedToIssueCommentConnection = HasPageInfo & {
|
|
69060
70085
|
__typename?: 'GraphStoreSimplifiedUserReactedToIssueCommentConnection';
|
|
69061
70086
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserReactedToIssueCommentEdge>>>;
|
|
@@ -70930,6 +71955,9 @@ export declare type GraphStoreThirdPartyToGraphRemoteLinkSortInput = {
|
|
|
70930
71955
|
export declare type GraphStoreTopicHasRelatedEntitySortInput = {
|
|
70931
71956
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
70932
71957
|
};
|
|
71958
|
+
export declare type GraphStoreUserApprovesPlanSortInput = {
|
|
71959
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71960
|
+
};
|
|
70933
71961
|
export declare type GraphStoreUserAssignedIncidentSortInput = {
|
|
70934
71962
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
70935
71963
|
};
|
|
@@ -71277,6 +72305,9 @@ export declare type GraphStoreUserOwnsFocusAreaSortInput = {
|
|
|
71277
72305
|
export declare type GraphStoreUserOwnsPageSortInput = {
|
|
71278
72306
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71279
72307
|
};
|
|
72308
|
+
export declare type GraphStoreUserOwnsPlanSortInput = {
|
|
72309
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
72310
|
+
};
|
|
71280
72311
|
export declare type GraphStoreUserReactedToIssueCommentSortInput = {
|
|
71281
72312
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71282
72313
|
};
|
|
@@ -71435,6 +72466,8 @@ export declare type GraphStoreV2 = {
|
|
|
71435
72466
|
atlassianTeamReceivedFocusAskInverse?: Maybe<GraphStoreV2SimplifiedAtlassianTeamReceivedFocusAskInverseConnection>;
|
|
71436
72467
|
atlassianTeamSubmittedFocusAsk?: Maybe<GraphStoreV2SimplifiedAtlassianTeamSubmittedFocusAskConnection>;
|
|
71437
72468
|
atlassianTeamSubmittedFocusAskInverse?: Maybe<GraphStoreV2SimplifiedAtlassianTeamSubmittedFocusAskInverseConnection>;
|
|
72469
|
+
atlassianUserApprovesFocusStrategicPlan?: Maybe<GraphStoreV2SimplifiedAtlassianUserApprovesFocusStrategicPlanConnection>;
|
|
72470
|
+
atlassianUserApprovesFocusStrategicPlanInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserApprovesFocusStrategicPlanInverseConnection>;
|
|
71438
72471
|
atlassianUserAssignedJiraWorkItem?: Maybe<GraphStoreV2SimplifiedAtlassianUserAssignedJiraWorkItemConnection>;
|
|
71439
72472
|
atlassianUserAssignedJiraWorkItemInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserAssignedJiraWorkItemInverseConnection>;
|
|
71440
72473
|
atlassianUserAssignedJsmIncident?: Maybe<GraphStoreV2SimplifiedAtlassianUserAssignedJsmIncidentConnection>;
|
|
@@ -71565,6 +72598,8 @@ export declare type GraphStoreV2 = {
|
|
|
71565
72598
|
atlassianUserOwnsFocusAskInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsFocusAskInverseConnection>;
|
|
71566
72599
|
atlassianUserOwnsFocusFocusArea?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsFocusFocusAreaConnection>;
|
|
71567
72600
|
atlassianUserOwnsFocusFocusAreaInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsFocusFocusAreaInverseConnection>;
|
|
72601
|
+
atlassianUserOwnsFocusStrategicPlan?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsFocusStrategicPlanConnection>;
|
|
72602
|
+
atlassianUserOwnsFocusStrategicPlanInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsFocusStrategicPlanInverseConnection>;
|
|
71568
72603
|
atlassianUserReactedToJiraWorkItemComment?: Maybe<GraphStoreV2SimplifiedAtlassianUserReactedToJiraWorkItemCommentConnection>;
|
|
71569
72604
|
atlassianUserReactedToJiraWorkItemCommentInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserReactedToJiraWorkItemCommentInverseConnection>;
|
|
71570
72605
|
atlassianUserReactedToLoomVideo?: Maybe<GraphStoreV2SimplifiedAtlassianUserReactedToLoomVideoConnection>;
|
|
@@ -71661,6 +72696,8 @@ export declare type GraphStoreV2 = {
|
|
|
71661
72696
|
confluenceSpaceLinksJiraSpaceInverse?: Maybe<GraphStoreV2SimplifiedConfluenceSpaceLinksJiraSpaceInverseConnection>;
|
|
71662
72697
|
contentEntityLinksEntity?: Maybe<GraphStoreV2SimplifiedContentEntityLinksEntityConnection>;
|
|
71663
72698
|
contentEntityLinksEntityInverse?: Maybe<GraphStoreV2SimplifiedContentEntityLinksEntityInverseConnection>;
|
|
72699
|
+
csmCustomerLinksJiraWorkItem?: Maybe<GraphStoreV2SimplifiedCsmCustomerLinksJiraWorkItemConnection>;
|
|
72700
|
+
csmCustomerLinksJiraWorkItemInverse?: Maybe<GraphStoreV2SimplifiedCsmCustomerLinksJiraWorkItemInverseConnection>;
|
|
71664
72701
|
customer360CustomerHasExternalConversation?: Maybe<GraphStoreV2SimplifiedCustomer360CustomerHasExternalConversationConnection>;
|
|
71665
72702
|
customer360CustomerHasExternalConversationInverse?: Maybe<GraphStoreV2SimplifiedCustomer360CustomerHasExternalConversationInverseConnection>;
|
|
71666
72703
|
customer360CustomerLinksJiraWorkItem?: Maybe<GraphStoreV2SimplifiedCustomer360CustomerLinksJiraWorkItemConnection>;
|
|
@@ -71787,7 +72824,15 @@ export declare type GraphStoreV2 = {
|
|
|
71787
72824
|
externalUserCreatedExternalTeam?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalTeamConnection>;
|
|
71788
72825
|
externalUserCreatedExternalTeamInverse?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalTeamInverseConnection>;
|
|
71789
72826
|
externalUserCreatedExternalTest?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalTestConnection>;
|
|
72827
|
+
externalUserCreatedExternalTestExecution?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalTestExecutionConnection>;
|
|
72828
|
+
externalUserCreatedExternalTestExecutionInverse?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalTestExecutionInverseConnection>;
|
|
71790
72829
|
externalUserCreatedExternalTestInverse?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalTestInverseConnection>;
|
|
72830
|
+
externalUserCreatedExternalTestPlan?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalTestPlanConnection>;
|
|
72831
|
+
externalUserCreatedExternalTestPlanInverse?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalTestPlanInverseConnection>;
|
|
72832
|
+
externalUserCreatedExternalTestRun?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalTestRunConnection>;
|
|
72833
|
+
externalUserCreatedExternalTestRunInverse?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalTestRunInverseConnection>;
|
|
72834
|
+
externalUserCreatedExternalTestStatus?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalTestStatusConnection>;
|
|
72835
|
+
externalUserCreatedExternalTestStatusInverse?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalTestStatusInverseConnection>;
|
|
71791
72836
|
externalUserCreatedExternalWorkItem?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalWorkItemConnection>;
|
|
71792
72837
|
externalUserCreatedExternalWorkItemInverse?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalWorkItemInverseConnection>;
|
|
71793
72838
|
externalUserLastUpdatedExternalDesign?: Maybe<GraphStoreV2SimplifiedExternalUserLastUpdatedExternalDesignConnection>;
|
|
@@ -71821,7 +72866,15 @@ export declare type GraphStoreV2 = {
|
|
|
71821
72866
|
externalUserOwnsExternalTeam?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalTeamConnection>;
|
|
71822
72867
|
externalUserOwnsExternalTeamInverse?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalTeamInverseConnection>;
|
|
71823
72868
|
externalUserOwnsExternalTest?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalTestConnection>;
|
|
72869
|
+
externalUserOwnsExternalTestExecution?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalTestExecutionConnection>;
|
|
72870
|
+
externalUserOwnsExternalTestExecutionInverse?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalTestExecutionInverseConnection>;
|
|
71824
72871
|
externalUserOwnsExternalTestInverse?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalTestInverseConnection>;
|
|
72872
|
+
externalUserOwnsExternalTestPlan?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalTestPlanConnection>;
|
|
72873
|
+
externalUserOwnsExternalTestPlanInverse?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalTestPlanInverseConnection>;
|
|
72874
|
+
externalUserOwnsExternalTestRun?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalTestRunConnection>;
|
|
72875
|
+
externalUserOwnsExternalTestRunInverse?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalTestRunInverseConnection>;
|
|
72876
|
+
externalUserOwnsExternalTestStatus?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalTestStatusConnection>;
|
|
72877
|
+
externalUserOwnsExternalTestStatusInverse?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalTestStatusInverseConnection>;
|
|
71825
72878
|
externalUserReviewedExternalPullRequest?: Maybe<GraphStoreV2SimplifiedExternalUserReviewedExternalPullRequestConnection>;
|
|
71826
72879
|
externalUserReviewedExternalPullRequestInverse?: Maybe<GraphStoreV2SimplifiedExternalUserReviewedExternalPullRequestInverseConnection>;
|
|
71827
72880
|
externalUserUpdatedExternalCustomerContact?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalCustomerContactConnection>;
|
|
@@ -71845,7 +72898,15 @@ export declare type GraphStoreV2 = {
|
|
|
71845
72898
|
externalUserUpdatedExternalTeam?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalTeamConnection>;
|
|
71846
72899
|
externalUserUpdatedExternalTeamInverse?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalTeamInverseConnection>;
|
|
71847
72900
|
externalUserUpdatedExternalTest?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalTestConnection>;
|
|
72901
|
+
externalUserUpdatedExternalTestExecution?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalTestExecutionConnection>;
|
|
72902
|
+
externalUserUpdatedExternalTestExecutionInverse?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalTestExecutionInverseConnection>;
|
|
71848
72903
|
externalUserUpdatedExternalTestInverse?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalTestInverseConnection>;
|
|
72904
|
+
externalUserUpdatedExternalTestPlan?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalTestPlanConnection>;
|
|
72905
|
+
externalUserUpdatedExternalTestPlanInverse?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalTestPlanInverseConnection>;
|
|
72906
|
+
externalUserUpdatedExternalTestRun?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalTestRunConnection>;
|
|
72907
|
+
externalUserUpdatedExternalTestRunInverse?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalTestRunInverseConnection>;
|
|
72908
|
+
externalUserUpdatedExternalTestStatus?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalTestStatusConnection>;
|
|
72909
|
+
externalUserUpdatedExternalTestStatusInverse?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalTestStatusInverseConnection>;
|
|
71849
72910
|
externalWorkerFillsExternalPosition?: Maybe<GraphStoreV2SimplifiedExternalWorkerFillsExternalPositionConnection>;
|
|
71850
72911
|
externalWorkerFillsExternalPositionInverse?: Maybe<GraphStoreV2SimplifiedExternalWorkerFillsExternalPositionInverseConnection>;
|
|
71851
72912
|
externalWorkerLinksAtlassianUser?: Maybe<GraphStoreV2SimplifiedExternalWorkerLinksAtlassianUserConnection>;
|
|
@@ -71867,10 +72928,20 @@ export declare type GraphStoreV2 = {
|
|
|
71867
72928
|
focusFocusAreaHasThirdPartyDocumentInverse?: Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasThirdPartyDocumentInverseConnection>;
|
|
71868
72929
|
focusFocusAreaHasWorkEntity?: Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasWorkEntityConnection>;
|
|
71869
72930
|
focusFocusAreaHasWorkEntityInverse?: Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasWorkEntityInverseConnection>;
|
|
72931
|
+
focusStrategicPlanContributesToFocusFocusArea?: Maybe<GraphStoreV2SimplifiedFocusStrategicPlanContributesToFocusFocusAreaConnection>;
|
|
72932
|
+
focusStrategicPlanContributesToFocusFocusAreaInverse?: Maybe<GraphStoreV2SimplifiedFocusStrategicPlanContributesToFocusFocusAreaInverseConnection>;
|
|
72933
|
+
focusStrategicPlanHasFocusStrategicPlanScenario?: Maybe<GraphStoreV2SimplifiedFocusStrategicPlanHasFocusStrategicPlanScenarioConnection>;
|
|
72934
|
+
focusStrategicPlanHasFocusStrategicPlanScenarioInverse?: Maybe<GraphStoreV2SimplifiedFocusStrategicPlanHasFocusStrategicPlanScenarioInverseConnection>;
|
|
72935
|
+
focusStrategicPlanScenarioHasFocusStrategicPlanScenarioInvestment?: Maybe<GraphStoreV2SimplifiedFocusStrategicPlanScenarioHasFocusStrategicPlanScenarioInvestmentConnection>;
|
|
72936
|
+
focusStrategicPlanScenarioHasFocusStrategicPlanScenarioInvestmentInverse?: Maybe<GraphStoreV2SimplifiedFocusStrategicPlanScenarioHasFocusStrategicPlanScenarioInvestmentInverseConnection>;
|
|
72937
|
+
focusStrategicPlanScenarioInvestmentHasInvestmentEntity?: Maybe<GraphStoreV2SimplifiedFocusStrategicPlanScenarioInvestmentHasInvestmentEntityConnection>;
|
|
72938
|
+
focusStrategicPlanScenarioInvestmentHasInvestmentEntityInverse?: Maybe<GraphStoreV2SimplifiedFocusStrategicPlanScenarioInvestmentHasInvestmentEntityInverseConnection>;
|
|
71870
72939
|
jiraEpicTracksAtlassianProject?: Maybe<GraphStoreV2SimplifiedJiraEpicTracksAtlassianProjectConnection>;
|
|
71871
72940
|
jiraEpicTracksAtlassianProjectInverse?: Maybe<GraphStoreV2SimplifiedJiraEpicTracksAtlassianProjectInverseConnection>;
|
|
71872
72941
|
jiraSpaceExplicitlyLinksExternalRepository?: Maybe<GraphStoreV2SimplifiedJiraSpaceExplicitlyLinksExternalRepositoryConnection>;
|
|
71873
72942
|
jiraSpaceExplicitlyLinksExternalRepositoryInverse?: Maybe<GraphStoreV2SimplifiedJiraSpaceExplicitlyLinksExternalRepositoryInverseConnection>;
|
|
72943
|
+
jiraSpaceHasAvpDashboard?: Maybe<GraphStoreV2SimplifiedJiraSpaceHasAvpDashboardConnection>;
|
|
72944
|
+
jiraSpaceHasAvpDashboardInverse?: Maybe<GraphStoreV2SimplifiedJiraSpaceHasAvpDashboardInverseConnection>;
|
|
71874
72945
|
jiraSpaceHasJiraBoard?: Maybe<GraphStoreV2SimplifiedJiraSpaceHasJiraBoardConnection>;
|
|
71875
72946
|
jiraSpaceHasJiraBoardInverse?: Maybe<GraphStoreV2SimplifiedJiraSpaceHasJiraBoardInverseConnection>;
|
|
71876
72947
|
jiraSpaceHasJiraReleaseVersion?: Maybe<GraphStoreV2SimplifiedJiraSpaceHasJiraReleaseVersionConnection>;
|
|
@@ -72268,6 +73339,20 @@ export declare type GraphStoreV2AtlassianTeamSubmittedFocusAskInverseArgs = {
|
|
|
72268
73339
|
id: Scalars['ID']['input'];
|
|
72269
73340
|
sort?: InputMaybe<GraphStoreV2AtlassianTeamSubmittedFocusAskSortInput>;
|
|
72270
73341
|
};
|
|
73342
|
+
export declare type GraphStoreV2AtlassianUserApprovesFocusStrategicPlanArgs = {
|
|
73343
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
73344
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
73345
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
73346
|
+
id: Scalars['ID']['input'];
|
|
73347
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserApprovesFocusStrategicPlanSortInput>;
|
|
73348
|
+
};
|
|
73349
|
+
export declare type GraphStoreV2AtlassianUserApprovesFocusStrategicPlanInverseArgs = {
|
|
73350
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
73351
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
73352
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
73353
|
+
id: Scalars['ID']['input'];
|
|
73354
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserApprovesFocusStrategicPlanSortInput>;
|
|
73355
|
+
};
|
|
72271
73356
|
export declare type GraphStoreV2AtlassianUserAssignedJiraWorkItemArgs = {
|
|
72272
73357
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
72273
73358
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -73186,6 +74271,20 @@ export declare type GraphStoreV2AtlassianUserOwnsFocusFocusAreaInverseArgs = {
|
|
|
73186
74271
|
id: Scalars['ID']['input'];
|
|
73187
74272
|
sort?: InputMaybe<GraphStoreV2AtlassianUserOwnsFocusFocusAreaSortInput>;
|
|
73188
74273
|
};
|
|
74274
|
+
export declare type GraphStoreV2AtlassianUserOwnsFocusStrategicPlanArgs = {
|
|
74275
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
74276
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
74277
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
74278
|
+
id: Scalars['ID']['input'];
|
|
74279
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserOwnsFocusStrategicPlanSortInput>;
|
|
74280
|
+
};
|
|
74281
|
+
export declare type GraphStoreV2AtlassianUserOwnsFocusStrategicPlanInverseArgs = {
|
|
74282
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
74283
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
74284
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
74285
|
+
id: Scalars['ID']['input'];
|
|
74286
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserOwnsFocusStrategicPlanSortInput>;
|
|
74287
|
+
};
|
|
73189
74288
|
export declare type GraphStoreV2AtlassianUserReactedToJiraWorkItemCommentArgs = {
|
|
73190
74289
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
73191
74290
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -73858,6 +74957,20 @@ export declare type GraphStoreV2ContentEntityLinksEntityInverseArgs = {
|
|
|
73858
74957
|
id: Scalars['ID']['input'];
|
|
73859
74958
|
sort?: InputMaybe<GraphStoreV2ContentEntityLinksEntitySortInput>;
|
|
73860
74959
|
};
|
|
74960
|
+
export declare type GraphStoreV2CsmCustomerLinksJiraWorkItemArgs = {
|
|
74961
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
74962
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
74963
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
74964
|
+
id: Scalars['ID']['input'];
|
|
74965
|
+
sort?: InputMaybe<GraphStoreV2CsmCustomerLinksJiraWorkItemSortInput>;
|
|
74966
|
+
};
|
|
74967
|
+
export declare type GraphStoreV2CsmCustomerLinksJiraWorkItemInverseArgs = {
|
|
74968
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
74969
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
74970
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
74971
|
+
id: Scalars['ID']['input'];
|
|
74972
|
+
sort?: InputMaybe<GraphStoreV2CsmCustomerLinksJiraWorkItemSortInput>;
|
|
74973
|
+
};
|
|
73861
74974
|
export declare type GraphStoreV2Customer360CustomerHasExternalConversationArgs = {
|
|
73862
74975
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
73863
74976
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -74747,6 +75860,20 @@ export declare type GraphStoreV2ExternalUserCreatedExternalTestArgs = {
|
|
|
74747
75860
|
id: Scalars['ID']['input'];
|
|
74748
75861
|
sort?: InputMaybe<GraphStoreV2ExternalUserCreatedExternalTestSortInput>;
|
|
74749
75862
|
};
|
|
75863
|
+
export declare type GraphStoreV2ExternalUserCreatedExternalTestExecutionArgs = {
|
|
75864
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
75865
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
75866
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
75867
|
+
id: Scalars['ID']['input'];
|
|
75868
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserCreatedExternalTestExecutionSortInput>;
|
|
75869
|
+
};
|
|
75870
|
+
export declare type GraphStoreV2ExternalUserCreatedExternalTestExecutionInverseArgs = {
|
|
75871
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
75872
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
75873
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
75874
|
+
id: Scalars['ID']['input'];
|
|
75875
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserCreatedExternalTestExecutionSortInput>;
|
|
75876
|
+
};
|
|
74750
75877
|
export declare type GraphStoreV2ExternalUserCreatedExternalTestInverseArgs = {
|
|
74751
75878
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
74752
75879
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -74754,6 +75881,48 @@ export declare type GraphStoreV2ExternalUserCreatedExternalTestInverseArgs = {
|
|
|
74754
75881
|
id: Scalars['ID']['input'];
|
|
74755
75882
|
sort?: InputMaybe<GraphStoreV2ExternalUserCreatedExternalTestSortInput>;
|
|
74756
75883
|
};
|
|
75884
|
+
export declare type GraphStoreV2ExternalUserCreatedExternalTestPlanArgs = {
|
|
75885
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
75886
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
75887
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
75888
|
+
id: Scalars['ID']['input'];
|
|
75889
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserCreatedExternalTestPlanSortInput>;
|
|
75890
|
+
};
|
|
75891
|
+
export declare type GraphStoreV2ExternalUserCreatedExternalTestPlanInverseArgs = {
|
|
75892
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
75893
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
75894
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
75895
|
+
id: Scalars['ID']['input'];
|
|
75896
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserCreatedExternalTestPlanSortInput>;
|
|
75897
|
+
};
|
|
75898
|
+
export declare type GraphStoreV2ExternalUserCreatedExternalTestRunArgs = {
|
|
75899
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
75900
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
75901
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
75902
|
+
id: Scalars['ID']['input'];
|
|
75903
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserCreatedExternalTestRunSortInput>;
|
|
75904
|
+
};
|
|
75905
|
+
export declare type GraphStoreV2ExternalUserCreatedExternalTestRunInverseArgs = {
|
|
75906
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
75907
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
75908
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
75909
|
+
id: Scalars['ID']['input'];
|
|
75910
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserCreatedExternalTestRunSortInput>;
|
|
75911
|
+
};
|
|
75912
|
+
export declare type GraphStoreV2ExternalUserCreatedExternalTestStatusArgs = {
|
|
75913
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
75914
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
75915
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
75916
|
+
id: Scalars['ID']['input'];
|
|
75917
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserCreatedExternalTestStatusSortInput>;
|
|
75918
|
+
};
|
|
75919
|
+
export declare type GraphStoreV2ExternalUserCreatedExternalTestStatusInverseArgs = {
|
|
75920
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
75921
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
75922
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
75923
|
+
id: Scalars['ID']['input'];
|
|
75924
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserCreatedExternalTestStatusSortInput>;
|
|
75925
|
+
};
|
|
74757
75926
|
export declare type GraphStoreV2ExternalUserCreatedExternalWorkItemArgs = {
|
|
74758
75927
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
74759
75928
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -74985,6 +76154,20 @@ export declare type GraphStoreV2ExternalUserOwnsExternalTestArgs = {
|
|
|
74985
76154
|
id: Scalars['ID']['input'];
|
|
74986
76155
|
sort?: InputMaybe<GraphStoreV2ExternalUserOwnsExternalTestSortInput>;
|
|
74987
76156
|
};
|
|
76157
|
+
export declare type GraphStoreV2ExternalUserOwnsExternalTestExecutionArgs = {
|
|
76158
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
76159
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
76160
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
76161
|
+
id: Scalars['ID']['input'];
|
|
76162
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserOwnsExternalTestExecutionSortInput>;
|
|
76163
|
+
};
|
|
76164
|
+
export declare type GraphStoreV2ExternalUserOwnsExternalTestExecutionInverseArgs = {
|
|
76165
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
76166
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
76167
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
76168
|
+
id: Scalars['ID']['input'];
|
|
76169
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserOwnsExternalTestExecutionSortInput>;
|
|
76170
|
+
};
|
|
74988
76171
|
export declare type GraphStoreV2ExternalUserOwnsExternalTestInverseArgs = {
|
|
74989
76172
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
74990
76173
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -74992,6 +76175,48 @@ export declare type GraphStoreV2ExternalUserOwnsExternalTestInverseArgs = {
|
|
|
74992
76175
|
id: Scalars['ID']['input'];
|
|
74993
76176
|
sort?: InputMaybe<GraphStoreV2ExternalUserOwnsExternalTestSortInput>;
|
|
74994
76177
|
};
|
|
76178
|
+
export declare type GraphStoreV2ExternalUserOwnsExternalTestPlanArgs = {
|
|
76179
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
76180
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
76181
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
76182
|
+
id: Scalars['ID']['input'];
|
|
76183
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserOwnsExternalTestPlanSortInput>;
|
|
76184
|
+
};
|
|
76185
|
+
export declare type GraphStoreV2ExternalUserOwnsExternalTestPlanInverseArgs = {
|
|
76186
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
76187
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
76188
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
76189
|
+
id: Scalars['ID']['input'];
|
|
76190
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserOwnsExternalTestPlanSortInput>;
|
|
76191
|
+
};
|
|
76192
|
+
export declare type GraphStoreV2ExternalUserOwnsExternalTestRunArgs = {
|
|
76193
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
76194
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
76195
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
76196
|
+
id: Scalars['ID']['input'];
|
|
76197
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserOwnsExternalTestRunSortInput>;
|
|
76198
|
+
};
|
|
76199
|
+
export declare type GraphStoreV2ExternalUserOwnsExternalTestRunInverseArgs = {
|
|
76200
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
76201
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
76202
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
76203
|
+
id: Scalars['ID']['input'];
|
|
76204
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserOwnsExternalTestRunSortInput>;
|
|
76205
|
+
};
|
|
76206
|
+
export declare type GraphStoreV2ExternalUserOwnsExternalTestStatusArgs = {
|
|
76207
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
76208
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
76209
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
76210
|
+
id: Scalars['ID']['input'];
|
|
76211
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserOwnsExternalTestStatusSortInput>;
|
|
76212
|
+
};
|
|
76213
|
+
export declare type GraphStoreV2ExternalUserOwnsExternalTestStatusInverseArgs = {
|
|
76214
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
76215
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
76216
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
76217
|
+
id: Scalars['ID']['input'];
|
|
76218
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserOwnsExternalTestStatusSortInput>;
|
|
76219
|
+
};
|
|
74995
76220
|
export declare type GraphStoreV2ExternalUserReviewedExternalPullRequestArgs = {
|
|
74996
76221
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
74997
76222
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -75153,6 +76378,20 @@ export declare type GraphStoreV2ExternalUserUpdatedExternalTestArgs = {
|
|
|
75153
76378
|
id: Scalars['ID']['input'];
|
|
75154
76379
|
sort?: InputMaybe<GraphStoreV2ExternalUserUpdatedExternalTestSortInput>;
|
|
75155
76380
|
};
|
|
76381
|
+
export declare type GraphStoreV2ExternalUserUpdatedExternalTestExecutionArgs = {
|
|
76382
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
76383
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
76384
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
76385
|
+
id: Scalars['ID']['input'];
|
|
76386
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserUpdatedExternalTestExecutionSortInput>;
|
|
76387
|
+
};
|
|
76388
|
+
export declare type GraphStoreV2ExternalUserUpdatedExternalTestExecutionInverseArgs = {
|
|
76389
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
76390
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
76391
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
76392
|
+
id: Scalars['ID']['input'];
|
|
76393
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserUpdatedExternalTestExecutionSortInput>;
|
|
76394
|
+
};
|
|
75156
76395
|
export declare type GraphStoreV2ExternalUserUpdatedExternalTestInverseArgs = {
|
|
75157
76396
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
75158
76397
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -75160,6 +76399,48 @@ export declare type GraphStoreV2ExternalUserUpdatedExternalTestInverseArgs = {
|
|
|
75160
76399
|
id: Scalars['ID']['input'];
|
|
75161
76400
|
sort?: InputMaybe<GraphStoreV2ExternalUserUpdatedExternalTestSortInput>;
|
|
75162
76401
|
};
|
|
76402
|
+
export declare type GraphStoreV2ExternalUserUpdatedExternalTestPlanArgs = {
|
|
76403
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
76404
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
76405
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
76406
|
+
id: Scalars['ID']['input'];
|
|
76407
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserUpdatedExternalTestPlanSortInput>;
|
|
76408
|
+
};
|
|
76409
|
+
export declare type GraphStoreV2ExternalUserUpdatedExternalTestPlanInverseArgs = {
|
|
76410
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
76411
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
76412
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
76413
|
+
id: Scalars['ID']['input'];
|
|
76414
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserUpdatedExternalTestPlanSortInput>;
|
|
76415
|
+
};
|
|
76416
|
+
export declare type GraphStoreV2ExternalUserUpdatedExternalTestRunArgs = {
|
|
76417
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
76418
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
76419
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
76420
|
+
id: Scalars['ID']['input'];
|
|
76421
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserUpdatedExternalTestRunSortInput>;
|
|
76422
|
+
};
|
|
76423
|
+
export declare type GraphStoreV2ExternalUserUpdatedExternalTestRunInverseArgs = {
|
|
76424
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
76425
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
76426
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
76427
|
+
id: Scalars['ID']['input'];
|
|
76428
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserUpdatedExternalTestRunSortInput>;
|
|
76429
|
+
};
|
|
76430
|
+
export declare type GraphStoreV2ExternalUserUpdatedExternalTestStatusArgs = {
|
|
76431
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
76432
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
76433
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
76434
|
+
id: Scalars['ID']['input'];
|
|
76435
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserUpdatedExternalTestStatusSortInput>;
|
|
76436
|
+
};
|
|
76437
|
+
export declare type GraphStoreV2ExternalUserUpdatedExternalTestStatusInverseArgs = {
|
|
76438
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
76439
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
76440
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
76441
|
+
id: Scalars['ID']['input'];
|
|
76442
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserUpdatedExternalTestStatusSortInput>;
|
|
76443
|
+
};
|
|
75163
76444
|
export declare type GraphStoreV2ExternalWorkerFillsExternalPositionArgs = {
|
|
75164
76445
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
75165
76446
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -75307,6 +76588,62 @@ export declare type GraphStoreV2FocusFocusAreaHasWorkEntityInverseArgs = {
|
|
|
75307
76588
|
id: Scalars['ID']['input'];
|
|
75308
76589
|
sort?: InputMaybe<GraphStoreV2FocusFocusAreaHasWorkEntitySortInput>;
|
|
75309
76590
|
};
|
|
76591
|
+
export declare type GraphStoreV2FocusStrategicPlanContributesToFocusFocusAreaArgs = {
|
|
76592
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
76593
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
76594
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
76595
|
+
id: Scalars['ID']['input'];
|
|
76596
|
+
sort?: InputMaybe<GraphStoreV2FocusStrategicPlanContributesToFocusFocusAreaSortInput>;
|
|
76597
|
+
};
|
|
76598
|
+
export declare type GraphStoreV2FocusStrategicPlanContributesToFocusFocusAreaInverseArgs = {
|
|
76599
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
76600
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
76601
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
76602
|
+
id: Scalars['ID']['input'];
|
|
76603
|
+
sort?: InputMaybe<GraphStoreV2FocusStrategicPlanContributesToFocusFocusAreaSortInput>;
|
|
76604
|
+
};
|
|
76605
|
+
export declare type GraphStoreV2FocusStrategicPlanHasFocusStrategicPlanScenarioArgs = {
|
|
76606
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
76607
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
76608
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
76609
|
+
id: Scalars['ID']['input'];
|
|
76610
|
+
sort?: InputMaybe<GraphStoreV2FocusStrategicPlanHasFocusStrategicPlanScenarioSortInput>;
|
|
76611
|
+
};
|
|
76612
|
+
export declare type GraphStoreV2FocusStrategicPlanHasFocusStrategicPlanScenarioInverseArgs = {
|
|
76613
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
76614
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
76615
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
76616
|
+
id: Scalars['ID']['input'];
|
|
76617
|
+
sort?: InputMaybe<GraphStoreV2FocusStrategicPlanHasFocusStrategicPlanScenarioSortInput>;
|
|
76618
|
+
};
|
|
76619
|
+
export declare type GraphStoreV2FocusStrategicPlanScenarioHasFocusStrategicPlanScenarioInvestmentArgs = {
|
|
76620
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
76621
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
76622
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
76623
|
+
id: Scalars['ID']['input'];
|
|
76624
|
+
sort?: InputMaybe<GraphStoreV2FocusStrategicPlanScenarioHasFocusStrategicPlanScenarioInvestmentSortInput>;
|
|
76625
|
+
};
|
|
76626
|
+
export declare type GraphStoreV2FocusStrategicPlanScenarioHasFocusStrategicPlanScenarioInvestmentInverseArgs = {
|
|
76627
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
76628
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
76629
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
76630
|
+
id: Scalars['ID']['input'];
|
|
76631
|
+
sort?: InputMaybe<GraphStoreV2FocusStrategicPlanScenarioHasFocusStrategicPlanScenarioInvestmentSortInput>;
|
|
76632
|
+
};
|
|
76633
|
+
export declare type GraphStoreV2FocusStrategicPlanScenarioInvestmentHasInvestmentEntityArgs = {
|
|
76634
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
76635
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
76636
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
76637
|
+
id: Scalars['ID']['input'];
|
|
76638
|
+
sort?: InputMaybe<GraphStoreV2FocusStrategicPlanScenarioInvestmentHasInvestmentEntitySortInput>;
|
|
76639
|
+
};
|
|
76640
|
+
export declare type GraphStoreV2FocusStrategicPlanScenarioInvestmentHasInvestmentEntityInverseArgs = {
|
|
76641
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
76642
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
76643
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
76644
|
+
id: Scalars['ID']['input'];
|
|
76645
|
+
sort?: InputMaybe<GraphStoreV2FocusStrategicPlanScenarioInvestmentHasInvestmentEntitySortInput>;
|
|
76646
|
+
};
|
|
75310
76647
|
export declare type GraphStoreV2JiraEpicTracksAtlassianProjectArgs = {
|
|
75311
76648
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
75312
76649
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -75335,6 +76672,20 @@ export declare type GraphStoreV2JiraSpaceExplicitlyLinksExternalRepositoryInvers
|
|
|
75335
76672
|
id: Scalars['ID']['input'];
|
|
75336
76673
|
sort?: InputMaybe<GraphStoreV2JiraSpaceExplicitlyLinksExternalRepositorySortInput>;
|
|
75337
76674
|
};
|
|
76675
|
+
export declare type GraphStoreV2JiraSpaceHasAvpDashboardArgs = {
|
|
76676
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
76677
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
76678
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
76679
|
+
id: Scalars['ID']['input'];
|
|
76680
|
+
sort?: InputMaybe<GraphStoreV2JiraSpaceHasAvpDashboardSortInput>;
|
|
76681
|
+
};
|
|
76682
|
+
export declare type GraphStoreV2JiraSpaceHasAvpDashboardInverseArgs = {
|
|
76683
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
76684
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
76685
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
76686
|
+
id: Scalars['ID']['input'];
|
|
76687
|
+
sort?: InputMaybe<GraphStoreV2JiraSpaceHasAvpDashboardSortInput>;
|
|
76688
|
+
};
|
|
75338
76689
|
export declare type GraphStoreV2JiraSpaceHasJiraBoardArgs = {
|
|
75339
76690
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
75340
76691
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -76591,6 +77942,9 @@ export declare type GraphStoreV2AtlassianTeamReceivedFocusAskSortInput = {
|
|
|
76591
77942
|
export declare type GraphStoreV2AtlassianTeamSubmittedFocusAskSortInput = {
|
|
76592
77943
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
76593
77944
|
};
|
|
77945
|
+
export declare type GraphStoreV2AtlassianUserApprovesFocusStrategicPlanSortInput = {
|
|
77946
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
77947
|
+
};
|
|
76594
77948
|
export declare type GraphStoreV2AtlassianUserAssignedJiraWorkItemSortInput = {
|
|
76595
77949
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
76596
77950
|
};
|
|
@@ -76900,6 +78254,9 @@ export declare type GraphStoreV2AtlassianUserOwnsFocusAskSortInput = {
|
|
|
76900
78254
|
export declare type GraphStoreV2AtlassianUserOwnsFocusFocusAreaSortInput = {
|
|
76901
78255
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
76902
78256
|
};
|
|
78257
|
+
export declare type GraphStoreV2AtlassianUserOwnsFocusStrategicPlanSortInput = {
|
|
78258
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
78259
|
+
};
|
|
76903
78260
|
export declare type GraphStoreV2AtlassianUserReactedToJiraWorkItemCommentSortInput = {
|
|
76904
78261
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
76905
78262
|
};
|
|
@@ -77564,6 +78921,9 @@ export declare type GraphStoreV2CreateLoomVideoHasConfluencePagePayload = {
|
|
|
77564
78921
|
errors?: Maybe<Array<MutationError>>;
|
|
77565
78922
|
success: Scalars['Boolean']['output'];
|
|
77566
78923
|
};
|
|
78924
|
+
export declare type GraphStoreV2CsmCustomerLinksJiraWorkItemSortInput = {
|
|
78925
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
78926
|
+
};
|
|
77567
78927
|
export declare type GraphStoreV2Customer360CustomerHasExternalConversationSortInput = {
|
|
77568
78928
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
77569
78929
|
};
|
|
@@ -77575,7 +78935,7 @@ export declare type GraphStoreV2CypherQueryV2AriNode = {
|
|
|
77575
78935
|
data?: Maybe<GraphStoreV2CypherQueryV2AriNodeUnion>;
|
|
77576
78936
|
id: Scalars['ID']['output'];
|
|
77577
78937
|
};
|
|
77578
|
-
export declare type GraphStoreV2CypherQueryV2AriNodeUnion = AvpDashboard | AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
78938
|
+
export declare type GraphStoreV2CypherQueryV2AriNodeUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
77579
78939
|
export declare type GraphStoreV2CypherQueryV2BooleanObject = {
|
|
77580
78940
|
__typename?: 'GraphStoreV2CypherQueryV2BooleanObject';
|
|
77581
78941
|
value: Scalars['Boolean']['output'];
|
|
@@ -77600,6 +78960,10 @@ export declare type GraphStoreV2CypherQueryV2FloatObject = {
|
|
|
77600
78960
|
__typename?: 'GraphStoreV2CypherQueryV2FloatObject';
|
|
77601
78961
|
value: Scalars['Float']['output'];
|
|
77602
78962
|
};
|
|
78963
|
+
export declare type GraphStoreV2CypherQueryV2IntListObject = {
|
|
78964
|
+
__typename?: 'GraphStoreV2CypherQueryV2IntListObject';
|
|
78965
|
+
values: Array<Scalars['Int']['output']>;
|
|
78966
|
+
};
|
|
77603
78967
|
export declare type GraphStoreV2CypherQueryV2IntObject = {
|
|
77604
78968
|
__typename?: 'GraphStoreV2CypherQueryV2IntObject';
|
|
77605
78969
|
value: Scalars['Int']['output'];
|
|
@@ -77612,11 +78976,19 @@ export declare type GraphStoreV2CypherQueryV2NodeList = {
|
|
|
77612
78976
|
__typename?: 'GraphStoreV2CypherQueryV2NodeList';
|
|
77613
78977
|
nodes: Array<GraphStoreV2CypherQueryV2AriNode>;
|
|
77614
78978
|
};
|
|
77615
|
-
export declare type GraphStoreV2CypherQueryV2ResultRowItemValueUnion = GraphStoreV2CypherQueryV2AriNode | GraphStoreV2CypherQueryV2BooleanObject | GraphStoreV2CypherQueryV2FloatObject | GraphStoreV2CypherQueryV2IntObject | GraphStoreV2CypherQueryV2NodeList | GraphStoreV2CypherQueryV2StringObject | GraphStoreV2CypherQueryV2TimestampObject;
|
|
78979
|
+
export declare type GraphStoreV2CypherQueryV2ResultRowItemValueUnion = GraphStoreV2CypherQueryV2AriNode | GraphStoreV2CypherQueryV2BooleanObject | GraphStoreV2CypherQueryV2FloatObject | GraphStoreV2CypherQueryV2IntListObject | GraphStoreV2CypherQueryV2IntObject | GraphStoreV2CypherQueryV2NodeList | GraphStoreV2CypherQueryV2StringListObject | GraphStoreV2CypherQueryV2StringObject | GraphStoreV2CypherQueryV2TimestampListObject | GraphStoreV2CypherQueryV2TimestampObject;
|
|
78980
|
+
export declare type GraphStoreV2CypherQueryV2StringListObject = {
|
|
78981
|
+
__typename?: 'GraphStoreV2CypherQueryV2StringListObject';
|
|
78982
|
+
values: Array<Scalars['String']['output']>;
|
|
78983
|
+
};
|
|
77616
78984
|
export declare type GraphStoreV2CypherQueryV2StringObject = {
|
|
77617
78985
|
__typename?: 'GraphStoreV2CypherQueryV2StringObject';
|
|
77618
78986
|
value: Scalars['String']['output'];
|
|
77619
78987
|
};
|
|
78988
|
+
export declare type GraphStoreV2CypherQueryV2TimestampListObject = {
|
|
78989
|
+
__typename?: 'GraphStoreV2CypherQueryV2TimestampListObject';
|
|
78990
|
+
values: Array<Scalars['Long']['output']>;
|
|
78991
|
+
};
|
|
77620
78992
|
export declare type GraphStoreV2CypherQueryV2TimestampObject = {
|
|
77621
78993
|
__typename?: 'GraphStoreV2CypherQueryV2TimestampObject';
|
|
77622
78994
|
value: Scalars['Long']['output'];
|
|
@@ -78217,9 +79589,21 @@ export declare type GraphStoreV2ExternalUserCreatedExternalSpaceSortInput = {
|
|
|
78217
79589
|
export declare type GraphStoreV2ExternalUserCreatedExternalTeamSortInput = {
|
|
78218
79590
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
78219
79591
|
};
|
|
79592
|
+
export declare type GraphStoreV2ExternalUserCreatedExternalTestExecutionSortInput = {
|
|
79593
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
79594
|
+
};
|
|
79595
|
+
export declare type GraphStoreV2ExternalUserCreatedExternalTestPlanSortInput = {
|
|
79596
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
79597
|
+
};
|
|
79598
|
+
export declare type GraphStoreV2ExternalUserCreatedExternalTestRunSortInput = {
|
|
79599
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
79600
|
+
};
|
|
78220
79601
|
export declare type GraphStoreV2ExternalUserCreatedExternalTestSortInput = {
|
|
78221
79602
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
78222
79603
|
};
|
|
79604
|
+
export declare type GraphStoreV2ExternalUserCreatedExternalTestStatusSortInput = {
|
|
79605
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
79606
|
+
};
|
|
78223
79607
|
export declare type GraphStoreV2ExternalUserCreatedExternalWorkItemSortInput = {
|
|
78224
79608
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
78225
79609
|
};
|
|
@@ -78268,9 +79652,21 @@ export declare type GraphStoreV2ExternalUserOwnsExternalSpaceSortInput = {
|
|
|
78268
79652
|
export declare type GraphStoreV2ExternalUserOwnsExternalTeamSortInput = {
|
|
78269
79653
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
78270
79654
|
};
|
|
79655
|
+
export declare type GraphStoreV2ExternalUserOwnsExternalTestExecutionSortInput = {
|
|
79656
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
79657
|
+
};
|
|
79658
|
+
export declare type GraphStoreV2ExternalUserOwnsExternalTestPlanSortInput = {
|
|
79659
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
79660
|
+
};
|
|
79661
|
+
export declare type GraphStoreV2ExternalUserOwnsExternalTestRunSortInput = {
|
|
79662
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
79663
|
+
};
|
|
78271
79664
|
export declare type GraphStoreV2ExternalUserOwnsExternalTestSortInput = {
|
|
78272
79665
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
78273
79666
|
};
|
|
79667
|
+
export declare type GraphStoreV2ExternalUserOwnsExternalTestStatusSortInput = {
|
|
79668
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
79669
|
+
};
|
|
78274
79670
|
export declare type GraphStoreV2ExternalUserReviewedExternalPullRequestSortInput = {
|
|
78275
79671
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
78276
79672
|
};
|
|
@@ -78304,9 +79700,21 @@ export declare type GraphStoreV2ExternalUserUpdatedExternalSpaceSortInput = {
|
|
|
78304
79700
|
export declare type GraphStoreV2ExternalUserUpdatedExternalTeamSortInput = {
|
|
78305
79701
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
78306
79702
|
};
|
|
79703
|
+
export declare type GraphStoreV2ExternalUserUpdatedExternalTestExecutionSortInput = {
|
|
79704
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
79705
|
+
};
|
|
79706
|
+
export declare type GraphStoreV2ExternalUserUpdatedExternalTestPlanSortInput = {
|
|
79707
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
79708
|
+
};
|
|
79709
|
+
export declare type GraphStoreV2ExternalUserUpdatedExternalTestRunSortInput = {
|
|
79710
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
79711
|
+
};
|
|
78307
79712
|
export declare type GraphStoreV2ExternalUserUpdatedExternalTestSortInput = {
|
|
78308
79713
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
78309
79714
|
};
|
|
79715
|
+
export declare type GraphStoreV2ExternalUserUpdatedExternalTestStatusSortInput = {
|
|
79716
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
79717
|
+
};
|
|
78310
79718
|
export declare type GraphStoreV2ExternalWorkerFillsExternalPositionSortInput = {
|
|
78311
79719
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
78312
79720
|
};
|
|
@@ -78343,6 +79751,18 @@ export declare type GraphStoreV2FocusFocusAreaHasThirdPartyDocumentSortInput = {
|
|
|
78343
79751
|
export declare type GraphStoreV2FocusFocusAreaHasWorkEntitySortInput = {
|
|
78344
79752
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
78345
79753
|
};
|
|
79754
|
+
export declare type GraphStoreV2FocusStrategicPlanContributesToFocusFocusAreaSortInput = {
|
|
79755
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
79756
|
+
};
|
|
79757
|
+
export declare type GraphStoreV2FocusStrategicPlanHasFocusStrategicPlanScenarioSortInput = {
|
|
79758
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
79759
|
+
};
|
|
79760
|
+
export declare type GraphStoreV2FocusStrategicPlanScenarioHasFocusStrategicPlanScenarioInvestmentSortInput = {
|
|
79761
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
79762
|
+
};
|
|
79763
|
+
export declare type GraphStoreV2FocusStrategicPlanScenarioInvestmentHasInvestmentEntitySortInput = {
|
|
79764
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
79765
|
+
};
|
|
78346
79766
|
export declare type GraphStoreV2JiraEpicTracksAtlassianProjectSortInput = {
|
|
78347
79767
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
78348
79768
|
};
|
|
@@ -78353,6 +79773,9 @@ export declare type GraphStoreV2JiraSpaceExplicitlyLinksExternalRepositorySortIn
|
|
|
78353
79773
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
78354
79774
|
to_providerAri?: InputMaybe<GraphStoreSortInput>;
|
|
78355
79775
|
};
|
|
79776
|
+
export declare type GraphStoreV2JiraSpaceHasAvpDashboardSortInput = {
|
|
79777
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
79778
|
+
};
|
|
78356
79779
|
export declare type GraphStoreV2JiraSpaceHasJiraBoardSortInput = {
|
|
78357
79780
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
78358
79781
|
};
|
|
@@ -80296,6 +81719,34 @@ export declare type GraphStoreV2SimplifiedAtlassianTeamSubmittedFocusAskInverseE
|
|
|
80296
81719
|
};
|
|
80297
81720
|
export declare type GraphStoreV2SimplifiedAtlassianTeamSubmittedFocusAskInverseUnion = TeamV2;
|
|
80298
81721
|
export declare type GraphStoreV2SimplifiedAtlassianTeamSubmittedFocusAskUnion = SpfAsk;
|
|
81722
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserApprovesFocusStrategicPlanConnection = HasPageInfo & {
|
|
81723
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserApprovesFocusStrategicPlanConnection';
|
|
81724
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserApprovesFocusStrategicPlanEdge>>>;
|
|
81725
|
+
pageInfo: PageInfo;
|
|
81726
|
+
};
|
|
81727
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserApprovesFocusStrategicPlanEdge = {
|
|
81728
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserApprovesFocusStrategicPlanEdge';
|
|
81729
|
+
createdAt: Scalars['DateTime']['output'];
|
|
81730
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
81731
|
+
id: Scalars['ID']['output'];
|
|
81732
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
81733
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserApprovesFocusStrategicPlanUnion>;
|
|
81734
|
+
};
|
|
81735
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserApprovesFocusStrategicPlanInverseConnection = HasPageInfo & {
|
|
81736
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserApprovesFocusStrategicPlanInverseConnection';
|
|
81737
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserApprovesFocusStrategicPlanInverseEdge>>>;
|
|
81738
|
+
pageInfo: PageInfo;
|
|
81739
|
+
};
|
|
81740
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserApprovesFocusStrategicPlanInverseEdge = {
|
|
81741
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserApprovesFocusStrategicPlanInverseEdge';
|
|
81742
|
+
createdAt: Scalars['DateTime']['output'];
|
|
81743
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
81744
|
+
id: Scalars['ID']['output'];
|
|
81745
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
81746
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserApprovesFocusStrategicPlanInverseUnion>;
|
|
81747
|
+
};
|
|
81748
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserApprovesFocusStrategicPlanInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
81749
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserApprovesFocusStrategicPlanUnion = SpfPlan;
|
|
80299
81750
|
export declare type GraphStoreV2SimplifiedAtlassianUserAssignedJiraWorkItemConnection = HasPageInfo & {
|
|
80300
81751
|
__typename?: 'GraphStoreV2SimplifiedAtlassianUserAssignedJiraWorkItemConnection';
|
|
80301
81752
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserAssignedJiraWorkItemEdge>>>;
|
|
@@ -82152,6 +83603,34 @@ export declare type GraphStoreV2SimplifiedAtlassianUserOwnsFocusFocusAreaInverse
|
|
|
82152
83603
|
};
|
|
82153
83604
|
export declare type GraphStoreV2SimplifiedAtlassianUserOwnsFocusFocusAreaInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
82154
83605
|
export declare type GraphStoreV2SimplifiedAtlassianUserOwnsFocusFocusAreaUnion = MercuryFocusArea;
|
|
83606
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserOwnsFocusStrategicPlanConnection = HasPageInfo & {
|
|
83607
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserOwnsFocusStrategicPlanConnection';
|
|
83608
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsFocusStrategicPlanEdge>>>;
|
|
83609
|
+
pageInfo: PageInfo;
|
|
83610
|
+
};
|
|
83611
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserOwnsFocusStrategicPlanEdge = {
|
|
83612
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserOwnsFocusStrategicPlanEdge';
|
|
83613
|
+
createdAt: Scalars['DateTime']['output'];
|
|
83614
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
83615
|
+
id: Scalars['ID']['output'];
|
|
83616
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
83617
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsFocusStrategicPlanUnion>;
|
|
83618
|
+
};
|
|
83619
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserOwnsFocusStrategicPlanInverseConnection = HasPageInfo & {
|
|
83620
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserOwnsFocusStrategicPlanInverseConnection';
|
|
83621
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsFocusStrategicPlanInverseEdge>>>;
|
|
83622
|
+
pageInfo: PageInfo;
|
|
83623
|
+
};
|
|
83624
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserOwnsFocusStrategicPlanInverseEdge = {
|
|
83625
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserOwnsFocusStrategicPlanInverseEdge';
|
|
83626
|
+
createdAt: Scalars['DateTime']['output'];
|
|
83627
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
83628
|
+
id: Scalars['ID']['output'];
|
|
83629
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
83630
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsFocusStrategicPlanInverseUnion>;
|
|
83631
|
+
};
|
|
83632
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserOwnsFocusStrategicPlanInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
83633
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserOwnsFocusStrategicPlanUnion = SpfPlan;
|
|
82155
83634
|
export declare type GraphStoreV2SimplifiedAtlassianUserReactedToJiraWorkItemCommentConnection = HasPageInfo & {
|
|
82156
83635
|
__typename?: 'GraphStoreV2SimplifiedAtlassianUserReactedToJiraWorkItemCommentConnection';
|
|
82157
83636
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserReactedToJiraWorkItemCommentEdge>>>;
|
|
@@ -83498,8 +84977,36 @@ export declare type GraphStoreV2SimplifiedContentEntityLinksEntityInverseEdge =
|
|
|
83498
84977
|
lastUpdated: Scalars['DateTime']['output'];
|
|
83499
84978
|
node?: Maybe<GraphStoreV2SimplifiedContentEntityLinksEntityInverseUnion>;
|
|
83500
84979
|
};
|
|
83501
|
-
export declare type GraphStoreV2SimplifiedContentEntityLinksEntityInverseUnion = AvpDashboard | AppUser | AssetsObject | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
83502
|
-
export declare type GraphStoreV2SimplifiedContentEntityLinksEntityUnion = AvpDashboard | AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
84980
|
+
export declare type GraphStoreV2SimplifiedContentEntityLinksEntityInverseUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
84981
|
+
export declare type GraphStoreV2SimplifiedContentEntityLinksEntityUnion = AvpDashboard | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
84982
|
+
export declare type GraphStoreV2SimplifiedCsmCustomerLinksJiraWorkItemConnection = HasPageInfo & {
|
|
84983
|
+
__typename?: 'GraphStoreV2SimplifiedCsmCustomerLinksJiraWorkItemConnection';
|
|
84984
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedCsmCustomerLinksJiraWorkItemEdge>>>;
|
|
84985
|
+
pageInfo: PageInfo;
|
|
84986
|
+
};
|
|
84987
|
+
export declare type GraphStoreV2SimplifiedCsmCustomerLinksJiraWorkItemEdge = {
|
|
84988
|
+
__typename?: 'GraphStoreV2SimplifiedCsmCustomerLinksJiraWorkItemEdge';
|
|
84989
|
+
createdAt: Scalars['DateTime']['output'];
|
|
84990
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
84991
|
+
id: Scalars['ID']['output'];
|
|
84992
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
84993
|
+
node?: Maybe<GraphStoreV2SimplifiedCsmCustomerLinksJiraWorkItemUnion>;
|
|
84994
|
+
};
|
|
84995
|
+
export declare type GraphStoreV2SimplifiedCsmCustomerLinksJiraWorkItemInverseConnection = HasPageInfo & {
|
|
84996
|
+
__typename?: 'GraphStoreV2SimplifiedCsmCustomerLinksJiraWorkItemInverseConnection';
|
|
84997
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedCsmCustomerLinksJiraWorkItemInverseEdge>>>;
|
|
84998
|
+
pageInfo: PageInfo;
|
|
84999
|
+
};
|
|
85000
|
+
export declare type GraphStoreV2SimplifiedCsmCustomerLinksJiraWorkItemInverseEdge = {
|
|
85001
|
+
__typename?: 'GraphStoreV2SimplifiedCsmCustomerLinksJiraWorkItemInverseEdge';
|
|
85002
|
+
createdAt: Scalars['DateTime']['output'];
|
|
85003
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
85004
|
+
id: Scalars['ID']['output'];
|
|
85005
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
85006
|
+
node?: Maybe<GraphStoreV2SimplifiedCsmCustomerLinksJiraWorkItemInverseUnion>;
|
|
85007
|
+
};
|
|
85008
|
+
export declare type GraphStoreV2SimplifiedCsmCustomerLinksJiraWorkItemInverseUnion = CustomerServiceCsmCustomer;
|
|
85009
|
+
export declare type GraphStoreV2SimplifiedCsmCustomerLinksJiraWorkItemUnion = JiraIssue;
|
|
83503
85010
|
export declare type GraphStoreV2SimplifiedCustomer360CustomerHasExternalConversationConnection = HasPageInfo & {
|
|
83504
85011
|
__typename?: 'GraphStoreV2SimplifiedCustomer360CustomerHasExternalConversationConnection';
|
|
83505
85012
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedCustomer360CustomerHasExternalConversationEdge>>>;
|
|
@@ -85277,6 +86784,34 @@ export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalTestEdge =
|
|
|
85277
86784
|
lastUpdated: Scalars['DateTime']['output'];
|
|
85278
86785
|
node?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalTestUnion>;
|
|
85279
86786
|
};
|
|
86787
|
+
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalTestExecutionConnection = HasPageInfo & {
|
|
86788
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserCreatedExternalTestExecutionConnection';
|
|
86789
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalTestExecutionEdge>>>;
|
|
86790
|
+
pageInfo: PageInfo;
|
|
86791
|
+
};
|
|
86792
|
+
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalTestExecutionEdge = {
|
|
86793
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserCreatedExternalTestExecutionEdge';
|
|
86794
|
+
createdAt: Scalars['DateTime']['output'];
|
|
86795
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
86796
|
+
id: Scalars['ID']['output'];
|
|
86797
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
86798
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalTestExecutionUnion>;
|
|
86799
|
+
};
|
|
86800
|
+
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalTestExecutionInverseConnection = HasPageInfo & {
|
|
86801
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserCreatedExternalTestExecutionInverseConnection';
|
|
86802
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalTestExecutionInverseEdge>>>;
|
|
86803
|
+
pageInfo: PageInfo;
|
|
86804
|
+
};
|
|
86805
|
+
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalTestExecutionInverseEdge = {
|
|
86806
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserCreatedExternalTestExecutionInverseEdge';
|
|
86807
|
+
createdAt: Scalars['DateTime']['output'];
|
|
86808
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
86809
|
+
id: Scalars['ID']['output'];
|
|
86810
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
86811
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalTestExecutionInverseUnion>;
|
|
86812
|
+
};
|
|
86813
|
+
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalTestExecutionInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
86814
|
+
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalTestExecutionUnion = ExternalTestExecution;
|
|
85280
86815
|
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalTestInverseConnection = HasPageInfo & {
|
|
85281
86816
|
__typename?: 'GraphStoreV2SimplifiedExternalUserCreatedExternalTestInverseConnection';
|
|
85282
86817
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalTestInverseEdge>>>;
|
|
@@ -85291,6 +86826,90 @@ export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalTestInverse
|
|
|
85291
86826
|
node?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalTestInverseUnion>;
|
|
85292
86827
|
};
|
|
85293
86828
|
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalTestInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
86829
|
+
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalTestPlanConnection = HasPageInfo & {
|
|
86830
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserCreatedExternalTestPlanConnection';
|
|
86831
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalTestPlanEdge>>>;
|
|
86832
|
+
pageInfo: PageInfo;
|
|
86833
|
+
};
|
|
86834
|
+
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalTestPlanEdge = {
|
|
86835
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserCreatedExternalTestPlanEdge';
|
|
86836
|
+
createdAt: Scalars['DateTime']['output'];
|
|
86837
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
86838
|
+
id: Scalars['ID']['output'];
|
|
86839
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
86840
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalTestPlanUnion>;
|
|
86841
|
+
};
|
|
86842
|
+
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalTestPlanInverseConnection = HasPageInfo & {
|
|
86843
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserCreatedExternalTestPlanInverseConnection';
|
|
86844
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalTestPlanInverseEdge>>>;
|
|
86845
|
+
pageInfo: PageInfo;
|
|
86846
|
+
};
|
|
86847
|
+
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalTestPlanInverseEdge = {
|
|
86848
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserCreatedExternalTestPlanInverseEdge';
|
|
86849
|
+
createdAt: Scalars['DateTime']['output'];
|
|
86850
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
86851
|
+
id: Scalars['ID']['output'];
|
|
86852
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
86853
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalTestPlanInverseUnion>;
|
|
86854
|
+
};
|
|
86855
|
+
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalTestPlanInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
86856
|
+
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalTestPlanUnion = ExternalTestPlan;
|
|
86857
|
+
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalTestRunConnection = HasPageInfo & {
|
|
86858
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserCreatedExternalTestRunConnection';
|
|
86859
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalTestRunEdge>>>;
|
|
86860
|
+
pageInfo: PageInfo;
|
|
86861
|
+
};
|
|
86862
|
+
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalTestRunEdge = {
|
|
86863
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserCreatedExternalTestRunEdge';
|
|
86864
|
+
createdAt: Scalars['DateTime']['output'];
|
|
86865
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
86866
|
+
id: Scalars['ID']['output'];
|
|
86867
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
86868
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalTestRunUnion>;
|
|
86869
|
+
};
|
|
86870
|
+
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalTestRunInverseConnection = HasPageInfo & {
|
|
86871
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserCreatedExternalTestRunInverseConnection';
|
|
86872
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalTestRunInverseEdge>>>;
|
|
86873
|
+
pageInfo: PageInfo;
|
|
86874
|
+
};
|
|
86875
|
+
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalTestRunInverseEdge = {
|
|
86876
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserCreatedExternalTestRunInverseEdge';
|
|
86877
|
+
createdAt: Scalars['DateTime']['output'];
|
|
86878
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
86879
|
+
id: Scalars['ID']['output'];
|
|
86880
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
86881
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalTestRunInverseUnion>;
|
|
86882
|
+
};
|
|
86883
|
+
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalTestRunInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
86884
|
+
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalTestRunUnion = ExternalTestRun;
|
|
86885
|
+
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalTestStatusConnection = HasPageInfo & {
|
|
86886
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserCreatedExternalTestStatusConnection';
|
|
86887
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalTestStatusEdge>>>;
|
|
86888
|
+
pageInfo: PageInfo;
|
|
86889
|
+
};
|
|
86890
|
+
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalTestStatusEdge = {
|
|
86891
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserCreatedExternalTestStatusEdge';
|
|
86892
|
+
createdAt: Scalars['DateTime']['output'];
|
|
86893
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
86894
|
+
id: Scalars['ID']['output'];
|
|
86895
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
86896
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalTestStatusUnion>;
|
|
86897
|
+
};
|
|
86898
|
+
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalTestStatusInverseConnection = HasPageInfo & {
|
|
86899
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserCreatedExternalTestStatusInverseConnection';
|
|
86900
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalTestStatusInverseEdge>>>;
|
|
86901
|
+
pageInfo: PageInfo;
|
|
86902
|
+
};
|
|
86903
|
+
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalTestStatusInverseEdge = {
|
|
86904
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserCreatedExternalTestStatusInverseEdge';
|
|
86905
|
+
createdAt: Scalars['DateTime']['output'];
|
|
86906
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
86907
|
+
id: Scalars['ID']['output'];
|
|
86908
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
86909
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalTestStatusInverseUnion>;
|
|
86910
|
+
};
|
|
86911
|
+
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalTestStatusInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
86912
|
+
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalTestStatusUnion = ExternalTestStatus;
|
|
85294
86913
|
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalTestUnion = ExternalTest;
|
|
85295
86914
|
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalWorkItemConnection = HasPageInfo & {
|
|
85296
86915
|
__typename?: 'GraphStoreV2SimplifiedExternalUserCreatedExternalWorkItemConnection';
|
|
@@ -85753,6 +87372,34 @@ export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalTestEdge = {
|
|
|
85753
87372
|
lastUpdated: Scalars['DateTime']['output'];
|
|
85754
87373
|
node?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalTestUnion>;
|
|
85755
87374
|
};
|
|
87375
|
+
export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalTestExecutionConnection = HasPageInfo & {
|
|
87376
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserOwnsExternalTestExecutionConnection';
|
|
87377
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalTestExecutionEdge>>>;
|
|
87378
|
+
pageInfo: PageInfo;
|
|
87379
|
+
};
|
|
87380
|
+
export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalTestExecutionEdge = {
|
|
87381
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserOwnsExternalTestExecutionEdge';
|
|
87382
|
+
createdAt: Scalars['DateTime']['output'];
|
|
87383
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
87384
|
+
id: Scalars['ID']['output'];
|
|
87385
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
87386
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalTestExecutionUnion>;
|
|
87387
|
+
};
|
|
87388
|
+
export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalTestExecutionInverseConnection = HasPageInfo & {
|
|
87389
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserOwnsExternalTestExecutionInverseConnection';
|
|
87390
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalTestExecutionInverseEdge>>>;
|
|
87391
|
+
pageInfo: PageInfo;
|
|
87392
|
+
};
|
|
87393
|
+
export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalTestExecutionInverseEdge = {
|
|
87394
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserOwnsExternalTestExecutionInverseEdge';
|
|
87395
|
+
createdAt: Scalars['DateTime']['output'];
|
|
87396
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
87397
|
+
id: Scalars['ID']['output'];
|
|
87398
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
87399
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalTestExecutionInverseUnion>;
|
|
87400
|
+
};
|
|
87401
|
+
export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalTestExecutionInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
87402
|
+
export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalTestExecutionUnion = ExternalTestExecution;
|
|
85756
87403
|
export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalTestInverseConnection = HasPageInfo & {
|
|
85757
87404
|
__typename?: 'GraphStoreV2SimplifiedExternalUserOwnsExternalTestInverseConnection';
|
|
85758
87405
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalTestInverseEdge>>>;
|
|
@@ -85767,6 +87414,90 @@ export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalTestInverseEdg
|
|
|
85767
87414
|
node?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalTestInverseUnion>;
|
|
85768
87415
|
};
|
|
85769
87416
|
export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalTestInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
87417
|
+
export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalTestPlanConnection = HasPageInfo & {
|
|
87418
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserOwnsExternalTestPlanConnection';
|
|
87419
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalTestPlanEdge>>>;
|
|
87420
|
+
pageInfo: PageInfo;
|
|
87421
|
+
};
|
|
87422
|
+
export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalTestPlanEdge = {
|
|
87423
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserOwnsExternalTestPlanEdge';
|
|
87424
|
+
createdAt: Scalars['DateTime']['output'];
|
|
87425
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
87426
|
+
id: Scalars['ID']['output'];
|
|
87427
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
87428
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalTestPlanUnion>;
|
|
87429
|
+
};
|
|
87430
|
+
export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalTestPlanInverseConnection = HasPageInfo & {
|
|
87431
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserOwnsExternalTestPlanInverseConnection';
|
|
87432
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalTestPlanInverseEdge>>>;
|
|
87433
|
+
pageInfo: PageInfo;
|
|
87434
|
+
};
|
|
87435
|
+
export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalTestPlanInverseEdge = {
|
|
87436
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserOwnsExternalTestPlanInverseEdge';
|
|
87437
|
+
createdAt: Scalars['DateTime']['output'];
|
|
87438
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
87439
|
+
id: Scalars['ID']['output'];
|
|
87440
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
87441
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalTestPlanInverseUnion>;
|
|
87442
|
+
};
|
|
87443
|
+
export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalTestPlanInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
87444
|
+
export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalTestPlanUnion = ExternalTestPlan;
|
|
87445
|
+
export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalTestRunConnection = HasPageInfo & {
|
|
87446
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserOwnsExternalTestRunConnection';
|
|
87447
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalTestRunEdge>>>;
|
|
87448
|
+
pageInfo: PageInfo;
|
|
87449
|
+
};
|
|
87450
|
+
export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalTestRunEdge = {
|
|
87451
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserOwnsExternalTestRunEdge';
|
|
87452
|
+
createdAt: Scalars['DateTime']['output'];
|
|
87453
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
87454
|
+
id: Scalars['ID']['output'];
|
|
87455
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
87456
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalTestRunUnion>;
|
|
87457
|
+
};
|
|
87458
|
+
export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalTestRunInverseConnection = HasPageInfo & {
|
|
87459
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserOwnsExternalTestRunInverseConnection';
|
|
87460
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalTestRunInverseEdge>>>;
|
|
87461
|
+
pageInfo: PageInfo;
|
|
87462
|
+
};
|
|
87463
|
+
export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalTestRunInverseEdge = {
|
|
87464
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserOwnsExternalTestRunInverseEdge';
|
|
87465
|
+
createdAt: Scalars['DateTime']['output'];
|
|
87466
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
87467
|
+
id: Scalars['ID']['output'];
|
|
87468
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
87469
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalTestRunInverseUnion>;
|
|
87470
|
+
};
|
|
87471
|
+
export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalTestRunInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
87472
|
+
export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalTestRunUnion = ExternalTestRun;
|
|
87473
|
+
export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalTestStatusConnection = HasPageInfo & {
|
|
87474
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserOwnsExternalTestStatusConnection';
|
|
87475
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalTestStatusEdge>>>;
|
|
87476
|
+
pageInfo: PageInfo;
|
|
87477
|
+
};
|
|
87478
|
+
export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalTestStatusEdge = {
|
|
87479
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserOwnsExternalTestStatusEdge';
|
|
87480
|
+
createdAt: Scalars['DateTime']['output'];
|
|
87481
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
87482
|
+
id: Scalars['ID']['output'];
|
|
87483
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
87484
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalTestStatusUnion>;
|
|
87485
|
+
};
|
|
87486
|
+
export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalTestStatusInverseConnection = HasPageInfo & {
|
|
87487
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserOwnsExternalTestStatusInverseConnection';
|
|
87488
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalTestStatusInverseEdge>>>;
|
|
87489
|
+
pageInfo: PageInfo;
|
|
87490
|
+
};
|
|
87491
|
+
export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalTestStatusInverseEdge = {
|
|
87492
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserOwnsExternalTestStatusInverseEdge';
|
|
87493
|
+
createdAt: Scalars['DateTime']['output'];
|
|
87494
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
87495
|
+
id: Scalars['ID']['output'];
|
|
87496
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
87497
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalTestStatusInverseUnion>;
|
|
87498
|
+
};
|
|
87499
|
+
export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalTestStatusInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
87500
|
+
export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalTestStatusUnion = ExternalTestStatus;
|
|
85770
87501
|
export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalTestUnion = ExternalTest;
|
|
85771
87502
|
export declare type GraphStoreV2SimplifiedExternalUserReviewedExternalPullRequestConnection = HasPageInfo & {
|
|
85772
87503
|
__typename?: 'GraphStoreV2SimplifiedExternalUserReviewedExternalPullRequestConnection';
|
|
@@ -86089,6 +87820,34 @@ export declare type GraphStoreV2SimplifiedExternalUserUpdatedExternalTestEdge =
|
|
|
86089
87820
|
lastUpdated: Scalars['DateTime']['output'];
|
|
86090
87821
|
node?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalTestUnion>;
|
|
86091
87822
|
};
|
|
87823
|
+
export declare type GraphStoreV2SimplifiedExternalUserUpdatedExternalTestExecutionConnection = HasPageInfo & {
|
|
87824
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserUpdatedExternalTestExecutionConnection';
|
|
87825
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalTestExecutionEdge>>>;
|
|
87826
|
+
pageInfo: PageInfo;
|
|
87827
|
+
};
|
|
87828
|
+
export declare type GraphStoreV2SimplifiedExternalUserUpdatedExternalTestExecutionEdge = {
|
|
87829
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserUpdatedExternalTestExecutionEdge';
|
|
87830
|
+
createdAt: Scalars['DateTime']['output'];
|
|
87831
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
87832
|
+
id: Scalars['ID']['output'];
|
|
87833
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
87834
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalTestExecutionUnion>;
|
|
87835
|
+
};
|
|
87836
|
+
export declare type GraphStoreV2SimplifiedExternalUserUpdatedExternalTestExecutionInverseConnection = HasPageInfo & {
|
|
87837
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserUpdatedExternalTestExecutionInverseConnection';
|
|
87838
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalTestExecutionInverseEdge>>>;
|
|
87839
|
+
pageInfo: PageInfo;
|
|
87840
|
+
};
|
|
87841
|
+
export declare type GraphStoreV2SimplifiedExternalUserUpdatedExternalTestExecutionInverseEdge = {
|
|
87842
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserUpdatedExternalTestExecutionInverseEdge';
|
|
87843
|
+
createdAt: Scalars['DateTime']['output'];
|
|
87844
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
87845
|
+
id: Scalars['ID']['output'];
|
|
87846
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
87847
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalTestExecutionInverseUnion>;
|
|
87848
|
+
};
|
|
87849
|
+
export declare type GraphStoreV2SimplifiedExternalUserUpdatedExternalTestExecutionInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
87850
|
+
export declare type GraphStoreV2SimplifiedExternalUserUpdatedExternalTestExecutionUnion = ExternalTestExecution;
|
|
86092
87851
|
export declare type GraphStoreV2SimplifiedExternalUserUpdatedExternalTestInverseConnection = HasPageInfo & {
|
|
86093
87852
|
__typename?: 'GraphStoreV2SimplifiedExternalUserUpdatedExternalTestInverseConnection';
|
|
86094
87853
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalTestInverseEdge>>>;
|
|
@@ -86103,6 +87862,90 @@ export declare type GraphStoreV2SimplifiedExternalUserUpdatedExternalTestInverse
|
|
|
86103
87862
|
node?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalTestInverseUnion>;
|
|
86104
87863
|
};
|
|
86105
87864
|
export declare type GraphStoreV2SimplifiedExternalUserUpdatedExternalTestInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
87865
|
+
export declare type GraphStoreV2SimplifiedExternalUserUpdatedExternalTestPlanConnection = HasPageInfo & {
|
|
87866
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserUpdatedExternalTestPlanConnection';
|
|
87867
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalTestPlanEdge>>>;
|
|
87868
|
+
pageInfo: PageInfo;
|
|
87869
|
+
};
|
|
87870
|
+
export declare type GraphStoreV2SimplifiedExternalUserUpdatedExternalTestPlanEdge = {
|
|
87871
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserUpdatedExternalTestPlanEdge';
|
|
87872
|
+
createdAt: Scalars['DateTime']['output'];
|
|
87873
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
87874
|
+
id: Scalars['ID']['output'];
|
|
87875
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
87876
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalTestPlanUnion>;
|
|
87877
|
+
};
|
|
87878
|
+
export declare type GraphStoreV2SimplifiedExternalUserUpdatedExternalTestPlanInverseConnection = HasPageInfo & {
|
|
87879
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserUpdatedExternalTestPlanInverseConnection';
|
|
87880
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalTestPlanInverseEdge>>>;
|
|
87881
|
+
pageInfo: PageInfo;
|
|
87882
|
+
};
|
|
87883
|
+
export declare type GraphStoreV2SimplifiedExternalUserUpdatedExternalTestPlanInverseEdge = {
|
|
87884
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserUpdatedExternalTestPlanInverseEdge';
|
|
87885
|
+
createdAt: Scalars['DateTime']['output'];
|
|
87886
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
87887
|
+
id: Scalars['ID']['output'];
|
|
87888
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
87889
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalTestPlanInverseUnion>;
|
|
87890
|
+
};
|
|
87891
|
+
export declare type GraphStoreV2SimplifiedExternalUserUpdatedExternalTestPlanInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
87892
|
+
export declare type GraphStoreV2SimplifiedExternalUserUpdatedExternalTestPlanUnion = ExternalTestPlan;
|
|
87893
|
+
export declare type GraphStoreV2SimplifiedExternalUserUpdatedExternalTestRunConnection = HasPageInfo & {
|
|
87894
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserUpdatedExternalTestRunConnection';
|
|
87895
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalTestRunEdge>>>;
|
|
87896
|
+
pageInfo: PageInfo;
|
|
87897
|
+
};
|
|
87898
|
+
export declare type GraphStoreV2SimplifiedExternalUserUpdatedExternalTestRunEdge = {
|
|
87899
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserUpdatedExternalTestRunEdge';
|
|
87900
|
+
createdAt: Scalars['DateTime']['output'];
|
|
87901
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
87902
|
+
id: Scalars['ID']['output'];
|
|
87903
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
87904
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalTestRunUnion>;
|
|
87905
|
+
};
|
|
87906
|
+
export declare type GraphStoreV2SimplifiedExternalUserUpdatedExternalTestRunInverseConnection = HasPageInfo & {
|
|
87907
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserUpdatedExternalTestRunInverseConnection';
|
|
87908
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalTestRunInverseEdge>>>;
|
|
87909
|
+
pageInfo: PageInfo;
|
|
87910
|
+
};
|
|
87911
|
+
export declare type GraphStoreV2SimplifiedExternalUserUpdatedExternalTestRunInverseEdge = {
|
|
87912
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserUpdatedExternalTestRunInverseEdge';
|
|
87913
|
+
createdAt: Scalars['DateTime']['output'];
|
|
87914
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
87915
|
+
id: Scalars['ID']['output'];
|
|
87916
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
87917
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalTestRunInverseUnion>;
|
|
87918
|
+
};
|
|
87919
|
+
export declare type GraphStoreV2SimplifiedExternalUserUpdatedExternalTestRunInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
87920
|
+
export declare type GraphStoreV2SimplifiedExternalUserUpdatedExternalTestRunUnion = ExternalTestRun;
|
|
87921
|
+
export declare type GraphStoreV2SimplifiedExternalUserUpdatedExternalTestStatusConnection = HasPageInfo & {
|
|
87922
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserUpdatedExternalTestStatusConnection';
|
|
87923
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalTestStatusEdge>>>;
|
|
87924
|
+
pageInfo: PageInfo;
|
|
87925
|
+
};
|
|
87926
|
+
export declare type GraphStoreV2SimplifiedExternalUserUpdatedExternalTestStatusEdge = {
|
|
87927
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserUpdatedExternalTestStatusEdge';
|
|
87928
|
+
createdAt: Scalars['DateTime']['output'];
|
|
87929
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
87930
|
+
id: Scalars['ID']['output'];
|
|
87931
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
87932
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalTestStatusUnion>;
|
|
87933
|
+
};
|
|
87934
|
+
export declare type GraphStoreV2SimplifiedExternalUserUpdatedExternalTestStatusInverseConnection = HasPageInfo & {
|
|
87935
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserUpdatedExternalTestStatusInverseConnection';
|
|
87936
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalTestStatusInverseEdge>>>;
|
|
87937
|
+
pageInfo: PageInfo;
|
|
87938
|
+
};
|
|
87939
|
+
export declare type GraphStoreV2SimplifiedExternalUserUpdatedExternalTestStatusInverseEdge = {
|
|
87940
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserUpdatedExternalTestStatusInverseEdge';
|
|
87941
|
+
createdAt: Scalars['DateTime']['output'];
|
|
87942
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
87943
|
+
id: Scalars['ID']['output'];
|
|
87944
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
87945
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalTestStatusInverseUnion>;
|
|
87946
|
+
};
|
|
87947
|
+
export declare type GraphStoreV2SimplifiedExternalUserUpdatedExternalTestStatusInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
87948
|
+
export declare type GraphStoreV2SimplifiedExternalUserUpdatedExternalTestStatusUnion = ExternalTestStatus;
|
|
86106
87949
|
export declare type GraphStoreV2SimplifiedExternalUserUpdatedExternalTestUnion = ExternalTest;
|
|
86107
87950
|
export declare type GraphStoreV2SimplifiedExternalWorkerFillsExternalPositionConnection = HasPageInfo & {
|
|
86108
87951
|
__typename?: 'GraphStoreV2SimplifiedExternalWorkerFillsExternalPositionConnection';
|
|
@@ -86402,6 +88245,118 @@ export declare type GraphStoreV2SimplifiedFocusFocusAreaHasWorkEntityInverseEdge
|
|
|
86402
88245
|
};
|
|
86403
88246
|
export declare type GraphStoreV2SimplifiedFocusFocusAreaHasWorkEntityInverseUnion = MercuryFocusArea;
|
|
86404
88247
|
export declare type GraphStoreV2SimplifiedFocusFocusAreaHasWorkEntityUnion = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
88248
|
+
export declare type GraphStoreV2SimplifiedFocusStrategicPlanContributesToFocusFocusAreaConnection = HasPageInfo & {
|
|
88249
|
+
__typename?: 'GraphStoreV2SimplifiedFocusStrategicPlanContributesToFocusFocusAreaConnection';
|
|
88250
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedFocusStrategicPlanContributesToFocusFocusAreaEdge>>>;
|
|
88251
|
+
pageInfo: PageInfo;
|
|
88252
|
+
};
|
|
88253
|
+
export declare type GraphStoreV2SimplifiedFocusStrategicPlanContributesToFocusFocusAreaEdge = {
|
|
88254
|
+
__typename?: 'GraphStoreV2SimplifiedFocusStrategicPlanContributesToFocusFocusAreaEdge';
|
|
88255
|
+
createdAt: Scalars['DateTime']['output'];
|
|
88256
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
88257
|
+
id: Scalars['ID']['output'];
|
|
88258
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
88259
|
+
node?: Maybe<GraphStoreV2SimplifiedFocusStrategicPlanContributesToFocusFocusAreaUnion>;
|
|
88260
|
+
};
|
|
88261
|
+
export declare type GraphStoreV2SimplifiedFocusStrategicPlanContributesToFocusFocusAreaInverseConnection = HasPageInfo & {
|
|
88262
|
+
__typename?: 'GraphStoreV2SimplifiedFocusStrategicPlanContributesToFocusFocusAreaInverseConnection';
|
|
88263
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedFocusStrategicPlanContributesToFocusFocusAreaInverseEdge>>>;
|
|
88264
|
+
pageInfo: PageInfo;
|
|
88265
|
+
};
|
|
88266
|
+
export declare type GraphStoreV2SimplifiedFocusStrategicPlanContributesToFocusFocusAreaInverseEdge = {
|
|
88267
|
+
__typename?: 'GraphStoreV2SimplifiedFocusStrategicPlanContributesToFocusFocusAreaInverseEdge';
|
|
88268
|
+
createdAt: Scalars['DateTime']['output'];
|
|
88269
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
88270
|
+
id: Scalars['ID']['output'];
|
|
88271
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
88272
|
+
node?: Maybe<GraphStoreV2SimplifiedFocusStrategicPlanContributesToFocusFocusAreaInverseUnion>;
|
|
88273
|
+
};
|
|
88274
|
+
export declare type GraphStoreV2SimplifiedFocusStrategicPlanContributesToFocusFocusAreaInverseUnion = SpfPlan;
|
|
88275
|
+
export declare type GraphStoreV2SimplifiedFocusStrategicPlanContributesToFocusFocusAreaUnion = MercuryFocusArea;
|
|
88276
|
+
export declare type GraphStoreV2SimplifiedFocusStrategicPlanHasFocusStrategicPlanScenarioConnection = HasPageInfo & {
|
|
88277
|
+
__typename?: 'GraphStoreV2SimplifiedFocusStrategicPlanHasFocusStrategicPlanScenarioConnection';
|
|
88278
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedFocusStrategicPlanHasFocusStrategicPlanScenarioEdge>>>;
|
|
88279
|
+
pageInfo: PageInfo;
|
|
88280
|
+
};
|
|
88281
|
+
export declare type GraphStoreV2SimplifiedFocusStrategicPlanHasFocusStrategicPlanScenarioEdge = {
|
|
88282
|
+
__typename?: 'GraphStoreV2SimplifiedFocusStrategicPlanHasFocusStrategicPlanScenarioEdge';
|
|
88283
|
+
createdAt: Scalars['DateTime']['output'];
|
|
88284
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
88285
|
+
id: Scalars['ID']['output'];
|
|
88286
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
88287
|
+
node?: Maybe<GraphStoreV2SimplifiedFocusStrategicPlanHasFocusStrategicPlanScenarioUnion>;
|
|
88288
|
+
};
|
|
88289
|
+
export declare type GraphStoreV2SimplifiedFocusStrategicPlanHasFocusStrategicPlanScenarioInverseConnection = HasPageInfo & {
|
|
88290
|
+
__typename?: 'GraphStoreV2SimplifiedFocusStrategicPlanHasFocusStrategicPlanScenarioInverseConnection';
|
|
88291
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedFocusStrategicPlanHasFocusStrategicPlanScenarioInverseEdge>>>;
|
|
88292
|
+
pageInfo: PageInfo;
|
|
88293
|
+
};
|
|
88294
|
+
export declare type GraphStoreV2SimplifiedFocusStrategicPlanHasFocusStrategicPlanScenarioInverseEdge = {
|
|
88295
|
+
__typename?: 'GraphStoreV2SimplifiedFocusStrategicPlanHasFocusStrategicPlanScenarioInverseEdge';
|
|
88296
|
+
createdAt: Scalars['DateTime']['output'];
|
|
88297
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
88298
|
+
id: Scalars['ID']['output'];
|
|
88299
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
88300
|
+
node?: Maybe<GraphStoreV2SimplifiedFocusStrategicPlanHasFocusStrategicPlanScenarioInverseUnion>;
|
|
88301
|
+
};
|
|
88302
|
+
export declare type GraphStoreV2SimplifiedFocusStrategicPlanHasFocusStrategicPlanScenarioInverseUnion = SpfPlan;
|
|
88303
|
+
export declare type GraphStoreV2SimplifiedFocusStrategicPlanHasFocusStrategicPlanScenarioUnion = SpfPlanScenario;
|
|
88304
|
+
export declare type GraphStoreV2SimplifiedFocusStrategicPlanScenarioHasFocusStrategicPlanScenarioInvestmentConnection = HasPageInfo & {
|
|
88305
|
+
__typename?: 'GraphStoreV2SimplifiedFocusStrategicPlanScenarioHasFocusStrategicPlanScenarioInvestmentConnection';
|
|
88306
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedFocusStrategicPlanScenarioHasFocusStrategicPlanScenarioInvestmentEdge>>>;
|
|
88307
|
+
pageInfo: PageInfo;
|
|
88308
|
+
};
|
|
88309
|
+
export declare type GraphStoreV2SimplifiedFocusStrategicPlanScenarioHasFocusStrategicPlanScenarioInvestmentEdge = {
|
|
88310
|
+
__typename?: 'GraphStoreV2SimplifiedFocusStrategicPlanScenarioHasFocusStrategicPlanScenarioInvestmentEdge';
|
|
88311
|
+
createdAt: Scalars['DateTime']['output'];
|
|
88312
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
88313
|
+
id: Scalars['ID']['output'];
|
|
88314
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
88315
|
+
node?: Maybe<GraphStoreV2SimplifiedFocusStrategicPlanScenarioHasFocusStrategicPlanScenarioInvestmentUnion>;
|
|
88316
|
+
};
|
|
88317
|
+
export declare type GraphStoreV2SimplifiedFocusStrategicPlanScenarioHasFocusStrategicPlanScenarioInvestmentInverseConnection = HasPageInfo & {
|
|
88318
|
+
__typename?: 'GraphStoreV2SimplifiedFocusStrategicPlanScenarioHasFocusStrategicPlanScenarioInvestmentInverseConnection';
|
|
88319
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedFocusStrategicPlanScenarioHasFocusStrategicPlanScenarioInvestmentInverseEdge>>>;
|
|
88320
|
+
pageInfo: PageInfo;
|
|
88321
|
+
};
|
|
88322
|
+
export declare type GraphStoreV2SimplifiedFocusStrategicPlanScenarioHasFocusStrategicPlanScenarioInvestmentInverseEdge = {
|
|
88323
|
+
__typename?: 'GraphStoreV2SimplifiedFocusStrategicPlanScenarioHasFocusStrategicPlanScenarioInvestmentInverseEdge';
|
|
88324
|
+
createdAt: Scalars['DateTime']['output'];
|
|
88325
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
88326
|
+
id: Scalars['ID']['output'];
|
|
88327
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
88328
|
+
node?: Maybe<GraphStoreV2SimplifiedFocusStrategicPlanScenarioHasFocusStrategicPlanScenarioInvestmentInverseUnion>;
|
|
88329
|
+
};
|
|
88330
|
+
export declare type GraphStoreV2SimplifiedFocusStrategicPlanScenarioHasFocusStrategicPlanScenarioInvestmentInverseUnion = SpfPlanScenario;
|
|
88331
|
+
export declare type GraphStoreV2SimplifiedFocusStrategicPlanScenarioHasFocusStrategicPlanScenarioInvestmentUnion = SpfPlanScenarioInvestment;
|
|
88332
|
+
export declare type GraphStoreV2SimplifiedFocusStrategicPlanScenarioInvestmentHasInvestmentEntityConnection = HasPageInfo & {
|
|
88333
|
+
__typename?: 'GraphStoreV2SimplifiedFocusStrategicPlanScenarioInvestmentHasInvestmentEntityConnection';
|
|
88334
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedFocusStrategicPlanScenarioInvestmentHasInvestmentEntityEdge>>>;
|
|
88335
|
+
pageInfo: PageInfo;
|
|
88336
|
+
};
|
|
88337
|
+
export declare type GraphStoreV2SimplifiedFocusStrategicPlanScenarioInvestmentHasInvestmentEntityEdge = {
|
|
88338
|
+
__typename?: 'GraphStoreV2SimplifiedFocusStrategicPlanScenarioInvestmentHasInvestmentEntityEdge';
|
|
88339
|
+
createdAt: Scalars['DateTime']['output'];
|
|
88340
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
88341
|
+
id: Scalars['ID']['output'];
|
|
88342
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
88343
|
+
node?: Maybe<GraphStoreV2SimplifiedFocusStrategicPlanScenarioInvestmentHasInvestmentEntityUnion>;
|
|
88344
|
+
};
|
|
88345
|
+
export declare type GraphStoreV2SimplifiedFocusStrategicPlanScenarioInvestmentHasInvestmentEntityInverseConnection = HasPageInfo & {
|
|
88346
|
+
__typename?: 'GraphStoreV2SimplifiedFocusStrategicPlanScenarioInvestmentHasInvestmentEntityInverseConnection';
|
|
88347
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedFocusStrategicPlanScenarioInvestmentHasInvestmentEntityInverseEdge>>>;
|
|
88348
|
+
pageInfo: PageInfo;
|
|
88349
|
+
};
|
|
88350
|
+
export declare type GraphStoreV2SimplifiedFocusStrategicPlanScenarioInvestmentHasInvestmentEntityInverseEdge = {
|
|
88351
|
+
__typename?: 'GraphStoreV2SimplifiedFocusStrategicPlanScenarioInvestmentHasInvestmentEntityInverseEdge';
|
|
88352
|
+
createdAt: Scalars['DateTime']['output'];
|
|
88353
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
88354
|
+
id: Scalars['ID']['output'];
|
|
88355
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
88356
|
+
node?: Maybe<GraphStoreV2SimplifiedFocusStrategicPlanScenarioInvestmentHasInvestmentEntityInverseUnion>;
|
|
88357
|
+
};
|
|
88358
|
+
export declare type GraphStoreV2SimplifiedFocusStrategicPlanScenarioInvestmentHasInvestmentEntityInverseUnion = SpfPlanScenarioInvestment;
|
|
88359
|
+
export declare type GraphStoreV2SimplifiedFocusStrategicPlanScenarioInvestmentHasInvestmentEntityUnion = JiraAlignAggProject | MercuryFocusArea;
|
|
86405
88360
|
export declare type GraphStoreV2SimplifiedJiraEpicTracksAtlassianProjectConnection = HasPageInfo & {
|
|
86406
88361
|
__typename?: 'GraphStoreV2SimplifiedJiraEpicTracksAtlassianProjectConnection';
|
|
86407
88362
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraEpicTracksAtlassianProjectEdge>>>;
|
|
@@ -86462,6 +88417,34 @@ export declare type GraphStoreV2SimplifiedJiraSpaceExplicitlyLinksExternalReposi
|
|
|
86462
88417
|
};
|
|
86463
88418
|
export declare type GraphStoreV2SimplifiedJiraSpaceExplicitlyLinksExternalRepositoryInverseUnion = JiraProject;
|
|
86464
88419
|
export declare type GraphStoreV2SimplifiedJiraSpaceExplicitlyLinksExternalRepositoryUnion = DevOpsRepository | ExternalRepository;
|
|
88420
|
+
export declare type GraphStoreV2SimplifiedJiraSpaceHasAvpDashboardConnection = HasPageInfo & {
|
|
88421
|
+
__typename?: 'GraphStoreV2SimplifiedJiraSpaceHasAvpDashboardConnection';
|
|
88422
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraSpaceHasAvpDashboardEdge>>>;
|
|
88423
|
+
pageInfo: PageInfo;
|
|
88424
|
+
};
|
|
88425
|
+
export declare type GraphStoreV2SimplifiedJiraSpaceHasAvpDashboardEdge = {
|
|
88426
|
+
__typename?: 'GraphStoreV2SimplifiedJiraSpaceHasAvpDashboardEdge';
|
|
88427
|
+
createdAt: Scalars['DateTime']['output'];
|
|
88428
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
88429
|
+
id: Scalars['ID']['output'];
|
|
88430
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
88431
|
+
node?: Maybe<GraphStoreV2SimplifiedJiraSpaceHasAvpDashboardUnion>;
|
|
88432
|
+
};
|
|
88433
|
+
export declare type GraphStoreV2SimplifiedJiraSpaceHasAvpDashboardInverseConnection = HasPageInfo & {
|
|
88434
|
+
__typename?: 'GraphStoreV2SimplifiedJiraSpaceHasAvpDashboardInverseConnection';
|
|
88435
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraSpaceHasAvpDashboardInverseEdge>>>;
|
|
88436
|
+
pageInfo: PageInfo;
|
|
88437
|
+
};
|
|
88438
|
+
export declare type GraphStoreV2SimplifiedJiraSpaceHasAvpDashboardInverseEdge = {
|
|
88439
|
+
__typename?: 'GraphStoreV2SimplifiedJiraSpaceHasAvpDashboardInverseEdge';
|
|
88440
|
+
createdAt: Scalars['DateTime']['output'];
|
|
88441
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
88442
|
+
id: Scalars['ID']['output'];
|
|
88443
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
88444
|
+
node?: Maybe<GraphStoreV2SimplifiedJiraSpaceHasAvpDashboardInverseUnion>;
|
|
88445
|
+
};
|
|
88446
|
+
export declare type GraphStoreV2SimplifiedJiraSpaceHasAvpDashboardInverseUnion = JiraProject;
|
|
88447
|
+
export declare type GraphStoreV2SimplifiedJiraSpaceHasAvpDashboardUnion = AvpDashboard;
|
|
86465
88448
|
export declare type GraphStoreV2SimplifiedJiraSpaceHasJiraBoardConnection = HasPageInfo & {
|
|
86466
88449
|
__typename?: 'GraphStoreV2SimplifiedJiraSpaceHasJiraBoardConnection';
|
|
86467
88450
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraSpaceHasJiraBoardEdge>>>;
|
|
@@ -116533,6 +118516,97 @@ export declare type JpdViewUpdatedEvent = {
|
|
|
116533
118516
|
viewId: Scalars['Int']['output'];
|
|
116534
118517
|
viewUuid: Scalars['ID']['output'];
|
|
116535
118518
|
};
|
|
118519
|
+
export declare type JpdViewsServiceCreateGlobalViewInput = {
|
|
118520
|
+
cloudId: Scalars['String']['input'];
|
|
118521
|
+
name: Scalars['String']['input'];
|
|
118522
|
+
visualizationType: JpdViewsServiceVisualizationType;
|
|
118523
|
+
};
|
|
118524
|
+
export declare type JpdViewsServiceCreateGlobalViewPayload = Payload & {
|
|
118525
|
+
__typename?: 'JpdViewsServiceCreateGlobalViewPayload';
|
|
118526
|
+
errors?: Maybe<Array<MutationError>>;
|
|
118527
|
+
node?: Maybe<JpdViewsServiceGlobalView>;
|
|
118528
|
+
success: Scalars['Boolean']['output'];
|
|
118529
|
+
};
|
|
118530
|
+
export declare type JpdViewsServiceDeleteGlobalViewInput = {
|
|
118531
|
+
id: Scalars['ID']['input'];
|
|
118532
|
+
};
|
|
118533
|
+
export declare type JpdViewsServiceDeleteGlobalViewPayload = Payload & {
|
|
118534
|
+
__typename?: 'JpdViewsServiceDeleteGlobalViewPayload';
|
|
118535
|
+
deletedNodeId?: Maybe<Scalars['ID']['output']>;
|
|
118536
|
+
errors?: Maybe<Array<MutationError>>;
|
|
118537
|
+
success: Scalars['Boolean']['output'];
|
|
118538
|
+
};
|
|
118539
|
+
export declare type JpdViewsServiceGlobalView = JpdViewsServiceViewBase & Node & {
|
|
118540
|
+
__typename?: 'JpdViewsServiceGlobalView';
|
|
118541
|
+
id: Scalars['ID']['output'];
|
|
118542
|
+
name: Scalars['String']['output'];
|
|
118543
|
+
rank: Scalars['Int']['output'];
|
|
118544
|
+
visualizationType: JpdViewsServiceVisualizationType;
|
|
118545
|
+
};
|
|
118546
|
+
export declare type JpdViewsServiceGlobalViewConnection = {
|
|
118547
|
+
__typename?: 'JpdViewsServiceGlobalViewConnection';
|
|
118548
|
+
edges?: Maybe<Array<JpdViewsServiceGlobalViewEdge>>;
|
|
118549
|
+
pageInfo: PageInfo;
|
|
118550
|
+
};
|
|
118551
|
+
export declare type JpdViewsServiceGlobalViewEdge = {
|
|
118552
|
+
__typename?: 'JpdViewsServiceGlobalViewEdge';
|
|
118553
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
118554
|
+
node: JpdViewsServiceGlobalView;
|
|
118555
|
+
};
|
|
118556
|
+
export declare type JpdViewsServiceGlobalViewsByCriteriaInput = {
|
|
118557
|
+
containsText: Scalars['String']['input'];
|
|
118558
|
+
};
|
|
118559
|
+
export declare type JpdViewsServicePaginationInput = {
|
|
118560
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
118561
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
118562
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
118563
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
118564
|
+
};
|
|
118565
|
+
export declare type JpdViewsServiceRerankGlobalViewInput = {
|
|
118566
|
+
id: Scalars['ID']['input'];
|
|
118567
|
+
moveAfter?: InputMaybe<Scalars['ID']['input']>;
|
|
118568
|
+
};
|
|
118569
|
+
export declare type JpdViewsServiceRerankGlobalViewPayload = Payload & {
|
|
118570
|
+
__typename?: 'JpdViewsServiceRerankGlobalViewPayload';
|
|
118571
|
+
errors?: Maybe<Array<MutationError>>;
|
|
118572
|
+
success: Scalars['Boolean']['output'];
|
|
118573
|
+
};
|
|
118574
|
+
export declare type JpdViewsServiceSortByInput = {
|
|
118575
|
+
key?: InputMaybe<Scalars['String']['input']>;
|
|
118576
|
+
mode?: InputMaybe<JpdViewsServiceViewSortMode>;
|
|
118577
|
+
order?: InputMaybe<JpdViewsServiceSortOrder>;
|
|
118578
|
+
};
|
|
118579
|
+
export declare enum JpdViewsServiceSortOrder {
|
|
118580
|
+
Asc = "ASC",
|
|
118581
|
+
Desc = "DESC"
|
|
118582
|
+
}
|
|
118583
|
+
export declare type JpdViewsServiceUpdateGlobalViewInput = {
|
|
118584
|
+
id: Scalars['ID']['input'];
|
|
118585
|
+
name: Scalars['String']['input'];
|
|
118586
|
+
visualizationType: JpdViewsServiceVisualizationType;
|
|
118587
|
+
};
|
|
118588
|
+
export declare type JpdViewsServiceUpdateGlobalViewPayload = Payload & {
|
|
118589
|
+
__typename?: 'JpdViewsServiceUpdateGlobalViewPayload';
|
|
118590
|
+
errors?: Maybe<Array<MutationError>>;
|
|
118591
|
+
node?: Maybe<JpdViewsServiceGlobalView>;
|
|
118592
|
+
success: Scalars['Boolean']['output'];
|
|
118593
|
+
};
|
|
118594
|
+
export declare type JpdViewsServiceViewBase = {
|
|
118595
|
+
name: Scalars['String']['output'];
|
|
118596
|
+
rank: Scalars['Int']['output'];
|
|
118597
|
+
visualizationType: JpdViewsServiceVisualizationType;
|
|
118598
|
+
};
|
|
118599
|
+
export declare enum JpdViewsServiceViewSortMode {
|
|
118600
|
+
FieldsSort = "FIELDS_SORT",
|
|
118601
|
+
ProjectRank = "PROJECT_RANK",
|
|
118602
|
+
ViewRank = "VIEW_RANK"
|
|
118603
|
+
}
|
|
118604
|
+
export declare enum JpdViewsServiceVisualizationType {
|
|
118605
|
+
Board = "BOARD",
|
|
118606
|
+
List = "LIST",
|
|
118607
|
+
Matrix = "MATRIX",
|
|
118608
|
+
Timeline = "TIMELINE"
|
|
118609
|
+
}
|
|
116536
118610
|
export declare type JsmAgentWorkspaceLocations = {
|
|
116537
118611
|
__typename?: 'JsmAgentWorkspaceLocations';
|
|
116538
118612
|
errors?: Maybe<Array<QueryError>>;
|
|
@@ -117909,6 +119983,32 @@ export declare type KitsuneFeedbackSummary = {
|
|
|
117909
119983
|
generatedAt: Scalars['DateTime']['output'];
|
|
117910
119984
|
text: Scalars['String']['output'];
|
|
117911
119985
|
};
|
|
119986
|
+
export declare type KitsuneField = KitsuneNode & {
|
|
119987
|
+
__typename?: 'KitsuneField';
|
|
119988
|
+
_id: Scalars['ID']['output'];
|
|
119989
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
119990
|
+
name: Scalars['String']['output'];
|
|
119991
|
+
type: KitsuneFieldType;
|
|
119992
|
+
};
|
|
119993
|
+
export declare type KitsuneFieldConnection = KitsuneConnection & {
|
|
119994
|
+
__typename?: 'KitsuneFieldConnection';
|
|
119995
|
+
edges: Array<KitsuneFieldEdge>;
|
|
119996
|
+
pageInfo: PageInfo;
|
|
119997
|
+
};
|
|
119998
|
+
export declare type KitsuneFieldEdge = KitsuneEdge & {
|
|
119999
|
+
__typename?: 'KitsuneFieldEdge';
|
|
120000
|
+
cursor: Scalars['String']['output'];
|
|
120001
|
+
node?: Maybe<KitsuneField>;
|
|
120002
|
+
};
|
|
120003
|
+
export declare enum KitsuneFieldType {
|
|
120004
|
+
Content = "CONTENT",
|
|
120005
|
+
CreationDate = "CREATION_DATE",
|
|
120006
|
+
Creator = "CREATOR",
|
|
120007
|
+
Custom = "CUSTOM",
|
|
120008
|
+
Customer = "CUSTOMER",
|
|
120009
|
+
Reporter = "REPORTER",
|
|
120010
|
+
SourceCategory = "SOURCE_CATEGORY"
|
|
120011
|
+
}
|
|
117912
120012
|
export declare type KitsuneNode = {
|
|
117913
120013
|
_id: Scalars['ID']['output'];
|
|
117914
120014
|
};
|
|
@@ -117935,12 +120035,16 @@ export declare type KitsuneSourceInputWeb = {
|
|
|
117935
120035
|
export declare type KitsuneSpace = Node & {
|
|
117936
120036
|
__typename?: 'KitsuneSpace';
|
|
117937
120037
|
feedbacks: KitsuneFeedbackConnection;
|
|
120038
|
+
fields: KitsuneFieldConnection;
|
|
117938
120039
|
id: Scalars['ID']['output'];
|
|
117939
120040
|
name?: Maybe<Scalars['String']['output']>;
|
|
117940
120041
|
};
|
|
117941
120042
|
export declare type KitsuneSpaceFeedbacksArgs = {
|
|
117942
120043
|
pagination?: InputMaybe<KitsunePaginationInput>;
|
|
117943
120044
|
};
|
|
120045
|
+
export declare type KitsuneSpaceFieldsArgs = {
|
|
120046
|
+
pagination?: InputMaybe<KitsunePaginationInput>;
|
|
120047
|
+
};
|
|
117944
120048
|
export declare type KitsuneSpaceConnection = KitsuneConnection & {
|
|
117945
120049
|
__typename?: 'KitsuneSpaceConnection';
|
|
117946
120050
|
edges: Array<KitsuneSpaceEdge>;
|
|
@@ -117951,6 +120055,12 @@ export declare type KitsuneSpaceEdge = KitsuneEdge & {
|
|
|
117951
120055
|
cursor: Scalars['String']['output'];
|
|
117952
120056
|
node?: Maybe<KitsuneSpace>;
|
|
117953
120057
|
};
|
|
120058
|
+
export declare type KitsuneView = Node & {
|
|
120059
|
+
__typename?: 'KitsuneView';
|
|
120060
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
120061
|
+
id: Scalars['ID']['output'];
|
|
120062
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
120063
|
+
};
|
|
117954
120064
|
export declare type KitsuneViewConfig = KitsuneNode & {
|
|
117955
120065
|
__typename?: 'KitsuneViewConfig';
|
|
117956
120066
|
_id: Scalars['ID']['output'];
|
|
@@ -117961,6 +120071,11 @@ export declare enum KitsuneViewConfigStatus {
|
|
|
117961
120071
|
Published = "PUBLISHED",
|
|
117962
120072
|
Saved = "SAVED"
|
|
117963
120073
|
}
|
|
120074
|
+
export declare enum KitsuneViewType {
|
|
120075
|
+
Dashboard = "DASHBOARD",
|
|
120076
|
+
List = "LIST",
|
|
120077
|
+
Table = "TABLE"
|
|
120078
|
+
}
|
|
117964
120079
|
export declare type KnowledgeBaseAccessibleLinkedSourceResult = {
|
|
117965
120080
|
__typename?: 'KnowledgeBaseAccessibleLinkedSourceResult';
|
|
117966
120081
|
sourceARI?: Maybe<Scalars['ID']['output']>;
|
|
@@ -123443,6 +125558,16 @@ export declare type MenusLookAndFeel = {
|
|
|
123443
125558
|
hoverOrFocus?: Maybe<Array<Maybe<MapOfStringToString>>>;
|
|
123444
125559
|
};
|
|
123445
125560
|
export declare type MercuryActivityHistoryData = AppUser | AtlassianAccountUser | CustomerUser | JiraIssue | TownsquareGoal | TownsquareProject;
|
|
125561
|
+
export declare type MercuryAddCustomFieldDefinitionOptionsInput = {
|
|
125562
|
+
customFieldDefinitionId: Scalars['ID']['input'];
|
|
125563
|
+
options: Array<MercuryCustomSelectFieldOptionInput>;
|
|
125564
|
+
};
|
|
125565
|
+
export declare type MercuryAddCustomFieldDefinitionOptionsPayload = Payload & {
|
|
125566
|
+
__typename?: 'MercuryAddCustomFieldDefinitionOptionsPayload';
|
|
125567
|
+
customFieldDefinition?: Maybe<MercuryCustomFieldDefinition>;
|
|
125568
|
+
errors?: Maybe<Array<MutationError>>;
|
|
125569
|
+
success: Scalars['Boolean']['output'];
|
|
125570
|
+
};
|
|
123446
125571
|
export declare type MercuryAddTagsToProposalInput = {
|
|
123447
125572
|
changeProposalId: Scalars['ID']['input'];
|
|
123448
125573
|
tagIds: Array<Scalars['ID']['input']>;
|
|
@@ -123837,6 +125962,7 @@ export declare type MercuryCostSubtype = Node & {
|
|
|
123837
125962
|
createdDate?: Maybe<Scalars['String']['output']>;
|
|
123838
125963
|
description?: Maybe<Scalars['String']['output']>;
|
|
123839
125964
|
id: Scalars['ID']['output'];
|
|
125965
|
+
isDeletable?: Maybe<Scalars['Boolean']['output']>;
|
|
123840
125966
|
key: Scalars['String']['output'];
|
|
123841
125967
|
name: Scalars['String']['output'];
|
|
123842
125968
|
updatedBy?: Maybe<User>;
|
|
@@ -123985,6 +126111,17 @@ export declare type MercuryCreateFocusAreaCustomFieldDefinitionInput = {
|
|
|
123985
126111
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
123986
126112
|
coreCustomFieldDefinition?: InputMaybe<MercuryCreateCoreCustomFieldDefinitionInput>;
|
|
123987
126113
|
};
|
|
126114
|
+
export declare type MercuryCreateFocusAreaHierarchyInput = {
|
|
126115
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
126116
|
+
hierarchyTypeKey: MercuryFocusAreaHierarchyTypeKey;
|
|
126117
|
+
name: Scalars['String']['input'];
|
|
126118
|
+
};
|
|
126119
|
+
export declare type MercuryCreateFocusAreaHierarchyPayload = Payload & {
|
|
126120
|
+
__typename?: 'MercuryCreateFocusAreaHierarchyPayload';
|
|
126121
|
+
createdFocusAreaHierarchy?: Maybe<MercuryFocusAreaHierarchy>;
|
|
126122
|
+
errors?: Maybe<Array<MutationError>>;
|
|
126123
|
+
success: Scalars['Boolean']['output'];
|
|
126124
|
+
};
|
|
123988
126125
|
export declare type MercuryCreateFocusAreaInput = {
|
|
123989
126126
|
cloudId: Scalars['ID']['input'];
|
|
123990
126127
|
externalId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -124053,6 +126190,18 @@ export declare type MercuryCreatePortfolioPayload = Payload & {
|
|
|
124053
126190
|
errors?: Maybe<Array<MutationError>>;
|
|
124054
126191
|
success: Scalars['Boolean']['output'];
|
|
124055
126192
|
};
|
|
126193
|
+
export declare type MercuryCreateRiskInput = {
|
|
126194
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
126195
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
126196
|
+
name: Scalars['String']['input'];
|
|
126197
|
+
owner?: InputMaybe<Scalars['ID']['input']>;
|
|
126198
|
+
};
|
|
126199
|
+
export declare type MercuryCreateRiskPayload = Payload & {
|
|
126200
|
+
__typename?: 'MercuryCreateRiskPayload';
|
|
126201
|
+
createdRisk?: Maybe<MercuryRisk>;
|
|
126202
|
+
errors?: Maybe<Array<MutationError>>;
|
|
126203
|
+
success: Scalars['Boolean']['output'];
|
|
126204
|
+
};
|
|
124056
126205
|
export declare type MercuryCreateSingleSelectCustomFieldDefinitionInput = {
|
|
124057
126206
|
base: MercuryCreateBaseCustomFieldDefinitionInput;
|
|
124058
126207
|
options: Array<MercuryCustomSelectFieldOptionInput>;
|
|
@@ -124084,6 +126233,10 @@ export declare type MercuryCreateStrategicEventPayload = Payload & {
|
|
|
124084
126233
|
export declare type MercuryCreateTextCustomFieldDefinitionInput = {
|
|
124085
126234
|
base: MercuryCreateBaseCustomFieldDefinitionInput;
|
|
124086
126235
|
};
|
|
126236
|
+
export declare type MercuryCurrency = {
|
|
126237
|
+
__typename?: 'MercuryCurrency';
|
|
126238
|
+
code?: Maybe<Scalars['String']['output']>;
|
|
126239
|
+
};
|
|
124087
126240
|
export declare type MercuryCustomField = {
|
|
124088
126241
|
createdBy?: Maybe<User>;
|
|
124089
126242
|
createdDate: Scalars['DateTime']['output'];
|
|
@@ -124366,6 +126519,14 @@ export declare type MercuryDeletePreferencePayload = Payload & {
|
|
|
124366
126519
|
errors?: Maybe<Array<MutationError>>;
|
|
124367
126520
|
success: Scalars['Boolean']['output'];
|
|
124368
126521
|
};
|
|
126522
|
+
export declare type MercuryDeleteRiskInput = {
|
|
126523
|
+
id: Scalars['ID']['input'];
|
|
126524
|
+
};
|
|
126525
|
+
export declare type MercuryDeleteRiskPayload = Payload & {
|
|
126526
|
+
__typename?: 'MercuryDeleteRiskPayload';
|
|
126527
|
+
errors?: Maybe<Array<MutationError>>;
|
|
126528
|
+
success: Scalars['Boolean']['output'];
|
|
126529
|
+
};
|
|
124369
126530
|
export declare type MercuryDeleteStrategicEventCommentInput = {
|
|
124370
126531
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
124371
126532
|
id: Scalars['ID']['input'];
|
|
@@ -124470,6 +126631,7 @@ export declare type MercuryFocusArea = Node & {
|
|
|
124470
126631
|
icon: MercuryFocusAreaIcon;
|
|
124471
126632
|
id: Scalars['ID']['output'];
|
|
124472
126633
|
linkedGoalSummary?: Maybe<MercuryFocusAreaLinkedGoalSummary>;
|
|
126634
|
+
linkedGoals?: Maybe<GraphStoreSimplifiedFocusAreaHasAtlasGoalConnection>;
|
|
124473
126635
|
linkedWorkSummary?: Maybe<MercuryFocusAreaLinkedWorkSummary>;
|
|
124474
126636
|
name: Scalars['String']['output'];
|
|
124475
126637
|
owner?: Maybe<User>;
|
|
@@ -124491,6 +126653,12 @@ export declare type MercuryFocusAreaFocusAreaStatusUpdatesArgs = {
|
|
|
124491
126653
|
createdAtOrBefore?: InputMaybe<Scalars['DateTime']['input']>;
|
|
124492
126654
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
124493
126655
|
};
|
|
126656
|
+
export declare type MercuryFocusAreaLinkedGoalsArgs = {
|
|
126657
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
126658
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
126659
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
126660
|
+
sort?: InputMaybe<GraphStoreFocusAreaHasAtlasGoalSortInput>;
|
|
126661
|
+
};
|
|
124494
126662
|
export declare type MercuryFocusAreaSubFocusAreasArgs = {
|
|
124495
126663
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
124496
126664
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -124605,22 +126773,35 @@ export declare enum MercuryFocusAreaHealthColor {
|
|
|
124605
126773
|
Red = "RED",
|
|
124606
126774
|
Yellow = "YELLOW"
|
|
124607
126775
|
}
|
|
124608
|
-
export declare type
|
|
124609
|
-
__typename?: '
|
|
124610
|
-
|
|
124611
|
-
|
|
126776
|
+
export declare type MercuryFocusAreaHierarchy = Node & {
|
|
126777
|
+
__typename?: 'MercuryFocusAreaHierarchy';
|
|
126778
|
+
hierarchyTypeKey?: Maybe<MercuryFocusAreaHierarchyTypeKey>;
|
|
126779
|
+
id: Scalars['ID']['output'];
|
|
126780
|
+
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
126781
|
+
name: Scalars['String']['output'];
|
|
124612
126782
|
};
|
|
124613
|
-
export declare type
|
|
124614
|
-
|
|
126783
|
+
export declare type MercuryFocusAreaHierarchyConnection = {
|
|
126784
|
+
__typename?: 'MercuryFocusAreaHierarchyConnection';
|
|
126785
|
+
edges?: Maybe<Array<MercuryFocusAreaHierarchyEdge>>;
|
|
126786
|
+
pageInfo: PageInfo;
|
|
126787
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
126788
|
+
};
|
|
126789
|
+
export declare type MercuryFocusAreaHierarchyEdge = {
|
|
126790
|
+
__typename?: 'MercuryFocusAreaHierarchyEdge';
|
|
126791
|
+
cursor: Scalars['String']['output'];
|
|
126792
|
+
node?: Maybe<MercuryFocusAreaHierarchy>;
|
|
124615
126793
|
};
|
|
124616
126794
|
export declare type MercuryFocusAreaHierarchySort = {
|
|
124617
|
-
field
|
|
126795
|
+
field: MercuryFocusAreaHierarchySortField;
|
|
124618
126796
|
order: SortOrder;
|
|
124619
126797
|
};
|
|
124620
126798
|
export declare enum MercuryFocusAreaHierarchySortField {
|
|
124621
|
-
HierarchyLevel = "HIERARCHY_LEVEL",
|
|
124622
126799
|
Name = "NAME"
|
|
124623
126800
|
}
|
|
126801
|
+
export declare enum MercuryFocusAreaHierarchyTypeKey {
|
|
126802
|
+
Investment = "INVESTMENT",
|
|
126803
|
+
Portfolio = "PORTFOLIO"
|
|
126804
|
+
}
|
|
124624
126805
|
export declare type MercuryFocusAreaIcon = {
|
|
124625
126806
|
__typename?: 'MercuryFocusAreaIcon';
|
|
124626
126807
|
url: Scalars['String']['output'];
|
|
@@ -124856,6 +127037,9 @@ export declare type MercuryFocusAreaWorkContext = {
|
|
|
124856
127037
|
__typename?: 'MercuryFocusAreaWorkContext';
|
|
124857
127038
|
focusAreaLinkedWorkContext?: Maybe<Array<Maybe<MercuryFocusAreaLinkedWorkContextData>>>;
|
|
124858
127039
|
};
|
|
127040
|
+
export declare type MercuryForYouInsightsFilter = {
|
|
127041
|
+
insightType?: InputMaybe<MercuryInsightTypeEnum>;
|
|
127042
|
+
};
|
|
124859
127043
|
export declare type MercuryFundChangeSummary = {
|
|
124860
127044
|
__typename?: 'MercuryFundChangeSummary';
|
|
124861
127045
|
amount?: Maybe<MercuryFundChangeSummaryFields>;
|
|
@@ -124969,6 +127153,7 @@ export declare type MercuryFundsQueryApi = {
|
|
|
124969
127153
|
activeFiscalCalendarConfiguration?: Maybe<MercuryFiscalCalendarConfiguration>;
|
|
124970
127154
|
costSubtypes?: Maybe<Array<Maybe<MercuryCostSubtype>>>;
|
|
124971
127155
|
costSubtypesSearch?: Maybe<MercuryCostSubtypeConnection>;
|
|
127156
|
+
currencies?: Maybe<Array<MercuryCurrency>>;
|
|
124972
127157
|
fiscalCalendarConfiguration?: Maybe<MercuryFiscalCalendarConfiguration>;
|
|
124973
127158
|
fiscalCalendarConfigurations?: Maybe<Array<Maybe<MercuryFiscalCalendarConfiguration>>>;
|
|
124974
127159
|
fiscalCalendarConfigurationsSearch?: Maybe<MercuryFiscalCalendarConfigurationConnection>;
|
|
@@ -124990,6 +127175,9 @@ export declare type MercuryFundsQueryApiCostSubtypesSearchArgs = {
|
|
|
124990
127175
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
124991
127176
|
sort?: InputMaybe<Array<InputMaybe<MercuryCostSubtypeSort>>>;
|
|
124992
127177
|
};
|
|
127178
|
+
export declare type MercuryFundsQueryApiCurrenciesArgs = {
|
|
127179
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
127180
|
+
};
|
|
124993
127181
|
export declare type MercuryFundsQueryApiFiscalCalendarConfigurationArgs = {
|
|
124994
127182
|
id: Scalars['ID']['input'];
|
|
124995
127183
|
};
|
|
@@ -125003,6 +127191,7 @@ export declare type MercuryFundsQueryApiFiscalCalendarConfigurationsSearchArgs =
|
|
|
125003
127191
|
sort?: InputMaybe<Array<InputMaybe<MercuryFiscalCalendarConfigurationSort>>>;
|
|
125004
127192
|
};
|
|
125005
127193
|
export declare type MercuryFundsQueryApiFocusAreaMonthlySummariesArgs = {
|
|
127194
|
+
costType?: InputMaybe<MercuryCostType>;
|
|
125006
127195
|
endDateExclusive?: InputMaybe<Scalars['Date']['input']>;
|
|
125007
127196
|
focusAreaIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
125008
127197
|
startDateInclusive?: InputMaybe<Scalars['Date']['input']>;
|
|
@@ -125067,9 +127256,22 @@ export declare type MercuryInsight = {
|
|
|
125067
127256
|
title?: Maybe<Scalars['String']['output']>;
|
|
125068
127257
|
};
|
|
125069
127258
|
export declare type MercuryInsightObject = MercuryFocusAreaInsight | MercuryGoalInsight | MercuryJiraAlignProjectInsight | MercuryJiraIssueInsight | MercuryTownsquareProjectInsight;
|
|
127259
|
+
export declare type MercuryInsightObjectConnection = {
|
|
127260
|
+
__typename?: 'MercuryInsightObjectConnection';
|
|
127261
|
+
edges?: Maybe<Array<MercuryInsightObjectEdge>>;
|
|
127262
|
+
pageInfo: PageInfo;
|
|
127263
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
127264
|
+
};
|
|
127265
|
+
export declare type MercuryInsightObjectEdge = {
|
|
127266
|
+
__typename?: 'MercuryInsightObjectEdge';
|
|
127267
|
+
cursor: Scalars['String']['output'];
|
|
127268
|
+
node?: Maybe<MercuryInsightObject>;
|
|
127269
|
+
};
|
|
125070
127270
|
export declare enum MercuryInsightTypeEnum {
|
|
125071
127271
|
FocusArea = "FOCUS_AREA",
|
|
127272
|
+
Fund = "FUND",
|
|
125072
127273
|
Goal = "GOAL",
|
|
127274
|
+
Position = "POSITION",
|
|
125073
127275
|
Work = "WORK"
|
|
125074
127276
|
}
|
|
125075
127277
|
export declare type MercuryInsightsMutationApi = {
|
|
@@ -125084,6 +127286,7 @@ export declare type MercuryInsightsQueryApi = {
|
|
|
125084
127286
|
focusAreaFollowerSuggestions?: Maybe<Array<MercuryFocusAreaFollowerSuggestion>>;
|
|
125085
127287
|
focusAreaInsights?: Maybe<Array<MercuryInsightObject>>;
|
|
125086
127288
|
focusAreaWorkSuggestions?: Maybe<Array<MercuryWorkSuggestionsSearchItem>>;
|
|
127289
|
+
forYouInsights?: Maybe<MercuryInsightObjectConnection>;
|
|
125087
127290
|
};
|
|
125088
127291
|
export declare type MercuryInsightsQueryApiFocusAreaFollowerSuggestionsArgs = {
|
|
125089
127292
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -125099,6 +127302,12 @@ export declare type MercuryInsightsQueryApiFocusAreaWorkSuggestionsArgs = {
|
|
|
125099
127302
|
focusAreaId: Scalars['ID']['input'];
|
|
125100
127303
|
workContainerAri: Scalars['String']['input'];
|
|
125101
127304
|
};
|
|
127305
|
+
export declare type MercuryInsightsQueryApiForYouInsightsArgs = {
|
|
127306
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
127307
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
127308
|
+
filter?: InputMaybe<MercuryForYouInsightsFilter>;
|
|
127309
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
127310
|
+
};
|
|
125102
127311
|
export declare type MercuryIntegrationsContext = {
|
|
125103
127312
|
__typename?: 'MercuryIntegrationsContext';
|
|
125104
127313
|
passionfruit?: Maybe<MercuryPassionfruitContext>;
|
|
@@ -125110,6 +127319,7 @@ export declare type MercuryInvestmentCategory = Node & {
|
|
|
125110
127319
|
description?: Maybe<Scalars['String']['output']>;
|
|
125111
127320
|
id: Scalars['ID']['output'];
|
|
125112
127321
|
investmentCategorySetId: Scalars['ID']['output'];
|
|
127322
|
+
isDeletable?: Maybe<Scalars['Boolean']['output']>;
|
|
125113
127323
|
key: Scalars['String']['output'];
|
|
125114
127324
|
name: Scalars['String']['output'];
|
|
125115
127325
|
updatedBy?: Maybe<User>;
|
|
@@ -125399,12 +127609,14 @@ export declare type MercuryMultiSelectCustomFieldInput = {
|
|
|
125399
127609
|
};
|
|
125400
127610
|
export declare type MercuryMutationApi = {
|
|
125401
127611
|
__typename?: 'MercuryMutationApi';
|
|
127612
|
+
addFocusAreaCustomFieldDefinitionOptions?: Maybe<MercuryAddCustomFieldDefinitionOptionsPayload>;
|
|
125402
127613
|
addWatcherToFocusArea?: Maybe<MercuryAddWatcherToFocusAreaPayload>;
|
|
125403
127614
|
archiveFocusArea?: Maybe<MercuryArchiveFocusAreaPayload>;
|
|
125404
127615
|
assignUserAccessToFocusArea?: Maybe<MercuryAssignUserAccessToFocusAreaPayload>;
|
|
125405
127616
|
createComment?: Maybe<MercuryCreateCommentPayload>;
|
|
125406
127617
|
createFocusArea?: Maybe<MercuryCreateFocusAreaPayload>;
|
|
125407
127618
|
createFocusAreaCustomFieldDefinition?: Maybe<MercuryCreateCustomFieldDefinitionPayload>;
|
|
127619
|
+
createFocusAreaHierarchy?: Maybe<MercuryCreateFocusAreaHierarchyPayload>;
|
|
125408
127620
|
createFocusAreaStatusUpdate?: Maybe<MercuryCreateFocusAreaStatusUpdatePayload>;
|
|
125409
127621
|
createPortfolioWithFocusAreas?: Maybe<MercuryCreatePortfolioPayload>;
|
|
125410
127622
|
deleteAllPreferencesByUser?: Maybe<MercuryDeleteAllPreferencesByUserPayload>;
|
|
@@ -125428,7 +127640,6 @@ export declare type MercuryMutationApi = {
|
|
|
125428
127640
|
removeUserAccessToFocusArea?: Maybe<MercuryRemoveUserAccessToFocusAreaPayload>;
|
|
125429
127641
|
removeWatcherFromFocusArea?: Maybe<MercuryRemoveWatcherFromFocusAreaPayload>;
|
|
125430
127642
|
reorderFocusAreaCustomFieldDefinitionOptions?: Maybe<MercuryReorderCustomFieldDefinitionOptionsPayload>;
|
|
125431
|
-
setFocusAreaCustomFieldDefinitionOptions?: Maybe<MercurySetCustomFieldDefinitionOptionsPayload>;
|
|
125432
127643
|
setFocusAreaCustomFieldValue?: Maybe<MercurySetFocusAreaCustomFieldPayload>;
|
|
125433
127644
|
setFocusAreaCustomFieldValues?: Maybe<MercurySetFocusAreaCustomFieldsPayload>;
|
|
125434
127645
|
setPreference?: Maybe<MercurySetPreferencePayload>;
|
|
@@ -125439,6 +127650,7 @@ export declare type MercuryMutationApi = {
|
|
|
125439
127650
|
updateFocusAreaCustomFieldDefinitionDescription?: Maybe<MercuryUpdateCustomFieldDefinitionDescriptionPayload>;
|
|
125440
127651
|
updateFocusAreaCustomFieldDefinitionName?: Maybe<MercuryUpdateCustomFieldDefinitionNamePayload>;
|
|
125441
127652
|
updateFocusAreaCustomFieldDefinitionOption?: Maybe<MercuryUpdateCustomFieldDefinitionOptionPayload>;
|
|
127653
|
+
updateFocusAreaHierarchyName?: Maybe<MercuryUpdateFocusAreaHierarchyPayload>;
|
|
125442
127654
|
updateFocusAreaName?: Maybe<MercuryUpdateFocusAreaPayload>;
|
|
125443
127655
|
updateFocusAreaOwner?: Maybe<MercuryUpdateFocusAreaPayload>;
|
|
125444
127656
|
updateFocusAreaStatusUpdate?: Maybe<MercuryUpdateFocusAreaStatusUpdatePayload>;
|
|
@@ -125447,6 +127659,9 @@ export declare type MercuryMutationApi = {
|
|
|
125447
127659
|
validateFocusAreaArchival?: Maybe<MercuryArchiveFocusAreaValidationPayload>;
|
|
125448
127660
|
validateFocusAreasForRanking?: Maybe<MercuryValidateFocusAreasForRankingPayload>;
|
|
125449
127661
|
};
|
|
127662
|
+
export declare type MercuryMutationApiAddFocusAreaCustomFieldDefinitionOptionsArgs = {
|
|
127663
|
+
input: MercuryAddCustomFieldDefinitionOptionsInput;
|
|
127664
|
+
};
|
|
125450
127665
|
export declare type MercuryMutationApiAddWatcherToFocusAreaArgs = {
|
|
125451
127666
|
input: MercuryAddWatcherToFocusAreaInput;
|
|
125452
127667
|
};
|
|
@@ -125465,6 +127680,9 @@ export declare type MercuryMutationApiCreateFocusAreaArgs = {
|
|
|
125465
127680
|
export declare type MercuryMutationApiCreateFocusAreaCustomFieldDefinitionArgs = {
|
|
125466
127681
|
input: MercuryCreateFocusAreaCustomFieldDefinitionInput;
|
|
125467
127682
|
};
|
|
127683
|
+
export declare type MercuryMutationApiCreateFocusAreaHierarchyArgs = {
|
|
127684
|
+
input: MercuryCreateFocusAreaHierarchyInput;
|
|
127685
|
+
};
|
|
125468
127686
|
export declare type MercuryMutationApiCreateFocusAreaStatusUpdateArgs = {
|
|
125469
127687
|
input: MercuryCreateFocusAreaStatusUpdateInput;
|
|
125470
127688
|
};
|
|
@@ -125534,9 +127752,6 @@ export declare type MercuryMutationApiRemoveWatcherFromFocusAreaArgs = {
|
|
|
125534
127752
|
export declare type MercuryMutationApiReorderFocusAreaCustomFieldDefinitionOptionsArgs = {
|
|
125535
127753
|
input: MercuryReorderCustomFieldDefinitionOptionsInput;
|
|
125536
127754
|
};
|
|
125537
|
-
export declare type MercuryMutationApiSetFocusAreaCustomFieldDefinitionOptionsArgs = {
|
|
125538
|
-
input: MercurySetCustomFieldDefinitionOptionsInput;
|
|
125539
|
-
};
|
|
125540
127755
|
export declare type MercuryMutationApiSetFocusAreaCustomFieldValueArgs = {
|
|
125541
127756
|
input: MercurySetFocusAreaCustomFieldInput;
|
|
125542
127757
|
};
|
|
@@ -125567,6 +127782,9 @@ export declare type MercuryMutationApiUpdateFocusAreaCustomFieldDefinitionNameAr
|
|
|
125567
127782
|
export declare type MercuryMutationApiUpdateFocusAreaCustomFieldDefinitionOptionArgs = {
|
|
125568
127783
|
input: MercuryUpdateCustomFieldDefinitionOptionInput;
|
|
125569
127784
|
};
|
|
127785
|
+
export declare type MercuryMutationApiUpdateFocusAreaHierarchyNameArgs = {
|
|
127786
|
+
input: MercuryUpdateFocusAreaHierarchyNameInput;
|
|
127787
|
+
};
|
|
125570
127788
|
export declare type MercuryMutationApiUpdateFocusAreaNameArgs = {
|
|
125571
127789
|
input: MercuryUpdateFocusAreaNameInput;
|
|
125572
127790
|
};
|
|
@@ -126068,7 +128286,9 @@ export declare type MercuryQueryApi = {
|
|
|
126068
128286
|
focusArea?: Maybe<MercuryFocusArea>;
|
|
126069
128287
|
focusAreaActivityHistory?: Maybe<MercuryFocusAreaActivityConnection>;
|
|
126070
128288
|
focusAreaCustomFieldDefinitionsSearch?: Maybe<MercuryCustomFieldDefinitionConnection>;
|
|
126071
|
-
|
|
128289
|
+
focusAreaHierarchies?: Maybe<Array<MercuryFocusAreaHierarchy>>;
|
|
128290
|
+
focusAreaHierarchiesSearch?: Maybe<MercuryFocusAreaHierarchyConnection>;
|
|
128291
|
+
focusAreaHierarchy?: Maybe<MercuryFocusAreaHierarchy>;
|
|
126072
128292
|
focusAreaStatusTransitions?: Maybe<Array<MercuryFocusAreaStatusTransition>>;
|
|
126073
128293
|
focusAreaStatusUpdatesByAris?: Maybe<Array<MercuryFocusAreaStatusUpdate>>;
|
|
126074
128294
|
focusAreaTypes?: Maybe<Array<MercuryFocusAreaType>>;
|
|
@@ -126077,7 +128297,6 @@ export declare type MercuryQueryApi = {
|
|
|
126077
128297
|
focusAreasByAris?: Maybe<Array<MercuryFocusArea>>;
|
|
126078
128298
|
focusAreasByExternalIds?: Maybe<Array<Maybe<MercuryFocusArea>>>;
|
|
126079
128299
|
focusAreas_internalDoNotUse?: Maybe<MercuryFocusAreaConnection>;
|
|
126080
|
-
goalStatusAggregationsForAllFocusAreas?: Maybe<MercuryGoalStatusCount>;
|
|
126081
128300
|
mediaReadToken?: Maybe<MercuryMediaToken>;
|
|
126082
128301
|
mediaUploadToken?: Maybe<MercuryMediaToken>;
|
|
126083
128302
|
myPreference?: Maybe<MercuryPreference>;
|
|
@@ -126128,11 +128347,19 @@ export declare type MercuryQueryApiFocusAreaCustomFieldDefinitionsSearchArgs = {
|
|
|
126128
128347
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
126129
128348
|
sort?: InputMaybe<Array<InputMaybe<MercuryCustomFieldDefinitionSort>>>;
|
|
126130
128349
|
};
|
|
126131
|
-
export declare type
|
|
126132
|
-
|
|
126133
|
-
|
|
128350
|
+
export declare type MercuryQueryApiFocusAreaHierarchiesArgs = {
|
|
128351
|
+
ids: Array<Scalars['ID']['input']>;
|
|
128352
|
+
};
|
|
128353
|
+
export declare type MercuryQueryApiFocusAreaHierarchiesSearchArgs = {
|
|
128354
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
128355
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
128356
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
128357
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
126134
128358
|
sort?: InputMaybe<Array<InputMaybe<MercuryFocusAreaHierarchySort>>>;
|
|
126135
128359
|
};
|
|
128360
|
+
export declare type MercuryQueryApiFocusAreaHierarchyArgs = {
|
|
128361
|
+
id: Scalars['ID']['input'];
|
|
128362
|
+
};
|
|
126136
128363
|
export declare type MercuryQueryApiFocusAreaStatusTransitionsArgs = {
|
|
126137
128364
|
cloudId: Scalars['ID']['input'];
|
|
126138
128365
|
};
|
|
@@ -126165,9 +128392,6 @@ export declare type MercuryQueryApiFocusAreas_InternalDoNotUseArgs = {
|
|
|
126165
128392
|
hydrationContextId?: InputMaybe<Scalars['ID']['input']>;
|
|
126166
128393
|
sort?: InputMaybe<Array<InputMaybe<MercuryFocusAreaSort>>>;
|
|
126167
128394
|
};
|
|
126168
|
-
export declare type MercuryQueryApiGoalStatusAggregationsForAllFocusAreasArgs = {
|
|
126169
|
-
cloudId: Scalars['ID']['input'];
|
|
126170
|
-
};
|
|
126171
128395
|
export declare type MercuryQueryApiMediaReadTokenArgs = {
|
|
126172
128396
|
cloudId: Scalars['ID']['input'];
|
|
126173
128397
|
entityId: Scalars['ID']['input'];
|
|
@@ -126332,6 +128556,48 @@ export declare type MercuryRestrictedStrategicEventEdge = {
|
|
|
126332
128556
|
cursor: Scalars['String']['output'];
|
|
126333
128557
|
node?: Maybe<MercuryRestrictedStrategicEvent>;
|
|
126334
128558
|
};
|
|
128559
|
+
export declare type MercuryRisk = Node & {
|
|
128560
|
+
__typename?: 'MercuryRisk';
|
|
128561
|
+
createdDate: Scalars['String']['output'];
|
|
128562
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
128563
|
+
id: Scalars['ID']['output'];
|
|
128564
|
+
name: Scalars['String']['output'];
|
|
128565
|
+
owner?: Maybe<Scalars['ID']['output']>;
|
|
128566
|
+
};
|
|
128567
|
+
export declare type MercuryRisksMutationApi = {
|
|
128568
|
+
__typename?: 'MercuryRisksMutationApi';
|
|
128569
|
+
createRisk?: Maybe<MercuryCreateRiskPayload>;
|
|
128570
|
+
deleteRisk?: Maybe<MercuryDeleteRiskPayload>;
|
|
128571
|
+
updateRiskDescription?: Maybe<MercuryUpdateRiskPayload>;
|
|
128572
|
+
updateRiskName?: Maybe<MercuryUpdateRiskPayload>;
|
|
128573
|
+
updateRiskOwner?: Maybe<MercuryUpdateRiskPayload>;
|
|
128574
|
+
};
|
|
128575
|
+
export declare type MercuryRisksMutationApiCreateRiskArgs = {
|
|
128576
|
+
input: MercuryCreateRiskInput;
|
|
128577
|
+
};
|
|
128578
|
+
export declare type MercuryRisksMutationApiDeleteRiskArgs = {
|
|
128579
|
+
input: MercuryDeleteRiskInput;
|
|
128580
|
+
};
|
|
128581
|
+
export declare type MercuryRisksMutationApiUpdateRiskDescriptionArgs = {
|
|
128582
|
+
input: MercuryUpdateRiskDescriptionInput;
|
|
128583
|
+
};
|
|
128584
|
+
export declare type MercuryRisksMutationApiUpdateRiskNameArgs = {
|
|
128585
|
+
input: MercuryUpdateRiskNameInput;
|
|
128586
|
+
};
|
|
128587
|
+
export declare type MercuryRisksMutationApiUpdateRiskOwnerArgs = {
|
|
128588
|
+
input: MercuryUpdateRiskOwnerInput;
|
|
128589
|
+
};
|
|
128590
|
+
export declare type MercuryRisksQueryApi = {
|
|
128591
|
+
__typename?: 'MercuryRisksQueryApi';
|
|
128592
|
+
risk?: Maybe<MercuryRisk>;
|
|
128593
|
+
risks?: Maybe<Array<Maybe<MercuryRisk>>>;
|
|
128594
|
+
};
|
|
128595
|
+
export declare type MercuryRisksQueryApiRiskArgs = {
|
|
128596
|
+
id: Scalars['ID']['input'];
|
|
128597
|
+
};
|
|
128598
|
+
export declare type MercuryRisksQueryApiRisksArgs = {
|
|
128599
|
+
ids: Array<Scalars['ID']['input']>;
|
|
128600
|
+
};
|
|
126335
128601
|
export declare type MercurySetChangeProposalCustomFieldInput = {
|
|
126336
128602
|
changeProposalId: Scalars['ID']['input'];
|
|
126337
128603
|
coreField?: InputMaybe<MercuryCustomFieldInput>;
|
|
@@ -126343,16 +128609,6 @@ export declare type MercurySetChangeProposalCustomFieldPayload = Payload & {
|
|
|
126343
128609
|
errors?: Maybe<Array<MutationError>>;
|
|
126344
128610
|
success: Scalars['Boolean']['output'];
|
|
126345
128611
|
};
|
|
126346
|
-
export declare type MercurySetCustomFieldDefinitionOptionsInput = {
|
|
126347
|
-
customFieldDefinitionId: Scalars['ID']['input'];
|
|
126348
|
-
options: Array<MercuryCustomSelectFieldOptionInput>;
|
|
126349
|
-
};
|
|
126350
|
-
export declare type MercurySetCustomFieldDefinitionOptionsPayload = Payload & {
|
|
126351
|
-
__typename?: 'MercurySetCustomFieldDefinitionOptionsPayload';
|
|
126352
|
-
customFieldDefinition?: Maybe<MercuryCustomFieldDefinition>;
|
|
126353
|
-
errors?: Maybe<Array<MutationError>>;
|
|
126354
|
-
success: Scalars['Boolean']['output'];
|
|
126355
|
-
};
|
|
126356
128612
|
export declare type MercurySetFocusAreaCustomFieldInput = {
|
|
126357
128613
|
coreField?: InputMaybe<MercuryCustomFieldInput>;
|
|
126358
128614
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
@@ -126501,6 +128757,7 @@ export declare type MercuryStrategicEventStatusTransitions = {
|
|
|
126501
128757
|
};
|
|
126502
128758
|
export declare type MercuryStrategicEventsMutationApi = {
|
|
126503
128759
|
__typename?: 'MercuryStrategicEventsMutationApi';
|
|
128760
|
+
addChangeProposalCustomFieldDefinitionOptions?: Maybe<MercuryAddCustomFieldDefinitionOptionsPayload>;
|
|
126504
128761
|
addTagsToChangeProposal?: Maybe<MercuryAddTagsToProposalPayload>;
|
|
126505
128762
|
createChangeProposal?: Maybe<MercuryCreateChangeProposalPayload>;
|
|
126506
128763
|
createChangeProposalComment?: Maybe<MercuryCreateChangeProposalCommentPayload>;
|
|
@@ -126521,7 +128778,6 @@ export declare type MercuryStrategicEventsMutationApi = {
|
|
|
126521
128778
|
proposeChanges?: Maybe<MercuryProposeChangesPayload>;
|
|
126522
128779
|
removeTagsFromChangeProposal?: Maybe<MercuryRemoveTagsFromProposalPayload>;
|
|
126523
128780
|
reorderChangeProposalCustomFieldDefinitionOptions?: Maybe<MercuryReorderCustomFieldDefinitionOptionsPayload>;
|
|
126524
|
-
setChangeProposalCustomFieldDefinitionOptions?: Maybe<MercurySetCustomFieldDefinitionOptionsPayload>;
|
|
126525
128781
|
setChangeProposalCustomFieldValue?: Maybe<MercurySetChangeProposalCustomFieldPayload>;
|
|
126526
128782
|
transitionChangeProposalStatus?: Maybe<MercuryTransitionChangeProposalPayload>;
|
|
126527
128783
|
transitionStrategicEventStatus?: Maybe<MercuryTransitionStrategicEventPayload>;
|
|
@@ -126550,6 +128806,9 @@ export declare type MercuryStrategicEventsMutationApi = {
|
|
|
126550
128806
|
updateStrategicEventOwner?: Maybe<MercuryUpdateStrategicEventPayload>;
|
|
126551
128807
|
updateStrategicEventTargetDate?: Maybe<MercuryUpdateStrategicEventPayload>;
|
|
126552
128808
|
};
|
|
128809
|
+
export declare type MercuryStrategicEventsMutationApiAddChangeProposalCustomFieldDefinitionOptionsArgs = {
|
|
128810
|
+
input: MercuryAddCustomFieldDefinitionOptionsInput;
|
|
128811
|
+
};
|
|
126553
128812
|
export declare type MercuryStrategicEventsMutationApiAddTagsToChangeProposalArgs = {
|
|
126554
128813
|
input: MercuryAddTagsToProposalInput;
|
|
126555
128814
|
};
|
|
@@ -126610,9 +128869,6 @@ export declare type MercuryStrategicEventsMutationApiRemoveTagsFromChangeProposa
|
|
|
126610
128869
|
export declare type MercuryStrategicEventsMutationApiReorderChangeProposalCustomFieldDefinitionOptionsArgs = {
|
|
126611
128870
|
input: MercuryReorderCustomFieldDefinitionOptionsInput;
|
|
126612
128871
|
};
|
|
126613
|
-
export declare type MercuryStrategicEventsMutationApiSetChangeProposalCustomFieldDefinitionOptionsArgs = {
|
|
126614
|
-
input: MercurySetCustomFieldDefinitionOptionsInput;
|
|
126615
|
-
};
|
|
126616
128872
|
export declare type MercuryStrategicEventsMutationApiSetChangeProposalCustomFieldValueArgs = {
|
|
126617
128873
|
input: MercurySetChangeProposalCustomFieldInput;
|
|
126618
128874
|
};
|
|
@@ -127081,7 +129337,7 @@ export declare type MercuryUpdateCustomFieldDefinitionOptionInput = {
|
|
|
127081
129337
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
127082
129338
|
optionId: Scalars['ID']['input'];
|
|
127083
129339
|
settings?: InputMaybe<Array<MercuryCustomFieldSelectionOptionSettingInput>>;
|
|
127084
|
-
value
|
|
129340
|
+
value?: InputMaybe<Scalars['String']['input']>;
|
|
127085
129341
|
};
|
|
127086
129342
|
export declare type MercuryUpdateCustomFieldDefinitionOptionPayload = Payload & {
|
|
127087
129343
|
__typename?: 'MercuryUpdateCustomFieldDefinitionOptionPayload';
|
|
@@ -127094,6 +129350,16 @@ export declare type MercuryUpdateFocusAreaAboutContentInput = {
|
|
|
127094
129350
|
cloudId: Scalars['ID']['input'];
|
|
127095
129351
|
id: Scalars['ID']['input'];
|
|
127096
129352
|
};
|
|
129353
|
+
export declare type MercuryUpdateFocusAreaHierarchyNameInput = {
|
|
129354
|
+
id: Scalars['ID']['input'];
|
|
129355
|
+
name: Scalars['String']['input'];
|
|
129356
|
+
};
|
|
129357
|
+
export declare type MercuryUpdateFocusAreaHierarchyPayload = Payload & {
|
|
129358
|
+
__typename?: 'MercuryUpdateFocusAreaHierarchyPayload';
|
|
129359
|
+
errors?: Maybe<Array<MutationError>>;
|
|
129360
|
+
success: Scalars['Boolean']['output'];
|
|
129361
|
+
updatedFocusAreaHierarchy?: Maybe<MercuryFocusAreaHierarchy>;
|
|
129362
|
+
};
|
|
127097
129363
|
export declare type MercuryUpdateFocusAreaNameInput = {
|
|
127098
129364
|
cloudId: Scalars['ID']['input'];
|
|
127099
129365
|
id: Scalars['ID']['input'];
|
|
@@ -127192,6 +129458,24 @@ export declare type MercuryUpdateRequestPositionsChangeInput = {
|
|
|
127192
129458
|
positionsAmount?: InputMaybe<MercuryUpdateChangeQuantityInput>;
|
|
127193
129459
|
targetFocusAreaId?: InputMaybe<MercuryUpdateChangeFocusAreaInput>;
|
|
127194
129460
|
};
|
|
129461
|
+
export declare type MercuryUpdateRiskDescriptionInput = {
|
|
129462
|
+
description: Scalars['String']['input'];
|
|
129463
|
+
id: Scalars['ID']['input'];
|
|
129464
|
+
};
|
|
129465
|
+
export declare type MercuryUpdateRiskNameInput = {
|
|
129466
|
+
id: Scalars['ID']['input'];
|
|
129467
|
+
name: Scalars['String']['input'];
|
|
129468
|
+
};
|
|
129469
|
+
export declare type MercuryUpdateRiskOwnerInput = {
|
|
129470
|
+
id: Scalars['ID']['input'];
|
|
129471
|
+
owner: Scalars['ID']['input'];
|
|
129472
|
+
};
|
|
129473
|
+
export declare type MercuryUpdateRiskPayload = Payload & {
|
|
129474
|
+
__typename?: 'MercuryUpdateRiskPayload';
|
|
129475
|
+
errors?: Maybe<Array<MutationError>>;
|
|
129476
|
+
success: Scalars['Boolean']['output'];
|
|
129477
|
+
updatedRisk?: Maybe<MercuryRisk>;
|
|
129478
|
+
};
|
|
127195
129479
|
export declare type MercuryUpdateStrategicEventBudgetInput = {
|
|
127196
129480
|
budget?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
127197
129481
|
id: Scalars['ID']['input'];
|
|
@@ -127969,7 +130253,6 @@ export declare type Mutation = {
|
|
|
127969
130253
|
deletePolarisIdeaTemplate?: Maybe<DeletePolarisIdeaTemplatePayload>;
|
|
127970
130254
|
deletePolarisInsight?: Maybe<DeletePolarisInsightPayload>;
|
|
127971
130255
|
deletePolarisPlayContribution?: Maybe<DeletePolarisPlayContributionPayload>;
|
|
127972
|
-
deletePolarisViewSet?: Maybe<DeletePolarisViewSetPayload>;
|
|
127973
130256
|
deleteReaction?: Maybe<SaveReactionResponse>;
|
|
127974
130257
|
deleteRelation?: Maybe<DeleteRelationPayload>;
|
|
127975
130258
|
deleteSpaceDefaultClassificationLevel?: Maybe<DeleteSpaceDefaultClassificationLevelPayload>;
|
|
@@ -128208,7 +130491,11 @@ export declare type Mutation = {
|
|
|
128208
130491
|
jira_updateProjectBackground?: Maybe<JiraProjectUpdateBackgroundMutationPayload>;
|
|
128209
130492
|
jira_updateProjectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
|
|
128210
130493
|
jira_updateSchemeFieldPerWorkTypeCustomizations?: Maybe<JiraFieldWorkTypeConfigurationPayload>;
|
|
130494
|
+
jpdViewsService_createGlobalView?: Maybe<JpdViewsServiceCreateGlobalViewPayload>;
|
|
130495
|
+
jpdViewsService_deleteGlobalView?: Maybe<JpdViewsServiceDeleteGlobalViewPayload>;
|
|
128211
130496
|
jpdViewsService_echo?: Maybe<Scalars['String']['output']>;
|
|
130497
|
+
jpdViewsService_rerankGlobalView?: Maybe<JpdViewsServiceRerankGlobalViewPayload>;
|
|
130498
|
+
jpdViewsService_updateGlobalView?: Maybe<JpdViewsServiceUpdateGlobalViewPayload>;
|
|
128212
130499
|
jsmAgentWorkspace_updateLocations?: Maybe<Scalars['String']['output']>;
|
|
128213
130500
|
jsmChannels_establishConnection: JsmChannelsEstablishConnectionPayload;
|
|
128214
130501
|
jsmChannels_executeResolutionPlanAction: JsmChannelsResolutionPlanActionPayload;
|
|
@@ -128222,6 +130509,7 @@ export declare type Mutation = {
|
|
|
128222
130509
|
kitsune_createFeedback?: Maybe<KitsuneFeedback>;
|
|
128223
130510
|
kitsune_createSection?: Maybe<KitsuneSection>;
|
|
128224
130511
|
kitsune_createSpace?: Maybe<KitsuneSpace>;
|
|
130512
|
+
kitsune_createView?: Maybe<KitsuneView>;
|
|
128225
130513
|
kitsune_generateFeedbackSummary?: Maybe<Scalars['Boolean']['output']>;
|
|
128226
130514
|
kitsune_removeFeedback?: Maybe<Scalars['ID']['output']>;
|
|
128227
130515
|
kitsune_removeSection?: Maybe<KitsuneSection>;
|
|
@@ -128249,6 +130537,7 @@ export declare type Mutation = {
|
|
|
128249
130537
|
mercury_funds?: Maybe<MercuryFundsMutationApi>;
|
|
128250
130538
|
mercury_insights?: Maybe<MercuryInsightsMutationApi>;
|
|
128251
130539
|
mercury_providerOrchestration?: Maybe<MercuryProviderOrchestrationMutationApi>;
|
|
130540
|
+
mercury_risks?: Maybe<MercuryRisksMutationApi>;
|
|
128252
130541
|
mercury_strategicEvents?: Maybe<MercuryStrategicEventsMutationApi>;
|
|
128253
130542
|
migrateSpaceShortcuts?: Maybe<MigrateSpaceShortcutsPayload>;
|
|
128254
130543
|
moveBlog?: Maybe<MoveBlogPayload>;
|
|
@@ -128428,7 +130717,6 @@ export declare type Mutation = {
|
|
|
128428
130717
|
spf_deleteAskUpdate?: Maybe<SpfDeleteAskUpdatePayload>;
|
|
128429
130718
|
spf_deletePlan?: Maybe<SpfDeletePlanPayload>;
|
|
128430
130719
|
spf_deletePlanScenario?: Maybe<SpfDeletePlanScenarioPayload>;
|
|
128431
|
-
spf_deletePlanScenarioInvestment?: Maybe<SpfDeletePlanScenarioInvestmentPayload>;
|
|
128432
130720
|
spf_deletePlanScenarioInvestments?: Maybe<SpfDeletePlanScenarioInvestmentsPayload>;
|
|
128433
130721
|
spf_rejectProposedDate?: Maybe<SpfUpsertAskUpdatePayload>;
|
|
128434
130722
|
spf_removePlanApprover?: Maybe<SpfRemovePlanApproverPayload>;
|
|
@@ -130140,9 +132428,6 @@ export declare type MutationDeletePolarisInsightArgs = {
|
|
|
130140
132428
|
export declare type MutationDeletePolarisPlayContributionArgs = {
|
|
130141
132429
|
id: Scalars['ID']['input'];
|
|
130142
132430
|
};
|
|
130143
|
-
export declare type MutationDeletePolarisViewSetArgs = {
|
|
130144
|
-
id: Scalars['ID']['input'];
|
|
130145
|
-
};
|
|
130146
132431
|
export declare type MutationDeleteReactionArgs = {
|
|
130147
132432
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
130148
132433
|
containerId: Scalars['String']['input'];
|
|
@@ -130885,10 +133170,22 @@ export declare type MutationJira_UpdateSchemeFieldPerWorkTypeCustomizationsArgs
|
|
|
130885
133170
|
cloudId: Scalars['ID']['input'];
|
|
130886
133171
|
input?: InputMaybe<JiraFieldWorkTypeCustomizationsInput>;
|
|
130887
133172
|
};
|
|
133173
|
+
export declare type MutationJpdViewsService_CreateGlobalViewArgs = {
|
|
133174
|
+
input: JpdViewsServiceCreateGlobalViewInput;
|
|
133175
|
+
};
|
|
133176
|
+
export declare type MutationJpdViewsService_DeleteGlobalViewArgs = {
|
|
133177
|
+
input: JpdViewsServiceDeleteGlobalViewInput;
|
|
133178
|
+
};
|
|
130888
133179
|
export declare type MutationJpdViewsService_EchoArgs = {
|
|
130889
133180
|
cloudId: Scalars['ID']['input'];
|
|
130890
133181
|
message: Scalars['String']['input'];
|
|
130891
133182
|
};
|
|
133183
|
+
export declare type MutationJpdViewsService_RerankGlobalViewArgs = {
|
|
133184
|
+
input: JpdViewsServiceRerankGlobalViewInput;
|
|
133185
|
+
};
|
|
133186
|
+
export declare type MutationJpdViewsService_UpdateGlobalViewArgs = {
|
|
133187
|
+
input: JpdViewsServiceUpdateGlobalViewInput;
|
|
133188
|
+
};
|
|
130892
133189
|
export declare type MutationJsmChannels_EstablishConnectionArgs = {
|
|
130893
133190
|
input: JsmChannelsEstablishConnectionInput;
|
|
130894
133191
|
jiraProjectAri: Scalars['ID']['input'];
|
|
@@ -130934,6 +133231,13 @@ export declare type MutationKitsune_CreateSpaceArgs = {
|
|
|
130934
133231
|
name: Scalars['String']['input'];
|
|
130935
133232
|
workspaceAri: Scalars['ID']['input'];
|
|
130936
133233
|
};
|
|
133234
|
+
export declare type MutationKitsune_CreateViewArgs = {
|
|
133235
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
133236
|
+
name: Scalars['String']['input'];
|
|
133237
|
+
parentId?: InputMaybe<Scalars['ID']['input']>;
|
|
133238
|
+
spaceAri: Scalars['ID']['input'];
|
|
133239
|
+
type: KitsuneViewType;
|
|
133240
|
+
};
|
|
130937
133241
|
export declare type MutationKitsune_GenerateFeedbackSummaryArgs = {
|
|
130938
133242
|
feedbackAri: Scalars['ID']['input'];
|
|
130939
133243
|
};
|
|
@@ -131566,9 +133870,6 @@ export declare type MutationSpf_DeletePlanArgs = {
|
|
|
131566
133870
|
export declare type MutationSpf_DeletePlanScenarioArgs = {
|
|
131567
133871
|
input: SpfDeletePlanScenarioInput;
|
|
131568
133872
|
};
|
|
131569
|
-
export declare type MutationSpf_DeletePlanScenarioInvestmentArgs = {
|
|
131570
|
-
input: SpfDeletePlanScenarioInvestmentInput;
|
|
131571
|
-
};
|
|
131572
133873
|
export declare type MutationSpf_DeletePlanScenarioInvestmentsArgs = {
|
|
131573
133874
|
input: SpfDeletePlanScenarioInvestmentsInput;
|
|
131574
133875
|
};
|
|
@@ -135049,6 +137350,7 @@ export declare type Query = {
|
|
|
135049
137350
|
assetsDM_getDataSourceForCleansing?: Maybe<AssetsDmGetDataSourceForCleansingResponse>;
|
|
135050
137351
|
assetsDM_getMappingMatrix?: Maybe<AssetsDmMappingMatrixResponse>;
|
|
135051
137352
|
assetsDM_jobData?: Maybe<AssetsDmJobDataResponse>;
|
|
137353
|
+
assetsDM_jobExecutionHistory?: Maybe<AssetsDmJobExecutionsResponse>;
|
|
135052
137354
|
assetsDM_notifications?: Maybe<AssetsDmNotificationResponse>;
|
|
135053
137355
|
assetsDM_objectAttribute?: Maybe<AssetsDmObjectAttributeResponse>;
|
|
135054
137356
|
assetsDM_objectClassMetadata?: Maybe<AssetsDmObjectClassMetadata>;
|
|
@@ -135073,6 +137375,7 @@ export declare type Query = {
|
|
|
135073
137375
|
assets_objectsByAQL?: Maybe<AssetsObjectAqlResult>;
|
|
135074
137376
|
assets_objectsByIds?: Maybe<Array<Maybe<AssetsObject>>>;
|
|
135075
137377
|
assets_schemasByIds?: Maybe<Array<Maybe<AssetsSchema>>>;
|
|
137378
|
+
assets_serviceObjectByIds?: Maybe<Array<Maybe<AssetsServiceObject>>>;
|
|
135076
137379
|
atlasGoalsLinkedToJiraIssue?: Maybe<GraphStoreCypherQueryConnection>;
|
|
135077
137380
|
atlasProjectsLinkedToAtlasGoal?: Maybe<GraphStoreCypherQueryConnection>;
|
|
135078
137381
|
atlasProjectsLinkedToJiraIssue?: Maybe<GraphStoreCypherQueryConnection>;
|
|
@@ -135586,6 +137889,9 @@ export declare type Query = {
|
|
|
135586
137889
|
jira_versionsForProjectByKey?: Maybe<JiraVersionConnection>;
|
|
135587
137890
|
jira_view?: Maybe<JiraViewResult>;
|
|
135588
137891
|
jpdViewsService_echo?: Maybe<Scalars['String']['output']>;
|
|
137892
|
+
jpdViewsService_globalView?: Maybe<JpdViewsServiceGlobalView>;
|
|
137893
|
+
jpdViewsService_globalViewsByCriteria?: Maybe<JpdViewsServiceGlobalViewConnection>;
|
|
137894
|
+
jpdViewsService_globalViewsById?: Maybe<Array<Maybe<JpdViewsServiceGlobalView>>>;
|
|
135589
137895
|
jsmAgentWorkspace_locations?: Maybe<JsmAgentWorkspaceLocations>;
|
|
135590
137896
|
jsmChannels_conversationsByContainerAri?: Maybe<JsmChannelsConversationsByContainerAriResult>;
|
|
135591
137897
|
jsmChannels_conversationsByIds?: Maybe<Array<Maybe<JsmChannelsOrchestratorConversation>>>;
|
|
@@ -135606,6 +137912,7 @@ export declare type Query = {
|
|
|
135606
137912
|
kitsune_sections?: Maybe<Array<Maybe<KitsuneSection>>>;
|
|
135607
137913
|
kitsune_spaces?: Maybe<Array<Maybe<KitsuneSpace>>>;
|
|
135608
137914
|
kitsune_spacesForWorkspace?: Maybe<KitsuneSpaceConnection>;
|
|
137915
|
+
kitsune_views?: Maybe<Array<Maybe<KitsuneView>>>;
|
|
135609
137916
|
knowledgeBase?: Maybe<KnowledgeBaseQueryApi>;
|
|
135610
137917
|
knowledgeBaseSpacePermission_bulkQuery: Array<Maybe<KnowledgeBaseSpacePermissionQueryResponse>>;
|
|
135611
137918
|
knowledgeBase_agentSearch?: Maybe<KnowledgeBaseAgentArticleSearchResponse>;
|
|
@@ -135670,6 +137977,7 @@ export declare type Query = {
|
|
|
135670
137977
|
mercury_jiraProvider?: Maybe<MercuryJiraProviderQueryApi>;
|
|
135671
137978
|
mercury_normalizedWork?: Maybe<MercuryWorkNormalizationQueryApi>;
|
|
135672
137979
|
mercury_providerOrchestration?: Maybe<MercuryProviderOrchestrationQueryApi>;
|
|
137980
|
+
mercury_risks?: Maybe<MercuryRisksQueryApi>;
|
|
135673
137981
|
mercury_strategicEvents?: Maybe<MercuryStrategicEventsQueryApi>;
|
|
135674
137982
|
migration: MigrationQuery;
|
|
135675
137983
|
migrationCatalogue: MigrationCatalogueQuery;
|
|
@@ -136418,13 +138726,19 @@ export declare type QueryAgentWorkspace_AvailabilityArgs = {
|
|
|
136418
138726
|
input: AgentWorkspaceAvailabilityInput;
|
|
136419
138727
|
};
|
|
136420
138728
|
export declare type QueryAgentWorkspace_ScheduleArgs = {
|
|
136421
|
-
|
|
138729
|
+
cloudId: Scalars['ID']['input'];
|
|
138730
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
138731
|
+
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
136422
138732
|
scheduleId: Scalars['ID']['input'];
|
|
136423
138733
|
};
|
|
136424
138734
|
export declare type QueryAgentWorkspace_SchedulesArgs = {
|
|
136425
|
-
|
|
138735
|
+
cloudId: Scalars['ID']['input'];
|
|
138736
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
138737
|
+
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
136426
138738
|
};
|
|
136427
138739
|
export declare type QueryAgentWorkspace_ShiftsArgs = {
|
|
138740
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
138741
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
136428
138742
|
input: AgentWorkspaceShiftsQueryInput;
|
|
136429
138743
|
};
|
|
136430
138744
|
export declare type QueryAiCoreApi_VsaQuestionsByProjectArgs = {
|
|
@@ -136781,6 +139095,16 @@ export declare type QueryAssetsDm_JobDataArgs = {
|
|
|
136781
139095
|
searchGroups?: InputMaybe<Array<AssetsDmJobDataSearchGroup>>;
|
|
136782
139096
|
workspaceId: Scalars['ID']['input'];
|
|
136783
139097
|
};
|
|
139098
|
+
export declare type QueryAssetsDm_JobExecutionHistoryArgs = {
|
|
139099
|
+
cloudId: Scalars['ID']['input'];
|
|
139100
|
+
fromDate?: InputMaybe<Scalars['String']['input']>;
|
|
139101
|
+
orders?: InputMaybe<Scalars['String']['input']>;
|
|
139102
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
139103
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
139104
|
+
status?: InputMaybe<Scalars['String']['input']>;
|
|
139105
|
+
toDate?: InputMaybe<Scalars['String']['input']>;
|
|
139106
|
+
workspaceId: Scalars['ID']['input'];
|
|
139107
|
+
};
|
|
136784
139108
|
export declare type QueryAssetsDm_NotificationsArgs = {
|
|
136785
139109
|
cloudId: Scalars['ID']['input'];
|
|
136786
139110
|
payload: AssetsDmNotificationPayload;
|
|
@@ -136917,6 +139241,9 @@ export declare type QueryAssets_ObjectsByIdsArgs = {
|
|
|
136917
139241
|
export declare type QueryAssets_SchemasByIdsArgs = {
|
|
136918
139242
|
ids: Array<Scalars['ID']['input']>;
|
|
136919
139243
|
};
|
|
139244
|
+
export declare type QueryAssets_ServiceObjectByIdsArgs = {
|
|
139245
|
+
ids: Array<Scalars['ID']['input']>;
|
|
139246
|
+
};
|
|
136920
139247
|
export declare type QueryAtlasGoalsLinkedToJiraIssueArgs = {
|
|
136921
139248
|
issueId: Scalars['ID']['input'];
|
|
136922
139249
|
};
|
|
@@ -137329,6 +139656,7 @@ export declare type QueryConfluence_CommentMediaSessionArgs = {
|
|
|
137329
139656
|
};
|
|
137330
139657
|
export declare type QueryConfluence_ContentAiSummariesArgs = {
|
|
137331
139658
|
contentAris: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
139659
|
+
entryPoint?: InputMaybe<Scalars['String']['input']>;
|
|
137332
139660
|
objectType: KnowledgeGraphObjectType;
|
|
137333
139661
|
};
|
|
137334
139662
|
export declare type QueryConfluence_ContentAccessRequestByStatusArgs = {
|
|
@@ -139077,6 +141405,18 @@ export declare type QueryJpdViewsService_EchoArgs = {
|
|
|
139077
141405
|
cloudId: Scalars['ID']['input'];
|
|
139078
141406
|
message: Scalars['String']['input'];
|
|
139079
141407
|
};
|
|
141408
|
+
export declare type QueryJpdViewsService_GlobalViewArgs = {
|
|
141409
|
+
id: Scalars['ID']['input'];
|
|
141410
|
+
};
|
|
141411
|
+
export declare type QueryJpdViewsService_GlobalViewsByCriteriaArgs = {
|
|
141412
|
+
cloudId: Scalars['ID']['input'];
|
|
141413
|
+
filter?: InputMaybe<JpdViewsServiceGlobalViewsByCriteriaInput>;
|
|
141414
|
+
pagination: JpdViewsServicePaginationInput;
|
|
141415
|
+
sortBy?: InputMaybe<JpdViewsServiceSortByInput>;
|
|
141416
|
+
};
|
|
141417
|
+
export declare type QueryJpdViewsService_GlobalViewsByIdArgs = {
|
|
141418
|
+
ids: Array<Scalars['ID']['input']>;
|
|
141419
|
+
};
|
|
139080
141420
|
export declare type QueryJsmAgentWorkspace_LocationsArgs = {
|
|
139081
141421
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
139082
141422
|
cloudId: Scalars['ID']['input'];
|
|
@@ -139155,6 +141495,9 @@ export declare type QueryKitsune_SpacesForWorkspaceArgs = {
|
|
|
139155
141495
|
pagination?: InputMaybe<KitsunePaginationInput>;
|
|
139156
141496
|
workspaceAri: Scalars['ID']['input'];
|
|
139157
141497
|
};
|
|
141498
|
+
export declare type QueryKitsune_ViewsArgs = {
|
|
141499
|
+
ids: Array<Scalars['ID']['input']>;
|
|
141500
|
+
};
|
|
139158
141501
|
export declare type QueryKnowledgeBaseArgs = {
|
|
139159
141502
|
cloudId: Scalars['ID']['input'];
|
|
139160
141503
|
};
|
|
@@ -141288,6 +143631,7 @@ export declare enum RateLimitingCurrency {
|
|
|
141288
143631
|
HelpCenterCurrency = "HELP_CENTER_CURRENCY",
|
|
141289
143632
|
HelpLayoutCurrency = "HELP_LAYOUT_CURRENCY",
|
|
141290
143633
|
HelpObjectStoreCurrency = "HELP_OBJECT_STORE_CURRENCY",
|
|
143634
|
+
JpdContainerQueryCurrency = "JPD_CONTAINER_QUERY_CURRENCY",
|
|
141291
143635
|
KnowledgeBaseCurrency = "KNOWLEDGE_BASE_CURRENCY",
|
|
141292
143636
|
PolarisBetaUserCurrency = "POLARIS_BETA_USER_CURRENCY",
|
|
141293
143637
|
PolarisCollabTokenQueryCurrency = "POLARIS_COLLAB_TOKEN_QUERY_CURRENCY",
|
|
@@ -143015,6 +145359,11 @@ export declare type SearchCommonFilter = {
|
|
|
143015
145359
|
participants?: InputMaybe<SearchParticipants>;
|
|
143016
145360
|
range?: InputMaybe<SearchCommonRangeFilter>;
|
|
143017
145361
|
};
|
|
145362
|
+
export declare type SearchCommonFilterOutput = {
|
|
145363
|
+
__typename?: 'SearchCommonFilterOutput';
|
|
145364
|
+
participants?: Maybe<SearchParticipantsOutput>;
|
|
145365
|
+
range?: Maybe<SearchCommonRangeFilterOutput>;
|
|
145366
|
+
};
|
|
143018
145367
|
export declare type SearchCommonRangeFilter = {
|
|
143019
145368
|
created?: InputMaybe<SearchCommonRangeFilterFields>;
|
|
143020
145369
|
lastModified?: InputMaybe<SearchCommonRangeFilterFields>;
|
|
@@ -143023,6 +145372,15 @@ export declare type SearchCommonRangeFilterFields = {
|
|
|
143023
145372
|
gt?: InputMaybe<Scalars['String']['input']>;
|
|
143024
145373
|
lt?: InputMaybe<Scalars['String']['input']>;
|
|
143025
145374
|
};
|
|
145375
|
+
export declare type SearchCommonRangeFilterFieldsOutput = {
|
|
145376
|
+
__typename?: 'SearchCommonRangeFilterFieldsOutput';
|
|
145377
|
+
gt?: Maybe<Scalars['String']['output']>;
|
|
145378
|
+
lt?: Maybe<Scalars['String']['output']>;
|
|
145379
|
+
};
|
|
145380
|
+
export declare type SearchCommonRangeFilterOutput = {
|
|
145381
|
+
__typename?: 'SearchCommonRangeFilterOutput';
|
|
145382
|
+
lastModified?: Maybe<SearchCommonRangeFilterFieldsOutput>;
|
|
145383
|
+
};
|
|
143026
145384
|
export declare type SearchCompassComponentFilter = {
|
|
143027
145385
|
componentStates: Array<Scalars['String']['input']>;
|
|
143028
145386
|
};
|
|
@@ -143217,6 +145575,10 @@ export declare type SearchFilterInput = {
|
|
|
143217
145575
|
thirdPartyFilters?: InputMaybe<SearchThirdPartyFilter>;
|
|
143218
145576
|
trelloFilters?: InputMaybe<SearchTrelloFilter>;
|
|
143219
145577
|
};
|
|
145578
|
+
export declare type SearchFilterOutput = {
|
|
145579
|
+
__typename?: 'SearchFilterOutput';
|
|
145580
|
+
commonFilters?: Maybe<SearchCommonFilterOutput>;
|
|
145581
|
+
};
|
|
143220
145582
|
export declare type SearchFirstPartyMetadata = {
|
|
143221
145583
|
__typename?: 'SearchFirstPartyMetadata';
|
|
143222
145584
|
name: Scalars['String']['output'];
|
|
@@ -143261,6 +145623,7 @@ export declare enum SearchIssueStatusCategory {
|
|
|
143261
145623
|
export declare type SearchItemConnection = {
|
|
143262
145624
|
__typename?: 'SearchItemConnection';
|
|
143263
145625
|
abTest?: Maybe<SearchAbTest>;
|
|
145626
|
+
autoAppliedFilters?: Maybe<SearchFilterOutput>;
|
|
143264
145627
|
autocompleteSuggestions?: Maybe<Array<Scalars['String']['output']>>;
|
|
143265
145628
|
deferredEdges?: Maybe<Array<SearchResultItemEdge>>;
|
|
143266
145629
|
edges: Array<SearchResultItemEdge>;
|
|
@@ -143349,6 +145712,12 @@ export declare type SearchParticipant = {
|
|
|
143349
145712
|
type: SearchParticipantType;
|
|
143350
145713
|
users: Array<Scalars['ID']['input']>;
|
|
143351
145714
|
};
|
|
145715
|
+
export declare type SearchParticipantOutput = {
|
|
145716
|
+
__typename?: 'SearchParticipantOutput';
|
|
145717
|
+
combination: SearchCombinationType;
|
|
145718
|
+
type: SearchParticipantType;
|
|
145719
|
+
users: Array<Scalars['ID']['output']>;
|
|
145720
|
+
};
|
|
143352
145721
|
export declare enum SearchParticipantType {
|
|
143353
145722
|
Contributor = "CONTRIBUTOR",
|
|
143354
145723
|
Mentions = "MENTIONS",
|
|
@@ -143358,6 +145727,11 @@ export declare type SearchParticipants = {
|
|
|
143358
145727
|
combination: SearchCombinationType;
|
|
143359
145728
|
items: Array<SearchParticipant>;
|
|
143360
145729
|
};
|
|
145730
|
+
export declare type SearchParticipantsOutput = {
|
|
145731
|
+
__typename?: 'SearchParticipantsOutput';
|
|
145732
|
+
combination: SearchCombinationType;
|
|
145733
|
+
items?: Maybe<Array<SearchParticipantOutput>>;
|
|
145734
|
+
};
|
|
143361
145735
|
export declare type SearchProductCount = {
|
|
143362
145736
|
__typename?: 'SearchProductCount';
|
|
143363
145737
|
count: Scalars['Int']['output'];
|
|
@@ -164309,6 +166683,7 @@ export declare enum SpfAskActivityAttribute {
|
|
|
164309
166683
|
Name = "NAME",
|
|
164310
166684
|
Owner = "OWNER",
|
|
164311
166685
|
Priority = "PRIORITY",
|
|
166686
|
+
ProposedDate = "PROPOSED_DATE",
|
|
164312
166687
|
ReceivingTeam = "RECEIVING_TEAM",
|
|
164313
166688
|
Status = "STATUS",
|
|
164314
166689
|
Submitter = "SUBMITTER",
|
|
@@ -164650,15 +167025,6 @@ export declare type SpfDeletePlanPayload = Payload & {
|
|
|
164650
167025
|
export declare type SpfDeletePlanScenarioInput = {
|
|
164651
167026
|
id: Scalars['ID']['input'];
|
|
164652
167027
|
};
|
|
164653
|
-
export declare type SpfDeletePlanScenarioInvestmentInput = {
|
|
164654
|
-
id: Scalars['ID']['input'];
|
|
164655
|
-
};
|
|
164656
|
-
export declare type SpfDeletePlanScenarioInvestmentPayload = Payload & {
|
|
164657
|
-
__typename?: 'SpfDeletePlanScenarioInvestmentPayload';
|
|
164658
|
-
errors?: Maybe<Array<MutationError>>;
|
|
164659
|
-
id: Scalars['ID']['output'];
|
|
164660
|
-
success: Scalars['Boolean']['output'];
|
|
164661
|
-
};
|
|
164662
167028
|
export declare type SpfDeletePlanScenarioInvestmentsInput = {
|
|
164663
167029
|
ids: Array<Scalars['ID']['input']>;
|
|
164664
167030
|
};
|
|
@@ -165843,6 +168209,7 @@ export declare type StakeholderCommsPage = {
|
|
|
165843
168209
|
statusEmbedEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
165844
168210
|
subdomain?: Maybe<Scalars['String']['output']>;
|
|
165845
168211
|
timezone?: Maybe<Scalars['String']['output']>;
|
|
168212
|
+
unpublishedAt?: Maybe<Scalars['String']['output']>;
|
|
165846
168213
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
165847
168214
|
url?: Maybe<Scalars['String']['output']>;
|
|
165848
168215
|
version?: Maybe<Scalars['Int']['output']>;
|
|
@@ -171798,11 +174165,16 @@ export declare type TrelloAiRule = {
|
|
|
171798
174165
|
objectId: Scalars['ID']['output'];
|
|
171799
174166
|
position?: Maybe<Scalars['Float']['output']>;
|
|
171800
174167
|
rule?: Maybe<Scalars['String']['output']>;
|
|
174168
|
+
type?: Maybe<TrelloAiRuleType>;
|
|
171801
174169
|
};
|
|
171802
174170
|
export declare type TrelloAiRuleDeleted = {
|
|
171803
174171
|
__typename?: 'TrelloAiRuleDeleted';
|
|
171804
174172
|
id: Scalars['ID']['output'];
|
|
171805
174173
|
};
|
|
174174
|
+
export declare enum TrelloAiRuleType {
|
|
174175
|
+
PlannerScheduling = "PLANNER_SCHEDULING",
|
|
174176
|
+
PlannerSelection = "PLANNER_SELECTION"
|
|
174177
|
+
}
|
|
171806
174178
|
export declare type TrelloAppCreator = {
|
|
171807
174179
|
__typename?: 'TrelloAppCreator';
|
|
171808
174180
|
icon?: Maybe<TrelloApplicationIcon>;
|
|
@@ -171898,6 +174270,11 @@ export declare type TrelloArchiveCardPayload = Payload & {
|
|
|
171898
174270
|
errors?: Maybe<Array<MutationError>>;
|
|
171899
174271
|
success: Scalars['Boolean']['output'];
|
|
171900
174272
|
};
|
|
174273
|
+
export declare type TrelloAssignCardToPlannerCalendarEventFailure = {
|
|
174274
|
+
__typename?: 'TrelloAssignCardToPlannerCalendarEventFailure';
|
|
174275
|
+
cardId: Scalars['ID']['output'];
|
|
174276
|
+
message: Scalars['String']['output'];
|
|
174277
|
+
};
|
|
171901
174278
|
export declare type TrelloAssignCardToPlannerCalendarEventInput = {
|
|
171902
174279
|
cardId: Scalars['ID']['input'];
|
|
171903
174280
|
plannerCalendarId: Scalars['ID']['input'];
|
|
@@ -171911,6 +174288,20 @@ export declare type TrelloAssignCardToPlannerCalendarEventPayload = Payload & {
|
|
|
171911
174288
|
event?: Maybe<TrelloPlannerCalendarEvent>;
|
|
171912
174289
|
success: Scalars['Boolean']['output'];
|
|
171913
174290
|
};
|
|
174291
|
+
export declare type TrelloAssignCardsToPlannerCalendarEventInput = {
|
|
174292
|
+
cardIds: Array<Scalars['ID']['input']>;
|
|
174293
|
+
plannerCalendarId: Scalars['ID']['input'];
|
|
174294
|
+
position?: InputMaybe<Scalars['Float']['input']>;
|
|
174295
|
+
providerAccountId: Scalars['ID']['input'];
|
|
174296
|
+
providerEventId: Scalars['ID']['input'];
|
|
174297
|
+
};
|
|
174298
|
+
export declare type TrelloAssignCardsToPlannerCalendarEventPayload = Payload & {
|
|
174299
|
+
__typename?: 'TrelloAssignCardsToPlannerCalendarEventPayload';
|
|
174300
|
+
assignFailures?: Maybe<Array<TrelloAssignCardToPlannerCalendarEventFailure>>;
|
|
174301
|
+
errors?: Maybe<Array<MutationError>>;
|
|
174302
|
+
event?: Maybe<TrelloPlannerCalendarEvent>;
|
|
174303
|
+
success: Scalars['Boolean']['output'];
|
|
174304
|
+
};
|
|
171914
174305
|
export declare type TrelloAtlassianIntelligence = {
|
|
171915
174306
|
__typename?: 'TrelloAtlassianIntelligence';
|
|
171916
174307
|
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -173200,6 +175591,7 @@ export declare type TrelloCreateInboxCardActionDisplayEntities = {
|
|
|
173200
175591
|
export declare type TrelloCreateMemberAiRuleInput = {
|
|
173201
175592
|
position: Scalars['Float']['input'];
|
|
173202
175593
|
rule: Scalars['String']['input'];
|
|
175594
|
+
type?: InputMaybe<TrelloAiRuleType>;
|
|
173203
175595
|
};
|
|
173204
175596
|
export declare type TrelloCreateMemberAiRulePayload = Payload & {
|
|
173205
175597
|
__typename?: 'TrelloCreateMemberAiRulePayload';
|
|
@@ -173455,6 +175847,7 @@ export declare type TrelloEnterprisePrefs = {
|
|
|
173455
175847
|
};
|
|
173456
175848
|
export declare type TrelloGenerateBoardBackgroundWithAiInput = {
|
|
173457
175849
|
boardId: Scalars['ID']['input'];
|
|
175850
|
+
theme?: InputMaybe<Scalars['String']['input']>;
|
|
173458
175851
|
userInput: Scalars['String']['input'];
|
|
173459
175852
|
};
|
|
173460
175853
|
export declare type TrelloGenerateBoardBackgroundWithAiPayload = Payload & {
|
|
@@ -174128,6 +176521,7 @@ export declare type TrelloMutationApi = {
|
|
|
174128
176521
|
addWorkspaceTagToBoard?: Maybe<TrelloAddWorkspaceTagToBoardPayload>;
|
|
174129
176522
|
archiveCard?: Maybe<TrelloArchiveCardPayload>;
|
|
174130
176523
|
assignCardToPlannerCalendarEvent?: Maybe<TrelloAssignCardToPlannerCalendarEventPayload>;
|
|
176524
|
+
assignCardsToPlannerCalendarEvent?: Maybe<TrelloAssignCardsToPlannerCalendarEventPayload>;
|
|
174131
176525
|
createApplication?: Maybe<TrelloCreateApplicationPayload>;
|
|
174132
176526
|
createBoardWithAi?: Maybe<TrelloCreateBoardWithAiPayload>;
|
|
174133
176527
|
createCard?: Maybe<TrelloCreateCardPayload>;
|
|
@@ -174216,6 +176610,9 @@ export declare type TrelloMutationApiArchiveCardArgs = {
|
|
|
174216
176610
|
export declare type TrelloMutationApiAssignCardToPlannerCalendarEventArgs = {
|
|
174217
176611
|
input: TrelloAssignCardToPlannerCalendarEventInput;
|
|
174218
176612
|
};
|
|
176613
|
+
export declare type TrelloMutationApiAssignCardsToPlannerCalendarEventArgs = {
|
|
176614
|
+
input: TrelloAssignCardsToPlannerCalendarEventInput;
|
|
176615
|
+
};
|
|
174219
176616
|
export declare type TrelloMutationApiCreateApplicationArgs = {
|
|
174220
176617
|
input: TrelloCreateApplicationInput;
|
|
174221
176618
|
};
|