@forge/cli-shared 8.15.1-next.6 → 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 +14 -0
- package/out/graphql/graphql-types.d.ts +2667 -203
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +87 -26
- 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
|
};
|
|
@@ -1212,6 +1213,7 @@ export declare type ActionsAction = {
|
|
|
1212
1213
|
isConsequential: Scalars['Boolean']['output'];
|
|
1213
1214
|
name?: Maybe<Scalars['String']['output']>;
|
|
1214
1215
|
outputs?: Maybe<Array<ActionsActionTypeOutputTuple>>;
|
|
1216
|
+
productAri?: Maybe<Scalars['ID']['output']>;
|
|
1215
1217
|
schema?: Maybe<ActionsActionConfiguration>;
|
|
1216
1218
|
target?: Maybe<ActionsTargetInputs>;
|
|
1217
1219
|
uiSchema?: Maybe<ActionsConfigurationUiSchema>;
|
|
@@ -4214,6 +4216,7 @@ export declare type AgentWorkspaceAgent = {
|
|
|
4214
4216
|
__typename?: 'AgentWorkspaceAgent';
|
|
4215
4217
|
displayName: Scalars['String']['output'];
|
|
4216
4218
|
id: Scalars['ID']['output'];
|
|
4219
|
+
teamIds: Array<Scalars['ID']['output']>;
|
|
4217
4220
|
teamNames: Array<Scalars['String']['output']>;
|
|
4218
4221
|
};
|
|
4219
4222
|
export declare type AgentWorkspaceAgentAvailability = {
|
|
@@ -4245,9 +4248,11 @@ export declare type AgentWorkspaceAvailabilityConnection = {
|
|
|
4245
4248
|
};
|
|
4246
4249
|
export declare type AgentWorkspaceAvailabilityInput = {
|
|
4247
4250
|
agentIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
4251
|
+
cloudId: Scalars['ID']['input'];
|
|
4248
4252
|
page?: InputMaybe<Scalars['Int']['input']>;
|
|
4249
4253
|
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
4250
|
-
projectId
|
|
4254
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
4255
|
+
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
4251
4256
|
statuses?: InputMaybe<Array<AgentWorkspaceAvailabilityStatus>>;
|
|
4252
4257
|
teamIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
4253
4258
|
};
|
|
@@ -4272,14 +4277,15 @@ export declare type AgentWorkspaceAvailabilitySummary = {
|
|
|
4272
4277
|
};
|
|
4273
4278
|
export declare type AgentWorkspaceCreateScheduleInput = {
|
|
4274
4279
|
agentIds: Array<Scalars['ID']['input']>;
|
|
4280
|
+
cloudId: Scalars['ID']['input'];
|
|
4275
4281
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
4276
4282
|
effectiveUntil?: InputMaybe<Scalars['DateTime']['input']>;
|
|
4277
4283
|
endTime: Scalars['DateTime']['input'];
|
|
4278
4284
|
name: Scalars['String']['input'];
|
|
4279
|
-
projectId
|
|
4285
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
4286
|
+
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
4280
4287
|
recurrence?: InputMaybe<AgentWorkspaceRecurrenceRuleInput>;
|
|
4281
4288
|
startTime: Scalars['DateTime']['input'];
|
|
4282
|
-
teamId: Scalars['ID']['input'];
|
|
4283
4289
|
};
|
|
4284
4290
|
export declare type AgentWorkspaceCreateSchedulePayload = {
|
|
4285
4291
|
__typename?: 'AgentWorkspaceCreateSchedulePayload';
|
|
@@ -4297,7 +4303,9 @@ export declare enum AgentWorkspaceDayOfWeek {
|
|
|
4297
4303
|
Wednesday = "WEDNESDAY"
|
|
4298
4304
|
}
|
|
4299
4305
|
export declare type AgentWorkspaceDeleteScheduleInput = {
|
|
4300
|
-
|
|
4306
|
+
cloudId: Scalars['ID']['input'];
|
|
4307
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
4308
|
+
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
4301
4309
|
scheduleId: Scalars['ID']['input'];
|
|
4302
4310
|
};
|
|
4303
4311
|
export declare type AgentWorkspaceDeleteSchedulePayload = {
|
|
@@ -4341,6 +4349,7 @@ export declare type AgentWorkspaceRecurrenceRuleInput = {
|
|
|
4341
4349
|
export declare type AgentWorkspaceSchedule = {
|
|
4342
4350
|
__typename?: 'AgentWorkspaceSchedule';
|
|
4343
4351
|
agents: Array<AgentWorkspaceAgent>;
|
|
4352
|
+
cloudId: Scalars['ID']['output'];
|
|
4344
4353
|
createdAt: Scalars['DateTime']['output'];
|
|
4345
4354
|
createdBy: Scalars['String']['output'];
|
|
4346
4355
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -4349,12 +4358,11 @@ export declare type AgentWorkspaceSchedule = {
|
|
|
4349
4358
|
endTime: Scalars['DateTime']['output'];
|
|
4350
4359
|
id: Scalars['ID']['output'];
|
|
4351
4360
|
name: Scalars['String']['output'];
|
|
4352
|
-
projectId
|
|
4361
|
+
projectId?: Maybe<Scalars['ID']['output']>;
|
|
4362
|
+
projectKey?: Maybe<Scalars['String']['output']>;
|
|
4353
4363
|
recurrence?: Maybe<AgentWorkspaceRecurrenceRule>;
|
|
4354
4364
|
recurring: Scalars['Boolean']['output'];
|
|
4355
4365
|
startTime: Scalars['DateTime']['output'];
|
|
4356
|
-
teamId: Scalars['ID']['output'];
|
|
4357
|
-
teamName: Scalars['String']['output'];
|
|
4358
4366
|
updatedAt: Scalars['DateTime']['output'];
|
|
4359
4367
|
};
|
|
4360
4368
|
export declare type AgentWorkspaceScheduleError = {
|
|
@@ -4401,17 +4409,19 @@ export declare type AgentWorkspaceShiftsConnection = {
|
|
|
4401
4409
|
};
|
|
4402
4410
|
export declare type AgentWorkspaceShiftsMetadata = {
|
|
4403
4411
|
__typename?: 'AgentWorkspaceShiftsMetadata';
|
|
4412
|
+
cloudId: Scalars['ID']['output'];
|
|
4404
4413
|
endTime: Scalars['DateTime']['output'];
|
|
4405
4414
|
generatedAt: Scalars['DateTime']['output'];
|
|
4406
|
-
projectId
|
|
4415
|
+
projectId?: Maybe<Scalars['ID']['output']>;
|
|
4416
|
+
projectKey?: Maybe<Scalars['String']['output']>;
|
|
4407
4417
|
startTime: Scalars['DateTime']['output'];
|
|
4408
4418
|
};
|
|
4409
4419
|
export declare type AgentWorkspaceShiftsQueryInput = {
|
|
4410
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
4411
4420
|
agentIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
4421
|
+
cloudId: Scalars['ID']['input'];
|
|
4412
4422
|
endTime: Scalars['DateTime']['input'];
|
|
4413
|
-
|
|
4414
|
-
|
|
4423
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
4424
|
+
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
4415
4425
|
startTime: Scalars['DateTime']['input'];
|
|
4416
4426
|
teamIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
4417
4427
|
};
|
|
@@ -4424,16 +4434,17 @@ export declare type AgentWorkspaceShiftsSummary = {
|
|
|
4424
4434
|
};
|
|
4425
4435
|
export declare type AgentWorkspaceUpdateScheduleInput = {
|
|
4426
4436
|
agentIds: Array<Scalars['ID']['input']>;
|
|
4437
|
+
cloudId: Scalars['ID']['input'];
|
|
4427
4438
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
4428
4439
|
effectiveUntil?: InputMaybe<Scalars['DateTime']['input']>;
|
|
4429
4440
|
enabled: Scalars['Boolean']['input'];
|
|
4430
4441
|
endTime: Scalars['DateTime']['input'];
|
|
4431
4442
|
name: Scalars['String']['input'];
|
|
4432
|
-
projectId
|
|
4443
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
4444
|
+
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
4433
4445
|
recurrence?: InputMaybe<AgentWorkspaceRecurrenceRuleInput>;
|
|
4434
4446
|
scheduleId: Scalars['ID']['input'];
|
|
4435
4447
|
startTime: Scalars['DateTime']['input'];
|
|
4436
|
-
teamId: Scalars['ID']['input'];
|
|
4437
4448
|
};
|
|
4438
4449
|
export declare type AgentWorkspaceUpdateSchedulePayload = {
|
|
4439
4450
|
__typename?: 'AgentWorkspaceUpdateSchedulePayload';
|
|
@@ -6200,10 +6211,14 @@ export declare type ArjHierarchyConfigurationLevel = {
|
|
|
6200
6211
|
issueTypes?: Maybe<Array<Scalars['String']['output']>>;
|
|
6201
6212
|
title: Scalars['String']['output'];
|
|
6202
6213
|
};
|
|
6203
|
-
export declare type
|
|
6214
|
+
export declare type AssetsAriAttributeOnObject = {
|
|
6215
|
+
__typename?: 'AssetsARIAttributeOnObject';
|
|
6204
6216
|
attribute?: Maybe<AssetsObjectTypeAttribute>;
|
|
6205
6217
|
id: Scalars['ID']['output'];
|
|
6218
|
+
values?: Maybe<Array<AssetsAriAttributeValue>>;
|
|
6206
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;
|
|
6207
6222
|
export declare type AssetsAvatar = {
|
|
6208
6223
|
__typename?: 'AssetsAvatar';
|
|
6209
6224
|
url16?: Maybe<Scalars['String']['output']>;
|
|
@@ -6212,15 +6227,10 @@ export declare type AssetsAvatar = {
|
|
|
6212
6227
|
url144?: Maybe<Scalars['String']['output']>;
|
|
6213
6228
|
url288?: Maybe<Scalars['String']['output']>;
|
|
6214
6229
|
};
|
|
6215
|
-
export declare type AssetsBooleanAttributeOnObject =
|
|
6230
|
+
export declare type AssetsBooleanAttributeOnObject = {
|
|
6216
6231
|
__typename?: 'AssetsBooleanAttributeOnObject';
|
|
6217
6232
|
attribute?: Maybe<AssetsObjectTypeAttribute>;
|
|
6218
6233
|
id: Scalars['ID']['output'];
|
|
6219
|
-
values: Array<AssetsBooleanAttributeValue>;
|
|
6220
|
-
};
|
|
6221
|
-
export declare type AssetsBooleanAttributeValue = {
|
|
6222
|
-
__typename?: 'AssetsBooleanAttributeValue';
|
|
6223
|
-
displayValue: Scalars['String']['output'];
|
|
6224
6234
|
value?: Maybe<Scalars['Boolean']['output']>;
|
|
6225
6235
|
};
|
|
6226
6236
|
export declare type AssetsDmAdapter = {
|
|
@@ -7647,6 +7657,59 @@ export declare enum AssetsDmJobDataType {
|
|
|
7647
7657
|
Raw = "RAW",
|
|
7648
7658
|
Transformed = "TRANSFORMED"
|
|
7649
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
|
+
};
|
|
7650
7713
|
export declare type AssetsDmMappedColumn = {
|
|
7651
7714
|
__typename?: 'AssetsDMMappedColumn';
|
|
7652
7715
|
columnMappingId: Scalars['ID']['output'];
|
|
@@ -8255,74 +8318,45 @@ export declare type AssetsDmUpdateDefaultCleansingRuleResponse = {
|
|
|
8255
8318
|
isSuccessful: Scalars['Boolean']['output'];
|
|
8256
8319
|
message?: Maybe<Scalars['String']['output']>;
|
|
8257
8320
|
};
|
|
8258
|
-
export declare type AssetsDateAttributeOnObject =
|
|
8321
|
+
export declare type AssetsDateAttributeOnObject = {
|
|
8259
8322
|
__typename?: 'AssetsDateAttributeOnObject';
|
|
8260
8323
|
attribute?: Maybe<AssetsObjectTypeAttribute>;
|
|
8261
8324
|
id: Scalars['ID']['output'];
|
|
8262
|
-
|
|
8263
|
-
};
|
|
8264
|
-
export declare type AssetsDateAttributeValue = {
|
|
8265
|
-
__typename?: 'AssetsDateAttributeValue';
|
|
8266
|
-
displayValue: Scalars['String']['output'];
|
|
8325
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
8267
8326
|
};
|
|
8268
|
-
export declare type AssetsDatetimeAttributeOnObject =
|
|
8327
|
+
export declare type AssetsDatetimeAttributeOnObject = {
|
|
8269
8328
|
__typename?: 'AssetsDatetimeAttributeOnObject';
|
|
8270
8329
|
attribute?: Maybe<AssetsObjectTypeAttribute>;
|
|
8271
8330
|
id: Scalars['ID']['output'];
|
|
8272
|
-
values: Array<AssetsDatetimeAttributeValue>;
|
|
8273
|
-
};
|
|
8274
|
-
export declare type AssetsDatetimeAttributeValue = {
|
|
8275
|
-
__typename?: 'AssetsDatetimeAttributeValue';
|
|
8276
|
-
displayValue: Scalars['String']['output'];
|
|
8277
8331
|
value?: Maybe<Scalars['DateTime']['output']>;
|
|
8278
8332
|
};
|
|
8279
|
-
export declare type AssetsEmailAttributeOnObject =
|
|
8333
|
+
export declare type AssetsEmailAttributeOnObject = {
|
|
8280
8334
|
__typename?: 'AssetsEmailAttributeOnObject';
|
|
8281
8335
|
attribute?: Maybe<AssetsObjectTypeAttribute>;
|
|
8282
8336
|
id: Scalars['ID']['output'];
|
|
8283
|
-
|
|
8284
|
-
};
|
|
8285
|
-
export declare type AssetsEmailAttributeValue = {
|
|
8286
|
-
__typename?: 'AssetsEmailAttributeValue';
|
|
8287
|
-
displayValue: Scalars['String']['output'];
|
|
8288
|
-
value?: Maybe<Scalars['String']['output']>;
|
|
8337
|
+
value?: Maybe<Array<Scalars['String']['output']>>;
|
|
8289
8338
|
};
|
|
8290
|
-
export declare type AssetsFloatAttributeOnObject =
|
|
8339
|
+
export declare type AssetsFloatAttributeOnObject = {
|
|
8291
8340
|
__typename?: 'AssetsFloatAttributeOnObject';
|
|
8292
8341
|
attribute?: Maybe<AssetsObjectTypeAttribute>;
|
|
8293
8342
|
id: Scalars['ID']['output'];
|
|
8294
|
-
values: Array<AssetsFloatAttributeValue>;
|
|
8295
|
-
};
|
|
8296
|
-
export declare type AssetsFloatAttributeValue = {
|
|
8297
|
-
__typename?: 'AssetsFloatAttributeValue';
|
|
8298
|
-
displayValue: Scalars['String']['output'];
|
|
8299
8343
|
value?: Maybe<Scalars['Float']['output']>;
|
|
8300
8344
|
};
|
|
8301
|
-
export declare type AssetsGroupAttributeOnObject =
|
|
8345
|
+
export declare type AssetsGroupAttributeOnObject = {
|
|
8302
8346
|
__typename?: 'AssetsGroupAttributeOnObject';
|
|
8303
8347
|
attribute?: Maybe<AssetsObjectTypeAttribute>;
|
|
8304
8348
|
id: Scalars['ID']['output'];
|
|
8305
|
-
|
|
8349
|
+
value?: Maybe<Array<AssetsGroupAttributeValue>>;
|
|
8306
8350
|
};
|
|
8307
8351
|
export declare type AssetsGroupAttributeValue = {
|
|
8308
8352
|
__typename?: 'AssetsGroupAttributeValue';
|
|
8309
|
-
displayValue: Scalars['String']['output'];
|
|
8310
|
-
value?: Maybe<AssetsGroupValueData>;
|
|
8311
|
-
};
|
|
8312
|
-
export declare type AssetsGroupValueData = {
|
|
8313
|
-
__typename?: 'AssetsGroupValueData';
|
|
8314
8353
|
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
8315
8354
|
name?: Maybe<Scalars['String']['output']>;
|
|
8316
8355
|
};
|
|
8317
|
-
export declare type AssetsIpAddressAttributeOnObject =
|
|
8356
|
+
export declare type AssetsIpAddressAttributeOnObject = {
|
|
8318
8357
|
__typename?: 'AssetsIPAddressAttributeOnObject';
|
|
8319
8358
|
attribute?: Maybe<AssetsObjectTypeAttribute>;
|
|
8320
8359
|
id: Scalars['ID']['output'];
|
|
8321
|
-
values: Array<AssetsIpAddressAttributeValue>;
|
|
8322
|
-
};
|
|
8323
|
-
export declare type AssetsIpAddressAttributeValue = {
|
|
8324
|
-
__typename?: 'AssetsIPAddressAttributeValue';
|
|
8325
|
-
displayValue: Scalars['String']['output'];
|
|
8326
8360
|
value?: Maybe<Scalars['String']['output']>;
|
|
8327
8361
|
};
|
|
8328
8362
|
export declare type AssetsIcon = {
|
|
@@ -8331,15 +8365,10 @@ export declare type AssetsIcon = {
|
|
|
8331
8365
|
url16?: Maybe<Scalars['String']['output']>;
|
|
8332
8366
|
url48?: Maybe<Scalars['String']['output']>;
|
|
8333
8367
|
};
|
|
8334
|
-
export declare type AssetsIntegerAttributeOnObject =
|
|
8368
|
+
export declare type AssetsIntegerAttributeOnObject = {
|
|
8335
8369
|
__typename?: 'AssetsIntegerAttributeOnObject';
|
|
8336
8370
|
attribute?: Maybe<AssetsObjectTypeAttribute>;
|
|
8337
8371
|
id: Scalars['ID']['output'];
|
|
8338
|
-
values: Array<AssetsIntegerAttributeValue>;
|
|
8339
|
-
};
|
|
8340
|
-
export declare type AssetsIntegerAttributeValue = {
|
|
8341
|
-
__typename?: 'AssetsIntegerAttributeValue';
|
|
8342
|
-
displayValue: Scalars['String']['output'];
|
|
8343
8372
|
value?: Maybe<Scalars['Int']['output']>;
|
|
8344
8373
|
};
|
|
8345
8374
|
export declare type AssetsLinks = {
|
|
@@ -8391,16 +8420,11 @@ export declare type AssetsObjectNode = {
|
|
|
8391
8420
|
export declare type AssetsObjectNodeAttributesArgs = {
|
|
8392
8421
|
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
8393
8422
|
};
|
|
8394
|
-
export declare type AssetsObjectReferenceAttributeOnObject =
|
|
8423
|
+
export declare type AssetsObjectReferenceAttributeOnObject = {
|
|
8395
8424
|
__typename?: 'AssetsObjectReferenceAttributeOnObject';
|
|
8396
8425
|
attribute?: Maybe<AssetsObjectAttribute>;
|
|
8397
8426
|
id: Scalars['ID']['output'];
|
|
8398
|
-
|
|
8399
|
-
};
|
|
8400
|
-
export declare type AssetsObjectReferenceAttributeValue = {
|
|
8401
|
-
__typename?: 'AssetsObjectReferenceAttributeValue';
|
|
8402
|
-
displayValue: Scalars['String']['output'];
|
|
8403
|
-
value?: Maybe<AssetsObjectNode>;
|
|
8427
|
+
value?: Maybe<Array<AssetsObjectNode>>;
|
|
8404
8428
|
};
|
|
8405
8429
|
export declare type AssetsObjectType = Node & {
|
|
8406
8430
|
__typename?: 'AssetsObjectType';
|
|
@@ -8435,22 +8459,18 @@ export declare type AssetsSelectAttribute = AssetsObjectTypeAttribute & {
|
|
|
8435
8459
|
name?: Maybe<Scalars['String']['output']>;
|
|
8436
8460
|
options?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
8437
8461
|
};
|
|
8438
|
-
export declare type AssetsSelectAttributeOnObject =
|
|
8462
|
+
export declare type AssetsSelectAttributeOnObject = {
|
|
8439
8463
|
__typename?: 'AssetsSelectAttributeOnObject';
|
|
8440
8464
|
attribute?: Maybe<AssetsSelectAttribute>;
|
|
8441
8465
|
id: Scalars['ID']['output'];
|
|
8442
|
-
|
|
8443
|
-
};
|
|
8444
|
-
export declare type AssetsSelectAttributeValue = {
|
|
8445
|
-
__typename?: 'AssetsSelectAttributeValue';
|
|
8446
|
-
displayValue: Scalars['String']['output'];
|
|
8447
|
-
value?: Maybe<Scalars['String']['output']>;
|
|
8466
|
+
value?: Maybe<Array<Scalars['String']['output']>>;
|
|
8448
8467
|
};
|
|
8449
|
-
export declare type AssetsServiceObject = AssetsObjectNode & {
|
|
8468
|
+
export declare type AssetsServiceObject = AssetsObjectNode & Node & {
|
|
8450
8469
|
__typename?: 'AssetsServiceObject';
|
|
8451
8470
|
alertCount?: Maybe<Scalars['Int']['output']>;
|
|
8452
8471
|
attributes?: Maybe<Array<Maybe<AssetsAttributeOnObject>>>;
|
|
8453
8472
|
avatar?: Maybe<AssetsAvatar>;
|
|
8473
|
+
changeCount?: Maybe<Scalars['Int']['output']>;
|
|
8454
8474
|
created?: Maybe<Scalars['DateTime']['output']>;
|
|
8455
8475
|
id: Scalars['ID']['output'];
|
|
8456
8476
|
inboundDependencyCount?: Maybe<Scalars['Int']['output']>;
|
|
@@ -8466,19 +8486,14 @@ export declare type AssetsServiceObject = AssetsObjectNode & {
|
|
|
8466
8486
|
export declare type AssetsServiceObjectAttributesArgs = {
|
|
8467
8487
|
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
8468
8488
|
};
|
|
8469
|
-
export declare type AssetsSpaceAttributeOnObject =
|
|
8489
|
+
export declare type AssetsSpaceAttributeOnObject = {
|
|
8470
8490
|
__typename?: 'AssetsSpaceAttributeOnObject';
|
|
8471
8491
|
attribute?: Maybe<AssetsObjectTypeAttribute>;
|
|
8472
8492
|
id: Scalars['ID']['output'];
|
|
8473
|
-
|
|
8493
|
+
value?: Maybe<Array<AssetsSpaceAttributeValue>>;
|
|
8474
8494
|
};
|
|
8475
8495
|
export declare type AssetsSpaceAttributeValue = {
|
|
8476
8496
|
__typename?: 'AssetsSpaceAttributeValue';
|
|
8477
|
-
displayValue: Scalars['String']['output'];
|
|
8478
|
-
value?: Maybe<AssetsSpaceValueData>;
|
|
8479
|
-
};
|
|
8480
|
-
export declare type AssetsSpaceValueData = {
|
|
8481
|
-
__typename?: 'AssetsSpaceValueData';
|
|
8482
8497
|
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
8483
8498
|
id: Scalars['ID']['output'];
|
|
8484
8499
|
key?: Maybe<Scalars['String']['output']>;
|
|
@@ -8490,16 +8505,11 @@ export declare type AssetsStatusAttribute = AssetsObjectTypeAttribute & {
|
|
|
8490
8505
|
id: Scalars['ID']['output'];
|
|
8491
8506
|
name?: Maybe<Scalars['String']['output']>;
|
|
8492
8507
|
};
|
|
8493
|
-
export declare type AssetsStatusAttributeOnObject =
|
|
8508
|
+
export declare type AssetsStatusAttributeOnObject = {
|
|
8494
8509
|
__typename?: 'AssetsStatusAttributeOnObject';
|
|
8495
8510
|
attribute?: Maybe<AssetsStatusAttribute>;
|
|
8496
8511
|
id: Scalars['ID']['output'];
|
|
8497
|
-
|
|
8498
|
-
};
|
|
8499
|
-
export declare type AssetsStatusAttributeValue = {
|
|
8500
|
-
__typename?: 'AssetsStatusAttributeValue';
|
|
8501
|
-
displayValue: Scalars['String']['output'];
|
|
8502
|
-
value?: Maybe<AssetsStatusType>;
|
|
8512
|
+
value?: Maybe<Array<AssetsStatusType>>;
|
|
8503
8513
|
};
|
|
8504
8514
|
export declare enum AssetsStatusCategory {
|
|
8505
8515
|
Active = "ACTIVE",
|
|
@@ -8513,63 +8523,47 @@ export declare type AssetsStatusType = {
|
|
|
8513
8523
|
id: Scalars['ID']['output'];
|
|
8514
8524
|
name?: Maybe<Scalars['String']['output']>;
|
|
8515
8525
|
};
|
|
8516
|
-
export declare type
|
|
8517
|
-
__typename?: '
|
|
8526
|
+
export declare type AssetsTagAttributeOnObject = {
|
|
8527
|
+
__typename?: 'AssetsTagAttributeOnObject';
|
|
8518
8528
|
attribute?: Maybe<AssetsObjectTypeAttribute>;
|
|
8519
8529
|
id: Scalars['ID']['output'];
|
|
8520
|
-
|
|
8530
|
+
value?: Maybe<Array<Scalars['String']['output']>>;
|
|
8521
8531
|
};
|
|
8522
|
-
export declare type
|
|
8523
|
-
__typename?: '
|
|
8524
|
-
|
|
8532
|
+
export declare type AssetsTextAttributeOnObject = {
|
|
8533
|
+
__typename?: 'AssetsTextAttributeOnObject';
|
|
8534
|
+
attribute?: Maybe<AssetsObjectTypeAttribute>;
|
|
8535
|
+
id: Scalars['ID']['output'];
|
|
8525
8536
|
value?: Maybe<Scalars['String']['output']>;
|
|
8526
8537
|
};
|
|
8527
|
-
export declare type AssetsTextareaAttributeOnObject =
|
|
8538
|
+
export declare type AssetsTextareaAttributeOnObject = {
|
|
8528
8539
|
__typename?: 'AssetsTextareaAttributeOnObject';
|
|
8529
8540
|
attribute?: Maybe<AssetsObjectTypeAttribute>;
|
|
8530
8541
|
id: Scalars['ID']['output'];
|
|
8531
|
-
values: Array<AssetsTextareaAttributeValue>;
|
|
8532
|
-
};
|
|
8533
|
-
export declare type AssetsTextareaAttributeValue = {
|
|
8534
|
-
__typename?: 'AssetsTextareaAttributeValue';
|
|
8535
|
-
displayValue: Scalars['String']['output'];
|
|
8536
8542
|
value?: Maybe<Scalars['String']['output']>;
|
|
8537
8543
|
};
|
|
8538
|
-
export declare type AssetsUrlAttributeOnObject =
|
|
8544
|
+
export declare type AssetsUrlAttributeOnObject = {
|
|
8539
8545
|
__typename?: 'AssetsURLAttributeOnObject';
|
|
8540
8546
|
attribute?: Maybe<AssetsObjectTypeAttribute>;
|
|
8541
8547
|
id: Scalars['ID']['output'];
|
|
8542
|
-
|
|
8543
|
-
};
|
|
8544
|
-
export declare type AssetsUrlAttributeValue = {
|
|
8545
|
-
__typename?: 'AssetsURLAttributeValue';
|
|
8546
|
-
displayValue: Scalars['String']['output'];
|
|
8548
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
8547
8549
|
};
|
|
8548
8550
|
export declare type AssetsUserAttribute = AssetsObjectTypeAttribute & {
|
|
8549
8551
|
__typename?: 'AssetsUserAttribute';
|
|
8550
8552
|
id: Scalars['ID']['output'];
|
|
8551
8553
|
name?: Maybe<Scalars['String']['output']>;
|
|
8552
|
-
userGroups?: Maybe<Array<
|
|
8554
|
+
userGroups?: Maybe<Array<AssetsGroupAttributeValue>>;
|
|
8553
8555
|
};
|
|
8554
|
-
export declare type AssetsUserAttributeOnObject =
|
|
8556
|
+
export declare type AssetsUserAttributeOnObject = {
|
|
8555
8557
|
__typename?: 'AssetsUserAttributeOnObject';
|
|
8556
8558
|
attribute?: Maybe<AssetsUserAttribute>;
|
|
8557
8559
|
id: Scalars['ID']['output'];
|
|
8558
|
-
|
|
8560
|
+
value?: Maybe<Array<AssetsUserAttributeValue>>;
|
|
8559
8561
|
};
|
|
8560
8562
|
export declare type AssetsUserAttributeValue = {
|
|
8561
8563
|
__typename?: 'AssetsUserAttributeValue';
|
|
8562
|
-
displayValue: Scalars['String']['output'];
|
|
8563
|
-
value?: Maybe<AssetsUserValueData>;
|
|
8564
|
-
};
|
|
8565
|
-
export declare type AssetsUserValueData = {
|
|
8566
|
-
__typename?: 'AssetsUserValueData';
|
|
8567
8564
|
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
8568
|
-
|
|
8569
|
-
|
|
8570
|
-
isDeleted?: Maybe<Scalars['Boolean']['output']>;
|
|
8571
|
-
key?: Maybe<Scalars['String']['output']>;
|
|
8572
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
8565
|
+
id: Scalars['ID']['output'];
|
|
8566
|
+
name: Scalars['String']['output'];
|
|
8573
8567
|
};
|
|
8574
8568
|
export declare type AssignIssueParentInput = {
|
|
8575
8569
|
boardId: Scalars['ID']['input'];
|
|
@@ -13859,6 +13853,7 @@ export declare type CommerceExpContractEntitlement = {
|
|
|
13859
13853
|
entitlementId?: Maybe<Scalars['ID']['output']>;
|
|
13860
13854
|
entitlementNumber?: Maybe<Scalars['String']['output']>;
|
|
13861
13855
|
expectedBills?: Maybe<Array<Maybe<CommerceExpExpectedBillsLine>>>;
|
|
13856
|
+
isBilledUpfrontWithMultiplePeriods?: Maybe<Scalars['Boolean']['output']>;
|
|
13862
13857
|
isMultiScheduled?: Maybe<Scalars['Boolean']['output']>;
|
|
13863
13858
|
latestModification?: Maybe<CommerceExpContractModification>;
|
|
13864
13859
|
latestModificationVersion?: Maybe<Scalars['Int']['output']>;
|
|
@@ -13944,7 +13939,10 @@ export declare type CommerceExpContractShipToParty = {
|
|
|
13944
13939
|
};
|
|
13945
13940
|
export declare enum CommerceExpContractStatus {
|
|
13946
13941
|
Active = "ACTIVE",
|
|
13947
|
-
|
|
13942
|
+
Cancelled = "CANCELLED",
|
|
13943
|
+
Expired = "EXPIRED",
|
|
13944
|
+
Inactive = "INACTIVE",
|
|
13945
|
+
Superseded = "SUPERSEDED"
|
|
13948
13946
|
}
|
|
13949
13947
|
export declare type CommerceExpContractTaxId = {
|
|
13950
13948
|
__typename?: 'CommerceExpContractTaxId';
|
|
@@ -14049,6 +14047,12 @@ export declare type CommerceExpCreatePaymentMethodPayload = CommerceExpMutationP
|
|
|
14049
14047
|
paymentMethod?: Maybe<CommerceExpPaymentMethod>;
|
|
14050
14048
|
success: Scalars['Boolean']['output'];
|
|
14051
14049
|
};
|
|
14050
|
+
export declare type CommerceExpCreateShipToPartyPayload = CommerceExpMutationPayload & {
|
|
14051
|
+
__typename?: 'CommerceExpCreateShipToPartyPayload';
|
|
14052
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14053
|
+
shipToParty?: Maybe<CommerceExpShipToParty>;
|
|
14054
|
+
success: Scalars['Boolean']['output'];
|
|
14055
|
+
};
|
|
14052
14056
|
export declare type CommerceExpCreateTransactionAccountInput = {
|
|
14053
14057
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
14054
14058
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -14366,7 +14370,9 @@ export declare type CommerceExpEntitlementProvisioning = {
|
|
|
14366
14370
|
export declare enum CommerceExpEntitlementProvisioningStatus {
|
|
14367
14371
|
Active = "ACTIVE",
|
|
14368
14372
|
Destroyed = "DESTROYED",
|
|
14373
|
+
HardDeleted = "HARD_DELETED",
|
|
14369
14374
|
Inactive = "INACTIVE",
|
|
14375
|
+
SoftDeleted = "SOFT_DELETED",
|
|
14370
14376
|
Suspended = "SUSPENDED",
|
|
14371
14377
|
Unknown = "UNKNOWN"
|
|
14372
14378
|
}
|
|
@@ -14522,6 +14528,8 @@ export declare type CommerceExpGupsMutation = {
|
|
|
14522
14528
|
export declare type CommerceExpGupsMutationCreateEntitlementProfileArgs = {
|
|
14523
14529
|
orderId: Scalars['ID']['input'];
|
|
14524
14530
|
transactionAccountId: Scalars['ID']['input'];
|
|
14531
|
+
trialTrigger?: InputMaybe<Scalars['String']['input']>;
|
|
14532
|
+
trialType?: InputMaybe<Scalars['String']['input']>;
|
|
14525
14533
|
};
|
|
14526
14534
|
export declare type CommerceExpIntegerComparator = {
|
|
14527
14535
|
__typename?: 'CommerceExpIntegerComparator';
|
|
@@ -14739,6 +14747,7 @@ export declare type CommerceExpLineItemResponse = {
|
|
|
14739
14747
|
period?: Maybe<CommerceExpPeriodResponse>;
|
|
14740
14748
|
pricingPlan?: Maybe<CommerceExpCcpPricingPlan>;
|
|
14741
14749
|
promotions?: Maybe<Array<Maybe<CommerceExpOmsPromotionDto>>>;
|
|
14750
|
+
rampPricingLineItems?: Maybe<Array<Maybe<CommerceExpLineItemResponse>>>;
|
|
14742
14751
|
relatesFromEntitlements?: Maybe<Array<Maybe<CommerceExpRelatesFromEntitlementDetails>>>;
|
|
14743
14752
|
saleTransitionDetails?: Maybe<CommerceExpQuoteLineItemSaleTransitionDetails>;
|
|
14744
14753
|
startsAt?: Maybe<CommerceExpLineItemStartsAt>;
|
|
@@ -15345,6 +15354,12 @@ export declare type CommerceExpPhase = {
|
|
|
15345
15354
|
transactionAccountId?: Maybe<Scalars['ID']['output']>;
|
|
15346
15355
|
trial?: Maybe<CommerceExpCcpSubscriptionTrial>;
|
|
15347
15356
|
};
|
|
15357
|
+
export declare type CommerceExpPlaceOrderPayload = CommerceExpMutationPayload & {
|
|
15358
|
+
__typename?: 'CommerceExpPlaceOrderPayload';
|
|
15359
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15360
|
+
order?: Maybe<CommerceExpCcpOrder>;
|
|
15361
|
+
success: Scalars['Boolean']['output'];
|
|
15362
|
+
};
|
|
15348
15363
|
export declare type CommerceExpPlan = {
|
|
15349
15364
|
__typename?: 'CommerceExpPlan';
|
|
15350
15365
|
cycle?: Maybe<CommerceExpCycle>;
|
|
@@ -15968,6 +15983,12 @@ export declare type CommerceExpUpcomingBillsLineItem = {
|
|
|
15968
15983
|
taxPercent2?: Maybe<Scalars['Float']['output']>;
|
|
15969
15984
|
total?: Maybe<Scalars['Float']['output']>;
|
|
15970
15985
|
};
|
|
15986
|
+
export declare type CommerceExpUpdateBillToPartyPayload = CommerceExpMutationPayload & {
|
|
15987
|
+
__typename?: 'CommerceExpUpdateBillToPartyPayload';
|
|
15988
|
+
billToParty?: Maybe<CommerceExpBillToParty>;
|
|
15989
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15990
|
+
success: Scalars['Boolean']['output'];
|
|
15991
|
+
};
|
|
15971
15992
|
export declare type CommerceExpUpdateInvoiceGroupPayload = CommerceExpMutationPayload & {
|
|
15972
15993
|
__typename?: 'CommerceExpUpdateInvoiceGroupPayload';
|
|
15973
15994
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -15979,6 +16000,12 @@ export declare type CommerceExpUpdatePaymentMethodInInvoiceGroupsPayload = Comme
|
|
|
15979
16000
|
errors?: Maybe<Array<MutationError>>;
|
|
15980
16001
|
success: Scalars['Boolean']['output'];
|
|
15981
16002
|
};
|
|
16003
|
+
export declare type CommerceExpUpdateShipToPartyPayload = CommerceExpMutationPayload & {
|
|
16004
|
+
__typename?: 'CommerceExpUpdateShipToPartyPayload';
|
|
16005
|
+
errors?: Maybe<Array<MutationError>>;
|
|
16006
|
+
shipToParty?: Maybe<CommerceExpShipToParty>;
|
|
16007
|
+
success: Scalars['Boolean']['output'];
|
|
16008
|
+
};
|
|
15982
16009
|
export declare type CommerceExpUpdateTransactionAccountPayload = CommerceExpMutationPayload & {
|
|
15983
16010
|
__typename?: 'CommerceExpUpdateTransactionAccountPayload';
|
|
15984
16011
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -30194,6 +30221,8 @@ export declare type CplsWorkContributorConnection = {
|
|
|
30194
30221
|
export declare type CplsWorkContributorEdge = {
|
|
30195
30222
|
__typename?: 'CplsWorkContributorEdge';
|
|
30196
30223
|
contributions?: Maybe<Array<CplsContribution>>;
|
|
30224
|
+
contributorData?: Maybe<CplsContributorData>;
|
|
30225
|
+
contributorDataId: Scalars['ID']['output'];
|
|
30197
30226
|
cursor: Scalars['String']['output'];
|
|
30198
30227
|
node?: Maybe<CplsContributor>;
|
|
30199
30228
|
};
|
|
@@ -33400,11 +33429,6 @@ export declare type DeletePolarisPlayContributionPayload = {
|
|
|
33400
33429
|
errors?: Maybe<Array<MutationError>>;
|
|
33401
33430
|
success: Scalars['Boolean']['output'];
|
|
33402
33431
|
};
|
|
33403
|
-
export declare type DeletePolarisViewSetPayload = Payload & {
|
|
33404
|
-
__typename?: 'DeletePolarisViewSetPayload';
|
|
33405
|
-
errors?: Maybe<Array<MutationError>>;
|
|
33406
|
-
success: Scalars['Boolean']['output'];
|
|
33407
|
-
};
|
|
33408
33432
|
export declare type DeleteRelationInput = {
|
|
33409
33433
|
relationName: RelationType;
|
|
33410
33434
|
sourceKey: Scalars['String']['input'];
|
|
@@ -34253,6 +34277,7 @@ export declare type DevAiRovoDevSession = Node & {
|
|
|
34253
34277
|
promptAdf?: Maybe<Scalars['JSON']['output']>;
|
|
34254
34278
|
repository?: Maybe<DevAiRovoDevRepository>;
|
|
34255
34279
|
sandboxStatus?: Maybe<DevAiRovoDevSandboxStatus>;
|
|
34280
|
+
sessionSandbox?: Maybe<DevAiSandbox>;
|
|
34256
34281
|
sessionStatus?: Maybe<DevAiRovoDevSessionStatus>;
|
|
34257
34282
|
sessionTitle?: Maybe<Scalars['String']['output']>;
|
|
34258
34283
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -34322,6 +34347,31 @@ export declare type DevAiRunAutofixScanInput = {
|
|
|
34322
34347
|
restartIfCurrentlyRunning?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34323
34348
|
workspaceId: Scalars['ID']['input'];
|
|
34324
34349
|
};
|
|
34350
|
+
export declare type DevAiSandbox = {
|
|
34351
|
+
__typename?: 'DevAiSandbox';
|
|
34352
|
+
progress?: Maybe<DevAiSandboxProgress>;
|
|
34353
|
+
readiness?: Maybe<DevAiSandboxReadiness>;
|
|
34354
|
+
};
|
|
34355
|
+
export declare type DevAiSandboxProgress = {
|
|
34356
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
34357
|
+
};
|
|
34358
|
+
export declare enum DevAiSandboxReadiness {
|
|
34359
|
+
Creating = "CREATING",
|
|
34360
|
+
Error = "ERROR",
|
|
34361
|
+
Hibernated = "HIBERNATED",
|
|
34362
|
+
Ready = "READY",
|
|
34363
|
+
Started = "STARTED",
|
|
34364
|
+
Starting = "STARTING",
|
|
34365
|
+
Unknown = "UNKNOWN"
|
|
34366
|
+
}
|
|
34367
|
+
export declare type DevAiSandboxRestoreProgress = DevAiSandboxProgress & {
|
|
34368
|
+
__typename?: 'DevAiSandboxRestoreProgress';
|
|
34369
|
+
downloadedBytes?: Maybe<Scalars['String']['output']>;
|
|
34370
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
34371
|
+
percent?: Maybe<Scalars['Int']['output']>;
|
|
34372
|
+
startedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
34373
|
+
totalBytes?: Maybe<Scalars['String']['output']>;
|
|
34374
|
+
};
|
|
34325
34375
|
export declare type DevAiSavedPrompt = {
|
|
34326
34376
|
__typename?: 'DevAiSavedPrompt';
|
|
34327
34377
|
contents?: Maybe<Scalars['String']['output']>;
|
|
@@ -37240,7 +37290,7 @@ export declare type ExternalAssociationEdge = {
|
|
|
37240
37290
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
37241
37291
|
node?: Maybe<ExternalAssociation>;
|
|
37242
37292
|
};
|
|
37243
|
-
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;
|
|
37244
37294
|
export declare type ExternalAttachment = {
|
|
37245
37295
|
__typename?: 'ExternalAttachment';
|
|
37246
37296
|
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
@@ -37885,6 +37935,7 @@ export declare type ExternalEntities = {
|
|
|
37885
37935
|
deployment?: Maybe<Array<Maybe<ExternalDeployment>>>;
|
|
37886
37936
|
design?: Maybe<Array<Maybe<ExternalDesign>>>;
|
|
37887
37937
|
document?: Maybe<Array<Maybe<ExternalDocument>>>;
|
|
37938
|
+
experimental?: Maybe<Array<Maybe<ExternalExperimental>>>;
|
|
37888
37939
|
featureFlag?: Maybe<Array<Maybe<ExternalFeatureFlag>>>;
|
|
37889
37940
|
message?: Maybe<Array<Maybe<ExternalMessage>>>;
|
|
37890
37941
|
organisation?: Maybe<Array<Maybe<ExternalOrganisation>>>;
|
|
@@ -37906,7 +37957,7 @@ export declare type ExternalEntities = {
|
|
|
37906
37957
|
workItem?: Maybe<Array<Maybe<ExternalWorkItem>>>;
|
|
37907
37958
|
worker?: Maybe<Array<Maybe<ExternalWorker>>>;
|
|
37908
37959
|
};
|
|
37909
|
-
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;
|
|
37910
37961
|
export declare type ExternalEntityExtendedValue = {
|
|
37911
37962
|
__typename?: 'ExternalEntityExtendedValue';
|
|
37912
37963
|
fieldDisplayName?: Maybe<ExternalEntityExtendedValueDisplayName>;
|
|
@@ -37942,6 +37993,28 @@ export declare enum ExternalEventType {
|
|
|
37942
37993
|
Task = "TASK",
|
|
37943
37994
|
WorkingLocation = "WORKING_LOCATION"
|
|
37944
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
|
+
};
|
|
37945
38018
|
export declare type ExternalExportLink = {
|
|
37946
38019
|
__typename?: 'ExternalExportLink';
|
|
37947
38020
|
mimeType?: Maybe<Scalars['String']['output']>;
|
|
@@ -44375,6 +44448,14 @@ export declare type GraphStore = {
|
|
|
44375
44448
|
atlassianUserCreatedExternalCustomerOrgCategoryInverse?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalCustomerOrgCategoryInverseConnection>;
|
|
44376
44449
|
atlassianUserCreatedExternalTeam?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedExternalTeamConnection>;
|
|
44377
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>;
|
|
44378
44459
|
atlassianUserDismissedJiraForYouRecommendationEntity?: Maybe<GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityConnection>;
|
|
44379
44460
|
atlassianUserDismissedJiraForYouRecommendationEntityBatch?: Maybe<GraphStoreBatchAtlassianUserDismissedJiraForYouRecommendationEntityConnection>;
|
|
44380
44461
|
atlassianUserDismissedJiraForYouRecommendationEntityInverse?: Maybe<GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityInverseConnection>;
|
|
@@ -44391,12 +44472,28 @@ export declare type GraphStore = {
|
|
|
44391
44472
|
atlassianUserOwnsExternalCustomerOrgCategoryInverse?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalCustomerOrgCategoryInverseConnection>;
|
|
44392
44473
|
atlassianUserOwnsExternalTeam?: Maybe<GraphStoreSimplifiedAtlassianUserOwnsExternalTeamConnection>;
|
|
44393
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>;
|
|
44394
44483
|
atlassianUserUpdatedExternalCustomerContact?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerContactConnection>;
|
|
44395
44484
|
atlassianUserUpdatedExternalCustomerContactInverse?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerContactInverseConnection>;
|
|
44396
44485
|
atlassianUserUpdatedExternalCustomerOrgCategory?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerOrgCategoryConnection>;
|
|
44397
44486
|
atlassianUserUpdatedExternalCustomerOrgCategoryInverse?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerOrgCategoryInverseConnection>;
|
|
44398
44487
|
atlassianUserUpdatedExternalTeam?: Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalTeamConnection>;
|
|
44399
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>;
|
|
44400
44497
|
boardBelongsToProject?: Maybe<GraphStoreSimplifiedBoardBelongsToProjectConnection>;
|
|
44401
44498
|
boardBelongsToProjectInverse?: Maybe<GraphStoreSimplifiedBoardBelongsToProjectInverseConnection>;
|
|
44402
44499
|
branchInRepo?: Maybe<GraphStoreSimplifiedBranchInRepoConnection>;
|
|
@@ -44459,6 +44556,8 @@ export declare type GraphStore = {
|
|
|
44459
44556
|
contentReferencedEntityRelationship?: Maybe<GraphStoreFullContentReferencedEntityConnection>;
|
|
44460
44557
|
conversationHasMessage?: Maybe<GraphStoreSimplifiedConversationHasMessageConnection>;
|
|
44461
44558
|
conversationHasMessageInverse?: Maybe<GraphStoreSimplifiedConversationHasMessageInverseConnection>;
|
|
44559
|
+
csmCustomerHasJiraWorkItem?: Maybe<GraphStoreSimplifiedCsmCustomerHasJiraWorkItemConnection>;
|
|
44560
|
+
csmCustomerHasJiraWorkItemInverse?: Maybe<GraphStoreSimplifiedCsmCustomerHasJiraWorkItemInverseConnection>;
|
|
44462
44561
|
customerAssociatedIssue?: Maybe<GraphStoreSimplifiedCustomerAssociatedIssueConnection>;
|
|
44463
44562
|
customerAssociatedIssueInverse?: Maybe<GraphStoreSimplifiedCustomerAssociatedIssueInverseConnection>;
|
|
44464
44563
|
customerHasExternalConversation?: Maybe<GraphStoreSimplifiedCustomerHasExternalConversationConnection>;
|
|
@@ -44745,6 +44844,14 @@ export declare type GraphStore = {
|
|
|
44745
44844
|
parentMessageHasChildMessageInverse?: Maybe<GraphStoreSimplifiedParentMessageHasChildMessageInverseConnection>;
|
|
44746
44845
|
parentTeamHasChildTeam?: Maybe<GraphStoreSimplifiedParentTeamHasChildTeamConnection>;
|
|
44747
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>;
|
|
44748
44855
|
positionAllocatedToFocusArea?: Maybe<GraphStoreSimplifiedPositionAllocatedToFocusAreaConnection>;
|
|
44749
44856
|
positionAllocatedToFocusAreaInverse?: Maybe<GraphStoreSimplifiedPositionAllocatedToFocusAreaInverseConnection>;
|
|
44750
44857
|
positionAssociatedExternalPosition?: Maybe<GraphStoreSimplifiedPositionAssociatedExternalPositionConnection>;
|
|
@@ -44831,6 +44938,8 @@ export declare type GraphStore = {
|
|
|
44831
44938
|
projectExplicitlyAssociatedRepoInverse?: Maybe<GraphStoreSimplifiedProjectExplicitlyAssociatedRepoInverseConnection>;
|
|
44832
44939
|
projectExplicitlyAssociatedRepoInverseRelationship?: Maybe<GraphStoreFullProjectExplicitlyAssociatedRepoConnection>;
|
|
44833
44940
|
projectExplicitlyAssociatedRepoRelationship?: Maybe<GraphStoreFullProjectExplicitlyAssociatedRepoConnection>;
|
|
44941
|
+
projectHasAvpDashboard?: Maybe<GraphStoreSimplifiedProjectHasAvpDashboardConnection>;
|
|
44942
|
+
projectHasAvpDashboardInverse?: Maybe<GraphStoreSimplifiedProjectHasAvpDashboardInverseConnection>;
|
|
44834
44943
|
projectHasIssue?: Maybe<GraphStoreSimplifiedProjectHasIssueConnection>;
|
|
44835
44944
|
projectHasIssueInverse?: Maybe<GraphStoreSimplifiedProjectHasIssueInverseConnection>;
|
|
44836
44945
|
projectHasIssueInverseRelationship?: Maybe<GraphStoreFullProjectHasIssueConnection>;
|
|
@@ -44954,6 +45063,8 @@ export declare type GraphStore = {
|
|
|
44954
45063
|
thirdPartyToGraphRemoteLink?: Maybe<GraphStoreSimplifiedThirdPartyToGraphRemoteLinkConnection>;
|
|
44955
45064
|
topicHasRelatedEntity?: Maybe<GraphStoreSimplifiedTopicHasRelatedEntityConnection>;
|
|
44956
45065
|
topicHasRelatedEntityInverse?: Maybe<GraphStoreSimplifiedTopicHasRelatedEntityInverseConnection>;
|
|
45066
|
+
userApprovesPlan?: Maybe<GraphStoreSimplifiedUserApprovesPlanConnection>;
|
|
45067
|
+
userApprovesPlanInverse?: Maybe<GraphStoreSimplifiedUserApprovesPlanInverseConnection>;
|
|
44957
45068
|
userAssignedIncident?: Maybe<GraphStoreSimplifiedUserAssignedIncidentConnection>;
|
|
44958
45069
|
userAssignedIncidentInverse?: Maybe<GraphStoreSimplifiedUserAssignedIncidentInverseConnection>;
|
|
44959
45070
|
userAssignedIssue?: Maybe<GraphStoreSimplifiedUserAssignedIssueConnection>;
|
|
@@ -45118,6 +45229,8 @@ export declare type GraphStore = {
|
|
|
45118
45229
|
userOwnsFocusAreaInverse?: Maybe<GraphStoreSimplifiedUserOwnsFocusAreaInverseConnection>;
|
|
45119
45230
|
userOwnsPage?: Maybe<GraphStoreSimplifiedUserOwnsPageConnection>;
|
|
45120
45231
|
userOwnsPageInverse?: Maybe<GraphStoreSimplifiedUserOwnsPageInverseConnection>;
|
|
45232
|
+
userOwnsPlan?: Maybe<GraphStoreSimplifiedUserOwnsPlanConnection>;
|
|
45233
|
+
userOwnsPlanInverse?: Maybe<GraphStoreSimplifiedUserOwnsPlanInverseConnection>;
|
|
45121
45234
|
userReactedToIssueComment?: Maybe<GraphStoreSimplifiedUserReactedToIssueCommentConnection>;
|
|
45122
45235
|
userReactedToIssueCommentInverse?: Maybe<GraphStoreSimplifiedUserReactedToIssueCommentInverseConnection>;
|
|
45123
45236
|
userReactionVideo?: Maybe<GraphStoreSimplifiedUserReactionVideoConnection>;
|
|
@@ -45753,6 +45866,70 @@ export declare type GraphStoreAtlassianUserCreatedExternalTeamInverseArgs = {
|
|
|
45753
45866
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
45754
45867
|
sort?: InputMaybe<GraphStoreAtlassianUserCreatedExternalTeamSortInput>;
|
|
45755
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
|
+
};
|
|
45756
45933
|
export declare type GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityArgs = {
|
|
45757
45934
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
45758
45935
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -45881,6 +46058,70 @@ export declare type GraphStoreAtlassianUserOwnsExternalTeamInverseArgs = {
|
|
|
45881
46058
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
45882
46059
|
sort?: InputMaybe<GraphStoreAtlassianUserOwnsExternalTeamSortInput>;
|
|
45883
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
|
+
};
|
|
45884
46125
|
export declare type GraphStoreAtlassianUserUpdatedExternalCustomerContactArgs = {
|
|
45885
46126
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
45886
46127
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -45929,6 +46170,70 @@ export declare type GraphStoreAtlassianUserUpdatedExternalTeamInverseArgs = {
|
|
|
45929
46170
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
45930
46171
|
sort?: InputMaybe<GraphStoreAtlassianUserUpdatedExternalTeamSortInput>;
|
|
45931
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
|
+
};
|
|
45932
46237
|
export declare type GraphStoreBoardBelongsToProjectArgs = {
|
|
45933
46238
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
45934
46239
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -46405,6 +46710,22 @@ export declare type GraphStoreConversationHasMessageInverseArgs = {
|
|
|
46405
46710
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
46406
46711
|
sort?: InputMaybe<GraphStoreConversationHasMessageSortInput>;
|
|
46407
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
|
+
};
|
|
46408
46729
|
export declare type GraphStoreCustomerAssociatedIssueArgs = {
|
|
46409
46730
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
46410
46731
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -48555,6 +48876,70 @@ export declare type GraphStoreParentTeamHasChildTeamInverseArgs = {
|
|
|
48555
48876
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
48556
48877
|
sort?: InputMaybe<GraphStoreParentTeamHasChildTeamSortInput>;
|
|
48557
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
|
+
};
|
|
48558
48943
|
export declare type GraphStorePositionAllocatedToFocusAreaArgs = {
|
|
48559
48944
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
48560
48945
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -49207,6 +49592,22 @@ export declare type GraphStoreProjectExplicitlyAssociatedRepoRelationshipArgs =
|
|
|
49207
49592
|
id: Scalars['ID']['input'];
|
|
49208
49593
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
49209
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
|
+
};
|
|
49210
49611
|
export declare type GraphStoreProjectHasIssueArgs = {
|
|
49211
49612
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
49212
49613
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -50155,6 +50556,22 @@ export declare type GraphStoreTopicHasRelatedEntityInverseArgs = {
|
|
|
50155
50556
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
50156
50557
|
sort?: InputMaybe<GraphStoreTopicHasRelatedEntitySortInput>;
|
|
50157
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
|
+
};
|
|
50158
50575
|
export declare type GraphStoreUserAssignedIncidentArgs = {
|
|
50159
50576
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
50160
50577
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -51475,6 +51892,22 @@ export declare type GraphStoreUserOwnsPageInverseArgs = {
|
|
|
51475
51892
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
51476
51893
|
sort?: InputMaybe<GraphStoreUserOwnsPageSortInput>;
|
|
51477
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
|
+
};
|
|
51478
51911
|
export declare type GraphStoreUserReactedToIssueCommentArgs = {
|
|
51479
51912
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
51480
51913
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -52681,6 +53114,18 @@ export declare type GraphStoreAtlassianUserCreatedExternalCustomerOrgCategorySor
|
|
|
52681
53114
|
export declare type GraphStoreAtlassianUserCreatedExternalTeamSortInput = {
|
|
52682
53115
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
52683
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
|
+
};
|
|
52684
53129
|
export declare type GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalFilterInput = {
|
|
52685
53130
|
and?: InputMaybe<Array<InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalFilterInput>>>;
|
|
52686
53131
|
category?: InputMaybe<GraphStoreAtlassianUserDismissedJiraForYouRecommendationEntityCategoryDismissalRecommendationCategoryFilterInput>;
|
|
@@ -52743,6 +53188,18 @@ export declare type GraphStoreAtlassianUserOwnsExternalCustomerOrgCategorySortIn
|
|
|
52743
53188
|
export declare type GraphStoreAtlassianUserOwnsExternalTeamSortInput = {
|
|
52744
53189
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
52745
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
|
+
};
|
|
52746
53203
|
export declare type GraphStoreAtlassianUserUpdatedExternalCustomerContactSortInput = {
|
|
52747
53204
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
52748
53205
|
};
|
|
@@ -52752,6 +53209,18 @@ export declare type GraphStoreAtlassianUserUpdatedExternalCustomerOrgCategorySor
|
|
|
52752
53209
|
export declare type GraphStoreAtlassianUserUpdatedExternalTeamSortInput = {
|
|
52753
53210
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
52754
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
|
+
};
|
|
52755
53224
|
export declare type GraphStoreBatchAtlasGoalHasJiraAlignProjectConnection = HasPageInfo & {
|
|
52756
53225
|
__typename?: 'GraphStoreBatchAtlasGoalHasJiraAlignProjectConnection';
|
|
52757
53226
|
edges: Array<Maybe<GraphStoreBatchAtlasGoalHasJiraAlignProjectEdge>>;
|
|
@@ -52972,7 +53441,7 @@ export declare type GraphStoreBatchContentReferencedEntityEndNode = {
|
|
|
52972
53441
|
data?: Maybe<GraphStoreBatchContentReferencedEntityEndUnion>;
|
|
52973
53442
|
id: Scalars['ID']['output'];
|
|
52974
53443
|
};
|
|
52975
|
-
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;
|
|
52976
53445
|
export declare type GraphStoreBatchContentReferencedEntityInnerConnection = {
|
|
52977
53446
|
__typename?: 'GraphStoreBatchContentReferencedEntityInnerConnection';
|
|
52978
53447
|
edges: Array<Maybe<GraphStoreBatchContentReferencedEntityInnerEdge>>;
|
|
@@ -52997,7 +53466,7 @@ export declare type GraphStoreBatchContentReferencedEntityStartNode = {
|
|
|
52997
53466
|
data?: Maybe<GraphStoreBatchContentReferencedEntityStartUnion>;
|
|
52998
53467
|
id: Scalars['ID']['output'];
|
|
52999
53468
|
};
|
|
53000
|
-
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;
|
|
53001
53470
|
export declare type GraphStoreBatchFocusAreaAssociatedToProjectConnection = HasPageInfo & {
|
|
53002
53471
|
__typename?: 'GraphStoreBatchFocusAreaAssociatedToProjectConnection';
|
|
53003
53472
|
edges: Array<Maybe<GraphStoreBatchFocusAreaAssociatedToProjectEdge>>;
|
|
@@ -54773,6 +55242,9 @@ export declare enum GraphStoreCreateVulnerabilityAssociatedIssueVulnerabilityTyp
|
|
|
54773
55242
|
Sca = "SCA",
|
|
54774
55243
|
Unknown = "UNKNOWN"
|
|
54775
55244
|
}
|
|
55245
|
+
export declare type GraphStoreCsmCustomerHasJiraWorkItemSortInput = {
|
|
55246
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
55247
|
+
};
|
|
54776
55248
|
export declare type GraphStoreCustomerAssociatedIssueSortInput = {
|
|
54777
55249
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
54778
55250
|
};
|
|
@@ -54792,6 +55264,10 @@ export declare type GraphStoreCypherQueryFloatObject = {
|
|
|
54792
55264
|
__typename?: 'GraphStoreCypherQueryFloatObject';
|
|
54793
55265
|
value: Scalars['Float']['output'];
|
|
54794
55266
|
};
|
|
55267
|
+
export declare type GraphStoreCypherQueryIntListObject = {
|
|
55268
|
+
__typename?: 'GraphStoreCypherQueryIntListObject';
|
|
55269
|
+
values: Array<Scalars['Int']['output']>;
|
|
55270
|
+
};
|
|
54795
55271
|
export declare type GraphStoreCypherQueryIntObject = {
|
|
54796
55272
|
__typename?: 'GraphStoreCypherQueryIntObject';
|
|
54797
55273
|
value: Scalars['Int']['output'];
|
|
@@ -54815,17 +55291,25 @@ export declare type GraphStoreCypherQueryResultRowItem = {
|
|
|
54815
55291
|
value: Array<GraphStoreCypherQueryValueNode>;
|
|
54816
55292
|
valueUnion?: Maybe<GraphStoreCypherQueryResultRowItemValueUnion>;
|
|
54817
55293
|
};
|
|
54818
|
-
export declare type GraphStoreCypherQueryResultRowItemValueUnion = GraphStoreCypherQueryBooleanObject | GraphStoreCypherQueryFloatObject | GraphStoreCypherQueryIntObject | GraphStoreCypherQueryResultNodeList | GraphStoreCypherQueryStringObject | GraphStoreCypherQueryTimestampObject;
|
|
55294
|
+
export declare type GraphStoreCypherQueryResultRowItemValueUnion = GraphStoreCypherQueryBooleanObject | GraphStoreCypherQueryFloatObject | GraphStoreCypherQueryIntListObject | GraphStoreCypherQueryIntObject | GraphStoreCypherQueryResultNodeList | GraphStoreCypherQueryStringListObject | GraphStoreCypherQueryStringObject | GraphStoreCypherQueryTimestampListObject | GraphStoreCypherQueryTimestampObject;
|
|
54819
55295
|
export declare type GraphStoreCypherQueryRowItemNode = {
|
|
54820
55296
|
__typename?: 'GraphStoreCypherQueryRowItemNode';
|
|
54821
55297
|
data?: Maybe<GraphStoreCypherQueryRowItemNodeNodeUnion>;
|
|
54822
55298
|
id: Scalars['ID']['output'];
|
|
54823
55299
|
};
|
|
54824
|
-
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
|
+
};
|
|
54825
55305
|
export declare type GraphStoreCypherQueryStringObject = {
|
|
54826
55306
|
__typename?: 'GraphStoreCypherQueryStringObject';
|
|
54827
55307
|
value: Scalars['String']['output'];
|
|
54828
55308
|
};
|
|
55309
|
+
export declare type GraphStoreCypherQueryTimestampListObject = {
|
|
55310
|
+
__typename?: 'GraphStoreCypherQueryTimestampListObject';
|
|
55311
|
+
values: Array<Scalars['Long']['output']>;
|
|
55312
|
+
};
|
|
54829
55313
|
export declare type GraphStoreCypherQueryTimestampObject = {
|
|
54830
55314
|
__typename?: 'GraphStoreCypherQueryTimestampObject';
|
|
54831
55315
|
value: Scalars['Long']['output'];
|
|
@@ -54835,13 +55319,13 @@ export declare type GraphStoreCypherQueryV2AriNode = {
|
|
|
54835
55319
|
data?: Maybe<GraphStoreCypherQueryV2AriNodeUnion>;
|
|
54836
55320
|
id: Scalars['ID']['output'];
|
|
54837
55321
|
};
|
|
54838
|
-
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;
|
|
54839
55323
|
export declare type GraphStoreCypherQueryV2BatchAriNode = {
|
|
54840
55324
|
__typename?: 'GraphStoreCypherQueryV2BatchAriNode';
|
|
54841
55325
|
data?: Maybe<GraphStoreCypherQueryV2BatchAriNodeUnion>;
|
|
54842
55326
|
id: Scalars['ID']['output'];
|
|
54843
55327
|
};
|
|
54844
|
-
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;
|
|
54845
55329
|
export declare type GraphStoreCypherQueryV2BatchBooleanObject = {
|
|
54846
55330
|
__typename?: 'GraphStoreCypherQueryV2BatchBooleanObject';
|
|
54847
55331
|
value: Scalars['Boolean']['output'];
|
|
@@ -54865,6 +55349,10 @@ export declare type GraphStoreCypherQueryV2BatchFloatObject = {
|
|
|
54865
55349
|
__typename?: 'GraphStoreCypherQueryV2BatchFloatObject';
|
|
54866
55350
|
value: Scalars['Float']['output'];
|
|
54867
55351
|
};
|
|
55352
|
+
export declare type GraphStoreCypherQueryV2BatchIntListObject = {
|
|
55353
|
+
__typename?: 'GraphStoreCypherQueryV2BatchIntListObject';
|
|
55354
|
+
values: Array<Scalars['Int']['output']>;
|
|
55355
|
+
};
|
|
54868
55356
|
export declare type GraphStoreCypherQueryV2BatchIntObject = {
|
|
54869
55357
|
__typename?: 'GraphStoreCypherQueryV2BatchIntObject';
|
|
54870
55358
|
value: Scalars['Int']['output'];
|
|
@@ -54888,11 +55376,19 @@ export declare type GraphStoreCypherQueryV2BatchQueryResult = {
|
|
|
54888
55376
|
pageInfo: PageInfo;
|
|
54889
55377
|
version: Scalars['String']['output'];
|
|
54890
55378
|
};
|
|
54891
|
-
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
|
+
};
|
|
54892
55384
|
export declare type GraphStoreCypherQueryV2BatchStringObject = {
|
|
54893
55385
|
__typename?: 'GraphStoreCypherQueryV2BatchStringObject';
|
|
54894
55386
|
value: Scalars['String']['output'];
|
|
54895
55387
|
};
|
|
55388
|
+
export declare type GraphStoreCypherQueryV2BatchTimestampListObject = {
|
|
55389
|
+
__typename?: 'GraphStoreCypherQueryV2BatchTimestampListObject';
|
|
55390
|
+
values: Array<Scalars['Long']['output']>;
|
|
55391
|
+
};
|
|
54896
55392
|
export declare type GraphStoreCypherQueryV2BatchTimestampObject = {
|
|
54897
55393
|
__typename?: 'GraphStoreCypherQueryV2BatchTimestampObject';
|
|
54898
55394
|
value: Scalars['Long']['output'];
|
|
@@ -54925,6 +55421,10 @@ export declare type GraphStoreCypherQueryV2FloatObject = {
|
|
|
54925
55421
|
__typename?: 'GraphStoreCypherQueryV2FloatObject';
|
|
54926
55422
|
value: Scalars['Float']['output'];
|
|
54927
55423
|
};
|
|
55424
|
+
export declare type GraphStoreCypherQueryV2IntListObject = {
|
|
55425
|
+
__typename?: 'GraphStoreCypherQueryV2IntListObject';
|
|
55426
|
+
values: Array<Scalars['Int']['output']>;
|
|
55427
|
+
};
|
|
54928
55428
|
export declare type GraphStoreCypherQueryV2IntObject = {
|
|
54929
55429
|
__typename?: 'GraphStoreCypherQueryV2IntObject';
|
|
54930
55430
|
value: Scalars['Int']['output'];
|
|
@@ -54941,11 +55441,19 @@ export declare type GraphStoreCypherQueryV2Path = {
|
|
|
54941
55441
|
__typename?: 'GraphStoreCypherQueryV2Path';
|
|
54942
55442
|
elements: Array<Scalars['String']['output']>;
|
|
54943
55443
|
};
|
|
54944
|
-
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
|
+
};
|
|
54945
55449
|
export declare type GraphStoreCypherQueryV2StringObject = {
|
|
54946
55450
|
__typename?: 'GraphStoreCypherQueryV2StringObject';
|
|
54947
55451
|
value: Scalars['String']['output'];
|
|
54948
55452
|
};
|
|
55453
|
+
export declare type GraphStoreCypherQueryV2TimestampListObject = {
|
|
55454
|
+
__typename?: 'GraphStoreCypherQueryV2TimestampListObject';
|
|
55455
|
+
values: Array<Scalars['Long']['output']>;
|
|
55456
|
+
};
|
|
54949
55457
|
export declare type GraphStoreCypherQueryV2TimestampObject = {
|
|
54950
55458
|
__typename?: 'GraphStoreCypherQueryV2TimestampObject';
|
|
54951
55459
|
value: Scalars['Long']['output'];
|
|
@@ -54954,7 +55462,7 @@ export declare enum GraphStoreCypherQueryV2VersionEnum {
|
|
|
54954
55462
|
V2 = "V2",
|
|
54955
55463
|
V3 = "V3"
|
|
54956
55464
|
}
|
|
54957
|
-
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;
|
|
54958
55466
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
54959
55467
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
54960
55468
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -55779,7 +56287,7 @@ export declare type GraphStoreFullContentReferencedEntityEndNode = {
|
|
|
55779
56287
|
data?: Maybe<GraphStoreFullContentReferencedEntityEndUnion>;
|
|
55780
56288
|
id: Scalars['ID']['output'];
|
|
55781
56289
|
};
|
|
55782
|
-
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;
|
|
55783
56291
|
export declare type GraphStoreFullContentReferencedEntityNode = Node & {
|
|
55784
56292
|
__typename?: 'GraphStoreFullContentReferencedEntityNode';
|
|
55785
56293
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -55793,7 +56301,7 @@ export declare type GraphStoreFullContentReferencedEntityStartNode = {
|
|
|
55793
56301
|
data?: Maybe<GraphStoreFullContentReferencedEntityStartUnion>;
|
|
55794
56302
|
id: Scalars['ID']['output'];
|
|
55795
56303
|
};
|
|
55796
|
-
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;
|
|
55797
56305
|
export declare type GraphStoreFullIncidentAssociatedPostIncidentReviewConnection = HasPageInfo & HasTotal & {
|
|
55798
56306
|
__typename?: 'GraphStoreFullIncidentAssociatedPostIncidentReviewConnection';
|
|
55799
56307
|
edges: Array<Maybe<GraphStoreFullIncidentAssociatedPostIncidentReviewEdge>>;
|
|
@@ -59678,6 +60186,18 @@ export declare type GraphStoreParentTeamHasChildTeamSortInput = {
|
|
|
59678
60186
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
59679
60187
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
59680
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
|
+
};
|
|
59681
60201
|
export declare type GraphStorePositionAllocatedToFocusAreaSortInput = {
|
|
59682
60202
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
59683
60203
|
};
|
|
@@ -60132,6 +60652,9 @@ export declare type GraphStoreProjectExplicitlyAssociatedRepoSortInput = {
|
|
|
60132
60652
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
60133
60653
|
to_providerAri?: InputMaybe<GraphStoreSortInput>;
|
|
60134
60654
|
};
|
|
60655
|
+
export declare type GraphStoreProjectHasAvpDashboardSortInput = {
|
|
60656
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
60657
|
+
};
|
|
60135
60658
|
export declare type GraphStoreProjectHasIssueConditionalFilterInput = {
|
|
60136
60659
|
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
60137
60660
|
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
@@ -61039,6 +61562,118 @@ export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalTeamInverseE
|
|
|
61039
61562
|
};
|
|
61040
61563
|
export declare type GraphStoreSimplifiedAtlassianUserCreatedExternalTeamInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
61041
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;
|
|
61042
61677
|
export declare type GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityConnection = HasPageInfo & HasTotal & {
|
|
61043
61678
|
__typename?: 'GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityConnection';
|
|
61044
61679
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserDismissedJiraForYouRecommendationEntityEdge>>>;
|
|
@@ -61211,6 +61846,118 @@ export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalTeamInverseEdge
|
|
|
61211
61846
|
};
|
|
61212
61847
|
export declare type GraphStoreSimplifiedAtlassianUserOwnsExternalTeamInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
61213
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;
|
|
61214
61961
|
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerContactConnection = HasPageInfo & {
|
|
61215
61962
|
__typename?: 'GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerContactConnection';
|
|
61216
61963
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserUpdatedExternalCustomerContactEdge>>>;
|
|
@@ -61295,6 +62042,118 @@ export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalTeamInverseE
|
|
|
61295
62042
|
};
|
|
61296
62043
|
export declare type GraphStoreSimplifiedAtlassianUserUpdatedExternalTeamInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
61297
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;
|
|
61298
62157
|
export declare type GraphStoreSimplifiedBoardBelongsToProjectConnection = HasPageInfo & {
|
|
61299
62158
|
__typename?: 'GraphStoreSimplifiedBoardBelongsToProjectConnection';
|
|
61300
62159
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedBoardBelongsToProjectEdge>>>;
|
|
@@ -61969,8 +62828,8 @@ export declare type GraphStoreSimplifiedContentReferencedEntityInverseEdge = {
|
|
|
61969
62828
|
lastUpdated: Scalars['DateTime']['output'];
|
|
61970
62829
|
node?: Maybe<GraphStoreSimplifiedContentReferencedEntityInverseUnion>;
|
|
61971
62830
|
};
|
|
61972
|
-
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;
|
|
61973
|
-
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;
|
|
61974
62833
|
export declare type GraphStoreSimplifiedConversationHasMessageConnection = HasPageInfo & {
|
|
61975
62834
|
__typename?: 'GraphStoreSimplifiedConversationHasMessageConnection';
|
|
61976
62835
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConversationHasMessageEdge>>>;
|
|
@@ -61999,6 +62858,34 @@ export declare type GraphStoreSimplifiedConversationHasMessageInverseEdge = {
|
|
|
61999
62858
|
};
|
|
62000
62859
|
export declare type GraphStoreSimplifiedConversationHasMessageInverseUnion = ExternalConversation;
|
|
62001
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;
|
|
62002
62889
|
export declare type GraphStoreSimplifiedCustomerAssociatedIssueConnection = HasPageInfo & {
|
|
62003
62890
|
__typename?: 'GraphStoreSimplifiedCustomerAssociatedIssueConnection';
|
|
62004
62891
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedCustomerAssociatedIssueEdge>>>;
|
|
@@ -64695,6 +65582,118 @@ export declare type GraphStoreSimplifiedParentTeamHasChildTeamInverseEdge = {
|
|
|
64695
65582
|
};
|
|
64696
65583
|
export declare type GraphStoreSimplifiedParentTeamHasChildTeamInverseUnion = TeamV2;
|
|
64697
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;
|
|
64698
65697
|
export declare type GraphStoreSimplifiedPositionAllocatedToFocusAreaConnection = HasPageInfo & {
|
|
64699
65698
|
__typename?: 'GraphStoreSimplifiedPositionAllocatedToFocusAreaConnection';
|
|
64700
65699
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedPositionAllocatedToFocusAreaEdge>>>;
|
|
@@ -65447,6 +66446,34 @@ export declare type GraphStoreSimplifiedProjectExplicitlyAssociatedRepoInverseEd
|
|
|
65447
66446
|
};
|
|
65448
66447
|
export declare type GraphStoreSimplifiedProjectExplicitlyAssociatedRepoInverseUnion = JiraProject;
|
|
65449
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;
|
|
65450
66477
|
export declare type GraphStoreSimplifiedProjectHasIssueConnection = HasPageInfo & HasTotal & {
|
|
65451
66478
|
__typename?: 'GraphStoreSimplifiedProjectHasIssueConnection';
|
|
65452
66479
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectHasIssueEdge>>>;
|
|
@@ -66689,6 +67716,34 @@ export declare type GraphStoreSimplifiedTopicHasRelatedEntityInverseEdge = {
|
|
|
66689
67716
|
};
|
|
66690
67717
|
export declare type GraphStoreSimplifiedTopicHasRelatedEntityInverseUnion = KnowledgeDiscoveryTopicByAri;
|
|
66691
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;
|
|
66692
67747
|
export declare type GraphStoreSimplifiedUserAssignedIncidentConnection = HasPageInfo & {
|
|
66693
67748
|
__typename?: 'GraphStoreSimplifiedUserAssignedIncidentConnection';
|
|
66694
67749
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserAssignedIncidentEdge>>>;
|
|
@@ -68997,6 +70052,34 @@ export declare type GraphStoreSimplifiedUserOwnsPageInverseEdge = {
|
|
|
68997
70052
|
};
|
|
68998
70053
|
export declare type GraphStoreSimplifiedUserOwnsPageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
68999
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;
|
|
69000
70083
|
export declare type GraphStoreSimplifiedUserReactedToIssueCommentConnection = HasPageInfo & {
|
|
69001
70084
|
__typename?: 'GraphStoreSimplifiedUserReactedToIssueCommentConnection';
|
|
69002
70085
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserReactedToIssueCommentEdge>>>;
|
|
@@ -70871,6 +71954,9 @@ export declare type GraphStoreThirdPartyToGraphRemoteLinkSortInput = {
|
|
|
70871
71954
|
export declare type GraphStoreTopicHasRelatedEntitySortInput = {
|
|
70872
71955
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
70873
71956
|
};
|
|
71957
|
+
export declare type GraphStoreUserApprovesPlanSortInput = {
|
|
71958
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71959
|
+
};
|
|
70874
71960
|
export declare type GraphStoreUserAssignedIncidentSortInput = {
|
|
70875
71961
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
70876
71962
|
};
|
|
@@ -71218,6 +72304,9 @@ export declare type GraphStoreUserOwnsFocusAreaSortInput = {
|
|
|
71218
72304
|
export declare type GraphStoreUserOwnsPageSortInput = {
|
|
71219
72305
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71220
72306
|
};
|
|
72307
|
+
export declare type GraphStoreUserOwnsPlanSortInput = {
|
|
72308
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
72309
|
+
};
|
|
71221
72310
|
export declare type GraphStoreUserReactedToIssueCommentSortInput = {
|
|
71222
72311
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
71223
72312
|
};
|
|
@@ -71376,6 +72465,8 @@ export declare type GraphStoreV2 = {
|
|
|
71376
72465
|
atlassianTeamReceivedFocusAskInverse?: Maybe<GraphStoreV2SimplifiedAtlassianTeamReceivedFocusAskInverseConnection>;
|
|
71377
72466
|
atlassianTeamSubmittedFocusAsk?: Maybe<GraphStoreV2SimplifiedAtlassianTeamSubmittedFocusAskConnection>;
|
|
71378
72467
|
atlassianTeamSubmittedFocusAskInverse?: Maybe<GraphStoreV2SimplifiedAtlassianTeamSubmittedFocusAskInverseConnection>;
|
|
72468
|
+
atlassianUserApprovesFocusStrategicPlan?: Maybe<GraphStoreV2SimplifiedAtlassianUserApprovesFocusStrategicPlanConnection>;
|
|
72469
|
+
atlassianUserApprovesFocusStrategicPlanInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserApprovesFocusStrategicPlanInverseConnection>;
|
|
71379
72470
|
atlassianUserAssignedJiraWorkItem?: Maybe<GraphStoreV2SimplifiedAtlassianUserAssignedJiraWorkItemConnection>;
|
|
71380
72471
|
atlassianUserAssignedJiraWorkItemInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserAssignedJiraWorkItemInverseConnection>;
|
|
71381
72472
|
atlassianUserAssignedJsmIncident?: Maybe<GraphStoreV2SimplifiedAtlassianUserAssignedJsmIncidentConnection>;
|
|
@@ -71506,6 +72597,8 @@ export declare type GraphStoreV2 = {
|
|
|
71506
72597
|
atlassianUserOwnsFocusAskInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsFocusAskInverseConnection>;
|
|
71507
72598
|
atlassianUserOwnsFocusFocusArea?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsFocusFocusAreaConnection>;
|
|
71508
72599
|
atlassianUserOwnsFocusFocusAreaInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsFocusFocusAreaInverseConnection>;
|
|
72600
|
+
atlassianUserOwnsFocusStrategicPlan?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsFocusStrategicPlanConnection>;
|
|
72601
|
+
atlassianUserOwnsFocusStrategicPlanInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserOwnsFocusStrategicPlanInverseConnection>;
|
|
71509
72602
|
atlassianUserReactedToJiraWorkItemComment?: Maybe<GraphStoreV2SimplifiedAtlassianUserReactedToJiraWorkItemCommentConnection>;
|
|
71510
72603
|
atlassianUserReactedToJiraWorkItemCommentInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserReactedToJiraWorkItemCommentInverseConnection>;
|
|
71511
72604
|
atlassianUserReactedToLoomVideo?: Maybe<GraphStoreV2SimplifiedAtlassianUserReactedToLoomVideoConnection>;
|
|
@@ -71602,6 +72695,8 @@ export declare type GraphStoreV2 = {
|
|
|
71602
72695
|
confluenceSpaceLinksJiraSpaceInverse?: Maybe<GraphStoreV2SimplifiedConfluenceSpaceLinksJiraSpaceInverseConnection>;
|
|
71603
72696
|
contentEntityLinksEntity?: Maybe<GraphStoreV2SimplifiedContentEntityLinksEntityConnection>;
|
|
71604
72697
|
contentEntityLinksEntityInverse?: Maybe<GraphStoreV2SimplifiedContentEntityLinksEntityInverseConnection>;
|
|
72698
|
+
csmCustomerLinksJiraWorkItem?: Maybe<GraphStoreV2SimplifiedCsmCustomerLinksJiraWorkItemConnection>;
|
|
72699
|
+
csmCustomerLinksJiraWorkItemInverse?: Maybe<GraphStoreV2SimplifiedCsmCustomerLinksJiraWorkItemInverseConnection>;
|
|
71605
72700
|
customer360CustomerHasExternalConversation?: Maybe<GraphStoreV2SimplifiedCustomer360CustomerHasExternalConversationConnection>;
|
|
71606
72701
|
customer360CustomerHasExternalConversationInverse?: Maybe<GraphStoreV2SimplifiedCustomer360CustomerHasExternalConversationInverseConnection>;
|
|
71607
72702
|
customer360CustomerLinksJiraWorkItem?: Maybe<GraphStoreV2SimplifiedCustomer360CustomerLinksJiraWorkItemConnection>;
|
|
@@ -71728,7 +72823,15 @@ export declare type GraphStoreV2 = {
|
|
|
71728
72823
|
externalUserCreatedExternalTeam?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalTeamConnection>;
|
|
71729
72824
|
externalUserCreatedExternalTeamInverse?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalTeamInverseConnection>;
|
|
71730
72825
|
externalUserCreatedExternalTest?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalTestConnection>;
|
|
72826
|
+
externalUserCreatedExternalTestExecution?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalTestExecutionConnection>;
|
|
72827
|
+
externalUserCreatedExternalTestExecutionInverse?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalTestExecutionInverseConnection>;
|
|
71731
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>;
|
|
71732
72835
|
externalUserCreatedExternalWorkItem?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalWorkItemConnection>;
|
|
71733
72836
|
externalUserCreatedExternalWorkItemInverse?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalWorkItemInverseConnection>;
|
|
71734
72837
|
externalUserLastUpdatedExternalDesign?: Maybe<GraphStoreV2SimplifiedExternalUserLastUpdatedExternalDesignConnection>;
|
|
@@ -71762,7 +72865,15 @@ export declare type GraphStoreV2 = {
|
|
|
71762
72865
|
externalUserOwnsExternalTeam?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalTeamConnection>;
|
|
71763
72866
|
externalUserOwnsExternalTeamInverse?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalTeamInverseConnection>;
|
|
71764
72867
|
externalUserOwnsExternalTest?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalTestConnection>;
|
|
72868
|
+
externalUserOwnsExternalTestExecution?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalTestExecutionConnection>;
|
|
72869
|
+
externalUserOwnsExternalTestExecutionInverse?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalTestExecutionInverseConnection>;
|
|
71765
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>;
|
|
71766
72877
|
externalUserReviewedExternalPullRequest?: Maybe<GraphStoreV2SimplifiedExternalUserReviewedExternalPullRequestConnection>;
|
|
71767
72878
|
externalUserReviewedExternalPullRequestInverse?: Maybe<GraphStoreV2SimplifiedExternalUserReviewedExternalPullRequestInverseConnection>;
|
|
71768
72879
|
externalUserUpdatedExternalCustomerContact?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalCustomerContactConnection>;
|
|
@@ -71786,7 +72897,15 @@ export declare type GraphStoreV2 = {
|
|
|
71786
72897
|
externalUserUpdatedExternalTeam?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalTeamConnection>;
|
|
71787
72898
|
externalUserUpdatedExternalTeamInverse?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalTeamInverseConnection>;
|
|
71788
72899
|
externalUserUpdatedExternalTest?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalTestConnection>;
|
|
72900
|
+
externalUserUpdatedExternalTestExecution?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalTestExecutionConnection>;
|
|
72901
|
+
externalUserUpdatedExternalTestExecutionInverse?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalTestExecutionInverseConnection>;
|
|
71789
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>;
|
|
71790
72909
|
externalWorkerFillsExternalPosition?: Maybe<GraphStoreV2SimplifiedExternalWorkerFillsExternalPositionConnection>;
|
|
71791
72910
|
externalWorkerFillsExternalPositionInverse?: Maybe<GraphStoreV2SimplifiedExternalWorkerFillsExternalPositionInverseConnection>;
|
|
71792
72911
|
externalWorkerLinksAtlassianUser?: Maybe<GraphStoreV2SimplifiedExternalWorkerLinksAtlassianUserConnection>;
|
|
@@ -71808,10 +72927,20 @@ export declare type GraphStoreV2 = {
|
|
|
71808
72927
|
focusFocusAreaHasThirdPartyDocumentInverse?: Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasThirdPartyDocumentInverseConnection>;
|
|
71809
72928
|
focusFocusAreaHasWorkEntity?: Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasWorkEntityConnection>;
|
|
71810
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>;
|
|
71811
72938
|
jiraEpicTracksAtlassianProject?: Maybe<GraphStoreV2SimplifiedJiraEpicTracksAtlassianProjectConnection>;
|
|
71812
72939
|
jiraEpicTracksAtlassianProjectInverse?: Maybe<GraphStoreV2SimplifiedJiraEpicTracksAtlassianProjectInverseConnection>;
|
|
71813
72940
|
jiraSpaceExplicitlyLinksExternalRepository?: Maybe<GraphStoreV2SimplifiedJiraSpaceExplicitlyLinksExternalRepositoryConnection>;
|
|
71814
72941
|
jiraSpaceExplicitlyLinksExternalRepositoryInverse?: Maybe<GraphStoreV2SimplifiedJiraSpaceExplicitlyLinksExternalRepositoryInverseConnection>;
|
|
72942
|
+
jiraSpaceHasAvpDashboard?: Maybe<GraphStoreV2SimplifiedJiraSpaceHasAvpDashboardConnection>;
|
|
72943
|
+
jiraSpaceHasAvpDashboardInverse?: Maybe<GraphStoreV2SimplifiedJiraSpaceHasAvpDashboardInverseConnection>;
|
|
71815
72944
|
jiraSpaceHasJiraBoard?: Maybe<GraphStoreV2SimplifiedJiraSpaceHasJiraBoardConnection>;
|
|
71816
72945
|
jiraSpaceHasJiraBoardInverse?: Maybe<GraphStoreV2SimplifiedJiraSpaceHasJiraBoardInverseConnection>;
|
|
71817
72946
|
jiraSpaceHasJiraReleaseVersion?: Maybe<GraphStoreV2SimplifiedJiraSpaceHasJiraReleaseVersionConnection>;
|
|
@@ -72209,6 +73338,20 @@ export declare type GraphStoreV2AtlassianTeamSubmittedFocusAskInverseArgs = {
|
|
|
72209
73338
|
id: Scalars['ID']['input'];
|
|
72210
73339
|
sort?: InputMaybe<GraphStoreV2AtlassianTeamSubmittedFocusAskSortInput>;
|
|
72211
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
|
+
};
|
|
72212
73355
|
export declare type GraphStoreV2AtlassianUserAssignedJiraWorkItemArgs = {
|
|
72213
73356
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
72214
73357
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -73127,6 +74270,20 @@ export declare type GraphStoreV2AtlassianUserOwnsFocusFocusAreaInverseArgs = {
|
|
|
73127
74270
|
id: Scalars['ID']['input'];
|
|
73128
74271
|
sort?: InputMaybe<GraphStoreV2AtlassianUserOwnsFocusFocusAreaSortInput>;
|
|
73129
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
|
+
};
|
|
73130
74287
|
export declare type GraphStoreV2AtlassianUserReactedToJiraWorkItemCommentArgs = {
|
|
73131
74288
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
73132
74289
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -73799,6 +74956,20 @@ export declare type GraphStoreV2ContentEntityLinksEntityInverseArgs = {
|
|
|
73799
74956
|
id: Scalars['ID']['input'];
|
|
73800
74957
|
sort?: InputMaybe<GraphStoreV2ContentEntityLinksEntitySortInput>;
|
|
73801
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
|
+
};
|
|
73802
74973
|
export declare type GraphStoreV2Customer360CustomerHasExternalConversationArgs = {
|
|
73803
74974
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
73804
74975
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -74688,6 +75859,20 @@ export declare type GraphStoreV2ExternalUserCreatedExternalTestArgs = {
|
|
|
74688
75859
|
id: Scalars['ID']['input'];
|
|
74689
75860
|
sort?: InputMaybe<GraphStoreV2ExternalUserCreatedExternalTestSortInput>;
|
|
74690
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
|
+
};
|
|
74691
75876
|
export declare type GraphStoreV2ExternalUserCreatedExternalTestInverseArgs = {
|
|
74692
75877
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
74693
75878
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -74695,6 +75880,48 @@ export declare type GraphStoreV2ExternalUserCreatedExternalTestInverseArgs = {
|
|
|
74695
75880
|
id: Scalars['ID']['input'];
|
|
74696
75881
|
sort?: InputMaybe<GraphStoreV2ExternalUserCreatedExternalTestSortInput>;
|
|
74697
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
|
+
};
|
|
74698
75925
|
export declare type GraphStoreV2ExternalUserCreatedExternalWorkItemArgs = {
|
|
74699
75926
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
74700
75927
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -74926,6 +76153,20 @@ export declare type GraphStoreV2ExternalUserOwnsExternalTestArgs = {
|
|
|
74926
76153
|
id: Scalars['ID']['input'];
|
|
74927
76154
|
sort?: InputMaybe<GraphStoreV2ExternalUserOwnsExternalTestSortInput>;
|
|
74928
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
|
+
};
|
|
74929
76170
|
export declare type GraphStoreV2ExternalUserOwnsExternalTestInverseArgs = {
|
|
74930
76171
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
74931
76172
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -74933,6 +76174,48 @@ export declare type GraphStoreV2ExternalUserOwnsExternalTestInverseArgs = {
|
|
|
74933
76174
|
id: Scalars['ID']['input'];
|
|
74934
76175
|
sort?: InputMaybe<GraphStoreV2ExternalUserOwnsExternalTestSortInput>;
|
|
74935
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
|
+
};
|
|
74936
76219
|
export declare type GraphStoreV2ExternalUserReviewedExternalPullRequestArgs = {
|
|
74937
76220
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
74938
76221
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -75094,6 +76377,20 @@ export declare type GraphStoreV2ExternalUserUpdatedExternalTestArgs = {
|
|
|
75094
76377
|
id: Scalars['ID']['input'];
|
|
75095
76378
|
sort?: InputMaybe<GraphStoreV2ExternalUserUpdatedExternalTestSortInput>;
|
|
75096
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
|
+
};
|
|
75097
76394
|
export declare type GraphStoreV2ExternalUserUpdatedExternalTestInverseArgs = {
|
|
75098
76395
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
75099
76396
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -75101,6 +76398,48 @@ export declare type GraphStoreV2ExternalUserUpdatedExternalTestInverseArgs = {
|
|
|
75101
76398
|
id: Scalars['ID']['input'];
|
|
75102
76399
|
sort?: InputMaybe<GraphStoreV2ExternalUserUpdatedExternalTestSortInput>;
|
|
75103
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
|
+
};
|
|
75104
76443
|
export declare type GraphStoreV2ExternalWorkerFillsExternalPositionArgs = {
|
|
75105
76444
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
75106
76445
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -75248,6 +76587,62 @@ export declare type GraphStoreV2FocusFocusAreaHasWorkEntityInverseArgs = {
|
|
|
75248
76587
|
id: Scalars['ID']['input'];
|
|
75249
76588
|
sort?: InputMaybe<GraphStoreV2FocusFocusAreaHasWorkEntitySortInput>;
|
|
75250
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
|
+
};
|
|
75251
76646
|
export declare type GraphStoreV2JiraEpicTracksAtlassianProjectArgs = {
|
|
75252
76647
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
75253
76648
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -75276,6 +76671,20 @@ export declare type GraphStoreV2JiraSpaceExplicitlyLinksExternalRepositoryInvers
|
|
|
75276
76671
|
id: Scalars['ID']['input'];
|
|
75277
76672
|
sort?: InputMaybe<GraphStoreV2JiraSpaceExplicitlyLinksExternalRepositorySortInput>;
|
|
75278
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
|
+
};
|
|
75279
76688
|
export declare type GraphStoreV2JiraSpaceHasJiraBoardArgs = {
|
|
75280
76689
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
75281
76690
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -76532,6 +77941,9 @@ export declare type GraphStoreV2AtlassianTeamReceivedFocusAskSortInput = {
|
|
|
76532
77941
|
export declare type GraphStoreV2AtlassianTeamSubmittedFocusAskSortInput = {
|
|
76533
77942
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
76534
77943
|
};
|
|
77944
|
+
export declare type GraphStoreV2AtlassianUserApprovesFocusStrategicPlanSortInput = {
|
|
77945
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
77946
|
+
};
|
|
76535
77947
|
export declare type GraphStoreV2AtlassianUserAssignedJiraWorkItemSortInput = {
|
|
76536
77948
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
76537
77949
|
};
|
|
@@ -76841,6 +78253,9 @@ export declare type GraphStoreV2AtlassianUserOwnsFocusAskSortInput = {
|
|
|
76841
78253
|
export declare type GraphStoreV2AtlassianUserOwnsFocusFocusAreaSortInput = {
|
|
76842
78254
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
76843
78255
|
};
|
|
78256
|
+
export declare type GraphStoreV2AtlassianUserOwnsFocusStrategicPlanSortInput = {
|
|
78257
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
78258
|
+
};
|
|
76844
78259
|
export declare type GraphStoreV2AtlassianUserReactedToJiraWorkItemCommentSortInput = {
|
|
76845
78260
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
76846
78261
|
};
|
|
@@ -77505,6 +78920,9 @@ export declare type GraphStoreV2CreateLoomVideoHasConfluencePagePayload = {
|
|
|
77505
78920
|
errors?: Maybe<Array<MutationError>>;
|
|
77506
78921
|
success: Scalars['Boolean']['output'];
|
|
77507
78922
|
};
|
|
78923
|
+
export declare type GraphStoreV2CsmCustomerLinksJiraWorkItemSortInput = {
|
|
78924
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
78925
|
+
};
|
|
77508
78926
|
export declare type GraphStoreV2Customer360CustomerHasExternalConversationSortInput = {
|
|
77509
78927
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
77510
78928
|
};
|
|
@@ -77516,7 +78934,7 @@ export declare type GraphStoreV2CypherQueryV2AriNode = {
|
|
|
77516
78934
|
data?: Maybe<GraphStoreV2CypherQueryV2AriNodeUnion>;
|
|
77517
78935
|
id: Scalars['ID']['output'];
|
|
77518
78936
|
};
|
|
77519
|
-
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;
|
|
77520
78938
|
export declare type GraphStoreV2CypherQueryV2BooleanObject = {
|
|
77521
78939
|
__typename?: 'GraphStoreV2CypherQueryV2BooleanObject';
|
|
77522
78940
|
value: Scalars['Boolean']['output'];
|
|
@@ -77541,6 +78959,10 @@ export declare type GraphStoreV2CypherQueryV2FloatObject = {
|
|
|
77541
78959
|
__typename?: 'GraphStoreV2CypherQueryV2FloatObject';
|
|
77542
78960
|
value: Scalars['Float']['output'];
|
|
77543
78961
|
};
|
|
78962
|
+
export declare type GraphStoreV2CypherQueryV2IntListObject = {
|
|
78963
|
+
__typename?: 'GraphStoreV2CypherQueryV2IntListObject';
|
|
78964
|
+
values: Array<Scalars['Int']['output']>;
|
|
78965
|
+
};
|
|
77544
78966
|
export declare type GraphStoreV2CypherQueryV2IntObject = {
|
|
77545
78967
|
__typename?: 'GraphStoreV2CypherQueryV2IntObject';
|
|
77546
78968
|
value: Scalars['Int']['output'];
|
|
@@ -77553,11 +78975,19 @@ export declare type GraphStoreV2CypherQueryV2NodeList = {
|
|
|
77553
78975
|
__typename?: 'GraphStoreV2CypherQueryV2NodeList';
|
|
77554
78976
|
nodes: Array<GraphStoreV2CypherQueryV2AriNode>;
|
|
77555
78977
|
};
|
|
77556
|
-
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
|
+
};
|
|
77557
78983
|
export declare type GraphStoreV2CypherQueryV2StringObject = {
|
|
77558
78984
|
__typename?: 'GraphStoreV2CypherQueryV2StringObject';
|
|
77559
78985
|
value: Scalars['String']['output'];
|
|
77560
78986
|
};
|
|
78987
|
+
export declare type GraphStoreV2CypherQueryV2TimestampListObject = {
|
|
78988
|
+
__typename?: 'GraphStoreV2CypherQueryV2TimestampListObject';
|
|
78989
|
+
values: Array<Scalars['Long']['output']>;
|
|
78990
|
+
};
|
|
77561
78991
|
export declare type GraphStoreV2CypherQueryV2TimestampObject = {
|
|
77562
78992
|
__typename?: 'GraphStoreV2CypherQueryV2TimestampObject';
|
|
77563
78993
|
value: Scalars['Long']['output'];
|
|
@@ -78158,9 +79588,21 @@ export declare type GraphStoreV2ExternalUserCreatedExternalSpaceSortInput = {
|
|
|
78158
79588
|
export declare type GraphStoreV2ExternalUserCreatedExternalTeamSortInput = {
|
|
78159
79589
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
78160
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
|
+
};
|
|
78161
79600
|
export declare type GraphStoreV2ExternalUserCreatedExternalTestSortInput = {
|
|
78162
79601
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
78163
79602
|
};
|
|
79603
|
+
export declare type GraphStoreV2ExternalUserCreatedExternalTestStatusSortInput = {
|
|
79604
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
79605
|
+
};
|
|
78164
79606
|
export declare type GraphStoreV2ExternalUserCreatedExternalWorkItemSortInput = {
|
|
78165
79607
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
78166
79608
|
};
|
|
@@ -78209,9 +79651,21 @@ export declare type GraphStoreV2ExternalUserOwnsExternalSpaceSortInput = {
|
|
|
78209
79651
|
export declare type GraphStoreV2ExternalUserOwnsExternalTeamSortInput = {
|
|
78210
79652
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
78211
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
|
+
};
|
|
78212
79663
|
export declare type GraphStoreV2ExternalUserOwnsExternalTestSortInput = {
|
|
78213
79664
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
78214
79665
|
};
|
|
79666
|
+
export declare type GraphStoreV2ExternalUserOwnsExternalTestStatusSortInput = {
|
|
79667
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
79668
|
+
};
|
|
78215
79669
|
export declare type GraphStoreV2ExternalUserReviewedExternalPullRequestSortInput = {
|
|
78216
79670
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
78217
79671
|
};
|
|
@@ -78245,9 +79699,21 @@ export declare type GraphStoreV2ExternalUserUpdatedExternalSpaceSortInput = {
|
|
|
78245
79699
|
export declare type GraphStoreV2ExternalUserUpdatedExternalTeamSortInput = {
|
|
78246
79700
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
78247
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
|
+
};
|
|
78248
79711
|
export declare type GraphStoreV2ExternalUserUpdatedExternalTestSortInput = {
|
|
78249
79712
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
78250
79713
|
};
|
|
79714
|
+
export declare type GraphStoreV2ExternalUserUpdatedExternalTestStatusSortInput = {
|
|
79715
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
79716
|
+
};
|
|
78251
79717
|
export declare type GraphStoreV2ExternalWorkerFillsExternalPositionSortInput = {
|
|
78252
79718
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
78253
79719
|
};
|
|
@@ -78284,6 +79750,18 @@ export declare type GraphStoreV2FocusFocusAreaHasThirdPartyDocumentSortInput = {
|
|
|
78284
79750
|
export declare type GraphStoreV2FocusFocusAreaHasWorkEntitySortInput = {
|
|
78285
79751
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
78286
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
|
+
};
|
|
78287
79765
|
export declare type GraphStoreV2JiraEpicTracksAtlassianProjectSortInput = {
|
|
78288
79766
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
78289
79767
|
};
|
|
@@ -78294,6 +79772,9 @@ export declare type GraphStoreV2JiraSpaceExplicitlyLinksExternalRepositorySortIn
|
|
|
78294
79772
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
78295
79773
|
to_providerAri?: InputMaybe<GraphStoreSortInput>;
|
|
78296
79774
|
};
|
|
79775
|
+
export declare type GraphStoreV2JiraSpaceHasAvpDashboardSortInput = {
|
|
79776
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
79777
|
+
};
|
|
78297
79778
|
export declare type GraphStoreV2JiraSpaceHasJiraBoardSortInput = {
|
|
78298
79779
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
78299
79780
|
};
|
|
@@ -80237,6 +81718,34 @@ export declare type GraphStoreV2SimplifiedAtlassianTeamSubmittedFocusAskInverseE
|
|
|
80237
81718
|
};
|
|
80238
81719
|
export declare type GraphStoreV2SimplifiedAtlassianTeamSubmittedFocusAskInverseUnion = TeamV2;
|
|
80239
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;
|
|
80240
81749
|
export declare type GraphStoreV2SimplifiedAtlassianUserAssignedJiraWorkItemConnection = HasPageInfo & {
|
|
80241
81750
|
__typename?: 'GraphStoreV2SimplifiedAtlassianUserAssignedJiraWorkItemConnection';
|
|
80242
81751
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserAssignedJiraWorkItemEdge>>>;
|
|
@@ -82093,6 +83602,34 @@ export declare type GraphStoreV2SimplifiedAtlassianUserOwnsFocusFocusAreaInverse
|
|
|
82093
83602
|
};
|
|
82094
83603
|
export declare type GraphStoreV2SimplifiedAtlassianUserOwnsFocusFocusAreaInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
82095
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;
|
|
82096
83633
|
export declare type GraphStoreV2SimplifiedAtlassianUserReactedToJiraWorkItemCommentConnection = HasPageInfo & {
|
|
82097
83634
|
__typename?: 'GraphStoreV2SimplifiedAtlassianUserReactedToJiraWorkItemCommentConnection';
|
|
82098
83635
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserReactedToJiraWorkItemCommentEdge>>>;
|
|
@@ -83439,8 +84976,36 @@ export declare type GraphStoreV2SimplifiedContentEntityLinksEntityInverseEdge =
|
|
|
83439
84976
|
lastUpdated: Scalars['DateTime']['output'];
|
|
83440
84977
|
node?: Maybe<GraphStoreV2SimplifiedContentEntityLinksEntityInverseUnion>;
|
|
83441
84978
|
};
|
|
83442
|
-
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;
|
|
83443
|
-
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;
|
|
83444
85009
|
export declare type GraphStoreV2SimplifiedCustomer360CustomerHasExternalConversationConnection = HasPageInfo & {
|
|
83445
85010
|
__typename?: 'GraphStoreV2SimplifiedCustomer360CustomerHasExternalConversationConnection';
|
|
83446
85011
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedCustomer360CustomerHasExternalConversationEdge>>>;
|
|
@@ -85218,6 +86783,34 @@ export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalTestEdge =
|
|
|
85218
86783
|
lastUpdated: Scalars['DateTime']['output'];
|
|
85219
86784
|
node?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalTestUnion>;
|
|
85220
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;
|
|
85221
86814
|
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalTestInverseConnection = HasPageInfo & {
|
|
85222
86815
|
__typename?: 'GraphStoreV2SimplifiedExternalUserCreatedExternalTestInverseConnection';
|
|
85223
86816
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalTestInverseEdge>>>;
|
|
@@ -85232,6 +86825,90 @@ export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalTestInverse
|
|
|
85232
86825
|
node?: Maybe<GraphStoreV2SimplifiedExternalUserCreatedExternalTestInverseUnion>;
|
|
85233
86826
|
};
|
|
85234
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;
|
|
85235
86912
|
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalTestUnion = ExternalTest;
|
|
85236
86913
|
export declare type GraphStoreV2SimplifiedExternalUserCreatedExternalWorkItemConnection = HasPageInfo & {
|
|
85237
86914
|
__typename?: 'GraphStoreV2SimplifiedExternalUserCreatedExternalWorkItemConnection';
|
|
@@ -85694,6 +87371,34 @@ export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalTestEdge = {
|
|
|
85694
87371
|
lastUpdated: Scalars['DateTime']['output'];
|
|
85695
87372
|
node?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalTestUnion>;
|
|
85696
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;
|
|
85697
87402
|
export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalTestInverseConnection = HasPageInfo & {
|
|
85698
87403
|
__typename?: 'GraphStoreV2SimplifiedExternalUserOwnsExternalTestInverseConnection';
|
|
85699
87404
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalTestInverseEdge>>>;
|
|
@@ -85708,6 +87413,90 @@ export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalTestInverseEdg
|
|
|
85708
87413
|
node?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalTestInverseUnion>;
|
|
85709
87414
|
};
|
|
85710
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;
|
|
85711
87500
|
export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalTestUnion = ExternalTest;
|
|
85712
87501
|
export declare type GraphStoreV2SimplifiedExternalUserReviewedExternalPullRequestConnection = HasPageInfo & {
|
|
85713
87502
|
__typename?: 'GraphStoreV2SimplifiedExternalUserReviewedExternalPullRequestConnection';
|
|
@@ -86030,6 +87819,34 @@ export declare type GraphStoreV2SimplifiedExternalUserUpdatedExternalTestEdge =
|
|
|
86030
87819
|
lastUpdated: Scalars['DateTime']['output'];
|
|
86031
87820
|
node?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalTestUnion>;
|
|
86032
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;
|
|
86033
87850
|
export declare type GraphStoreV2SimplifiedExternalUserUpdatedExternalTestInverseConnection = HasPageInfo & {
|
|
86034
87851
|
__typename?: 'GraphStoreV2SimplifiedExternalUserUpdatedExternalTestInverseConnection';
|
|
86035
87852
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalTestInverseEdge>>>;
|
|
@@ -86044,6 +87861,90 @@ export declare type GraphStoreV2SimplifiedExternalUserUpdatedExternalTestInverse
|
|
|
86044
87861
|
node?: Maybe<GraphStoreV2SimplifiedExternalUserUpdatedExternalTestInverseUnion>;
|
|
86045
87862
|
};
|
|
86046
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;
|
|
86047
87948
|
export declare type GraphStoreV2SimplifiedExternalUserUpdatedExternalTestUnion = ExternalTest;
|
|
86048
87949
|
export declare type GraphStoreV2SimplifiedExternalWorkerFillsExternalPositionConnection = HasPageInfo & {
|
|
86049
87950
|
__typename?: 'GraphStoreV2SimplifiedExternalWorkerFillsExternalPositionConnection';
|
|
@@ -86343,6 +88244,118 @@ export declare type GraphStoreV2SimplifiedFocusFocusAreaHasWorkEntityInverseEdge
|
|
|
86343
88244
|
};
|
|
86344
88245
|
export declare type GraphStoreV2SimplifiedFocusFocusAreaHasWorkEntityInverseUnion = MercuryFocusArea;
|
|
86345
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;
|
|
86346
88359
|
export declare type GraphStoreV2SimplifiedJiraEpicTracksAtlassianProjectConnection = HasPageInfo & {
|
|
86347
88360
|
__typename?: 'GraphStoreV2SimplifiedJiraEpicTracksAtlassianProjectConnection';
|
|
86348
88361
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraEpicTracksAtlassianProjectEdge>>>;
|
|
@@ -86403,6 +88416,34 @@ export declare type GraphStoreV2SimplifiedJiraSpaceExplicitlyLinksExternalReposi
|
|
|
86403
88416
|
};
|
|
86404
88417
|
export declare type GraphStoreV2SimplifiedJiraSpaceExplicitlyLinksExternalRepositoryInverseUnion = JiraProject;
|
|
86405
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;
|
|
86406
88447
|
export declare type GraphStoreV2SimplifiedJiraSpaceHasJiraBoardConnection = HasPageInfo & {
|
|
86407
88448
|
__typename?: 'GraphStoreV2SimplifiedJiraSpaceHasJiraBoardConnection';
|
|
86408
88449
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraSpaceHasJiraBoardEdge>>>;
|
|
@@ -116474,6 +118515,97 @@ export declare type JpdViewUpdatedEvent = {
|
|
|
116474
118515
|
viewId: Scalars['Int']['output'];
|
|
116475
118516
|
viewUuid: Scalars['ID']['output'];
|
|
116476
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
|
+
}
|
|
116477
118609
|
export declare type JsmAgentWorkspaceLocations = {
|
|
116478
118610
|
__typename?: 'JsmAgentWorkspaceLocations';
|
|
116479
118611
|
errors?: Maybe<Array<QueryError>>;
|
|
@@ -117850,6 +119982,32 @@ export declare type KitsuneFeedbackSummary = {
|
|
|
117850
119982
|
generatedAt: Scalars['DateTime']['output'];
|
|
117851
119983
|
text: Scalars['String']['output'];
|
|
117852
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
|
+
}
|
|
117853
120011
|
export declare type KitsuneNode = {
|
|
117854
120012
|
_id: Scalars['ID']['output'];
|
|
117855
120013
|
};
|
|
@@ -117876,12 +120034,16 @@ export declare type KitsuneSourceInputWeb = {
|
|
|
117876
120034
|
export declare type KitsuneSpace = Node & {
|
|
117877
120035
|
__typename?: 'KitsuneSpace';
|
|
117878
120036
|
feedbacks: KitsuneFeedbackConnection;
|
|
120037
|
+
fields: KitsuneFieldConnection;
|
|
117879
120038
|
id: Scalars['ID']['output'];
|
|
117880
120039
|
name?: Maybe<Scalars['String']['output']>;
|
|
117881
120040
|
};
|
|
117882
120041
|
export declare type KitsuneSpaceFeedbacksArgs = {
|
|
117883
120042
|
pagination?: InputMaybe<KitsunePaginationInput>;
|
|
117884
120043
|
};
|
|
120044
|
+
export declare type KitsuneSpaceFieldsArgs = {
|
|
120045
|
+
pagination?: InputMaybe<KitsunePaginationInput>;
|
|
120046
|
+
};
|
|
117885
120047
|
export declare type KitsuneSpaceConnection = KitsuneConnection & {
|
|
117886
120048
|
__typename?: 'KitsuneSpaceConnection';
|
|
117887
120049
|
edges: Array<KitsuneSpaceEdge>;
|
|
@@ -117892,6 +120054,12 @@ export declare type KitsuneSpaceEdge = KitsuneEdge & {
|
|
|
117892
120054
|
cursor: Scalars['String']['output'];
|
|
117893
120055
|
node?: Maybe<KitsuneSpace>;
|
|
117894
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
|
+
};
|
|
117895
120063
|
export declare type KitsuneViewConfig = KitsuneNode & {
|
|
117896
120064
|
__typename?: 'KitsuneViewConfig';
|
|
117897
120065
|
_id: Scalars['ID']['output'];
|
|
@@ -117902,6 +120070,11 @@ export declare enum KitsuneViewConfigStatus {
|
|
|
117902
120070
|
Published = "PUBLISHED",
|
|
117903
120071
|
Saved = "SAVED"
|
|
117904
120072
|
}
|
|
120073
|
+
export declare enum KitsuneViewType {
|
|
120074
|
+
Dashboard = "DASHBOARD",
|
|
120075
|
+
List = "LIST",
|
|
120076
|
+
Table = "TABLE"
|
|
120077
|
+
}
|
|
117905
120078
|
export declare type KnowledgeBaseAccessibleLinkedSourceResult = {
|
|
117906
120079
|
__typename?: 'KnowledgeBaseAccessibleLinkedSourceResult';
|
|
117907
120080
|
sourceARI?: Maybe<Scalars['ID']['output']>;
|
|
@@ -123384,6 +125557,16 @@ export declare type MenusLookAndFeel = {
|
|
|
123384
125557
|
hoverOrFocus?: Maybe<Array<Maybe<MapOfStringToString>>>;
|
|
123385
125558
|
};
|
|
123386
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
|
+
};
|
|
123387
125570
|
export declare type MercuryAddTagsToProposalInput = {
|
|
123388
125571
|
changeProposalId: Scalars['ID']['input'];
|
|
123389
125572
|
tagIds: Array<Scalars['ID']['input']>;
|
|
@@ -123778,6 +125961,7 @@ export declare type MercuryCostSubtype = Node & {
|
|
|
123778
125961
|
createdDate?: Maybe<Scalars['String']['output']>;
|
|
123779
125962
|
description?: Maybe<Scalars['String']['output']>;
|
|
123780
125963
|
id: Scalars['ID']['output'];
|
|
125964
|
+
isDeletable?: Maybe<Scalars['Boolean']['output']>;
|
|
123781
125965
|
key: Scalars['String']['output'];
|
|
123782
125966
|
name: Scalars['String']['output'];
|
|
123783
125967
|
updatedBy?: Maybe<User>;
|
|
@@ -123926,6 +126110,17 @@ export declare type MercuryCreateFocusAreaCustomFieldDefinitionInput = {
|
|
|
123926
126110
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
123927
126111
|
coreCustomFieldDefinition?: InputMaybe<MercuryCreateCoreCustomFieldDefinitionInput>;
|
|
123928
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
|
+
};
|
|
123929
126124
|
export declare type MercuryCreateFocusAreaInput = {
|
|
123930
126125
|
cloudId: Scalars['ID']['input'];
|
|
123931
126126
|
externalId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -123994,6 +126189,18 @@ export declare type MercuryCreatePortfolioPayload = Payload & {
|
|
|
123994
126189
|
errors?: Maybe<Array<MutationError>>;
|
|
123995
126190
|
success: Scalars['Boolean']['output'];
|
|
123996
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
|
+
};
|
|
123997
126204
|
export declare type MercuryCreateSingleSelectCustomFieldDefinitionInput = {
|
|
123998
126205
|
base: MercuryCreateBaseCustomFieldDefinitionInput;
|
|
123999
126206
|
options: Array<MercuryCustomSelectFieldOptionInput>;
|
|
@@ -124025,6 +126232,10 @@ export declare type MercuryCreateStrategicEventPayload = Payload & {
|
|
|
124025
126232
|
export declare type MercuryCreateTextCustomFieldDefinitionInput = {
|
|
124026
126233
|
base: MercuryCreateBaseCustomFieldDefinitionInput;
|
|
124027
126234
|
};
|
|
126235
|
+
export declare type MercuryCurrency = {
|
|
126236
|
+
__typename?: 'MercuryCurrency';
|
|
126237
|
+
code?: Maybe<Scalars['String']['output']>;
|
|
126238
|
+
};
|
|
124028
126239
|
export declare type MercuryCustomField = {
|
|
124029
126240
|
createdBy?: Maybe<User>;
|
|
124030
126241
|
createdDate: Scalars['DateTime']['output'];
|
|
@@ -124307,6 +126518,14 @@ export declare type MercuryDeletePreferencePayload = Payload & {
|
|
|
124307
126518
|
errors?: Maybe<Array<MutationError>>;
|
|
124308
126519
|
success: Scalars['Boolean']['output'];
|
|
124309
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
|
+
};
|
|
124310
126529
|
export declare type MercuryDeleteStrategicEventCommentInput = {
|
|
124311
126530
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
124312
126531
|
id: Scalars['ID']['input'];
|
|
@@ -124411,6 +126630,7 @@ export declare type MercuryFocusArea = Node & {
|
|
|
124411
126630
|
icon: MercuryFocusAreaIcon;
|
|
124412
126631
|
id: Scalars['ID']['output'];
|
|
124413
126632
|
linkedGoalSummary?: Maybe<MercuryFocusAreaLinkedGoalSummary>;
|
|
126633
|
+
linkedGoals?: Maybe<GraphStoreSimplifiedFocusAreaHasAtlasGoalConnection>;
|
|
124414
126634
|
linkedWorkSummary?: Maybe<MercuryFocusAreaLinkedWorkSummary>;
|
|
124415
126635
|
name: Scalars['String']['output'];
|
|
124416
126636
|
owner?: Maybe<User>;
|
|
@@ -124432,6 +126652,12 @@ export declare type MercuryFocusAreaFocusAreaStatusUpdatesArgs = {
|
|
|
124432
126652
|
createdAtOrBefore?: InputMaybe<Scalars['DateTime']['input']>;
|
|
124433
126653
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
124434
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
|
+
};
|
|
124435
126661
|
export declare type MercuryFocusAreaSubFocusAreasArgs = {
|
|
124436
126662
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
124437
126663
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -124546,22 +126772,35 @@ export declare enum MercuryFocusAreaHealthColor {
|
|
|
124546
126772
|
Red = "RED",
|
|
124547
126773
|
Yellow = "YELLOW"
|
|
124548
126774
|
}
|
|
124549
|
-
export declare type
|
|
124550
|
-
__typename?: '
|
|
124551
|
-
|
|
124552
|
-
|
|
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'];
|
|
124553
126781
|
};
|
|
124554
|
-
export declare type
|
|
124555
|
-
|
|
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>;
|
|
124556
126792
|
};
|
|
124557
126793
|
export declare type MercuryFocusAreaHierarchySort = {
|
|
124558
|
-
field
|
|
126794
|
+
field: MercuryFocusAreaHierarchySortField;
|
|
124559
126795
|
order: SortOrder;
|
|
124560
126796
|
};
|
|
124561
126797
|
export declare enum MercuryFocusAreaHierarchySortField {
|
|
124562
|
-
HierarchyLevel = "HIERARCHY_LEVEL",
|
|
124563
126798
|
Name = "NAME"
|
|
124564
126799
|
}
|
|
126800
|
+
export declare enum MercuryFocusAreaHierarchyTypeKey {
|
|
126801
|
+
Investment = "INVESTMENT",
|
|
126802
|
+
Portfolio = "PORTFOLIO"
|
|
126803
|
+
}
|
|
124565
126804
|
export declare type MercuryFocusAreaIcon = {
|
|
124566
126805
|
__typename?: 'MercuryFocusAreaIcon';
|
|
124567
126806
|
url: Scalars['String']['output'];
|
|
@@ -124797,6 +127036,9 @@ export declare type MercuryFocusAreaWorkContext = {
|
|
|
124797
127036
|
__typename?: 'MercuryFocusAreaWorkContext';
|
|
124798
127037
|
focusAreaLinkedWorkContext?: Maybe<Array<Maybe<MercuryFocusAreaLinkedWorkContextData>>>;
|
|
124799
127038
|
};
|
|
127039
|
+
export declare type MercuryForYouInsightsFilter = {
|
|
127040
|
+
insightType?: InputMaybe<MercuryInsightTypeEnum>;
|
|
127041
|
+
};
|
|
124800
127042
|
export declare type MercuryFundChangeSummary = {
|
|
124801
127043
|
__typename?: 'MercuryFundChangeSummary';
|
|
124802
127044
|
amount?: Maybe<MercuryFundChangeSummaryFields>;
|
|
@@ -124910,6 +127152,7 @@ export declare type MercuryFundsQueryApi = {
|
|
|
124910
127152
|
activeFiscalCalendarConfiguration?: Maybe<MercuryFiscalCalendarConfiguration>;
|
|
124911
127153
|
costSubtypes?: Maybe<Array<Maybe<MercuryCostSubtype>>>;
|
|
124912
127154
|
costSubtypesSearch?: Maybe<MercuryCostSubtypeConnection>;
|
|
127155
|
+
currencies?: Maybe<Array<MercuryCurrency>>;
|
|
124913
127156
|
fiscalCalendarConfiguration?: Maybe<MercuryFiscalCalendarConfiguration>;
|
|
124914
127157
|
fiscalCalendarConfigurations?: Maybe<Array<Maybe<MercuryFiscalCalendarConfiguration>>>;
|
|
124915
127158
|
fiscalCalendarConfigurationsSearch?: Maybe<MercuryFiscalCalendarConfigurationConnection>;
|
|
@@ -124931,6 +127174,9 @@ export declare type MercuryFundsQueryApiCostSubtypesSearchArgs = {
|
|
|
124931
127174
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
124932
127175
|
sort?: InputMaybe<Array<InputMaybe<MercuryCostSubtypeSort>>>;
|
|
124933
127176
|
};
|
|
127177
|
+
export declare type MercuryFundsQueryApiCurrenciesArgs = {
|
|
127178
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
127179
|
+
};
|
|
124934
127180
|
export declare type MercuryFundsQueryApiFiscalCalendarConfigurationArgs = {
|
|
124935
127181
|
id: Scalars['ID']['input'];
|
|
124936
127182
|
};
|
|
@@ -124944,6 +127190,7 @@ export declare type MercuryFundsQueryApiFiscalCalendarConfigurationsSearchArgs =
|
|
|
124944
127190
|
sort?: InputMaybe<Array<InputMaybe<MercuryFiscalCalendarConfigurationSort>>>;
|
|
124945
127191
|
};
|
|
124946
127192
|
export declare type MercuryFundsQueryApiFocusAreaMonthlySummariesArgs = {
|
|
127193
|
+
costType?: InputMaybe<MercuryCostType>;
|
|
124947
127194
|
endDateExclusive?: InputMaybe<Scalars['Date']['input']>;
|
|
124948
127195
|
focusAreaIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
124949
127196
|
startDateInclusive?: InputMaybe<Scalars['Date']['input']>;
|
|
@@ -125008,9 +127255,22 @@ export declare type MercuryInsight = {
|
|
|
125008
127255
|
title?: Maybe<Scalars['String']['output']>;
|
|
125009
127256
|
};
|
|
125010
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
|
+
};
|
|
125011
127269
|
export declare enum MercuryInsightTypeEnum {
|
|
125012
127270
|
FocusArea = "FOCUS_AREA",
|
|
127271
|
+
Fund = "FUND",
|
|
125013
127272
|
Goal = "GOAL",
|
|
127273
|
+
Position = "POSITION",
|
|
125014
127274
|
Work = "WORK"
|
|
125015
127275
|
}
|
|
125016
127276
|
export declare type MercuryInsightsMutationApi = {
|
|
@@ -125025,6 +127285,7 @@ export declare type MercuryInsightsQueryApi = {
|
|
|
125025
127285
|
focusAreaFollowerSuggestions?: Maybe<Array<MercuryFocusAreaFollowerSuggestion>>;
|
|
125026
127286
|
focusAreaInsights?: Maybe<Array<MercuryInsightObject>>;
|
|
125027
127287
|
focusAreaWorkSuggestions?: Maybe<Array<MercuryWorkSuggestionsSearchItem>>;
|
|
127288
|
+
forYouInsights?: Maybe<MercuryInsightObjectConnection>;
|
|
125028
127289
|
};
|
|
125029
127290
|
export declare type MercuryInsightsQueryApiFocusAreaFollowerSuggestionsArgs = {
|
|
125030
127291
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -125040,6 +127301,12 @@ export declare type MercuryInsightsQueryApiFocusAreaWorkSuggestionsArgs = {
|
|
|
125040
127301
|
focusAreaId: Scalars['ID']['input'];
|
|
125041
127302
|
workContainerAri: Scalars['String']['input'];
|
|
125042
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
|
+
};
|
|
125043
127310
|
export declare type MercuryIntegrationsContext = {
|
|
125044
127311
|
__typename?: 'MercuryIntegrationsContext';
|
|
125045
127312
|
passionfruit?: Maybe<MercuryPassionfruitContext>;
|
|
@@ -125051,6 +127318,7 @@ export declare type MercuryInvestmentCategory = Node & {
|
|
|
125051
127318
|
description?: Maybe<Scalars['String']['output']>;
|
|
125052
127319
|
id: Scalars['ID']['output'];
|
|
125053
127320
|
investmentCategorySetId: Scalars['ID']['output'];
|
|
127321
|
+
isDeletable?: Maybe<Scalars['Boolean']['output']>;
|
|
125054
127322
|
key: Scalars['String']['output'];
|
|
125055
127323
|
name: Scalars['String']['output'];
|
|
125056
127324
|
updatedBy?: Maybe<User>;
|
|
@@ -125340,12 +127608,14 @@ export declare type MercuryMultiSelectCustomFieldInput = {
|
|
|
125340
127608
|
};
|
|
125341
127609
|
export declare type MercuryMutationApi = {
|
|
125342
127610
|
__typename?: 'MercuryMutationApi';
|
|
127611
|
+
addFocusAreaCustomFieldDefinitionOptions?: Maybe<MercuryAddCustomFieldDefinitionOptionsPayload>;
|
|
125343
127612
|
addWatcherToFocusArea?: Maybe<MercuryAddWatcherToFocusAreaPayload>;
|
|
125344
127613
|
archiveFocusArea?: Maybe<MercuryArchiveFocusAreaPayload>;
|
|
125345
127614
|
assignUserAccessToFocusArea?: Maybe<MercuryAssignUserAccessToFocusAreaPayload>;
|
|
125346
127615
|
createComment?: Maybe<MercuryCreateCommentPayload>;
|
|
125347
127616
|
createFocusArea?: Maybe<MercuryCreateFocusAreaPayload>;
|
|
125348
127617
|
createFocusAreaCustomFieldDefinition?: Maybe<MercuryCreateCustomFieldDefinitionPayload>;
|
|
127618
|
+
createFocusAreaHierarchy?: Maybe<MercuryCreateFocusAreaHierarchyPayload>;
|
|
125349
127619
|
createFocusAreaStatusUpdate?: Maybe<MercuryCreateFocusAreaStatusUpdatePayload>;
|
|
125350
127620
|
createPortfolioWithFocusAreas?: Maybe<MercuryCreatePortfolioPayload>;
|
|
125351
127621
|
deleteAllPreferencesByUser?: Maybe<MercuryDeleteAllPreferencesByUserPayload>;
|
|
@@ -125369,7 +127639,6 @@ export declare type MercuryMutationApi = {
|
|
|
125369
127639
|
removeUserAccessToFocusArea?: Maybe<MercuryRemoveUserAccessToFocusAreaPayload>;
|
|
125370
127640
|
removeWatcherFromFocusArea?: Maybe<MercuryRemoveWatcherFromFocusAreaPayload>;
|
|
125371
127641
|
reorderFocusAreaCustomFieldDefinitionOptions?: Maybe<MercuryReorderCustomFieldDefinitionOptionsPayload>;
|
|
125372
|
-
setFocusAreaCustomFieldDefinitionOptions?: Maybe<MercurySetCustomFieldDefinitionOptionsPayload>;
|
|
125373
127642
|
setFocusAreaCustomFieldValue?: Maybe<MercurySetFocusAreaCustomFieldPayload>;
|
|
125374
127643
|
setFocusAreaCustomFieldValues?: Maybe<MercurySetFocusAreaCustomFieldsPayload>;
|
|
125375
127644
|
setPreference?: Maybe<MercurySetPreferencePayload>;
|
|
@@ -125380,6 +127649,7 @@ export declare type MercuryMutationApi = {
|
|
|
125380
127649
|
updateFocusAreaCustomFieldDefinitionDescription?: Maybe<MercuryUpdateCustomFieldDefinitionDescriptionPayload>;
|
|
125381
127650
|
updateFocusAreaCustomFieldDefinitionName?: Maybe<MercuryUpdateCustomFieldDefinitionNamePayload>;
|
|
125382
127651
|
updateFocusAreaCustomFieldDefinitionOption?: Maybe<MercuryUpdateCustomFieldDefinitionOptionPayload>;
|
|
127652
|
+
updateFocusAreaHierarchyName?: Maybe<MercuryUpdateFocusAreaHierarchyPayload>;
|
|
125383
127653
|
updateFocusAreaName?: Maybe<MercuryUpdateFocusAreaPayload>;
|
|
125384
127654
|
updateFocusAreaOwner?: Maybe<MercuryUpdateFocusAreaPayload>;
|
|
125385
127655
|
updateFocusAreaStatusUpdate?: Maybe<MercuryUpdateFocusAreaStatusUpdatePayload>;
|
|
@@ -125388,6 +127658,9 @@ export declare type MercuryMutationApi = {
|
|
|
125388
127658
|
validateFocusAreaArchival?: Maybe<MercuryArchiveFocusAreaValidationPayload>;
|
|
125389
127659
|
validateFocusAreasForRanking?: Maybe<MercuryValidateFocusAreasForRankingPayload>;
|
|
125390
127660
|
};
|
|
127661
|
+
export declare type MercuryMutationApiAddFocusAreaCustomFieldDefinitionOptionsArgs = {
|
|
127662
|
+
input: MercuryAddCustomFieldDefinitionOptionsInput;
|
|
127663
|
+
};
|
|
125391
127664
|
export declare type MercuryMutationApiAddWatcherToFocusAreaArgs = {
|
|
125392
127665
|
input: MercuryAddWatcherToFocusAreaInput;
|
|
125393
127666
|
};
|
|
@@ -125406,6 +127679,9 @@ export declare type MercuryMutationApiCreateFocusAreaArgs = {
|
|
|
125406
127679
|
export declare type MercuryMutationApiCreateFocusAreaCustomFieldDefinitionArgs = {
|
|
125407
127680
|
input: MercuryCreateFocusAreaCustomFieldDefinitionInput;
|
|
125408
127681
|
};
|
|
127682
|
+
export declare type MercuryMutationApiCreateFocusAreaHierarchyArgs = {
|
|
127683
|
+
input: MercuryCreateFocusAreaHierarchyInput;
|
|
127684
|
+
};
|
|
125409
127685
|
export declare type MercuryMutationApiCreateFocusAreaStatusUpdateArgs = {
|
|
125410
127686
|
input: MercuryCreateFocusAreaStatusUpdateInput;
|
|
125411
127687
|
};
|
|
@@ -125475,9 +127751,6 @@ export declare type MercuryMutationApiRemoveWatcherFromFocusAreaArgs = {
|
|
|
125475
127751
|
export declare type MercuryMutationApiReorderFocusAreaCustomFieldDefinitionOptionsArgs = {
|
|
125476
127752
|
input: MercuryReorderCustomFieldDefinitionOptionsInput;
|
|
125477
127753
|
};
|
|
125478
|
-
export declare type MercuryMutationApiSetFocusAreaCustomFieldDefinitionOptionsArgs = {
|
|
125479
|
-
input: MercurySetCustomFieldDefinitionOptionsInput;
|
|
125480
|
-
};
|
|
125481
127754
|
export declare type MercuryMutationApiSetFocusAreaCustomFieldValueArgs = {
|
|
125482
127755
|
input: MercurySetFocusAreaCustomFieldInput;
|
|
125483
127756
|
};
|
|
@@ -125508,6 +127781,9 @@ export declare type MercuryMutationApiUpdateFocusAreaCustomFieldDefinitionNameAr
|
|
|
125508
127781
|
export declare type MercuryMutationApiUpdateFocusAreaCustomFieldDefinitionOptionArgs = {
|
|
125509
127782
|
input: MercuryUpdateCustomFieldDefinitionOptionInput;
|
|
125510
127783
|
};
|
|
127784
|
+
export declare type MercuryMutationApiUpdateFocusAreaHierarchyNameArgs = {
|
|
127785
|
+
input: MercuryUpdateFocusAreaHierarchyNameInput;
|
|
127786
|
+
};
|
|
125511
127787
|
export declare type MercuryMutationApiUpdateFocusAreaNameArgs = {
|
|
125512
127788
|
input: MercuryUpdateFocusAreaNameInput;
|
|
125513
127789
|
};
|
|
@@ -126009,7 +128285,9 @@ export declare type MercuryQueryApi = {
|
|
|
126009
128285
|
focusArea?: Maybe<MercuryFocusArea>;
|
|
126010
128286
|
focusAreaActivityHistory?: Maybe<MercuryFocusAreaActivityConnection>;
|
|
126011
128287
|
focusAreaCustomFieldDefinitionsSearch?: Maybe<MercuryCustomFieldDefinitionConnection>;
|
|
126012
|
-
|
|
128288
|
+
focusAreaHierarchies?: Maybe<Array<MercuryFocusAreaHierarchy>>;
|
|
128289
|
+
focusAreaHierarchiesSearch?: Maybe<MercuryFocusAreaHierarchyConnection>;
|
|
128290
|
+
focusAreaHierarchy?: Maybe<MercuryFocusAreaHierarchy>;
|
|
126013
128291
|
focusAreaStatusTransitions?: Maybe<Array<MercuryFocusAreaStatusTransition>>;
|
|
126014
128292
|
focusAreaStatusUpdatesByAris?: Maybe<Array<MercuryFocusAreaStatusUpdate>>;
|
|
126015
128293
|
focusAreaTypes?: Maybe<Array<MercuryFocusAreaType>>;
|
|
@@ -126018,7 +128296,6 @@ export declare type MercuryQueryApi = {
|
|
|
126018
128296
|
focusAreasByAris?: Maybe<Array<MercuryFocusArea>>;
|
|
126019
128297
|
focusAreasByExternalIds?: Maybe<Array<Maybe<MercuryFocusArea>>>;
|
|
126020
128298
|
focusAreas_internalDoNotUse?: Maybe<MercuryFocusAreaConnection>;
|
|
126021
|
-
goalStatusAggregationsForAllFocusAreas?: Maybe<MercuryGoalStatusCount>;
|
|
126022
128299
|
mediaReadToken?: Maybe<MercuryMediaToken>;
|
|
126023
128300
|
mediaUploadToken?: Maybe<MercuryMediaToken>;
|
|
126024
128301
|
myPreference?: Maybe<MercuryPreference>;
|
|
@@ -126069,11 +128346,19 @@ export declare type MercuryQueryApiFocusAreaCustomFieldDefinitionsSearchArgs = {
|
|
|
126069
128346
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
126070
128347
|
sort?: InputMaybe<Array<InputMaybe<MercuryCustomFieldDefinitionSort>>>;
|
|
126071
128348
|
};
|
|
126072
|
-
export declare type
|
|
126073
|
-
|
|
126074
|
-
|
|
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']>;
|
|
126075
128357
|
sort?: InputMaybe<Array<InputMaybe<MercuryFocusAreaHierarchySort>>>;
|
|
126076
128358
|
};
|
|
128359
|
+
export declare type MercuryQueryApiFocusAreaHierarchyArgs = {
|
|
128360
|
+
id: Scalars['ID']['input'];
|
|
128361
|
+
};
|
|
126077
128362
|
export declare type MercuryQueryApiFocusAreaStatusTransitionsArgs = {
|
|
126078
128363
|
cloudId: Scalars['ID']['input'];
|
|
126079
128364
|
};
|
|
@@ -126106,9 +128391,6 @@ export declare type MercuryQueryApiFocusAreas_InternalDoNotUseArgs = {
|
|
|
126106
128391
|
hydrationContextId?: InputMaybe<Scalars['ID']['input']>;
|
|
126107
128392
|
sort?: InputMaybe<Array<InputMaybe<MercuryFocusAreaSort>>>;
|
|
126108
128393
|
};
|
|
126109
|
-
export declare type MercuryQueryApiGoalStatusAggregationsForAllFocusAreasArgs = {
|
|
126110
|
-
cloudId: Scalars['ID']['input'];
|
|
126111
|
-
};
|
|
126112
128394
|
export declare type MercuryQueryApiMediaReadTokenArgs = {
|
|
126113
128395
|
cloudId: Scalars['ID']['input'];
|
|
126114
128396
|
entityId: Scalars['ID']['input'];
|
|
@@ -126273,6 +128555,48 @@ export declare type MercuryRestrictedStrategicEventEdge = {
|
|
|
126273
128555
|
cursor: Scalars['String']['output'];
|
|
126274
128556
|
node?: Maybe<MercuryRestrictedStrategicEvent>;
|
|
126275
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
|
+
};
|
|
126276
128600
|
export declare type MercurySetChangeProposalCustomFieldInput = {
|
|
126277
128601
|
changeProposalId: Scalars['ID']['input'];
|
|
126278
128602
|
coreField?: InputMaybe<MercuryCustomFieldInput>;
|
|
@@ -126284,16 +128608,6 @@ export declare type MercurySetChangeProposalCustomFieldPayload = Payload & {
|
|
|
126284
128608
|
errors?: Maybe<Array<MutationError>>;
|
|
126285
128609
|
success: Scalars['Boolean']['output'];
|
|
126286
128610
|
};
|
|
126287
|
-
export declare type MercurySetCustomFieldDefinitionOptionsInput = {
|
|
126288
|
-
customFieldDefinitionId: Scalars['ID']['input'];
|
|
126289
|
-
options: Array<MercuryCustomSelectFieldOptionInput>;
|
|
126290
|
-
};
|
|
126291
|
-
export declare type MercurySetCustomFieldDefinitionOptionsPayload = Payload & {
|
|
126292
|
-
__typename?: 'MercurySetCustomFieldDefinitionOptionsPayload';
|
|
126293
|
-
customFieldDefinition?: Maybe<MercuryCustomFieldDefinition>;
|
|
126294
|
-
errors?: Maybe<Array<MutationError>>;
|
|
126295
|
-
success: Scalars['Boolean']['output'];
|
|
126296
|
-
};
|
|
126297
128611
|
export declare type MercurySetFocusAreaCustomFieldInput = {
|
|
126298
128612
|
coreField?: InputMaybe<MercuryCustomFieldInput>;
|
|
126299
128613
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
@@ -126442,6 +128756,7 @@ export declare type MercuryStrategicEventStatusTransitions = {
|
|
|
126442
128756
|
};
|
|
126443
128757
|
export declare type MercuryStrategicEventsMutationApi = {
|
|
126444
128758
|
__typename?: 'MercuryStrategicEventsMutationApi';
|
|
128759
|
+
addChangeProposalCustomFieldDefinitionOptions?: Maybe<MercuryAddCustomFieldDefinitionOptionsPayload>;
|
|
126445
128760
|
addTagsToChangeProposal?: Maybe<MercuryAddTagsToProposalPayload>;
|
|
126446
128761
|
createChangeProposal?: Maybe<MercuryCreateChangeProposalPayload>;
|
|
126447
128762
|
createChangeProposalComment?: Maybe<MercuryCreateChangeProposalCommentPayload>;
|
|
@@ -126462,7 +128777,6 @@ export declare type MercuryStrategicEventsMutationApi = {
|
|
|
126462
128777
|
proposeChanges?: Maybe<MercuryProposeChangesPayload>;
|
|
126463
128778
|
removeTagsFromChangeProposal?: Maybe<MercuryRemoveTagsFromProposalPayload>;
|
|
126464
128779
|
reorderChangeProposalCustomFieldDefinitionOptions?: Maybe<MercuryReorderCustomFieldDefinitionOptionsPayload>;
|
|
126465
|
-
setChangeProposalCustomFieldDefinitionOptions?: Maybe<MercurySetCustomFieldDefinitionOptionsPayload>;
|
|
126466
128780
|
setChangeProposalCustomFieldValue?: Maybe<MercurySetChangeProposalCustomFieldPayload>;
|
|
126467
128781
|
transitionChangeProposalStatus?: Maybe<MercuryTransitionChangeProposalPayload>;
|
|
126468
128782
|
transitionStrategicEventStatus?: Maybe<MercuryTransitionStrategicEventPayload>;
|
|
@@ -126491,6 +128805,9 @@ export declare type MercuryStrategicEventsMutationApi = {
|
|
|
126491
128805
|
updateStrategicEventOwner?: Maybe<MercuryUpdateStrategicEventPayload>;
|
|
126492
128806
|
updateStrategicEventTargetDate?: Maybe<MercuryUpdateStrategicEventPayload>;
|
|
126493
128807
|
};
|
|
128808
|
+
export declare type MercuryStrategicEventsMutationApiAddChangeProposalCustomFieldDefinitionOptionsArgs = {
|
|
128809
|
+
input: MercuryAddCustomFieldDefinitionOptionsInput;
|
|
128810
|
+
};
|
|
126494
128811
|
export declare type MercuryStrategicEventsMutationApiAddTagsToChangeProposalArgs = {
|
|
126495
128812
|
input: MercuryAddTagsToProposalInput;
|
|
126496
128813
|
};
|
|
@@ -126551,9 +128868,6 @@ export declare type MercuryStrategicEventsMutationApiRemoveTagsFromChangeProposa
|
|
|
126551
128868
|
export declare type MercuryStrategicEventsMutationApiReorderChangeProposalCustomFieldDefinitionOptionsArgs = {
|
|
126552
128869
|
input: MercuryReorderCustomFieldDefinitionOptionsInput;
|
|
126553
128870
|
};
|
|
126554
|
-
export declare type MercuryStrategicEventsMutationApiSetChangeProposalCustomFieldDefinitionOptionsArgs = {
|
|
126555
|
-
input: MercurySetCustomFieldDefinitionOptionsInput;
|
|
126556
|
-
};
|
|
126557
128871
|
export declare type MercuryStrategicEventsMutationApiSetChangeProposalCustomFieldValueArgs = {
|
|
126558
128872
|
input: MercurySetChangeProposalCustomFieldInput;
|
|
126559
128873
|
};
|
|
@@ -127022,7 +129336,7 @@ export declare type MercuryUpdateCustomFieldDefinitionOptionInput = {
|
|
|
127022
129336
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
127023
129337
|
optionId: Scalars['ID']['input'];
|
|
127024
129338
|
settings?: InputMaybe<Array<MercuryCustomFieldSelectionOptionSettingInput>>;
|
|
127025
|
-
value
|
|
129339
|
+
value?: InputMaybe<Scalars['String']['input']>;
|
|
127026
129340
|
};
|
|
127027
129341
|
export declare type MercuryUpdateCustomFieldDefinitionOptionPayload = Payload & {
|
|
127028
129342
|
__typename?: 'MercuryUpdateCustomFieldDefinitionOptionPayload';
|
|
@@ -127035,6 +129349,16 @@ export declare type MercuryUpdateFocusAreaAboutContentInput = {
|
|
|
127035
129349
|
cloudId: Scalars['ID']['input'];
|
|
127036
129350
|
id: Scalars['ID']['input'];
|
|
127037
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
|
+
};
|
|
127038
129362
|
export declare type MercuryUpdateFocusAreaNameInput = {
|
|
127039
129363
|
cloudId: Scalars['ID']['input'];
|
|
127040
129364
|
id: Scalars['ID']['input'];
|
|
@@ -127133,6 +129457,24 @@ export declare type MercuryUpdateRequestPositionsChangeInput = {
|
|
|
127133
129457
|
positionsAmount?: InputMaybe<MercuryUpdateChangeQuantityInput>;
|
|
127134
129458
|
targetFocusAreaId?: InputMaybe<MercuryUpdateChangeFocusAreaInput>;
|
|
127135
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
|
+
};
|
|
127136
129478
|
export declare type MercuryUpdateStrategicEventBudgetInput = {
|
|
127137
129479
|
budget?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
127138
129480
|
id: Scalars['ID']['input'];
|
|
@@ -127910,7 +130252,6 @@ export declare type Mutation = {
|
|
|
127910
130252
|
deletePolarisIdeaTemplate?: Maybe<DeletePolarisIdeaTemplatePayload>;
|
|
127911
130253
|
deletePolarisInsight?: Maybe<DeletePolarisInsightPayload>;
|
|
127912
130254
|
deletePolarisPlayContribution?: Maybe<DeletePolarisPlayContributionPayload>;
|
|
127913
|
-
deletePolarisViewSet?: Maybe<DeletePolarisViewSetPayload>;
|
|
127914
130255
|
deleteReaction?: Maybe<SaveReactionResponse>;
|
|
127915
130256
|
deleteRelation?: Maybe<DeleteRelationPayload>;
|
|
127916
130257
|
deleteSpaceDefaultClassificationLevel?: Maybe<DeleteSpaceDefaultClassificationLevelPayload>;
|
|
@@ -128149,7 +130490,11 @@ export declare type Mutation = {
|
|
|
128149
130490
|
jira_updateProjectBackground?: Maybe<JiraProjectUpdateBackgroundMutationPayload>;
|
|
128150
130491
|
jira_updateProjectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
|
|
128151
130492
|
jira_updateSchemeFieldPerWorkTypeCustomizations?: Maybe<JiraFieldWorkTypeConfigurationPayload>;
|
|
130493
|
+
jpdViewsService_createGlobalView?: Maybe<JpdViewsServiceCreateGlobalViewPayload>;
|
|
130494
|
+
jpdViewsService_deleteGlobalView?: Maybe<JpdViewsServiceDeleteGlobalViewPayload>;
|
|
128152
130495
|
jpdViewsService_echo?: Maybe<Scalars['String']['output']>;
|
|
130496
|
+
jpdViewsService_rerankGlobalView?: Maybe<JpdViewsServiceRerankGlobalViewPayload>;
|
|
130497
|
+
jpdViewsService_updateGlobalView?: Maybe<JpdViewsServiceUpdateGlobalViewPayload>;
|
|
128153
130498
|
jsmAgentWorkspace_updateLocations?: Maybe<Scalars['String']['output']>;
|
|
128154
130499
|
jsmChannels_establishConnection: JsmChannelsEstablishConnectionPayload;
|
|
128155
130500
|
jsmChannels_executeResolutionPlanAction: JsmChannelsResolutionPlanActionPayload;
|
|
@@ -128163,6 +130508,7 @@ export declare type Mutation = {
|
|
|
128163
130508
|
kitsune_createFeedback?: Maybe<KitsuneFeedback>;
|
|
128164
130509
|
kitsune_createSection?: Maybe<KitsuneSection>;
|
|
128165
130510
|
kitsune_createSpace?: Maybe<KitsuneSpace>;
|
|
130511
|
+
kitsune_createView?: Maybe<KitsuneView>;
|
|
128166
130512
|
kitsune_generateFeedbackSummary?: Maybe<Scalars['Boolean']['output']>;
|
|
128167
130513
|
kitsune_removeFeedback?: Maybe<Scalars['ID']['output']>;
|
|
128168
130514
|
kitsune_removeSection?: Maybe<KitsuneSection>;
|
|
@@ -128190,6 +130536,7 @@ export declare type Mutation = {
|
|
|
128190
130536
|
mercury_funds?: Maybe<MercuryFundsMutationApi>;
|
|
128191
130537
|
mercury_insights?: Maybe<MercuryInsightsMutationApi>;
|
|
128192
130538
|
mercury_providerOrchestration?: Maybe<MercuryProviderOrchestrationMutationApi>;
|
|
130539
|
+
mercury_risks?: Maybe<MercuryRisksMutationApi>;
|
|
128193
130540
|
mercury_strategicEvents?: Maybe<MercuryStrategicEventsMutationApi>;
|
|
128194
130541
|
migrateSpaceShortcuts?: Maybe<MigrateSpaceShortcutsPayload>;
|
|
128195
130542
|
moveBlog?: Maybe<MoveBlogPayload>;
|
|
@@ -128369,7 +130716,6 @@ export declare type Mutation = {
|
|
|
128369
130716
|
spf_deleteAskUpdate?: Maybe<SpfDeleteAskUpdatePayload>;
|
|
128370
130717
|
spf_deletePlan?: Maybe<SpfDeletePlanPayload>;
|
|
128371
130718
|
spf_deletePlanScenario?: Maybe<SpfDeletePlanScenarioPayload>;
|
|
128372
|
-
spf_deletePlanScenarioInvestment?: Maybe<SpfDeletePlanScenarioInvestmentPayload>;
|
|
128373
130719
|
spf_deletePlanScenarioInvestments?: Maybe<SpfDeletePlanScenarioInvestmentsPayload>;
|
|
128374
130720
|
spf_rejectProposedDate?: Maybe<SpfUpsertAskUpdatePayload>;
|
|
128375
130721
|
spf_removePlanApprover?: Maybe<SpfRemovePlanApproverPayload>;
|
|
@@ -130081,9 +132427,6 @@ export declare type MutationDeletePolarisInsightArgs = {
|
|
|
130081
132427
|
export declare type MutationDeletePolarisPlayContributionArgs = {
|
|
130082
132428
|
id: Scalars['ID']['input'];
|
|
130083
132429
|
};
|
|
130084
|
-
export declare type MutationDeletePolarisViewSetArgs = {
|
|
130085
|
-
id: Scalars['ID']['input'];
|
|
130086
|
-
};
|
|
130087
132430
|
export declare type MutationDeleteReactionArgs = {
|
|
130088
132431
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
130089
132432
|
containerId: Scalars['String']['input'];
|
|
@@ -130826,10 +133169,22 @@ export declare type MutationJira_UpdateSchemeFieldPerWorkTypeCustomizationsArgs
|
|
|
130826
133169
|
cloudId: Scalars['ID']['input'];
|
|
130827
133170
|
input?: InputMaybe<JiraFieldWorkTypeCustomizationsInput>;
|
|
130828
133171
|
};
|
|
133172
|
+
export declare type MutationJpdViewsService_CreateGlobalViewArgs = {
|
|
133173
|
+
input: JpdViewsServiceCreateGlobalViewInput;
|
|
133174
|
+
};
|
|
133175
|
+
export declare type MutationJpdViewsService_DeleteGlobalViewArgs = {
|
|
133176
|
+
input: JpdViewsServiceDeleteGlobalViewInput;
|
|
133177
|
+
};
|
|
130829
133178
|
export declare type MutationJpdViewsService_EchoArgs = {
|
|
130830
133179
|
cloudId: Scalars['ID']['input'];
|
|
130831
133180
|
message: Scalars['String']['input'];
|
|
130832
133181
|
};
|
|
133182
|
+
export declare type MutationJpdViewsService_RerankGlobalViewArgs = {
|
|
133183
|
+
input: JpdViewsServiceRerankGlobalViewInput;
|
|
133184
|
+
};
|
|
133185
|
+
export declare type MutationJpdViewsService_UpdateGlobalViewArgs = {
|
|
133186
|
+
input: JpdViewsServiceUpdateGlobalViewInput;
|
|
133187
|
+
};
|
|
130833
133188
|
export declare type MutationJsmChannels_EstablishConnectionArgs = {
|
|
130834
133189
|
input: JsmChannelsEstablishConnectionInput;
|
|
130835
133190
|
jiraProjectAri: Scalars['ID']['input'];
|
|
@@ -130875,6 +133230,13 @@ export declare type MutationKitsune_CreateSpaceArgs = {
|
|
|
130875
133230
|
name: Scalars['String']['input'];
|
|
130876
133231
|
workspaceAri: Scalars['ID']['input'];
|
|
130877
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
|
+
};
|
|
130878
133240
|
export declare type MutationKitsune_GenerateFeedbackSummaryArgs = {
|
|
130879
133241
|
feedbackAri: Scalars['ID']['input'];
|
|
130880
133242
|
};
|
|
@@ -131507,9 +133869,6 @@ export declare type MutationSpf_DeletePlanArgs = {
|
|
|
131507
133869
|
export declare type MutationSpf_DeletePlanScenarioArgs = {
|
|
131508
133870
|
input: SpfDeletePlanScenarioInput;
|
|
131509
133871
|
};
|
|
131510
|
-
export declare type MutationSpf_DeletePlanScenarioInvestmentArgs = {
|
|
131511
|
-
input: SpfDeletePlanScenarioInvestmentInput;
|
|
131512
|
-
};
|
|
131513
133872
|
export declare type MutationSpf_DeletePlanScenarioInvestmentsArgs = {
|
|
131514
133873
|
input: SpfDeletePlanScenarioInvestmentsInput;
|
|
131515
133874
|
};
|
|
@@ -134990,6 +137349,7 @@ export declare type Query = {
|
|
|
134990
137349
|
assetsDM_getDataSourceForCleansing?: Maybe<AssetsDmGetDataSourceForCleansingResponse>;
|
|
134991
137350
|
assetsDM_getMappingMatrix?: Maybe<AssetsDmMappingMatrixResponse>;
|
|
134992
137351
|
assetsDM_jobData?: Maybe<AssetsDmJobDataResponse>;
|
|
137352
|
+
assetsDM_jobExecutionHistory?: Maybe<AssetsDmJobExecutionsResponse>;
|
|
134993
137353
|
assetsDM_notifications?: Maybe<AssetsDmNotificationResponse>;
|
|
134994
137354
|
assetsDM_objectAttribute?: Maybe<AssetsDmObjectAttributeResponse>;
|
|
134995
137355
|
assetsDM_objectClassMetadata?: Maybe<AssetsDmObjectClassMetadata>;
|
|
@@ -135014,6 +137374,7 @@ export declare type Query = {
|
|
|
135014
137374
|
assets_objectsByAQL?: Maybe<AssetsObjectAqlResult>;
|
|
135015
137375
|
assets_objectsByIds?: Maybe<Array<Maybe<AssetsObject>>>;
|
|
135016
137376
|
assets_schemasByIds?: Maybe<Array<Maybe<AssetsSchema>>>;
|
|
137377
|
+
assets_serviceObjectByIds?: Maybe<Array<Maybe<AssetsServiceObject>>>;
|
|
135017
137378
|
atlasGoalsLinkedToJiraIssue?: Maybe<GraphStoreCypherQueryConnection>;
|
|
135018
137379
|
atlasProjectsLinkedToAtlasGoal?: Maybe<GraphStoreCypherQueryConnection>;
|
|
135019
137380
|
atlasProjectsLinkedToJiraIssue?: Maybe<GraphStoreCypherQueryConnection>;
|
|
@@ -135066,8 +137427,10 @@ export declare type Query = {
|
|
|
135066
137427
|
ccp_transactionAccounts?: Maybe<Array<Maybe<CcpTransactionAccount>>>;
|
|
135067
137428
|
cfo_analytics?: Maybe<CfoAnalyticsResult>;
|
|
135068
137429
|
changeManagement_globalRiskAssessmentSettings: ChangeManagementGlobalRiskAssessmentSettingsPayload;
|
|
137430
|
+
changeManagement_globalRiskAssessmentSettingsByIssue: ChangeManagementGlobalRiskAssessmentSettingsPayload;
|
|
135069
137431
|
changeManagement_lastRovoRiskAssessment: ChangeManagementLastRovoRiskAssessmentPayload;
|
|
135070
137432
|
changeManagement_rovoRiskAssessmentSettings: ChangeManagementRovoRiskAssessmentSettingsPayload;
|
|
137433
|
+
changeManagement_rovoRiskAssessmentSettingsByIssue: ChangeManagementRovoRiskAssessmentSettingsPayload;
|
|
135071
137434
|
channelPlatform_chatRequestDetails?: Maybe<ChannelPlatformGetChannelTokenResponse>;
|
|
135072
137435
|
channelPlatform_createContact?: Maybe<ChannelPlatformCreateContactResponse>;
|
|
135073
137436
|
channelPlatform_evaluateChannelAvailability?: Maybe<ChannelPlatformChannelAvailabilityResponse>;
|
|
@@ -135525,6 +137888,9 @@ export declare type Query = {
|
|
|
135525
137888
|
jira_versionsForProjectByKey?: Maybe<JiraVersionConnection>;
|
|
135526
137889
|
jira_view?: Maybe<JiraViewResult>;
|
|
135527
137890
|
jpdViewsService_echo?: Maybe<Scalars['String']['output']>;
|
|
137891
|
+
jpdViewsService_globalView?: Maybe<JpdViewsServiceGlobalView>;
|
|
137892
|
+
jpdViewsService_globalViewsByCriteria?: Maybe<JpdViewsServiceGlobalViewConnection>;
|
|
137893
|
+
jpdViewsService_globalViewsById?: Maybe<Array<Maybe<JpdViewsServiceGlobalView>>>;
|
|
135528
137894
|
jsmAgentWorkspace_locations?: Maybe<JsmAgentWorkspaceLocations>;
|
|
135529
137895
|
jsmChannels_conversationsByContainerAri?: Maybe<JsmChannelsConversationsByContainerAriResult>;
|
|
135530
137896
|
jsmChannels_conversationsByIds?: Maybe<Array<Maybe<JsmChannelsOrchestratorConversation>>>;
|
|
@@ -135545,6 +137911,7 @@ export declare type Query = {
|
|
|
135545
137911
|
kitsune_sections?: Maybe<Array<Maybe<KitsuneSection>>>;
|
|
135546
137912
|
kitsune_spaces?: Maybe<Array<Maybe<KitsuneSpace>>>;
|
|
135547
137913
|
kitsune_spacesForWorkspace?: Maybe<KitsuneSpaceConnection>;
|
|
137914
|
+
kitsune_views?: Maybe<Array<Maybe<KitsuneView>>>;
|
|
135548
137915
|
knowledgeBase?: Maybe<KnowledgeBaseQueryApi>;
|
|
135549
137916
|
knowledgeBaseSpacePermission_bulkQuery: Array<Maybe<KnowledgeBaseSpacePermissionQueryResponse>>;
|
|
135550
137917
|
knowledgeBase_agentSearch?: Maybe<KnowledgeBaseAgentArticleSearchResponse>;
|
|
@@ -135609,6 +137976,7 @@ export declare type Query = {
|
|
|
135609
137976
|
mercury_jiraProvider?: Maybe<MercuryJiraProviderQueryApi>;
|
|
135610
137977
|
mercury_normalizedWork?: Maybe<MercuryWorkNormalizationQueryApi>;
|
|
135611
137978
|
mercury_providerOrchestration?: Maybe<MercuryProviderOrchestrationQueryApi>;
|
|
137979
|
+
mercury_risks?: Maybe<MercuryRisksQueryApi>;
|
|
135612
137980
|
mercury_strategicEvents?: Maybe<MercuryStrategicEventsQueryApi>;
|
|
135613
137981
|
migration: MigrationQuery;
|
|
135614
137982
|
migrationCatalogue: MigrationCatalogueQuery;
|
|
@@ -136357,13 +138725,19 @@ export declare type QueryAgentWorkspace_AvailabilityArgs = {
|
|
|
136357
138725
|
input: AgentWorkspaceAvailabilityInput;
|
|
136358
138726
|
};
|
|
136359
138727
|
export declare type QueryAgentWorkspace_ScheduleArgs = {
|
|
136360
|
-
|
|
138728
|
+
cloudId: Scalars['ID']['input'];
|
|
138729
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
138730
|
+
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
136361
138731
|
scheduleId: Scalars['ID']['input'];
|
|
136362
138732
|
};
|
|
136363
138733
|
export declare type QueryAgentWorkspace_SchedulesArgs = {
|
|
136364
|
-
|
|
138734
|
+
cloudId: Scalars['ID']['input'];
|
|
138735
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
138736
|
+
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
136365
138737
|
};
|
|
136366
138738
|
export declare type QueryAgentWorkspace_ShiftsArgs = {
|
|
138739
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
138740
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
136367
138741
|
input: AgentWorkspaceShiftsQueryInput;
|
|
136368
138742
|
};
|
|
136369
138743
|
export declare type QueryAiCoreApi_VsaQuestionsByProjectArgs = {
|
|
@@ -136720,6 +139094,16 @@ export declare type QueryAssetsDm_JobDataArgs = {
|
|
|
136720
139094
|
searchGroups?: InputMaybe<Array<AssetsDmJobDataSearchGroup>>;
|
|
136721
139095
|
workspaceId: Scalars['ID']['input'];
|
|
136722
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
|
+
};
|
|
136723
139107
|
export declare type QueryAssetsDm_NotificationsArgs = {
|
|
136724
139108
|
cloudId: Scalars['ID']['input'];
|
|
136725
139109
|
payload: AssetsDmNotificationPayload;
|
|
@@ -136856,6 +139240,9 @@ export declare type QueryAssets_ObjectsByIdsArgs = {
|
|
|
136856
139240
|
export declare type QueryAssets_SchemasByIdsArgs = {
|
|
136857
139241
|
ids: Array<Scalars['ID']['input']>;
|
|
136858
139242
|
};
|
|
139243
|
+
export declare type QueryAssets_ServiceObjectByIdsArgs = {
|
|
139244
|
+
ids: Array<Scalars['ID']['input']>;
|
|
139245
|
+
};
|
|
136859
139246
|
export declare type QueryAtlasGoalsLinkedToJiraIssueArgs = {
|
|
136860
139247
|
issueId: Scalars['ID']['input'];
|
|
136861
139248
|
};
|
|
@@ -137038,6 +139425,10 @@ export declare type QueryChangeManagement_GlobalRiskAssessmentSettingsArgs = {
|
|
|
137038
139425
|
cloudId: Scalars['ID']['input'];
|
|
137039
139426
|
projectId: Scalars['String']['input'];
|
|
137040
139427
|
};
|
|
139428
|
+
export declare type QueryChangeManagement_GlobalRiskAssessmentSettingsByIssueArgs = {
|
|
139429
|
+
cloudId: Scalars['ID']['input'];
|
|
139430
|
+
issueKeyOrId: Scalars['String']['input'];
|
|
139431
|
+
};
|
|
137041
139432
|
export declare type QueryChangeManagement_LastRovoRiskAssessmentArgs = {
|
|
137042
139433
|
cloudId: Scalars['ID']['input'];
|
|
137043
139434
|
issueId: Scalars['String']['input'];
|
|
@@ -137046,6 +139437,10 @@ export declare type QueryChangeManagement_RovoRiskAssessmentSettingsArgs = {
|
|
|
137046
139437
|
cloudId: Scalars['ID']['input'];
|
|
137047
139438
|
projectId: Scalars['String']['input'];
|
|
137048
139439
|
};
|
|
139440
|
+
export declare type QueryChangeManagement_RovoRiskAssessmentSettingsByIssueArgs = {
|
|
139441
|
+
cloudId: Scalars['ID']['input'];
|
|
139442
|
+
issueKeyOrId: Scalars['String']['input'];
|
|
139443
|
+
};
|
|
137049
139444
|
export declare type QueryChannelPlatform_ChatRequestDetailsArgs = {
|
|
137050
139445
|
request?: InputMaybe<ChannelPlatformChatRequestDetailsRequest>;
|
|
137051
139446
|
};
|
|
@@ -137260,6 +139655,7 @@ export declare type QueryConfluence_CommentMediaSessionArgs = {
|
|
|
137260
139655
|
};
|
|
137261
139656
|
export declare type QueryConfluence_ContentAiSummariesArgs = {
|
|
137262
139657
|
contentAris: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
139658
|
+
entryPoint?: InputMaybe<Scalars['String']['input']>;
|
|
137263
139659
|
objectType: KnowledgeGraphObjectType;
|
|
137264
139660
|
};
|
|
137265
139661
|
export declare type QueryConfluence_ContentAccessRequestByStatusArgs = {
|
|
@@ -139008,6 +141404,18 @@ export declare type QueryJpdViewsService_EchoArgs = {
|
|
|
139008
141404
|
cloudId: Scalars['ID']['input'];
|
|
139009
141405
|
message: Scalars['String']['input'];
|
|
139010
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
|
+
};
|
|
139011
141419
|
export declare type QueryJsmAgentWorkspace_LocationsArgs = {
|
|
139012
141420
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
139013
141421
|
cloudId: Scalars['ID']['input'];
|
|
@@ -139086,6 +141494,9 @@ export declare type QueryKitsune_SpacesForWorkspaceArgs = {
|
|
|
139086
141494
|
pagination?: InputMaybe<KitsunePaginationInput>;
|
|
139087
141495
|
workspaceAri: Scalars['ID']['input'];
|
|
139088
141496
|
};
|
|
141497
|
+
export declare type QueryKitsune_ViewsArgs = {
|
|
141498
|
+
ids: Array<Scalars['ID']['input']>;
|
|
141499
|
+
};
|
|
139089
141500
|
export declare type QueryKnowledgeBaseArgs = {
|
|
139090
141501
|
cloudId: Scalars['ID']['input'];
|
|
139091
141502
|
};
|
|
@@ -141219,6 +143630,7 @@ export declare enum RateLimitingCurrency {
|
|
|
141219
143630
|
HelpCenterCurrency = "HELP_CENTER_CURRENCY",
|
|
141220
143631
|
HelpLayoutCurrency = "HELP_LAYOUT_CURRENCY",
|
|
141221
143632
|
HelpObjectStoreCurrency = "HELP_OBJECT_STORE_CURRENCY",
|
|
143633
|
+
JpdContainerQueryCurrency = "JPD_CONTAINER_QUERY_CURRENCY",
|
|
141222
143634
|
KnowledgeBaseCurrency = "KNOWLEDGE_BASE_CURRENCY",
|
|
141223
143635
|
PolarisBetaUserCurrency = "POLARIS_BETA_USER_CURRENCY",
|
|
141224
143636
|
PolarisCollabTokenQueryCurrency = "POLARIS_COLLAB_TOKEN_QUERY_CURRENCY",
|
|
@@ -142946,6 +145358,11 @@ export declare type SearchCommonFilter = {
|
|
|
142946
145358
|
participants?: InputMaybe<SearchParticipants>;
|
|
142947
145359
|
range?: InputMaybe<SearchCommonRangeFilter>;
|
|
142948
145360
|
};
|
|
145361
|
+
export declare type SearchCommonFilterOutput = {
|
|
145362
|
+
__typename?: 'SearchCommonFilterOutput';
|
|
145363
|
+
participants?: Maybe<SearchParticipantsOutput>;
|
|
145364
|
+
range?: Maybe<SearchCommonRangeFilterOutput>;
|
|
145365
|
+
};
|
|
142949
145366
|
export declare type SearchCommonRangeFilter = {
|
|
142950
145367
|
created?: InputMaybe<SearchCommonRangeFilterFields>;
|
|
142951
145368
|
lastModified?: InputMaybe<SearchCommonRangeFilterFields>;
|
|
@@ -142954,6 +145371,15 @@ export declare type SearchCommonRangeFilterFields = {
|
|
|
142954
145371
|
gt?: InputMaybe<Scalars['String']['input']>;
|
|
142955
145372
|
lt?: InputMaybe<Scalars['String']['input']>;
|
|
142956
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
|
+
};
|
|
142957
145383
|
export declare type SearchCompassComponentFilter = {
|
|
142958
145384
|
componentStates: Array<Scalars['String']['input']>;
|
|
142959
145385
|
};
|
|
@@ -143148,6 +145574,10 @@ export declare type SearchFilterInput = {
|
|
|
143148
145574
|
thirdPartyFilters?: InputMaybe<SearchThirdPartyFilter>;
|
|
143149
145575
|
trelloFilters?: InputMaybe<SearchTrelloFilter>;
|
|
143150
145576
|
};
|
|
145577
|
+
export declare type SearchFilterOutput = {
|
|
145578
|
+
__typename?: 'SearchFilterOutput';
|
|
145579
|
+
commonFilters?: Maybe<SearchCommonFilterOutput>;
|
|
145580
|
+
};
|
|
143151
145581
|
export declare type SearchFirstPartyMetadata = {
|
|
143152
145582
|
__typename?: 'SearchFirstPartyMetadata';
|
|
143153
145583
|
name: Scalars['String']['output'];
|
|
@@ -143192,6 +145622,7 @@ export declare enum SearchIssueStatusCategory {
|
|
|
143192
145622
|
export declare type SearchItemConnection = {
|
|
143193
145623
|
__typename?: 'SearchItemConnection';
|
|
143194
145624
|
abTest?: Maybe<SearchAbTest>;
|
|
145625
|
+
autoAppliedFilters?: Maybe<SearchFilterOutput>;
|
|
143195
145626
|
autocompleteSuggestions?: Maybe<Array<Scalars['String']['output']>>;
|
|
143196
145627
|
deferredEdges?: Maybe<Array<SearchResultItemEdge>>;
|
|
143197
145628
|
edges: Array<SearchResultItemEdge>;
|
|
@@ -143280,6 +145711,12 @@ export declare type SearchParticipant = {
|
|
|
143280
145711
|
type: SearchParticipantType;
|
|
143281
145712
|
users: Array<Scalars['ID']['input']>;
|
|
143282
145713
|
};
|
|
145714
|
+
export declare type SearchParticipantOutput = {
|
|
145715
|
+
__typename?: 'SearchParticipantOutput';
|
|
145716
|
+
combination: SearchCombinationType;
|
|
145717
|
+
type: SearchParticipantType;
|
|
145718
|
+
users: Array<Scalars['ID']['output']>;
|
|
145719
|
+
};
|
|
143283
145720
|
export declare enum SearchParticipantType {
|
|
143284
145721
|
Contributor = "CONTRIBUTOR",
|
|
143285
145722
|
Mentions = "MENTIONS",
|
|
@@ -143289,6 +145726,11 @@ export declare type SearchParticipants = {
|
|
|
143289
145726
|
combination: SearchCombinationType;
|
|
143290
145727
|
items: Array<SearchParticipant>;
|
|
143291
145728
|
};
|
|
145729
|
+
export declare type SearchParticipantsOutput = {
|
|
145730
|
+
__typename?: 'SearchParticipantsOutput';
|
|
145731
|
+
combination: SearchCombinationType;
|
|
145732
|
+
items?: Maybe<Array<SearchParticipantOutput>>;
|
|
145733
|
+
};
|
|
143292
145734
|
export declare type SearchProductCount = {
|
|
143293
145735
|
__typename?: 'SearchProductCount';
|
|
143294
145736
|
count: Scalars['Int']['output'];
|
|
@@ -164581,15 +167023,6 @@ export declare type SpfDeletePlanPayload = Payload & {
|
|
|
164581
167023
|
export declare type SpfDeletePlanScenarioInput = {
|
|
164582
167024
|
id: Scalars['ID']['input'];
|
|
164583
167025
|
};
|
|
164584
|
-
export declare type SpfDeletePlanScenarioInvestmentInput = {
|
|
164585
|
-
id: Scalars['ID']['input'];
|
|
164586
|
-
};
|
|
164587
|
-
export declare type SpfDeletePlanScenarioInvestmentPayload = Payload & {
|
|
164588
|
-
__typename?: 'SpfDeletePlanScenarioInvestmentPayload';
|
|
164589
|
-
errors?: Maybe<Array<MutationError>>;
|
|
164590
|
-
id: Scalars['ID']['output'];
|
|
164591
|
-
success: Scalars['Boolean']['output'];
|
|
164592
|
-
};
|
|
164593
167026
|
export declare type SpfDeletePlanScenarioInvestmentsInput = {
|
|
164594
167027
|
ids: Array<Scalars['ID']['input']>;
|
|
164595
167028
|
};
|
|
@@ -165774,6 +168207,7 @@ export declare type StakeholderCommsPage = {
|
|
|
165774
168207
|
statusEmbedEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
165775
168208
|
subdomain?: Maybe<Scalars['String']['output']>;
|
|
165776
168209
|
timezone?: Maybe<Scalars['String']['output']>;
|
|
168210
|
+
unpublishedAt?: Maybe<Scalars['String']['output']>;
|
|
165777
168211
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
165778
168212
|
url?: Maybe<Scalars['String']['output']>;
|
|
165779
168213
|
version?: Maybe<Scalars['Int']['output']>;
|
|
@@ -171729,11 +174163,16 @@ export declare type TrelloAiRule = {
|
|
|
171729
174163
|
objectId: Scalars['ID']['output'];
|
|
171730
174164
|
position?: Maybe<Scalars['Float']['output']>;
|
|
171731
174165
|
rule?: Maybe<Scalars['String']['output']>;
|
|
174166
|
+
type?: Maybe<TrelloAiRuleType>;
|
|
171732
174167
|
};
|
|
171733
174168
|
export declare type TrelloAiRuleDeleted = {
|
|
171734
174169
|
__typename?: 'TrelloAiRuleDeleted';
|
|
171735
174170
|
id: Scalars['ID']['output'];
|
|
171736
174171
|
};
|
|
174172
|
+
export declare enum TrelloAiRuleType {
|
|
174173
|
+
PlannerScheduling = "PLANNER_SCHEDULING",
|
|
174174
|
+
PlannerSelection = "PLANNER_SELECTION"
|
|
174175
|
+
}
|
|
171737
174176
|
export declare type TrelloAppCreator = {
|
|
171738
174177
|
__typename?: 'TrelloAppCreator';
|
|
171739
174178
|
icon?: Maybe<TrelloApplicationIcon>;
|
|
@@ -171829,6 +174268,11 @@ export declare type TrelloArchiveCardPayload = Payload & {
|
|
|
171829
174268
|
errors?: Maybe<Array<MutationError>>;
|
|
171830
174269
|
success: Scalars['Boolean']['output'];
|
|
171831
174270
|
};
|
|
174271
|
+
export declare type TrelloAssignCardToPlannerCalendarEventFailure = {
|
|
174272
|
+
__typename?: 'TrelloAssignCardToPlannerCalendarEventFailure';
|
|
174273
|
+
cardId: Scalars['ID']['output'];
|
|
174274
|
+
message: Scalars['String']['output'];
|
|
174275
|
+
};
|
|
171832
174276
|
export declare type TrelloAssignCardToPlannerCalendarEventInput = {
|
|
171833
174277
|
cardId: Scalars['ID']['input'];
|
|
171834
174278
|
plannerCalendarId: Scalars['ID']['input'];
|
|
@@ -171842,6 +174286,20 @@ export declare type TrelloAssignCardToPlannerCalendarEventPayload = Payload & {
|
|
|
171842
174286
|
event?: Maybe<TrelloPlannerCalendarEvent>;
|
|
171843
174287
|
success: Scalars['Boolean']['output'];
|
|
171844
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
|
+
};
|
|
171845
174303
|
export declare type TrelloAtlassianIntelligence = {
|
|
171846
174304
|
__typename?: 'TrelloAtlassianIntelligence';
|
|
171847
174305
|
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -173131,6 +175589,7 @@ export declare type TrelloCreateInboxCardActionDisplayEntities = {
|
|
|
173131
175589
|
export declare type TrelloCreateMemberAiRuleInput = {
|
|
173132
175590
|
position: Scalars['Float']['input'];
|
|
173133
175591
|
rule: Scalars['String']['input'];
|
|
175592
|
+
type?: InputMaybe<TrelloAiRuleType>;
|
|
173134
175593
|
};
|
|
173135
175594
|
export declare type TrelloCreateMemberAiRulePayload = Payload & {
|
|
173136
175595
|
__typename?: 'TrelloCreateMemberAiRulePayload';
|
|
@@ -173386,6 +175845,7 @@ export declare type TrelloEnterprisePrefs = {
|
|
|
173386
175845
|
};
|
|
173387
175846
|
export declare type TrelloGenerateBoardBackgroundWithAiInput = {
|
|
173388
175847
|
boardId: Scalars['ID']['input'];
|
|
175848
|
+
theme?: InputMaybe<Scalars['String']['input']>;
|
|
173389
175849
|
userInput: Scalars['String']['input'];
|
|
173390
175850
|
};
|
|
173391
175851
|
export declare type TrelloGenerateBoardBackgroundWithAiPayload = Payload & {
|
|
@@ -174059,6 +176519,7 @@ export declare type TrelloMutationApi = {
|
|
|
174059
176519
|
addWorkspaceTagToBoard?: Maybe<TrelloAddWorkspaceTagToBoardPayload>;
|
|
174060
176520
|
archiveCard?: Maybe<TrelloArchiveCardPayload>;
|
|
174061
176521
|
assignCardToPlannerCalendarEvent?: Maybe<TrelloAssignCardToPlannerCalendarEventPayload>;
|
|
176522
|
+
assignCardsToPlannerCalendarEvent?: Maybe<TrelloAssignCardsToPlannerCalendarEventPayload>;
|
|
174062
176523
|
createApplication?: Maybe<TrelloCreateApplicationPayload>;
|
|
174063
176524
|
createBoardWithAi?: Maybe<TrelloCreateBoardWithAiPayload>;
|
|
174064
176525
|
createCard?: Maybe<TrelloCreateCardPayload>;
|
|
@@ -174147,6 +176608,9 @@ export declare type TrelloMutationApiArchiveCardArgs = {
|
|
|
174147
176608
|
export declare type TrelloMutationApiAssignCardToPlannerCalendarEventArgs = {
|
|
174148
176609
|
input: TrelloAssignCardToPlannerCalendarEventInput;
|
|
174149
176610
|
};
|
|
176611
|
+
export declare type TrelloMutationApiAssignCardsToPlannerCalendarEventArgs = {
|
|
176612
|
+
input: TrelloAssignCardsToPlannerCalendarEventInput;
|
|
176613
|
+
};
|
|
174150
176614
|
export declare type TrelloMutationApiCreateApplicationArgs = {
|
|
174151
176615
|
input: TrelloCreateApplicationInput;
|
|
174152
176616
|
};
|