@forge/cli-shared 3.21.1-next.2 → 3.21.1-next.4
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.
|
@@ -1221,6 +1221,7 @@ export type AppRecContext = {
|
|
|
1221
1221
|
tenantId?: InputMaybe<Scalars['ID']['input']>;
|
|
1222
1222
|
useCase?: InputMaybe<Scalars['String']['input']>;
|
|
1223
1223
|
userId?: InputMaybe<Scalars['ID']['input']>;
|
|
1224
|
+
workspaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
1224
1225
|
};
|
|
1225
1226
|
export type AppRecDismissRecommendationInput = {
|
|
1226
1227
|
context?: InputMaybe<AppRecContext>;
|
|
@@ -8086,7 +8087,6 @@ export type DetachEventSourcePayload = Payload & {
|
|
|
8086
8087
|
export type DevOps = {
|
|
8087
8088
|
__typename?: 'DevOps';
|
|
8088
8089
|
ariGraph?: Maybe<AriGraph>;
|
|
8089
|
-
buildEntityDetails?: Maybe<Array<Maybe<DevOpsBuildDetails>>>;
|
|
8090
8090
|
entitiesByAssociations?: Maybe<DevOpsEntities>;
|
|
8091
8091
|
graph?: Maybe<Graph>;
|
|
8092
8092
|
providers?: Maybe<DevOpsProviders>;
|
|
@@ -8096,9 +8096,6 @@ export type DevOps = {
|
|
|
8096
8096
|
summarisedEntities?: Maybe<Array<Maybe<DevOpsSummarisedEntities>>>;
|
|
8097
8097
|
toolchain?: Maybe<Toolchain>;
|
|
8098
8098
|
};
|
|
8099
|
-
export type DevOpsBuildEntityDetailsArgs = {
|
|
8100
|
-
ids: Array<Scalars['ID']['input']>;
|
|
8101
|
-
};
|
|
8102
8099
|
export type DevOpsEntitiesByAssociationsArgs = {
|
|
8103
8100
|
ids: Array<Scalars['ID']['input']>;
|
|
8104
8101
|
};
|
|
@@ -9421,6 +9418,7 @@ export declare enum DevStatusActivity {
|
|
|
9421
9418
|
BranchOpen = "BRANCH_OPEN",
|
|
9422
9419
|
Commit = "COMMIT",
|
|
9423
9420
|
Deployment = "DEPLOYMENT",
|
|
9421
|
+
Design = "DESIGN",
|
|
9424
9422
|
PrDeclined = "PR_DECLINED",
|
|
9425
9423
|
PrMerged = "PR_MERGED",
|
|
9426
9424
|
PrOpen = "PR_OPEN"
|
|
@@ -10635,6 +10633,7 @@ export type Graph = {
|
|
|
10635
10633
|
projectAssociatedVulnerabilityInverse?: Maybe<GraphJiraProjectConnection>;
|
|
10636
10634
|
projectAssociatedVulnerabilityRelationship?: Maybe<GraphProjectAssociatedVulnerabilityRelationshipConnection>;
|
|
10637
10635
|
projectAssociatedVulnerabilityRelationshipInverse?: Maybe<GraphProjectAssociatedVulnerabilityRelationshipConnection>;
|
|
10636
|
+
securityContainerAssociatedToVulnerabilityRelationship?: Maybe<GraphSecurityContainerAssociatedToVulnerabilityRelationshipConnection>;
|
|
10638
10637
|
securityContainerAssociatedToVulnerabilityRelationshipBatch?: Maybe<Array<Maybe<GraphSecurityContainerAssociatedToVulnerabilityRelationshipConnection>>>;
|
|
10639
10638
|
serviceLinkedIncident?: Maybe<GraphJiraIssueConnection>;
|
|
10640
10639
|
serviceLinkedIncidentInverse?: Maybe<GraphProjectServiceConnection>;
|
|
@@ -10835,6 +10834,12 @@ export type GraphProjectAssociatedVulnerabilityRelationshipInverseArgs = {
|
|
|
10835
10834
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
10836
10835
|
to: Scalars['ID']['input'];
|
|
10837
10836
|
};
|
|
10837
|
+
export type GraphSecurityContainerAssociatedToVulnerabilityRelationshipArgs = {
|
|
10838
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
10839
|
+
filter?: InputMaybe<GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInput>;
|
|
10840
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
10841
|
+
from: Scalars['ID']['input'];
|
|
10842
|
+
};
|
|
10838
10843
|
export type GraphSecurityContainerAssociatedToVulnerabilityRelationshipBatchArgs = {
|
|
10839
10844
|
from: Array<Scalars['ID']['input']>;
|
|
10840
10845
|
};
|
|
@@ -12308,6 +12313,166 @@ export declare enum GraphQueryMetadataProjectAssociatedVulnerabilityInputToVulne
|
|
|
12308
12313
|
Sca = "SCA",
|
|
12309
12314
|
Unknown = "UNKNOWN"
|
|
12310
12315
|
}
|
|
12316
|
+
export type GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInput = {
|
|
12317
|
+
and?: InputMaybe<Array<GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputAnd>>;
|
|
12318
|
+
or?: InputMaybe<Array<GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputOr>>;
|
|
12319
|
+
};
|
|
12320
|
+
export type GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputAnd = {
|
|
12321
|
+
createdAt?: InputMaybe<GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputCreatedAt>;
|
|
12322
|
+
fromAti?: InputMaybe<GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputFromAti>;
|
|
12323
|
+
lastUpdated?: InputMaybe<GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputLastUpdated>;
|
|
12324
|
+
or?: InputMaybe<Array<GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputOrInner>>;
|
|
12325
|
+
toAti?: InputMaybe<GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputToAti>;
|
|
12326
|
+
to_container?: InputMaybe<GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputToContainer>;
|
|
12327
|
+
to_severity?: InputMaybe<GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputToSeverity>;
|
|
12328
|
+
to_status?: InputMaybe<GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputToStatus>;
|
|
12329
|
+
to_type?: InputMaybe<GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputToType>;
|
|
12330
|
+
};
|
|
12331
|
+
export type GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputAndInner = {
|
|
12332
|
+
createdAt?: InputMaybe<GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputCreatedAt>;
|
|
12333
|
+
fromAti?: InputMaybe<GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputFromAti>;
|
|
12334
|
+
lastUpdated?: InputMaybe<GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputLastUpdated>;
|
|
12335
|
+
toAti?: InputMaybe<GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputToAti>;
|
|
12336
|
+
to_container?: InputMaybe<GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputToContainer>;
|
|
12337
|
+
to_severity?: InputMaybe<GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputToSeverity>;
|
|
12338
|
+
to_status?: InputMaybe<GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputToStatus>;
|
|
12339
|
+
to_type?: InputMaybe<GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputToType>;
|
|
12340
|
+
};
|
|
12341
|
+
export type GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputCreatedAt = {
|
|
12342
|
+
notValues?: InputMaybe<Array<Scalars['DateTime']['input']>>;
|
|
12343
|
+
range?: InputMaybe<GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputCreatedAtRangeField>;
|
|
12344
|
+
sort?: InputMaybe<GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputCreatedAtMetadataSortField>;
|
|
12345
|
+
values?: InputMaybe<Array<Scalars['DateTime']['input']>>;
|
|
12346
|
+
};
|
|
12347
|
+
export type GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputCreatedAtMetadataSortField = {
|
|
12348
|
+
order?: InputMaybe<GraphQueryMetadataSortEnum>;
|
|
12349
|
+
priority?: InputMaybe<Scalars['Int']['input']>;
|
|
12350
|
+
};
|
|
12351
|
+
export type GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputCreatedAtRangeField = {
|
|
12352
|
+
gt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
12353
|
+
gte?: InputMaybe<Scalars['DateTime']['input']>;
|
|
12354
|
+
lt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
12355
|
+
lte?: InputMaybe<Scalars['DateTime']['input']>;
|
|
12356
|
+
};
|
|
12357
|
+
export type GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputFromAti = {
|
|
12358
|
+
notValues?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
12359
|
+
sort?: InputMaybe<GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputFromAtiMetadataSortField>;
|
|
12360
|
+
values?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
12361
|
+
};
|
|
12362
|
+
export type GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputFromAtiMetadataSortField = {
|
|
12363
|
+
order?: InputMaybe<GraphQueryMetadataSortEnum>;
|
|
12364
|
+
priority?: InputMaybe<Scalars['Int']['input']>;
|
|
12365
|
+
};
|
|
12366
|
+
export type GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputLastUpdated = {
|
|
12367
|
+
notValues?: InputMaybe<Array<Scalars['DateTime']['input']>>;
|
|
12368
|
+
range?: InputMaybe<GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputLastUpdatedRangeField>;
|
|
12369
|
+
sort?: InputMaybe<GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputLastUpdatedMetadataSortField>;
|
|
12370
|
+
values?: InputMaybe<Array<Scalars['DateTime']['input']>>;
|
|
12371
|
+
};
|
|
12372
|
+
export type GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputLastUpdatedMetadataSortField = {
|
|
12373
|
+
order?: InputMaybe<GraphQueryMetadataSortEnum>;
|
|
12374
|
+
priority?: InputMaybe<Scalars['Int']['input']>;
|
|
12375
|
+
};
|
|
12376
|
+
export type GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputLastUpdatedRangeField = {
|
|
12377
|
+
gt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
12378
|
+
gte?: InputMaybe<Scalars['DateTime']['input']>;
|
|
12379
|
+
lt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
12380
|
+
lte?: InputMaybe<Scalars['DateTime']['input']>;
|
|
12381
|
+
};
|
|
12382
|
+
export type GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputOr = {
|
|
12383
|
+
and?: InputMaybe<Array<GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputAndInner>>;
|
|
12384
|
+
createdAt?: InputMaybe<GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputCreatedAt>;
|
|
12385
|
+
fromAti?: InputMaybe<GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputFromAti>;
|
|
12386
|
+
lastUpdated?: InputMaybe<GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputLastUpdated>;
|
|
12387
|
+
toAti?: InputMaybe<GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputToAti>;
|
|
12388
|
+
to_container?: InputMaybe<GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputToContainer>;
|
|
12389
|
+
to_severity?: InputMaybe<GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputToSeverity>;
|
|
12390
|
+
to_status?: InputMaybe<GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputToStatus>;
|
|
12391
|
+
to_type?: InputMaybe<GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputToType>;
|
|
12392
|
+
};
|
|
12393
|
+
export type GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputOrInner = {
|
|
12394
|
+
createdAt?: InputMaybe<GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputCreatedAt>;
|
|
12395
|
+
fromAti?: InputMaybe<GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputFromAti>;
|
|
12396
|
+
lastUpdated?: InputMaybe<GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputLastUpdated>;
|
|
12397
|
+
toAti?: InputMaybe<GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputToAti>;
|
|
12398
|
+
to_container?: InputMaybe<GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputToContainer>;
|
|
12399
|
+
to_severity?: InputMaybe<GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputToSeverity>;
|
|
12400
|
+
to_status?: InputMaybe<GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputToStatus>;
|
|
12401
|
+
to_type?: InputMaybe<GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputToType>;
|
|
12402
|
+
};
|
|
12403
|
+
export type GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputToAti = {
|
|
12404
|
+
notValues?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
12405
|
+
sort?: InputMaybe<GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputToAtiMetadataSortField>;
|
|
12406
|
+
values?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
12407
|
+
};
|
|
12408
|
+
export type GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputToAtiMetadataSortField = {
|
|
12409
|
+
order?: InputMaybe<GraphQueryMetadataSortEnum>;
|
|
12410
|
+
priority?: InputMaybe<Scalars['Int']['input']>;
|
|
12411
|
+
};
|
|
12412
|
+
export type GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputToContainer = {
|
|
12413
|
+
containerAri?: InputMaybe<GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputToContainerAri>;
|
|
12414
|
+
};
|
|
12415
|
+
export type GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputToContainerAri = {
|
|
12416
|
+
value?: InputMaybe<GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputToContainerAriValue>;
|
|
12417
|
+
};
|
|
12418
|
+
export type GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputToContainerAriValue = {
|
|
12419
|
+
notValues?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
12420
|
+
sort?: InputMaybe<GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputToContainerAriValueMetadataSortField>;
|
|
12421
|
+
values?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
12422
|
+
};
|
|
12423
|
+
export type GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputToContainerAriValueMetadataSortField = {
|
|
12424
|
+
order?: InputMaybe<GraphQueryMetadataSortEnum>;
|
|
12425
|
+
priority?: InputMaybe<Scalars['Int']['input']>;
|
|
12426
|
+
};
|
|
12427
|
+
export type GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputToSeverity = {
|
|
12428
|
+
notValues?: InputMaybe<Array<GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputToVulnerabilitySeverityEnum>>;
|
|
12429
|
+
sort?: InputMaybe<GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputToSeverityMetadataSortField>;
|
|
12430
|
+
values?: InputMaybe<Array<GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputToVulnerabilitySeverityEnum>>;
|
|
12431
|
+
};
|
|
12432
|
+
export type GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputToSeverityMetadataSortField = {
|
|
12433
|
+
order?: InputMaybe<GraphQueryMetadataSortEnum>;
|
|
12434
|
+
priority?: InputMaybe<Scalars['Int']['input']>;
|
|
12435
|
+
};
|
|
12436
|
+
export type GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputToStatus = {
|
|
12437
|
+
notValues?: InputMaybe<Array<GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputToVulnerabilityStatusEnum>>;
|
|
12438
|
+
sort?: InputMaybe<GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputToStatusMetadataSortField>;
|
|
12439
|
+
values?: InputMaybe<Array<GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputToVulnerabilityStatusEnum>>;
|
|
12440
|
+
};
|
|
12441
|
+
export type GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputToStatusMetadataSortField = {
|
|
12442
|
+
order?: InputMaybe<GraphQueryMetadataSortEnum>;
|
|
12443
|
+
priority?: InputMaybe<Scalars['Int']['input']>;
|
|
12444
|
+
};
|
|
12445
|
+
export type GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputToType = {
|
|
12446
|
+
notValues?: InputMaybe<Array<GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputToVulnerabilityTypeEnum>>;
|
|
12447
|
+
sort?: InputMaybe<GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputToTypeMetadataSortField>;
|
|
12448
|
+
values?: InputMaybe<Array<GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputToVulnerabilityTypeEnum>>;
|
|
12449
|
+
};
|
|
12450
|
+
export type GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputToTypeMetadataSortField = {
|
|
12451
|
+
order?: InputMaybe<GraphQueryMetadataSortEnum>;
|
|
12452
|
+
priority?: InputMaybe<Scalars['Int']['input']>;
|
|
12453
|
+
};
|
|
12454
|
+
export declare enum GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputToVulnerabilitySeverityEnum {
|
|
12455
|
+
Critical = "CRITICAL",
|
|
12456
|
+
High = "HIGH",
|
|
12457
|
+
Low = "LOW",
|
|
12458
|
+
Medium = "MEDIUM",
|
|
12459
|
+
NotSet = "NOT_SET",
|
|
12460
|
+
Unknown = "UNKNOWN"
|
|
12461
|
+
}
|
|
12462
|
+
export declare enum GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputToVulnerabilityStatusEnum {
|
|
12463
|
+
Closed = "CLOSED",
|
|
12464
|
+
Ignored = "IGNORED",
|
|
12465
|
+
NotSet = "NOT_SET",
|
|
12466
|
+
Open = "OPEN",
|
|
12467
|
+
Unknown = "UNKNOWN"
|
|
12468
|
+
}
|
|
12469
|
+
export declare enum GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputToVulnerabilityTypeEnum {
|
|
12470
|
+
Dast = "DAST",
|
|
12471
|
+
NotSet = "NOT_SET",
|
|
12472
|
+
Sast = "SAST",
|
|
12473
|
+
Sca = "SCA",
|
|
12474
|
+
Unknown = "UNKNOWN"
|
|
12475
|
+
}
|
|
12311
12476
|
export type GraphQueryMetadataServiceLinkedIncidentInput = {
|
|
12312
12477
|
and?: InputMaybe<Array<GraphQueryMetadataServiceLinkedIncidentInputAnd>>;
|
|
12313
12478
|
or?: InputMaybe<Array<GraphQueryMetadataServiceLinkedIncidentInputOr>>;
|
|
@@ -12358,6 +12523,14 @@ export type GraphQueryMetadataServiceLinkedIncidentInputOrInner = {
|
|
|
12358
12523
|
createdAt?: InputMaybe<GraphQueryMetadataServiceLinkedIncidentInputCreatedAt>;
|
|
12359
12524
|
lastUpdated?: InputMaybe<GraphQueryMetadataServiceLinkedIncidentInputLastUpdated>;
|
|
12360
12525
|
};
|
|
12526
|
+
export declare enum GraphQueryMetadataServiceLinkedIncidentInputToJiraServiceManagementIncidentPriorityEnum {
|
|
12527
|
+
NotSet = "NOT_SET",
|
|
12528
|
+
P1 = "P1",
|
|
12529
|
+
P2 = "P2",
|
|
12530
|
+
P3 = "P3",
|
|
12531
|
+
P4 = "P4",
|
|
12532
|
+
P5 = "P5"
|
|
12533
|
+
}
|
|
12361
12534
|
export declare enum GraphQueryMetadataSortEnum {
|
|
12362
12535
|
Asc = "ASC",
|
|
12363
12536
|
Desc = "DESC"
|
|
@@ -12820,137 +12993,3831 @@ export type GraphSprintRetrospectivePageRelationshipEdge = {
|
|
|
12820
12993
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
12821
12994
|
node: GraphSprintRetrospectivePageRelationship;
|
|
12822
12995
|
};
|
|
12823
|
-
export type
|
|
12824
|
-
|
|
12825
|
-
|
|
12826
|
-
|
|
12827
|
-
|
|
12828
|
-
|
|
12829
|
-
|
|
12830
|
-
|
|
12831
|
-
|
|
12832
|
-
|
|
12996
|
+
export type GraphStore = {
|
|
12997
|
+
__typename?: 'GraphStore';
|
|
12998
|
+
appInstallationAssociatedToSecurityWorkspaceInverseRelationship?: Maybe<GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceConnection>;
|
|
12999
|
+
appInstallationAssociatedToSecurityWorkspaceRelationship?: Maybe<GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceConnection>;
|
|
13000
|
+
atlasProjectContributesToAtlasGoalInverseRelationship?: Maybe<GraphStoreFullAtlasProjectContributesToAtlasGoalConnection>;
|
|
13001
|
+
atlasProjectContributesToAtlasGoalRelationship?: Maybe<GraphStoreFullAtlasProjectContributesToAtlasGoalConnection>;
|
|
13002
|
+
atlasProjectIsTrackedOnJiraEpicInverseRelationship?: Maybe<GraphStoreFullAtlasProjectIsTrackedOnJiraEpicConnection>;
|
|
13003
|
+
atlasProjectIsTrackedOnJiraEpicRelationship?: Maybe<GraphStoreFullAtlasProjectIsTrackedOnJiraEpicConnection>;
|
|
13004
|
+
componentAssociatedDocumentInverseRelationship?: Maybe<GraphStoreFullComponentAssociatedDocumentConnection>;
|
|
13005
|
+
componentAssociatedDocumentRelationship?: Maybe<GraphStoreFullComponentAssociatedDocumentConnection>;
|
|
13006
|
+
componentImpactedByIncidentInverseRelationship?: Maybe<GraphStoreFullComponentImpactedByIncidentConnection>;
|
|
13007
|
+
componentImpactedByIncidentRelationship?: Maybe<GraphStoreFullComponentImpactedByIncidentConnection>;
|
|
13008
|
+
componentLinkedJswIssueInverseRelationship?: Maybe<GraphStoreFullComponentLinkedJswIssueConnection>;
|
|
13009
|
+
componentLinkedJswIssueRelationship?: Maybe<GraphStoreFullComponentLinkedJswIssueConnection>;
|
|
13010
|
+
contentReferencedEntityInverseRelationship?: Maybe<GraphStoreFullContentReferencedEntityConnection>;
|
|
13011
|
+
contentReferencedEntityRelationship?: Maybe<GraphStoreFullContentReferencedEntityConnection>;
|
|
13012
|
+
incidentAssociatedPostIncidentReviewLinkInverseRelationship?: Maybe<GraphStoreFullIncidentAssociatedPostIncidentReviewLinkConnection>;
|
|
13013
|
+
incidentAssociatedPostIncidentReviewLinkRelationship?: Maybe<GraphStoreFullIncidentAssociatedPostIncidentReviewLinkConnection>;
|
|
13014
|
+
incidentHasActionItemInverseRelationship?: Maybe<GraphStoreFullIncidentHasActionItemConnection>;
|
|
13015
|
+
incidentHasActionItemRelationship?: Maybe<GraphStoreFullIncidentHasActionItemConnection>;
|
|
13016
|
+
incidentLinkedJswIssueInverseRelationship?: Maybe<GraphStoreFullIncidentLinkedJswIssueConnection>;
|
|
13017
|
+
incidentLinkedJswIssueRelationship?: Maybe<GraphStoreFullIncidentLinkedJswIssueConnection>;
|
|
13018
|
+
issueAssociatedBranchInverse?: Maybe<GraphStoreSimplifiedIssueAssociatedBranchInverseConnection>;
|
|
13019
|
+
issueAssociatedBranchInverseRelationship?: Maybe<GraphStoreFullIssueAssociatedBranchConnection>;
|
|
13020
|
+
issueAssociatedBranchRelationship?: Maybe<GraphStoreFullIssueAssociatedBranchConnection>;
|
|
13021
|
+
issueAssociatedBuildInverse?: Maybe<GraphStoreSimplifiedIssueAssociatedBuildInverseConnection>;
|
|
13022
|
+
issueAssociatedBuildInverseRelationship?: Maybe<GraphStoreFullIssueAssociatedBuildConnection>;
|
|
13023
|
+
issueAssociatedBuildRelationship?: Maybe<GraphStoreFullIssueAssociatedBuildConnection>;
|
|
13024
|
+
issueAssociatedCommitInverse?: Maybe<GraphStoreSimplifiedIssueAssociatedCommitInverseConnection>;
|
|
13025
|
+
issueAssociatedCommitInverseRelationship?: Maybe<GraphStoreFullIssueAssociatedCommitConnection>;
|
|
13026
|
+
issueAssociatedCommitRelationship?: Maybe<GraphStoreFullIssueAssociatedCommitConnection>;
|
|
13027
|
+
issueAssociatedDeploymentInverse?: Maybe<GraphStoreSimplifiedIssueAssociatedDeploymentInverseConnection>;
|
|
13028
|
+
issueAssociatedDeploymentInverseRelationship?: Maybe<GraphStoreFullIssueAssociatedDeploymentConnection>;
|
|
13029
|
+
issueAssociatedDeploymentRelationship?: Maybe<GraphStoreFullIssueAssociatedDeploymentConnection>;
|
|
13030
|
+
issueAssociatedDesign?: Maybe<GraphStoreSimplifiedIssueAssociatedDesignConnection>;
|
|
13031
|
+
issueAssociatedDesignInverse?: Maybe<GraphStoreSimplifiedIssueAssociatedDesignInverseConnection>;
|
|
13032
|
+
issueAssociatedDesignInverseRelationship?: Maybe<GraphStoreFullIssueAssociatedDesignConnection>;
|
|
13033
|
+
issueAssociatedDesignRelationship?: Maybe<GraphStoreFullIssueAssociatedDesignConnection>;
|
|
13034
|
+
issueAssociatedFeatureFlagInverse?: Maybe<GraphStoreSimplifiedIssueAssociatedFeatureFlagInverseConnection>;
|
|
13035
|
+
issueAssociatedFeatureFlagInverseRelationship?: Maybe<GraphStoreFullIssueAssociatedFeatureFlagConnection>;
|
|
13036
|
+
issueAssociatedFeatureFlagRelationship?: Maybe<GraphStoreFullIssueAssociatedFeatureFlagConnection>;
|
|
13037
|
+
issueAssociatedPr?: Maybe<GraphStoreSimplifiedIssueAssociatedPrConnection>;
|
|
13038
|
+
issueAssociatedPrInverse?: Maybe<GraphStoreSimplifiedIssueAssociatedPrInverseConnection>;
|
|
13039
|
+
issueAssociatedPrInverseRelationship?: Maybe<GraphStoreFullIssueAssociatedPrConnection>;
|
|
13040
|
+
issueAssociatedPrRelationship?: Maybe<GraphStoreFullIssueAssociatedPrConnection>;
|
|
13041
|
+
issueAssociatedRemoteLinkInverse?: Maybe<GraphStoreSimplifiedIssueAssociatedRemoteLinkInverseConnection>;
|
|
13042
|
+
issueAssociatedRemoteLinkInverseRelationship?: Maybe<GraphStoreFullIssueAssociatedRemoteLinkConnection>;
|
|
13043
|
+
issueAssociatedRemoteLinkRelationship?: Maybe<GraphStoreFullIssueAssociatedRemoteLinkConnection>;
|
|
13044
|
+
issueChangesComponentInverseRelationship?: Maybe<GraphStoreFullIssueChangesComponentConnection>;
|
|
13045
|
+
issueChangesComponentRelationship?: Maybe<GraphStoreFullIssueChangesComponentConnection>;
|
|
13046
|
+
issueRecursiveAssociatedDeploymentInverseRelationship?: Maybe<GraphStoreFullIssueRecursiveAssociatedDeploymentConnection>;
|
|
13047
|
+
issueRecursiveAssociatedDeploymentRelationship?: Maybe<GraphStoreFullIssueRecursiveAssociatedDeploymentConnection>;
|
|
13048
|
+
issueRecursiveAssociatedFeatureFlagInverseRelationship?: Maybe<GraphStoreFullIssueRecursiveAssociatedFeatureFlagConnection>;
|
|
13049
|
+
issueRecursiveAssociatedFeatureFlagRelationship?: Maybe<GraphStoreFullIssueRecursiveAssociatedFeatureFlagConnection>;
|
|
13050
|
+
issueRecursiveAssociatedPrInverse?: Maybe<GraphStoreSimplifiedIssueRecursiveAssociatedPrInverseConnection>;
|
|
13051
|
+
issueRecursiveAssociatedPrInverseRelationship?: Maybe<GraphStoreFullIssueRecursiveAssociatedPrConnection>;
|
|
13052
|
+
issueRecursiveAssociatedPrRelationship?: Maybe<GraphStoreFullIssueRecursiveAssociatedPrConnection>;
|
|
13053
|
+
jiraEpicContributesToAtlasGoalInverseRelationship?: Maybe<GraphStoreFullJiraEpicContributesToAtlasGoalConnection>;
|
|
13054
|
+
jiraEpicContributesToAtlasGoalRelationship?: Maybe<GraphStoreFullJiraEpicContributesToAtlasGoalConnection>;
|
|
13055
|
+
jiraProjectAssociatedAtlasGoalInverseRelationship?: Maybe<GraphStoreFullJiraProjectAssociatedAtlasGoalConnection>;
|
|
13056
|
+
jiraProjectAssociatedAtlasGoalRelationship?: Maybe<GraphStoreFullJiraProjectAssociatedAtlasGoalConnection>;
|
|
13057
|
+
jsmProjectAssociatedServiceInverseRelationship?: Maybe<GraphStoreFullJsmProjectAssociatedServiceConnection>;
|
|
13058
|
+
jsmProjectAssociatedServiceRelationship?: Maybe<GraphStoreFullJsmProjectAssociatedServiceConnection>;
|
|
13059
|
+
jswProjectAssociatedComponentInverseRelationship?: Maybe<GraphStoreFullJswProjectAssociatedComponentConnection>;
|
|
13060
|
+
jswProjectAssociatedComponentRelationship?: Maybe<GraphStoreFullJswProjectAssociatedComponentConnection>;
|
|
13061
|
+
jswProjectAssociatedIncidentInverseRelationship?: Maybe<GraphStoreFullJswProjectAssociatedIncidentConnection>;
|
|
13062
|
+
jswProjectAssociatedIncidentRelationship?: Maybe<GraphStoreFullJswProjectAssociatedIncidentConnection>;
|
|
13063
|
+
jswProjectSharesComponentWithJsmProjectInverseRelationship?: Maybe<GraphStoreFullJswProjectSharesComponentWithJsmProjectConnection>;
|
|
13064
|
+
jswProjectSharesComponentWithJsmProjectRelationship?: Maybe<GraphStoreFullJswProjectSharesComponentWithJsmProjectConnection>;
|
|
13065
|
+
linkedProjectHasVersionInverseRelationship?: Maybe<GraphStoreFullLinkedProjectHasVersionConnection>;
|
|
13066
|
+
linkedProjectHasVersionRelationship?: Maybe<GraphStoreFullLinkedProjectHasVersionConnection>;
|
|
13067
|
+
operationsContainerImpactedByIncidentInverseRelationship?: Maybe<GraphStoreFullOperationsContainerImpactedByIncidentConnection>;
|
|
13068
|
+
operationsContainerImpactedByIncidentRelationship?: Maybe<GraphStoreFullOperationsContainerImpactedByIncidentConnection>;
|
|
13069
|
+
operationsContainerImprovedByActionItemInverseRelationship?: Maybe<GraphStoreFullOperationsContainerImprovedByActionItemConnection>;
|
|
13070
|
+
operationsContainerImprovedByActionItemRelationship?: Maybe<GraphStoreFullOperationsContainerImprovedByActionItemConnection>;
|
|
13071
|
+
parentDocumentHasChildDocumentInverseRelationship?: Maybe<GraphStoreFullParentDocumentHasChildDocumentConnection>;
|
|
13072
|
+
parentDocumentHasChildDocumentRelationship?: Maybe<GraphStoreFullParentDocumentHasChildDocumentConnection>;
|
|
13073
|
+
parentIssueHasChildIssue?: Maybe<GraphStoreSimplifiedParentIssueHasChildIssueConnection>;
|
|
13074
|
+
parentIssueHasChildIssueInverse?: Maybe<GraphStoreSimplifiedParentIssueHasChildIssueInverseConnection>;
|
|
13075
|
+
parentIssueHasChildIssueInverseRelationship?: Maybe<GraphStoreFullParentIssueHasChildIssueConnection>;
|
|
13076
|
+
parentIssueHasChildIssueRelationship?: Maybe<GraphStoreFullParentIssueHasChildIssueConnection>;
|
|
13077
|
+
prInRepoInverseRelationship?: Maybe<GraphStoreFullPrInRepoConnection>;
|
|
13078
|
+
prInRepoRelationship?: Maybe<GraphStoreFullPrInRepoConnection>;
|
|
13079
|
+
projectAssociatedBranchInverseRelationship?: Maybe<GraphStoreFullProjectAssociatedBranchConnection>;
|
|
13080
|
+
projectAssociatedBranchRelationship?: Maybe<GraphStoreFullProjectAssociatedBranchConnection>;
|
|
13081
|
+
projectAssociatedBuildInverseRelationship?: Maybe<GraphStoreFullProjectAssociatedBuildConnection>;
|
|
13082
|
+
projectAssociatedBuildRelationship?: Maybe<GraphStoreFullProjectAssociatedBuildConnection>;
|
|
13083
|
+
projectAssociatedDeploymentInverseRelationship?: Maybe<GraphStoreFullProjectAssociatedDeploymentConnection>;
|
|
13084
|
+
projectAssociatedDeploymentRelationship?: Maybe<GraphStoreFullProjectAssociatedDeploymentConnection>;
|
|
13085
|
+
projectAssociatedFeatureFlagInverseRelationship?: Maybe<GraphStoreFullProjectAssociatedFeatureFlagConnection>;
|
|
13086
|
+
projectAssociatedFeatureFlagRelationship?: Maybe<GraphStoreFullProjectAssociatedFeatureFlagConnection>;
|
|
13087
|
+
projectAssociatedIncidentInverseRelationship?: Maybe<GraphStoreFullProjectAssociatedIncidentConnection>;
|
|
13088
|
+
projectAssociatedIncidentRelationship?: Maybe<GraphStoreFullProjectAssociatedIncidentConnection>;
|
|
13089
|
+
projectAssociatedOpsgenieTeamInverseRelationship?: Maybe<GraphStoreFullProjectAssociatedOpsgenieTeamConnection>;
|
|
13090
|
+
projectAssociatedOpsgenieTeamRelationship?: Maybe<GraphStoreFullProjectAssociatedOpsgenieTeamConnection>;
|
|
13091
|
+
projectAssociatedPrInverseRelationship?: Maybe<GraphStoreFullProjectAssociatedPrConnection>;
|
|
13092
|
+
projectAssociatedPrRelationship?: Maybe<GraphStoreFullProjectAssociatedPrConnection>;
|
|
13093
|
+
projectAssociatedRepoInverseRelationship?: Maybe<GraphStoreFullProjectAssociatedRepoConnection>;
|
|
13094
|
+
projectAssociatedRepoRelationship?: Maybe<GraphStoreFullProjectAssociatedRepoConnection>;
|
|
13095
|
+
projectAssociatedServiceInverseRelationship?: Maybe<GraphStoreFullProjectAssociatedServiceConnection>;
|
|
13096
|
+
projectAssociatedServiceRelationship?: Maybe<GraphStoreFullProjectAssociatedServiceConnection>;
|
|
13097
|
+
projectAssociatedToIncidentInverseRelationship?: Maybe<GraphStoreFullProjectAssociatedToIncidentConnection>;
|
|
13098
|
+
projectAssociatedToIncidentRelationship?: Maybe<GraphStoreFullProjectAssociatedToIncidentConnection>;
|
|
13099
|
+
projectAssociatedToOperationsContainerInverseRelationship?: Maybe<GraphStoreFullProjectAssociatedToOperationsContainerConnection>;
|
|
13100
|
+
projectAssociatedToOperationsContainerRelationship?: Maybe<GraphStoreFullProjectAssociatedToOperationsContainerConnection>;
|
|
13101
|
+
projectAssociatedToSecurityContainerInverseRelationship?: Maybe<GraphStoreFullProjectAssociatedToSecurityContainerConnection>;
|
|
13102
|
+
projectAssociatedToSecurityContainerRelationship?: Maybe<GraphStoreFullProjectAssociatedToSecurityContainerConnection>;
|
|
13103
|
+
projectAssociatedVulnerabilityInverseRelationship?: Maybe<GraphStoreFullProjectAssociatedVulnerabilityConnection>;
|
|
13104
|
+
projectAssociatedVulnerabilityRelationship?: Maybe<GraphStoreFullProjectAssociatedVulnerabilityConnection>;
|
|
13105
|
+
projectDisassociatedRepoInverseRelationship?: Maybe<GraphStoreFullProjectDisassociatedRepoConnection>;
|
|
13106
|
+
projectDisassociatedRepoRelationship?: Maybe<GraphStoreFullProjectDisassociatedRepoConnection>;
|
|
13107
|
+
projectDocumentationEntityInverseRelationship?: Maybe<GraphStoreFullProjectDocumentationEntityConnection>;
|
|
13108
|
+
projectDocumentationEntityRelationship?: Maybe<GraphStoreFullProjectDocumentationEntityConnection>;
|
|
13109
|
+
projectDocumentationPageInverseRelationship?: Maybe<GraphStoreFullProjectDocumentationPageConnection>;
|
|
13110
|
+
projectDocumentationPageRelationship?: Maybe<GraphStoreFullProjectDocumentationPageConnection>;
|
|
13111
|
+
projectDocumentationSpaceInverseRelationship?: Maybe<GraphStoreFullProjectDocumentationSpaceConnection>;
|
|
13112
|
+
projectDocumentationSpaceRelationship?: Maybe<GraphStoreFullProjectDocumentationSpaceConnection>;
|
|
13113
|
+
projectExplicitlyAssociatedRepoInverseRelationship?: Maybe<GraphStoreFullProjectExplicitlyAssociatedRepoConnection>;
|
|
13114
|
+
projectExplicitlyAssociatedRepoRelationship?: Maybe<GraphStoreFullProjectExplicitlyAssociatedRepoConnection>;
|
|
13115
|
+
projectHasIssueInverseRelationship?: Maybe<GraphStoreFullProjectHasIssueConnection>;
|
|
13116
|
+
projectHasIssueRelationship?: Maybe<GraphStoreFullProjectHasIssueConnection>;
|
|
13117
|
+
projectHasSharedVersionWithInverseRelationship?: Maybe<GraphStoreFullProjectHasSharedVersionWithConnection>;
|
|
13118
|
+
projectHasSharedVersionWithRelationship?: Maybe<GraphStoreFullProjectHasSharedVersionWithConnection>;
|
|
13119
|
+
projectHasVersionInverseRelationship?: Maybe<GraphStoreFullProjectHasVersionConnection>;
|
|
13120
|
+
projectHasVersionRelationship?: Maybe<GraphStoreFullProjectHasVersionConnection>;
|
|
13121
|
+
securityContainerAssociatedToVulnerabilityInverseRelationship?: Maybe<GraphStoreFullSecurityContainerAssociatedToVulnerabilityConnection>;
|
|
13122
|
+
securityContainerAssociatedToVulnerabilityRelationship?: Maybe<GraphStoreFullSecurityContainerAssociatedToVulnerabilityConnection>;
|
|
13123
|
+
serviceLinkedIncidentInverseRelationship?: Maybe<GraphStoreFullServiceLinkedIncidentConnection>;
|
|
13124
|
+
serviceLinkedIncidentRelationship?: Maybe<GraphStoreFullServiceLinkedIncidentConnection>;
|
|
13125
|
+
shipit57IssueLinksToPageInverseRelationship?: Maybe<GraphStoreFullShipit57IssueLinksToPageConnection>;
|
|
13126
|
+
shipit57IssueLinksToPageManualInverseRelationship?: Maybe<GraphStoreFullShipit57IssueLinksToPageManualConnection>;
|
|
13127
|
+
shipit57IssueLinksToPageManualRelationship?: Maybe<GraphStoreFullShipit57IssueLinksToPageManualConnection>;
|
|
13128
|
+
shipit57IssueLinksToPageRelationship?: Maybe<GraphStoreFullShipit57IssueLinksToPageConnection>;
|
|
13129
|
+
shipit57IssueRecursiveLinksToPageInverseRelationship?: Maybe<GraphStoreFullShipit57IssueRecursiveLinksToPageConnection>;
|
|
13130
|
+
shipit57IssueRecursiveLinksToPageRelationship?: Maybe<GraphStoreFullShipit57IssueRecursiveLinksToPageConnection>;
|
|
13131
|
+
shipit57PullRequestLinksToPageInverseRelationship?: Maybe<GraphStoreFullShipit57PullRequestLinksToPageConnection>;
|
|
13132
|
+
shipit57PullRequestLinksToPageRelationship?: Maybe<GraphStoreFullShipit57PullRequestLinksToPageConnection>;
|
|
13133
|
+
sprintAssociatedBuildInverseRelationship?: Maybe<GraphStoreFullSprintAssociatedBuildConnection>;
|
|
13134
|
+
sprintAssociatedBuildRelationship?: Maybe<GraphStoreFullSprintAssociatedBuildConnection>;
|
|
13135
|
+
sprintAssociatedDeploymentInverseRelationship?: Maybe<GraphStoreFullSprintAssociatedDeploymentConnection>;
|
|
13136
|
+
sprintAssociatedDeploymentRelationship?: Maybe<GraphStoreFullSprintAssociatedDeploymentConnection>;
|
|
13137
|
+
sprintAssociatedFeatureFlagInverseRelationship?: Maybe<GraphStoreFullSprintAssociatedFeatureFlagConnection>;
|
|
13138
|
+
sprintAssociatedFeatureFlagRelationship?: Maybe<GraphStoreFullSprintAssociatedFeatureFlagConnection>;
|
|
13139
|
+
sprintAssociatedPrInverseRelationship?: Maybe<GraphStoreFullSprintAssociatedPrConnection>;
|
|
13140
|
+
sprintAssociatedPrRelationship?: Maybe<GraphStoreFullSprintAssociatedPrConnection>;
|
|
13141
|
+
sprintContainsIssueInverseRelationship?: Maybe<GraphStoreFullSprintContainsIssueConnection>;
|
|
13142
|
+
sprintContainsIssueRelationship?: Maybe<GraphStoreFullSprintContainsIssueConnection>;
|
|
13143
|
+
sprintRetrospectivePageInverseRelationship?: Maybe<GraphStoreFullSprintRetrospectivePageConnection>;
|
|
13144
|
+
sprintRetrospectivePageRelationship?: Maybe<GraphStoreFullSprintRetrospectivePageConnection>;
|
|
13145
|
+
teamWorksOnProjectInverseRelationship?: Maybe<GraphStoreFullTeamWorksOnProjectConnection>;
|
|
13146
|
+
teamWorksOnProjectRelationship?: Maybe<GraphStoreFullTeamWorksOnProjectConnection>;
|
|
13147
|
+
userIsInTeamInverseRelationship?: Maybe<GraphStoreFullUserIsInTeamConnection>;
|
|
13148
|
+
userIsInTeamRelationship?: Maybe<GraphStoreFullUserIsInTeamConnection>;
|
|
13149
|
+
versionAssociatedBranchInverseRelationship?: Maybe<GraphStoreFullVersionAssociatedBranchConnection>;
|
|
13150
|
+
versionAssociatedBranchRelationship?: Maybe<GraphStoreFullVersionAssociatedBranchConnection>;
|
|
13151
|
+
versionAssociatedBuildInverseRelationship?: Maybe<GraphStoreFullVersionAssociatedBuildConnection>;
|
|
13152
|
+
versionAssociatedBuildRelationship?: Maybe<GraphStoreFullVersionAssociatedBuildConnection>;
|
|
13153
|
+
versionAssociatedCommitInverseRelationship?: Maybe<GraphStoreFullVersionAssociatedCommitConnection>;
|
|
13154
|
+
versionAssociatedCommitRelationship?: Maybe<GraphStoreFullVersionAssociatedCommitConnection>;
|
|
13155
|
+
versionAssociatedDeploymentInverseRelationship?: Maybe<GraphStoreFullVersionAssociatedDeploymentConnection>;
|
|
13156
|
+
versionAssociatedDeploymentRelationship?: Maybe<GraphStoreFullVersionAssociatedDeploymentConnection>;
|
|
13157
|
+
versionAssociatedFeatureFlagInverseRelationship?: Maybe<GraphStoreFullVersionAssociatedFeatureFlagConnection>;
|
|
13158
|
+
versionAssociatedFeatureFlagRelationship?: Maybe<GraphStoreFullVersionAssociatedFeatureFlagConnection>;
|
|
13159
|
+
versionAssociatedIssueInverseRelationship?: Maybe<GraphStoreFullVersionAssociatedIssueConnection>;
|
|
13160
|
+
versionAssociatedIssueRelationship?: Maybe<GraphStoreFullVersionAssociatedIssueConnection>;
|
|
13161
|
+
versionAssociatedPullRequestInverseRelationship?: Maybe<GraphStoreFullVersionAssociatedPullRequestConnection>;
|
|
13162
|
+
versionAssociatedPullRequestRelationship?: Maybe<GraphStoreFullVersionAssociatedPullRequestConnection>;
|
|
13163
|
+
versionUserAssociatedFeatureFlagInverseRelationship?: Maybe<GraphStoreFullVersionUserAssociatedFeatureFlagConnection>;
|
|
13164
|
+
versionUserAssociatedFeatureFlagRelationship?: Maybe<GraphStoreFullVersionUserAssociatedFeatureFlagConnection>;
|
|
13165
|
+
vulnerabilityAssociatedIssueInverseRelationship?: Maybe<GraphStoreFullVulnerabilityAssociatedIssueConnection>;
|
|
13166
|
+
vulnerabilityAssociatedIssueRelationship?: Maybe<GraphStoreFullVulnerabilityAssociatedIssueConnection>;
|
|
12833
13167
|
};
|
|
12834
|
-
export type
|
|
12835
|
-
|
|
12836
|
-
|
|
12837
|
-
|
|
13168
|
+
export type GraphStoreAppInstallationAssociatedToSecurityWorkspaceInverseRelationshipArgs = {
|
|
13169
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13170
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13171
|
+
id: Scalars['ID']['input'];
|
|
12838
13172
|
};
|
|
12839
|
-
export type
|
|
12840
|
-
|
|
12841
|
-
|
|
12842
|
-
|
|
13173
|
+
export type GraphStoreAppInstallationAssociatedToSecurityWorkspaceRelationshipArgs = {
|
|
13174
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13175
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13176
|
+
id: Scalars['ID']['input'];
|
|
12843
13177
|
};
|
|
12844
|
-
export type
|
|
12845
|
-
|
|
12846
|
-
|
|
13178
|
+
export type GraphStoreAtlasProjectContributesToAtlasGoalInverseRelationshipArgs = {
|
|
13179
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13180
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13181
|
+
id: Scalars['ID']['input'];
|
|
12847
13182
|
};
|
|
12848
|
-
export type
|
|
12849
|
-
|
|
13183
|
+
export type GraphStoreAtlasProjectContributesToAtlasGoalRelationshipArgs = {
|
|
13184
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
12850
13185
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
12851
|
-
|
|
13186
|
+
id: Scalars['ID']['input'];
|
|
12852
13187
|
};
|
|
12853
|
-
export type
|
|
12854
|
-
|
|
12855
|
-
|
|
13188
|
+
export type GraphStoreAtlasProjectIsTrackedOnJiraEpicInverseRelationshipArgs = {
|
|
13189
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13190
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13191
|
+
id: Scalars['ID']['input'];
|
|
12856
13192
|
};
|
|
12857
|
-
export type
|
|
12858
|
-
|
|
12859
|
-
|
|
13193
|
+
export type GraphStoreAtlasProjectIsTrackedOnJiraEpicRelationshipArgs = {
|
|
13194
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13195
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13196
|
+
id: Scalars['ID']['input'];
|
|
12860
13197
|
};
|
|
12861
|
-
export type
|
|
12862
|
-
|
|
12863
|
-
|
|
13198
|
+
export type GraphStoreComponentAssociatedDocumentInverseRelationshipArgs = {
|
|
13199
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13200
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13201
|
+
id: Scalars['ID']['input'];
|
|
12864
13202
|
};
|
|
12865
|
-
export type
|
|
12866
|
-
|
|
12867
|
-
|
|
13203
|
+
export type GraphStoreComponentAssociatedDocumentRelationshipArgs = {
|
|
13204
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13205
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13206
|
+
id: Scalars['ID']['input'];
|
|
12868
13207
|
};
|
|
12869
|
-
export type
|
|
12870
|
-
|
|
12871
|
-
|
|
12872
|
-
|
|
12873
|
-
creationDate?: Maybe<Scalars['String']['output']>;
|
|
12874
|
-
currentEdition?: Maybe<Scalars['String']['output']>;
|
|
12875
|
-
editionTransitions?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
12876
|
-
endDate?: Maybe<Scalars['String']['output']>;
|
|
12877
|
-
entitlementGroupId?: Maybe<Scalars['String']['output']>;
|
|
12878
|
-
entitlementId?: Maybe<Scalars['String']['output']>;
|
|
12879
|
-
entitlementMigrationEvaluation?: Maybe<HamsEntitlementMigrationEvaluation>;
|
|
12880
|
-
entitlementSource?: Maybe<Scalars['String']['output']>;
|
|
12881
|
-
experienceCapabilities?: Maybe<HamsEntitlementExperienceCapabilities>;
|
|
12882
|
-
futureEdition?: Maybe<Scalars['String']['output']>;
|
|
12883
|
-
futureEditionTransition?: Maybe<Scalars['String']['output']>;
|
|
12884
|
-
id: Scalars['ID']['output'];
|
|
12885
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
12886
|
-
offering?: Maybe<HamsOffering>;
|
|
12887
|
-
overriddenEdition?: Maybe<Scalars['String']['output']>;
|
|
12888
|
-
preDunning?: Maybe<HamsEntitlementPreDunning>;
|
|
12889
|
-
productKey?: Maybe<Scalars['String']['output']>;
|
|
12890
|
-
sen?: Maybe<Scalars['String']['output']>;
|
|
12891
|
-
shortTrial?: Maybe<Scalars['Boolean']['output']>;
|
|
12892
|
-
slug?: Maybe<Scalars['String']['output']>;
|
|
12893
|
-
startDate?: Maybe<Scalars['String']['output']>;
|
|
12894
|
-
status?: Maybe<Scalars['String']['output']>;
|
|
12895
|
-
subscription?: Maybe<HamsSubscription>;
|
|
12896
|
-
suspended?: Maybe<Scalars['Boolean']['output']>;
|
|
12897
|
-
transactionAccount?: Maybe<HamsTransactionAccount>;
|
|
12898
|
-
trialEdition?: Maybe<Scalars['String']['output']>;
|
|
12899
|
-
trialEditionEndDate?: Maybe<Scalars['String']['output']>;
|
|
12900
|
-
trialEndDate?: Maybe<Scalars['String']['output']>;
|
|
13208
|
+
export type GraphStoreComponentImpactedByIncidentInverseRelationshipArgs = {
|
|
13209
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13210
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13211
|
+
id: Scalars['ID']['input'];
|
|
12901
13212
|
};
|
|
12902
|
-
export type
|
|
12903
|
-
|
|
12904
|
-
|
|
13213
|
+
export type GraphStoreComponentImpactedByIncidentRelationshipArgs = {
|
|
13214
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13215
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13216
|
+
id: Scalars['ID']['input'];
|
|
12905
13217
|
};
|
|
12906
|
-
export type
|
|
12907
|
-
|
|
13218
|
+
export type GraphStoreComponentLinkedJswIssueInverseRelationshipArgs = {
|
|
13219
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13220
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13221
|
+
id: Scalars['ID']['input'];
|
|
12908
13222
|
};
|
|
12909
|
-
export type
|
|
12910
|
-
|
|
12911
|
-
|
|
12912
|
-
|
|
12913
|
-
usageType?: Maybe<Scalars['String']['output']>;
|
|
13223
|
+
export type GraphStoreComponentLinkedJswIssueRelationshipArgs = {
|
|
13224
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13225
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13226
|
+
id: Scalars['ID']['input'];
|
|
12914
13227
|
};
|
|
12915
|
-
export type
|
|
12916
|
-
|
|
12917
|
-
|
|
12918
|
-
|
|
13228
|
+
export type GraphStoreContentReferencedEntityInverseRelationshipArgs = {
|
|
13229
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13230
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13231
|
+
id: Scalars['ID']['input'];
|
|
12919
13232
|
};
|
|
12920
|
-
export type
|
|
12921
|
-
|
|
12922
|
-
|
|
12923
|
-
|
|
13233
|
+
export type GraphStoreContentReferencedEntityRelationshipArgs = {
|
|
13234
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13235
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13236
|
+
id: Scalars['ID']['input'];
|
|
12924
13237
|
};
|
|
12925
|
-
export type
|
|
12926
|
-
|
|
12927
|
-
|
|
12928
|
-
|
|
13238
|
+
export type GraphStoreIncidentAssociatedPostIncidentReviewLinkInverseRelationshipArgs = {
|
|
13239
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13240
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13241
|
+
id: Scalars['ID']['input'];
|
|
12929
13242
|
};
|
|
12930
|
-
export type
|
|
12931
|
-
|
|
12932
|
-
|
|
13243
|
+
export type GraphStoreIncidentAssociatedPostIncidentReviewLinkRelationshipArgs = {
|
|
13244
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13245
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13246
|
+
id: Scalars['ID']['input'];
|
|
12933
13247
|
};
|
|
12934
|
-
export type
|
|
12935
|
-
|
|
12936
|
-
|
|
13248
|
+
export type GraphStoreIncidentHasActionItemInverseRelationshipArgs = {
|
|
13249
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13250
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13251
|
+
id: Scalars['ID']['input'];
|
|
12937
13252
|
};
|
|
12938
|
-
export type
|
|
12939
|
-
|
|
12940
|
-
|
|
12941
|
-
|
|
13253
|
+
export type GraphStoreIncidentHasActionItemRelationshipArgs = {
|
|
13254
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13255
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13256
|
+
id: Scalars['ID']['input'];
|
|
12942
13257
|
};
|
|
12943
|
-
export type
|
|
12944
|
-
|
|
12945
|
-
|
|
13258
|
+
export type GraphStoreIncidentLinkedJswIssueInverseRelationshipArgs = {
|
|
13259
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13260
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13261
|
+
id: Scalars['ID']['input'];
|
|
12946
13262
|
};
|
|
12947
|
-
export type
|
|
12948
|
-
|
|
12949
|
-
|
|
12950
|
-
|
|
12951
|
-
trial?: Maybe<HamsTrial>;
|
|
13263
|
+
export type GraphStoreIncidentLinkedJswIssueRelationshipArgs = {
|
|
13264
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13265
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13266
|
+
id: Scalars['ID']['input'];
|
|
12952
13267
|
};
|
|
12953
|
-
export type
|
|
13268
|
+
export type GraphStoreIssueAssociatedBranchInverseArgs = {
|
|
13269
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13270
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13271
|
+
id: Scalars['ID']['input'];
|
|
13272
|
+
};
|
|
13273
|
+
export type GraphStoreIssueAssociatedBranchInverseRelationshipArgs = {
|
|
13274
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13275
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13276
|
+
id: Scalars['ID']['input'];
|
|
13277
|
+
};
|
|
13278
|
+
export type GraphStoreIssueAssociatedBranchRelationshipArgs = {
|
|
13279
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13280
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13281
|
+
id: Scalars['ID']['input'];
|
|
13282
|
+
};
|
|
13283
|
+
export type GraphStoreIssueAssociatedBuildInverseArgs = {
|
|
13284
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13285
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13286
|
+
id: Scalars['ID']['input'];
|
|
13287
|
+
};
|
|
13288
|
+
export type GraphStoreIssueAssociatedBuildInverseRelationshipArgs = {
|
|
13289
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13290
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13291
|
+
id: Scalars['ID']['input'];
|
|
13292
|
+
};
|
|
13293
|
+
export type GraphStoreIssueAssociatedBuildRelationshipArgs = {
|
|
13294
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13295
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13296
|
+
id: Scalars['ID']['input'];
|
|
13297
|
+
};
|
|
13298
|
+
export type GraphStoreIssueAssociatedCommitInverseArgs = {
|
|
13299
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13300
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13301
|
+
id: Scalars['ID']['input'];
|
|
13302
|
+
};
|
|
13303
|
+
export type GraphStoreIssueAssociatedCommitInverseRelationshipArgs = {
|
|
13304
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13305
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13306
|
+
id: Scalars['ID']['input'];
|
|
13307
|
+
};
|
|
13308
|
+
export type GraphStoreIssueAssociatedCommitRelationshipArgs = {
|
|
13309
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13310
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13311
|
+
id: Scalars['ID']['input'];
|
|
13312
|
+
};
|
|
13313
|
+
export type GraphStoreIssueAssociatedDeploymentInverseArgs = {
|
|
13314
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13315
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13316
|
+
id: Scalars['ID']['input'];
|
|
13317
|
+
};
|
|
13318
|
+
export type GraphStoreIssueAssociatedDeploymentInverseRelationshipArgs = {
|
|
13319
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13320
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13321
|
+
id: Scalars['ID']['input'];
|
|
13322
|
+
};
|
|
13323
|
+
export type GraphStoreIssueAssociatedDeploymentRelationshipArgs = {
|
|
13324
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13325
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13326
|
+
id: Scalars['ID']['input'];
|
|
13327
|
+
};
|
|
13328
|
+
export type GraphStoreIssueAssociatedDesignArgs = {
|
|
13329
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13330
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13331
|
+
id: Scalars['ID']['input'];
|
|
13332
|
+
};
|
|
13333
|
+
export type GraphStoreIssueAssociatedDesignInverseArgs = {
|
|
13334
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13335
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13336
|
+
id: Scalars['ID']['input'];
|
|
13337
|
+
};
|
|
13338
|
+
export type GraphStoreIssueAssociatedDesignInverseRelationshipArgs = {
|
|
13339
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13340
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13341
|
+
id: Scalars['ID']['input'];
|
|
13342
|
+
};
|
|
13343
|
+
export type GraphStoreIssueAssociatedDesignRelationshipArgs = {
|
|
13344
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13345
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13346
|
+
id: Scalars['ID']['input'];
|
|
13347
|
+
};
|
|
13348
|
+
export type GraphStoreIssueAssociatedFeatureFlagInverseArgs = {
|
|
13349
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13350
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13351
|
+
id: Scalars['ID']['input'];
|
|
13352
|
+
};
|
|
13353
|
+
export type GraphStoreIssueAssociatedFeatureFlagInverseRelationshipArgs = {
|
|
13354
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13355
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13356
|
+
id: Scalars['ID']['input'];
|
|
13357
|
+
};
|
|
13358
|
+
export type GraphStoreIssueAssociatedFeatureFlagRelationshipArgs = {
|
|
13359
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13360
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13361
|
+
id: Scalars['ID']['input'];
|
|
13362
|
+
};
|
|
13363
|
+
export type GraphStoreIssueAssociatedPrArgs = {
|
|
13364
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13365
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13366
|
+
id: Scalars['ID']['input'];
|
|
13367
|
+
};
|
|
13368
|
+
export type GraphStoreIssueAssociatedPrInverseArgs = {
|
|
13369
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13370
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13371
|
+
id: Scalars['ID']['input'];
|
|
13372
|
+
};
|
|
13373
|
+
export type GraphStoreIssueAssociatedPrInverseRelationshipArgs = {
|
|
13374
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13375
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13376
|
+
id: Scalars['ID']['input'];
|
|
13377
|
+
};
|
|
13378
|
+
export type GraphStoreIssueAssociatedPrRelationshipArgs = {
|
|
13379
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13380
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13381
|
+
id: Scalars['ID']['input'];
|
|
13382
|
+
};
|
|
13383
|
+
export type GraphStoreIssueAssociatedRemoteLinkInverseArgs = {
|
|
13384
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13385
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13386
|
+
id: Scalars['ID']['input'];
|
|
13387
|
+
};
|
|
13388
|
+
export type GraphStoreIssueAssociatedRemoteLinkInverseRelationshipArgs = {
|
|
13389
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13390
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13391
|
+
id: Scalars['ID']['input'];
|
|
13392
|
+
};
|
|
13393
|
+
export type GraphStoreIssueAssociatedRemoteLinkRelationshipArgs = {
|
|
13394
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13395
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13396
|
+
id: Scalars['ID']['input'];
|
|
13397
|
+
};
|
|
13398
|
+
export type GraphStoreIssueChangesComponentInverseRelationshipArgs = {
|
|
13399
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13400
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13401
|
+
id: Scalars['ID']['input'];
|
|
13402
|
+
};
|
|
13403
|
+
export type GraphStoreIssueChangesComponentRelationshipArgs = {
|
|
13404
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13405
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13406
|
+
id: Scalars['ID']['input'];
|
|
13407
|
+
};
|
|
13408
|
+
export type GraphStoreIssueRecursiveAssociatedDeploymentInverseRelationshipArgs = {
|
|
13409
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13410
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13411
|
+
id: Scalars['ID']['input'];
|
|
13412
|
+
};
|
|
13413
|
+
export type GraphStoreIssueRecursiveAssociatedDeploymentRelationshipArgs = {
|
|
13414
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13415
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13416
|
+
id: Scalars['ID']['input'];
|
|
13417
|
+
};
|
|
13418
|
+
export type GraphStoreIssueRecursiveAssociatedFeatureFlagInverseRelationshipArgs = {
|
|
13419
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13420
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13421
|
+
id: Scalars['ID']['input'];
|
|
13422
|
+
};
|
|
13423
|
+
export type GraphStoreIssueRecursiveAssociatedFeatureFlagRelationshipArgs = {
|
|
13424
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13425
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13426
|
+
id: Scalars['ID']['input'];
|
|
13427
|
+
};
|
|
13428
|
+
export type GraphStoreIssueRecursiveAssociatedPrInverseArgs = {
|
|
13429
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13430
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13431
|
+
id: Scalars['ID']['input'];
|
|
13432
|
+
};
|
|
13433
|
+
export type GraphStoreIssueRecursiveAssociatedPrInverseRelationshipArgs = {
|
|
13434
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13435
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13436
|
+
id: Scalars['ID']['input'];
|
|
13437
|
+
};
|
|
13438
|
+
export type GraphStoreIssueRecursiveAssociatedPrRelationshipArgs = {
|
|
13439
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13440
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13441
|
+
id: Scalars['ID']['input'];
|
|
13442
|
+
};
|
|
13443
|
+
export type GraphStoreJiraEpicContributesToAtlasGoalInverseRelationshipArgs = {
|
|
13444
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13445
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13446
|
+
id: Scalars['ID']['input'];
|
|
13447
|
+
};
|
|
13448
|
+
export type GraphStoreJiraEpicContributesToAtlasGoalRelationshipArgs = {
|
|
13449
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13450
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13451
|
+
id: Scalars['ID']['input'];
|
|
13452
|
+
};
|
|
13453
|
+
export type GraphStoreJiraProjectAssociatedAtlasGoalInverseRelationshipArgs = {
|
|
13454
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13455
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13456
|
+
id: Scalars['ID']['input'];
|
|
13457
|
+
};
|
|
13458
|
+
export type GraphStoreJiraProjectAssociatedAtlasGoalRelationshipArgs = {
|
|
13459
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13460
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13461
|
+
id: Scalars['ID']['input'];
|
|
13462
|
+
};
|
|
13463
|
+
export type GraphStoreJsmProjectAssociatedServiceInverseRelationshipArgs = {
|
|
13464
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13465
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13466
|
+
id: Scalars['ID']['input'];
|
|
13467
|
+
};
|
|
13468
|
+
export type GraphStoreJsmProjectAssociatedServiceRelationshipArgs = {
|
|
13469
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13470
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13471
|
+
id: Scalars['ID']['input'];
|
|
13472
|
+
};
|
|
13473
|
+
export type GraphStoreJswProjectAssociatedComponentInverseRelationshipArgs = {
|
|
13474
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13475
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13476
|
+
id: Scalars['ID']['input'];
|
|
13477
|
+
};
|
|
13478
|
+
export type GraphStoreJswProjectAssociatedComponentRelationshipArgs = {
|
|
13479
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13480
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13481
|
+
id: Scalars['ID']['input'];
|
|
13482
|
+
};
|
|
13483
|
+
export type GraphStoreJswProjectAssociatedIncidentInverseRelationshipArgs = {
|
|
13484
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13485
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13486
|
+
id: Scalars['ID']['input'];
|
|
13487
|
+
};
|
|
13488
|
+
export type GraphStoreJswProjectAssociatedIncidentRelationshipArgs = {
|
|
13489
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13490
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13491
|
+
id: Scalars['ID']['input'];
|
|
13492
|
+
};
|
|
13493
|
+
export type GraphStoreJswProjectSharesComponentWithJsmProjectInverseRelationshipArgs = {
|
|
13494
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13495
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13496
|
+
id: Scalars['ID']['input'];
|
|
13497
|
+
};
|
|
13498
|
+
export type GraphStoreJswProjectSharesComponentWithJsmProjectRelationshipArgs = {
|
|
13499
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13500
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13501
|
+
id: Scalars['ID']['input'];
|
|
13502
|
+
};
|
|
13503
|
+
export type GraphStoreLinkedProjectHasVersionInverseRelationshipArgs = {
|
|
13504
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13505
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13506
|
+
id: Scalars['ID']['input'];
|
|
13507
|
+
};
|
|
13508
|
+
export type GraphStoreLinkedProjectHasVersionRelationshipArgs = {
|
|
13509
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13510
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13511
|
+
id: Scalars['ID']['input'];
|
|
13512
|
+
};
|
|
13513
|
+
export type GraphStoreOperationsContainerImpactedByIncidentInverseRelationshipArgs = {
|
|
13514
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13515
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13516
|
+
id: Scalars['ID']['input'];
|
|
13517
|
+
};
|
|
13518
|
+
export type GraphStoreOperationsContainerImpactedByIncidentRelationshipArgs = {
|
|
13519
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13520
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13521
|
+
id: Scalars['ID']['input'];
|
|
13522
|
+
};
|
|
13523
|
+
export type GraphStoreOperationsContainerImprovedByActionItemInverseRelationshipArgs = {
|
|
13524
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13525
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13526
|
+
id: Scalars['ID']['input'];
|
|
13527
|
+
};
|
|
13528
|
+
export type GraphStoreOperationsContainerImprovedByActionItemRelationshipArgs = {
|
|
13529
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13530
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13531
|
+
id: Scalars['ID']['input'];
|
|
13532
|
+
};
|
|
13533
|
+
export type GraphStoreParentDocumentHasChildDocumentInverseRelationshipArgs = {
|
|
13534
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13535
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13536
|
+
id: Scalars['ID']['input'];
|
|
13537
|
+
};
|
|
13538
|
+
export type GraphStoreParentDocumentHasChildDocumentRelationshipArgs = {
|
|
13539
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13540
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13541
|
+
id: Scalars['ID']['input'];
|
|
13542
|
+
};
|
|
13543
|
+
export type GraphStoreParentIssueHasChildIssueArgs = {
|
|
13544
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13545
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13546
|
+
id: Scalars['ID']['input'];
|
|
13547
|
+
};
|
|
13548
|
+
export type GraphStoreParentIssueHasChildIssueInverseArgs = {
|
|
13549
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13550
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13551
|
+
id: Scalars['ID']['input'];
|
|
13552
|
+
};
|
|
13553
|
+
export type GraphStoreParentIssueHasChildIssueInverseRelationshipArgs = {
|
|
13554
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13555
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13556
|
+
id: Scalars['ID']['input'];
|
|
13557
|
+
};
|
|
13558
|
+
export type GraphStoreParentIssueHasChildIssueRelationshipArgs = {
|
|
13559
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13560
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13561
|
+
id: Scalars['ID']['input'];
|
|
13562
|
+
};
|
|
13563
|
+
export type GraphStorePrInRepoInverseRelationshipArgs = {
|
|
13564
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13565
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13566
|
+
id: Scalars['ID']['input'];
|
|
13567
|
+
};
|
|
13568
|
+
export type GraphStorePrInRepoRelationshipArgs = {
|
|
13569
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13570
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13571
|
+
id: Scalars['ID']['input'];
|
|
13572
|
+
};
|
|
13573
|
+
export type GraphStoreProjectAssociatedBranchInverseRelationshipArgs = {
|
|
13574
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13575
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13576
|
+
id: Scalars['ID']['input'];
|
|
13577
|
+
};
|
|
13578
|
+
export type GraphStoreProjectAssociatedBranchRelationshipArgs = {
|
|
13579
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13580
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13581
|
+
id: Scalars['ID']['input'];
|
|
13582
|
+
};
|
|
13583
|
+
export type GraphStoreProjectAssociatedBuildInverseRelationshipArgs = {
|
|
13584
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13585
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13586
|
+
id: Scalars['ID']['input'];
|
|
13587
|
+
};
|
|
13588
|
+
export type GraphStoreProjectAssociatedBuildRelationshipArgs = {
|
|
13589
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13590
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13591
|
+
id: Scalars['ID']['input'];
|
|
13592
|
+
};
|
|
13593
|
+
export type GraphStoreProjectAssociatedDeploymentInverseRelationshipArgs = {
|
|
13594
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13595
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13596
|
+
id: Scalars['ID']['input'];
|
|
13597
|
+
};
|
|
13598
|
+
export type GraphStoreProjectAssociatedDeploymentRelationshipArgs = {
|
|
13599
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13600
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13601
|
+
id: Scalars['ID']['input'];
|
|
13602
|
+
};
|
|
13603
|
+
export type GraphStoreProjectAssociatedFeatureFlagInverseRelationshipArgs = {
|
|
13604
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13605
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13606
|
+
id: Scalars['ID']['input'];
|
|
13607
|
+
};
|
|
13608
|
+
export type GraphStoreProjectAssociatedFeatureFlagRelationshipArgs = {
|
|
13609
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13610
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13611
|
+
id: Scalars['ID']['input'];
|
|
13612
|
+
};
|
|
13613
|
+
export type GraphStoreProjectAssociatedIncidentInverseRelationshipArgs = {
|
|
13614
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13615
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13616
|
+
id: Scalars['ID']['input'];
|
|
13617
|
+
};
|
|
13618
|
+
export type GraphStoreProjectAssociatedIncidentRelationshipArgs = {
|
|
13619
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13620
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13621
|
+
id: Scalars['ID']['input'];
|
|
13622
|
+
};
|
|
13623
|
+
export type GraphStoreProjectAssociatedOpsgenieTeamInverseRelationshipArgs = {
|
|
13624
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13625
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13626
|
+
id: Scalars['ID']['input'];
|
|
13627
|
+
};
|
|
13628
|
+
export type GraphStoreProjectAssociatedOpsgenieTeamRelationshipArgs = {
|
|
13629
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13630
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13631
|
+
id: Scalars['ID']['input'];
|
|
13632
|
+
};
|
|
13633
|
+
export type GraphStoreProjectAssociatedPrInverseRelationshipArgs = {
|
|
13634
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13635
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13636
|
+
id: Scalars['ID']['input'];
|
|
13637
|
+
};
|
|
13638
|
+
export type GraphStoreProjectAssociatedPrRelationshipArgs = {
|
|
13639
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13640
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13641
|
+
id: Scalars['ID']['input'];
|
|
13642
|
+
};
|
|
13643
|
+
export type GraphStoreProjectAssociatedRepoInverseRelationshipArgs = {
|
|
13644
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13645
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13646
|
+
id: Scalars['ID']['input'];
|
|
13647
|
+
};
|
|
13648
|
+
export type GraphStoreProjectAssociatedRepoRelationshipArgs = {
|
|
13649
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13650
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13651
|
+
id: Scalars['ID']['input'];
|
|
13652
|
+
};
|
|
13653
|
+
export type GraphStoreProjectAssociatedServiceInverseRelationshipArgs = {
|
|
13654
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13655
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13656
|
+
id: Scalars['ID']['input'];
|
|
13657
|
+
};
|
|
13658
|
+
export type GraphStoreProjectAssociatedServiceRelationshipArgs = {
|
|
13659
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13660
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13661
|
+
id: Scalars['ID']['input'];
|
|
13662
|
+
};
|
|
13663
|
+
export type GraphStoreProjectAssociatedToIncidentInverseRelationshipArgs = {
|
|
13664
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13665
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13666
|
+
id: Scalars['ID']['input'];
|
|
13667
|
+
};
|
|
13668
|
+
export type GraphStoreProjectAssociatedToIncidentRelationshipArgs = {
|
|
13669
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13670
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13671
|
+
id: Scalars['ID']['input'];
|
|
13672
|
+
};
|
|
13673
|
+
export type GraphStoreProjectAssociatedToOperationsContainerInverseRelationshipArgs = {
|
|
13674
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13675
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13676
|
+
id: Scalars['ID']['input'];
|
|
13677
|
+
};
|
|
13678
|
+
export type GraphStoreProjectAssociatedToOperationsContainerRelationshipArgs = {
|
|
13679
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13680
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13681
|
+
id: Scalars['ID']['input'];
|
|
13682
|
+
};
|
|
13683
|
+
export type GraphStoreProjectAssociatedToSecurityContainerInverseRelationshipArgs = {
|
|
13684
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13685
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13686
|
+
id: Scalars['ID']['input'];
|
|
13687
|
+
};
|
|
13688
|
+
export type GraphStoreProjectAssociatedToSecurityContainerRelationshipArgs = {
|
|
13689
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13690
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13691
|
+
id: Scalars['ID']['input'];
|
|
13692
|
+
};
|
|
13693
|
+
export type GraphStoreProjectAssociatedVulnerabilityInverseRelationshipArgs = {
|
|
13694
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13695
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13696
|
+
id: Scalars['ID']['input'];
|
|
13697
|
+
};
|
|
13698
|
+
export type GraphStoreProjectAssociatedVulnerabilityRelationshipArgs = {
|
|
13699
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13700
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13701
|
+
id: Scalars['ID']['input'];
|
|
13702
|
+
};
|
|
13703
|
+
export type GraphStoreProjectDisassociatedRepoInverseRelationshipArgs = {
|
|
13704
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13705
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13706
|
+
id: Scalars['ID']['input'];
|
|
13707
|
+
};
|
|
13708
|
+
export type GraphStoreProjectDisassociatedRepoRelationshipArgs = {
|
|
13709
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13710
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13711
|
+
id: Scalars['ID']['input'];
|
|
13712
|
+
};
|
|
13713
|
+
export type GraphStoreProjectDocumentationEntityInverseRelationshipArgs = {
|
|
13714
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13715
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13716
|
+
id: Scalars['ID']['input'];
|
|
13717
|
+
};
|
|
13718
|
+
export type GraphStoreProjectDocumentationEntityRelationshipArgs = {
|
|
13719
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13720
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13721
|
+
id: Scalars['ID']['input'];
|
|
13722
|
+
};
|
|
13723
|
+
export type GraphStoreProjectDocumentationPageInverseRelationshipArgs = {
|
|
13724
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13725
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13726
|
+
id: Scalars['ID']['input'];
|
|
13727
|
+
};
|
|
13728
|
+
export type GraphStoreProjectDocumentationPageRelationshipArgs = {
|
|
13729
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13730
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13731
|
+
id: Scalars['ID']['input'];
|
|
13732
|
+
};
|
|
13733
|
+
export type GraphStoreProjectDocumentationSpaceInverseRelationshipArgs = {
|
|
13734
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13735
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13736
|
+
id: Scalars['ID']['input'];
|
|
13737
|
+
};
|
|
13738
|
+
export type GraphStoreProjectDocumentationSpaceRelationshipArgs = {
|
|
13739
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13740
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13741
|
+
id: Scalars['ID']['input'];
|
|
13742
|
+
};
|
|
13743
|
+
export type GraphStoreProjectExplicitlyAssociatedRepoInverseRelationshipArgs = {
|
|
13744
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13745
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13746
|
+
id: Scalars['ID']['input'];
|
|
13747
|
+
};
|
|
13748
|
+
export type GraphStoreProjectExplicitlyAssociatedRepoRelationshipArgs = {
|
|
13749
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13750
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13751
|
+
id: Scalars['ID']['input'];
|
|
13752
|
+
};
|
|
13753
|
+
export type GraphStoreProjectHasIssueInverseRelationshipArgs = {
|
|
13754
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13755
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13756
|
+
id: Scalars['ID']['input'];
|
|
13757
|
+
};
|
|
13758
|
+
export type GraphStoreProjectHasIssueRelationshipArgs = {
|
|
13759
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13760
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13761
|
+
id: Scalars['ID']['input'];
|
|
13762
|
+
};
|
|
13763
|
+
export type GraphStoreProjectHasSharedVersionWithInverseRelationshipArgs = {
|
|
13764
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13765
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13766
|
+
id: Scalars['ID']['input'];
|
|
13767
|
+
};
|
|
13768
|
+
export type GraphStoreProjectHasSharedVersionWithRelationshipArgs = {
|
|
13769
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13770
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13771
|
+
id: Scalars['ID']['input'];
|
|
13772
|
+
};
|
|
13773
|
+
export type GraphStoreProjectHasVersionInverseRelationshipArgs = {
|
|
13774
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13775
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13776
|
+
id: Scalars['ID']['input'];
|
|
13777
|
+
};
|
|
13778
|
+
export type GraphStoreProjectHasVersionRelationshipArgs = {
|
|
13779
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13780
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13781
|
+
id: Scalars['ID']['input'];
|
|
13782
|
+
};
|
|
13783
|
+
export type GraphStoreSecurityContainerAssociatedToVulnerabilityInverseRelationshipArgs = {
|
|
13784
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13785
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13786
|
+
id: Scalars['ID']['input'];
|
|
13787
|
+
};
|
|
13788
|
+
export type GraphStoreSecurityContainerAssociatedToVulnerabilityRelationshipArgs = {
|
|
13789
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13790
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13791
|
+
id: Scalars['ID']['input'];
|
|
13792
|
+
};
|
|
13793
|
+
export type GraphStoreServiceLinkedIncidentInverseRelationshipArgs = {
|
|
13794
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13795
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13796
|
+
id: Scalars['ID']['input'];
|
|
13797
|
+
};
|
|
13798
|
+
export type GraphStoreServiceLinkedIncidentRelationshipArgs = {
|
|
13799
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13800
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13801
|
+
id: Scalars['ID']['input'];
|
|
13802
|
+
};
|
|
13803
|
+
export type GraphStoreShipit57IssueLinksToPageInverseRelationshipArgs = {
|
|
13804
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13805
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13806
|
+
id: Scalars['ID']['input'];
|
|
13807
|
+
};
|
|
13808
|
+
export type GraphStoreShipit57IssueLinksToPageManualInverseRelationshipArgs = {
|
|
13809
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13810
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13811
|
+
id: Scalars['ID']['input'];
|
|
13812
|
+
};
|
|
13813
|
+
export type GraphStoreShipit57IssueLinksToPageManualRelationshipArgs = {
|
|
13814
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13815
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13816
|
+
id: Scalars['ID']['input'];
|
|
13817
|
+
};
|
|
13818
|
+
export type GraphStoreShipit57IssueLinksToPageRelationshipArgs = {
|
|
13819
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13820
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13821
|
+
id: Scalars['ID']['input'];
|
|
13822
|
+
};
|
|
13823
|
+
export type GraphStoreShipit57IssueRecursiveLinksToPageInverseRelationshipArgs = {
|
|
13824
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13825
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13826
|
+
id: Scalars['ID']['input'];
|
|
13827
|
+
};
|
|
13828
|
+
export type GraphStoreShipit57IssueRecursiveLinksToPageRelationshipArgs = {
|
|
13829
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13830
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13831
|
+
id: Scalars['ID']['input'];
|
|
13832
|
+
};
|
|
13833
|
+
export type GraphStoreShipit57PullRequestLinksToPageInverseRelationshipArgs = {
|
|
13834
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13835
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13836
|
+
id: Scalars['ID']['input'];
|
|
13837
|
+
};
|
|
13838
|
+
export type GraphStoreShipit57PullRequestLinksToPageRelationshipArgs = {
|
|
13839
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13840
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13841
|
+
id: Scalars['ID']['input'];
|
|
13842
|
+
};
|
|
13843
|
+
export type GraphStoreSprintAssociatedBuildInverseRelationshipArgs = {
|
|
13844
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13845
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13846
|
+
id: Scalars['ID']['input'];
|
|
13847
|
+
};
|
|
13848
|
+
export type GraphStoreSprintAssociatedBuildRelationshipArgs = {
|
|
13849
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13850
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13851
|
+
id: Scalars['ID']['input'];
|
|
13852
|
+
};
|
|
13853
|
+
export type GraphStoreSprintAssociatedDeploymentInverseRelationshipArgs = {
|
|
13854
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13855
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13856
|
+
id: Scalars['ID']['input'];
|
|
13857
|
+
};
|
|
13858
|
+
export type GraphStoreSprintAssociatedDeploymentRelationshipArgs = {
|
|
13859
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13860
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13861
|
+
id: Scalars['ID']['input'];
|
|
13862
|
+
};
|
|
13863
|
+
export type GraphStoreSprintAssociatedFeatureFlagInverseRelationshipArgs = {
|
|
13864
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13865
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13866
|
+
id: Scalars['ID']['input'];
|
|
13867
|
+
};
|
|
13868
|
+
export type GraphStoreSprintAssociatedFeatureFlagRelationshipArgs = {
|
|
13869
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13870
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13871
|
+
id: Scalars['ID']['input'];
|
|
13872
|
+
};
|
|
13873
|
+
export type GraphStoreSprintAssociatedPrInverseRelationshipArgs = {
|
|
13874
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13875
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13876
|
+
id: Scalars['ID']['input'];
|
|
13877
|
+
};
|
|
13878
|
+
export type GraphStoreSprintAssociatedPrRelationshipArgs = {
|
|
13879
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13880
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13881
|
+
id: Scalars['ID']['input'];
|
|
13882
|
+
};
|
|
13883
|
+
export type GraphStoreSprintContainsIssueInverseRelationshipArgs = {
|
|
13884
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13885
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13886
|
+
id: Scalars['ID']['input'];
|
|
13887
|
+
};
|
|
13888
|
+
export type GraphStoreSprintContainsIssueRelationshipArgs = {
|
|
13889
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13890
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13891
|
+
id: Scalars['ID']['input'];
|
|
13892
|
+
};
|
|
13893
|
+
export type GraphStoreSprintRetrospectivePageInverseRelationshipArgs = {
|
|
13894
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13895
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13896
|
+
id: Scalars['ID']['input'];
|
|
13897
|
+
};
|
|
13898
|
+
export type GraphStoreSprintRetrospectivePageRelationshipArgs = {
|
|
13899
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13900
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13901
|
+
id: Scalars['ID']['input'];
|
|
13902
|
+
};
|
|
13903
|
+
export type GraphStoreTeamWorksOnProjectInverseRelationshipArgs = {
|
|
13904
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13905
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13906
|
+
id: Scalars['ID']['input'];
|
|
13907
|
+
};
|
|
13908
|
+
export type GraphStoreTeamWorksOnProjectRelationshipArgs = {
|
|
13909
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13910
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13911
|
+
id: Scalars['ID']['input'];
|
|
13912
|
+
};
|
|
13913
|
+
export type GraphStoreUserIsInTeamInverseRelationshipArgs = {
|
|
13914
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13915
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13916
|
+
id: Scalars['ID']['input'];
|
|
13917
|
+
};
|
|
13918
|
+
export type GraphStoreUserIsInTeamRelationshipArgs = {
|
|
13919
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13920
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13921
|
+
id: Scalars['ID']['input'];
|
|
13922
|
+
};
|
|
13923
|
+
export type GraphStoreVersionAssociatedBranchInverseRelationshipArgs = {
|
|
13924
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13925
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13926
|
+
id: Scalars['ID']['input'];
|
|
13927
|
+
};
|
|
13928
|
+
export type GraphStoreVersionAssociatedBranchRelationshipArgs = {
|
|
13929
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13930
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13931
|
+
id: Scalars['ID']['input'];
|
|
13932
|
+
};
|
|
13933
|
+
export type GraphStoreVersionAssociatedBuildInverseRelationshipArgs = {
|
|
13934
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13935
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13936
|
+
id: Scalars['ID']['input'];
|
|
13937
|
+
};
|
|
13938
|
+
export type GraphStoreVersionAssociatedBuildRelationshipArgs = {
|
|
13939
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13940
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13941
|
+
id: Scalars['ID']['input'];
|
|
13942
|
+
};
|
|
13943
|
+
export type GraphStoreVersionAssociatedCommitInverseRelationshipArgs = {
|
|
13944
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13945
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13946
|
+
id: Scalars['ID']['input'];
|
|
13947
|
+
};
|
|
13948
|
+
export type GraphStoreVersionAssociatedCommitRelationshipArgs = {
|
|
13949
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13950
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13951
|
+
id: Scalars['ID']['input'];
|
|
13952
|
+
};
|
|
13953
|
+
export type GraphStoreVersionAssociatedDeploymentInverseRelationshipArgs = {
|
|
13954
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13955
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13956
|
+
id: Scalars['ID']['input'];
|
|
13957
|
+
};
|
|
13958
|
+
export type GraphStoreVersionAssociatedDeploymentRelationshipArgs = {
|
|
13959
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13960
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13961
|
+
id: Scalars['ID']['input'];
|
|
13962
|
+
};
|
|
13963
|
+
export type GraphStoreVersionAssociatedFeatureFlagInverseRelationshipArgs = {
|
|
13964
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13965
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13966
|
+
id: Scalars['ID']['input'];
|
|
13967
|
+
};
|
|
13968
|
+
export type GraphStoreVersionAssociatedFeatureFlagRelationshipArgs = {
|
|
13969
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13970
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13971
|
+
id: Scalars['ID']['input'];
|
|
13972
|
+
};
|
|
13973
|
+
export type GraphStoreVersionAssociatedIssueInverseRelationshipArgs = {
|
|
13974
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13975
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13976
|
+
id: Scalars['ID']['input'];
|
|
13977
|
+
};
|
|
13978
|
+
export type GraphStoreVersionAssociatedIssueRelationshipArgs = {
|
|
13979
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13980
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13981
|
+
id: Scalars['ID']['input'];
|
|
13982
|
+
};
|
|
13983
|
+
export type GraphStoreVersionAssociatedPullRequestInverseRelationshipArgs = {
|
|
13984
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13985
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13986
|
+
id: Scalars['ID']['input'];
|
|
13987
|
+
};
|
|
13988
|
+
export type GraphStoreVersionAssociatedPullRequestRelationshipArgs = {
|
|
13989
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13990
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13991
|
+
id: Scalars['ID']['input'];
|
|
13992
|
+
};
|
|
13993
|
+
export type GraphStoreVersionUserAssociatedFeatureFlagInverseRelationshipArgs = {
|
|
13994
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
13995
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
13996
|
+
id: Scalars['ID']['input'];
|
|
13997
|
+
};
|
|
13998
|
+
export type GraphStoreVersionUserAssociatedFeatureFlagRelationshipArgs = {
|
|
13999
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
14000
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14001
|
+
id: Scalars['ID']['input'];
|
|
14002
|
+
};
|
|
14003
|
+
export type GraphStoreVulnerabilityAssociatedIssueInverseRelationshipArgs = {
|
|
14004
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
14005
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14006
|
+
id: Scalars['ID']['input'];
|
|
14007
|
+
};
|
|
14008
|
+
export type GraphStoreVulnerabilityAssociatedIssueRelationshipArgs = {
|
|
14009
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
14010
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14011
|
+
id: Scalars['ID']['input'];
|
|
14012
|
+
};
|
|
14013
|
+
export type GraphStoreCreateIncidentAssociatedPostIncidentReviewLinkPayload = Payload & {
|
|
14014
|
+
__typename?: 'GraphStoreCreateIncidentAssociatedPostIncidentReviewLinkPayload';
|
|
14015
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14016
|
+
success: Scalars['Boolean']['output'];
|
|
14017
|
+
};
|
|
14018
|
+
export type GraphStoreCreateIncidentHasActionItemPayload = Payload & {
|
|
14019
|
+
__typename?: 'GraphStoreCreateIncidentHasActionItemPayload';
|
|
14020
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14021
|
+
success: Scalars['Boolean']['output'];
|
|
14022
|
+
};
|
|
14023
|
+
export type GraphStoreCreateIncidentLinkedJswIssuePayload = Payload & {
|
|
14024
|
+
__typename?: 'GraphStoreCreateIncidentLinkedJswIssuePayload';
|
|
14025
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14026
|
+
success: Scalars['Boolean']['output'];
|
|
14027
|
+
};
|
|
14028
|
+
export type GraphStoreCreateJswProjectAssociatedComponentPayload = Payload & {
|
|
14029
|
+
__typename?: 'GraphStoreCreateJswProjectAssociatedComponentPayload';
|
|
14030
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14031
|
+
success: Scalars['Boolean']['output'];
|
|
14032
|
+
};
|
|
14033
|
+
export type GraphStoreCreateProjectAssociatedOpsgenieTeamPayload = Payload & {
|
|
14034
|
+
__typename?: 'GraphStoreCreateProjectAssociatedOpsgenieTeamPayload';
|
|
14035
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14036
|
+
success: Scalars['Boolean']['output'];
|
|
14037
|
+
};
|
|
14038
|
+
export type GraphStoreCreateProjectAssociatedToSecurityContainerPayload = Payload & {
|
|
14039
|
+
__typename?: 'GraphStoreCreateProjectAssociatedToSecurityContainerPayload';
|
|
14040
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14041
|
+
success: Scalars['Boolean']['output'];
|
|
14042
|
+
};
|
|
14043
|
+
export type GraphStoreCreateProjectDisassociatedRepoPayload = Payload & {
|
|
14044
|
+
__typename?: 'GraphStoreCreateProjectDisassociatedRepoPayload';
|
|
14045
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14046
|
+
success: Scalars['Boolean']['output'];
|
|
14047
|
+
};
|
|
14048
|
+
export type GraphStoreCreateProjectDocumentationEntityPayload = Payload & {
|
|
14049
|
+
__typename?: 'GraphStoreCreateProjectDocumentationEntityPayload';
|
|
14050
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14051
|
+
success: Scalars['Boolean']['output'];
|
|
14052
|
+
};
|
|
14053
|
+
export type GraphStoreCreateProjectDocumentationPagePayload = Payload & {
|
|
14054
|
+
__typename?: 'GraphStoreCreateProjectDocumentationPagePayload';
|
|
14055
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14056
|
+
success: Scalars['Boolean']['output'];
|
|
14057
|
+
};
|
|
14058
|
+
export type GraphStoreCreateProjectDocumentationSpacePayload = Payload & {
|
|
14059
|
+
__typename?: 'GraphStoreCreateProjectDocumentationSpacePayload';
|
|
14060
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14061
|
+
success: Scalars['Boolean']['output'];
|
|
14062
|
+
};
|
|
14063
|
+
export type GraphStoreCreateProjectHasSharedVersionWithPayload = Payload & {
|
|
14064
|
+
__typename?: 'GraphStoreCreateProjectHasSharedVersionWithPayload';
|
|
14065
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14066
|
+
success: Scalars['Boolean']['output'];
|
|
14067
|
+
};
|
|
14068
|
+
export type GraphStoreCreateProjectHasVersionPayload = Payload & {
|
|
14069
|
+
__typename?: 'GraphStoreCreateProjectHasVersionPayload';
|
|
14070
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14071
|
+
success: Scalars['Boolean']['output'];
|
|
14072
|
+
};
|
|
14073
|
+
export type GraphStoreCreateSprintRetrospectivePagePayload = Payload & {
|
|
14074
|
+
__typename?: 'GraphStoreCreateSprintRetrospectivePagePayload';
|
|
14075
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14076
|
+
success: Scalars['Boolean']['output'];
|
|
14077
|
+
};
|
|
14078
|
+
export type GraphStoreCreateVersionUserAssociatedFeatureFlagPayload = Payload & {
|
|
14079
|
+
__typename?: 'GraphStoreCreateVersionUserAssociatedFeatureFlagPayload';
|
|
14080
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14081
|
+
success: Scalars['Boolean']['output'];
|
|
14082
|
+
};
|
|
14083
|
+
export type GraphStoreCreateVulnerabilityAssociatedIssuePayload = Payload & {
|
|
14084
|
+
__typename?: 'GraphStoreCreateVulnerabilityAssociatedIssuePayload';
|
|
14085
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14086
|
+
success: Scalars['Boolean']['output'];
|
|
14087
|
+
};
|
|
14088
|
+
export type GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceConnection = HasPageInfo & {
|
|
14089
|
+
__typename?: 'GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceConnection';
|
|
14090
|
+
edges: Array<Maybe<GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceEdge>>;
|
|
14091
|
+
nodes: Array<Maybe<GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceNode>>;
|
|
14092
|
+
pageInfo: PageInfo;
|
|
14093
|
+
};
|
|
14094
|
+
export type GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceEdge = {
|
|
14095
|
+
__typename?: 'GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceEdge';
|
|
14096
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
14097
|
+
node: GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceNode;
|
|
14098
|
+
};
|
|
14099
|
+
export type GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceEndNode = Node & {
|
|
14100
|
+
__typename?: 'GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceEndNode';
|
|
14101
|
+
id: Scalars['ID']['output'];
|
|
14102
|
+
};
|
|
14103
|
+
export type GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceNode = Node & {
|
|
14104
|
+
__typename?: 'GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceNode';
|
|
14105
|
+
createdAt: Scalars['DateTime']['output'];
|
|
14106
|
+
from: GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceStartNode;
|
|
14107
|
+
id: Scalars['ID']['output'];
|
|
14108
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
14109
|
+
to: GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceEndNode;
|
|
14110
|
+
};
|
|
14111
|
+
export type GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceStartNode = Node & {
|
|
14112
|
+
__typename?: 'GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceStartNode';
|
|
14113
|
+
id: Scalars['ID']['output'];
|
|
14114
|
+
};
|
|
14115
|
+
export type GraphStoreFullAtlasProjectContributesToAtlasGoalConnection = HasPageInfo & {
|
|
14116
|
+
__typename?: 'GraphStoreFullAtlasProjectContributesToAtlasGoalConnection';
|
|
14117
|
+
edges: Array<Maybe<GraphStoreFullAtlasProjectContributesToAtlasGoalEdge>>;
|
|
14118
|
+
nodes: Array<Maybe<GraphStoreFullAtlasProjectContributesToAtlasGoalNode>>;
|
|
14119
|
+
pageInfo: PageInfo;
|
|
14120
|
+
};
|
|
14121
|
+
export type GraphStoreFullAtlasProjectContributesToAtlasGoalEdge = {
|
|
14122
|
+
__typename?: 'GraphStoreFullAtlasProjectContributesToAtlasGoalEdge';
|
|
14123
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
14124
|
+
node: GraphStoreFullAtlasProjectContributesToAtlasGoalNode;
|
|
14125
|
+
};
|
|
14126
|
+
export type GraphStoreFullAtlasProjectContributesToAtlasGoalEndNode = Node & {
|
|
14127
|
+
__typename?: 'GraphStoreFullAtlasProjectContributesToAtlasGoalEndNode';
|
|
14128
|
+
id: Scalars['ID']['output'];
|
|
14129
|
+
};
|
|
14130
|
+
export type GraphStoreFullAtlasProjectContributesToAtlasGoalNode = Node & {
|
|
14131
|
+
__typename?: 'GraphStoreFullAtlasProjectContributesToAtlasGoalNode';
|
|
14132
|
+
createdAt: Scalars['DateTime']['output'];
|
|
14133
|
+
from: GraphStoreFullAtlasProjectContributesToAtlasGoalStartNode;
|
|
14134
|
+
id: Scalars['ID']['output'];
|
|
14135
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
14136
|
+
to: GraphStoreFullAtlasProjectContributesToAtlasGoalEndNode;
|
|
14137
|
+
};
|
|
14138
|
+
export type GraphStoreFullAtlasProjectContributesToAtlasGoalStartNode = Node & {
|
|
14139
|
+
__typename?: 'GraphStoreFullAtlasProjectContributesToAtlasGoalStartNode';
|
|
14140
|
+
id: Scalars['ID']['output'];
|
|
14141
|
+
};
|
|
14142
|
+
export type GraphStoreFullAtlasProjectIsTrackedOnJiraEpicConnection = HasPageInfo & {
|
|
14143
|
+
__typename?: 'GraphStoreFullAtlasProjectIsTrackedOnJiraEpicConnection';
|
|
14144
|
+
edges: Array<Maybe<GraphStoreFullAtlasProjectIsTrackedOnJiraEpicEdge>>;
|
|
14145
|
+
nodes: Array<Maybe<GraphStoreFullAtlasProjectIsTrackedOnJiraEpicNode>>;
|
|
14146
|
+
pageInfo: PageInfo;
|
|
14147
|
+
};
|
|
14148
|
+
export type GraphStoreFullAtlasProjectIsTrackedOnJiraEpicEdge = {
|
|
14149
|
+
__typename?: 'GraphStoreFullAtlasProjectIsTrackedOnJiraEpicEdge';
|
|
14150
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
14151
|
+
node: GraphStoreFullAtlasProjectIsTrackedOnJiraEpicNode;
|
|
14152
|
+
};
|
|
14153
|
+
export type GraphStoreFullAtlasProjectIsTrackedOnJiraEpicEndNode = Node & {
|
|
14154
|
+
__typename?: 'GraphStoreFullAtlasProjectIsTrackedOnJiraEpicEndNode';
|
|
14155
|
+
id: Scalars['ID']['output'];
|
|
14156
|
+
};
|
|
14157
|
+
export type GraphStoreFullAtlasProjectIsTrackedOnJiraEpicNode = Node & {
|
|
14158
|
+
__typename?: 'GraphStoreFullAtlasProjectIsTrackedOnJiraEpicNode';
|
|
14159
|
+
createdAt: Scalars['DateTime']['output'];
|
|
14160
|
+
from: GraphStoreFullAtlasProjectIsTrackedOnJiraEpicStartNode;
|
|
14161
|
+
id: Scalars['ID']['output'];
|
|
14162
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
14163
|
+
to: GraphStoreFullAtlasProjectIsTrackedOnJiraEpicEndNode;
|
|
14164
|
+
};
|
|
14165
|
+
export type GraphStoreFullAtlasProjectIsTrackedOnJiraEpicStartNode = Node & {
|
|
14166
|
+
__typename?: 'GraphStoreFullAtlasProjectIsTrackedOnJiraEpicStartNode';
|
|
14167
|
+
id: Scalars['ID']['output'];
|
|
14168
|
+
};
|
|
14169
|
+
export type GraphStoreFullComponentAssociatedDocumentConnection = HasPageInfo & {
|
|
14170
|
+
__typename?: 'GraphStoreFullComponentAssociatedDocumentConnection';
|
|
14171
|
+
edges: Array<Maybe<GraphStoreFullComponentAssociatedDocumentEdge>>;
|
|
14172
|
+
nodes: Array<Maybe<GraphStoreFullComponentAssociatedDocumentNode>>;
|
|
14173
|
+
pageInfo: PageInfo;
|
|
14174
|
+
};
|
|
14175
|
+
export type GraphStoreFullComponentAssociatedDocumentEdge = {
|
|
14176
|
+
__typename?: 'GraphStoreFullComponentAssociatedDocumentEdge';
|
|
14177
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
14178
|
+
node: GraphStoreFullComponentAssociatedDocumentNode;
|
|
14179
|
+
};
|
|
14180
|
+
export type GraphStoreFullComponentAssociatedDocumentEndNode = Node & {
|
|
14181
|
+
__typename?: 'GraphStoreFullComponentAssociatedDocumentEndNode';
|
|
14182
|
+
id: Scalars['ID']['output'];
|
|
14183
|
+
};
|
|
14184
|
+
export type GraphStoreFullComponentAssociatedDocumentNode = Node & {
|
|
14185
|
+
__typename?: 'GraphStoreFullComponentAssociatedDocumentNode';
|
|
14186
|
+
createdAt: Scalars['DateTime']['output'];
|
|
14187
|
+
from: GraphStoreFullComponentAssociatedDocumentStartNode;
|
|
14188
|
+
id: Scalars['ID']['output'];
|
|
14189
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
14190
|
+
to: GraphStoreFullComponentAssociatedDocumentEndNode;
|
|
14191
|
+
};
|
|
14192
|
+
export type GraphStoreFullComponentAssociatedDocumentStartNode = Node & {
|
|
14193
|
+
__typename?: 'GraphStoreFullComponentAssociatedDocumentStartNode';
|
|
14194
|
+
id: Scalars['ID']['output'];
|
|
14195
|
+
};
|
|
14196
|
+
export type GraphStoreFullComponentImpactedByIncidentConnection = HasPageInfo & {
|
|
14197
|
+
__typename?: 'GraphStoreFullComponentImpactedByIncidentConnection';
|
|
14198
|
+
edges: Array<Maybe<GraphStoreFullComponentImpactedByIncidentEdge>>;
|
|
14199
|
+
nodes: Array<Maybe<GraphStoreFullComponentImpactedByIncidentNode>>;
|
|
14200
|
+
pageInfo: PageInfo;
|
|
14201
|
+
};
|
|
14202
|
+
export type GraphStoreFullComponentImpactedByIncidentEdge = {
|
|
14203
|
+
__typename?: 'GraphStoreFullComponentImpactedByIncidentEdge';
|
|
14204
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
14205
|
+
node: GraphStoreFullComponentImpactedByIncidentNode;
|
|
14206
|
+
};
|
|
14207
|
+
export type GraphStoreFullComponentImpactedByIncidentEndNode = Node & {
|
|
14208
|
+
__typename?: 'GraphStoreFullComponentImpactedByIncidentEndNode';
|
|
14209
|
+
id: Scalars['ID']['output'];
|
|
14210
|
+
};
|
|
14211
|
+
export type GraphStoreFullComponentImpactedByIncidentNode = Node & {
|
|
14212
|
+
__typename?: 'GraphStoreFullComponentImpactedByIncidentNode';
|
|
14213
|
+
createdAt: Scalars['DateTime']['output'];
|
|
14214
|
+
from: GraphStoreFullComponentImpactedByIncidentStartNode;
|
|
14215
|
+
id: Scalars['ID']['output'];
|
|
14216
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
14217
|
+
to: GraphStoreFullComponentImpactedByIncidentEndNode;
|
|
14218
|
+
};
|
|
14219
|
+
export type GraphStoreFullComponentImpactedByIncidentStartNode = Node & {
|
|
14220
|
+
__typename?: 'GraphStoreFullComponentImpactedByIncidentStartNode';
|
|
14221
|
+
id: Scalars['ID']['output'];
|
|
14222
|
+
};
|
|
14223
|
+
export type GraphStoreFullComponentLinkedJswIssueConnection = HasPageInfo & HasTotal & {
|
|
14224
|
+
__typename?: 'GraphStoreFullComponentLinkedJswIssueConnection';
|
|
14225
|
+
edges: Array<Maybe<GraphStoreFullComponentLinkedJswIssueEdge>>;
|
|
14226
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
14227
|
+
nodes: Array<Maybe<GraphStoreFullComponentLinkedJswIssueNode>>;
|
|
14228
|
+
pageInfo: PageInfo;
|
|
14229
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
14230
|
+
};
|
|
14231
|
+
export type GraphStoreFullComponentLinkedJswIssueEdge = {
|
|
14232
|
+
__typename?: 'GraphStoreFullComponentLinkedJswIssueEdge';
|
|
14233
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
14234
|
+
node: GraphStoreFullComponentLinkedJswIssueNode;
|
|
14235
|
+
};
|
|
14236
|
+
export type GraphStoreFullComponentLinkedJswIssueEndNode = Node & {
|
|
14237
|
+
__typename?: 'GraphStoreFullComponentLinkedJswIssueEndNode';
|
|
14238
|
+
id: Scalars['ID']['output'];
|
|
14239
|
+
};
|
|
14240
|
+
export type GraphStoreFullComponentLinkedJswIssueNode = Node & {
|
|
14241
|
+
__typename?: 'GraphStoreFullComponentLinkedJswIssueNode';
|
|
14242
|
+
createdAt: Scalars['DateTime']['output'];
|
|
14243
|
+
from: GraphStoreFullComponentLinkedJswIssueStartNode;
|
|
14244
|
+
id: Scalars['ID']['output'];
|
|
14245
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
14246
|
+
to: GraphStoreFullComponentLinkedJswIssueEndNode;
|
|
14247
|
+
};
|
|
14248
|
+
export type GraphStoreFullComponentLinkedJswIssueStartNode = Node & {
|
|
14249
|
+
__typename?: 'GraphStoreFullComponentLinkedJswIssueStartNode';
|
|
14250
|
+
id: Scalars['ID']['output'];
|
|
14251
|
+
};
|
|
14252
|
+
export type GraphStoreFullContentReferencedEntityConnection = HasPageInfo & {
|
|
14253
|
+
__typename?: 'GraphStoreFullContentReferencedEntityConnection';
|
|
14254
|
+
edges: Array<Maybe<GraphStoreFullContentReferencedEntityEdge>>;
|
|
14255
|
+
nodes: Array<Maybe<GraphStoreFullContentReferencedEntityNode>>;
|
|
14256
|
+
pageInfo: PageInfo;
|
|
14257
|
+
};
|
|
14258
|
+
export type GraphStoreFullContentReferencedEntityEdge = {
|
|
14259
|
+
__typename?: 'GraphStoreFullContentReferencedEntityEdge';
|
|
14260
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
14261
|
+
node: GraphStoreFullContentReferencedEntityNode;
|
|
14262
|
+
};
|
|
14263
|
+
export type GraphStoreFullContentReferencedEntityEndNode = Node & {
|
|
14264
|
+
__typename?: 'GraphStoreFullContentReferencedEntityEndNode';
|
|
14265
|
+
id: Scalars['ID']['output'];
|
|
14266
|
+
};
|
|
14267
|
+
export type GraphStoreFullContentReferencedEntityNode = Node & {
|
|
14268
|
+
__typename?: 'GraphStoreFullContentReferencedEntityNode';
|
|
14269
|
+
createdAt: Scalars['DateTime']['output'];
|
|
14270
|
+
from: GraphStoreFullContentReferencedEntityStartNode;
|
|
14271
|
+
id: Scalars['ID']['output'];
|
|
14272
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
14273
|
+
to: GraphStoreFullContentReferencedEntityEndNode;
|
|
14274
|
+
};
|
|
14275
|
+
export type GraphStoreFullContentReferencedEntityStartNode = Node & {
|
|
14276
|
+
__typename?: 'GraphStoreFullContentReferencedEntityStartNode';
|
|
14277
|
+
id: Scalars['ID']['output'];
|
|
14278
|
+
};
|
|
14279
|
+
export type GraphStoreFullIncidentAssociatedPostIncidentReviewLinkConnection = HasPageInfo & HasTotal & {
|
|
14280
|
+
__typename?: 'GraphStoreFullIncidentAssociatedPostIncidentReviewLinkConnection';
|
|
14281
|
+
edges: Array<Maybe<GraphStoreFullIncidentAssociatedPostIncidentReviewLinkEdge>>;
|
|
14282
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
14283
|
+
nodes: Array<Maybe<GraphStoreFullIncidentAssociatedPostIncidentReviewLinkNode>>;
|
|
14284
|
+
pageInfo: PageInfo;
|
|
14285
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
14286
|
+
};
|
|
14287
|
+
export type GraphStoreFullIncidentAssociatedPostIncidentReviewLinkEdge = {
|
|
14288
|
+
__typename?: 'GraphStoreFullIncidentAssociatedPostIncidentReviewLinkEdge';
|
|
14289
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
14290
|
+
node: GraphStoreFullIncidentAssociatedPostIncidentReviewLinkNode;
|
|
14291
|
+
};
|
|
14292
|
+
export type GraphStoreFullIncidentAssociatedPostIncidentReviewLinkEndNode = Node & {
|
|
14293
|
+
__typename?: 'GraphStoreFullIncidentAssociatedPostIncidentReviewLinkEndNode';
|
|
14294
|
+
id: Scalars['ID']['output'];
|
|
14295
|
+
};
|
|
14296
|
+
export type GraphStoreFullIncidentAssociatedPostIncidentReviewLinkNode = Node & {
|
|
14297
|
+
__typename?: 'GraphStoreFullIncidentAssociatedPostIncidentReviewLinkNode';
|
|
14298
|
+
createdAt: Scalars['DateTime']['output'];
|
|
14299
|
+
from: GraphStoreFullIncidentAssociatedPostIncidentReviewLinkStartNode;
|
|
14300
|
+
id: Scalars['ID']['output'];
|
|
14301
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
14302
|
+
to: GraphStoreFullIncidentAssociatedPostIncidentReviewLinkEndNode;
|
|
14303
|
+
};
|
|
14304
|
+
export type GraphStoreFullIncidentAssociatedPostIncidentReviewLinkStartNode = Node & {
|
|
14305
|
+
__typename?: 'GraphStoreFullIncidentAssociatedPostIncidentReviewLinkStartNode';
|
|
14306
|
+
id: Scalars['ID']['output'];
|
|
14307
|
+
};
|
|
14308
|
+
export type GraphStoreFullIncidentHasActionItemConnection = HasPageInfo & HasTotal & {
|
|
14309
|
+
__typename?: 'GraphStoreFullIncidentHasActionItemConnection';
|
|
14310
|
+
edges: Array<Maybe<GraphStoreFullIncidentHasActionItemEdge>>;
|
|
14311
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
14312
|
+
nodes: Array<Maybe<GraphStoreFullIncidentHasActionItemNode>>;
|
|
14313
|
+
pageInfo: PageInfo;
|
|
14314
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
14315
|
+
};
|
|
14316
|
+
export type GraphStoreFullIncidentHasActionItemEdge = {
|
|
14317
|
+
__typename?: 'GraphStoreFullIncidentHasActionItemEdge';
|
|
14318
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
14319
|
+
node: GraphStoreFullIncidentHasActionItemNode;
|
|
14320
|
+
};
|
|
14321
|
+
export type GraphStoreFullIncidentHasActionItemEndNode = Node & {
|
|
14322
|
+
__typename?: 'GraphStoreFullIncidentHasActionItemEndNode';
|
|
14323
|
+
id: Scalars['ID']['output'];
|
|
14324
|
+
};
|
|
14325
|
+
export type GraphStoreFullIncidentHasActionItemNode = Node & {
|
|
14326
|
+
__typename?: 'GraphStoreFullIncidentHasActionItemNode';
|
|
14327
|
+
createdAt: Scalars['DateTime']['output'];
|
|
14328
|
+
from: GraphStoreFullIncidentHasActionItemStartNode;
|
|
14329
|
+
id: Scalars['ID']['output'];
|
|
14330
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
14331
|
+
to: GraphStoreFullIncidentHasActionItemEndNode;
|
|
14332
|
+
};
|
|
14333
|
+
export type GraphStoreFullIncidentHasActionItemStartNode = Node & {
|
|
14334
|
+
__typename?: 'GraphStoreFullIncidentHasActionItemStartNode';
|
|
14335
|
+
id: Scalars['ID']['output'];
|
|
14336
|
+
};
|
|
14337
|
+
export type GraphStoreFullIncidentLinkedJswIssueConnection = HasPageInfo & HasTotal & {
|
|
14338
|
+
__typename?: 'GraphStoreFullIncidentLinkedJswIssueConnection';
|
|
14339
|
+
edges: Array<Maybe<GraphStoreFullIncidentLinkedJswIssueEdge>>;
|
|
14340
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
14341
|
+
nodes: Array<Maybe<GraphStoreFullIncidentLinkedJswIssueNode>>;
|
|
14342
|
+
pageInfo: PageInfo;
|
|
14343
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
14344
|
+
};
|
|
14345
|
+
export type GraphStoreFullIncidentLinkedJswIssueEdge = {
|
|
14346
|
+
__typename?: 'GraphStoreFullIncidentLinkedJswIssueEdge';
|
|
14347
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
14348
|
+
node: GraphStoreFullIncidentLinkedJswIssueNode;
|
|
14349
|
+
};
|
|
14350
|
+
export type GraphStoreFullIncidentLinkedJswIssueEndNode = Node & {
|
|
14351
|
+
__typename?: 'GraphStoreFullIncidentLinkedJswIssueEndNode';
|
|
14352
|
+
id: Scalars['ID']['output'];
|
|
14353
|
+
};
|
|
14354
|
+
export type GraphStoreFullIncidentLinkedJswIssueNode = Node & {
|
|
14355
|
+
__typename?: 'GraphStoreFullIncidentLinkedJswIssueNode';
|
|
14356
|
+
createdAt: Scalars['DateTime']['output'];
|
|
14357
|
+
from: GraphStoreFullIncidentLinkedJswIssueStartNode;
|
|
14358
|
+
id: Scalars['ID']['output'];
|
|
14359
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
14360
|
+
to: GraphStoreFullIncidentLinkedJswIssueEndNode;
|
|
14361
|
+
};
|
|
14362
|
+
export type GraphStoreFullIncidentLinkedJswIssueStartNode = Node & {
|
|
14363
|
+
__typename?: 'GraphStoreFullIncidentLinkedJswIssueStartNode';
|
|
14364
|
+
id: Scalars['ID']['output'];
|
|
14365
|
+
};
|
|
14366
|
+
export type GraphStoreFullIssueAssociatedBranchConnection = HasPageInfo & {
|
|
14367
|
+
__typename?: 'GraphStoreFullIssueAssociatedBranchConnection';
|
|
14368
|
+
edges: Array<Maybe<GraphStoreFullIssueAssociatedBranchEdge>>;
|
|
14369
|
+
nodes: Array<Maybe<GraphStoreFullIssueAssociatedBranchNode>>;
|
|
14370
|
+
pageInfo: PageInfo;
|
|
14371
|
+
};
|
|
14372
|
+
export type GraphStoreFullIssueAssociatedBranchEdge = {
|
|
14373
|
+
__typename?: 'GraphStoreFullIssueAssociatedBranchEdge';
|
|
14374
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
14375
|
+
node: GraphStoreFullIssueAssociatedBranchNode;
|
|
14376
|
+
};
|
|
14377
|
+
export type GraphStoreFullIssueAssociatedBranchEndNode = Node & {
|
|
14378
|
+
__typename?: 'GraphStoreFullIssueAssociatedBranchEndNode';
|
|
14379
|
+
id: Scalars['ID']['output'];
|
|
14380
|
+
};
|
|
14381
|
+
export type GraphStoreFullIssueAssociatedBranchNode = Node & {
|
|
14382
|
+
__typename?: 'GraphStoreFullIssueAssociatedBranchNode';
|
|
14383
|
+
createdAt: Scalars['DateTime']['output'];
|
|
14384
|
+
from: GraphStoreFullIssueAssociatedBranchStartNode;
|
|
14385
|
+
id: Scalars['ID']['output'];
|
|
14386
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
14387
|
+
to: GraphStoreFullIssueAssociatedBranchEndNode;
|
|
14388
|
+
};
|
|
14389
|
+
export type GraphStoreFullIssueAssociatedBranchStartNode = Node & {
|
|
14390
|
+
__typename?: 'GraphStoreFullIssueAssociatedBranchStartNode';
|
|
14391
|
+
data?: Maybe<GraphStoreFullIssueAssociatedBranchStartUnion>;
|
|
14392
|
+
id: Scalars['ID']['output'];
|
|
14393
|
+
};
|
|
14394
|
+
export type GraphStoreFullIssueAssociatedBranchStartUnion = JiraIssue;
|
|
14395
|
+
export type GraphStoreFullIssueAssociatedBuildConnection = HasPageInfo & {
|
|
14396
|
+
__typename?: 'GraphStoreFullIssueAssociatedBuildConnection';
|
|
14397
|
+
edges: Array<Maybe<GraphStoreFullIssueAssociatedBuildEdge>>;
|
|
14398
|
+
nodes: Array<Maybe<GraphStoreFullIssueAssociatedBuildNode>>;
|
|
14399
|
+
pageInfo: PageInfo;
|
|
14400
|
+
};
|
|
14401
|
+
export type GraphStoreFullIssueAssociatedBuildEdge = {
|
|
14402
|
+
__typename?: 'GraphStoreFullIssueAssociatedBuildEdge';
|
|
14403
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
14404
|
+
node: GraphStoreFullIssueAssociatedBuildNode;
|
|
14405
|
+
};
|
|
14406
|
+
export type GraphStoreFullIssueAssociatedBuildEndNode = Node & {
|
|
14407
|
+
__typename?: 'GraphStoreFullIssueAssociatedBuildEndNode';
|
|
14408
|
+
id: Scalars['ID']['output'];
|
|
14409
|
+
};
|
|
14410
|
+
export type GraphStoreFullIssueAssociatedBuildNode = Node & {
|
|
14411
|
+
__typename?: 'GraphStoreFullIssueAssociatedBuildNode';
|
|
14412
|
+
createdAt: Scalars['DateTime']['output'];
|
|
14413
|
+
from: GraphStoreFullIssueAssociatedBuildStartNode;
|
|
14414
|
+
id: Scalars['ID']['output'];
|
|
14415
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
14416
|
+
to: GraphStoreFullIssueAssociatedBuildEndNode;
|
|
14417
|
+
};
|
|
14418
|
+
export type GraphStoreFullIssueAssociatedBuildStartNode = Node & {
|
|
14419
|
+
__typename?: 'GraphStoreFullIssueAssociatedBuildStartNode';
|
|
14420
|
+
data?: Maybe<GraphStoreFullIssueAssociatedBuildStartUnion>;
|
|
14421
|
+
id: Scalars['ID']['output'];
|
|
14422
|
+
};
|
|
14423
|
+
export type GraphStoreFullIssueAssociatedBuildStartUnion = JiraIssue;
|
|
14424
|
+
export type GraphStoreFullIssueAssociatedCommitConnection = HasPageInfo & {
|
|
14425
|
+
__typename?: 'GraphStoreFullIssueAssociatedCommitConnection';
|
|
14426
|
+
edges: Array<Maybe<GraphStoreFullIssueAssociatedCommitEdge>>;
|
|
14427
|
+
nodes: Array<Maybe<GraphStoreFullIssueAssociatedCommitNode>>;
|
|
14428
|
+
pageInfo: PageInfo;
|
|
14429
|
+
};
|
|
14430
|
+
export type GraphStoreFullIssueAssociatedCommitEdge = {
|
|
14431
|
+
__typename?: 'GraphStoreFullIssueAssociatedCommitEdge';
|
|
14432
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
14433
|
+
node: GraphStoreFullIssueAssociatedCommitNode;
|
|
14434
|
+
};
|
|
14435
|
+
export type GraphStoreFullIssueAssociatedCommitEndNode = Node & {
|
|
14436
|
+
__typename?: 'GraphStoreFullIssueAssociatedCommitEndNode';
|
|
14437
|
+
id: Scalars['ID']['output'];
|
|
14438
|
+
};
|
|
14439
|
+
export type GraphStoreFullIssueAssociatedCommitNode = Node & {
|
|
14440
|
+
__typename?: 'GraphStoreFullIssueAssociatedCommitNode';
|
|
14441
|
+
createdAt: Scalars['DateTime']['output'];
|
|
14442
|
+
from: GraphStoreFullIssueAssociatedCommitStartNode;
|
|
14443
|
+
id: Scalars['ID']['output'];
|
|
14444
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
14445
|
+
to: GraphStoreFullIssueAssociatedCommitEndNode;
|
|
14446
|
+
};
|
|
14447
|
+
export type GraphStoreFullIssueAssociatedCommitStartNode = Node & {
|
|
14448
|
+
__typename?: 'GraphStoreFullIssueAssociatedCommitStartNode';
|
|
14449
|
+
data?: Maybe<GraphStoreFullIssueAssociatedCommitStartUnion>;
|
|
14450
|
+
id: Scalars['ID']['output'];
|
|
14451
|
+
};
|
|
14452
|
+
export type GraphStoreFullIssueAssociatedCommitStartUnion = JiraIssue;
|
|
14453
|
+
export type GraphStoreFullIssueAssociatedDeploymentConnection = HasPageInfo & {
|
|
14454
|
+
__typename?: 'GraphStoreFullIssueAssociatedDeploymentConnection';
|
|
14455
|
+
edges: Array<Maybe<GraphStoreFullIssueAssociatedDeploymentEdge>>;
|
|
14456
|
+
nodes: Array<Maybe<GraphStoreFullIssueAssociatedDeploymentNode>>;
|
|
14457
|
+
pageInfo: PageInfo;
|
|
14458
|
+
};
|
|
14459
|
+
export type GraphStoreFullIssueAssociatedDeploymentEdge = {
|
|
14460
|
+
__typename?: 'GraphStoreFullIssueAssociatedDeploymentEdge';
|
|
14461
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
14462
|
+
node: GraphStoreFullIssueAssociatedDeploymentNode;
|
|
14463
|
+
};
|
|
14464
|
+
export type GraphStoreFullIssueAssociatedDeploymentEndNode = Node & {
|
|
14465
|
+
__typename?: 'GraphStoreFullIssueAssociatedDeploymentEndNode';
|
|
14466
|
+
id: Scalars['ID']['output'];
|
|
14467
|
+
};
|
|
14468
|
+
export type GraphStoreFullIssueAssociatedDeploymentNode = Node & {
|
|
14469
|
+
__typename?: 'GraphStoreFullIssueAssociatedDeploymentNode';
|
|
14470
|
+
createdAt: Scalars['DateTime']['output'];
|
|
14471
|
+
from: GraphStoreFullIssueAssociatedDeploymentStartNode;
|
|
14472
|
+
id: Scalars['ID']['output'];
|
|
14473
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
14474
|
+
to: GraphStoreFullIssueAssociatedDeploymentEndNode;
|
|
14475
|
+
};
|
|
14476
|
+
export type GraphStoreFullIssueAssociatedDeploymentStartNode = Node & {
|
|
14477
|
+
__typename?: 'GraphStoreFullIssueAssociatedDeploymentStartNode';
|
|
14478
|
+
data?: Maybe<GraphStoreFullIssueAssociatedDeploymentStartUnion>;
|
|
14479
|
+
id: Scalars['ID']['output'];
|
|
14480
|
+
};
|
|
14481
|
+
export type GraphStoreFullIssueAssociatedDeploymentStartUnion = JiraIssue;
|
|
14482
|
+
export type GraphStoreFullIssueAssociatedDesignConnection = HasPageInfo & {
|
|
14483
|
+
__typename?: 'GraphStoreFullIssueAssociatedDesignConnection';
|
|
14484
|
+
edges: Array<Maybe<GraphStoreFullIssueAssociatedDesignEdge>>;
|
|
14485
|
+
nodes: Array<Maybe<GraphStoreFullIssueAssociatedDesignNode>>;
|
|
14486
|
+
pageInfo: PageInfo;
|
|
14487
|
+
};
|
|
14488
|
+
export type GraphStoreFullIssueAssociatedDesignEdge = {
|
|
14489
|
+
__typename?: 'GraphStoreFullIssueAssociatedDesignEdge';
|
|
14490
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
14491
|
+
node: GraphStoreFullIssueAssociatedDesignNode;
|
|
14492
|
+
};
|
|
14493
|
+
export type GraphStoreFullIssueAssociatedDesignEndNode = Node & {
|
|
14494
|
+
__typename?: 'GraphStoreFullIssueAssociatedDesignEndNode';
|
|
14495
|
+
data?: Maybe<GraphStoreFullIssueAssociatedDesignEndUnion>;
|
|
14496
|
+
id: Scalars['ID']['output'];
|
|
14497
|
+
};
|
|
14498
|
+
export type GraphStoreFullIssueAssociatedDesignEndUnion = DevOpsDesign;
|
|
14499
|
+
export type GraphStoreFullIssueAssociatedDesignNode = Node & {
|
|
14500
|
+
__typename?: 'GraphStoreFullIssueAssociatedDesignNode';
|
|
14501
|
+
createdAt: Scalars['DateTime']['output'];
|
|
14502
|
+
from: GraphStoreFullIssueAssociatedDesignStartNode;
|
|
14503
|
+
id: Scalars['ID']['output'];
|
|
14504
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
14505
|
+
to: GraphStoreFullIssueAssociatedDesignEndNode;
|
|
14506
|
+
};
|
|
14507
|
+
export type GraphStoreFullIssueAssociatedDesignStartNode = Node & {
|
|
14508
|
+
__typename?: 'GraphStoreFullIssueAssociatedDesignStartNode';
|
|
14509
|
+
data?: Maybe<GraphStoreFullIssueAssociatedDesignStartUnion>;
|
|
14510
|
+
id: Scalars['ID']['output'];
|
|
14511
|
+
};
|
|
14512
|
+
export type GraphStoreFullIssueAssociatedDesignStartUnion = JiraIssue;
|
|
14513
|
+
export type GraphStoreFullIssueAssociatedFeatureFlagConnection = HasPageInfo & {
|
|
14514
|
+
__typename?: 'GraphStoreFullIssueAssociatedFeatureFlagConnection';
|
|
14515
|
+
edges: Array<Maybe<GraphStoreFullIssueAssociatedFeatureFlagEdge>>;
|
|
14516
|
+
nodes: Array<Maybe<GraphStoreFullIssueAssociatedFeatureFlagNode>>;
|
|
14517
|
+
pageInfo: PageInfo;
|
|
14518
|
+
};
|
|
14519
|
+
export type GraphStoreFullIssueAssociatedFeatureFlagEdge = {
|
|
14520
|
+
__typename?: 'GraphStoreFullIssueAssociatedFeatureFlagEdge';
|
|
14521
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
14522
|
+
node: GraphStoreFullIssueAssociatedFeatureFlagNode;
|
|
14523
|
+
};
|
|
14524
|
+
export type GraphStoreFullIssueAssociatedFeatureFlagEndNode = Node & {
|
|
14525
|
+
__typename?: 'GraphStoreFullIssueAssociatedFeatureFlagEndNode';
|
|
14526
|
+
id: Scalars['ID']['output'];
|
|
14527
|
+
};
|
|
14528
|
+
export type GraphStoreFullIssueAssociatedFeatureFlagNode = Node & {
|
|
14529
|
+
__typename?: 'GraphStoreFullIssueAssociatedFeatureFlagNode';
|
|
14530
|
+
createdAt: Scalars['DateTime']['output'];
|
|
14531
|
+
from: GraphStoreFullIssueAssociatedFeatureFlagStartNode;
|
|
14532
|
+
id: Scalars['ID']['output'];
|
|
14533
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
14534
|
+
to: GraphStoreFullIssueAssociatedFeatureFlagEndNode;
|
|
14535
|
+
};
|
|
14536
|
+
export type GraphStoreFullIssueAssociatedFeatureFlagStartNode = Node & {
|
|
14537
|
+
__typename?: 'GraphStoreFullIssueAssociatedFeatureFlagStartNode';
|
|
14538
|
+
data?: Maybe<GraphStoreFullIssueAssociatedFeatureFlagStartUnion>;
|
|
14539
|
+
id: Scalars['ID']['output'];
|
|
14540
|
+
};
|
|
14541
|
+
export type GraphStoreFullIssueAssociatedFeatureFlagStartUnion = JiraIssue;
|
|
14542
|
+
export type GraphStoreFullIssueAssociatedPrConnection = HasPageInfo & {
|
|
14543
|
+
__typename?: 'GraphStoreFullIssueAssociatedPrConnection';
|
|
14544
|
+
edges: Array<Maybe<GraphStoreFullIssueAssociatedPrEdge>>;
|
|
14545
|
+
nodes: Array<Maybe<GraphStoreFullIssueAssociatedPrNode>>;
|
|
14546
|
+
pageInfo: PageInfo;
|
|
14547
|
+
};
|
|
14548
|
+
export type GraphStoreFullIssueAssociatedPrEdge = {
|
|
14549
|
+
__typename?: 'GraphStoreFullIssueAssociatedPrEdge';
|
|
14550
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
14551
|
+
node: GraphStoreFullIssueAssociatedPrNode;
|
|
14552
|
+
};
|
|
14553
|
+
export type GraphStoreFullIssueAssociatedPrEndNode = Node & {
|
|
14554
|
+
__typename?: 'GraphStoreFullIssueAssociatedPrEndNode';
|
|
14555
|
+
data?: Maybe<GraphStoreFullIssueAssociatedPrEndUnion>;
|
|
14556
|
+
id: Scalars['ID']['output'];
|
|
14557
|
+
};
|
|
14558
|
+
export type GraphStoreFullIssueAssociatedPrEndUnion = DevOpsPullRequestDetails;
|
|
14559
|
+
export type GraphStoreFullIssueAssociatedPrNode = Node & {
|
|
14560
|
+
__typename?: 'GraphStoreFullIssueAssociatedPrNode';
|
|
14561
|
+
createdAt: Scalars['DateTime']['output'];
|
|
14562
|
+
from: GraphStoreFullIssueAssociatedPrStartNode;
|
|
14563
|
+
id: Scalars['ID']['output'];
|
|
14564
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
14565
|
+
to: GraphStoreFullIssueAssociatedPrEndNode;
|
|
14566
|
+
};
|
|
14567
|
+
export type GraphStoreFullIssueAssociatedPrStartNode = Node & {
|
|
14568
|
+
__typename?: 'GraphStoreFullIssueAssociatedPrStartNode';
|
|
14569
|
+
data?: Maybe<GraphStoreFullIssueAssociatedPrStartUnion>;
|
|
14570
|
+
id: Scalars['ID']['output'];
|
|
14571
|
+
};
|
|
14572
|
+
export type GraphStoreFullIssueAssociatedPrStartUnion = JiraIssue;
|
|
14573
|
+
export type GraphStoreFullIssueAssociatedRemoteLinkConnection = HasPageInfo & {
|
|
14574
|
+
__typename?: 'GraphStoreFullIssueAssociatedRemoteLinkConnection';
|
|
14575
|
+
edges: Array<Maybe<GraphStoreFullIssueAssociatedRemoteLinkEdge>>;
|
|
14576
|
+
nodes: Array<Maybe<GraphStoreFullIssueAssociatedRemoteLinkNode>>;
|
|
14577
|
+
pageInfo: PageInfo;
|
|
14578
|
+
};
|
|
14579
|
+
export type GraphStoreFullIssueAssociatedRemoteLinkEdge = {
|
|
14580
|
+
__typename?: 'GraphStoreFullIssueAssociatedRemoteLinkEdge';
|
|
14581
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
14582
|
+
node: GraphStoreFullIssueAssociatedRemoteLinkNode;
|
|
14583
|
+
};
|
|
14584
|
+
export type GraphStoreFullIssueAssociatedRemoteLinkEndNode = Node & {
|
|
14585
|
+
__typename?: 'GraphStoreFullIssueAssociatedRemoteLinkEndNode';
|
|
14586
|
+
id: Scalars['ID']['output'];
|
|
14587
|
+
};
|
|
14588
|
+
export type GraphStoreFullIssueAssociatedRemoteLinkNode = Node & {
|
|
14589
|
+
__typename?: 'GraphStoreFullIssueAssociatedRemoteLinkNode';
|
|
14590
|
+
createdAt: Scalars['DateTime']['output'];
|
|
14591
|
+
from: GraphStoreFullIssueAssociatedRemoteLinkStartNode;
|
|
14592
|
+
id: Scalars['ID']['output'];
|
|
14593
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
14594
|
+
to: GraphStoreFullIssueAssociatedRemoteLinkEndNode;
|
|
14595
|
+
};
|
|
14596
|
+
export type GraphStoreFullIssueAssociatedRemoteLinkStartNode = Node & {
|
|
14597
|
+
__typename?: 'GraphStoreFullIssueAssociatedRemoteLinkStartNode';
|
|
14598
|
+
data?: Maybe<GraphStoreFullIssueAssociatedRemoteLinkStartUnion>;
|
|
14599
|
+
id: Scalars['ID']['output'];
|
|
14600
|
+
};
|
|
14601
|
+
export type GraphStoreFullIssueAssociatedRemoteLinkStartUnion = JiraIssue;
|
|
14602
|
+
export type GraphStoreFullIssueChangesComponentConnection = HasPageInfo & HasTotal & {
|
|
14603
|
+
__typename?: 'GraphStoreFullIssueChangesComponentConnection';
|
|
14604
|
+
edges: Array<Maybe<GraphStoreFullIssueChangesComponentEdge>>;
|
|
14605
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
14606
|
+
nodes: Array<Maybe<GraphStoreFullIssueChangesComponentNode>>;
|
|
14607
|
+
pageInfo: PageInfo;
|
|
14608
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
14609
|
+
};
|
|
14610
|
+
export type GraphStoreFullIssueChangesComponentEdge = {
|
|
14611
|
+
__typename?: 'GraphStoreFullIssueChangesComponentEdge';
|
|
14612
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
14613
|
+
node: GraphStoreFullIssueChangesComponentNode;
|
|
14614
|
+
};
|
|
14615
|
+
export type GraphStoreFullIssueChangesComponentEndNode = Node & {
|
|
14616
|
+
__typename?: 'GraphStoreFullIssueChangesComponentEndNode';
|
|
14617
|
+
id: Scalars['ID']['output'];
|
|
14618
|
+
};
|
|
14619
|
+
export type GraphStoreFullIssueChangesComponentNode = Node & {
|
|
14620
|
+
__typename?: 'GraphStoreFullIssueChangesComponentNode';
|
|
14621
|
+
createdAt: Scalars['DateTime']['output'];
|
|
14622
|
+
from: GraphStoreFullIssueChangesComponentStartNode;
|
|
14623
|
+
id: Scalars['ID']['output'];
|
|
14624
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
14625
|
+
to: GraphStoreFullIssueChangesComponentEndNode;
|
|
14626
|
+
};
|
|
14627
|
+
export type GraphStoreFullIssueChangesComponentStartNode = Node & {
|
|
14628
|
+
__typename?: 'GraphStoreFullIssueChangesComponentStartNode';
|
|
14629
|
+
id: Scalars['ID']['output'];
|
|
14630
|
+
};
|
|
14631
|
+
export type GraphStoreFullIssueRecursiveAssociatedDeploymentConnection = HasPageInfo & HasTotal & {
|
|
14632
|
+
__typename?: 'GraphStoreFullIssueRecursiveAssociatedDeploymentConnection';
|
|
14633
|
+
edges: Array<Maybe<GraphStoreFullIssueRecursiveAssociatedDeploymentEdge>>;
|
|
14634
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
14635
|
+
nodes: Array<Maybe<GraphStoreFullIssueRecursiveAssociatedDeploymentNode>>;
|
|
14636
|
+
pageInfo: PageInfo;
|
|
14637
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
14638
|
+
};
|
|
14639
|
+
export type GraphStoreFullIssueRecursiveAssociatedDeploymentEdge = {
|
|
14640
|
+
__typename?: 'GraphStoreFullIssueRecursiveAssociatedDeploymentEdge';
|
|
14641
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
14642
|
+
node: GraphStoreFullIssueRecursiveAssociatedDeploymentNode;
|
|
14643
|
+
};
|
|
14644
|
+
export type GraphStoreFullIssueRecursiveAssociatedDeploymentEndNode = Node & {
|
|
14645
|
+
__typename?: 'GraphStoreFullIssueRecursiveAssociatedDeploymentEndNode';
|
|
14646
|
+
id: Scalars['ID']['output'];
|
|
14647
|
+
};
|
|
14648
|
+
export type GraphStoreFullIssueRecursiveAssociatedDeploymentNode = Node & {
|
|
14649
|
+
__typename?: 'GraphStoreFullIssueRecursiveAssociatedDeploymentNode';
|
|
14650
|
+
createdAt: Scalars['DateTime']['output'];
|
|
14651
|
+
from: GraphStoreFullIssueRecursiveAssociatedDeploymentStartNode;
|
|
14652
|
+
id: Scalars['ID']['output'];
|
|
14653
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
14654
|
+
to: GraphStoreFullIssueRecursiveAssociatedDeploymentEndNode;
|
|
14655
|
+
};
|
|
14656
|
+
export type GraphStoreFullIssueRecursiveAssociatedDeploymentStartNode = Node & {
|
|
14657
|
+
__typename?: 'GraphStoreFullIssueRecursiveAssociatedDeploymentStartNode';
|
|
14658
|
+
id: Scalars['ID']['output'];
|
|
14659
|
+
};
|
|
14660
|
+
export type GraphStoreFullIssueRecursiveAssociatedFeatureFlagConnection = HasPageInfo & HasTotal & {
|
|
14661
|
+
__typename?: 'GraphStoreFullIssueRecursiveAssociatedFeatureFlagConnection';
|
|
14662
|
+
edges: Array<Maybe<GraphStoreFullIssueRecursiveAssociatedFeatureFlagEdge>>;
|
|
14663
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
14664
|
+
nodes: Array<Maybe<GraphStoreFullIssueRecursiveAssociatedFeatureFlagNode>>;
|
|
14665
|
+
pageInfo: PageInfo;
|
|
14666
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
14667
|
+
};
|
|
14668
|
+
export type GraphStoreFullIssueRecursiveAssociatedFeatureFlagEdge = {
|
|
14669
|
+
__typename?: 'GraphStoreFullIssueRecursiveAssociatedFeatureFlagEdge';
|
|
14670
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
14671
|
+
node: GraphStoreFullIssueRecursiveAssociatedFeatureFlagNode;
|
|
14672
|
+
};
|
|
14673
|
+
export type GraphStoreFullIssueRecursiveAssociatedFeatureFlagEndNode = Node & {
|
|
14674
|
+
__typename?: 'GraphStoreFullIssueRecursiveAssociatedFeatureFlagEndNode';
|
|
14675
|
+
id: Scalars['ID']['output'];
|
|
14676
|
+
};
|
|
14677
|
+
export type GraphStoreFullIssueRecursiveAssociatedFeatureFlagNode = Node & {
|
|
14678
|
+
__typename?: 'GraphStoreFullIssueRecursiveAssociatedFeatureFlagNode';
|
|
14679
|
+
createdAt: Scalars['DateTime']['output'];
|
|
14680
|
+
from: GraphStoreFullIssueRecursiveAssociatedFeatureFlagStartNode;
|
|
14681
|
+
id: Scalars['ID']['output'];
|
|
14682
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
14683
|
+
to: GraphStoreFullIssueRecursiveAssociatedFeatureFlagEndNode;
|
|
14684
|
+
};
|
|
14685
|
+
export type GraphStoreFullIssueRecursiveAssociatedFeatureFlagStartNode = Node & {
|
|
14686
|
+
__typename?: 'GraphStoreFullIssueRecursiveAssociatedFeatureFlagStartNode';
|
|
14687
|
+
id: Scalars['ID']['output'];
|
|
14688
|
+
};
|
|
14689
|
+
export type GraphStoreFullIssueRecursiveAssociatedPrConnection = HasPageInfo & HasTotal & {
|
|
14690
|
+
__typename?: 'GraphStoreFullIssueRecursiveAssociatedPrConnection';
|
|
14691
|
+
edges: Array<Maybe<GraphStoreFullIssueRecursiveAssociatedPrEdge>>;
|
|
14692
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
14693
|
+
nodes: Array<Maybe<GraphStoreFullIssueRecursiveAssociatedPrNode>>;
|
|
14694
|
+
pageInfo: PageInfo;
|
|
14695
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
14696
|
+
};
|
|
14697
|
+
export type GraphStoreFullIssueRecursiveAssociatedPrEdge = {
|
|
14698
|
+
__typename?: 'GraphStoreFullIssueRecursiveAssociatedPrEdge';
|
|
14699
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
14700
|
+
node: GraphStoreFullIssueRecursiveAssociatedPrNode;
|
|
14701
|
+
};
|
|
14702
|
+
export type GraphStoreFullIssueRecursiveAssociatedPrEndNode = Node & {
|
|
14703
|
+
__typename?: 'GraphStoreFullIssueRecursiveAssociatedPrEndNode';
|
|
14704
|
+
id: Scalars['ID']['output'];
|
|
14705
|
+
};
|
|
14706
|
+
export type GraphStoreFullIssueRecursiveAssociatedPrNode = Node & {
|
|
14707
|
+
__typename?: 'GraphStoreFullIssueRecursiveAssociatedPrNode';
|
|
14708
|
+
createdAt: Scalars['DateTime']['output'];
|
|
14709
|
+
from: GraphStoreFullIssueRecursiveAssociatedPrStartNode;
|
|
14710
|
+
id: Scalars['ID']['output'];
|
|
14711
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
14712
|
+
to: GraphStoreFullIssueRecursiveAssociatedPrEndNode;
|
|
14713
|
+
};
|
|
14714
|
+
export type GraphStoreFullIssueRecursiveAssociatedPrStartNode = Node & {
|
|
14715
|
+
__typename?: 'GraphStoreFullIssueRecursiveAssociatedPrStartNode';
|
|
14716
|
+
data?: Maybe<GraphStoreFullIssueRecursiveAssociatedPrStartUnion>;
|
|
14717
|
+
id: Scalars['ID']['output'];
|
|
14718
|
+
};
|
|
14719
|
+
export type GraphStoreFullIssueRecursiveAssociatedPrStartUnion = JiraIssue;
|
|
14720
|
+
export type GraphStoreFullJiraEpicContributesToAtlasGoalConnection = HasPageInfo & {
|
|
14721
|
+
__typename?: 'GraphStoreFullJiraEpicContributesToAtlasGoalConnection';
|
|
14722
|
+
edges: Array<Maybe<GraphStoreFullJiraEpicContributesToAtlasGoalEdge>>;
|
|
14723
|
+
nodes: Array<Maybe<GraphStoreFullJiraEpicContributesToAtlasGoalNode>>;
|
|
14724
|
+
pageInfo: PageInfo;
|
|
14725
|
+
};
|
|
14726
|
+
export type GraphStoreFullJiraEpicContributesToAtlasGoalEdge = {
|
|
14727
|
+
__typename?: 'GraphStoreFullJiraEpicContributesToAtlasGoalEdge';
|
|
14728
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
14729
|
+
node: GraphStoreFullJiraEpicContributesToAtlasGoalNode;
|
|
14730
|
+
};
|
|
14731
|
+
export type GraphStoreFullJiraEpicContributesToAtlasGoalEndNode = Node & {
|
|
14732
|
+
__typename?: 'GraphStoreFullJiraEpicContributesToAtlasGoalEndNode';
|
|
14733
|
+
id: Scalars['ID']['output'];
|
|
14734
|
+
};
|
|
14735
|
+
export type GraphStoreFullJiraEpicContributesToAtlasGoalNode = Node & {
|
|
14736
|
+
__typename?: 'GraphStoreFullJiraEpicContributesToAtlasGoalNode';
|
|
14737
|
+
createdAt: Scalars['DateTime']['output'];
|
|
14738
|
+
from: GraphStoreFullJiraEpicContributesToAtlasGoalStartNode;
|
|
14739
|
+
id: Scalars['ID']['output'];
|
|
14740
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
14741
|
+
to: GraphStoreFullJiraEpicContributesToAtlasGoalEndNode;
|
|
14742
|
+
};
|
|
14743
|
+
export type GraphStoreFullJiraEpicContributesToAtlasGoalStartNode = Node & {
|
|
14744
|
+
__typename?: 'GraphStoreFullJiraEpicContributesToAtlasGoalStartNode';
|
|
14745
|
+
id: Scalars['ID']['output'];
|
|
14746
|
+
};
|
|
14747
|
+
export type GraphStoreFullJiraProjectAssociatedAtlasGoalConnection = HasPageInfo & HasTotal & {
|
|
14748
|
+
__typename?: 'GraphStoreFullJiraProjectAssociatedAtlasGoalConnection';
|
|
14749
|
+
edges: Array<Maybe<GraphStoreFullJiraProjectAssociatedAtlasGoalEdge>>;
|
|
14750
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
14751
|
+
nodes: Array<Maybe<GraphStoreFullJiraProjectAssociatedAtlasGoalNode>>;
|
|
14752
|
+
pageInfo: PageInfo;
|
|
14753
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
14754
|
+
};
|
|
14755
|
+
export type GraphStoreFullJiraProjectAssociatedAtlasGoalEdge = {
|
|
14756
|
+
__typename?: 'GraphStoreFullJiraProjectAssociatedAtlasGoalEdge';
|
|
14757
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
14758
|
+
node: GraphStoreFullJiraProjectAssociatedAtlasGoalNode;
|
|
14759
|
+
};
|
|
14760
|
+
export type GraphStoreFullJiraProjectAssociatedAtlasGoalEndNode = Node & {
|
|
14761
|
+
__typename?: 'GraphStoreFullJiraProjectAssociatedAtlasGoalEndNode';
|
|
14762
|
+
id: Scalars['ID']['output'];
|
|
14763
|
+
};
|
|
14764
|
+
export type GraphStoreFullJiraProjectAssociatedAtlasGoalNode = Node & {
|
|
14765
|
+
__typename?: 'GraphStoreFullJiraProjectAssociatedAtlasGoalNode';
|
|
14766
|
+
createdAt: Scalars['DateTime']['output'];
|
|
14767
|
+
from: GraphStoreFullJiraProjectAssociatedAtlasGoalStartNode;
|
|
14768
|
+
id: Scalars['ID']['output'];
|
|
14769
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
14770
|
+
to: GraphStoreFullJiraProjectAssociatedAtlasGoalEndNode;
|
|
14771
|
+
};
|
|
14772
|
+
export type GraphStoreFullJiraProjectAssociatedAtlasGoalStartNode = Node & {
|
|
14773
|
+
__typename?: 'GraphStoreFullJiraProjectAssociatedAtlasGoalStartNode';
|
|
14774
|
+
id: Scalars['ID']['output'];
|
|
14775
|
+
};
|
|
14776
|
+
export type GraphStoreFullJsmProjectAssociatedServiceConnection = HasPageInfo & HasTotal & {
|
|
14777
|
+
__typename?: 'GraphStoreFullJsmProjectAssociatedServiceConnection';
|
|
14778
|
+
edges: Array<Maybe<GraphStoreFullJsmProjectAssociatedServiceEdge>>;
|
|
14779
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
14780
|
+
nodes: Array<Maybe<GraphStoreFullJsmProjectAssociatedServiceNode>>;
|
|
14781
|
+
pageInfo: PageInfo;
|
|
14782
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
14783
|
+
};
|
|
14784
|
+
export type GraphStoreFullJsmProjectAssociatedServiceEdge = {
|
|
14785
|
+
__typename?: 'GraphStoreFullJsmProjectAssociatedServiceEdge';
|
|
14786
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
14787
|
+
node: GraphStoreFullJsmProjectAssociatedServiceNode;
|
|
14788
|
+
};
|
|
14789
|
+
export type GraphStoreFullJsmProjectAssociatedServiceEndNode = Node & {
|
|
14790
|
+
__typename?: 'GraphStoreFullJsmProjectAssociatedServiceEndNode';
|
|
14791
|
+
id: Scalars['ID']['output'];
|
|
14792
|
+
};
|
|
14793
|
+
export type GraphStoreFullJsmProjectAssociatedServiceNode = Node & {
|
|
14794
|
+
__typename?: 'GraphStoreFullJsmProjectAssociatedServiceNode';
|
|
14795
|
+
createdAt: Scalars['DateTime']['output'];
|
|
14796
|
+
from: GraphStoreFullJsmProjectAssociatedServiceStartNode;
|
|
14797
|
+
id: Scalars['ID']['output'];
|
|
14798
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
14799
|
+
to: GraphStoreFullJsmProjectAssociatedServiceEndNode;
|
|
14800
|
+
};
|
|
14801
|
+
export type GraphStoreFullJsmProjectAssociatedServiceStartNode = Node & {
|
|
14802
|
+
__typename?: 'GraphStoreFullJsmProjectAssociatedServiceStartNode';
|
|
14803
|
+
id: Scalars['ID']['output'];
|
|
14804
|
+
};
|
|
14805
|
+
export type GraphStoreFullJswProjectAssociatedComponentConnection = HasPageInfo & HasTotal & {
|
|
14806
|
+
__typename?: 'GraphStoreFullJswProjectAssociatedComponentConnection';
|
|
14807
|
+
edges: Array<Maybe<GraphStoreFullJswProjectAssociatedComponentEdge>>;
|
|
14808
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
14809
|
+
nodes: Array<Maybe<GraphStoreFullJswProjectAssociatedComponentNode>>;
|
|
14810
|
+
pageInfo: PageInfo;
|
|
14811
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
14812
|
+
};
|
|
14813
|
+
export type GraphStoreFullJswProjectAssociatedComponentEdge = {
|
|
14814
|
+
__typename?: 'GraphStoreFullJswProjectAssociatedComponentEdge';
|
|
14815
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
14816
|
+
node: GraphStoreFullJswProjectAssociatedComponentNode;
|
|
14817
|
+
};
|
|
14818
|
+
export type GraphStoreFullJswProjectAssociatedComponentEndNode = Node & {
|
|
14819
|
+
__typename?: 'GraphStoreFullJswProjectAssociatedComponentEndNode';
|
|
14820
|
+
id: Scalars['ID']['output'];
|
|
14821
|
+
};
|
|
14822
|
+
export type GraphStoreFullJswProjectAssociatedComponentNode = Node & {
|
|
14823
|
+
__typename?: 'GraphStoreFullJswProjectAssociatedComponentNode';
|
|
14824
|
+
createdAt: Scalars['DateTime']['output'];
|
|
14825
|
+
from: GraphStoreFullJswProjectAssociatedComponentStartNode;
|
|
14826
|
+
id: Scalars['ID']['output'];
|
|
14827
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
14828
|
+
to: GraphStoreFullJswProjectAssociatedComponentEndNode;
|
|
14829
|
+
};
|
|
14830
|
+
export type GraphStoreFullJswProjectAssociatedComponentStartNode = Node & {
|
|
14831
|
+
__typename?: 'GraphStoreFullJswProjectAssociatedComponentStartNode';
|
|
14832
|
+
id: Scalars['ID']['output'];
|
|
14833
|
+
};
|
|
14834
|
+
export type GraphStoreFullJswProjectAssociatedIncidentConnection = HasPageInfo & HasTotal & {
|
|
14835
|
+
__typename?: 'GraphStoreFullJswProjectAssociatedIncidentConnection';
|
|
14836
|
+
edges: Array<Maybe<GraphStoreFullJswProjectAssociatedIncidentEdge>>;
|
|
14837
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
14838
|
+
nodes: Array<Maybe<GraphStoreFullJswProjectAssociatedIncidentNode>>;
|
|
14839
|
+
pageInfo: PageInfo;
|
|
14840
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
14841
|
+
};
|
|
14842
|
+
export type GraphStoreFullJswProjectAssociatedIncidentEdge = {
|
|
14843
|
+
__typename?: 'GraphStoreFullJswProjectAssociatedIncidentEdge';
|
|
14844
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
14845
|
+
node: GraphStoreFullJswProjectAssociatedIncidentNode;
|
|
14846
|
+
};
|
|
14847
|
+
export type GraphStoreFullJswProjectAssociatedIncidentEndNode = Node & {
|
|
14848
|
+
__typename?: 'GraphStoreFullJswProjectAssociatedIncidentEndNode';
|
|
14849
|
+
id: Scalars['ID']['output'];
|
|
14850
|
+
};
|
|
14851
|
+
export type GraphStoreFullJswProjectAssociatedIncidentNode = Node & {
|
|
14852
|
+
__typename?: 'GraphStoreFullJswProjectAssociatedIncidentNode';
|
|
14853
|
+
createdAt: Scalars['DateTime']['output'];
|
|
14854
|
+
from: GraphStoreFullJswProjectAssociatedIncidentStartNode;
|
|
14855
|
+
id: Scalars['ID']['output'];
|
|
14856
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
14857
|
+
to: GraphStoreFullJswProjectAssociatedIncidentEndNode;
|
|
14858
|
+
};
|
|
14859
|
+
export type GraphStoreFullJswProjectAssociatedIncidentStartNode = Node & {
|
|
14860
|
+
__typename?: 'GraphStoreFullJswProjectAssociatedIncidentStartNode';
|
|
14861
|
+
id: Scalars['ID']['output'];
|
|
14862
|
+
};
|
|
14863
|
+
export type GraphStoreFullJswProjectSharesComponentWithJsmProjectConnection = HasPageInfo & HasTotal & {
|
|
14864
|
+
__typename?: 'GraphStoreFullJswProjectSharesComponentWithJsmProjectConnection';
|
|
14865
|
+
edges: Array<Maybe<GraphStoreFullJswProjectSharesComponentWithJsmProjectEdge>>;
|
|
14866
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
14867
|
+
nodes: Array<Maybe<GraphStoreFullJswProjectSharesComponentWithJsmProjectNode>>;
|
|
14868
|
+
pageInfo: PageInfo;
|
|
14869
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
14870
|
+
};
|
|
14871
|
+
export type GraphStoreFullJswProjectSharesComponentWithJsmProjectEdge = {
|
|
14872
|
+
__typename?: 'GraphStoreFullJswProjectSharesComponentWithJsmProjectEdge';
|
|
14873
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
14874
|
+
node: GraphStoreFullJswProjectSharesComponentWithJsmProjectNode;
|
|
14875
|
+
};
|
|
14876
|
+
export type GraphStoreFullJswProjectSharesComponentWithJsmProjectEndNode = Node & {
|
|
14877
|
+
__typename?: 'GraphStoreFullJswProjectSharesComponentWithJsmProjectEndNode';
|
|
14878
|
+
id: Scalars['ID']['output'];
|
|
14879
|
+
};
|
|
14880
|
+
export type GraphStoreFullJswProjectSharesComponentWithJsmProjectNode = Node & {
|
|
14881
|
+
__typename?: 'GraphStoreFullJswProjectSharesComponentWithJsmProjectNode';
|
|
14882
|
+
createdAt: Scalars['DateTime']['output'];
|
|
14883
|
+
from: GraphStoreFullJswProjectSharesComponentWithJsmProjectStartNode;
|
|
14884
|
+
id: Scalars['ID']['output'];
|
|
14885
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
14886
|
+
to: GraphStoreFullJswProjectSharesComponentWithJsmProjectEndNode;
|
|
14887
|
+
};
|
|
14888
|
+
export type GraphStoreFullJswProjectSharesComponentWithJsmProjectStartNode = Node & {
|
|
14889
|
+
__typename?: 'GraphStoreFullJswProjectSharesComponentWithJsmProjectStartNode';
|
|
14890
|
+
id: Scalars['ID']['output'];
|
|
14891
|
+
};
|
|
14892
|
+
export type GraphStoreFullLinkedProjectHasVersionConnection = HasPageInfo & HasTotal & {
|
|
14893
|
+
__typename?: 'GraphStoreFullLinkedProjectHasVersionConnection';
|
|
14894
|
+
edges: Array<Maybe<GraphStoreFullLinkedProjectHasVersionEdge>>;
|
|
14895
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
14896
|
+
nodes: Array<Maybe<GraphStoreFullLinkedProjectHasVersionNode>>;
|
|
14897
|
+
pageInfo: PageInfo;
|
|
14898
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
14899
|
+
};
|
|
14900
|
+
export type GraphStoreFullLinkedProjectHasVersionEdge = {
|
|
14901
|
+
__typename?: 'GraphStoreFullLinkedProjectHasVersionEdge';
|
|
14902
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
14903
|
+
node: GraphStoreFullLinkedProjectHasVersionNode;
|
|
14904
|
+
};
|
|
14905
|
+
export type GraphStoreFullLinkedProjectHasVersionEndNode = Node & {
|
|
14906
|
+
__typename?: 'GraphStoreFullLinkedProjectHasVersionEndNode';
|
|
14907
|
+
id: Scalars['ID']['output'];
|
|
14908
|
+
};
|
|
14909
|
+
export type GraphStoreFullLinkedProjectHasVersionNode = Node & {
|
|
14910
|
+
__typename?: 'GraphStoreFullLinkedProjectHasVersionNode';
|
|
14911
|
+
createdAt: Scalars['DateTime']['output'];
|
|
14912
|
+
from: GraphStoreFullLinkedProjectHasVersionStartNode;
|
|
14913
|
+
id: Scalars['ID']['output'];
|
|
14914
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
14915
|
+
to: GraphStoreFullLinkedProjectHasVersionEndNode;
|
|
14916
|
+
};
|
|
14917
|
+
export type GraphStoreFullLinkedProjectHasVersionStartNode = Node & {
|
|
14918
|
+
__typename?: 'GraphStoreFullLinkedProjectHasVersionStartNode';
|
|
14919
|
+
id: Scalars['ID']['output'];
|
|
14920
|
+
};
|
|
14921
|
+
export type GraphStoreFullOperationsContainerImpactedByIncidentConnection = HasPageInfo & {
|
|
14922
|
+
__typename?: 'GraphStoreFullOperationsContainerImpactedByIncidentConnection';
|
|
14923
|
+
edges: Array<Maybe<GraphStoreFullOperationsContainerImpactedByIncidentEdge>>;
|
|
14924
|
+
nodes: Array<Maybe<GraphStoreFullOperationsContainerImpactedByIncidentNode>>;
|
|
14925
|
+
pageInfo: PageInfo;
|
|
14926
|
+
};
|
|
14927
|
+
export type GraphStoreFullOperationsContainerImpactedByIncidentEdge = {
|
|
14928
|
+
__typename?: 'GraphStoreFullOperationsContainerImpactedByIncidentEdge';
|
|
14929
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
14930
|
+
node: GraphStoreFullOperationsContainerImpactedByIncidentNode;
|
|
14931
|
+
};
|
|
14932
|
+
export type GraphStoreFullOperationsContainerImpactedByIncidentEndNode = Node & {
|
|
14933
|
+
__typename?: 'GraphStoreFullOperationsContainerImpactedByIncidentEndNode';
|
|
14934
|
+
id: Scalars['ID']['output'];
|
|
14935
|
+
};
|
|
14936
|
+
export type GraphStoreFullOperationsContainerImpactedByIncidentNode = Node & {
|
|
14937
|
+
__typename?: 'GraphStoreFullOperationsContainerImpactedByIncidentNode';
|
|
14938
|
+
createdAt: Scalars['DateTime']['output'];
|
|
14939
|
+
from: GraphStoreFullOperationsContainerImpactedByIncidentStartNode;
|
|
14940
|
+
id: Scalars['ID']['output'];
|
|
14941
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
14942
|
+
to: GraphStoreFullOperationsContainerImpactedByIncidentEndNode;
|
|
14943
|
+
};
|
|
14944
|
+
export type GraphStoreFullOperationsContainerImpactedByIncidentStartNode = Node & {
|
|
14945
|
+
__typename?: 'GraphStoreFullOperationsContainerImpactedByIncidentStartNode';
|
|
14946
|
+
id: Scalars['ID']['output'];
|
|
14947
|
+
};
|
|
14948
|
+
export type GraphStoreFullOperationsContainerImprovedByActionItemConnection = HasPageInfo & {
|
|
14949
|
+
__typename?: 'GraphStoreFullOperationsContainerImprovedByActionItemConnection';
|
|
14950
|
+
edges: Array<Maybe<GraphStoreFullOperationsContainerImprovedByActionItemEdge>>;
|
|
14951
|
+
nodes: Array<Maybe<GraphStoreFullOperationsContainerImprovedByActionItemNode>>;
|
|
14952
|
+
pageInfo: PageInfo;
|
|
14953
|
+
};
|
|
14954
|
+
export type GraphStoreFullOperationsContainerImprovedByActionItemEdge = {
|
|
14955
|
+
__typename?: 'GraphStoreFullOperationsContainerImprovedByActionItemEdge';
|
|
14956
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
14957
|
+
node: GraphStoreFullOperationsContainerImprovedByActionItemNode;
|
|
14958
|
+
};
|
|
14959
|
+
export type GraphStoreFullOperationsContainerImprovedByActionItemEndNode = Node & {
|
|
14960
|
+
__typename?: 'GraphStoreFullOperationsContainerImprovedByActionItemEndNode';
|
|
14961
|
+
id: Scalars['ID']['output'];
|
|
14962
|
+
};
|
|
14963
|
+
export type GraphStoreFullOperationsContainerImprovedByActionItemNode = Node & {
|
|
14964
|
+
__typename?: 'GraphStoreFullOperationsContainerImprovedByActionItemNode';
|
|
14965
|
+
createdAt: Scalars['DateTime']['output'];
|
|
14966
|
+
from: GraphStoreFullOperationsContainerImprovedByActionItemStartNode;
|
|
14967
|
+
id: Scalars['ID']['output'];
|
|
14968
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
14969
|
+
to: GraphStoreFullOperationsContainerImprovedByActionItemEndNode;
|
|
14970
|
+
};
|
|
14971
|
+
export type GraphStoreFullOperationsContainerImprovedByActionItemStartNode = Node & {
|
|
14972
|
+
__typename?: 'GraphStoreFullOperationsContainerImprovedByActionItemStartNode';
|
|
14973
|
+
id: Scalars['ID']['output'];
|
|
14974
|
+
};
|
|
14975
|
+
export type GraphStoreFullParentDocumentHasChildDocumentConnection = HasPageInfo & {
|
|
14976
|
+
__typename?: 'GraphStoreFullParentDocumentHasChildDocumentConnection';
|
|
14977
|
+
edges: Array<Maybe<GraphStoreFullParentDocumentHasChildDocumentEdge>>;
|
|
14978
|
+
nodes: Array<Maybe<GraphStoreFullParentDocumentHasChildDocumentNode>>;
|
|
14979
|
+
pageInfo: PageInfo;
|
|
14980
|
+
};
|
|
14981
|
+
export type GraphStoreFullParentDocumentHasChildDocumentEdge = {
|
|
14982
|
+
__typename?: 'GraphStoreFullParentDocumentHasChildDocumentEdge';
|
|
14983
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
14984
|
+
node: GraphStoreFullParentDocumentHasChildDocumentNode;
|
|
14985
|
+
};
|
|
14986
|
+
export type GraphStoreFullParentDocumentHasChildDocumentEndNode = Node & {
|
|
14987
|
+
__typename?: 'GraphStoreFullParentDocumentHasChildDocumentEndNode';
|
|
14988
|
+
id: Scalars['ID']['output'];
|
|
14989
|
+
};
|
|
14990
|
+
export type GraphStoreFullParentDocumentHasChildDocumentNode = Node & {
|
|
14991
|
+
__typename?: 'GraphStoreFullParentDocumentHasChildDocumentNode';
|
|
14992
|
+
createdAt: Scalars['DateTime']['output'];
|
|
14993
|
+
from: GraphStoreFullParentDocumentHasChildDocumentStartNode;
|
|
14994
|
+
id: Scalars['ID']['output'];
|
|
14995
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
14996
|
+
to: GraphStoreFullParentDocumentHasChildDocumentEndNode;
|
|
14997
|
+
};
|
|
14998
|
+
export type GraphStoreFullParentDocumentHasChildDocumentStartNode = Node & {
|
|
14999
|
+
__typename?: 'GraphStoreFullParentDocumentHasChildDocumentStartNode';
|
|
15000
|
+
id: Scalars['ID']['output'];
|
|
15001
|
+
};
|
|
15002
|
+
export type GraphStoreFullParentIssueHasChildIssueConnection = HasPageInfo & {
|
|
15003
|
+
__typename?: 'GraphStoreFullParentIssueHasChildIssueConnection';
|
|
15004
|
+
edges: Array<Maybe<GraphStoreFullParentIssueHasChildIssueEdge>>;
|
|
15005
|
+
nodes: Array<Maybe<GraphStoreFullParentIssueHasChildIssueNode>>;
|
|
15006
|
+
pageInfo: PageInfo;
|
|
15007
|
+
};
|
|
15008
|
+
export type GraphStoreFullParentIssueHasChildIssueEdge = {
|
|
15009
|
+
__typename?: 'GraphStoreFullParentIssueHasChildIssueEdge';
|
|
15010
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
15011
|
+
node: GraphStoreFullParentIssueHasChildIssueNode;
|
|
15012
|
+
};
|
|
15013
|
+
export type GraphStoreFullParentIssueHasChildIssueEndNode = Node & {
|
|
15014
|
+
__typename?: 'GraphStoreFullParentIssueHasChildIssueEndNode';
|
|
15015
|
+
data?: Maybe<GraphStoreFullParentIssueHasChildIssueEndUnion>;
|
|
15016
|
+
id: Scalars['ID']['output'];
|
|
15017
|
+
};
|
|
15018
|
+
export type GraphStoreFullParentIssueHasChildIssueEndUnion = JiraIssue;
|
|
15019
|
+
export type GraphStoreFullParentIssueHasChildIssueNode = Node & {
|
|
15020
|
+
__typename?: 'GraphStoreFullParentIssueHasChildIssueNode';
|
|
15021
|
+
createdAt: Scalars['DateTime']['output'];
|
|
15022
|
+
from: GraphStoreFullParentIssueHasChildIssueStartNode;
|
|
15023
|
+
id: Scalars['ID']['output'];
|
|
15024
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
15025
|
+
to: GraphStoreFullParentIssueHasChildIssueEndNode;
|
|
15026
|
+
};
|
|
15027
|
+
export type GraphStoreFullParentIssueHasChildIssueStartNode = Node & {
|
|
15028
|
+
__typename?: 'GraphStoreFullParentIssueHasChildIssueStartNode';
|
|
15029
|
+
data?: Maybe<GraphStoreFullParentIssueHasChildIssueStartUnion>;
|
|
15030
|
+
id: Scalars['ID']['output'];
|
|
15031
|
+
};
|
|
15032
|
+
export type GraphStoreFullParentIssueHasChildIssueStartUnion = JiraIssue;
|
|
15033
|
+
export type GraphStoreFullPrInRepoConnection = HasPageInfo & {
|
|
15034
|
+
__typename?: 'GraphStoreFullPrInRepoConnection';
|
|
15035
|
+
edges: Array<Maybe<GraphStoreFullPrInRepoEdge>>;
|
|
15036
|
+
nodes: Array<Maybe<GraphStoreFullPrInRepoNode>>;
|
|
15037
|
+
pageInfo: PageInfo;
|
|
15038
|
+
};
|
|
15039
|
+
export type GraphStoreFullPrInRepoEdge = {
|
|
15040
|
+
__typename?: 'GraphStoreFullPrInRepoEdge';
|
|
15041
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
15042
|
+
node: GraphStoreFullPrInRepoNode;
|
|
15043
|
+
};
|
|
15044
|
+
export type GraphStoreFullPrInRepoEndNode = Node & {
|
|
15045
|
+
__typename?: 'GraphStoreFullPrInRepoEndNode';
|
|
15046
|
+
id: Scalars['ID']['output'];
|
|
15047
|
+
};
|
|
15048
|
+
export type GraphStoreFullPrInRepoNode = Node & {
|
|
15049
|
+
__typename?: 'GraphStoreFullPrInRepoNode';
|
|
15050
|
+
createdAt: Scalars['DateTime']['output'];
|
|
15051
|
+
from: GraphStoreFullPrInRepoStartNode;
|
|
15052
|
+
id: Scalars['ID']['output'];
|
|
15053
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
15054
|
+
to: GraphStoreFullPrInRepoEndNode;
|
|
15055
|
+
};
|
|
15056
|
+
export type GraphStoreFullPrInRepoStartNode = Node & {
|
|
15057
|
+
__typename?: 'GraphStoreFullPrInRepoStartNode';
|
|
15058
|
+
id: Scalars['ID']['output'];
|
|
15059
|
+
};
|
|
15060
|
+
export type GraphStoreFullProjectAssociatedBranchConnection = HasPageInfo & HasTotal & {
|
|
15061
|
+
__typename?: 'GraphStoreFullProjectAssociatedBranchConnection';
|
|
15062
|
+
edges: Array<Maybe<GraphStoreFullProjectAssociatedBranchEdge>>;
|
|
15063
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
15064
|
+
nodes: Array<Maybe<GraphStoreFullProjectAssociatedBranchNode>>;
|
|
15065
|
+
pageInfo: PageInfo;
|
|
15066
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
15067
|
+
};
|
|
15068
|
+
export type GraphStoreFullProjectAssociatedBranchEdge = {
|
|
15069
|
+
__typename?: 'GraphStoreFullProjectAssociatedBranchEdge';
|
|
15070
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
15071
|
+
node: GraphStoreFullProjectAssociatedBranchNode;
|
|
15072
|
+
};
|
|
15073
|
+
export type GraphStoreFullProjectAssociatedBranchEndNode = Node & {
|
|
15074
|
+
__typename?: 'GraphStoreFullProjectAssociatedBranchEndNode';
|
|
15075
|
+
id: Scalars['ID']['output'];
|
|
15076
|
+
};
|
|
15077
|
+
export type GraphStoreFullProjectAssociatedBranchNode = Node & {
|
|
15078
|
+
__typename?: 'GraphStoreFullProjectAssociatedBranchNode';
|
|
15079
|
+
createdAt: Scalars['DateTime']['output'];
|
|
15080
|
+
from: GraphStoreFullProjectAssociatedBranchStartNode;
|
|
15081
|
+
id: Scalars['ID']['output'];
|
|
15082
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
15083
|
+
to: GraphStoreFullProjectAssociatedBranchEndNode;
|
|
15084
|
+
};
|
|
15085
|
+
export type GraphStoreFullProjectAssociatedBranchStartNode = Node & {
|
|
15086
|
+
__typename?: 'GraphStoreFullProjectAssociatedBranchStartNode';
|
|
15087
|
+
id: Scalars['ID']['output'];
|
|
15088
|
+
};
|
|
15089
|
+
export type GraphStoreFullProjectAssociatedBuildConnection = HasPageInfo & HasTotal & {
|
|
15090
|
+
__typename?: 'GraphStoreFullProjectAssociatedBuildConnection';
|
|
15091
|
+
edges: Array<Maybe<GraphStoreFullProjectAssociatedBuildEdge>>;
|
|
15092
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
15093
|
+
nodes: Array<Maybe<GraphStoreFullProjectAssociatedBuildNode>>;
|
|
15094
|
+
pageInfo: PageInfo;
|
|
15095
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
15096
|
+
};
|
|
15097
|
+
export type GraphStoreFullProjectAssociatedBuildEdge = {
|
|
15098
|
+
__typename?: 'GraphStoreFullProjectAssociatedBuildEdge';
|
|
15099
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
15100
|
+
node: GraphStoreFullProjectAssociatedBuildNode;
|
|
15101
|
+
};
|
|
15102
|
+
export type GraphStoreFullProjectAssociatedBuildEndNode = Node & {
|
|
15103
|
+
__typename?: 'GraphStoreFullProjectAssociatedBuildEndNode';
|
|
15104
|
+
id: Scalars['ID']['output'];
|
|
15105
|
+
};
|
|
15106
|
+
export type GraphStoreFullProjectAssociatedBuildNode = Node & {
|
|
15107
|
+
__typename?: 'GraphStoreFullProjectAssociatedBuildNode';
|
|
15108
|
+
createdAt: Scalars['DateTime']['output'];
|
|
15109
|
+
from: GraphStoreFullProjectAssociatedBuildStartNode;
|
|
15110
|
+
id: Scalars['ID']['output'];
|
|
15111
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
15112
|
+
to: GraphStoreFullProjectAssociatedBuildEndNode;
|
|
15113
|
+
};
|
|
15114
|
+
export type GraphStoreFullProjectAssociatedBuildStartNode = Node & {
|
|
15115
|
+
__typename?: 'GraphStoreFullProjectAssociatedBuildStartNode';
|
|
15116
|
+
id: Scalars['ID']['output'];
|
|
15117
|
+
};
|
|
15118
|
+
export type GraphStoreFullProjectAssociatedDeploymentConnection = HasPageInfo & HasTotal & {
|
|
15119
|
+
__typename?: 'GraphStoreFullProjectAssociatedDeploymentConnection';
|
|
15120
|
+
edges: Array<Maybe<GraphStoreFullProjectAssociatedDeploymentEdge>>;
|
|
15121
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
15122
|
+
nodes: Array<Maybe<GraphStoreFullProjectAssociatedDeploymentNode>>;
|
|
15123
|
+
pageInfo: PageInfo;
|
|
15124
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
15125
|
+
};
|
|
15126
|
+
export type GraphStoreFullProjectAssociatedDeploymentEdge = {
|
|
15127
|
+
__typename?: 'GraphStoreFullProjectAssociatedDeploymentEdge';
|
|
15128
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
15129
|
+
node: GraphStoreFullProjectAssociatedDeploymentNode;
|
|
15130
|
+
};
|
|
15131
|
+
export type GraphStoreFullProjectAssociatedDeploymentEndNode = Node & {
|
|
15132
|
+
__typename?: 'GraphStoreFullProjectAssociatedDeploymentEndNode';
|
|
15133
|
+
id: Scalars['ID']['output'];
|
|
15134
|
+
};
|
|
15135
|
+
export type GraphStoreFullProjectAssociatedDeploymentNode = Node & {
|
|
15136
|
+
__typename?: 'GraphStoreFullProjectAssociatedDeploymentNode';
|
|
15137
|
+
createdAt: Scalars['DateTime']['output'];
|
|
15138
|
+
from: GraphStoreFullProjectAssociatedDeploymentStartNode;
|
|
15139
|
+
id: Scalars['ID']['output'];
|
|
15140
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
15141
|
+
to: GraphStoreFullProjectAssociatedDeploymentEndNode;
|
|
15142
|
+
};
|
|
15143
|
+
export type GraphStoreFullProjectAssociatedDeploymentStartNode = Node & {
|
|
15144
|
+
__typename?: 'GraphStoreFullProjectAssociatedDeploymentStartNode';
|
|
15145
|
+
id: Scalars['ID']['output'];
|
|
15146
|
+
};
|
|
15147
|
+
export type GraphStoreFullProjectAssociatedFeatureFlagConnection = HasPageInfo & HasTotal & {
|
|
15148
|
+
__typename?: 'GraphStoreFullProjectAssociatedFeatureFlagConnection';
|
|
15149
|
+
edges: Array<Maybe<GraphStoreFullProjectAssociatedFeatureFlagEdge>>;
|
|
15150
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
15151
|
+
nodes: Array<Maybe<GraphStoreFullProjectAssociatedFeatureFlagNode>>;
|
|
15152
|
+
pageInfo: PageInfo;
|
|
15153
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
15154
|
+
};
|
|
15155
|
+
export type GraphStoreFullProjectAssociatedFeatureFlagEdge = {
|
|
15156
|
+
__typename?: 'GraphStoreFullProjectAssociatedFeatureFlagEdge';
|
|
15157
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
15158
|
+
node: GraphStoreFullProjectAssociatedFeatureFlagNode;
|
|
15159
|
+
};
|
|
15160
|
+
export type GraphStoreFullProjectAssociatedFeatureFlagEndNode = Node & {
|
|
15161
|
+
__typename?: 'GraphStoreFullProjectAssociatedFeatureFlagEndNode';
|
|
15162
|
+
id: Scalars['ID']['output'];
|
|
15163
|
+
};
|
|
15164
|
+
export type GraphStoreFullProjectAssociatedFeatureFlagNode = Node & {
|
|
15165
|
+
__typename?: 'GraphStoreFullProjectAssociatedFeatureFlagNode';
|
|
15166
|
+
createdAt: Scalars['DateTime']['output'];
|
|
15167
|
+
from: GraphStoreFullProjectAssociatedFeatureFlagStartNode;
|
|
15168
|
+
id: Scalars['ID']['output'];
|
|
15169
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
15170
|
+
to: GraphStoreFullProjectAssociatedFeatureFlagEndNode;
|
|
15171
|
+
};
|
|
15172
|
+
export type GraphStoreFullProjectAssociatedFeatureFlagStartNode = Node & {
|
|
15173
|
+
__typename?: 'GraphStoreFullProjectAssociatedFeatureFlagStartNode';
|
|
15174
|
+
id: Scalars['ID']['output'];
|
|
15175
|
+
};
|
|
15176
|
+
export type GraphStoreFullProjectAssociatedIncidentConnection = HasPageInfo & HasTotal & {
|
|
15177
|
+
__typename?: 'GraphStoreFullProjectAssociatedIncidentConnection';
|
|
15178
|
+
edges: Array<Maybe<GraphStoreFullProjectAssociatedIncidentEdge>>;
|
|
15179
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
15180
|
+
nodes: Array<Maybe<GraphStoreFullProjectAssociatedIncidentNode>>;
|
|
15181
|
+
pageInfo: PageInfo;
|
|
15182
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
15183
|
+
};
|
|
15184
|
+
export type GraphStoreFullProjectAssociatedIncidentEdge = {
|
|
15185
|
+
__typename?: 'GraphStoreFullProjectAssociatedIncidentEdge';
|
|
15186
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
15187
|
+
node: GraphStoreFullProjectAssociatedIncidentNode;
|
|
15188
|
+
};
|
|
15189
|
+
export type GraphStoreFullProjectAssociatedIncidentEndNode = Node & {
|
|
15190
|
+
__typename?: 'GraphStoreFullProjectAssociatedIncidentEndNode';
|
|
15191
|
+
id: Scalars['ID']['output'];
|
|
15192
|
+
};
|
|
15193
|
+
export type GraphStoreFullProjectAssociatedIncidentNode = Node & {
|
|
15194
|
+
__typename?: 'GraphStoreFullProjectAssociatedIncidentNode';
|
|
15195
|
+
createdAt: Scalars['DateTime']['output'];
|
|
15196
|
+
from: GraphStoreFullProjectAssociatedIncidentStartNode;
|
|
15197
|
+
id: Scalars['ID']['output'];
|
|
15198
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
15199
|
+
to: GraphStoreFullProjectAssociatedIncidentEndNode;
|
|
15200
|
+
};
|
|
15201
|
+
export type GraphStoreFullProjectAssociatedIncidentStartNode = Node & {
|
|
15202
|
+
__typename?: 'GraphStoreFullProjectAssociatedIncidentStartNode';
|
|
15203
|
+
id: Scalars['ID']['output'];
|
|
15204
|
+
};
|
|
15205
|
+
export type GraphStoreFullProjectAssociatedOpsgenieTeamConnection = HasPageInfo & HasTotal & {
|
|
15206
|
+
__typename?: 'GraphStoreFullProjectAssociatedOpsgenieTeamConnection';
|
|
15207
|
+
edges: Array<Maybe<GraphStoreFullProjectAssociatedOpsgenieTeamEdge>>;
|
|
15208
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
15209
|
+
nodes: Array<Maybe<GraphStoreFullProjectAssociatedOpsgenieTeamNode>>;
|
|
15210
|
+
pageInfo: PageInfo;
|
|
15211
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
15212
|
+
};
|
|
15213
|
+
export type GraphStoreFullProjectAssociatedOpsgenieTeamEdge = {
|
|
15214
|
+
__typename?: 'GraphStoreFullProjectAssociatedOpsgenieTeamEdge';
|
|
15215
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
15216
|
+
node: GraphStoreFullProjectAssociatedOpsgenieTeamNode;
|
|
15217
|
+
};
|
|
15218
|
+
export type GraphStoreFullProjectAssociatedOpsgenieTeamEndNode = Node & {
|
|
15219
|
+
__typename?: 'GraphStoreFullProjectAssociatedOpsgenieTeamEndNode';
|
|
15220
|
+
id: Scalars['ID']['output'];
|
|
15221
|
+
};
|
|
15222
|
+
export type GraphStoreFullProjectAssociatedOpsgenieTeamNode = Node & {
|
|
15223
|
+
__typename?: 'GraphStoreFullProjectAssociatedOpsgenieTeamNode';
|
|
15224
|
+
createdAt: Scalars['DateTime']['output'];
|
|
15225
|
+
from: GraphStoreFullProjectAssociatedOpsgenieTeamStartNode;
|
|
15226
|
+
id: Scalars['ID']['output'];
|
|
15227
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
15228
|
+
to: GraphStoreFullProjectAssociatedOpsgenieTeamEndNode;
|
|
15229
|
+
};
|
|
15230
|
+
export type GraphStoreFullProjectAssociatedOpsgenieTeamStartNode = Node & {
|
|
15231
|
+
__typename?: 'GraphStoreFullProjectAssociatedOpsgenieTeamStartNode';
|
|
15232
|
+
id: Scalars['ID']['output'];
|
|
15233
|
+
};
|
|
15234
|
+
export type GraphStoreFullProjectAssociatedPrConnection = HasPageInfo & HasTotal & {
|
|
15235
|
+
__typename?: 'GraphStoreFullProjectAssociatedPrConnection';
|
|
15236
|
+
edges: Array<Maybe<GraphStoreFullProjectAssociatedPrEdge>>;
|
|
15237
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
15238
|
+
nodes: Array<Maybe<GraphStoreFullProjectAssociatedPrNode>>;
|
|
15239
|
+
pageInfo: PageInfo;
|
|
15240
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
15241
|
+
};
|
|
15242
|
+
export type GraphStoreFullProjectAssociatedPrEdge = {
|
|
15243
|
+
__typename?: 'GraphStoreFullProjectAssociatedPrEdge';
|
|
15244
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
15245
|
+
node: GraphStoreFullProjectAssociatedPrNode;
|
|
15246
|
+
};
|
|
15247
|
+
export type GraphStoreFullProjectAssociatedPrEndNode = Node & {
|
|
15248
|
+
__typename?: 'GraphStoreFullProjectAssociatedPrEndNode';
|
|
15249
|
+
id: Scalars['ID']['output'];
|
|
15250
|
+
};
|
|
15251
|
+
export type GraphStoreFullProjectAssociatedPrNode = Node & {
|
|
15252
|
+
__typename?: 'GraphStoreFullProjectAssociatedPrNode';
|
|
15253
|
+
createdAt: Scalars['DateTime']['output'];
|
|
15254
|
+
from: GraphStoreFullProjectAssociatedPrStartNode;
|
|
15255
|
+
id: Scalars['ID']['output'];
|
|
15256
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
15257
|
+
to: GraphStoreFullProjectAssociatedPrEndNode;
|
|
15258
|
+
};
|
|
15259
|
+
export type GraphStoreFullProjectAssociatedPrStartNode = Node & {
|
|
15260
|
+
__typename?: 'GraphStoreFullProjectAssociatedPrStartNode';
|
|
15261
|
+
id: Scalars['ID']['output'];
|
|
15262
|
+
};
|
|
15263
|
+
export type GraphStoreFullProjectAssociatedRepoConnection = HasPageInfo & HasTotal & {
|
|
15264
|
+
__typename?: 'GraphStoreFullProjectAssociatedRepoConnection';
|
|
15265
|
+
edges: Array<Maybe<GraphStoreFullProjectAssociatedRepoEdge>>;
|
|
15266
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
15267
|
+
nodes: Array<Maybe<GraphStoreFullProjectAssociatedRepoNode>>;
|
|
15268
|
+
pageInfo: PageInfo;
|
|
15269
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
15270
|
+
};
|
|
15271
|
+
export type GraphStoreFullProjectAssociatedRepoEdge = {
|
|
15272
|
+
__typename?: 'GraphStoreFullProjectAssociatedRepoEdge';
|
|
15273
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
15274
|
+
node: GraphStoreFullProjectAssociatedRepoNode;
|
|
15275
|
+
};
|
|
15276
|
+
export type GraphStoreFullProjectAssociatedRepoEndNode = Node & {
|
|
15277
|
+
__typename?: 'GraphStoreFullProjectAssociatedRepoEndNode';
|
|
15278
|
+
id: Scalars['ID']['output'];
|
|
15279
|
+
};
|
|
15280
|
+
export type GraphStoreFullProjectAssociatedRepoNode = Node & {
|
|
15281
|
+
__typename?: 'GraphStoreFullProjectAssociatedRepoNode';
|
|
15282
|
+
createdAt: Scalars['DateTime']['output'];
|
|
15283
|
+
from: GraphStoreFullProjectAssociatedRepoStartNode;
|
|
15284
|
+
id: Scalars['ID']['output'];
|
|
15285
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
15286
|
+
to: GraphStoreFullProjectAssociatedRepoEndNode;
|
|
15287
|
+
};
|
|
15288
|
+
export type GraphStoreFullProjectAssociatedRepoStartNode = Node & {
|
|
15289
|
+
__typename?: 'GraphStoreFullProjectAssociatedRepoStartNode';
|
|
15290
|
+
id: Scalars['ID']['output'];
|
|
15291
|
+
};
|
|
15292
|
+
export type GraphStoreFullProjectAssociatedServiceConnection = HasPageInfo & HasTotal & {
|
|
15293
|
+
__typename?: 'GraphStoreFullProjectAssociatedServiceConnection';
|
|
15294
|
+
edges: Array<Maybe<GraphStoreFullProjectAssociatedServiceEdge>>;
|
|
15295
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
15296
|
+
nodes: Array<Maybe<GraphStoreFullProjectAssociatedServiceNode>>;
|
|
15297
|
+
pageInfo: PageInfo;
|
|
15298
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
15299
|
+
};
|
|
15300
|
+
export type GraphStoreFullProjectAssociatedServiceEdge = {
|
|
15301
|
+
__typename?: 'GraphStoreFullProjectAssociatedServiceEdge';
|
|
15302
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
15303
|
+
node: GraphStoreFullProjectAssociatedServiceNode;
|
|
15304
|
+
};
|
|
15305
|
+
export type GraphStoreFullProjectAssociatedServiceEndNode = Node & {
|
|
15306
|
+
__typename?: 'GraphStoreFullProjectAssociatedServiceEndNode';
|
|
15307
|
+
id: Scalars['ID']['output'];
|
|
15308
|
+
};
|
|
15309
|
+
export type GraphStoreFullProjectAssociatedServiceNode = Node & {
|
|
15310
|
+
__typename?: 'GraphStoreFullProjectAssociatedServiceNode';
|
|
15311
|
+
createdAt: Scalars['DateTime']['output'];
|
|
15312
|
+
from: GraphStoreFullProjectAssociatedServiceStartNode;
|
|
15313
|
+
id: Scalars['ID']['output'];
|
|
15314
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
15315
|
+
to: GraphStoreFullProjectAssociatedServiceEndNode;
|
|
15316
|
+
};
|
|
15317
|
+
export type GraphStoreFullProjectAssociatedServiceStartNode = Node & {
|
|
15318
|
+
__typename?: 'GraphStoreFullProjectAssociatedServiceStartNode';
|
|
15319
|
+
id: Scalars['ID']['output'];
|
|
15320
|
+
};
|
|
15321
|
+
export type GraphStoreFullProjectAssociatedToIncidentConnection = HasPageInfo & HasTotal & {
|
|
15322
|
+
__typename?: 'GraphStoreFullProjectAssociatedToIncidentConnection';
|
|
15323
|
+
edges: Array<Maybe<GraphStoreFullProjectAssociatedToIncidentEdge>>;
|
|
15324
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
15325
|
+
nodes: Array<Maybe<GraphStoreFullProjectAssociatedToIncidentNode>>;
|
|
15326
|
+
pageInfo: PageInfo;
|
|
15327
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
15328
|
+
};
|
|
15329
|
+
export type GraphStoreFullProjectAssociatedToIncidentEdge = {
|
|
15330
|
+
__typename?: 'GraphStoreFullProjectAssociatedToIncidentEdge';
|
|
15331
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
15332
|
+
node: GraphStoreFullProjectAssociatedToIncidentNode;
|
|
15333
|
+
};
|
|
15334
|
+
export type GraphStoreFullProjectAssociatedToIncidentEndNode = Node & {
|
|
15335
|
+
__typename?: 'GraphStoreFullProjectAssociatedToIncidentEndNode';
|
|
15336
|
+
id: Scalars['ID']['output'];
|
|
15337
|
+
};
|
|
15338
|
+
export type GraphStoreFullProjectAssociatedToIncidentNode = Node & {
|
|
15339
|
+
__typename?: 'GraphStoreFullProjectAssociatedToIncidentNode';
|
|
15340
|
+
createdAt: Scalars['DateTime']['output'];
|
|
15341
|
+
from: GraphStoreFullProjectAssociatedToIncidentStartNode;
|
|
15342
|
+
id: Scalars['ID']['output'];
|
|
15343
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
15344
|
+
to: GraphStoreFullProjectAssociatedToIncidentEndNode;
|
|
15345
|
+
};
|
|
15346
|
+
export type GraphStoreFullProjectAssociatedToIncidentStartNode = Node & {
|
|
15347
|
+
__typename?: 'GraphStoreFullProjectAssociatedToIncidentStartNode';
|
|
15348
|
+
id: Scalars['ID']['output'];
|
|
15349
|
+
};
|
|
15350
|
+
export type GraphStoreFullProjectAssociatedToOperationsContainerConnection = HasPageInfo & HasTotal & {
|
|
15351
|
+
__typename?: 'GraphStoreFullProjectAssociatedToOperationsContainerConnection';
|
|
15352
|
+
edges: Array<Maybe<GraphStoreFullProjectAssociatedToOperationsContainerEdge>>;
|
|
15353
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
15354
|
+
nodes: Array<Maybe<GraphStoreFullProjectAssociatedToOperationsContainerNode>>;
|
|
15355
|
+
pageInfo: PageInfo;
|
|
15356
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
15357
|
+
};
|
|
15358
|
+
export type GraphStoreFullProjectAssociatedToOperationsContainerEdge = {
|
|
15359
|
+
__typename?: 'GraphStoreFullProjectAssociatedToOperationsContainerEdge';
|
|
15360
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
15361
|
+
node: GraphStoreFullProjectAssociatedToOperationsContainerNode;
|
|
15362
|
+
};
|
|
15363
|
+
export type GraphStoreFullProjectAssociatedToOperationsContainerEndNode = Node & {
|
|
15364
|
+
__typename?: 'GraphStoreFullProjectAssociatedToOperationsContainerEndNode';
|
|
15365
|
+
id: Scalars['ID']['output'];
|
|
15366
|
+
};
|
|
15367
|
+
export type GraphStoreFullProjectAssociatedToOperationsContainerNode = Node & {
|
|
15368
|
+
__typename?: 'GraphStoreFullProjectAssociatedToOperationsContainerNode';
|
|
15369
|
+
createdAt: Scalars['DateTime']['output'];
|
|
15370
|
+
from: GraphStoreFullProjectAssociatedToOperationsContainerStartNode;
|
|
15371
|
+
id: Scalars['ID']['output'];
|
|
15372
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
15373
|
+
to: GraphStoreFullProjectAssociatedToOperationsContainerEndNode;
|
|
15374
|
+
};
|
|
15375
|
+
export type GraphStoreFullProjectAssociatedToOperationsContainerStartNode = Node & {
|
|
15376
|
+
__typename?: 'GraphStoreFullProjectAssociatedToOperationsContainerStartNode';
|
|
15377
|
+
id: Scalars['ID']['output'];
|
|
15378
|
+
};
|
|
15379
|
+
export type GraphStoreFullProjectAssociatedToSecurityContainerConnection = HasPageInfo & HasTotal & {
|
|
15380
|
+
__typename?: 'GraphStoreFullProjectAssociatedToSecurityContainerConnection';
|
|
15381
|
+
edges: Array<Maybe<GraphStoreFullProjectAssociatedToSecurityContainerEdge>>;
|
|
15382
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
15383
|
+
nodes: Array<Maybe<GraphStoreFullProjectAssociatedToSecurityContainerNode>>;
|
|
15384
|
+
pageInfo: PageInfo;
|
|
15385
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
15386
|
+
};
|
|
15387
|
+
export type GraphStoreFullProjectAssociatedToSecurityContainerEdge = {
|
|
15388
|
+
__typename?: 'GraphStoreFullProjectAssociatedToSecurityContainerEdge';
|
|
15389
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
15390
|
+
node: GraphStoreFullProjectAssociatedToSecurityContainerNode;
|
|
15391
|
+
};
|
|
15392
|
+
export type GraphStoreFullProjectAssociatedToSecurityContainerEndNode = Node & {
|
|
15393
|
+
__typename?: 'GraphStoreFullProjectAssociatedToSecurityContainerEndNode';
|
|
15394
|
+
id: Scalars['ID']['output'];
|
|
15395
|
+
};
|
|
15396
|
+
export type GraphStoreFullProjectAssociatedToSecurityContainerNode = Node & {
|
|
15397
|
+
__typename?: 'GraphStoreFullProjectAssociatedToSecurityContainerNode';
|
|
15398
|
+
createdAt: Scalars['DateTime']['output'];
|
|
15399
|
+
from: GraphStoreFullProjectAssociatedToSecurityContainerStartNode;
|
|
15400
|
+
id: Scalars['ID']['output'];
|
|
15401
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
15402
|
+
to: GraphStoreFullProjectAssociatedToSecurityContainerEndNode;
|
|
15403
|
+
};
|
|
15404
|
+
export type GraphStoreFullProjectAssociatedToSecurityContainerStartNode = Node & {
|
|
15405
|
+
__typename?: 'GraphStoreFullProjectAssociatedToSecurityContainerStartNode';
|
|
15406
|
+
id: Scalars['ID']['output'];
|
|
15407
|
+
};
|
|
15408
|
+
export type GraphStoreFullProjectAssociatedVulnerabilityConnection = HasPageInfo & HasTotal & {
|
|
15409
|
+
__typename?: 'GraphStoreFullProjectAssociatedVulnerabilityConnection';
|
|
15410
|
+
edges: Array<Maybe<GraphStoreFullProjectAssociatedVulnerabilityEdge>>;
|
|
15411
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
15412
|
+
nodes: Array<Maybe<GraphStoreFullProjectAssociatedVulnerabilityNode>>;
|
|
15413
|
+
pageInfo: PageInfo;
|
|
15414
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
15415
|
+
};
|
|
15416
|
+
export type GraphStoreFullProjectAssociatedVulnerabilityEdge = {
|
|
15417
|
+
__typename?: 'GraphStoreFullProjectAssociatedVulnerabilityEdge';
|
|
15418
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
15419
|
+
node: GraphStoreFullProjectAssociatedVulnerabilityNode;
|
|
15420
|
+
};
|
|
15421
|
+
export type GraphStoreFullProjectAssociatedVulnerabilityEndNode = Node & {
|
|
15422
|
+
__typename?: 'GraphStoreFullProjectAssociatedVulnerabilityEndNode';
|
|
15423
|
+
id: Scalars['ID']['output'];
|
|
15424
|
+
};
|
|
15425
|
+
export type GraphStoreFullProjectAssociatedVulnerabilityNode = Node & {
|
|
15426
|
+
__typename?: 'GraphStoreFullProjectAssociatedVulnerabilityNode';
|
|
15427
|
+
createdAt: Scalars['DateTime']['output'];
|
|
15428
|
+
from: GraphStoreFullProjectAssociatedVulnerabilityStartNode;
|
|
15429
|
+
id: Scalars['ID']['output'];
|
|
15430
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
15431
|
+
to: GraphStoreFullProjectAssociatedVulnerabilityEndNode;
|
|
15432
|
+
};
|
|
15433
|
+
export type GraphStoreFullProjectAssociatedVulnerabilityStartNode = Node & {
|
|
15434
|
+
__typename?: 'GraphStoreFullProjectAssociatedVulnerabilityStartNode';
|
|
15435
|
+
id: Scalars['ID']['output'];
|
|
15436
|
+
};
|
|
15437
|
+
export type GraphStoreFullProjectDisassociatedRepoConnection = HasPageInfo & HasTotal & {
|
|
15438
|
+
__typename?: 'GraphStoreFullProjectDisassociatedRepoConnection';
|
|
15439
|
+
edges: Array<Maybe<GraphStoreFullProjectDisassociatedRepoEdge>>;
|
|
15440
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
15441
|
+
nodes: Array<Maybe<GraphStoreFullProjectDisassociatedRepoNode>>;
|
|
15442
|
+
pageInfo: PageInfo;
|
|
15443
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
15444
|
+
};
|
|
15445
|
+
export type GraphStoreFullProjectDisassociatedRepoEdge = {
|
|
15446
|
+
__typename?: 'GraphStoreFullProjectDisassociatedRepoEdge';
|
|
15447
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
15448
|
+
node: GraphStoreFullProjectDisassociatedRepoNode;
|
|
15449
|
+
};
|
|
15450
|
+
export type GraphStoreFullProjectDisassociatedRepoEndNode = Node & {
|
|
15451
|
+
__typename?: 'GraphStoreFullProjectDisassociatedRepoEndNode';
|
|
15452
|
+
id: Scalars['ID']['output'];
|
|
15453
|
+
};
|
|
15454
|
+
export type GraphStoreFullProjectDisassociatedRepoNode = Node & {
|
|
15455
|
+
__typename?: 'GraphStoreFullProjectDisassociatedRepoNode';
|
|
15456
|
+
createdAt: Scalars['DateTime']['output'];
|
|
15457
|
+
from: GraphStoreFullProjectDisassociatedRepoStartNode;
|
|
15458
|
+
id: Scalars['ID']['output'];
|
|
15459
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
15460
|
+
to: GraphStoreFullProjectDisassociatedRepoEndNode;
|
|
15461
|
+
};
|
|
15462
|
+
export type GraphStoreFullProjectDisassociatedRepoStartNode = Node & {
|
|
15463
|
+
__typename?: 'GraphStoreFullProjectDisassociatedRepoStartNode';
|
|
15464
|
+
id: Scalars['ID']['output'];
|
|
15465
|
+
};
|
|
15466
|
+
export type GraphStoreFullProjectDocumentationEntityConnection = HasPageInfo & HasTotal & {
|
|
15467
|
+
__typename?: 'GraphStoreFullProjectDocumentationEntityConnection';
|
|
15468
|
+
edges: Array<Maybe<GraphStoreFullProjectDocumentationEntityEdge>>;
|
|
15469
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
15470
|
+
nodes: Array<Maybe<GraphStoreFullProjectDocumentationEntityNode>>;
|
|
15471
|
+
pageInfo: PageInfo;
|
|
15472
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
15473
|
+
};
|
|
15474
|
+
export type GraphStoreFullProjectDocumentationEntityEdge = {
|
|
15475
|
+
__typename?: 'GraphStoreFullProjectDocumentationEntityEdge';
|
|
15476
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
15477
|
+
node: GraphStoreFullProjectDocumentationEntityNode;
|
|
15478
|
+
};
|
|
15479
|
+
export type GraphStoreFullProjectDocumentationEntityEndNode = Node & {
|
|
15480
|
+
__typename?: 'GraphStoreFullProjectDocumentationEntityEndNode';
|
|
15481
|
+
id: Scalars['ID']['output'];
|
|
15482
|
+
};
|
|
15483
|
+
export type GraphStoreFullProjectDocumentationEntityNode = Node & {
|
|
15484
|
+
__typename?: 'GraphStoreFullProjectDocumentationEntityNode';
|
|
15485
|
+
createdAt: Scalars['DateTime']['output'];
|
|
15486
|
+
from: GraphStoreFullProjectDocumentationEntityStartNode;
|
|
15487
|
+
id: Scalars['ID']['output'];
|
|
15488
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
15489
|
+
to: GraphStoreFullProjectDocumentationEntityEndNode;
|
|
15490
|
+
};
|
|
15491
|
+
export type GraphStoreFullProjectDocumentationEntityStartNode = Node & {
|
|
15492
|
+
__typename?: 'GraphStoreFullProjectDocumentationEntityStartNode';
|
|
15493
|
+
id: Scalars['ID']['output'];
|
|
15494
|
+
};
|
|
15495
|
+
export type GraphStoreFullProjectDocumentationPageConnection = HasPageInfo & HasTotal & {
|
|
15496
|
+
__typename?: 'GraphStoreFullProjectDocumentationPageConnection';
|
|
15497
|
+
edges: Array<Maybe<GraphStoreFullProjectDocumentationPageEdge>>;
|
|
15498
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
15499
|
+
nodes: Array<Maybe<GraphStoreFullProjectDocumentationPageNode>>;
|
|
15500
|
+
pageInfo: PageInfo;
|
|
15501
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
15502
|
+
};
|
|
15503
|
+
export type GraphStoreFullProjectDocumentationPageEdge = {
|
|
15504
|
+
__typename?: 'GraphStoreFullProjectDocumentationPageEdge';
|
|
15505
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
15506
|
+
node: GraphStoreFullProjectDocumentationPageNode;
|
|
15507
|
+
};
|
|
15508
|
+
export type GraphStoreFullProjectDocumentationPageEndNode = Node & {
|
|
15509
|
+
__typename?: 'GraphStoreFullProjectDocumentationPageEndNode';
|
|
15510
|
+
id: Scalars['ID']['output'];
|
|
15511
|
+
};
|
|
15512
|
+
export type GraphStoreFullProjectDocumentationPageNode = Node & {
|
|
15513
|
+
__typename?: 'GraphStoreFullProjectDocumentationPageNode';
|
|
15514
|
+
createdAt: Scalars['DateTime']['output'];
|
|
15515
|
+
from: GraphStoreFullProjectDocumentationPageStartNode;
|
|
15516
|
+
id: Scalars['ID']['output'];
|
|
15517
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
15518
|
+
to: GraphStoreFullProjectDocumentationPageEndNode;
|
|
15519
|
+
};
|
|
15520
|
+
export type GraphStoreFullProjectDocumentationPageStartNode = Node & {
|
|
15521
|
+
__typename?: 'GraphStoreFullProjectDocumentationPageStartNode';
|
|
15522
|
+
id: Scalars['ID']['output'];
|
|
15523
|
+
};
|
|
15524
|
+
export type GraphStoreFullProjectDocumentationSpaceConnection = HasPageInfo & HasTotal & {
|
|
15525
|
+
__typename?: 'GraphStoreFullProjectDocumentationSpaceConnection';
|
|
15526
|
+
edges: Array<Maybe<GraphStoreFullProjectDocumentationSpaceEdge>>;
|
|
15527
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
15528
|
+
nodes: Array<Maybe<GraphStoreFullProjectDocumentationSpaceNode>>;
|
|
15529
|
+
pageInfo: PageInfo;
|
|
15530
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
15531
|
+
};
|
|
15532
|
+
export type GraphStoreFullProjectDocumentationSpaceEdge = {
|
|
15533
|
+
__typename?: 'GraphStoreFullProjectDocumentationSpaceEdge';
|
|
15534
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
15535
|
+
node: GraphStoreFullProjectDocumentationSpaceNode;
|
|
15536
|
+
};
|
|
15537
|
+
export type GraphStoreFullProjectDocumentationSpaceEndNode = Node & {
|
|
15538
|
+
__typename?: 'GraphStoreFullProjectDocumentationSpaceEndNode';
|
|
15539
|
+
id: Scalars['ID']['output'];
|
|
15540
|
+
};
|
|
15541
|
+
export type GraphStoreFullProjectDocumentationSpaceNode = Node & {
|
|
15542
|
+
__typename?: 'GraphStoreFullProjectDocumentationSpaceNode';
|
|
15543
|
+
createdAt: Scalars['DateTime']['output'];
|
|
15544
|
+
from: GraphStoreFullProjectDocumentationSpaceStartNode;
|
|
15545
|
+
id: Scalars['ID']['output'];
|
|
15546
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
15547
|
+
to: GraphStoreFullProjectDocumentationSpaceEndNode;
|
|
15548
|
+
};
|
|
15549
|
+
export type GraphStoreFullProjectDocumentationSpaceStartNode = Node & {
|
|
15550
|
+
__typename?: 'GraphStoreFullProjectDocumentationSpaceStartNode';
|
|
15551
|
+
id: Scalars['ID']['output'];
|
|
15552
|
+
};
|
|
15553
|
+
export type GraphStoreFullProjectExplicitlyAssociatedRepoConnection = HasPageInfo & HasTotal & {
|
|
15554
|
+
__typename?: 'GraphStoreFullProjectExplicitlyAssociatedRepoConnection';
|
|
15555
|
+
edges: Array<Maybe<GraphStoreFullProjectExplicitlyAssociatedRepoEdge>>;
|
|
15556
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
15557
|
+
nodes: Array<Maybe<GraphStoreFullProjectExplicitlyAssociatedRepoNode>>;
|
|
15558
|
+
pageInfo: PageInfo;
|
|
15559
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
15560
|
+
};
|
|
15561
|
+
export type GraphStoreFullProjectExplicitlyAssociatedRepoEdge = {
|
|
15562
|
+
__typename?: 'GraphStoreFullProjectExplicitlyAssociatedRepoEdge';
|
|
15563
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
15564
|
+
node: GraphStoreFullProjectExplicitlyAssociatedRepoNode;
|
|
15565
|
+
};
|
|
15566
|
+
export type GraphStoreFullProjectExplicitlyAssociatedRepoEndNode = Node & {
|
|
15567
|
+
__typename?: 'GraphStoreFullProjectExplicitlyAssociatedRepoEndNode';
|
|
15568
|
+
id: Scalars['ID']['output'];
|
|
15569
|
+
};
|
|
15570
|
+
export type GraphStoreFullProjectExplicitlyAssociatedRepoNode = Node & {
|
|
15571
|
+
__typename?: 'GraphStoreFullProjectExplicitlyAssociatedRepoNode';
|
|
15572
|
+
createdAt: Scalars['DateTime']['output'];
|
|
15573
|
+
from: GraphStoreFullProjectExplicitlyAssociatedRepoStartNode;
|
|
15574
|
+
id: Scalars['ID']['output'];
|
|
15575
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
15576
|
+
to: GraphStoreFullProjectExplicitlyAssociatedRepoEndNode;
|
|
15577
|
+
};
|
|
15578
|
+
export type GraphStoreFullProjectExplicitlyAssociatedRepoStartNode = Node & {
|
|
15579
|
+
__typename?: 'GraphStoreFullProjectExplicitlyAssociatedRepoStartNode';
|
|
15580
|
+
id: Scalars['ID']['output'];
|
|
15581
|
+
};
|
|
15582
|
+
export type GraphStoreFullProjectHasIssueConnection = HasPageInfo & {
|
|
15583
|
+
__typename?: 'GraphStoreFullProjectHasIssueConnection';
|
|
15584
|
+
edges: Array<Maybe<GraphStoreFullProjectHasIssueEdge>>;
|
|
15585
|
+
nodes: Array<Maybe<GraphStoreFullProjectHasIssueNode>>;
|
|
15586
|
+
pageInfo: PageInfo;
|
|
15587
|
+
};
|
|
15588
|
+
export type GraphStoreFullProjectHasIssueEdge = {
|
|
15589
|
+
__typename?: 'GraphStoreFullProjectHasIssueEdge';
|
|
15590
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
15591
|
+
node: GraphStoreFullProjectHasIssueNode;
|
|
15592
|
+
};
|
|
15593
|
+
export type GraphStoreFullProjectHasIssueEndNode = Node & {
|
|
15594
|
+
__typename?: 'GraphStoreFullProjectHasIssueEndNode';
|
|
15595
|
+
id: Scalars['ID']['output'];
|
|
15596
|
+
};
|
|
15597
|
+
export type GraphStoreFullProjectHasIssueNode = Node & {
|
|
15598
|
+
__typename?: 'GraphStoreFullProjectHasIssueNode';
|
|
15599
|
+
createdAt: Scalars['DateTime']['output'];
|
|
15600
|
+
from: GraphStoreFullProjectHasIssueStartNode;
|
|
15601
|
+
id: Scalars['ID']['output'];
|
|
15602
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
15603
|
+
to: GraphStoreFullProjectHasIssueEndNode;
|
|
15604
|
+
};
|
|
15605
|
+
export type GraphStoreFullProjectHasIssueStartNode = Node & {
|
|
15606
|
+
__typename?: 'GraphStoreFullProjectHasIssueStartNode';
|
|
15607
|
+
id: Scalars['ID']['output'];
|
|
15608
|
+
};
|
|
15609
|
+
export type GraphStoreFullProjectHasSharedVersionWithConnection = HasPageInfo & HasTotal & {
|
|
15610
|
+
__typename?: 'GraphStoreFullProjectHasSharedVersionWithConnection';
|
|
15611
|
+
edges: Array<Maybe<GraphStoreFullProjectHasSharedVersionWithEdge>>;
|
|
15612
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
15613
|
+
nodes: Array<Maybe<GraphStoreFullProjectHasSharedVersionWithNode>>;
|
|
15614
|
+
pageInfo: PageInfo;
|
|
15615
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
15616
|
+
};
|
|
15617
|
+
export type GraphStoreFullProjectHasSharedVersionWithEdge = {
|
|
15618
|
+
__typename?: 'GraphStoreFullProjectHasSharedVersionWithEdge';
|
|
15619
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
15620
|
+
node: GraphStoreFullProjectHasSharedVersionWithNode;
|
|
15621
|
+
};
|
|
15622
|
+
export type GraphStoreFullProjectHasSharedVersionWithEndNode = Node & {
|
|
15623
|
+
__typename?: 'GraphStoreFullProjectHasSharedVersionWithEndNode';
|
|
15624
|
+
id: Scalars['ID']['output'];
|
|
15625
|
+
};
|
|
15626
|
+
export type GraphStoreFullProjectHasSharedVersionWithNode = Node & {
|
|
15627
|
+
__typename?: 'GraphStoreFullProjectHasSharedVersionWithNode';
|
|
15628
|
+
createdAt: Scalars['DateTime']['output'];
|
|
15629
|
+
from: GraphStoreFullProjectHasSharedVersionWithStartNode;
|
|
15630
|
+
id: Scalars['ID']['output'];
|
|
15631
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
15632
|
+
to: GraphStoreFullProjectHasSharedVersionWithEndNode;
|
|
15633
|
+
};
|
|
15634
|
+
export type GraphStoreFullProjectHasSharedVersionWithStartNode = Node & {
|
|
15635
|
+
__typename?: 'GraphStoreFullProjectHasSharedVersionWithStartNode';
|
|
15636
|
+
id: Scalars['ID']['output'];
|
|
15637
|
+
};
|
|
15638
|
+
export type GraphStoreFullProjectHasVersionConnection = HasPageInfo & HasTotal & {
|
|
15639
|
+
__typename?: 'GraphStoreFullProjectHasVersionConnection';
|
|
15640
|
+
edges: Array<Maybe<GraphStoreFullProjectHasVersionEdge>>;
|
|
15641
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
15642
|
+
nodes: Array<Maybe<GraphStoreFullProjectHasVersionNode>>;
|
|
15643
|
+
pageInfo: PageInfo;
|
|
15644
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
15645
|
+
};
|
|
15646
|
+
export type GraphStoreFullProjectHasVersionEdge = {
|
|
15647
|
+
__typename?: 'GraphStoreFullProjectHasVersionEdge';
|
|
15648
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
15649
|
+
node: GraphStoreFullProjectHasVersionNode;
|
|
15650
|
+
};
|
|
15651
|
+
export type GraphStoreFullProjectHasVersionEndNode = Node & {
|
|
15652
|
+
__typename?: 'GraphStoreFullProjectHasVersionEndNode';
|
|
15653
|
+
id: Scalars['ID']['output'];
|
|
15654
|
+
};
|
|
15655
|
+
export type GraphStoreFullProjectHasVersionNode = Node & {
|
|
15656
|
+
__typename?: 'GraphStoreFullProjectHasVersionNode';
|
|
15657
|
+
createdAt: Scalars['DateTime']['output'];
|
|
15658
|
+
from: GraphStoreFullProjectHasVersionStartNode;
|
|
15659
|
+
id: Scalars['ID']['output'];
|
|
15660
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
15661
|
+
to: GraphStoreFullProjectHasVersionEndNode;
|
|
15662
|
+
};
|
|
15663
|
+
export type GraphStoreFullProjectHasVersionStartNode = Node & {
|
|
15664
|
+
__typename?: 'GraphStoreFullProjectHasVersionStartNode';
|
|
15665
|
+
id: Scalars['ID']['output'];
|
|
15666
|
+
};
|
|
15667
|
+
export type GraphStoreFullSecurityContainerAssociatedToVulnerabilityConnection = HasPageInfo & {
|
|
15668
|
+
__typename?: 'GraphStoreFullSecurityContainerAssociatedToVulnerabilityConnection';
|
|
15669
|
+
edges: Array<Maybe<GraphStoreFullSecurityContainerAssociatedToVulnerabilityEdge>>;
|
|
15670
|
+
nodes: Array<Maybe<GraphStoreFullSecurityContainerAssociatedToVulnerabilityNode>>;
|
|
15671
|
+
pageInfo: PageInfo;
|
|
15672
|
+
};
|
|
15673
|
+
export type GraphStoreFullSecurityContainerAssociatedToVulnerabilityEdge = {
|
|
15674
|
+
__typename?: 'GraphStoreFullSecurityContainerAssociatedToVulnerabilityEdge';
|
|
15675
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
15676
|
+
node: GraphStoreFullSecurityContainerAssociatedToVulnerabilityNode;
|
|
15677
|
+
};
|
|
15678
|
+
export type GraphStoreFullSecurityContainerAssociatedToVulnerabilityEndNode = Node & {
|
|
15679
|
+
__typename?: 'GraphStoreFullSecurityContainerAssociatedToVulnerabilityEndNode';
|
|
15680
|
+
id: Scalars['ID']['output'];
|
|
15681
|
+
};
|
|
15682
|
+
export type GraphStoreFullSecurityContainerAssociatedToVulnerabilityNode = Node & {
|
|
15683
|
+
__typename?: 'GraphStoreFullSecurityContainerAssociatedToVulnerabilityNode';
|
|
15684
|
+
createdAt: Scalars['DateTime']['output'];
|
|
15685
|
+
from: GraphStoreFullSecurityContainerAssociatedToVulnerabilityStartNode;
|
|
15686
|
+
id: Scalars['ID']['output'];
|
|
15687
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
15688
|
+
to: GraphStoreFullSecurityContainerAssociatedToVulnerabilityEndNode;
|
|
15689
|
+
};
|
|
15690
|
+
export type GraphStoreFullSecurityContainerAssociatedToVulnerabilityStartNode = Node & {
|
|
15691
|
+
__typename?: 'GraphStoreFullSecurityContainerAssociatedToVulnerabilityStartNode';
|
|
15692
|
+
id: Scalars['ID']['output'];
|
|
15693
|
+
};
|
|
15694
|
+
export type GraphStoreFullServiceLinkedIncidentConnection = HasPageInfo & HasTotal & {
|
|
15695
|
+
__typename?: 'GraphStoreFullServiceLinkedIncidentConnection';
|
|
15696
|
+
edges: Array<Maybe<GraphStoreFullServiceLinkedIncidentEdge>>;
|
|
15697
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
15698
|
+
nodes: Array<Maybe<GraphStoreFullServiceLinkedIncidentNode>>;
|
|
15699
|
+
pageInfo: PageInfo;
|
|
15700
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
15701
|
+
};
|
|
15702
|
+
export type GraphStoreFullServiceLinkedIncidentEdge = {
|
|
15703
|
+
__typename?: 'GraphStoreFullServiceLinkedIncidentEdge';
|
|
15704
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
15705
|
+
node: GraphStoreFullServiceLinkedIncidentNode;
|
|
15706
|
+
};
|
|
15707
|
+
export type GraphStoreFullServiceLinkedIncidentEndNode = Node & {
|
|
15708
|
+
__typename?: 'GraphStoreFullServiceLinkedIncidentEndNode';
|
|
15709
|
+
id: Scalars['ID']['output'];
|
|
15710
|
+
};
|
|
15711
|
+
export type GraphStoreFullServiceLinkedIncidentNode = Node & {
|
|
15712
|
+
__typename?: 'GraphStoreFullServiceLinkedIncidentNode';
|
|
15713
|
+
createdAt: Scalars['DateTime']['output'];
|
|
15714
|
+
from: GraphStoreFullServiceLinkedIncidentStartNode;
|
|
15715
|
+
id: Scalars['ID']['output'];
|
|
15716
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
15717
|
+
to: GraphStoreFullServiceLinkedIncidentEndNode;
|
|
15718
|
+
};
|
|
15719
|
+
export type GraphStoreFullServiceLinkedIncidentStartNode = Node & {
|
|
15720
|
+
__typename?: 'GraphStoreFullServiceLinkedIncidentStartNode';
|
|
15721
|
+
id: Scalars['ID']['output'];
|
|
15722
|
+
};
|
|
15723
|
+
export type GraphStoreFullShipit57IssueLinksToPageConnection = HasPageInfo & HasTotal & {
|
|
15724
|
+
__typename?: 'GraphStoreFullShipit57IssueLinksToPageConnection';
|
|
15725
|
+
edges: Array<Maybe<GraphStoreFullShipit57IssueLinksToPageEdge>>;
|
|
15726
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
15727
|
+
nodes: Array<Maybe<GraphStoreFullShipit57IssueLinksToPageNode>>;
|
|
15728
|
+
pageInfo: PageInfo;
|
|
15729
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
15730
|
+
};
|
|
15731
|
+
export type GraphStoreFullShipit57IssueLinksToPageEdge = {
|
|
15732
|
+
__typename?: 'GraphStoreFullShipit57IssueLinksToPageEdge';
|
|
15733
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
15734
|
+
node: GraphStoreFullShipit57IssueLinksToPageNode;
|
|
15735
|
+
};
|
|
15736
|
+
export type GraphStoreFullShipit57IssueLinksToPageEndNode = Node & {
|
|
15737
|
+
__typename?: 'GraphStoreFullShipit57IssueLinksToPageEndNode';
|
|
15738
|
+
id: Scalars['ID']['output'];
|
|
15739
|
+
};
|
|
15740
|
+
export type GraphStoreFullShipit57IssueLinksToPageManualConnection = HasPageInfo & {
|
|
15741
|
+
__typename?: 'GraphStoreFullShipit57IssueLinksToPageManualConnection';
|
|
15742
|
+
edges: Array<Maybe<GraphStoreFullShipit57IssueLinksToPageManualEdge>>;
|
|
15743
|
+
nodes: Array<Maybe<GraphStoreFullShipit57IssueLinksToPageManualNode>>;
|
|
15744
|
+
pageInfo: PageInfo;
|
|
15745
|
+
};
|
|
15746
|
+
export type GraphStoreFullShipit57IssueLinksToPageManualEdge = {
|
|
15747
|
+
__typename?: 'GraphStoreFullShipit57IssueLinksToPageManualEdge';
|
|
15748
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
15749
|
+
node: GraphStoreFullShipit57IssueLinksToPageManualNode;
|
|
15750
|
+
};
|
|
15751
|
+
export type GraphStoreFullShipit57IssueLinksToPageManualEndNode = Node & {
|
|
15752
|
+
__typename?: 'GraphStoreFullShipit57IssueLinksToPageManualEndNode';
|
|
15753
|
+
id: Scalars['ID']['output'];
|
|
15754
|
+
};
|
|
15755
|
+
export type GraphStoreFullShipit57IssueLinksToPageManualNode = Node & {
|
|
15756
|
+
__typename?: 'GraphStoreFullShipit57IssueLinksToPageManualNode';
|
|
15757
|
+
createdAt: Scalars['DateTime']['output'];
|
|
15758
|
+
from: GraphStoreFullShipit57IssueLinksToPageManualStartNode;
|
|
15759
|
+
id: Scalars['ID']['output'];
|
|
15760
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
15761
|
+
to: GraphStoreFullShipit57IssueLinksToPageManualEndNode;
|
|
15762
|
+
};
|
|
15763
|
+
export type GraphStoreFullShipit57IssueLinksToPageManualStartNode = Node & {
|
|
15764
|
+
__typename?: 'GraphStoreFullShipit57IssueLinksToPageManualStartNode';
|
|
15765
|
+
id: Scalars['ID']['output'];
|
|
15766
|
+
};
|
|
15767
|
+
export type GraphStoreFullShipit57IssueLinksToPageNode = Node & {
|
|
15768
|
+
__typename?: 'GraphStoreFullShipit57IssueLinksToPageNode';
|
|
15769
|
+
createdAt: Scalars['DateTime']['output'];
|
|
15770
|
+
from: GraphStoreFullShipit57IssueLinksToPageStartNode;
|
|
15771
|
+
id: Scalars['ID']['output'];
|
|
15772
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
15773
|
+
to: GraphStoreFullShipit57IssueLinksToPageEndNode;
|
|
15774
|
+
};
|
|
15775
|
+
export type GraphStoreFullShipit57IssueLinksToPageStartNode = Node & {
|
|
15776
|
+
__typename?: 'GraphStoreFullShipit57IssueLinksToPageStartNode';
|
|
15777
|
+
id: Scalars['ID']['output'];
|
|
15778
|
+
};
|
|
15779
|
+
export type GraphStoreFullShipit57IssueRecursiveLinksToPageConnection = HasPageInfo & HasTotal & {
|
|
15780
|
+
__typename?: 'GraphStoreFullShipit57IssueRecursiveLinksToPageConnection';
|
|
15781
|
+
edges: Array<Maybe<GraphStoreFullShipit57IssueRecursiveLinksToPageEdge>>;
|
|
15782
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
15783
|
+
nodes: Array<Maybe<GraphStoreFullShipit57IssueRecursiveLinksToPageNode>>;
|
|
15784
|
+
pageInfo: PageInfo;
|
|
15785
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
15786
|
+
};
|
|
15787
|
+
export type GraphStoreFullShipit57IssueRecursiveLinksToPageEdge = {
|
|
15788
|
+
__typename?: 'GraphStoreFullShipit57IssueRecursiveLinksToPageEdge';
|
|
15789
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
15790
|
+
node: GraphStoreFullShipit57IssueRecursiveLinksToPageNode;
|
|
15791
|
+
};
|
|
15792
|
+
export type GraphStoreFullShipit57IssueRecursiveLinksToPageEndNode = Node & {
|
|
15793
|
+
__typename?: 'GraphStoreFullShipit57IssueRecursiveLinksToPageEndNode';
|
|
15794
|
+
id: Scalars['ID']['output'];
|
|
15795
|
+
};
|
|
15796
|
+
export type GraphStoreFullShipit57IssueRecursiveLinksToPageNode = Node & {
|
|
15797
|
+
__typename?: 'GraphStoreFullShipit57IssueRecursiveLinksToPageNode';
|
|
15798
|
+
createdAt: Scalars['DateTime']['output'];
|
|
15799
|
+
from: GraphStoreFullShipit57IssueRecursiveLinksToPageStartNode;
|
|
15800
|
+
id: Scalars['ID']['output'];
|
|
15801
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
15802
|
+
to: GraphStoreFullShipit57IssueRecursiveLinksToPageEndNode;
|
|
15803
|
+
};
|
|
15804
|
+
export type GraphStoreFullShipit57IssueRecursiveLinksToPageStartNode = Node & {
|
|
15805
|
+
__typename?: 'GraphStoreFullShipit57IssueRecursiveLinksToPageStartNode';
|
|
15806
|
+
id: Scalars['ID']['output'];
|
|
15807
|
+
};
|
|
15808
|
+
export type GraphStoreFullShipit57PullRequestLinksToPageConnection = HasPageInfo & {
|
|
15809
|
+
__typename?: 'GraphStoreFullShipit57PullRequestLinksToPageConnection';
|
|
15810
|
+
edges: Array<Maybe<GraphStoreFullShipit57PullRequestLinksToPageEdge>>;
|
|
15811
|
+
nodes: Array<Maybe<GraphStoreFullShipit57PullRequestLinksToPageNode>>;
|
|
15812
|
+
pageInfo: PageInfo;
|
|
15813
|
+
};
|
|
15814
|
+
export type GraphStoreFullShipit57PullRequestLinksToPageEdge = {
|
|
15815
|
+
__typename?: 'GraphStoreFullShipit57PullRequestLinksToPageEdge';
|
|
15816
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
15817
|
+
node: GraphStoreFullShipit57PullRequestLinksToPageNode;
|
|
15818
|
+
};
|
|
15819
|
+
export type GraphStoreFullShipit57PullRequestLinksToPageEndNode = Node & {
|
|
15820
|
+
__typename?: 'GraphStoreFullShipit57PullRequestLinksToPageEndNode';
|
|
15821
|
+
id: Scalars['ID']['output'];
|
|
15822
|
+
};
|
|
15823
|
+
export type GraphStoreFullShipit57PullRequestLinksToPageNode = Node & {
|
|
15824
|
+
__typename?: 'GraphStoreFullShipit57PullRequestLinksToPageNode';
|
|
15825
|
+
createdAt: Scalars['DateTime']['output'];
|
|
15826
|
+
from: GraphStoreFullShipit57PullRequestLinksToPageStartNode;
|
|
15827
|
+
id: Scalars['ID']['output'];
|
|
15828
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
15829
|
+
to: GraphStoreFullShipit57PullRequestLinksToPageEndNode;
|
|
15830
|
+
};
|
|
15831
|
+
export type GraphStoreFullShipit57PullRequestLinksToPageStartNode = Node & {
|
|
15832
|
+
__typename?: 'GraphStoreFullShipit57PullRequestLinksToPageStartNode';
|
|
15833
|
+
id: Scalars['ID']['output'];
|
|
15834
|
+
};
|
|
15835
|
+
export type GraphStoreFullSprintAssociatedBuildConnection = HasPageInfo & HasTotal & {
|
|
15836
|
+
__typename?: 'GraphStoreFullSprintAssociatedBuildConnection';
|
|
15837
|
+
edges: Array<Maybe<GraphStoreFullSprintAssociatedBuildEdge>>;
|
|
15838
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
15839
|
+
nodes: Array<Maybe<GraphStoreFullSprintAssociatedBuildNode>>;
|
|
15840
|
+
pageInfo: PageInfo;
|
|
15841
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
15842
|
+
};
|
|
15843
|
+
export type GraphStoreFullSprintAssociatedBuildEdge = {
|
|
15844
|
+
__typename?: 'GraphStoreFullSprintAssociatedBuildEdge';
|
|
15845
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
15846
|
+
node: GraphStoreFullSprintAssociatedBuildNode;
|
|
15847
|
+
};
|
|
15848
|
+
export type GraphStoreFullSprintAssociatedBuildEndNode = Node & {
|
|
15849
|
+
__typename?: 'GraphStoreFullSprintAssociatedBuildEndNode';
|
|
15850
|
+
id: Scalars['ID']['output'];
|
|
15851
|
+
};
|
|
15852
|
+
export type GraphStoreFullSprintAssociatedBuildNode = Node & {
|
|
15853
|
+
__typename?: 'GraphStoreFullSprintAssociatedBuildNode';
|
|
15854
|
+
createdAt: Scalars['DateTime']['output'];
|
|
15855
|
+
from: GraphStoreFullSprintAssociatedBuildStartNode;
|
|
15856
|
+
id: Scalars['ID']['output'];
|
|
15857
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
15858
|
+
to: GraphStoreFullSprintAssociatedBuildEndNode;
|
|
15859
|
+
};
|
|
15860
|
+
export type GraphStoreFullSprintAssociatedBuildStartNode = Node & {
|
|
15861
|
+
__typename?: 'GraphStoreFullSprintAssociatedBuildStartNode';
|
|
15862
|
+
id: Scalars['ID']['output'];
|
|
15863
|
+
};
|
|
15864
|
+
export type GraphStoreFullSprintAssociatedDeploymentConnection = HasPageInfo & HasTotal & {
|
|
15865
|
+
__typename?: 'GraphStoreFullSprintAssociatedDeploymentConnection';
|
|
15866
|
+
edges: Array<Maybe<GraphStoreFullSprintAssociatedDeploymentEdge>>;
|
|
15867
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
15868
|
+
nodes: Array<Maybe<GraphStoreFullSprintAssociatedDeploymentNode>>;
|
|
15869
|
+
pageInfo: PageInfo;
|
|
15870
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
15871
|
+
};
|
|
15872
|
+
export type GraphStoreFullSprintAssociatedDeploymentEdge = {
|
|
15873
|
+
__typename?: 'GraphStoreFullSprintAssociatedDeploymentEdge';
|
|
15874
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
15875
|
+
node: GraphStoreFullSprintAssociatedDeploymentNode;
|
|
15876
|
+
};
|
|
15877
|
+
export type GraphStoreFullSprintAssociatedDeploymentEndNode = Node & {
|
|
15878
|
+
__typename?: 'GraphStoreFullSprintAssociatedDeploymentEndNode';
|
|
15879
|
+
id: Scalars['ID']['output'];
|
|
15880
|
+
};
|
|
15881
|
+
export type GraphStoreFullSprintAssociatedDeploymentNode = Node & {
|
|
15882
|
+
__typename?: 'GraphStoreFullSprintAssociatedDeploymentNode';
|
|
15883
|
+
createdAt: Scalars['DateTime']['output'];
|
|
15884
|
+
from: GraphStoreFullSprintAssociatedDeploymentStartNode;
|
|
15885
|
+
id: Scalars['ID']['output'];
|
|
15886
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
15887
|
+
to: GraphStoreFullSprintAssociatedDeploymentEndNode;
|
|
15888
|
+
};
|
|
15889
|
+
export type GraphStoreFullSprintAssociatedDeploymentStartNode = Node & {
|
|
15890
|
+
__typename?: 'GraphStoreFullSprintAssociatedDeploymentStartNode';
|
|
15891
|
+
id: Scalars['ID']['output'];
|
|
15892
|
+
};
|
|
15893
|
+
export type GraphStoreFullSprintAssociatedFeatureFlagConnection = HasPageInfo & HasTotal & {
|
|
15894
|
+
__typename?: 'GraphStoreFullSprintAssociatedFeatureFlagConnection';
|
|
15895
|
+
edges: Array<Maybe<GraphStoreFullSprintAssociatedFeatureFlagEdge>>;
|
|
15896
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
15897
|
+
nodes: Array<Maybe<GraphStoreFullSprintAssociatedFeatureFlagNode>>;
|
|
15898
|
+
pageInfo: PageInfo;
|
|
15899
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
15900
|
+
};
|
|
15901
|
+
export type GraphStoreFullSprintAssociatedFeatureFlagEdge = {
|
|
15902
|
+
__typename?: 'GraphStoreFullSprintAssociatedFeatureFlagEdge';
|
|
15903
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
15904
|
+
node: GraphStoreFullSprintAssociatedFeatureFlagNode;
|
|
15905
|
+
};
|
|
15906
|
+
export type GraphStoreFullSprintAssociatedFeatureFlagEndNode = Node & {
|
|
15907
|
+
__typename?: 'GraphStoreFullSprintAssociatedFeatureFlagEndNode';
|
|
15908
|
+
id: Scalars['ID']['output'];
|
|
15909
|
+
};
|
|
15910
|
+
export type GraphStoreFullSprintAssociatedFeatureFlagNode = Node & {
|
|
15911
|
+
__typename?: 'GraphStoreFullSprintAssociatedFeatureFlagNode';
|
|
15912
|
+
createdAt: Scalars['DateTime']['output'];
|
|
15913
|
+
from: GraphStoreFullSprintAssociatedFeatureFlagStartNode;
|
|
15914
|
+
id: Scalars['ID']['output'];
|
|
15915
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
15916
|
+
to: GraphStoreFullSprintAssociatedFeatureFlagEndNode;
|
|
15917
|
+
};
|
|
15918
|
+
export type GraphStoreFullSprintAssociatedFeatureFlagStartNode = Node & {
|
|
15919
|
+
__typename?: 'GraphStoreFullSprintAssociatedFeatureFlagStartNode';
|
|
15920
|
+
id: Scalars['ID']['output'];
|
|
15921
|
+
};
|
|
15922
|
+
export type GraphStoreFullSprintAssociatedPrConnection = HasPageInfo & HasTotal & {
|
|
15923
|
+
__typename?: 'GraphStoreFullSprintAssociatedPrConnection';
|
|
15924
|
+
edges: Array<Maybe<GraphStoreFullSprintAssociatedPrEdge>>;
|
|
15925
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
15926
|
+
nodes: Array<Maybe<GraphStoreFullSprintAssociatedPrNode>>;
|
|
15927
|
+
pageInfo: PageInfo;
|
|
15928
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
15929
|
+
};
|
|
15930
|
+
export type GraphStoreFullSprintAssociatedPrEdge = {
|
|
15931
|
+
__typename?: 'GraphStoreFullSprintAssociatedPrEdge';
|
|
15932
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
15933
|
+
node: GraphStoreFullSprintAssociatedPrNode;
|
|
15934
|
+
};
|
|
15935
|
+
export type GraphStoreFullSprintAssociatedPrEndNode = Node & {
|
|
15936
|
+
__typename?: 'GraphStoreFullSprintAssociatedPrEndNode';
|
|
15937
|
+
id: Scalars['ID']['output'];
|
|
15938
|
+
};
|
|
15939
|
+
export type GraphStoreFullSprintAssociatedPrNode = Node & {
|
|
15940
|
+
__typename?: 'GraphStoreFullSprintAssociatedPrNode';
|
|
15941
|
+
createdAt: Scalars['DateTime']['output'];
|
|
15942
|
+
from: GraphStoreFullSprintAssociatedPrStartNode;
|
|
15943
|
+
id: Scalars['ID']['output'];
|
|
15944
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
15945
|
+
to: GraphStoreFullSprintAssociatedPrEndNode;
|
|
15946
|
+
};
|
|
15947
|
+
export type GraphStoreFullSprintAssociatedPrStartNode = Node & {
|
|
15948
|
+
__typename?: 'GraphStoreFullSprintAssociatedPrStartNode';
|
|
15949
|
+
id: Scalars['ID']['output'];
|
|
15950
|
+
};
|
|
15951
|
+
export type GraphStoreFullSprintContainsIssueConnection = HasPageInfo & {
|
|
15952
|
+
__typename?: 'GraphStoreFullSprintContainsIssueConnection';
|
|
15953
|
+
edges: Array<Maybe<GraphStoreFullSprintContainsIssueEdge>>;
|
|
15954
|
+
nodes: Array<Maybe<GraphStoreFullSprintContainsIssueNode>>;
|
|
15955
|
+
pageInfo: PageInfo;
|
|
15956
|
+
};
|
|
15957
|
+
export type GraphStoreFullSprintContainsIssueEdge = {
|
|
15958
|
+
__typename?: 'GraphStoreFullSprintContainsIssueEdge';
|
|
15959
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
15960
|
+
node: GraphStoreFullSprintContainsIssueNode;
|
|
15961
|
+
};
|
|
15962
|
+
export type GraphStoreFullSprintContainsIssueEndNode = Node & {
|
|
15963
|
+
__typename?: 'GraphStoreFullSprintContainsIssueEndNode';
|
|
15964
|
+
id: Scalars['ID']['output'];
|
|
15965
|
+
};
|
|
15966
|
+
export type GraphStoreFullSprintContainsIssueNode = Node & {
|
|
15967
|
+
__typename?: 'GraphStoreFullSprintContainsIssueNode';
|
|
15968
|
+
createdAt: Scalars['DateTime']['output'];
|
|
15969
|
+
from: GraphStoreFullSprintContainsIssueStartNode;
|
|
15970
|
+
id: Scalars['ID']['output'];
|
|
15971
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
15972
|
+
to: GraphStoreFullSprintContainsIssueEndNode;
|
|
15973
|
+
};
|
|
15974
|
+
export type GraphStoreFullSprintContainsIssueStartNode = Node & {
|
|
15975
|
+
__typename?: 'GraphStoreFullSprintContainsIssueStartNode';
|
|
15976
|
+
id: Scalars['ID']['output'];
|
|
15977
|
+
};
|
|
15978
|
+
export type GraphStoreFullSprintRetrospectivePageConnection = HasPageInfo & HasTotal & {
|
|
15979
|
+
__typename?: 'GraphStoreFullSprintRetrospectivePageConnection';
|
|
15980
|
+
edges: Array<Maybe<GraphStoreFullSprintRetrospectivePageEdge>>;
|
|
15981
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
15982
|
+
nodes: Array<Maybe<GraphStoreFullSprintRetrospectivePageNode>>;
|
|
15983
|
+
pageInfo: PageInfo;
|
|
15984
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
15985
|
+
};
|
|
15986
|
+
export type GraphStoreFullSprintRetrospectivePageEdge = {
|
|
15987
|
+
__typename?: 'GraphStoreFullSprintRetrospectivePageEdge';
|
|
15988
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
15989
|
+
node: GraphStoreFullSprintRetrospectivePageNode;
|
|
15990
|
+
};
|
|
15991
|
+
export type GraphStoreFullSprintRetrospectivePageEndNode = Node & {
|
|
15992
|
+
__typename?: 'GraphStoreFullSprintRetrospectivePageEndNode';
|
|
15993
|
+
id: Scalars['ID']['output'];
|
|
15994
|
+
};
|
|
15995
|
+
export type GraphStoreFullSprintRetrospectivePageNode = Node & {
|
|
15996
|
+
__typename?: 'GraphStoreFullSprintRetrospectivePageNode';
|
|
15997
|
+
createdAt: Scalars['DateTime']['output'];
|
|
15998
|
+
from: GraphStoreFullSprintRetrospectivePageStartNode;
|
|
15999
|
+
id: Scalars['ID']['output'];
|
|
16000
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
16001
|
+
to: GraphStoreFullSprintRetrospectivePageEndNode;
|
|
16002
|
+
};
|
|
16003
|
+
export type GraphStoreFullSprintRetrospectivePageStartNode = Node & {
|
|
16004
|
+
__typename?: 'GraphStoreFullSprintRetrospectivePageStartNode';
|
|
16005
|
+
id: Scalars['ID']['output'];
|
|
16006
|
+
};
|
|
16007
|
+
export type GraphStoreFullTeamWorksOnProjectConnection = HasPageInfo & HasTotal & {
|
|
16008
|
+
__typename?: 'GraphStoreFullTeamWorksOnProjectConnection';
|
|
16009
|
+
edges: Array<Maybe<GraphStoreFullTeamWorksOnProjectEdge>>;
|
|
16010
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
16011
|
+
nodes: Array<Maybe<GraphStoreFullTeamWorksOnProjectNode>>;
|
|
16012
|
+
pageInfo: PageInfo;
|
|
16013
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
16014
|
+
};
|
|
16015
|
+
export type GraphStoreFullTeamWorksOnProjectEdge = {
|
|
16016
|
+
__typename?: 'GraphStoreFullTeamWorksOnProjectEdge';
|
|
16017
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
16018
|
+
node: GraphStoreFullTeamWorksOnProjectNode;
|
|
16019
|
+
};
|
|
16020
|
+
export type GraphStoreFullTeamWorksOnProjectEndNode = Node & {
|
|
16021
|
+
__typename?: 'GraphStoreFullTeamWorksOnProjectEndNode';
|
|
16022
|
+
id: Scalars['ID']['output'];
|
|
16023
|
+
};
|
|
16024
|
+
export type GraphStoreFullTeamWorksOnProjectNode = Node & {
|
|
16025
|
+
__typename?: 'GraphStoreFullTeamWorksOnProjectNode';
|
|
16026
|
+
createdAt: Scalars['DateTime']['output'];
|
|
16027
|
+
from: GraphStoreFullTeamWorksOnProjectStartNode;
|
|
16028
|
+
id: Scalars['ID']['output'];
|
|
16029
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
16030
|
+
to: GraphStoreFullTeamWorksOnProjectEndNode;
|
|
16031
|
+
};
|
|
16032
|
+
export type GraphStoreFullTeamWorksOnProjectStartNode = Node & {
|
|
16033
|
+
__typename?: 'GraphStoreFullTeamWorksOnProjectStartNode';
|
|
16034
|
+
id: Scalars['ID']['output'];
|
|
16035
|
+
};
|
|
16036
|
+
export type GraphStoreFullUserIsInTeamConnection = HasPageInfo & {
|
|
16037
|
+
__typename?: 'GraphStoreFullUserIsInTeamConnection';
|
|
16038
|
+
edges: Array<Maybe<GraphStoreFullUserIsInTeamEdge>>;
|
|
16039
|
+
nodes: Array<Maybe<GraphStoreFullUserIsInTeamNode>>;
|
|
16040
|
+
pageInfo: PageInfo;
|
|
16041
|
+
};
|
|
16042
|
+
export type GraphStoreFullUserIsInTeamEdge = {
|
|
16043
|
+
__typename?: 'GraphStoreFullUserIsInTeamEdge';
|
|
16044
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
16045
|
+
node: GraphStoreFullUserIsInTeamNode;
|
|
16046
|
+
};
|
|
16047
|
+
export type GraphStoreFullUserIsInTeamEndNode = Node & {
|
|
16048
|
+
__typename?: 'GraphStoreFullUserIsInTeamEndNode';
|
|
16049
|
+
id: Scalars['ID']['output'];
|
|
16050
|
+
};
|
|
16051
|
+
export type GraphStoreFullUserIsInTeamNode = Node & {
|
|
16052
|
+
__typename?: 'GraphStoreFullUserIsInTeamNode';
|
|
16053
|
+
createdAt: Scalars['DateTime']['output'];
|
|
16054
|
+
from: GraphStoreFullUserIsInTeamStartNode;
|
|
16055
|
+
id: Scalars['ID']['output'];
|
|
16056
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
16057
|
+
to: GraphStoreFullUserIsInTeamEndNode;
|
|
16058
|
+
};
|
|
16059
|
+
export type GraphStoreFullUserIsInTeamStartNode = Node & {
|
|
16060
|
+
__typename?: 'GraphStoreFullUserIsInTeamStartNode';
|
|
16061
|
+
id: Scalars['ID']['output'];
|
|
16062
|
+
};
|
|
16063
|
+
export type GraphStoreFullVersionAssociatedBranchConnection = HasPageInfo & HasTotal & {
|
|
16064
|
+
__typename?: 'GraphStoreFullVersionAssociatedBranchConnection';
|
|
16065
|
+
edges: Array<Maybe<GraphStoreFullVersionAssociatedBranchEdge>>;
|
|
16066
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
16067
|
+
nodes: Array<Maybe<GraphStoreFullVersionAssociatedBranchNode>>;
|
|
16068
|
+
pageInfo: PageInfo;
|
|
16069
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
16070
|
+
};
|
|
16071
|
+
export type GraphStoreFullVersionAssociatedBranchEdge = {
|
|
16072
|
+
__typename?: 'GraphStoreFullVersionAssociatedBranchEdge';
|
|
16073
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
16074
|
+
node: GraphStoreFullVersionAssociatedBranchNode;
|
|
16075
|
+
};
|
|
16076
|
+
export type GraphStoreFullVersionAssociatedBranchEndNode = Node & {
|
|
16077
|
+
__typename?: 'GraphStoreFullVersionAssociatedBranchEndNode';
|
|
16078
|
+
id: Scalars['ID']['output'];
|
|
16079
|
+
};
|
|
16080
|
+
export type GraphStoreFullVersionAssociatedBranchNode = Node & {
|
|
16081
|
+
__typename?: 'GraphStoreFullVersionAssociatedBranchNode';
|
|
16082
|
+
createdAt: Scalars['DateTime']['output'];
|
|
16083
|
+
from: GraphStoreFullVersionAssociatedBranchStartNode;
|
|
16084
|
+
id: Scalars['ID']['output'];
|
|
16085
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
16086
|
+
to: GraphStoreFullVersionAssociatedBranchEndNode;
|
|
16087
|
+
};
|
|
16088
|
+
export type GraphStoreFullVersionAssociatedBranchStartNode = Node & {
|
|
16089
|
+
__typename?: 'GraphStoreFullVersionAssociatedBranchStartNode';
|
|
16090
|
+
id: Scalars['ID']['output'];
|
|
16091
|
+
};
|
|
16092
|
+
export type GraphStoreFullVersionAssociatedBuildConnection = HasPageInfo & HasTotal & {
|
|
16093
|
+
__typename?: 'GraphStoreFullVersionAssociatedBuildConnection';
|
|
16094
|
+
edges: Array<Maybe<GraphStoreFullVersionAssociatedBuildEdge>>;
|
|
16095
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
16096
|
+
nodes: Array<Maybe<GraphStoreFullVersionAssociatedBuildNode>>;
|
|
16097
|
+
pageInfo: PageInfo;
|
|
16098
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
16099
|
+
};
|
|
16100
|
+
export type GraphStoreFullVersionAssociatedBuildEdge = {
|
|
16101
|
+
__typename?: 'GraphStoreFullVersionAssociatedBuildEdge';
|
|
16102
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
16103
|
+
node: GraphStoreFullVersionAssociatedBuildNode;
|
|
16104
|
+
};
|
|
16105
|
+
export type GraphStoreFullVersionAssociatedBuildEndNode = Node & {
|
|
16106
|
+
__typename?: 'GraphStoreFullVersionAssociatedBuildEndNode';
|
|
16107
|
+
id: Scalars['ID']['output'];
|
|
16108
|
+
};
|
|
16109
|
+
export type GraphStoreFullVersionAssociatedBuildNode = Node & {
|
|
16110
|
+
__typename?: 'GraphStoreFullVersionAssociatedBuildNode';
|
|
16111
|
+
createdAt: Scalars['DateTime']['output'];
|
|
16112
|
+
from: GraphStoreFullVersionAssociatedBuildStartNode;
|
|
16113
|
+
id: Scalars['ID']['output'];
|
|
16114
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
16115
|
+
to: GraphStoreFullVersionAssociatedBuildEndNode;
|
|
16116
|
+
};
|
|
16117
|
+
export type GraphStoreFullVersionAssociatedBuildStartNode = Node & {
|
|
16118
|
+
__typename?: 'GraphStoreFullVersionAssociatedBuildStartNode';
|
|
16119
|
+
id: Scalars['ID']['output'];
|
|
16120
|
+
};
|
|
16121
|
+
export type GraphStoreFullVersionAssociatedCommitConnection = HasPageInfo & HasTotal & {
|
|
16122
|
+
__typename?: 'GraphStoreFullVersionAssociatedCommitConnection';
|
|
16123
|
+
edges: Array<Maybe<GraphStoreFullVersionAssociatedCommitEdge>>;
|
|
16124
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
16125
|
+
nodes: Array<Maybe<GraphStoreFullVersionAssociatedCommitNode>>;
|
|
16126
|
+
pageInfo: PageInfo;
|
|
16127
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
16128
|
+
};
|
|
16129
|
+
export type GraphStoreFullVersionAssociatedCommitEdge = {
|
|
16130
|
+
__typename?: 'GraphStoreFullVersionAssociatedCommitEdge';
|
|
16131
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
16132
|
+
node: GraphStoreFullVersionAssociatedCommitNode;
|
|
16133
|
+
};
|
|
16134
|
+
export type GraphStoreFullVersionAssociatedCommitEndNode = Node & {
|
|
16135
|
+
__typename?: 'GraphStoreFullVersionAssociatedCommitEndNode';
|
|
16136
|
+
id: Scalars['ID']['output'];
|
|
16137
|
+
};
|
|
16138
|
+
export type GraphStoreFullVersionAssociatedCommitNode = Node & {
|
|
16139
|
+
__typename?: 'GraphStoreFullVersionAssociatedCommitNode';
|
|
16140
|
+
createdAt: Scalars['DateTime']['output'];
|
|
16141
|
+
from: GraphStoreFullVersionAssociatedCommitStartNode;
|
|
16142
|
+
id: Scalars['ID']['output'];
|
|
16143
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
16144
|
+
to: GraphStoreFullVersionAssociatedCommitEndNode;
|
|
16145
|
+
};
|
|
16146
|
+
export type GraphStoreFullVersionAssociatedCommitStartNode = Node & {
|
|
16147
|
+
__typename?: 'GraphStoreFullVersionAssociatedCommitStartNode';
|
|
16148
|
+
id: Scalars['ID']['output'];
|
|
16149
|
+
};
|
|
16150
|
+
export type GraphStoreFullVersionAssociatedDeploymentConnection = HasPageInfo & HasTotal & {
|
|
16151
|
+
__typename?: 'GraphStoreFullVersionAssociatedDeploymentConnection';
|
|
16152
|
+
edges: Array<Maybe<GraphStoreFullVersionAssociatedDeploymentEdge>>;
|
|
16153
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
16154
|
+
nodes: Array<Maybe<GraphStoreFullVersionAssociatedDeploymentNode>>;
|
|
16155
|
+
pageInfo: PageInfo;
|
|
16156
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
16157
|
+
};
|
|
16158
|
+
export type GraphStoreFullVersionAssociatedDeploymentEdge = {
|
|
16159
|
+
__typename?: 'GraphStoreFullVersionAssociatedDeploymentEdge';
|
|
16160
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
16161
|
+
node: GraphStoreFullVersionAssociatedDeploymentNode;
|
|
16162
|
+
};
|
|
16163
|
+
export type GraphStoreFullVersionAssociatedDeploymentEndNode = Node & {
|
|
16164
|
+
__typename?: 'GraphStoreFullVersionAssociatedDeploymentEndNode';
|
|
16165
|
+
id: Scalars['ID']['output'];
|
|
16166
|
+
};
|
|
16167
|
+
export type GraphStoreFullVersionAssociatedDeploymentNode = Node & {
|
|
16168
|
+
__typename?: 'GraphStoreFullVersionAssociatedDeploymentNode';
|
|
16169
|
+
createdAt: Scalars['DateTime']['output'];
|
|
16170
|
+
from: GraphStoreFullVersionAssociatedDeploymentStartNode;
|
|
16171
|
+
id: Scalars['ID']['output'];
|
|
16172
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
16173
|
+
to: GraphStoreFullVersionAssociatedDeploymentEndNode;
|
|
16174
|
+
};
|
|
16175
|
+
export type GraphStoreFullVersionAssociatedDeploymentStartNode = Node & {
|
|
16176
|
+
__typename?: 'GraphStoreFullVersionAssociatedDeploymentStartNode';
|
|
16177
|
+
id: Scalars['ID']['output'];
|
|
16178
|
+
};
|
|
16179
|
+
export type GraphStoreFullVersionAssociatedFeatureFlagConnection = HasPageInfo & HasTotal & {
|
|
16180
|
+
__typename?: 'GraphStoreFullVersionAssociatedFeatureFlagConnection';
|
|
16181
|
+
edges: Array<Maybe<GraphStoreFullVersionAssociatedFeatureFlagEdge>>;
|
|
16182
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
16183
|
+
nodes: Array<Maybe<GraphStoreFullVersionAssociatedFeatureFlagNode>>;
|
|
16184
|
+
pageInfo: PageInfo;
|
|
16185
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
16186
|
+
};
|
|
16187
|
+
export type GraphStoreFullVersionAssociatedFeatureFlagEdge = {
|
|
16188
|
+
__typename?: 'GraphStoreFullVersionAssociatedFeatureFlagEdge';
|
|
16189
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
16190
|
+
node: GraphStoreFullVersionAssociatedFeatureFlagNode;
|
|
16191
|
+
};
|
|
16192
|
+
export type GraphStoreFullVersionAssociatedFeatureFlagEndNode = Node & {
|
|
16193
|
+
__typename?: 'GraphStoreFullVersionAssociatedFeatureFlagEndNode';
|
|
16194
|
+
id: Scalars['ID']['output'];
|
|
16195
|
+
};
|
|
16196
|
+
export type GraphStoreFullVersionAssociatedFeatureFlagNode = Node & {
|
|
16197
|
+
__typename?: 'GraphStoreFullVersionAssociatedFeatureFlagNode';
|
|
16198
|
+
createdAt: Scalars['DateTime']['output'];
|
|
16199
|
+
from: GraphStoreFullVersionAssociatedFeatureFlagStartNode;
|
|
16200
|
+
id: Scalars['ID']['output'];
|
|
16201
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
16202
|
+
to: GraphStoreFullVersionAssociatedFeatureFlagEndNode;
|
|
16203
|
+
};
|
|
16204
|
+
export type GraphStoreFullVersionAssociatedFeatureFlagStartNode = Node & {
|
|
16205
|
+
__typename?: 'GraphStoreFullVersionAssociatedFeatureFlagStartNode';
|
|
16206
|
+
id: Scalars['ID']['output'];
|
|
16207
|
+
};
|
|
16208
|
+
export type GraphStoreFullVersionAssociatedIssueConnection = HasPageInfo & {
|
|
16209
|
+
__typename?: 'GraphStoreFullVersionAssociatedIssueConnection';
|
|
16210
|
+
edges: Array<Maybe<GraphStoreFullVersionAssociatedIssueEdge>>;
|
|
16211
|
+
nodes: Array<Maybe<GraphStoreFullVersionAssociatedIssueNode>>;
|
|
16212
|
+
pageInfo: PageInfo;
|
|
16213
|
+
};
|
|
16214
|
+
export type GraphStoreFullVersionAssociatedIssueEdge = {
|
|
16215
|
+
__typename?: 'GraphStoreFullVersionAssociatedIssueEdge';
|
|
16216
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
16217
|
+
node: GraphStoreFullVersionAssociatedIssueNode;
|
|
16218
|
+
};
|
|
16219
|
+
export type GraphStoreFullVersionAssociatedIssueEndNode = Node & {
|
|
16220
|
+
__typename?: 'GraphStoreFullVersionAssociatedIssueEndNode';
|
|
16221
|
+
id: Scalars['ID']['output'];
|
|
16222
|
+
};
|
|
16223
|
+
export type GraphStoreFullVersionAssociatedIssueNode = Node & {
|
|
16224
|
+
__typename?: 'GraphStoreFullVersionAssociatedIssueNode';
|
|
16225
|
+
createdAt: Scalars['DateTime']['output'];
|
|
16226
|
+
from: GraphStoreFullVersionAssociatedIssueStartNode;
|
|
16227
|
+
id: Scalars['ID']['output'];
|
|
16228
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
16229
|
+
to: GraphStoreFullVersionAssociatedIssueEndNode;
|
|
16230
|
+
};
|
|
16231
|
+
export type GraphStoreFullVersionAssociatedIssueStartNode = Node & {
|
|
16232
|
+
__typename?: 'GraphStoreFullVersionAssociatedIssueStartNode';
|
|
16233
|
+
id: Scalars['ID']['output'];
|
|
16234
|
+
};
|
|
16235
|
+
export type GraphStoreFullVersionAssociatedPullRequestConnection = HasPageInfo & HasTotal & {
|
|
16236
|
+
__typename?: 'GraphStoreFullVersionAssociatedPullRequestConnection';
|
|
16237
|
+
edges: Array<Maybe<GraphStoreFullVersionAssociatedPullRequestEdge>>;
|
|
16238
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
16239
|
+
nodes: Array<Maybe<GraphStoreFullVersionAssociatedPullRequestNode>>;
|
|
16240
|
+
pageInfo: PageInfo;
|
|
16241
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
16242
|
+
};
|
|
16243
|
+
export type GraphStoreFullVersionAssociatedPullRequestEdge = {
|
|
16244
|
+
__typename?: 'GraphStoreFullVersionAssociatedPullRequestEdge';
|
|
16245
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
16246
|
+
node: GraphStoreFullVersionAssociatedPullRequestNode;
|
|
16247
|
+
};
|
|
16248
|
+
export type GraphStoreFullVersionAssociatedPullRequestEndNode = Node & {
|
|
16249
|
+
__typename?: 'GraphStoreFullVersionAssociatedPullRequestEndNode';
|
|
16250
|
+
id: Scalars['ID']['output'];
|
|
16251
|
+
};
|
|
16252
|
+
export type GraphStoreFullVersionAssociatedPullRequestNode = Node & {
|
|
16253
|
+
__typename?: 'GraphStoreFullVersionAssociatedPullRequestNode';
|
|
16254
|
+
createdAt: Scalars['DateTime']['output'];
|
|
16255
|
+
from: GraphStoreFullVersionAssociatedPullRequestStartNode;
|
|
16256
|
+
id: Scalars['ID']['output'];
|
|
16257
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
16258
|
+
to: GraphStoreFullVersionAssociatedPullRequestEndNode;
|
|
16259
|
+
};
|
|
16260
|
+
export type GraphStoreFullVersionAssociatedPullRequestStartNode = Node & {
|
|
16261
|
+
__typename?: 'GraphStoreFullVersionAssociatedPullRequestStartNode';
|
|
16262
|
+
id: Scalars['ID']['output'];
|
|
16263
|
+
};
|
|
16264
|
+
export type GraphStoreFullVersionUserAssociatedFeatureFlagConnection = HasPageInfo & {
|
|
16265
|
+
__typename?: 'GraphStoreFullVersionUserAssociatedFeatureFlagConnection';
|
|
16266
|
+
edges: Array<Maybe<GraphStoreFullVersionUserAssociatedFeatureFlagEdge>>;
|
|
16267
|
+
nodes: Array<Maybe<GraphStoreFullVersionUserAssociatedFeatureFlagNode>>;
|
|
16268
|
+
pageInfo: PageInfo;
|
|
16269
|
+
};
|
|
16270
|
+
export type GraphStoreFullVersionUserAssociatedFeatureFlagEdge = {
|
|
16271
|
+
__typename?: 'GraphStoreFullVersionUserAssociatedFeatureFlagEdge';
|
|
16272
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
16273
|
+
node: GraphStoreFullVersionUserAssociatedFeatureFlagNode;
|
|
16274
|
+
};
|
|
16275
|
+
export type GraphStoreFullVersionUserAssociatedFeatureFlagEndNode = Node & {
|
|
16276
|
+
__typename?: 'GraphStoreFullVersionUserAssociatedFeatureFlagEndNode';
|
|
16277
|
+
id: Scalars['ID']['output'];
|
|
16278
|
+
};
|
|
16279
|
+
export type GraphStoreFullVersionUserAssociatedFeatureFlagNode = Node & {
|
|
16280
|
+
__typename?: 'GraphStoreFullVersionUserAssociatedFeatureFlagNode';
|
|
16281
|
+
createdAt: Scalars['DateTime']['output'];
|
|
16282
|
+
from: GraphStoreFullVersionUserAssociatedFeatureFlagStartNode;
|
|
16283
|
+
id: Scalars['ID']['output'];
|
|
16284
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
16285
|
+
to: GraphStoreFullVersionUserAssociatedFeatureFlagEndNode;
|
|
16286
|
+
};
|
|
16287
|
+
export type GraphStoreFullVersionUserAssociatedFeatureFlagStartNode = Node & {
|
|
16288
|
+
__typename?: 'GraphStoreFullVersionUserAssociatedFeatureFlagStartNode';
|
|
16289
|
+
id: Scalars['ID']['output'];
|
|
16290
|
+
};
|
|
16291
|
+
export type GraphStoreFullVulnerabilityAssociatedIssueConnection = HasPageInfo & HasTotal & {
|
|
16292
|
+
__typename?: 'GraphStoreFullVulnerabilityAssociatedIssueConnection';
|
|
16293
|
+
edges: Array<Maybe<GraphStoreFullVulnerabilityAssociatedIssueEdge>>;
|
|
16294
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
16295
|
+
nodes: Array<Maybe<GraphStoreFullVulnerabilityAssociatedIssueNode>>;
|
|
16296
|
+
pageInfo: PageInfo;
|
|
16297
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
16298
|
+
};
|
|
16299
|
+
export type GraphStoreFullVulnerabilityAssociatedIssueEdge = {
|
|
16300
|
+
__typename?: 'GraphStoreFullVulnerabilityAssociatedIssueEdge';
|
|
16301
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
16302
|
+
node: GraphStoreFullVulnerabilityAssociatedIssueNode;
|
|
16303
|
+
};
|
|
16304
|
+
export type GraphStoreFullVulnerabilityAssociatedIssueEndNode = Node & {
|
|
16305
|
+
__typename?: 'GraphStoreFullVulnerabilityAssociatedIssueEndNode';
|
|
16306
|
+
id: Scalars['ID']['output'];
|
|
16307
|
+
};
|
|
16308
|
+
export type GraphStoreFullVulnerabilityAssociatedIssueNode = Node & {
|
|
16309
|
+
__typename?: 'GraphStoreFullVulnerabilityAssociatedIssueNode';
|
|
16310
|
+
createdAt: Scalars['DateTime']['output'];
|
|
16311
|
+
from: GraphStoreFullVulnerabilityAssociatedIssueStartNode;
|
|
16312
|
+
id: Scalars['ID']['output'];
|
|
16313
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
16314
|
+
to: GraphStoreFullVulnerabilityAssociatedIssueEndNode;
|
|
16315
|
+
};
|
|
16316
|
+
export type GraphStoreFullVulnerabilityAssociatedIssueStartNode = Node & {
|
|
16317
|
+
__typename?: 'GraphStoreFullVulnerabilityAssociatedIssueStartNode';
|
|
16318
|
+
id: Scalars['ID']['output'];
|
|
16319
|
+
};
|
|
16320
|
+
export type GraphStoreIncidentAssociatedPostIncidentReviewLinkInput = {
|
|
16321
|
+
relationships: Array<GraphStoreIncidentAssociatedPostIncidentReviewLinkRelationship>;
|
|
16322
|
+
};
|
|
16323
|
+
export type GraphStoreIncidentAssociatedPostIncidentReviewLinkRelationship = {
|
|
16324
|
+
from: Scalars['ID']['input'];
|
|
16325
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
16326
|
+
to: Scalars['ID']['input'];
|
|
16327
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
16328
|
+
};
|
|
16329
|
+
export type GraphStoreIncidentHasActionItemInput = {
|
|
16330
|
+
relationships: Array<GraphStoreIncidentHasActionItemRelationship>;
|
|
16331
|
+
};
|
|
16332
|
+
export type GraphStoreIncidentHasActionItemRelationship = {
|
|
16333
|
+
from: Scalars['ID']['input'];
|
|
16334
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
16335
|
+
to: Scalars['ID']['input'];
|
|
16336
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
16337
|
+
};
|
|
16338
|
+
export type GraphStoreIncidentLinkedJswIssueInput = {
|
|
16339
|
+
relationships: Array<GraphStoreIncidentLinkedJswIssueRelationship>;
|
|
16340
|
+
};
|
|
16341
|
+
export type GraphStoreIncidentLinkedJswIssueRelationship = {
|
|
16342
|
+
from: Scalars['ID']['input'];
|
|
16343
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
16344
|
+
to: Scalars['ID']['input'];
|
|
16345
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
16346
|
+
};
|
|
16347
|
+
export type GraphStoreJswProjectAssociatedComponentInput = {
|
|
16348
|
+
relationships: Array<GraphStoreJswProjectAssociatedComponentRelationship>;
|
|
16349
|
+
};
|
|
16350
|
+
export type GraphStoreJswProjectAssociatedComponentRelationship = {
|
|
16351
|
+
from: Scalars['ID']['input'];
|
|
16352
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
16353
|
+
to: Scalars['ID']['input'];
|
|
16354
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
16355
|
+
};
|
|
16356
|
+
export type GraphStoreMutation = {
|
|
16357
|
+
__typename?: 'GraphStoreMutation';
|
|
16358
|
+
createIncidentAssociatedPostIncidentReviewLink?: Maybe<GraphStoreCreateIncidentAssociatedPostIncidentReviewLinkPayload>;
|
|
16359
|
+
createIncidentHasActionItem?: Maybe<GraphStoreCreateIncidentHasActionItemPayload>;
|
|
16360
|
+
createIncidentLinkedJswIssue?: Maybe<GraphStoreCreateIncidentLinkedJswIssuePayload>;
|
|
16361
|
+
createJswProjectAssociatedComponent?: Maybe<GraphStoreCreateJswProjectAssociatedComponentPayload>;
|
|
16362
|
+
createProjectAssociatedOpsgenieTeam?: Maybe<GraphStoreCreateProjectAssociatedOpsgenieTeamPayload>;
|
|
16363
|
+
createProjectAssociatedToSecurityContainer?: Maybe<GraphStoreCreateProjectAssociatedToSecurityContainerPayload>;
|
|
16364
|
+
createProjectDisassociatedRepo?: Maybe<GraphStoreCreateProjectDisassociatedRepoPayload>;
|
|
16365
|
+
createProjectDocumentationEntity?: Maybe<GraphStoreCreateProjectDocumentationEntityPayload>;
|
|
16366
|
+
createProjectDocumentationPage?: Maybe<GraphStoreCreateProjectDocumentationPagePayload>;
|
|
16367
|
+
createProjectDocumentationSpace?: Maybe<GraphStoreCreateProjectDocumentationSpacePayload>;
|
|
16368
|
+
createProjectHasSharedVersionWith?: Maybe<GraphStoreCreateProjectHasSharedVersionWithPayload>;
|
|
16369
|
+
createProjectHasVersion?: Maybe<GraphStoreCreateProjectHasVersionPayload>;
|
|
16370
|
+
createSprintRetrospectivePage?: Maybe<GraphStoreCreateSprintRetrospectivePagePayload>;
|
|
16371
|
+
createVersionUserAssociatedFeatureFlag?: Maybe<GraphStoreCreateVersionUserAssociatedFeatureFlagPayload>;
|
|
16372
|
+
createVulnerabilityAssociatedIssue?: Maybe<GraphStoreCreateVulnerabilityAssociatedIssuePayload>;
|
|
16373
|
+
};
|
|
16374
|
+
export type GraphStoreMutationCreateIncidentAssociatedPostIncidentReviewLinkArgs = {
|
|
16375
|
+
input?: InputMaybe<GraphStoreIncidentAssociatedPostIncidentReviewLinkInput>;
|
|
16376
|
+
};
|
|
16377
|
+
export type GraphStoreMutationCreateIncidentHasActionItemArgs = {
|
|
16378
|
+
input?: InputMaybe<GraphStoreIncidentHasActionItemInput>;
|
|
16379
|
+
};
|
|
16380
|
+
export type GraphStoreMutationCreateIncidentLinkedJswIssueArgs = {
|
|
16381
|
+
input?: InputMaybe<GraphStoreIncidentLinkedJswIssueInput>;
|
|
16382
|
+
};
|
|
16383
|
+
export type GraphStoreMutationCreateJswProjectAssociatedComponentArgs = {
|
|
16384
|
+
input?: InputMaybe<GraphStoreJswProjectAssociatedComponentInput>;
|
|
16385
|
+
};
|
|
16386
|
+
export type GraphStoreMutationCreateProjectAssociatedOpsgenieTeamArgs = {
|
|
16387
|
+
input?: InputMaybe<GraphStoreProjectAssociatedOpsgenieTeamInput>;
|
|
16388
|
+
};
|
|
16389
|
+
export type GraphStoreMutationCreateProjectAssociatedToSecurityContainerArgs = {
|
|
16390
|
+
input?: InputMaybe<GraphStoreProjectAssociatedToSecurityContainerInput>;
|
|
16391
|
+
};
|
|
16392
|
+
export type GraphStoreMutationCreateProjectDisassociatedRepoArgs = {
|
|
16393
|
+
input?: InputMaybe<GraphStoreProjectDisassociatedRepoInput>;
|
|
16394
|
+
};
|
|
16395
|
+
export type GraphStoreMutationCreateProjectDocumentationEntityArgs = {
|
|
16396
|
+
input?: InputMaybe<GraphStoreProjectDocumentationEntityInput>;
|
|
16397
|
+
};
|
|
16398
|
+
export type GraphStoreMutationCreateProjectDocumentationPageArgs = {
|
|
16399
|
+
input?: InputMaybe<GraphStoreProjectDocumentationPageInput>;
|
|
16400
|
+
};
|
|
16401
|
+
export type GraphStoreMutationCreateProjectDocumentationSpaceArgs = {
|
|
16402
|
+
input?: InputMaybe<GraphStoreProjectDocumentationSpaceInput>;
|
|
16403
|
+
};
|
|
16404
|
+
export type GraphStoreMutationCreateProjectHasSharedVersionWithArgs = {
|
|
16405
|
+
input?: InputMaybe<GraphStoreProjectHasSharedVersionWithInput>;
|
|
16406
|
+
};
|
|
16407
|
+
export type GraphStoreMutationCreateProjectHasVersionArgs = {
|
|
16408
|
+
input?: InputMaybe<GraphStoreProjectHasVersionInput>;
|
|
16409
|
+
};
|
|
16410
|
+
export type GraphStoreMutationCreateSprintRetrospectivePageArgs = {
|
|
16411
|
+
input?: InputMaybe<GraphStoreSprintRetrospectivePageInput>;
|
|
16412
|
+
};
|
|
16413
|
+
export type GraphStoreMutationCreateVersionUserAssociatedFeatureFlagArgs = {
|
|
16414
|
+
input?: InputMaybe<GraphStoreVersionUserAssociatedFeatureFlagInput>;
|
|
16415
|
+
};
|
|
16416
|
+
export type GraphStoreMutationCreateVulnerabilityAssociatedIssueArgs = {
|
|
16417
|
+
input?: InputMaybe<GraphStoreVulnerabilityAssociatedIssueInput>;
|
|
16418
|
+
};
|
|
16419
|
+
export type GraphStoreProjectAssociatedOpsgenieTeamInput = {
|
|
16420
|
+
relationships: Array<GraphStoreProjectAssociatedOpsgenieTeamRelationship>;
|
|
16421
|
+
};
|
|
16422
|
+
export type GraphStoreProjectAssociatedOpsgenieTeamRelationship = {
|
|
16423
|
+
from: Scalars['ID']['input'];
|
|
16424
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
16425
|
+
to: Scalars['ID']['input'];
|
|
16426
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
16427
|
+
};
|
|
16428
|
+
export type GraphStoreProjectAssociatedToSecurityContainerInput = {
|
|
16429
|
+
relationships: Array<GraphStoreProjectAssociatedToSecurityContainerRelationship>;
|
|
16430
|
+
};
|
|
16431
|
+
export type GraphStoreProjectAssociatedToSecurityContainerRelationship = {
|
|
16432
|
+
from: Scalars['ID']['input'];
|
|
16433
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
16434
|
+
to: Scalars['ID']['input'];
|
|
16435
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
16436
|
+
};
|
|
16437
|
+
export type GraphStoreProjectDisassociatedRepoInput = {
|
|
16438
|
+
relationships: Array<GraphStoreProjectDisassociatedRepoRelationship>;
|
|
16439
|
+
};
|
|
16440
|
+
export type GraphStoreProjectDisassociatedRepoRelationship = {
|
|
16441
|
+
from: Scalars['ID']['input'];
|
|
16442
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
16443
|
+
to: Scalars['ID']['input'];
|
|
16444
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
16445
|
+
};
|
|
16446
|
+
export type GraphStoreProjectDocumentationEntityInput = {
|
|
16447
|
+
relationships: Array<GraphStoreProjectDocumentationEntityRelationship>;
|
|
16448
|
+
};
|
|
16449
|
+
export type GraphStoreProjectDocumentationEntityRelationship = {
|
|
16450
|
+
from: Scalars['ID']['input'];
|
|
16451
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
16452
|
+
to: Scalars['ID']['input'];
|
|
16453
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
16454
|
+
};
|
|
16455
|
+
export type GraphStoreProjectDocumentationPageInput = {
|
|
16456
|
+
relationships: Array<GraphStoreProjectDocumentationPageRelationship>;
|
|
16457
|
+
};
|
|
16458
|
+
export type GraphStoreProjectDocumentationPageRelationship = {
|
|
16459
|
+
from: Scalars['ID']['input'];
|
|
16460
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
16461
|
+
to: Scalars['ID']['input'];
|
|
16462
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
16463
|
+
};
|
|
16464
|
+
export type GraphStoreProjectDocumentationSpaceInput = {
|
|
16465
|
+
relationships: Array<GraphStoreProjectDocumentationSpaceRelationship>;
|
|
16466
|
+
};
|
|
16467
|
+
export type GraphStoreProjectDocumentationSpaceRelationship = {
|
|
16468
|
+
from: Scalars['ID']['input'];
|
|
16469
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
16470
|
+
to: Scalars['ID']['input'];
|
|
16471
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
16472
|
+
};
|
|
16473
|
+
export type GraphStoreProjectHasSharedVersionWithInput = {
|
|
16474
|
+
relationships: Array<GraphStoreProjectHasSharedVersionWithRelationship>;
|
|
16475
|
+
};
|
|
16476
|
+
export type GraphStoreProjectHasSharedVersionWithRelationship = {
|
|
16477
|
+
from: Scalars['ID']['input'];
|
|
16478
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
16479
|
+
to: Scalars['ID']['input'];
|
|
16480
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
16481
|
+
};
|
|
16482
|
+
export type GraphStoreProjectHasVersionInput = {
|
|
16483
|
+
relationships: Array<GraphStoreProjectHasVersionRelationship>;
|
|
16484
|
+
};
|
|
16485
|
+
export type GraphStoreProjectHasVersionRelationship = {
|
|
16486
|
+
from: Scalars['ID']['input'];
|
|
16487
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
16488
|
+
to: Scalars['ID']['input'];
|
|
16489
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
16490
|
+
};
|
|
16491
|
+
export type GraphStoreSimplifiedIssueAssociatedBranchInverseConnection = HasPageInfo & {
|
|
16492
|
+
__typename?: 'GraphStoreSimplifiedIssueAssociatedBranchInverseConnection';
|
|
16493
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedBranchInverseEdge>>>;
|
|
16494
|
+
pageInfo: PageInfo;
|
|
16495
|
+
};
|
|
16496
|
+
export type GraphStoreSimplifiedIssueAssociatedBranchInverseEdge = {
|
|
16497
|
+
__typename?: 'GraphStoreSimplifiedIssueAssociatedBranchInverseEdge';
|
|
16498
|
+
createdAt: Scalars['DateTime']['output'];
|
|
16499
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
16500
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
16501
|
+
node?: Maybe<GraphStoreSimplifiedIssueAssociatedBranchInverseUnion>;
|
|
16502
|
+
};
|
|
16503
|
+
export type GraphStoreSimplifiedIssueAssociatedBranchInverseUnion = JiraIssue;
|
|
16504
|
+
export type GraphStoreSimplifiedIssueAssociatedBuildInverseConnection = HasPageInfo & {
|
|
16505
|
+
__typename?: 'GraphStoreSimplifiedIssueAssociatedBuildInverseConnection';
|
|
16506
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedBuildInverseEdge>>>;
|
|
16507
|
+
pageInfo: PageInfo;
|
|
16508
|
+
};
|
|
16509
|
+
export type GraphStoreSimplifiedIssueAssociatedBuildInverseEdge = {
|
|
16510
|
+
__typename?: 'GraphStoreSimplifiedIssueAssociatedBuildInverseEdge';
|
|
16511
|
+
createdAt: Scalars['DateTime']['output'];
|
|
16512
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
16513
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
16514
|
+
node?: Maybe<GraphStoreSimplifiedIssueAssociatedBuildInverseUnion>;
|
|
16515
|
+
};
|
|
16516
|
+
export type GraphStoreSimplifiedIssueAssociatedBuildInverseUnion = JiraIssue;
|
|
16517
|
+
export type GraphStoreSimplifiedIssueAssociatedCommitInverseConnection = HasPageInfo & {
|
|
16518
|
+
__typename?: 'GraphStoreSimplifiedIssueAssociatedCommitInverseConnection';
|
|
16519
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedCommitInverseEdge>>>;
|
|
16520
|
+
pageInfo: PageInfo;
|
|
16521
|
+
};
|
|
16522
|
+
export type GraphStoreSimplifiedIssueAssociatedCommitInverseEdge = {
|
|
16523
|
+
__typename?: 'GraphStoreSimplifiedIssueAssociatedCommitInverseEdge';
|
|
16524
|
+
createdAt: Scalars['DateTime']['output'];
|
|
16525
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
16526
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
16527
|
+
node?: Maybe<GraphStoreSimplifiedIssueAssociatedCommitInverseUnion>;
|
|
16528
|
+
};
|
|
16529
|
+
export type GraphStoreSimplifiedIssueAssociatedCommitInverseUnion = JiraIssue;
|
|
16530
|
+
export type GraphStoreSimplifiedIssueAssociatedDeploymentInverseConnection = HasPageInfo & {
|
|
16531
|
+
__typename?: 'GraphStoreSimplifiedIssueAssociatedDeploymentInverseConnection';
|
|
16532
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedDeploymentInverseEdge>>>;
|
|
16533
|
+
pageInfo: PageInfo;
|
|
16534
|
+
};
|
|
16535
|
+
export type GraphStoreSimplifiedIssueAssociatedDeploymentInverseEdge = {
|
|
16536
|
+
__typename?: 'GraphStoreSimplifiedIssueAssociatedDeploymentInverseEdge';
|
|
16537
|
+
createdAt: Scalars['DateTime']['output'];
|
|
16538
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
16539
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
16540
|
+
node?: Maybe<GraphStoreSimplifiedIssueAssociatedDeploymentInverseUnion>;
|
|
16541
|
+
};
|
|
16542
|
+
export type GraphStoreSimplifiedIssueAssociatedDeploymentInverseUnion = JiraIssue;
|
|
16543
|
+
export type GraphStoreSimplifiedIssueAssociatedDesignConnection = HasPageInfo & {
|
|
16544
|
+
__typename?: 'GraphStoreSimplifiedIssueAssociatedDesignConnection';
|
|
16545
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedDesignEdge>>>;
|
|
16546
|
+
pageInfo: PageInfo;
|
|
16547
|
+
};
|
|
16548
|
+
export type GraphStoreSimplifiedIssueAssociatedDesignEdge = {
|
|
16549
|
+
__typename?: 'GraphStoreSimplifiedIssueAssociatedDesignEdge';
|
|
16550
|
+
createdAt: Scalars['DateTime']['output'];
|
|
16551
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
16552
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
16553
|
+
node?: Maybe<GraphStoreSimplifiedIssueAssociatedDesignUnion>;
|
|
16554
|
+
};
|
|
16555
|
+
export type GraphStoreSimplifiedIssueAssociatedDesignInverseConnection = HasPageInfo & {
|
|
16556
|
+
__typename?: 'GraphStoreSimplifiedIssueAssociatedDesignInverseConnection';
|
|
16557
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedDesignInverseEdge>>>;
|
|
16558
|
+
pageInfo: PageInfo;
|
|
16559
|
+
};
|
|
16560
|
+
export type GraphStoreSimplifiedIssueAssociatedDesignInverseEdge = {
|
|
16561
|
+
__typename?: 'GraphStoreSimplifiedIssueAssociatedDesignInverseEdge';
|
|
16562
|
+
createdAt: Scalars['DateTime']['output'];
|
|
16563
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
16564
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
16565
|
+
node?: Maybe<GraphStoreSimplifiedIssueAssociatedDesignInverseUnion>;
|
|
16566
|
+
};
|
|
16567
|
+
export type GraphStoreSimplifiedIssueAssociatedDesignInverseUnion = JiraIssue;
|
|
16568
|
+
export type GraphStoreSimplifiedIssueAssociatedDesignUnion = DevOpsDesign;
|
|
16569
|
+
export type GraphStoreSimplifiedIssueAssociatedFeatureFlagInverseConnection = HasPageInfo & {
|
|
16570
|
+
__typename?: 'GraphStoreSimplifiedIssueAssociatedFeatureFlagInverseConnection';
|
|
16571
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedFeatureFlagInverseEdge>>>;
|
|
16572
|
+
pageInfo: PageInfo;
|
|
16573
|
+
};
|
|
16574
|
+
export type GraphStoreSimplifiedIssueAssociatedFeatureFlagInverseEdge = {
|
|
16575
|
+
__typename?: 'GraphStoreSimplifiedIssueAssociatedFeatureFlagInverseEdge';
|
|
16576
|
+
createdAt: Scalars['DateTime']['output'];
|
|
16577
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
16578
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
16579
|
+
node?: Maybe<GraphStoreSimplifiedIssueAssociatedFeatureFlagInverseUnion>;
|
|
16580
|
+
};
|
|
16581
|
+
export type GraphStoreSimplifiedIssueAssociatedFeatureFlagInverseUnion = JiraIssue;
|
|
16582
|
+
export type GraphStoreSimplifiedIssueAssociatedPrConnection = HasPageInfo & {
|
|
16583
|
+
__typename?: 'GraphStoreSimplifiedIssueAssociatedPrConnection';
|
|
16584
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedPrEdge>>>;
|
|
16585
|
+
pageInfo: PageInfo;
|
|
16586
|
+
};
|
|
16587
|
+
export type GraphStoreSimplifiedIssueAssociatedPrEdge = {
|
|
16588
|
+
__typename?: 'GraphStoreSimplifiedIssueAssociatedPrEdge';
|
|
16589
|
+
createdAt: Scalars['DateTime']['output'];
|
|
16590
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
16591
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
16592
|
+
node?: Maybe<GraphStoreSimplifiedIssueAssociatedPrUnion>;
|
|
16593
|
+
};
|
|
16594
|
+
export type GraphStoreSimplifiedIssueAssociatedPrInverseConnection = HasPageInfo & {
|
|
16595
|
+
__typename?: 'GraphStoreSimplifiedIssueAssociatedPrInverseConnection';
|
|
16596
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedPrInverseEdge>>>;
|
|
16597
|
+
pageInfo: PageInfo;
|
|
16598
|
+
};
|
|
16599
|
+
export type GraphStoreSimplifiedIssueAssociatedPrInverseEdge = {
|
|
16600
|
+
__typename?: 'GraphStoreSimplifiedIssueAssociatedPrInverseEdge';
|
|
16601
|
+
createdAt: Scalars['DateTime']['output'];
|
|
16602
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
16603
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
16604
|
+
node?: Maybe<GraphStoreSimplifiedIssueAssociatedPrInverseUnion>;
|
|
16605
|
+
};
|
|
16606
|
+
export type GraphStoreSimplifiedIssueAssociatedPrInverseUnion = JiraIssue;
|
|
16607
|
+
export type GraphStoreSimplifiedIssueAssociatedPrUnion = DevOpsPullRequestDetails;
|
|
16608
|
+
export type GraphStoreSimplifiedIssueAssociatedRemoteLinkInverseConnection = HasPageInfo & {
|
|
16609
|
+
__typename?: 'GraphStoreSimplifiedIssueAssociatedRemoteLinkInverseConnection';
|
|
16610
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedRemoteLinkInverseEdge>>>;
|
|
16611
|
+
pageInfo: PageInfo;
|
|
16612
|
+
};
|
|
16613
|
+
export type GraphStoreSimplifiedIssueAssociatedRemoteLinkInverseEdge = {
|
|
16614
|
+
__typename?: 'GraphStoreSimplifiedIssueAssociatedRemoteLinkInverseEdge';
|
|
16615
|
+
createdAt: Scalars['DateTime']['output'];
|
|
16616
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
16617
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
16618
|
+
node?: Maybe<GraphStoreSimplifiedIssueAssociatedRemoteLinkInverseUnion>;
|
|
16619
|
+
};
|
|
16620
|
+
export type GraphStoreSimplifiedIssueAssociatedRemoteLinkInverseUnion = JiraIssue;
|
|
16621
|
+
export type GraphStoreSimplifiedIssueRecursiveAssociatedPrInverseConnection = HasPageInfo & HasTotal & {
|
|
16622
|
+
__typename?: 'GraphStoreSimplifiedIssueRecursiveAssociatedPrInverseConnection';
|
|
16623
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueRecursiveAssociatedPrInverseEdge>>>;
|
|
16624
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
16625
|
+
pageInfo: PageInfo;
|
|
16626
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
16627
|
+
};
|
|
16628
|
+
export type GraphStoreSimplifiedIssueRecursiveAssociatedPrInverseEdge = {
|
|
16629
|
+
__typename?: 'GraphStoreSimplifiedIssueRecursiveAssociatedPrInverseEdge';
|
|
16630
|
+
createdAt: Scalars['DateTime']['output'];
|
|
16631
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
16632
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
16633
|
+
node?: Maybe<GraphStoreSimplifiedIssueRecursiveAssociatedPrInverseUnion>;
|
|
16634
|
+
};
|
|
16635
|
+
export type GraphStoreSimplifiedIssueRecursiveAssociatedPrInverseUnion = JiraIssue;
|
|
16636
|
+
export type GraphStoreSimplifiedParentIssueHasChildIssueConnection = HasPageInfo & {
|
|
16637
|
+
__typename?: 'GraphStoreSimplifiedParentIssueHasChildIssueConnection';
|
|
16638
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedParentIssueHasChildIssueEdge>>>;
|
|
16639
|
+
pageInfo: PageInfo;
|
|
16640
|
+
};
|
|
16641
|
+
export type GraphStoreSimplifiedParentIssueHasChildIssueEdge = {
|
|
16642
|
+
__typename?: 'GraphStoreSimplifiedParentIssueHasChildIssueEdge';
|
|
16643
|
+
createdAt: Scalars['DateTime']['output'];
|
|
16644
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
16645
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
16646
|
+
node?: Maybe<GraphStoreSimplifiedParentIssueHasChildIssueUnion>;
|
|
16647
|
+
};
|
|
16648
|
+
export type GraphStoreSimplifiedParentIssueHasChildIssueInverseConnection = HasPageInfo & {
|
|
16649
|
+
__typename?: 'GraphStoreSimplifiedParentIssueHasChildIssueInverseConnection';
|
|
16650
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedParentIssueHasChildIssueInverseEdge>>>;
|
|
16651
|
+
pageInfo: PageInfo;
|
|
16652
|
+
};
|
|
16653
|
+
export type GraphStoreSimplifiedParentIssueHasChildIssueInverseEdge = {
|
|
16654
|
+
__typename?: 'GraphStoreSimplifiedParentIssueHasChildIssueInverseEdge';
|
|
16655
|
+
createdAt: Scalars['DateTime']['output'];
|
|
16656
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
16657
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
16658
|
+
node?: Maybe<GraphStoreSimplifiedParentIssueHasChildIssueInverseUnion>;
|
|
16659
|
+
};
|
|
16660
|
+
export type GraphStoreSimplifiedParentIssueHasChildIssueInverseUnion = JiraIssue;
|
|
16661
|
+
export type GraphStoreSimplifiedParentIssueHasChildIssueUnion = JiraIssue;
|
|
16662
|
+
export type GraphStoreSprintRetrospectivePageInput = {
|
|
16663
|
+
relationships: Array<GraphStoreSprintRetrospectivePageRelationship>;
|
|
16664
|
+
};
|
|
16665
|
+
export type GraphStoreSprintRetrospectivePageRelationship = {
|
|
16666
|
+
from: Scalars['ID']['input'];
|
|
16667
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
16668
|
+
to: Scalars['ID']['input'];
|
|
16669
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
16670
|
+
};
|
|
16671
|
+
export type GraphStoreVersionUserAssociatedFeatureFlagInput = {
|
|
16672
|
+
relationships: Array<GraphStoreVersionUserAssociatedFeatureFlagRelationship>;
|
|
16673
|
+
};
|
|
16674
|
+
export type GraphStoreVersionUserAssociatedFeatureFlagRelationship = {
|
|
16675
|
+
from: Scalars['ID']['input'];
|
|
16676
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
16677
|
+
to: Scalars['ID']['input'];
|
|
16678
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
16679
|
+
};
|
|
16680
|
+
export type GraphStoreVulnerabilityAssociatedIssueInput = {
|
|
16681
|
+
relationships: Array<GraphStoreVulnerabilityAssociatedIssueRelationship>;
|
|
16682
|
+
};
|
|
16683
|
+
export type GraphStoreVulnerabilityAssociatedIssueRelationship = {
|
|
16684
|
+
from: Scalars['ID']['input'];
|
|
16685
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
16686
|
+
to: Scalars['ID']['input'];
|
|
16687
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
16688
|
+
};
|
|
16689
|
+
export type GrowthRecContext = {
|
|
16690
|
+
containers?: InputMaybe<Scalars['JSON']['input']>;
|
|
16691
|
+
locale?: InputMaybe<Scalars['String']['input']>;
|
|
16692
|
+
orgId?: InputMaybe<Scalars['ID']['input']>;
|
|
16693
|
+
product?: InputMaybe<Scalars['String']['input']>;
|
|
16694
|
+
sessionId?: InputMaybe<Scalars['ID']['input']>;
|
|
16695
|
+
subproduct?: InputMaybe<Scalars['String']['input']>;
|
|
16696
|
+
tenantId?: InputMaybe<Scalars['ID']['input']>;
|
|
16697
|
+
useCase?: InputMaybe<Scalars['String']['input']>;
|
|
16698
|
+
userId?: InputMaybe<Scalars['ID']['input']>;
|
|
16699
|
+
workspaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
16700
|
+
};
|
|
16701
|
+
export type GrowthRecJiraTemplateRecommendation = GrowthRecRecommendation & {
|
|
16702
|
+
__typename?: 'GrowthRecJiraTemplateRecommendation';
|
|
16703
|
+
entityId: Scalars['ID']['output'];
|
|
16704
|
+
reasons?: Maybe<Array<Scalars['String']['output']>>;
|
|
16705
|
+
};
|
|
16706
|
+
export type GrowthRecProductRecommendation = GrowthRecRecommendation & {
|
|
16707
|
+
__typename?: 'GrowthRecProductRecommendation';
|
|
16708
|
+
entityId: Scalars['ID']['output'];
|
|
16709
|
+
reasons?: Maybe<Array<Scalars['String']['output']>>;
|
|
16710
|
+
};
|
|
16711
|
+
export type GrowthRecQuery = {
|
|
16712
|
+
__typename?: 'GrowthRecQuery';
|
|
16713
|
+
recommendations?: Maybe<GrowthRecRecommendationsResult>;
|
|
16714
|
+
};
|
|
16715
|
+
export type GrowthRecQueryRecommendationsArgs = {
|
|
16716
|
+
context?: InputMaybe<GrowthRecContext>;
|
|
16717
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16718
|
+
rerank?: InputMaybe<Array<GrowthRecRerankCandidate>>;
|
|
16719
|
+
};
|
|
16720
|
+
export type GrowthRecRecommendation = {
|
|
16721
|
+
entityId: Scalars['ID']['output'];
|
|
16722
|
+
reasons?: Maybe<Array<Scalars['String']['output']>>;
|
|
16723
|
+
};
|
|
16724
|
+
export type GrowthRecRecommendations = {
|
|
16725
|
+
__typename?: 'GrowthRecRecommendations';
|
|
16726
|
+
data?: Maybe<Array<GrowthRecRecommendation>>;
|
|
16727
|
+
};
|
|
16728
|
+
export type GrowthRecRecommendationsResult = GrowthRecRecommendations | QueryError;
|
|
16729
|
+
export type GrowthRecRerankCandidate = {
|
|
16730
|
+
entityId: Scalars['String']['input'];
|
|
16731
|
+
};
|
|
16732
|
+
export type HamsAccountDetails = CommerceAccountDetails & {
|
|
16733
|
+
__typename?: 'HamsAccountDetails';
|
|
16734
|
+
invoiceGroup?: Maybe<HamsInvoiceGroup>;
|
|
16735
|
+
};
|
|
16736
|
+
export type HamsEntitlement = CommerceEntitlement & {
|
|
16737
|
+
__typename?: 'HamsEntitlement';
|
|
16738
|
+
accountId?: Maybe<Scalars['String']['output']>;
|
|
16739
|
+
addon?: Maybe<Scalars['Boolean']['output']>;
|
|
16740
|
+
creationDate?: Maybe<Scalars['String']['output']>;
|
|
16741
|
+
currentEdition?: Maybe<Scalars['String']['output']>;
|
|
16742
|
+
editionTransitions?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
16743
|
+
endDate?: Maybe<Scalars['String']['output']>;
|
|
16744
|
+
entitlementGroupId?: Maybe<Scalars['String']['output']>;
|
|
16745
|
+
entitlementId?: Maybe<Scalars['String']['output']>;
|
|
16746
|
+
entitlementMigrationEvaluation?: Maybe<HamsEntitlementMigrationEvaluation>;
|
|
16747
|
+
entitlementSource?: Maybe<Scalars['String']['output']>;
|
|
16748
|
+
experienceCapabilities?: Maybe<HamsEntitlementExperienceCapabilities>;
|
|
16749
|
+
futureEdition?: Maybe<Scalars['String']['output']>;
|
|
16750
|
+
futureEditionTransition?: Maybe<Scalars['String']['output']>;
|
|
16751
|
+
id: Scalars['ID']['output'];
|
|
16752
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
16753
|
+
offering?: Maybe<HamsOffering>;
|
|
16754
|
+
overriddenEdition?: Maybe<Scalars['String']['output']>;
|
|
16755
|
+
preDunning?: Maybe<HamsEntitlementPreDunning>;
|
|
16756
|
+
productKey?: Maybe<Scalars['String']['output']>;
|
|
16757
|
+
sen?: Maybe<Scalars['String']['output']>;
|
|
16758
|
+
shortTrial?: Maybe<Scalars['Boolean']['output']>;
|
|
16759
|
+
slug?: Maybe<Scalars['String']['output']>;
|
|
16760
|
+
startDate?: Maybe<Scalars['String']['output']>;
|
|
16761
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
16762
|
+
subscription?: Maybe<HamsSubscription>;
|
|
16763
|
+
suspended?: Maybe<Scalars['Boolean']['output']>;
|
|
16764
|
+
transactionAccount?: Maybe<HamsTransactionAccount>;
|
|
16765
|
+
trialEdition?: Maybe<Scalars['String']['output']>;
|
|
16766
|
+
trialEditionEndDate?: Maybe<Scalars['String']['output']>;
|
|
16767
|
+
trialEndDate?: Maybe<Scalars['String']['output']>;
|
|
16768
|
+
};
|
|
16769
|
+
export type HamsEntitlementExperienceCapabilities = CommerceEntitlementExperienceCapabilities & {
|
|
16770
|
+
__typename?: 'HamsEntitlementExperienceCapabilities';
|
|
16771
|
+
changeOffering?: Maybe<HamsExperienceCapability>;
|
|
16772
|
+
};
|
|
16773
|
+
export type HamsEntitlementExperienceCapabilitiesChangeOfferingArgs = {
|
|
16774
|
+
offeringKey?: InputMaybe<Scalars['ID']['input']>;
|
|
16775
|
+
};
|
|
16776
|
+
export type HamsEntitlementMigrationEvaluation = {
|
|
16777
|
+
__typename?: 'HamsEntitlementMigrationEvaluation';
|
|
16778
|
+
btfSourceAccountId?: Maybe<Scalars['String']['output']>;
|
|
16779
|
+
usageLimit?: Maybe<Scalars['Int']['output']>;
|
|
16780
|
+
usageType?: Maybe<Scalars['String']['output']>;
|
|
16781
|
+
};
|
|
16782
|
+
export type HamsEntitlementPreDunning = CommerceEntitlementPreDunning & {
|
|
16783
|
+
__typename?: 'HamsEntitlementPreDunning';
|
|
16784
|
+
firstPreDunningEndTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
16785
|
+
status?: Maybe<CcpEntitlementPreDunningStatus>;
|
|
16786
|
+
};
|
|
16787
|
+
export type HamsExperienceCapability = CommerceExperienceCapability & {
|
|
16788
|
+
__typename?: 'HamsExperienceCapability';
|
|
16789
|
+
experienceUrl?: Maybe<Scalars['String']['output']>;
|
|
16790
|
+
isAvailableToUser?: Maybe<Scalars['Boolean']['output']>;
|
|
16791
|
+
};
|
|
16792
|
+
export type HamsInvoiceGroup = CommerceInvoiceGroup & {
|
|
16793
|
+
__typename?: 'HamsInvoiceGroup';
|
|
16794
|
+
experienceCapabilities?: Maybe<HamsInvoiceGroupExperienceCapabilities>;
|
|
16795
|
+
invoiceable?: Maybe<Scalars['Boolean']['output']>;
|
|
16796
|
+
};
|
|
16797
|
+
export type HamsInvoiceGroupExperienceCapabilities = CommerceInvoiceGroupExperienceCapabilities & {
|
|
16798
|
+
__typename?: 'HamsInvoiceGroupExperienceCapabilities';
|
|
16799
|
+
configurePayment?: Maybe<HamsExperienceCapability>;
|
|
16800
|
+
};
|
|
16801
|
+
export type HamsOffering = CommerceOffering & {
|
|
16802
|
+
__typename?: 'HamsOffering';
|
|
16803
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
16804
|
+
};
|
|
16805
|
+
export type HamsPricingPlan = CommercePricingPlan & {
|
|
16806
|
+
__typename?: 'HamsPricingPlan';
|
|
16807
|
+
primaryCycle?: Maybe<HamsPrimaryCycle>;
|
|
16808
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
16809
|
+
};
|
|
16810
|
+
export type HamsPrimaryCycle = CommercePrimaryCycle & {
|
|
16811
|
+
__typename?: 'HamsPrimaryCycle';
|
|
16812
|
+
interval?: Maybe<CcpBillingInterval>;
|
|
16813
|
+
};
|
|
16814
|
+
export type HamsSubscription = CommerceSubscription & {
|
|
16815
|
+
__typename?: 'HamsSubscription';
|
|
16816
|
+
accountDetails?: Maybe<HamsAccountDetails>;
|
|
16817
|
+
pricingPlan?: Maybe<HamsPricingPlan>;
|
|
16818
|
+
trial?: Maybe<HamsTrial>;
|
|
16819
|
+
};
|
|
16820
|
+
export type HamsTransactionAccount = CommerceTransactionAccount & {
|
|
12954
16821
|
__typename?: 'HamsTransactionAccount';
|
|
12955
16822
|
experienceCapabilities?: Maybe<HamsTransactionAccountExperienceCapabilities>;
|
|
12956
16823
|
};
|
|
@@ -14872,6 +18739,29 @@ export type JiraAnswerApprovalDecisionPayload = Payload & {
|
|
|
14872
18739
|
errors?: Maybe<Array<MutationError>>;
|
|
14873
18740
|
success: Scalars['Boolean']['output'];
|
|
14874
18741
|
};
|
|
18742
|
+
export type JiraAppConfigState = Node & {
|
|
18743
|
+
__typename?: 'JiraAppConfigState';
|
|
18744
|
+
appDisplayName?: Maybe<Scalars['String']['output']>;
|
|
18745
|
+
appIconLink?: Maybe<Scalars['String']['output']>;
|
|
18746
|
+
config?: Maybe<JiraConfigStateConnection>;
|
|
18747
|
+
id: Scalars['ID']['output'];
|
|
18748
|
+
providerTypes?: Maybe<Array<JiraConfigStateProviderType>>;
|
|
18749
|
+
};
|
|
18750
|
+
export type JiraAppConfigStateConfigArgs = {
|
|
18751
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
18752
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
18753
|
+
};
|
|
18754
|
+
export type JiraAppConfigStateConnection = {
|
|
18755
|
+
__typename?: 'JiraAppConfigStateConnection';
|
|
18756
|
+
edges?: Maybe<Array<JiraAppConfigStateEdge>>;
|
|
18757
|
+
nodes?: Maybe<Array<JiraAppConfigState>>;
|
|
18758
|
+
pageInfo: PageInfo;
|
|
18759
|
+
};
|
|
18760
|
+
export type JiraAppConfigStateEdge = {
|
|
18761
|
+
__typename?: 'JiraAppConfigStateEdge';
|
|
18762
|
+
cursor: Scalars['String']['output'];
|
|
18763
|
+
node?: Maybe<JiraAppConfigState>;
|
|
18764
|
+
};
|
|
14875
18765
|
export type JiraApplicationProperty = Node & {
|
|
14876
18766
|
__typename?: 'JiraApplicationProperty';
|
|
14877
18767
|
allowedValues?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -15020,10 +18910,15 @@ export type JiraAttachment = {
|
|
|
15020
18910
|
fileSize?: Maybe<Scalars['Long']['output']>;
|
|
15021
18911
|
hasRestrictedParent?: Maybe<Scalars['Boolean']['output']>;
|
|
15022
18912
|
mediaApiFileId?: Maybe<Scalars['String']['output']>;
|
|
18913
|
+
mediaReadToken?: Maybe<Scalars['String']['output']>;
|
|
15023
18914
|
mimeType?: Maybe<Scalars['String']['output']>;
|
|
15024
18915
|
parentId?: Maybe<Scalars['String']['output']>;
|
|
15025
18916
|
parentName?: Maybe<Scalars['String']['output']>;
|
|
15026
18917
|
};
|
|
18918
|
+
export type JiraAttachmentMediaReadTokenArgs = {
|
|
18919
|
+
durationInSeconds: Scalars['Int']['input'];
|
|
18920
|
+
maxTokenLength: Scalars['Int']['input'];
|
|
18921
|
+
};
|
|
15027
18922
|
export type JiraAttachmentConnection = {
|
|
15028
18923
|
__typename?: 'JiraAttachmentConnection';
|
|
15029
18924
|
edges?: Maybe<Array<Maybe<JiraAttachmentEdge>>>;
|
|
@@ -15768,17 +19663,18 @@ export type JiraComponentsFieldPayload = Payload & {
|
|
|
15768
19663
|
};
|
|
15769
19664
|
export type JiraConfigState = {
|
|
15770
19665
|
__typename?: 'JiraConfigState';
|
|
15771
|
-
|
|
19666
|
+
appId: Scalars['ID']['output'];
|
|
15772
19667
|
configureLink?: Maybe<Scalars['String']['output']>;
|
|
15773
19668
|
configureText?: Maybe<Scalars['String']['output']>;
|
|
15774
19669
|
status?: Maybe<JiraConfigStateConfigurationStatus>;
|
|
15775
19670
|
workspaceId: Scalars['ID']['output'];
|
|
15776
19671
|
};
|
|
15777
19672
|
export declare enum JiraConfigStateConfigurationStatus {
|
|
15778
|
-
|
|
19673
|
+
Configured = "CONFIGURED",
|
|
15779
19674
|
NotConfigured = "NOT_CONFIGURED",
|
|
15780
19675
|
NotSet = "NOT_SET",
|
|
15781
|
-
ProviderActionConfigured = "PROVIDER_ACTION_CONFIGURED"
|
|
19676
|
+
ProviderActionConfigured = "PROVIDER_ACTION_CONFIGURED",
|
|
19677
|
+
ProviderActionNotConfigured = "PROVIDER_ACTION_NOT_CONFIGURED"
|
|
15782
19678
|
}
|
|
15783
19679
|
export type JiraConfigStateConnection = {
|
|
15784
19680
|
__typename?: 'JiraConfigStateConnection';
|
|
@@ -15791,6 +19687,16 @@ export type JiraConfigStateEdge = {
|
|
|
15791
19687
|
cursor: Scalars['String']['output'];
|
|
15792
19688
|
node?: Maybe<JiraConfigState>;
|
|
15793
19689
|
};
|
|
19690
|
+
export declare enum JiraConfigStateProviderType {
|
|
19691
|
+
Builds = "BUILDS",
|
|
19692
|
+
Deployments = "DEPLOYMENTS",
|
|
19693
|
+
Designs = "DESIGNS",
|
|
19694
|
+
DevelopmentInfo = "DEVELOPMENT_INFO",
|
|
19695
|
+
FeatureFlags = "FEATURE_FLAGS",
|
|
19696
|
+
RemoteLinks = "REMOTE_LINKS",
|
|
19697
|
+
Security = "SECURITY",
|
|
19698
|
+
Unknown = "UNKNOWN"
|
|
19699
|
+
}
|
|
15794
19700
|
export type JiraConnectDateTimeField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
15795
19701
|
__typename?: 'JiraConnectDateTimeField';
|
|
15796
19702
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -16203,7 +20109,8 @@ export type JiraDevOpsPullRequestDetails = {
|
|
|
16203
20109
|
export type JiraDevOpsQuery = {
|
|
16204
20110
|
__typename?: 'JiraDevOpsQuery';
|
|
16205
20111
|
bitbucketIntegration?: Maybe<JiraBitbucketIntegration>;
|
|
16206
|
-
configState?: Maybe<
|
|
20112
|
+
configState?: Maybe<JiraAppConfigState>;
|
|
20113
|
+
configStates?: Maybe<JiraAppConfigStateConnection>;
|
|
16207
20114
|
devOpsIssuePanel?: Maybe<JiraDevOpsIssuePanel>;
|
|
16208
20115
|
toolchain?: Maybe<JiraToolchain>;
|
|
16209
20116
|
};
|
|
@@ -16216,6 +20123,10 @@ export type JiraDevOpsQueryConfigStateArgs = {
|
|
|
16216
20123
|
cloudId: Scalars['ID']['input'];
|
|
16217
20124
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16218
20125
|
};
|
|
20126
|
+
export type JiraDevOpsQueryConfigStatesArgs = {
|
|
20127
|
+
cloudId: Scalars['ID']['input'];
|
|
20128
|
+
providerTypeFilter?: InputMaybe<Array<JiraConfigStateProviderType>>;
|
|
20129
|
+
};
|
|
16219
20130
|
export type JiraDevOpsQueryDevOpsIssuePanelArgs = {
|
|
16220
20131
|
issueId: Scalars['ID']['input'];
|
|
16221
20132
|
};
|
|
@@ -19611,10 +23522,15 @@ export type JiraPlatformAttachment = JiraAttachment & Node & {
|
|
|
19611
23522
|
hasRestrictedParent?: Maybe<Scalars['Boolean']['output']>;
|
|
19612
23523
|
id: Scalars['ID']['output'];
|
|
19613
23524
|
mediaApiFileId?: Maybe<Scalars['String']['output']>;
|
|
23525
|
+
mediaReadToken?: Maybe<Scalars['String']['output']>;
|
|
19614
23526
|
mimeType?: Maybe<Scalars['String']['output']>;
|
|
19615
23527
|
parentId?: Maybe<Scalars['String']['output']>;
|
|
19616
23528
|
parentName?: Maybe<Scalars['String']['output']>;
|
|
19617
23529
|
};
|
|
23530
|
+
export type JiraPlatformAttachmentMediaReadTokenArgs = {
|
|
23531
|
+
durationInSeconds: Scalars['Int']['input'];
|
|
23532
|
+
maxTokenLength: Scalars['Int']['input'];
|
|
23533
|
+
};
|
|
19618
23534
|
export type JiraPlatformComment = JiraComment & Node & {
|
|
19619
23535
|
__typename?: 'JiraPlatformComment';
|
|
19620
23536
|
author?: Maybe<User>;
|
|
@@ -20363,6 +24279,8 @@ export type JiraQuery = {
|
|
|
20363
24279
|
jwmViewItems?: Maybe<JiraWorkManagementViewItemConnectionResult>;
|
|
20364
24280
|
labelsFieldOptions?: Maybe<JiraLabelConnection>;
|
|
20365
24281
|
lockedIssueTypeIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
24282
|
+
mediaClientId?: Maybe<Scalars['String']['output']>;
|
|
24283
|
+
mediaExternalEndpointUrl?: Maybe<Scalars['String']['output']>;
|
|
20366
24284
|
naturalLanguageToJql?: Maybe<JiraJqlFromNaturalLanguage>;
|
|
20367
24285
|
navigationUIState?: Maybe<JiraNavigationUiStateUserProperty>;
|
|
20368
24286
|
notificationGlobalPreference?: Maybe<JiraNotificationGlobalPreference>;
|
|
@@ -20730,6 +24648,12 @@ export type JiraQueryLabelsFieldOptionsArgs = {
|
|
|
20730
24648
|
export type JiraQueryLockedIssueTypeIdsArgs = {
|
|
20731
24649
|
cloudId: Scalars['ID']['input'];
|
|
20732
24650
|
};
|
|
24651
|
+
export type JiraQueryMediaClientIdArgs = {
|
|
24652
|
+
cloudId: Scalars['ID']['input'];
|
|
24653
|
+
};
|
|
24654
|
+
export type JiraQueryMediaExternalEndpointUrlArgs = {
|
|
24655
|
+
cloudId: Scalars['ID']['input'];
|
|
24656
|
+
};
|
|
20733
24657
|
export type JiraQueryNaturalLanguageToJqlArgs = {
|
|
20734
24658
|
cloudId: Scalars['ID']['input'];
|
|
20735
24659
|
input: JiraNaturalLanguageToJqlInput;
|
|
@@ -21540,11 +25464,16 @@ export type JiraServiceManagementAttachment = JiraAttachment & Node & {
|
|
|
21540
25464
|
hasRestrictedParent?: Maybe<Scalars['Boolean']['output']>;
|
|
21541
25465
|
id: Scalars['ID']['output'];
|
|
21542
25466
|
mediaApiFileId?: Maybe<Scalars['String']['output']>;
|
|
25467
|
+
mediaReadToken?: Maybe<Scalars['String']['output']>;
|
|
21543
25468
|
mimeType?: Maybe<Scalars['String']['output']>;
|
|
21544
25469
|
parentCommentVisibility?: Maybe<JiraServiceManagementCommentVisibility>;
|
|
21545
25470
|
parentId?: Maybe<Scalars['String']['output']>;
|
|
21546
25471
|
parentName?: Maybe<Scalars['String']['output']>;
|
|
21547
25472
|
};
|
|
25473
|
+
export type JiraServiceManagementAttachmentMediaReadTokenArgs = {
|
|
25474
|
+
durationInSeconds: Scalars['Int']['input'];
|
|
25475
|
+
maxTokenLength: Scalars['Int']['input'];
|
|
25476
|
+
};
|
|
21548
25477
|
export type JiraServiceManagementAttachmentPreviewField = JiraServiceManagementRequestTypeFieldCommon & {
|
|
21549
25478
|
__typename?: 'JiraServiceManagementAttachmentPreviewField';
|
|
21550
25479
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -24162,6 +28091,11 @@ export type ListStorageInput = {
|
|
|
24162
28091
|
environmentId: Scalars['ID']['input'];
|
|
24163
28092
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
24164
28093
|
};
|
|
28094
|
+
export type LocalisedString = {
|
|
28095
|
+
__typename?: 'LocalisedString';
|
|
28096
|
+
locale?: Maybe<Scalars['String']['output']>;
|
|
28097
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
28098
|
+
};
|
|
24165
28099
|
export type LocalizationContext = {
|
|
24166
28100
|
locale?: Maybe<Scalars['String']['output']>;
|
|
24167
28101
|
zoneinfo?: Maybe<Scalars['String']['output']>;
|
|
@@ -24765,6 +28699,7 @@ export type Mutation = {
|
|
|
24765
28699
|
ecosystem?: Maybe<EcosystemMutation>;
|
|
24766
28700
|
editSprint?: Maybe<SprintResponse>;
|
|
24767
28701
|
ersLifecycle?: Maybe<ErsLifecycleMutation>;
|
|
28702
|
+
graphStore?: Maybe<GraphStoreMutation>;
|
|
24768
28703
|
helpCenter?: Maybe<HelpCenterMutationApi>;
|
|
24769
28704
|
helpExternalResource?: Maybe<HelpExternalResourceMutationApi>;
|
|
24770
28705
|
helpLayout?: Maybe<HelpLayoutMutationApi>;
|
|
@@ -25442,6 +29377,7 @@ export declare enum NlpDisclaimer {
|
|
|
25442
29377
|
}
|
|
25443
29378
|
export declare enum NlpErrorState {
|
|
25444
29379
|
AcceptableUseViolations = "ACCEPTABLE_USE_VIOLATIONS",
|
|
29380
|
+
AiDisabled = "AI_DISABLED",
|
|
25445
29381
|
NoAnswer = "NO_ANSWER",
|
|
25446
29382
|
NoAnswerHydration = "NO_ANSWER_HYDRATION",
|
|
25447
29383
|
NoAnswerKeywords = "NO_ANSWER_KEYWORDS",
|
|
@@ -27349,6 +31285,8 @@ export type ProductListing = {
|
|
|
27349
31285
|
additionalIds: ProductListingAdditionalIds;
|
|
27350
31286
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
27351
31287
|
links: ProductListingLinks;
|
|
31288
|
+
localisedShortDescription?: Maybe<Array<LocalisedString>>;
|
|
31289
|
+
localisedTagLine?: Maybe<Array<LocalisedString>>;
|
|
27352
31290
|
logoUrl?: Maybe<Scalars['String']['output']>;
|
|
27353
31291
|
name: Scalars['String']['output'];
|
|
27354
31292
|
productId: Scalars['ID']['output'];
|
|
@@ -27451,6 +31389,7 @@ export type Query = {
|
|
|
27451
31389
|
extensionContexts?: Maybe<Array<ExtensionContext>>;
|
|
27452
31390
|
extensionsEcho?: Maybe<Scalars['String']['output']>;
|
|
27453
31391
|
featureRelease?: Maybe<FeatureRelease>;
|
|
31392
|
+
graphStore?: Maybe<GraphStore>;
|
|
27454
31393
|
growthRecommendations?: Maybe<GrowthRecQuery>;
|
|
27455
31394
|
helpCenter?: Maybe<HelpCenterQueryApi>;
|
|
27456
31395
|
helpExternalResource?: Maybe<HelpExternalResourceQueryApi>;
|
|
@@ -27889,9 +31828,11 @@ export type QueryPolarisViewArrangementInfoArgs = {
|
|
|
27889
31828
|
};
|
|
27890
31829
|
export type QueryProductListingArgs = {
|
|
27891
31830
|
id: Scalars['ID']['input'];
|
|
31831
|
+
locales?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
27892
31832
|
};
|
|
27893
31833
|
export type QueryProductListingsArgs = {
|
|
27894
31834
|
ids: Array<Scalars['ID']['input']>;
|
|
31835
|
+
locales?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
27895
31836
|
};
|
|
27896
31837
|
export type QueryReleaseNoteArgs = {
|
|
27897
31838
|
id: Scalars['String']['input'];
|
|
@@ -31494,7 +35435,7 @@ export type ToolchainAssociateEntityInput = {
|
|
|
31494
35435
|
fromId: Scalars['ID']['input'];
|
|
31495
35436
|
toEntityUrl: Scalars['URL']['input'];
|
|
31496
35437
|
};
|
|
31497
|
-
export type ToolchainAssociatedContainer = DevOpsDocument | DevOpsRepository;
|
|
35438
|
+
export type ToolchainAssociatedContainer = DevOpsDocument | DevOpsRepository | DevOpsService;
|
|
31498
35439
|
export type ToolchainAssociatedEntity = DevOpsDesign;
|
|
31499
35440
|
export type ToolchainCheck3Lo = {
|
|
31500
35441
|
__typename?: 'ToolchainCheck3LO';
|