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