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