@forge/cli-shared 5.0.0-next.2-experimental-9e36838 → 5.0.0-next.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +3 -35
- package/out/graphql/graphql-types.d.ts +500 -0
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +47 -11
- package/package.json +2 -2
|
@@ -8639,6 +8639,15 @@ export declare type CustomerServiceCustomDetailConfigMetadataUpdatePayload = Pay
|
|
|
8639
8639
|
success: Scalars['Boolean']['output'];
|
|
8640
8640
|
successfullyUpdatedCustomDetailConfig?: Maybe<CustomerServiceCustomDetailConfigMetadata>;
|
|
8641
8641
|
};
|
|
8642
|
+
export declare enum CustomerServiceCustomDetailCreateErrorCode {
|
|
8643
|
+
ColorNotSaved = "COLOR_NOT_SAVED"
|
|
8644
|
+
}
|
|
8645
|
+
export declare type CustomerServiceCustomDetailCreateErrorExtension = MutationErrorExtension & {
|
|
8646
|
+
__typename?: 'CustomerServiceCustomDetailCreateErrorExtension';
|
|
8647
|
+
errorCode?: Maybe<CustomerServiceCustomDetailCreateErrorCode>;
|
|
8648
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
8649
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
8650
|
+
};
|
|
8642
8651
|
export declare type CustomerServiceCustomDetailCreateInput = {
|
|
8643
8652
|
contextConfigurations?: InputMaybe<Array<CustomerServiceContextConfigurationInput>>;
|
|
8644
8653
|
customDetailEntityType: CustomerServiceCustomDetailsEntityType;
|
|
@@ -12332,6 +12341,7 @@ export declare type ForgeMetricsQuery = {
|
|
|
12332
12341
|
apiRequestLatencyValue: ForgeMetricsApiRequestLatencyValueResult;
|
|
12333
12342
|
appId: Scalars['ID']['output'];
|
|
12334
12343
|
appMetrics: ForgeMetricsOtlpResult;
|
|
12344
|
+
cacheHitRate: ForgeMetricsSuccessRateResult;
|
|
12335
12345
|
chartInsight: ForgeMetricsChartInsightResult;
|
|
12336
12346
|
errors: ForgeMetricsErrorsResult;
|
|
12337
12347
|
errorsValue: ForgeMetricsErrorsValueResult;
|
|
@@ -12362,6 +12372,9 @@ export declare type ForgeMetricsQueryApiRequestLatencyValueArgs = {
|
|
|
12362
12372
|
export declare type ForgeMetricsQueryAppMetricsArgs = {
|
|
12363
12373
|
query: ForgeMetricsOtlpQueryInput;
|
|
12364
12374
|
};
|
|
12375
|
+
export declare type ForgeMetricsQueryCacheHitRateArgs = {
|
|
12376
|
+
query: ForgeMetricsApiRequestQueryInput;
|
|
12377
|
+
};
|
|
12365
12378
|
export declare type ForgeMetricsQueryChartInsightArgs = {
|
|
12366
12379
|
query: ForgeMetricsChartInsightQueryInput;
|
|
12367
12380
|
};
|
|
@@ -16196,14 +16209,18 @@ export declare type GraphStore = {
|
|
|
16196
16209
|
issueAssociatedBranchInverse?: Maybe<GraphStoreSimplifiedIssueAssociatedBranchInverseConnection>;
|
|
16197
16210
|
issueAssociatedBranchInverseRelationship?: Maybe<GraphStoreFullIssueAssociatedBranchConnection>;
|
|
16198
16211
|
issueAssociatedBranchRelationship?: Maybe<GraphStoreFullIssueAssociatedBranchConnection>;
|
|
16212
|
+
issueAssociatedBuildBatch?: Maybe<GraphStoreBatchIssueAssociatedBuildConnection>;
|
|
16199
16213
|
issueAssociatedBuildInverse?: Maybe<GraphStoreSimplifiedIssueAssociatedBuildInverseConnection>;
|
|
16214
|
+
issueAssociatedBuildInverseBatch?: Maybe<GraphStoreBatchIssueAssociatedBuildConnection>;
|
|
16200
16215
|
issueAssociatedBuildInverseRelationship?: Maybe<GraphStoreFullIssueAssociatedBuildConnection>;
|
|
16201
16216
|
issueAssociatedBuildRelationship?: Maybe<GraphStoreFullIssueAssociatedBuildConnection>;
|
|
16202
16217
|
issueAssociatedCommitInverse?: Maybe<GraphStoreSimplifiedIssueAssociatedCommitInverseConnection>;
|
|
16203
16218
|
issueAssociatedCommitInverseRelationship?: Maybe<GraphStoreFullIssueAssociatedCommitConnection>;
|
|
16204
16219
|
issueAssociatedCommitRelationship?: Maybe<GraphStoreFullIssueAssociatedCommitConnection>;
|
|
16205
16220
|
issueAssociatedDeployment?: Maybe<GraphStoreSimplifiedIssueAssociatedDeploymentConnection>;
|
|
16221
|
+
issueAssociatedDeploymentBatch?: Maybe<GraphStoreBatchIssueAssociatedDeploymentConnection>;
|
|
16206
16222
|
issueAssociatedDeploymentInverse?: Maybe<GraphStoreSimplifiedIssueAssociatedDeploymentInverseConnection>;
|
|
16223
|
+
issueAssociatedDeploymentInverseBatch?: Maybe<GraphStoreBatchIssueAssociatedDeploymentConnection>;
|
|
16207
16224
|
issueAssociatedDeploymentInverseRelationship?: Maybe<GraphStoreFullIssueAssociatedDeploymentConnection>;
|
|
16208
16225
|
issueAssociatedDeploymentRelationship?: Maybe<GraphStoreFullIssueAssociatedDeploymentConnection>;
|
|
16209
16226
|
issueAssociatedDesign?: Maybe<GraphStoreSimplifiedIssueAssociatedDesignConnection>;
|
|
@@ -16764,11 +16781,21 @@ export declare type GraphStoreIssueAssociatedBranchRelationshipArgs = {
|
|
|
16764
16781
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16765
16782
|
id: Scalars['ID']['input'];
|
|
16766
16783
|
};
|
|
16784
|
+
export declare type GraphStoreIssueAssociatedBuildBatchArgs = {
|
|
16785
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
16786
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16787
|
+
ids: Array<Scalars['ID']['input']>;
|
|
16788
|
+
};
|
|
16767
16789
|
export declare type GraphStoreIssueAssociatedBuildInverseArgs = {
|
|
16768
16790
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
16769
16791
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16770
16792
|
id: Scalars['ID']['input'];
|
|
16771
16793
|
};
|
|
16794
|
+
export declare type GraphStoreIssueAssociatedBuildInverseBatchArgs = {
|
|
16795
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
16796
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16797
|
+
ids: Array<Scalars['ID']['input']>;
|
|
16798
|
+
};
|
|
16772
16799
|
export declare type GraphStoreIssueAssociatedBuildInverseRelationshipArgs = {
|
|
16773
16800
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
16774
16801
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -16799,11 +16826,21 @@ export declare type GraphStoreIssueAssociatedDeploymentArgs = {
|
|
|
16799
16826
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16800
16827
|
id: Scalars['ID']['input'];
|
|
16801
16828
|
};
|
|
16829
|
+
export declare type GraphStoreIssueAssociatedDeploymentBatchArgs = {
|
|
16830
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
16831
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16832
|
+
ids: Array<Scalars['ID']['input']>;
|
|
16833
|
+
};
|
|
16802
16834
|
export declare type GraphStoreIssueAssociatedDeploymentInverseArgs = {
|
|
16803
16835
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
16804
16836
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16805
16837
|
id: Scalars['ID']['input'];
|
|
16806
16838
|
};
|
|
16839
|
+
export declare type GraphStoreIssueAssociatedDeploymentInverseBatchArgs = {
|
|
16840
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
16841
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16842
|
+
ids: Array<Scalars['ID']['input']>;
|
|
16843
|
+
};
|
|
16807
16844
|
export declare type GraphStoreIssueAssociatedDeploymentInverseRelationshipArgs = {
|
|
16808
16845
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
16809
16846
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -18502,6 +18539,86 @@ export declare type GraphStoreBatchIncidentLinkedJswIssueStartNode = Node & {
|
|
|
18502
18539
|
id: Scalars['ID']['output'];
|
|
18503
18540
|
};
|
|
18504
18541
|
export declare type GraphStoreBatchIncidentLinkedJswIssueStartUnion = DevOpsOperationsIncidentDetails | JiraIssue;
|
|
18542
|
+
export declare type GraphStoreBatchIssueAssociatedBuildConnection = HasPageInfo & {
|
|
18543
|
+
__typename?: 'GraphStoreBatchIssueAssociatedBuildConnection';
|
|
18544
|
+
edges: Array<Maybe<GraphStoreBatchIssueAssociatedBuildEdge>>;
|
|
18545
|
+
nodes: Array<Maybe<GraphStoreBatchIssueAssociatedBuildNode>>;
|
|
18546
|
+
pageInfo: PageInfo;
|
|
18547
|
+
};
|
|
18548
|
+
export declare type GraphStoreBatchIssueAssociatedBuildEdge = {
|
|
18549
|
+
__typename?: 'GraphStoreBatchIssueAssociatedBuildEdge';
|
|
18550
|
+
node: GraphStoreBatchIssueAssociatedBuildInnerConnection;
|
|
18551
|
+
};
|
|
18552
|
+
export declare type GraphStoreBatchIssueAssociatedBuildEndNode = Node & {
|
|
18553
|
+
__typename?: 'GraphStoreBatchIssueAssociatedBuildEndNode';
|
|
18554
|
+
id: Scalars['ID']['output'];
|
|
18555
|
+
};
|
|
18556
|
+
export declare type GraphStoreBatchIssueAssociatedBuildInnerConnection = {
|
|
18557
|
+
__typename?: 'GraphStoreBatchIssueAssociatedBuildInnerConnection';
|
|
18558
|
+
edges: Array<Maybe<GraphStoreBatchIssueAssociatedBuildInnerEdge>>;
|
|
18559
|
+
nodes: Array<Maybe<GraphStoreBatchIssueAssociatedBuildNode>>;
|
|
18560
|
+
requestedId: Scalars['ID']['output'];
|
|
18561
|
+
};
|
|
18562
|
+
export declare type GraphStoreBatchIssueAssociatedBuildInnerEdge = {
|
|
18563
|
+
__typename?: 'GraphStoreBatchIssueAssociatedBuildInnerEdge';
|
|
18564
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
18565
|
+
node: GraphStoreBatchIssueAssociatedBuildNode;
|
|
18566
|
+
};
|
|
18567
|
+
export declare type GraphStoreBatchIssueAssociatedBuildNode = Node & {
|
|
18568
|
+
__typename?: 'GraphStoreBatchIssueAssociatedBuildNode';
|
|
18569
|
+
createdAt: Scalars['DateTime']['output'];
|
|
18570
|
+
from: GraphStoreBatchIssueAssociatedBuildStartNode;
|
|
18571
|
+
id: Scalars['ID']['output'];
|
|
18572
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
18573
|
+
to: GraphStoreBatchIssueAssociatedBuildEndNode;
|
|
18574
|
+
};
|
|
18575
|
+
export declare type GraphStoreBatchIssueAssociatedBuildStartNode = Node & {
|
|
18576
|
+
__typename?: 'GraphStoreBatchIssueAssociatedBuildStartNode';
|
|
18577
|
+
data?: Maybe<GraphStoreBatchIssueAssociatedBuildStartUnion>;
|
|
18578
|
+
id: Scalars['ID']['output'];
|
|
18579
|
+
};
|
|
18580
|
+
export declare type GraphStoreBatchIssueAssociatedBuildStartUnion = JiraIssue;
|
|
18581
|
+
export declare type GraphStoreBatchIssueAssociatedDeploymentConnection = HasPageInfo & {
|
|
18582
|
+
__typename?: 'GraphStoreBatchIssueAssociatedDeploymentConnection';
|
|
18583
|
+
edges: Array<Maybe<GraphStoreBatchIssueAssociatedDeploymentEdge>>;
|
|
18584
|
+
nodes: Array<Maybe<GraphStoreBatchIssueAssociatedDeploymentNode>>;
|
|
18585
|
+
pageInfo: PageInfo;
|
|
18586
|
+
};
|
|
18587
|
+
export declare type GraphStoreBatchIssueAssociatedDeploymentEdge = {
|
|
18588
|
+
__typename?: 'GraphStoreBatchIssueAssociatedDeploymentEdge';
|
|
18589
|
+
node: GraphStoreBatchIssueAssociatedDeploymentInnerConnection;
|
|
18590
|
+
};
|
|
18591
|
+
export declare type GraphStoreBatchIssueAssociatedDeploymentEndNode = Node & {
|
|
18592
|
+
__typename?: 'GraphStoreBatchIssueAssociatedDeploymentEndNode';
|
|
18593
|
+
data?: Maybe<GraphStoreBatchIssueAssociatedDeploymentEndUnion>;
|
|
18594
|
+
id: Scalars['ID']['output'];
|
|
18595
|
+
};
|
|
18596
|
+
export declare type GraphStoreBatchIssueAssociatedDeploymentEndUnion = DeploymentSummary;
|
|
18597
|
+
export declare type GraphStoreBatchIssueAssociatedDeploymentInnerConnection = {
|
|
18598
|
+
__typename?: 'GraphStoreBatchIssueAssociatedDeploymentInnerConnection';
|
|
18599
|
+
edges: Array<Maybe<GraphStoreBatchIssueAssociatedDeploymentInnerEdge>>;
|
|
18600
|
+
nodes: Array<Maybe<GraphStoreBatchIssueAssociatedDeploymentNode>>;
|
|
18601
|
+
requestedId: Scalars['ID']['output'];
|
|
18602
|
+
};
|
|
18603
|
+
export declare type GraphStoreBatchIssueAssociatedDeploymentInnerEdge = {
|
|
18604
|
+
__typename?: 'GraphStoreBatchIssueAssociatedDeploymentInnerEdge';
|
|
18605
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
18606
|
+
node: GraphStoreBatchIssueAssociatedDeploymentNode;
|
|
18607
|
+
};
|
|
18608
|
+
export declare type GraphStoreBatchIssueAssociatedDeploymentNode = Node & {
|
|
18609
|
+
__typename?: 'GraphStoreBatchIssueAssociatedDeploymentNode';
|
|
18610
|
+
createdAt: Scalars['DateTime']['output'];
|
|
18611
|
+
from: GraphStoreBatchIssueAssociatedDeploymentStartNode;
|
|
18612
|
+
id: Scalars['ID']['output'];
|
|
18613
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
18614
|
+
to: GraphStoreBatchIssueAssociatedDeploymentEndNode;
|
|
18615
|
+
};
|
|
18616
|
+
export declare type GraphStoreBatchIssueAssociatedDeploymentStartNode = Node & {
|
|
18617
|
+
__typename?: 'GraphStoreBatchIssueAssociatedDeploymentStartNode';
|
|
18618
|
+
data?: Maybe<GraphStoreBatchIssueAssociatedDeploymentStartUnion>;
|
|
18619
|
+
id: Scalars['ID']['output'];
|
|
18620
|
+
};
|
|
18621
|
+
export declare type GraphStoreBatchIssueAssociatedDeploymentStartUnion = JiraIssue;
|
|
18505
18622
|
export declare type GraphStoreBatchIssueAssociatedIssueRemoteLinkConnection = HasPageInfo & {
|
|
18506
18623
|
__typename?: 'GraphStoreBatchIssueAssociatedIssueRemoteLinkConnection';
|
|
18507
18624
|
edges: Array<Maybe<GraphStoreBatchIssueAssociatedIssueRemoteLinkEdge>>;
|
|
@@ -23287,6 +23404,7 @@ export declare type GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalEdge =
|
|
|
23287
23404
|
__typename?: 'GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalEdge';
|
|
23288
23405
|
createdAt: Scalars['DateTime']['output'];
|
|
23289
23406
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23407
|
+
id: Scalars['ID']['output'];
|
|
23290
23408
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23291
23409
|
node?: Maybe<GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalUnion>;
|
|
23292
23410
|
};
|
|
@@ -23299,6 +23417,7 @@ export declare type GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalInvers
|
|
|
23299
23417
|
__typename?: 'GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalInverseEdge';
|
|
23300
23418
|
createdAt: Scalars['DateTime']['output'];
|
|
23301
23419
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23420
|
+
id: Scalars['ID']['output'];
|
|
23302
23421
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23303
23422
|
node?: Maybe<GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalInverseUnion>;
|
|
23304
23423
|
};
|
|
@@ -23313,6 +23432,7 @@ export declare type GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicEdge = {
|
|
|
23313
23432
|
__typename?: 'GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicEdge';
|
|
23314
23433
|
createdAt: Scalars['DateTime']['output'];
|
|
23315
23434
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23435
|
+
id: Scalars['ID']['output'];
|
|
23316
23436
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23317
23437
|
node?: Maybe<GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicUnion>;
|
|
23318
23438
|
};
|
|
@@ -23325,6 +23445,7 @@ export declare type GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicInverseEd
|
|
|
23325
23445
|
__typename?: 'GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicInverseEdge';
|
|
23326
23446
|
createdAt: Scalars['DateTime']['output'];
|
|
23327
23447
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23448
|
+
id: Scalars['ID']['output'];
|
|
23328
23449
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23329
23450
|
node?: Maybe<GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicInverseUnion>;
|
|
23330
23451
|
};
|
|
@@ -23339,6 +23460,7 @@ export declare type GraphStoreSimplifiedComponentAssociatedDocumentEdge = {
|
|
|
23339
23460
|
__typename?: 'GraphStoreSimplifiedComponentAssociatedDocumentEdge';
|
|
23340
23461
|
createdAt: Scalars['DateTime']['output'];
|
|
23341
23462
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23463
|
+
id: Scalars['ID']['output'];
|
|
23342
23464
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23343
23465
|
node?: Maybe<GraphStoreSimplifiedComponentAssociatedDocumentUnion>;
|
|
23344
23466
|
};
|
|
@@ -23352,6 +23474,7 @@ export declare type GraphStoreSimplifiedComponentImpactedByIncidentEdge = {
|
|
|
23352
23474
|
__typename?: 'GraphStoreSimplifiedComponentImpactedByIncidentEdge';
|
|
23353
23475
|
createdAt: Scalars['DateTime']['output'];
|
|
23354
23476
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23477
|
+
id: Scalars['ID']['output'];
|
|
23355
23478
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23356
23479
|
node?: Maybe<GraphStoreSimplifiedComponentImpactedByIncidentUnion>;
|
|
23357
23480
|
};
|
|
@@ -23364,6 +23487,7 @@ export declare type GraphStoreSimplifiedComponentImpactedByIncidentInverseEdge =
|
|
|
23364
23487
|
__typename?: 'GraphStoreSimplifiedComponentImpactedByIncidentInverseEdge';
|
|
23365
23488
|
createdAt: Scalars['DateTime']['output'];
|
|
23366
23489
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23490
|
+
id: Scalars['ID']['output'];
|
|
23367
23491
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23368
23492
|
node?: Maybe<GraphStoreSimplifiedComponentImpactedByIncidentInverseUnion>;
|
|
23369
23493
|
};
|
|
@@ -23380,6 +23504,7 @@ export declare type GraphStoreSimplifiedComponentLinkedJswIssueEdge = {
|
|
|
23380
23504
|
__typename?: 'GraphStoreSimplifiedComponentLinkedJswIssueEdge';
|
|
23381
23505
|
createdAt: Scalars['DateTime']['output'];
|
|
23382
23506
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23507
|
+
id: Scalars['ID']['output'];
|
|
23383
23508
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23384
23509
|
node?: Maybe<GraphStoreSimplifiedComponentLinkedJswIssueUnion>;
|
|
23385
23510
|
};
|
|
@@ -23394,6 +23519,7 @@ export declare type GraphStoreSimplifiedComponentLinkedJswIssueInverseEdge = {
|
|
|
23394
23519
|
__typename?: 'GraphStoreSimplifiedComponentLinkedJswIssueInverseEdge';
|
|
23395
23520
|
createdAt: Scalars['DateTime']['output'];
|
|
23396
23521
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23522
|
+
id: Scalars['ID']['output'];
|
|
23397
23523
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23398
23524
|
node?: Maybe<GraphStoreSimplifiedComponentLinkedJswIssueInverseUnion>;
|
|
23399
23525
|
};
|
|
@@ -23408,6 +23534,7 @@ export declare type GraphStoreSimplifiedContentReferencedEntityEdge = {
|
|
|
23408
23534
|
__typename?: 'GraphStoreSimplifiedContentReferencedEntityEdge';
|
|
23409
23535
|
createdAt: Scalars['DateTime']['output'];
|
|
23410
23536
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23537
|
+
id: Scalars['ID']['output'];
|
|
23411
23538
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23412
23539
|
node?: Maybe<GraphStoreSimplifiedContentReferencedEntityUnion>;
|
|
23413
23540
|
};
|
|
@@ -23420,6 +23547,7 @@ export declare type GraphStoreSimplifiedContentReferencedEntityInverseEdge = {
|
|
|
23420
23547
|
__typename?: 'GraphStoreSimplifiedContentReferencedEntityInverseEdge';
|
|
23421
23548
|
createdAt: Scalars['DateTime']['output'];
|
|
23422
23549
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23550
|
+
id: Scalars['ID']['output'];
|
|
23423
23551
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23424
23552
|
node?: Maybe<GraphStoreSimplifiedContentReferencedEntityInverseUnion>;
|
|
23425
23553
|
};
|
|
@@ -23436,6 +23564,7 @@ export declare type GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewEdge
|
|
|
23436
23564
|
__typename?: 'GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewEdge';
|
|
23437
23565
|
createdAt: Scalars['DateTime']['output'];
|
|
23438
23566
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23567
|
+
id: Scalars['ID']['output'];
|
|
23439
23568
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23440
23569
|
node?: Maybe<GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewUnion>;
|
|
23441
23570
|
};
|
|
@@ -23450,6 +23579,7 @@ export declare type GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewInve
|
|
|
23450
23579
|
__typename?: 'GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewInverseEdge';
|
|
23451
23580
|
createdAt: Scalars['DateTime']['output'];
|
|
23452
23581
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23582
|
+
id: Scalars['ID']['output'];
|
|
23453
23583
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23454
23584
|
node?: Maybe<GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewInverseUnion>;
|
|
23455
23585
|
};
|
|
@@ -23465,6 +23595,7 @@ export declare type GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewLink
|
|
|
23465
23595
|
__typename?: 'GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewLinkEdge';
|
|
23466
23596
|
createdAt: Scalars['DateTime']['output'];
|
|
23467
23597
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23598
|
+
id: Scalars['ID']['output'];
|
|
23468
23599
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23469
23600
|
node?: Maybe<GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewLinkUnion>;
|
|
23470
23601
|
};
|
|
@@ -23479,6 +23610,7 @@ export declare type GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewLink
|
|
|
23479
23610
|
__typename?: 'GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewLinkInverseEdge';
|
|
23480
23611
|
createdAt: Scalars['DateTime']['output'];
|
|
23481
23612
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23613
|
+
id: Scalars['ID']['output'];
|
|
23482
23614
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23483
23615
|
node?: Maybe<GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewLinkInverseUnion>;
|
|
23484
23616
|
};
|
|
@@ -23496,6 +23628,7 @@ export declare type GraphStoreSimplifiedIncidentHasActionItemEdge = {
|
|
|
23496
23628
|
__typename?: 'GraphStoreSimplifiedIncidentHasActionItemEdge';
|
|
23497
23629
|
createdAt: Scalars['DateTime']['output'];
|
|
23498
23630
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23631
|
+
id: Scalars['ID']['output'];
|
|
23499
23632
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23500
23633
|
node?: Maybe<GraphStoreSimplifiedIncidentHasActionItemUnion>;
|
|
23501
23634
|
};
|
|
@@ -23510,6 +23643,7 @@ export declare type GraphStoreSimplifiedIncidentHasActionItemInverseEdge = {
|
|
|
23510
23643
|
__typename?: 'GraphStoreSimplifiedIncidentHasActionItemInverseEdge';
|
|
23511
23644
|
createdAt: Scalars['DateTime']['output'];
|
|
23512
23645
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23646
|
+
id: Scalars['ID']['output'];
|
|
23513
23647
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23514
23648
|
node?: Maybe<GraphStoreSimplifiedIncidentHasActionItemInverseUnion>;
|
|
23515
23649
|
};
|
|
@@ -23526,6 +23660,7 @@ export declare type GraphStoreSimplifiedIncidentLinkedJswIssueEdge = {
|
|
|
23526
23660
|
__typename?: 'GraphStoreSimplifiedIncidentLinkedJswIssueEdge';
|
|
23527
23661
|
createdAt: Scalars['DateTime']['output'];
|
|
23528
23662
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23663
|
+
id: Scalars['ID']['output'];
|
|
23529
23664
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23530
23665
|
node?: Maybe<GraphStoreSimplifiedIncidentLinkedJswIssueUnion>;
|
|
23531
23666
|
};
|
|
@@ -23540,6 +23675,7 @@ export declare type GraphStoreSimplifiedIncidentLinkedJswIssueInverseEdge = {
|
|
|
23540
23675
|
__typename?: 'GraphStoreSimplifiedIncidentLinkedJswIssueInverseEdge';
|
|
23541
23676
|
createdAt: Scalars['DateTime']['output'];
|
|
23542
23677
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23678
|
+
id: Scalars['ID']['output'];
|
|
23543
23679
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23544
23680
|
node?: Maybe<GraphStoreSimplifiedIncidentLinkedJswIssueInverseUnion>;
|
|
23545
23681
|
};
|
|
@@ -23554,6 +23690,7 @@ export declare type GraphStoreSimplifiedIssueAssociatedBranchInverseEdge = {
|
|
|
23554
23690
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedBranchInverseEdge';
|
|
23555
23691
|
createdAt: Scalars['DateTime']['output'];
|
|
23556
23692
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23693
|
+
id: Scalars['ID']['output'];
|
|
23557
23694
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23558
23695
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedBranchInverseUnion>;
|
|
23559
23696
|
};
|
|
@@ -23567,6 +23704,7 @@ export declare type GraphStoreSimplifiedIssueAssociatedBuildInverseEdge = {
|
|
|
23567
23704
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedBuildInverseEdge';
|
|
23568
23705
|
createdAt: Scalars['DateTime']['output'];
|
|
23569
23706
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23707
|
+
id: Scalars['ID']['output'];
|
|
23570
23708
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23571
23709
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedBuildInverseUnion>;
|
|
23572
23710
|
};
|
|
@@ -23580,6 +23718,7 @@ export declare type GraphStoreSimplifiedIssueAssociatedCommitInverseEdge = {
|
|
|
23580
23718
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedCommitInverseEdge';
|
|
23581
23719
|
createdAt: Scalars['DateTime']['output'];
|
|
23582
23720
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23721
|
+
id: Scalars['ID']['output'];
|
|
23583
23722
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23584
23723
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedCommitInverseUnion>;
|
|
23585
23724
|
};
|
|
@@ -23593,6 +23732,7 @@ export declare type GraphStoreSimplifiedIssueAssociatedDeploymentEdge = {
|
|
|
23593
23732
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedDeploymentEdge';
|
|
23594
23733
|
createdAt: Scalars['DateTime']['output'];
|
|
23595
23734
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23735
|
+
id: Scalars['ID']['output'];
|
|
23596
23736
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23597
23737
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedDeploymentUnion>;
|
|
23598
23738
|
};
|
|
@@ -23605,6 +23745,7 @@ export declare type GraphStoreSimplifiedIssueAssociatedDeploymentInverseEdge = {
|
|
|
23605
23745
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedDeploymentInverseEdge';
|
|
23606
23746
|
createdAt: Scalars['DateTime']['output'];
|
|
23607
23747
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23748
|
+
id: Scalars['ID']['output'];
|
|
23608
23749
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23609
23750
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedDeploymentInverseUnion>;
|
|
23610
23751
|
};
|
|
@@ -23619,6 +23760,7 @@ export declare type GraphStoreSimplifiedIssueAssociatedDesignEdge = {
|
|
|
23619
23760
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedDesignEdge';
|
|
23620
23761
|
createdAt: Scalars['DateTime']['output'];
|
|
23621
23762
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23763
|
+
id: Scalars['ID']['output'];
|
|
23622
23764
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23623
23765
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedDesignUnion>;
|
|
23624
23766
|
};
|
|
@@ -23631,6 +23773,7 @@ export declare type GraphStoreSimplifiedIssueAssociatedDesignInverseEdge = {
|
|
|
23631
23773
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedDesignInverseEdge';
|
|
23632
23774
|
createdAt: Scalars['DateTime']['output'];
|
|
23633
23775
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23776
|
+
id: Scalars['ID']['output'];
|
|
23634
23777
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23635
23778
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedDesignInverseUnion>;
|
|
23636
23779
|
};
|
|
@@ -23645,6 +23788,7 @@ export declare type GraphStoreSimplifiedIssueAssociatedFeatureFlagEdge = {
|
|
|
23645
23788
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedFeatureFlagEdge';
|
|
23646
23789
|
createdAt: Scalars['DateTime']['output'];
|
|
23647
23790
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23791
|
+
id: Scalars['ID']['output'];
|
|
23648
23792
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23649
23793
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedFeatureFlagUnion>;
|
|
23650
23794
|
};
|
|
@@ -23657,6 +23801,7 @@ export declare type GraphStoreSimplifiedIssueAssociatedFeatureFlagInverseEdge =
|
|
|
23657
23801
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedFeatureFlagInverseEdge';
|
|
23658
23802
|
createdAt: Scalars['DateTime']['output'];
|
|
23659
23803
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23804
|
+
id: Scalars['ID']['output'];
|
|
23660
23805
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23661
23806
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedFeatureFlagInverseUnion>;
|
|
23662
23807
|
};
|
|
@@ -23671,6 +23816,7 @@ export declare type GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkEdge = {
|
|
|
23671
23816
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkEdge';
|
|
23672
23817
|
createdAt: Scalars['DateTime']['output'];
|
|
23673
23818
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23819
|
+
id: Scalars['ID']['output'];
|
|
23674
23820
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23675
23821
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkUnion>;
|
|
23676
23822
|
};
|
|
@@ -23683,6 +23829,7 @@ export declare type GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkInverseEdg
|
|
|
23683
23829
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkInverseEdge';
|
|
23684
23830
|
createdAt: Scalars['DateTime']['output'];
|
|
23685
23831
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23832
|
+
id: Scalars['ID']['output'];
|
|
23686
23833
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23687
23834
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkInverseUnion>;
|
|
23688
23835
|
};
|
|
@@ -23697,6 +23844,7 @@ export declare type GraphStoreSimplifiedIssueAssociatedPrEdge = {
|
|
|
23697
23844
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedPrEdge';
|
|
23698
23845
|
createdAt: Scalars['DateTime']['output'];
|
|
23699
23846
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23847
|
+
id: Scalars['ID']['output'];
|
|
23700
23848
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23701
23849
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedPrUnion>;
|
|
23702
23850
|
};
|
|
@@ -23709,6 +23857,7 @@ export declare type GraphStoreSimplifiedIssueAssociatedPrInverseEdge = {
|
|
|
23709
23857
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedPrInverseEdge';
|
|
23710
23858
|
createdAt: Scalars['DateTime']['output'];
|
|
23711
23859
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23860
|
+
id: Scalars['ID']['output'];
|
|
23712
23861
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23713
23862
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedPrInverseUnion>;
|
|
23714
23863
|
};
|
|
@@ -23723,6 +23872,7 @@ export declare type GraphStoreSimplifiedIssueAssociatedRemoteLinkInverseEdge = {
|
|
|
23723
23872
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedRemoteLinkInverseEdge';
|
|
23724
23873
|
createdAt: Scalars['DateTime']['output'];
|
|
23725
23874
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23875
|
+
id: Scalars['ID']['output'];
|
|
23726
23876
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23727
23877
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedRemoteLinkInverseUnion>;
|
|
23728
23878
|
};
|
|
@@ -23738,6 +23888,7 @@ export declare type GraphStoreSimplifiedIssueChangesComponentInverseEdge = {
|
|
|
23738
23888
|
__typename?: 'GraphStoreSimplifiedIssueChangesComponentInverseEdge';
|
|
23739
23889
|
createdAt: Scalars['DateTime']['output'];
|
|
23740
23890
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23891
|
+
id: Scalars['ID']['output'];
|
|
23741
23892
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23742
23893
|
node?: Maybe<GraphStoreSimplifiedIssueChangesComponentInverseUnion>;
|
|
23743
23894
|
};
|
|
@@ -23753,6 +23904,7 @@ export declare type GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentEdge =
|
|
|
23753
23904
|
__typename?: 'GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentEdge';
|
|
23754
23905
|
createdAt: Scalars['DateTime']['output'];
|
|
23755
23906
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23907
|
+
id: Scalars['ID']['output'];
|
|
23756
23908
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23757
23909
|
node?: Maybe<GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentUnion>;
|
|
23758
23910
|
};
|
|
@@ -23767,6 +23919,7 @@ export declare type GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentInvers
|
|
|
23767
23919
|
__typename?: 'GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentInverseEdge';
|
|
23768
23920
|
createdAt: Scalars['DateTime']['output'];
|
|
23769
23921
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23922
|
+
id: Scalars['ID']['output'];
|
|
23770
23923
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23771
23924
|
node?: Maybe<GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentInverseUnion>;
|
|
23772
23925
|
};
|
|
@@ -23783,6 +23936,7 @@ export declare type GraphStoreSimplifiedIssueRecursiveAssociatedFeatureFlagEdge
|
|
|
23783
23936
|
__typename?: 'GraphStoreSimplifiedIssueRecursiveAssociatedFeatureFlagEdge';
|
|
23784
23937
|
createdAt: Scalars['DateTime']['output'];
|
|
23785
23938
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23939
|
+
id: Scalars['ID']['output'];
|
|
23786
23940
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23787
23941
|
node?: Maybe<GraphStoreSimplifiedIssueRecursiveAssociatedFeatureFlagUnion>;
|
|
23788
23942
|
};
|
|
@@ -23797,6 +23951,7 @@ export declare type GraphStoreSimplifiedIssueRecursiveAssociatedFeatureFlagInver
|
|
|
23797
23951
|
__typename?: 'GraphStoreSimplifiedIssueRecursiveAssociatedFeatureFlagInverseEdge';
|
|
23798
23952
|
createdAt: Scalars['DateTime']['output'];
|
|
23799
23953
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23954
|
+
id: Scalars['ID']['output'];
|
|
23800
23955
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23801
23956
|
node?: Maybe<GraphStoreSimplifiedIssueRecursiveAssociatedFeatureFlagInverseUnion>;
|
|
23802
23957
|
};
|
|
@@ -23813,6 +23968,7 @@ export declare type GraphStoreSimplifiedIssueRecursiveAssociatedPrEdge = {
|
|
|
23813
23968
|
__typename?: 'GraphStoreSimplifiedIssueRecursiveAssociatedPrEdge';
|
|
23814
23969
|
createdAt: Scalars['DateTime']['output'];
|
|
23815
23970
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23971
|
+
id: Scalars['ID']['output'];
|
|
23816
23972
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23817
23973
|
node?: Maybe<GraphStoreSimplifiedIssueRecursiveAssociatedPrUnion>;
|
|
23818
23974
|
};
|
|
@@ -23827,6 +23983,7 @@ export declare type GraphStoreSimplifiedIssueRecursiveAssociatedPrInverseEdge =
|
|
|
23827
23983
|
__typename?: 'GraphStoreSimplifiedIssueRecursiveAssociatedPrInverseEdge';
|
|
23828
23984
|
createdAt: Scalars['DateTime']['output'];
|
|
23829
23985
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23986
|
+
id: Scalars['ID']['output'];
|
|
23830
23987
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23831
23988
|
node?: Maybe<GraphStoreSimplifiedIssueRecursiveAssociatedPrInverseUnion>;
|
|
23832
23989
|
};
|
|
@@ -23843,6 +24000,7 @@ export declare type GraphStoreSimplifiedIssueToWhiteboardEdge = {
|
|
|
23843
24000
|
__typename?: 'GraphStoreSimplifiedIssueToWhiteboardEdge';
|
|
23844
24001
|
createdAt: Scalars['DateTime']['output'];
|
|
23845
24002
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24003
|
+
id: Scalars['ID']['output'];
|
|
23846
24004
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23847
24005
|
node?: Maybe<GraphStoreSimplifiedIssueToWhiteboardUnion>;
|
|
23848
24006
|
};
|
|
@@ -23857,6 +24015,7 @@ export declare type GraphStoreSimplifiedIssueToWhiteboardInverseEdge = {
|
|
|
23857
24015
|
__typename?: 'GraphStoreSimplifiedIssueToWhiteboardInverseEdge';
|
|
23858
24016
|
createdAt: Scalars['DateTime']['output'];
|
|
23859
24017
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24018
|
+
id: Scalars['ID']['output'];
|
|
23860
24019
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23861
24020
|
node?: Maybe<GraphStoreSimplifiedIssueToWhiteboardInverseUnion>;
|
|
23862
24021
|
};
|
|
@@ -23871,6 +24030,7 @@ export declare type GraphStoreSimplifiedJiraEpicContributesToAtlasGoalEdge = {
|
|
|
23871
24030
|
__typename?: 'GraphStoreSimplifiedJiraEpicContributesToAtlasGoalEdge';
|
|
23872
24031
|
createdAt: Scalars['DateTime']['output'];
|
|
23873
24032
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24033
|
+
id: Scalars['ID']['output'];
|
|
23874
24034
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23875
24035
|
node?: Maybe<GraphStoreSimplifiedJiraEpicContributesToAtlasGoalUnion>;
|
|
23876
24036
|
};
|
|
@@ -23883,6 +24043,7 @@ export declare type GraphStoreSimplifiedJiraEpicContributesToAtlasGoalInverseEdg
|
|
|
23883
24043
|
__typename?: 'GraphStoreSimplifiedJiraEpicContributesToAtlasGoalInverseEdge';
|
|
23884
24044
|
createdAt: Scalars['DateTime']['output'];
|
|
23885
24045
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24046
|
+
id: Scalars['ID']['output'];
|
|
23886
24047
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23887
24048
|
node?: Maybe<GraphStoreSimplifiedJiraEpicContributesToAtlasGoalInverseUnion>;
|
|
23888
24049
|
};
|
|
@@ -23899,6 +24060,7 @@ export declare type GraphStoreSimplifiedJiraProjectAssociatedAtlasGoalEdge = {
|
|
|
23899
24060
|
__typename?: 'GraphStoreSimplifiedJiraProjectAssociatedAtlasGoalEdge';
|
|
23900
24061
|
createdAt: Scalars['DateTime']['output'];
|
|
23901
24062
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24063
|
+
id: Scalars['ID']['output'];
|
|
23902
24064
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23903
24065
|
node?: Maybe<GraphStoreSimplifiedJiraProjectAssociatedAtlasGoalUnion>;
|
|
23904
24066
|
};
|
|
@@ -23913,6 +24075,7 @@ export declare type GraphStoreSimplifiedJiraProjectAssociatedAtlasGoalInverseEdg
|
|
|
23913
24075
|
__typename?: 'GraphStoreSimplifiedJiraProjectAssociatedAtlasGoalInverseEdge';
|
|
23914
24076
|
createdAt: Scalars['DateTime']['output'];
|
|
23915
24077
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24078
|
+
id: Scalars['ID']['output'];
|
|
23916
24079
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23917
24080
|
node?: Maybe<GraphStoreSimplifiedJiraProjectAssociatedAtlasGoalInverseUnion>;
|
|
23918
24081
|
};
|
|
@@ -23929,6 +24092,7 @@ export declare type GraphStoreSimplifiedJsmProjectAssociatedServiceEdge = {
|
|
|
23929
24092
|
__typename?: 'GraphStoreSimplifiedJsmProjectAssociatedServiceEdge';
|
|
23930
24093
|
createdAt: Scalars['DateTime']['output'];
|
|
23931
24094
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24095
|
+
id: Scalars['ID']['output'];
|
|
23932
24096
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23933
24097
|
node?: Maybe<GraphStoreSimplifiedJsmProjectAssociatedServiceUnion>;
|
|
23934
24098
|
};
|
|
@@ -23943,6 +24107,7 @@ export declare type GraphStoreSimplifiedJsmProjectAssociatedServiceInverseEdge =
|
|
|
23943
24107
|
__typename?: 'GraphStoreSimplifiedJsmProjectAssociatedServiceInverseEdge';
|
|
23944
24108
|
createdAt: Scalars['DateTime']['output'];
|
|
23945
24109
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24110
|
+
id: Scalars['ID']['output'];
|
|
23946
24111
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23947
24112
|
node?: Maybe<GraphStoreSimplifiedJsmProjectAssociatedServiceInverseUnion>;
|
|
23948
24113
|
};
|
|
@@ -23959,6 +24124,7 @@ export declare type GraphStoreSimplifiedJswProjectAssociatedComponentEdge = {
|
|
|
23959
24124
|
__typename?: 'GraphStoreSimplifiedJswProjectAssociatedComponentEdge';
|
|
23960
24125
|
createdAt: Scalars['DateTime']['output'];
|
|
23961
24126
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24127
|
+
id: Scalars['ID']['output'];
|
|
23962
24128
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23963
24129
|
node?: Maybe<GraphStoreSimplifiedJswProjectAssociatedComponentUnion>;
|
|
23964
24130
|
};
|
|
@@ -23973,6 +24139,7 @@ export declare type GraphStoreSimplifiedJswProjectAssociatedComponentInverseEdge
|
|
|
23973
24139
|
__typename?: 'GraphStoreSimplifiedJswProjectAssociatedComponentInverseEdge';
|
|
23974
24140
|
createdAt: Scalars['DateTime']['output'];
|
|
23975
24141
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24142
|
+
id: Scalars['ID']['output'];
|
|
23976
24143
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23977
24144
|
node?: Maybe<GraphStoreSimplifiedJswProjectAssociatedComponentInverseUnion>;
|
|
23978
24145
|
};
|
|
@@ -23989,6 +24156,7 @@ export declare type GraphStoreSimplifiedJswProjectAssociatedIncidentEdge = {
|
|
|
23989
24156
|
__typename?: 'GraphStoreSimplifiedJswProjectAssociatedIncidentEdge';
|
|
23990
24157
|
createdAt: Scalars['DateTime']['output'];
|
|
23991
24158
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24159
|
+
id: Scalars['ID']['output'];
|
|
23992
24160
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23993
24161
|
node?: Maybe<GraphStoreSimplifiedJswProjectAssociatedIncidentUnion>;
|
|
23994
24162
|
};
|
|
@@ -24003,6 +24171,7 @@ export declare type GraphStoreSimplifiedJswProjectAssociatedIncidentInverseEdge
|
|
|
24003
24171
|
__typename?: 'GraphStoreSimplifiedJswProjectAssociatedIncidentInverseEdge';
|
|
24004
24172
|
createdAt: Scalars['DateTime']['output'];
|
|
24005
24173
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24174
|
+
id: Scalars['ID']['output'];
|
|
24006
24175
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24007
24176
|
node?: Maybe<GraphStoreSimplifiedJswProjectAssociatedIncidentInverseUnion>;
|
|
24008
24177
|
};
|
|
@@ -24019,6 +24188,7 @@ export declare type GraphStoreSimplifiedJswProjectSharesComponentWithJsmProjectE
|
|
|
24019
24188
|
__typename?: 'GraphStoreSimplifiedJswProjectSharesComponentWithJsmProjectEdge';
|
|
24020
24189
|
createdAt: Scalars['DateTime']['output'];
|
|
24021
24190
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24191
|
+
id: Scalars['ID']['output'];
|
|
24022
24192
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24023
24193
|
node?: Maybe<GraphStoreSimplifiedJswProjectSharesComponentWithJsmProjectUnion>;
|
|
24024
24194
|
};
|
|
@@ -24033,6 +24203,7 @@ export declare type GraphStoreSimplifiedJswProjectSharesComponentWithJsmProjectI
|
|
|
24033
24203
|
__typename?: 'GraphStoreSimplifiedJswProjectSharesComponentWithJsmProjectInverseEdge';
|
|
24034
24204
|
createdAt: Scalars['DateTime']['output'];
|
|
24035
24205
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24206
|
+
id: Scalars['ID']['output'];
|
|
24036
24207
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24037
24208
|
node?: Maybe<GraphStoreSimplifiedJswProjectSharesComponentWithJsmProjectInverseUnion>;
|
|
24038
24209
|
};
|
|
@@ -24049,6 +24220,7 @@ export declare type GraphStoreSimplifiedLinkedProjectHasVersionEdge = {
|
|
|
24049
24220
|
__typename?: 'GraphStoreSimplifiedLinkedProjectHasVersionEdge';
|
|
24050
24221
|
createdAt: Scalars['DateTime']['output'];
|
|
24051
24222
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24223
|
+
id: Scalars['ID']['output'];
|
|
24052
24224
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24053
24225
|
node?: Maybe<GraphStoreSimplifiedLinkedProjectHasVersionUnion>;
|
|
24054
24226
|
};
|
|
@@ -24063,6 +24235,7 @@ export declare type GraphStoreSimplifiedLinkedProjectHasVersionInverseEdge = {
|
|
|
24063
24235
|
__typename?: 'GraphStoreSimplifiedLinkedProjectHasVersionInverseEdge';
|
|
24064
24236
|
createdAt: Scalars['DateTime']['output'];
|
|
24065
24237
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24238
|
+
id: Scalars['ID']['output'];
|
|
24066
24239
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24067
24240
|
node?: Maybe<GraphStoreSimplifiedLinkedProjectHasVersionInverseUnion>;
|
|
24068
24241
|
};
|
|
@@ -24077,6 +24250,7 @@ export declare type GraphStoreSimplifiedOperationsContainerImpactedByIncidentEdg
|
|
|
24077
24250
|
__typename?: 'GraphStoreSimplifiedOperationsContainerImpactedByIncidentEdge';
|
|
24078
24251
|
createdAt: Scalars['DateTime']['output'];
|
|
24079
24252
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24253
|
+
id: Scalars['ID']['output'];
|
|
24080
24254
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24081
24255
|
node?: Maybe<GraphStoreSimplifiedOperationsContainerImpactedByIncidentUnion>;
|
|
24082
24256
|
};
|
|
@@ -24089,6 +24263,7 @@ export declare type GraphStoreSimplifiedOperationsContainerImpactedByIncidentInv
|
|
|
24089
24263
|
__typename?: 'GraphStoreSimplifiedOperationsContainerImpactedByIncidentInverseEdge';
|
|
24090
24264
|
createdAt: Scalars['DateTime']['output'];
|
|
24091
24265
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24266
|
+
id: Scalars['ID']['output'];
|
|
24092
24267
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24093
24268
|
node?: Maybe<GraphStoreSimplifiedOperationsContainerImpactedByIncidentInverseUnion>;
|
|
24094
24269
|
};
|
|
@@ -24103,6 +24278,7 @@ export declare type GraphStoreSimplifiedOperationsContainerImprovedByActionItemE
|
|
|
24103
24278
|
__typename?: 'GraphStoreSimplifiedOperationsContainerImprovedByActionItemEdge';
|
|
24104
24279
|
createdAt: Scalars['DateTime']['output'];
|
|
24105
24280
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24281
|
+
id: Scalars['ID']['output'];
|
|
24106
24282
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24107
24283
|
node?: Maybe<GraphStoreSimplifiedOperationsContainerImprovedByActionItemUnion>;
|
|
24108
24284
|
};
|
|
@@ -24115,6 +24291,7 @@ export declare type GraphStoreSimplifiedOperationsContainerImprovedByActionItemI
|
|
|
24115
24291
|
__typename?: 'GraphStoreSimplifiedOperationsContainerImprovedByActionItemInverseEdge';
|
|
24116
24292
|
createdAt: Scalars['DateTime']['output'];
|
|
24117
24293
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24294
|
+
id: Scalars['ID']['output'];
|
|
24118
24295
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24119
24296
|
node?: Maybe<GraphStoreSimplifiedOperationsContainerImprovedByActionItemInverseUnion>;
|
|
24120
24297
|
};
|
|
@@ -24129,6 +24306,7 @@ export declare type GraphStoreSimplifiedParentDocumentHasChildDocumentEdge = {
|
|
|
24129
24306
|
__typename?: 'GraphStoreSimplifiedParentDocumentHasChildDocumentEdge';
|
|
24130
24307
|
createdAt: Scalars['DateTime']['output'];
|
|
24131
24308
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24309
|
+
id: Scalars['ID']['output'];
|
|
24132
24310
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24133
24311
|
node?: Maybe<GraphStoreSimplifiedParentDocumentHasChildDocumentUnion>;
|
|
24134
24312
|
};
|
|
@@ -24141,6 +24319,7 @@ export declare type GraphStoreSimplifiedParentDocumentHasChildDocumentInverseEdg
|
|
|
24141
24319
|
__typename?: 'GraphStoreSimplifiedParentDocumentHasChildDocumentInverseEdge';
|
|
24142
24320
|
createdAt: Scalars['DateTime']['output'];
|
|
24143
24321
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24322
|
+
id: Scalars['ID']['output'];
|
|
24144
24323
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24145
24324
|
node?: Maybe<GraphStoreSimplifiedParentDocumentHasChildDocumentInverseUnion>;
|
|
24146
24325
|
};
|
|
@@ -24155,6 +24334,7 @@ export declare type GraphStoreSimplifiedParentIssueHasChildIssueEdge = {
|
|
|
24155
24334
|
__typename?: 'GraphStoreSimplifiedParentIssueHasChildIssueEdge';
|
|
24156
24335
|
createdAt: Scalars['DateTime']['output'];
|
|
24157
24336
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24337
|
+
id: Scalars['ID']['output'];
|
|
24158
24338
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24159
24339
|
node?: Maybe<GraphStoreSimplifiedParentIssueHasChildIssueUnion>;
|
|
24160
24340
|
};
|
|
@@ -24167,6 +24347,7 @@ export declare type GraphStoreSimplifiedParentIssueHasChildIssueInverseEdge = {
|
|
|
24167
24347
|
__typename?: 'GraphStoreSimplifiedParentIssueHasChildIssueInverseEdge';
|
|
24168
24348
|
createdAt: Scalars['DateTime']['output'];
|
|
24169
24349
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24350
|
+
id: Scalars['ID']['output'];
|
|
24170
24351
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24171
24352
|
node?: Maybe<GraphStoreSimplifiedParentIssueHasChildIssueInverseUnion>;
|
|
24172
24353
|
};
|
|
@@ -24181,6 +24362,7 @@ export declare type GraphStoreSimplifiedPrInRepoEdge = {
|
|
|
24181
24362
|
__typename?: 'GraphStoreSimplifiedPrInRepoEdge';
|
|
24182
24363
|
createdAt: Scalars['DateTime']['output'];
|
|
24183
24364
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24365
|
+
id: Scalars['ID']['output'];
|
|
24184
24366
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24185
24367
|
node?: Maybe<GraphStoreSimplifiedPrInRepoUnion>;
|
|
24186
24368
|
};
|
|
@@ -24193,6 +24375,7 @@ export declare type GraphStoreSimplifiedPrInRepoInverseEdge = {
|
|
|
24193
24375
|
__typename?: 'GraphStoreSimplifiedPrInRepoInverseEdge';
|
|
24194
24376
|
createdAt: Scalars['DateTime']['output'];
|
|
24195
24377
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24378
|
+
id: Scalars['ID']['output'];
|
|
24196
24379
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24197
24380
|
node?: Maybe<GraphStoreSimplifiedPrInRepoInverseUnion>;
|
|
24198
24381
|
};
|
|
@@ -24209,6 +24392,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedBranchInverseEdge = {
|
|
|
24209
24392
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedBranchInverseEdge';
|
|
24210
24393
|
createdAt: Scalars['DateTime']['output'];
|
|
24211
24394
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24395
|
+
id: Scalars['ID']['output'];
|
|
24212
24396
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24213
24397
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedBranchInverseUnion>;
|
|
24214
24398
|
};
|
|
@@ -24224,6 +24408,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedBuildInverseEdge = {
|
|
|
24224
24408
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedBuildInverseEdge';
|
|
24225
24409
|
createdAt: Scalars['DateTime']['output'];
|
|
24226
24410
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24411
|
+
id: Scalars['ID']['output'];
|
|
24227
24412
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24228
24413
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedBuildInverseUnion>;
|
|
24229
24414
|
};
|
|
@@ -24239,6 +24424,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedDeploymentEdge = {
|
|
|
24239
24424
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedDeploymentEdge';
|
|
24240
24425
|
createdAt: Scalars['DateTime']['output'];
|
|
24241
24426
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24427
|
+
id: Scalars['ID']['output'];
|
|
24242
24428
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24243
24429
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedDeploymentUnion>;
|
|
24244
24430
|
};
|
|
@@ -24253,6 +24439,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedDeploymentInverseEdge =
|
|
|
24253
24439
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedDeploymentInverseEdge';
|
|
24254
24440
|
createdAt: Scalars['DateTime']['output'];
|
|
24255
24441
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24442
|
+
id: Scalars['ID']['output'];
|
|
24256
24443
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24257
24444
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedDeploymentInverseUnion>;
|
|
24258
24445
|
};
|
|
@@ -24269,6 +24456,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedFeatureFlagEdge = {
|
|
|
24269
24456
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedFeatureFlagEdge';
|
|
24270
24457
|
createdAt: Scalars['DateTime']['output'];
|
|
24271
24458
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24459
|
+
id: Scalars['ID']['output'];
|
|
24272
24460
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24273
24461
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedFeatureFlagUnion>;
|
|
24274
24462
|
};
|
|
@@ -24283,6 +24471,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedFeatureFlagInverseEdge
|
|
|
24283
24471
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedFeatureFlagInverseEdge';
|
|
24284
24472
|
createdAt: Scalars['DateTime']['output'];
|
|
24285
24473
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24474
|
+
id: Scalars['ID']['output'];
|
|
24286
24475
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24287
24476
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedFeatureFlagInverseUnion>;
|
|
24288
24477
|
};
|
|
@@ -24299,6 +24488,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedIncidentEdge = {
|
|
|
24299
24488
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedIncidentEdge';
|
|
24300
24489
|
createdAt: Scalars['DateTime']['output'];
|
|
24301
24490
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24491
|
+
id: Scalars['ID']['output'];
|
|
24302
24492
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24303
24493
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedIncidentUnion>;
|
|
24304
24494
|
};
|
|
@@ -24313,6 +24503,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedIncidentInverseEdge = {
|
|
|
24313
24503
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedIncidentInverseEdge';
|
|
24314
24504
|
createdAt: Scalars['DateTime']['output'];
|
|
24315
24505
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24506
|
+
id: Scalars['ID']['output'];
|
|
24316
24507
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24317
24508
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedIncidentInverseUnion>;
|
|
24318
24509
|
};
|
|
@@ -24329,6 +24520,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedOpsgenieTeamEdge = {
|
|
|
24329
24520
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedOpsgenieTeamEdge';
|
|
24330
24521
|
createdAt: Scalars['DateTime']['output'];
|
|
24331
24522
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24523
|
+
id: Scalars['ID']['output'];
|
|
24332
24524
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24333
24525
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedOpsgenieTeamUnion>;
|
|
24334
24526
|
};
|
|
@@ -24343,6 +24535,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedOpsgenieTeamInverseEdge
|
|
|
24343
24535
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedOpsgenieTeamInverseEdge';
|
|
24344
24536
|
createdAt: Scalars['DateTime']['output'];
|
|
24345
24537
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24538
|
+
id: Scalars['ID']['output'];
|
|
24346
24539
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24347
24540
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedOpsgenieTeamInverseUnion>;
|
|
24348
24541
|
};
|
|
@@ -24359,6 +24552,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedPrEdge = {
|
|
|
24359
24552
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedPrEdge';
|
|
24360
24553
|
createdAt: Scalars['DateTime']['output'];
|
|
24361
24554
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24555
|
+
id: Scalars['ID']['output'];
|
|
24362
24556
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24363
24557
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedPrUnion>;
|
|
24364
24558
|
};
|
|
@@ -24373,6 +24567,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedPrInverseEdge = {
|
|
|
24373
24567
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedPrInverseEdge';
|
|
24374
24568
|
createdAt: Scalars['DateTime']['output'];
|
|
24375
24569
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24570
|
+
id: Scalars['ID']['output'];
|
|
24376
24571
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24377
24572
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedPrInverseUnion>;
|
|
24378
24573
|
};
|
|
@@ -24389,6 +24584,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedRepoEdge = {
|
|
|
24389
24584
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedRepoEdge';
|
|
24390
24585
|
createdAt: Scalars['DateTime']['output'];
|
|
24391
24586
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24587
|
+
id: Scalars['ID']['output'];
|
|
24392
24588
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24393
24589
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedRepoUnion>;
|
|
24394
24590
|
};
|
|
@@ -24403,6 +24599,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedRepoInverseEdge = {
|
|
|
24403
24599
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedRepoInverseEdge';
|
|
24404
24600
|
createdAt: Scalars['DateTime']['output'];
|
|
24405
24601
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24602
|
+
id: Scalars['ID']['output'];
|
|
24406
24603
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24407
24604
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedRepoInverseUnion>;
|
|
24408
24605
|
};
|
|
@@ -24419,6 +24616,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedServiceEdge = {
|
|
|
24419
24616
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedServiceEdge';
|
|
24420
24617
|
createdAt: Scalars['DateTime']['output'];
|
|
24421
24618
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24619
|
+
id: Scalars['ID']['output'];
|
|
24422
24620
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24423
24621
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedServiceUnion>;
|
|
24424
24622
|
};
|
|
@@ -24433,6 +24631,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedServiceInverseEdge = {
|
|
|
24433
24631
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedServiceInverseEdge';
|
|
24434
24632
|
createdAt: Scalars['DateTime']['output'];
|
|
24435
24633
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24634
|
+
id: Scalars['ID']['output'];
|
|
24436
24635
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24437
24636
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedServiceInverseUnion>;
|
|
24438
24637
|
};
|
|
@@ -24449,6 +24648,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedToIncidentEdge = {
|
|
|
24449
24648
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedToIncidentEdge';
|
|
24450
24649
|
createdAt: Scalars['DateTime']['output'];
|
|
24451
24650
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24651
|
+
id: Scalars['ID']['output'];
|
|
24452
24652
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24453
24653
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedToIncidentUnion>;
|
|
24454
24654
|
};
|
|
@@ -24463,6 +24663,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedToIncidentInverseEdge =
|
|
|
24463
24663
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedToIncidentInverseEdge';
|
|
24464
24664
|
createdAt: Scalars['DateTime']['output'];
|
|
24465
24665
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24666
|
+
id: Scalars['ID']['output'];
|
|
24466
24667
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24467
24668
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedToIncidentInverseUnion>;
|
|
24468
24669
|
};
|
|
@@ -24479,6 +24680,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedToOperationsContainerEd
|
|
|
24479
24680
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedToOperationsContainerEdge';
|
|
24480
24681
|
createdAt: Scalars['DateTime']['output'];
|
|
24481
24682
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24683
|
+
id: Scalars['ID']['output'];
|
|
24482
24684
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24483
24685
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedToOperationsContainerUnion>;
|
|
24484
24686
|
};
|
|
@@ -24493,6 +24695,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedToOperationsContainerIn
|
|
|
24493
24695
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedToOperationsContainerInverseEdge';
|
|
24494
24696
|
createdAt: Scalars['DateTime']['output'];
|
|
24495
24697
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24698
|
+
id: Scalars['ID']['output'];
|
|
24496
24699
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24497
24700
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedToOperationsContainerInverseUnion>;
|
|
24498
24701
|
};
|
|
@@ -24509,6 +24712,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedToSecurityContainerInve
|
|
|
24509
24712
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedToSecurityContainerInverseEdge';
|
|
24510
24713
|
createdAt: Scalars['DateTime']['output'];
|
|
24511
24714
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24715
|
+
id: Scalars['ID']['output'];
|
|
24512
24716
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24513
24717
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedToSecurityContainerInverseUnion>;
|
|
24514
24718
|
};
|
|
@@ -24524,6 +24728,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedVulnerabilityEdge = {
|
|
|
24524
24728
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedVulnerabilityEdge';
|
|
24525
24729
|
createdAt: Scalars['DateTime']['output'];
|
|
24526
24730
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24731
|
+
id: Scalars['ID']['output'];
|
|
24527
24732
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24528
24733
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedVulnerabilityUnion>;
|
|
24529
24734
|
};
|
|
@@ -24538,6 +24743,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedVulnerabilityInverseEdg
|
|
|
24538
24743
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedVulnerabilityInverseEdge';
|
|
24539
24744
|
createdAt: Scalars['DateTime']['output'];
|
|
24540
24745
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24746
|
+
id: Scalars['ID']['output'];
|
|
24541
24747
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24542
24748
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedVulnerabilityInverseUnion>;
|
|
24543
24749
|
};
|
|
@@ -24554,6 +24760,7 @@ export declare type GraphStoreSimplifiedProjectDisassociatedRepoEdge = {
|
|
|
24554
24760
|
__typename?: 'GraphStoreSimplifiedProjectDisassociatedRepoEdge';
|
|
24555
24761
|
createdAt: Scalars['DateTime']['output'];
|
|
24556
24762
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24763
|
+
id: Scalars['ID']['output'];
|
|
24557
24764
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24558
24765
|
node?: Maybe<GraphStoreSimplifiedProjectDisassociatedRepoUnion>;
|
|
24559
24766
|
};
|
|
@@ -24568,6 +24775,7 @@ export declare type GraphStoreSimplifiedProjectDisassociatedRepoInverseEdge = {
|
|
|
24568
24775
|
__typename?: 'GraphStoreSimplifiedProjectDisassociatedRepoInverseEdge';
|
|
24569
24776
|
createdAt: Scalars['DateTime']['output'];
|
|
24570
24777
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24778
|
+
id: Scalars['ID']['output'];
|
|
24571
24779
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24572
24780
|
node?: Maybe<GraphStoreSimplifiedProjectDisassociatedRepoInverseUnion>;
|
|
24573
24781
|
};
|
|
@@ -24584,6 +24792,7 @@ export declare type GraphStoreSimplifiedProjectDocumentationEntityEdge = {
|
|
|
24584
24792
|
__typename?: 'GraphStoreSimplifiedProjectDocumentationEntityEdge';
|
|
24585
24793
|
createdAt: Scalars['DateTime']['output'];
|
|
24586
24794
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24795
|
+
id: Scalars['ID']['output'];
|
|
24587
24796
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24588
24797
|
node?: Maybe<GraphStoreSimplifiedProjectDocumentationEntityUnion>;
|
|
24589
24798
|
};
|
|
@@ -24598,6 +24807,7 @@ export declare type GraphStoreSimplifiedProjectDocumentationEntityInverseEdge =
|
|
|
24598
24807
|
__typename?: 'GraphStoreSimplifiedProjectDocumentationEntityInverseEdge';
|
|
24599
24808
|
createdAt: Scalars['DateTime']['output'];
|
|
24600
24809
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24810
|
+
id: Scalars['ID']['output'];
|
|
24601
24811
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24602
24812
|
node?: Maybe<GraphStoreSimplifiedProjectDocumentationEntityInverseUnion>;
|
|
24603
24813
|
};
|
|
@@ -24614,6 +24824,7 @@ export declare type GraphStoreSimplifiedProjectDocumentationPageEdge = {
|
|
|
24614
24824
|
__typename?: 'GraphStoreSimplifiedProjectDocumentationPageEdge';
|
|
24615
24825
|
createdAt: Scalars['DateTime']['output'];
|
|
24616
24826
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24827
|
+
id: Scalars['ID']['output'];
|
|
24617
24828
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24618
24829
|
node?: Maybe<GraphStoreSimplifiedProjectDocumentationPageUnion>;
|
|
24619
24830
|
};
|
|
@@ -24628,6 +24839,7 @@ export declare type GraphStoreSimplifiedProjectDocumentationPageInverseEdge = {
|
|
|
24628
24839
|
__typename?: 'GraphStoreSimplifiedProjectDocumentationPageInverseEdge';
|
|
24629
24840
|
createdAt: Scalars['DateTime']['output'];
|
|
24630
24841
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24842
|
+
id: Scalars['ID']['output'];
|
|
24631
24843
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24632
24844
|
node?: Maybe<GraphStoreSimplifiedProjectDocumentationPageInverseUnion>;
|
|
24633
24845
|
};
|
|
@@ -24644,6 +24856,7 @@ export declare type GraphStoreSimplifiedProjectDocumentationSpaceEdge = {
|
|
|
24644
24856
|
__typename?: 'GraphStoreSimplifiedProjectDocumentationSpaceEdge';
|
|
24645
24857
|
createdAt: Scalars['DateTime']['output'];
|
|
24646
24858
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24859
|
+
id: Scalars['ID']['output'];
|
|
24647
24860
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24648
24861
|
node?: Maybe<GraphStoreSimplifiedProjectDocumentationSpaceUnion>;
|
|
24649
24862
|
};
|
|
@@ -24658,6 +24871,7 @@ export declare type GraphStoreSimplifiedProjectDocumentationSpaceInverseEdge = {
|
|
|
24658
24871
|
__typename?: 'GraphStoreSimplifiedProjectDocumentationSpaceInverseEdge';
|
|
24659
24872
|
createdAt: Scalars['DateTime']['output'];
|
|
24660
24873
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24874
|
+
id: Scalars['ID']['output'];
|
|
24661
24875
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24662
24876
|
node?: Maybe<GraphStoreSimplifiedProjectDocumentationSpaceInverseUnion>;
|
|
24663
24877
|
};
|
|
@@ -24674,6 +24888,7 @@ export declare type GraphStoreSimplifiedProjectExplicitlyAssociatedRepoEdge = {
|
|
|
24674
24888
|
__typename?: 'GraphStoreSimplifiedProjectExplicitlyAssociatedRepoEdge';
|
|
24675
24889
|
createdAt: Scalars['DateTime']['output'];
|
|
24676
24890
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24891
|
+
id: Scalars['ID']['output'];
|
|
24677
24892
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24678
24893
|
node?: Maybe<GraphStoreSimplifiedProjectExplicitlyAssociatedRepoUnion>;
|
|
24679
24894
|
};
|
|
@@ -24688,6 +24903,7 @@ export declare type GraphStoreSimplifiedProjectExplicitlyAssociatedRepoInverseEd
|
|
|
24688
24903
|
__typename?: 'GraphStoreSimplifiedProjectExplicitlyAssociatedRepoInverseEdge';
|
|
24689
24904
|
createdAt: Scalars['DateTime']['output'];
|
|
24690
24905
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24906
|
+
id: Scalars['ID']['output'];
|
|
24691
24907
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24692
24908
|
node?: Maybe<GraphStoreSimplifiedProjectExplicitlyAssociatedRepoInverseUnion>;
|
|
24693
24909
|
};
|
|
@@ -24704,6 +24920,7 @@ export declare type GraphStoreSimplifiedProjectHasIssueEdge = {
|
|
|
24704
24920
|
__typename?: 'GraphStoreSimplifiedProjectHasIssueEdge';
|
|
24705
24921
|
createdAt: Scalars['DateTime']['output'];
|
|
24706
24922
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24923
|
+
id: Scalars['ID']['output'];
|
|
24707
24924
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24708
24925
|
node?: Maybe<GraphStoreSimplifiedProjectHasIssueUnion>;
|
|
24709
24926
|
};
|
|
@@ -24718,6 +24935,7 @@ export declare type GraphStoreSimplifiedProjectHasIssueInverseEdge = {
|
|
|
24718
24935
|
__typename?: 'GraphStoreSimplifiedProjectHasIssueInverseEdge';
|
|
24719
24936
|
createdAt: Scalars['DateTime']['output'];
|
|
24720
24937
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24938
|
+
id: Scalars['ID']['output'];
|
|
24721
24939
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24722
24940
|
node?: Maybe<GraphStoreSimplifiedProjectHasIssueInverseUnion>;
|
|
24723
24941
|
};
|
|
@@ -24734,6 +24952,7 @@ export declare type GraphStoreSimplifiedProjectHasRelatedWorkWithProjectEdge = {
|
|
|
24734
24952
|
__typename?: 'GraphStoreSimplifiedProjectHasRelatedWorkWithProjectEdge';
|
|
24735
24953
|
createdAt: Scalars['DateTime']['output'];
|
|
24736
24954
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24955
|
+
id: Scalars['ID']['output'];
|
|
24737
24956
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24738
24957
|
node?: Maybe<GraphStoreSimplifiedProjectHasRelatedWorkWithProjectUnion>;
|
|
24739
24958
|
};
|
|
@@ -24748,6 +24967,7 @@ export declare type GraphStoreSimplifiedProjectHasRelatedWorkWithProjectInverseE
|
|
|
24748
24967
|
__typename?: 'GraphStoreSimplifiedProjectHasRelatedWorkWithProjectInverseEdge';
|
|
24749
24968
|
createdAt: Scalars['DateTime']['output'];
|
|
24750
24969
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24970
|
+
id: Scalars['ID']['output'];
|
|
24751
24971
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24752
24972
|
node?: Maybe<GraphStoreSimplifiedProjectHasRelatedWorkWithProjectInverseUnion>;
|
|
24753
24973
|
};
|
|
@@ -24764,6 +24984,7 @@ export declare type GraphStoreSimplifiedProjectHasSharedVersionWithEdge = {
|
|
|
24764
24984
|
__typename?: 'GraphStoreSimplifiedProjectHasSharedVersionWithEdge';
|
|
24765
24985
|
createdAt: Scalars['DateTime']['output'];
|
|
24766
24986
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24987
|
+
id: Scalars['ID']['output'];
|
|
24767
24988
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24768
24989
|
node?: Maybe<GraphStoreSimplifiedProjectHasSharedVersionWithUnion>;
|
|
24769
24990
|
};
|
|
@@ -24778,6 +24999,7 @@ export declare type GraphStoreSimplifiedProjectHasSharedVersionWithInverseEdge =
|
|
|
24778
24999
|
__typename?: 'GraphStoreSimplifiedProjectHasSharedVersionWithInverseEdge';
|
|
24779
25000
|
createdAt: Scalars['DateTime']['output'];
|
|
24780
25001
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25002
|
+
id: Scalars['ID']['output'];
|
|
24781
25003
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24782
25004
|
node?: Maybe<GraphStoreSimplifiedProjectHasSharedVersionWithInverseUnion>;
|
|
24783
25005
|
};
|
|
@@ -24794,6 +25016,7 @@ export declare type GraphStoreSimplifiedProjectHasVersionEdge = {
|
|
|
24794
25016
|
__typename?: 'GraphStoreSimplifiedProjectHasVersionEdge';
|
|
24795
25017
|
createdAt: Scalars['DateTime']['output'];
|
|
24796
25018
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25019
|
+
id: Scalars['ID']['output'];
|
|
24797
25020
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24798
25021
|
node?: Maybe<GraphStoreSimplifiedProjectHasVersionUnion>;
|
|
24799
25022
|
};
|
|
@@ -24808,6 +25031,7 @@ export declare type GraphStoreSimplifiedProjectHasVersionInverseEdge = {
|
|
|
24808
25031
|
__typename?: 'GraphStoreSimplifiedProjectHasVersionInverseEdge';
|
|
24809
25032
|
createdAt: Scalars['DateTime']['output'];
|
|
24810
25033
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25034
|
+
id: Scalars['ID']['output'];
|
|
24811
25035
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24812
25036
|
node?: Maybe<GraphStoreSimplifiedProjectHasVersionInverseUnion>;
|
|
24813
25037
|
};
|
|
@@ -24822,6 +25046,7 @@ export declare type GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabili
|
|
|
24822
25046
|
__typename?: 'GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityEdge';
|
|
24823
25047
|
createdAt: Scalars['DateTime']['output'];
|
|
24824
25048
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25049
|
+
id: Scalars['ID']['output'];
|
|
24825
25050
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24826
25051
|
node?: Maybe<GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityUnion>;
|
|
24827
25052
|
};
|
|
@@ -24837,6 +25062,7 @@ export declare type GraphStoreSimplifiedServiceLinkedIncidentEdge = {
|
|
|
24837
25062
|
__typename?: 'GraphStoreSimplifiedServiceLinkedIncidentEdge';
|
|
24838
25063
|
createdAt: Scalars['DateTime']['output'];
|
|
24839
25064
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25065
|
+
id: Scalars['ID']['output'];
|
|
24840
25066
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24841
25067
|
node?: Maybe<GraphStoreSimplifiedServiceLinkedIncidentUnion>;
|
|
24842
25068
|
};
|
|
@@ -24851,6 +25077,7 @@ export declare type GraphStoreSimplifiedServiceLinkedIncidentInverseEdge = {
|
|
|
24851
25077
|
__typename?: 'GraphStoreSimplifiedServiceLinkedIncidentInverseEdge';
|
|
24852
25078
|
createdAt: Scalars['DateTime']['output'];
|
|
24853
25079
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25080
|
+
id: Scalars['ID']['output'];
|
|
24854
25081
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24855
25082
|
node?: Maybe<GraphStoreSimplifiedServiceLinkedIncidentInverseUnion>;
|
|
24856
25083
|
};
|
|
@@ -24867,6 +25094,7 @@ export declare type GraphStoreSimplifiedShipit57IssueLinksToPageEdge = {
|
|
|
24867
25094
|
__typename?: 'GraphStoreSimplifiedShipit57IssueLinksToPageEdge';
|
|
24868
25095
|
createdAt: Scalars['DateTime']['output'];
|
|
24869
25096
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25097
|
+
id: Scalars['ID']['output'];
|
|
24870
25098
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24871
25099
|
node?: Maybe<GraphStoreSimplifiedShipit57IssueLinksToPageUnion>;
|
|
24872
25100
|
};
|
|
@@ -24881,6 +25109,7 @@ export declare type GraphStoreSimplifiedShipit57IssueLinksToPageInverseEdge = {
|
|
|
24881
25109
|
__typename?: 'GraphStoreSimplifiedShipit57IssueLinksToPageInverseEdge';
|
|
24882
25110
|
createdAt: Scalars['DateTime']['output'];
|
|
24883
25111
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25112
|
+
id: Scalars['ID']['output'];
|
|
24884
25113
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24885
25114
|
node?: Maybe<GraphStoreSimplifiedShipit57IssueLinksToPageInverseUnion>;
|
|
24886
25115
|
};
|
|
@@ -24894,6 +25123,7 @@ export declare type GraphStoreSimplifiedShipit57IssueLinksToPageManualEdge = {
|
|
|
24894
25123
|
__typename?: 'GraphStoreSimplifiedShipit57IssueLinksToPageManualEdge';
|
|
24895
25124
|
createdAt: Scalars['DateTime']['output'];
|
|
24896
25125
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25126
|
+
id: Scalars['ID']['output'];
|
|
24897
25127
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24898
25128
|
node?: Maybe<GraphStoreSimplifiedShipit57IssueLinksToPageManualUnion>;
|
|
24899
25129
|
};
|
|
@@ -24906,6 +25136,7 @@ export declare type GraphStoreSimplifiedShipit57IssueLinksToPageManualInverseEdg
|
|
|
24906
25136
|
__typename?: 'GraphStoreSimplifiedShipit57IssueLinksToPageManualInverseEdge';
|
|
24907
25137
|
createdAt: Scalars['DateTime']['output'];
|
|
24908
25138
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25139
|
+
id: Scalars['ID']['output'];
|
|
24909
25140
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24910
25141
|
node?: Maybe<GraphStoreSimplifiedShipit57IssueLinksToPageManualInverseUnion>;
|
|
24911
25142
|
};
|
|
@@ -24923,6 +25154,7 @@ export declare type GraphStoreSimplifiedShipit57IssueRecursiveLinksToPageEdge =
|
|
|
24923
25154
|
__typename?: 'GraphStoreSimplifiedShipit57IssueRecursiveLinksToPageEdge';
|
|
24924
25155
|
createdAt: Scalars['DateTime']['output'];
|
|
24925
25156
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25157
|
+
id: Scalars['ID']['output'];
|
|
24926
25158
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24927
25159
|
node?: Maybe<GraphStoreSimplifiedShipit57IssueRecursiveLinksToPageUnion>;
|
|
24928
25160
|
};
|
|
@@ -24937,6 +25169,7 @@ export declare type GraphStoreSimplifiedShipit57IssueRecursiveLinksToPageInverse
|
|
|
24937
25169
|
__typename?: 'GraphStoreSimplifiedShipit57IssueRecursiveLinksToPageInverseEdge';
|
|
24938
25170
|
createdAt: Scalars['DateTime']['output'];
|
|
24939
25171
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25172
|
+
id: Scalars['ID']['output'];
|
|
24940
25173
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24941
25174
|
node?: Maybe<GraphStoreSimplifiedShipit57IssueRecursiveLinksToPageInverseUnion>;
|
|
24942
25175
|
};
|
|
@@ -24951,6 +25184,7 @@ export declare type GraphStoreSimplifiedShipit57PullRequestLinksToPageEdge = {
|
|
|
24951
25184
|
__typename?: 'GraphStoreSimplifiedShipit57PullRequestLinksToPageEdge';
|
|
24952
25185
|
createdAt: Scalars['DateTime']['output'];
|
|
24953
25186
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25187
|
+
id: Scalars['ID']['output'];
|
|
24954
25188
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24955
25189
|
node?: Maybe<GraphStoreSimplifiedShipit57PullRequestLinksToPageUnion>;
|
|
24956
25190
|
};
|
|
@@ -24963,6 +25197,7 @@ export declare type GraphStoreSimplifiedShipit57PullRequestLinksToPageInverseEdg
|
|
|
24963
25197
|
__typename?: 'GraphStoreSimplifiedShipit57PullRequestLinksToPageInverseEdge';
|
|
24964
25198
|
createdAt: Scalars['DateTime']['output'];
|
|
24965
25199
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25200
|
+
id: Scalars['ID']['output'];
|
|
24966
25201
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24967
25202
|
node?: Maybe<GraphStoreSimplifiedShipit57PullRequestLinksToPageInverseUnion>;
|
|
24968
25203
|
};
|
|
@@ -24979,6 +25214,7 @@ export declare type GraphStoreSimplifiedSprintAssociatedDeploymentEdge = {
|
|
|
24979
25214
|
__typename?: 'GraphStoreSimplifiedSprintAssociatedDeploymentEdge';
|
|
24980
25215
|
createdAt: Scalars['DateTime']['output'];
|
|
24981
25216
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25217
|
+
id: Scalars['ID']['output'];
|
|
24982
25218
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24983
25219
|
node?: Maybe<GraphStoreSimplifiedSprintAssociatedDeploymentUnion>;
|
|
24984
25220
|
};
|
|
@@ -24994,6 +25230,7 @@ export declare type GraphStoreSimplifiedSprintAssociatedFeatureFlagEdge = {
|
|
|
24994
25230
|
__typename?: 'GraphStoreSimplifiedSprintAssociatedFeatureFlagEdge';
|
|
24995
25231
|
createdAt: Scalars['DateTime']['output'];
|
|
24996
25232
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25233
|
+
id: Scalars['ID']['output'];
|
|
24997
25234
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24998
25235
|
node?: Maybe<GraphStoreSimplifiedSprintAssociatedFeatureFlagUnion>;
|
|
24999
25236
|
};
|
|
@@ -25009,6 +25246,7 @@ export declare type GraphStoreSimplifiedSprintAssociatedPrEdge = {
|
|
|
25009
25246
|
__typename?: 'GraphStoreSimplifiedSprintAssociatedPrEdge';
|
|
25010
25247
|
createdAt: Scalars['DateTime']['output'];
|
|
25011
25248
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25249
|
+
id: Scalars['ID']['output'];
|
|
25012
25250
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25013
25251
|
node?: Maybe<GraphStoreSimplifiedSprintAssociatedPrUnion>;
|
|
25014
25252
|
};
|
|
@@ -25024,6 +25262,7 @@ export declare type GraphStoreSimplifiedSprintAssociatedVulnerabilityEdge = {
|
|
|
25024
25262
|
__typename?: 'GraphStoreSimplifiedSprintAssociatedVulnerabilityEdge';
|
|
25025
25263
|
createdAt: Scalars['DateTime']['output'];
|
|
25026
25264
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25265
|
+
id: Scalars['ID']['output'];
|
|
25027
25266
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25028
25267
|
node?: Maybe<GraphStoreSimplifiedSprintAssociatedVulnerabilityUnion>;
|
|
25029
25268
|
};
|
|
@@ -25039,6 +25278,7 @@ export declare type GraphStoreSimplifiedSprintContainsIssueEdge = {
|
|
|
25039
25278
|
__typename?: 'GraphStoreSimplifiedSprintContainsIssueEdge';
|
|
25040
25279
|
createdAt: Scalars['DateTime']['output'];
|
|
25041
25280
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25281
|
+
id: Scalars['ID']['output'];
|
|
25042
25282
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25043
25283
|
node?: Maybe<GraphStoreSimplifiedSprintContainsIssueUnion>;
|
|
25044
25284
|
};
|
|
@@ -25054,6 +25294,7 @@ export declare type GraphStoreSimplifiedSprintRetrospectivePageEdge = {
|
|
|
25054
25294
|
__typename?: 'GraphStoreSimplifiedSprintRetrospectivePageEdge';
|
|
25055
25295
|
createdAt: Scalars['DateTime']['output'];
|
|
25056
25296
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25297
|
+
id: Scalars['ID']['output'];
|
|
25057
25298
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25058
25299
|
node?: Maybe<GraphStoreSimplifiedSprintRetrospectivePageUnion>;
|
|
25059
25300
|
};
|
|
@@ -25069,6 +25310,7 @@ export declare type GraphStoreSimplifiedSprintRetrospectiveWhiteboardEdge = {
|
|
|
25069
25310
|
__typename?: 'GraphStoreSimplifiedSprintRetrospectiveWhiteboardEdge';
|
|
25070
25311
|
createdAt: Scalars['DateTime']['output'];
|
|
25071
25312
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25313
|
+
id: Scalars['ID']['output'];
|
|
25072
25314
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25073
25315
|
node?: Maybe<GraphStoreSimplifiedSprintRetrospectiveWhiteboardUnion>;
|
|
25074
25316
|
};
|
|
@@ -25084,6 +25326,7 @@ export declare type GraphStoreSimplifiedTeamWorksOnProjectEdge = {
|
|
|
25084
25326
|
__typename?: 'GraphStoreSimplifiedTeamWorksOnProjectEdge';
|
|
25085
25327
|
createdAt: Scalars['DateTime']['output'];
|
|
25086
25328
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25329
|
+
id: Scalars['ID']['output'];
|
|
25087
25330
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25088
25331
|
node?: Maybe<GraphStoreSimplifiedTeamWorksOnProjectUnion>;
|
|
25089
25332
|
};
|
|
@@ -25099,6 +25342,7 @@ export declare type GraphStoreSimplifiedTestPerfhammerMaterializationAInverseEdg
|
|
|
25099
25342
|
__typename?: 'GraphStoreSimplifiedTestPerfhammerMaterializationAInverseEdge';
|
|
25100
25343
|
createdAt: Scalars['DateTime']['output'];
|
|
25101
25344
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25345
|
+
id: Scalars['ID']['output'];
|
|
25102
25346
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25103
25347
|
node?: Maybe<GraphStoreSimplifiedTestPerfhammerMaterializationAInverseUnion>;
|
|
25104
25348
|
};
|
|
@@ -25114,6 +25358,7 @@ export declare type GraphStoreSimplifiedTestPerfhammerMaterializationInverseEdge
|
|
|
25114
25358
|
__typename?: 'GraphStoreSimplifiedTestPerfhammerMaterializationInverseEdge';
|
|
25115
25359
|
createdAt: Scalars['DateTime']['output'];
|
|
25116
25360
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25361
|
+
id: Scalars['ID']['output'];
|
|
25117
25362
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25118
25363
|
node?: Maybe<GraphStoreSimplifiedTestPerfhammerMaterializationInverseUnion>;
|
|
25119
25364
|
};
|
|
@@ -25127,6 +25372,7 @@ export declare type GraphStoreSimplifiedTestPerfhammerRelationshipInverseEdge =
|
|
|
25127
25372
|
__typename?: 'GraphStoreSimplifiedTestPerfhammerRelationshipInverseEdge';
|
|
25128
25373
|
createdAt: Scalars['DateTime']['output'];
|
|
25129
25374
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25375
|
+
id: Scalars['ID']['output'];
|
|
25130
25376
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25131
25377
|
node?: Maybe<GraphStoreSimplifiedTestPerfhammerRelationshipInverseUnion>;
|
|
25132
25378
|
};
|
|
@@ -25142,6 +25388,7 @@ export declare type GraphStoreSimplifiedVersionAssociatedBranchInverseEdge = {
|
|
|
25142
25388
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedBranchInverseEdge';
|
|
25143
25389
|
createdAt: Scalars['DateTime']['output'];
|
|
25144
25390
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25391
|
+
id: Scalars['ID']['output'];
|
|
25145
25392
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25146
25393
|
node?: Maybe<GraphStoreSimplifiedVersionAssociatedBranchInverseUnion>;
|
|
25147
25394
|
};
|
|
@@ -25157,6 +25404,7 @@ export declare type GraphStoreSimplifiedVersionAssociatedBuildInverseEdge = {
|
|
|
25157
25404
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedBuildInverseEdge';
|
|
25158
25405
|
createdAt: Scalars['DateTime']['output'];
|
|
25159
25406
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25407
|
+
id: Scalars['ID']['output'];
|
|
25160
25408
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25161
25409
|
node?: Maybe<GraphStoreSimplifiedVersionAssociatedBuildInverseUnion>;
|
|
25162
25410
|
};
|
|
@@ -25172,6 +25420,7 @@ export declare type GraphStoreSimplifiedVersionAssociatedCommitInverseEdge = {
|
|
|
25172
25420
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedCommitInverseEdge';
|
|
25173
25421
|
createdAt: Scalars['DateTime']['output'];
|
|
25174
25422
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25423
|
+
id: Scalars['ID']['output'];
|
|
25175
25424
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25176
25425
|
node?: Maybe<GraphStoreSimplifiedVersionAssociatedCommitInverseUnion>;
|
|
25177
25426
|
};
|
|
@@ -25187,6 +25436,7 @@ export declare type GraphStoreSimplifiedVersionAssociatedDeploymentEdge = {
|
|
|
25187
25436
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedDeploymentEdge';
|
|
25188
25437
|
createdAt: Scalars['DateTime']['output'];
|
|
25189
25438
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25439
|
+
id: Scalars['ID']['output'];
|
|
25190
25440
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25191
25441
|
node?: Maybe<GraphStoreSimplifiedVersionAssociatedDeploymentUnion>;
|
|
25192
25442
|
};
|
|
@@ -25201,6 +25451,7 @@ export declare type GraphStoreSimplifiedVersionAssociatedDeploymentInverseEdge =
|
|
|
25201
25451
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedDeploymentInverseEdge';
|
|
25202
25452
|
createdAt: Scalars['DateTime']['output'];
|
|
25203
25453
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25454
|
+
id: Scalars['ID']['output'];
|
|
25204
25455
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25205
25456
|
node?: Maybe<GraphStoreSimplifiedVersionAssociatedDeploymentInverseUnion>;
|
|
25206
25457
|
};
|
|
@@ -25217,6 +25468,7 @@ export declare type GraphStoreSimplifiedVersionAssociatedDesignEdge = {
|
|
|
25217
25468
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedDesignEdge';
|
|
25218
25469
|
createdAt: Scalars['DateTime']['output'];
|
|
25219
25470
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25471
|
+
id: Scalars['ID']['output'];
|
|
25220
25472
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25221
25473
|
node?: Maybe<GraphStoreSimplifiedVersionAssociatedDesignUnion>;
|
|
25222
25474
|
};
|
|
@@ -25231,6 +25483,7 @@ export declare type GraphStoreSimplifiedVersionAssociatedDesignInverseEdge = {
|
|
|
25231
25483
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedDesignInverseEdge';
|
|
25232
25484
|
createdAt: Scalars['DateTime']['output'];
|
|
25233
25485
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25486
|
+
id: Scalars['ID']['output'];
|
|
25234
25487
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25235
25488
|
node?: Maybe<GraphStoreSimplifiedVersionAssociatedDesignInverseUnion>;
|
|
25236
25489
|
};
|
|
@@ -25247,6 +25500,7 @@ export declare type GraphStoreSimplifiedVersionAssociatedFeatureFlagEdge = {
|
|
|
25247
25500
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedFeatureFlagEdge';
|
|
25248
25501
|
createdAt: Scalars['DateTime']['output'];
|
|
25249
25502
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25503
|
+
id: Scalars['ID']['output'];
|
|
25250
25504
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25251
25505
|
node?: Maybe<GraphStoreSimplifiedVersionAssociatedFeatureFlagUnion>;
|
|
25252
25506
|
};
|
|
@@ -25261,6 +25515,7 @@ export declare type GraphStoreSimplifiedVersionAssociatedFeatureFlagInverseEdge
|
|
|
25261
25515
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedFeatureFlagInverseEdge';
|
|
25262
25516
|
createdAt: Scalars['DateTime']['output'];
|
|
25263
25517
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25518
|
+
id: Scalars['ID']['output'];
|
|
25264
25519
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25265
25520
|
node?: Maybe<GraphStoreSimplifiedVersionAssociatedFeatureFlagInverseUnion>;
|
|
25266
25521
|
};
|
|
@@ -25275,6 +25530,7 @@ export declare type GraphStoreSimplifiedVersionAssociatedIssueEdge = {
|
|
|
25275
25530
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedIssueEdge';
|
|
25276
25531
|
createdAt: Scalars['DateTime']['output'];
|
|
25277
25532
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25533
|
+
id: Scalars['ID']['output'];
|
|
25278
25534
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25279
25535
|
node?: Maybe<GraphStoreSimplifiedVersionAssociatedIssueUnion>;
|
|
25280
25536
|
};
|
|
@@ -25287,6 +25543,7 @@ export declare type GraphStoreSimplifiedVersionAssociatedIssueInverseEdge = {
|
|
|
25287
25543
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedIssueInverseEdge';
|
|
25288
25544
|
createdAt: Scalars['DateTime']['output'];
|
|
25289
25545
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25546
|
+
id: Scalars['ID']['output'];
|
|
25290
25547
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25291
25548
|
node?: Maybe<GraphStoreSimplifiedVersionAssociatedIssueInverseUnion>;
|
|
25292
25549
|
};
|
|
@@ -25303,6 +25560,7 @@ export declare type GraphStoreSimplifiedVersionAssociatedPullRequestEdge = {
|
|
|
25303
25560
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedPullRequestEdge';
|
|
25304
25561
|
createdAt: Scalars['DateTime']['output'];
|
|
25305
25562
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25563
|
+
id: Scalars['ID']['output'];
|
|
25306
25564
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25307
25565
|
node?: Maybe<GraphStoreSimplifiedVersionAssociatedPullRequestUnion>;
|
|
25308
25566
|
};
|
|
@@ -25317,6 +25575,7 @@ export declare type GraphStoreSimplifiedVersionAssociatedPullRequestInverseEdge
|
|
|
25317
25575
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedPullRequestInverseEdge';
|
|
25318
25576
|
createdAt: Scalars['DateTime']['output'];
|
|
25319
25577
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25578
|
+
id: Scalars['ID']['output'];
|
|
25320
25579
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25321
25580
|
node?: Maybe<GraphStoreSimplifiedVersionAssociatedPullRequestInverseUnion>;
|
|
25322
25581
|
};
|
|
@@ -25331,6 +25590,7 @@ export declare type GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseEdge =
|
|
|
25331
25590
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseEdge';
|
|
25332
25591
|
createdAt: Scalars['DateTime']['output'];
|
|
25333
25592
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25593
|
+
id: Scalars['ID']['output'];
|
|
25334
25594
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25335
25595
|
node?: Maybe<GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseUnion>;
|
|
25336
25596
|
};
|
|
@@ -25346,6 +25606,7 @@ export declare type GraphStoreSimplifiedVersionUserAssociatedFeatureFlagEdge = {
|
|
|
25346
25606
|
__typename?: 'GraphStoreSimplifiedVersionUserAssociatedFeatureFlagEdge';
|
|
25347
25607
|
createdAt: Scalars['DateTime']['output'];
|
|
25348
25608
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25609
|
+
id: Scalars['ID']['output'];
|
|
25349
25610
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25350
25611
|
node?: Maybe<GraphStoreSimplifiedVersionUserAssociatedFeatureFlagUnion>;
|
|
25351
25612
|
};
|
|
@@ -25360,6 +25621,7 @@ export declare type GraphStoreSimplifiedVersionUserAssociatedFeatureFlagInverseE
|
|
|
25360
25621
|
__typename?: 'GraphStoreSimplifiedVersionUserAssociatedFeatureFlagInverseEdge';
|
|
25361
25622
|
createdAt: Scalars['DateTime']['output'];
|
|
25362
25623
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25624
|
+
id: Scalars['ID']['output'];
|
|
25363
25625
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25364
25626
|
node?: Maybe<GraphStoreSimplifiedVersionUserAssociatedFeatureFlagInverseUnion>;
|
|
25365
25627
|
};
|
|
@@ -25376,6 +25638,7 @@ export declare type GraphStoreSimplifiedVulnerabilityAssociatedIssueEdge = {
|
|
|
25376
25638
|
__typename?: 'GraphStoreSimplifiedVulnerabilityAssociatedIssueEdge';
|
|
25377
25639
|
createdAt: Scalars['DateTime']['output'];
|
|
25378
25640
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25641
|
+
id: Scalars['ID']['output'];
|
|
25379
25642
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25380
25643
|
node?: Maybe<GraphStoreSimplifiedVulnerabilityAssociatedIssueUnion>;
|
|
25381
25644
|
};
|
|
@@ -25390,6 +25653,7 @@ export declare type GraphStoreSimplifiedVulnerabilityAssociatedIssueInverseEdge
|
|
|
25390
25653
|
__typename?: 'GraphStoreSimplifiedVulnerabilityAssociatedIssueInverseEdge';
|
|
25391
25654
|
createdAt: Scalars['DateTime']['output'];
|
|
25392
25655
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25656
|
+
id: Scalars['ID']['output'];
|
|
25393
25657
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25394
25658
|
node?: Maybe<GraphStoreSimplifiedVulnerabilityAssociatedIssueInverseUnion>;
|
|
25395
25659
|
};
|
|
@@ -40893,7 +41157,14 @@ export declare type JsmChatUpdateChannelSettingsInput = {
|
|
|
40893
41157
|
};
|
|
40894
41158
|
export declare type JsmChatUpdateChannelSettingsOutput = {
|
|
40895
41159
|
__typename?: 'JsmChatUpdateChannelSettingsOutput';
|
|
41160
|
+
channelName?: Maybe<Scalars['String']['output']>;
|
|
41161
|
+
channelType?: Maybe<Scalars['String']['output']>;
|
|
41162
|
+
isPrivate?: Maybe<Scalars['Boolean']['output']>;
|
|
40896
41163
|
message: Scalars['String']['output'];
|
|
41164
|
+
requestTypes?: Maybe<Array<Maybe<JsmChatRequestTypeData>>>;
|
|
41165
|
+
settings?: Maybe<JsmChatChannelSettings>;
|
|
41166
|
+
slackChannelId?: Maybe<Scalars['String']['output']>;
|
|
41167
|
+
slackTeamId?: Maybe<Scalars['String']['output']>;
|
|
40897
41168
|
status: Scalars['Boolean']['output'];
|
|
40898
41169
|
};
|
|
40899
41170
|
export declare type JsmChatUpdateProjectSettingsInput = {
|
|
@@ -40991,9 +41262,11 @@ export declare type KnowledgeDiscoveryConfluenceSpace = KnowledgeDiscoveryEntity
|
|
|
40991
41262
|
};
|
|
40992
41263
|
export declare type KnowledgeDiscoveryCreateDefinitionInput = {
|
|
40993
41264
|
definition: Scalars['String']['input'];
|
|
41265
|
+
entityIdInScope: Scalars['String']['input'];
|
|
40994
41266
|
keyPhrase: Scalars['String']['input'];
|
|
40995
41267
|
referenceContentId?: InputMaybe<Scalars['String']['input']>;
|
|
40996
41268
|
referenceUrl?: InputMaybe<Scalars['String']['input']>;
|
|
41269
|
+
scope: KnowledgeDiscoveryDefinitionScope;
|
|
40997
41270
|
workspaceId: Scalars['String']['input'];
|
|
40998
41271
|
};
|
|
40999
41272
|
export declare type KnowledgeDiscoveryCreateDefinitionPayload = Payload & {
|
|
@@ -41009,8 +41282,10 @@ export declare type KnowledgeDiscoveryDefinition = {
|
|
|
41009
41282
|
createdAt: Scalars['String']['output'];
|
|
41010
41283
|
definition: Scalars['String']['output'];
|
|
41011
41284
|
editor?: Maybe<User>;
|
|
41285
|
+
entityIdInScope: Scalars['String']['output'];
|
|
41012
41286
|
keyPhrase: Scalars['String']['output'];
|
|
41013
41287
|
referenceUrl?: Maybe<Scalars['String']['output']>;
|
|
41288
|
+
scope: KnowledgeDiscoveryDefinitionScope;
|
|
41014
41289
|
};
|
|
41015
41290
|
export declare type KnowledgeDiscoveryDefinitionHistoryResult = KnowledgeDiscoveryDefinitionList | QueryError;
|
|
41016
41291
|
export declare type KnowledgeDiscoveryDefinitionList = {
|
|
@@ -41018,6 +41293,12 @@ export declare type KnowledgeDiscoveryDefinitionList = {
|
|
|
41018
41293
|
definitions?: Maybe<Array<Maybe<KnowledgeDiscoveryDefinition>>>;
|
|
41019
41294
|
};
|
|
41020
41295
|
export declare type KnowledgeDiscoveryDefinitionResult = KnowledgeDiscoveryDefinition | QueryError;
|
|
41296
|
+
export declare enum KnowledgeDiscoveryDefinitionScope {
|
|
41297
|
+
Blogpost = "BLOGPOST",
|
|
41298
|
+
Organization = "ORGANIZATION",
|
|
41299
|
+
Page = "PAGE",
|
|
41300
|
+
Space = "SPACE"
|
|
41301
|
+
}
|
|
41021
41302
|
export declare type KnowledgeDiscoveryEntity = {
|
|
41022
41303
|
id: Scalars['ID']['output'];
|
|
41023
41304
|
};
|
|
@@ -41077,11 +41358,15 @@ export declare type KnowledgeDiscoveryQueryApi = {
|
|
|
41077
41358
|
topic?: Maybe<KnowledgeDiscoveryTopicResult>;
|
|
41078
41359
|
};
|
|
41079
41360
|
export declare type KnowledgeDiscoveryQueryApiDefinitionArgs = {
|
|
41361
|
+
contentId: Scalars['String']['input'];
|
|
41080
41362
|
keyPhrase: Scalars['String']['input'];
|
|
41363
|
+
spaceId: Scalars['String']['input'];
|
|
41081
41364
|
workspaceId: Scalars['String']['input'];
|
|
41082
41365
|
};
|
|
41083
41366
|
export declare type KnowledgeDiscoveryQueryApiDefinitionHistoryArgs = {
|
|
41367
|
+
contentId: Scalars['String']['input'];
|
|
41084
41368
|
keyPhrase: Scalars['String']['input'];
|
|
41369
|
+
spaceId: Scalars['String']['input'];
|
|
41085
41370
|
workspaceId: Scalars['String']['input'];
|
|
41086
41371
|
};
|
|
41087
41372
|
export declare type KnowledgeDiscoveryQueryApiKeyPhrasesArgs = {
|
|
@@ -42440,6 +42725,7 @@ export declare type Mutation = {
|
|
|
42440
42725
|
userAuthTokenForExtension?: Maybe<UserAuthTokenForExtensionResponse>;
|
|
42441
42726
|
virtualAgent?: Maybe<VirtualAgentMutationApi>;
|
|
42442
42727
|
watchMarketplaceApp?: Maybe<WatchMarketplaceAppPayload>;
|
|
42728
|
+
workSuggestions?: Maybe<WorkSuggestionsMutation>;
|
|
42443
42729
|
};
|
|
42444
42730
|
export declare type MutationAddBetaUserAsSiteCreatorArgs = {
|
|
42445
42731
|
input: AddBetaUserAsSiteCreatorInput;
|
|
@@ -45173,6 +45459,7 @@ export declare type Query = {
|
|
|
45173
45459
|
users?: Maybe<Array<User>>;
|
|
45174
45460
|
virtualAgent?: Maybe<VirtualAgentQueryApi>;
|
|
45175
45461
|
webTriggerUrlsByAppContext?: Maybe<Array<WebTriggerUrl>>;
|
|
45462
|
+
workSuggestions?: Maybe<WorkSuggestions>;
|
|
45176
45463
|
xflow?: Maybe<Scalars['String']['output']>;
|
|
45177
45464
|
};
|
|
45178
45465
|
export declare type QueryAnchorArgs = {
|
|
@@ -47321,6 +47608,16 @@ export declare type SearchResultMicrosoftDocument = SearchResult & {
|
|
|
47321
47608
|
type: SearchResultType;
|
|
47322
47609
|
url: Scalars['URL']['output'];
|
|
47323
47610
|
};
|
|
47611
|
+
export declare type SearchResultSlackMessage = SearchResult & {
|
|
47612
|
+
__typename?: 'SearchResultSlackMessage';
|
|
47613
|
+
description: Scalars['String']['output'];
|
|
47614
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
47615
|
+
id: Scalars['ID']['output'];
|
|
47616
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
47617
|
+
title: Scalars['String']['output'];
|
|
47618
|
+
type: SearchResultType;
|
|
47619
|
+
url: Scalars['URL']['output'];
|
|
47620
|
+
};
|
|
47324
47621
|
export declare type SearchResultTrelloBoard = SearchResult & {
|
|
47325
47622
|
__typename?: 'SearchResultTrelloBoard';
|
|
47326
47623
|
description: Scalars['String']['output'];
|
|
@@ -47358,6 +47655,7 @@ export declare enum SearchResultType {
|
|
|
47358
47655
|
Goal = "goal",
|
|
47359
47656
|
Issue = "issue",
|
|
47360
47657
|
Learning = "learning",
|
|
47658
|
+
Message = "message",
|
|
47361
47659
|
Page = "page",
|
|
47362
47660
|
Plan = "plan",
|
|
47363
47661
|
Presentation = "presentation",
|
|
@@ -52990,6 +53288,208 @@ export declare type WebTriggerUrlInput = {
|
|
|
52990
53288
|
envId: Scalars['ID']['input'];
|
|
52991
53289
|
triggerKey: Scalars['String']['input'];
|
|
52992
53290
|
};
|
|
53291
|
+
export declare type WorkSuggestions = {
|
|
53292
|
+
__typename?: 'WorkSuggestions';
|
|
53293
|
+
workSuggestionsByContextAri: WorkSuggestionsConnection;
|
|
53294
|
+
};
|
|
53295
|
+
export declare type WorkSuggestionsWorkSuggestionsByContextAriArgs = {
|
|
53296
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
53297
|
+
contextAri: WorkSuggestionsContextAri;
|
|
53298
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
53299
|
+
};
|
|
53300
|
+
export declare enum WorkSuggestionsAction {
|
|
53301
|
+
Remove = "REMOVE",
|
|
53302
|
+
Snooze = "SNOOZE"
|
|
53303
|
+
}
|
|
53304
|
+
export declare type WorkSuggestionsActionInput = {
|
|
53305
|
+
cloudId: Scalars['ID']['input'];
|
|
53306
|
+
taskId: Scalars['String']['input'];
|
|
53307
|
+
};
|
|
53308
|
+
export declare type WorkSuggestionsActionPayload = Payload & {
|
|
53309
|
+
__typename?: 'WorkSuggestionsActionPayload';
|
|
53310
|
+
errors?: Maybe<Array<MutationError>>;
|
|
53311
|
+
success: Scalars['Boolean']['output'];
|
|
53312
|
+
userActionState?: Maybe<WorkSuggestionsUserActionState>;
|
|
53313
|
+
};
|
|
53314
|
+
export declare type WorkSuggestionsBlockedIssue = {
|
|
53315
|
+
__typename?: 'WorkSuggestionsBlockedIssue';
|
|
53316
|
+
issueKey: Scalars['String']['output'];
|
|
53317
|
+
title: Scalars['String']['output'];
|
|
53318
|
+
};
|
|
53319
|
+
export declare type WorkSuggestionsBlockingIssueTask = WorkSuggestionsCommon & {
|
|
53320
|
+
__typename?: 'WorkSuggestionsBlockingIssueTask';
|
|
53321
|
+
blockedIssues?: Maybe<Array<WorkSuggestionsBlockedIssue>>;
|
|
53322
|
+
id: Scalars['String']['output'];
|
|
53323
|
+
issueIconUrl: Scalars['String']['output'];
|
|
53324
|
+
issueId: Scalars['String']['output'];
|
|
53325
|
+
issueKey: Scalars['String']['output'];
|
|
53326
|
+
title: Scalars['String']['output'];
|
|
53327
|
+
url: Scalars['String']['output'];
|
|
53328
|
+
};
|
|
53329
|
+
export declare type WorkSuggestionsBuildTask = WorkSuggestionsCommon & {
|
|
53330
|
+
__typename?: 'WorkSuggestionsBuildTask';
|
|
53331
|
+
buildNumber: Scalars['Int']['output'];
|
|
53332
|
+
id: Scalars['String']['output'];
|
|
53333
|
+
issueId: Scalars['String']['output'];
|
|
53334
|
+
issueKey: Scalars['String']['output'];
|
|
53335
|
+
issueName: Scalars['String']['output'];
|
|
53336
|
+
lastUpdated: Scalars['String']['output'];
|
|
53337
|
+
numberOfFailedBuilds: Scalars['Int']['output'];
|
|
53338
|
+
title: Scalars['String']['output'];
|
|
53339
|
+
url: Scalars['String']['output'];
|
|
53340
|
+
};
|
|
53341
|
+
export declare type WorkSuggestionsCommon = {
|
|
53342
|
+
id: Scalars['String']['output'];
|
|
53343
|
+
title: Scalars['String']['output'];
|
|
53344
|
+
url: Scalars['String']['output'];
|
|
53345
|
+
};
|
|
53346
|
+
export declare type WorkSuggestionsConnection = {
|
|
53347
|
+
__typename?: 'WorkSuggestionsConnection';
|
|
53348
|
+
edges: Array<Maybe<WorkSuggestionsEdge>>;
|
|
53349
|
+
nodes: Array<Maybe<WorkSuggestionsCommon>>;
|
|
53350
|
+
pageInfo: PageInfo;
|
|
53351
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
53352
|
+
};
|
|
53353
|
+
export declare type WorkSuggestionsContextAri = {
|
|
53354
|
+
projectAri: Scalars['ID']['input'];
|
|
53355
|
+
sprintAri?: InputMaybe<Scalars['ID']['input']>;
|
|
53356
|
+
};
|
|
53357
|
+
export declare type WorkSuggestionsCreateUserProfileInput = {
|
|
53358
|
+
cloudId: Scalars['ID']['input'];
|
|
53359
|
+
persona?: InputMaybe<WorkSuggestionsUserPersona>;
|
|
53360
|
+
projectAris: Array<Scalars['ID']['input']>;
|
|
53361
|
+
};
|
|
53362
|
+
export declare type WorkSuggestionsCreateUserProfilePayload = Payload & {
|
|
53363
|
+
__typename?: 'WorkSuggestionsCreateUserProfilePayload';
|
|
53364
|
+
errors?: Maybe<Array<MutationError>>;
|
|
53365
|
+
success: Scalars['Boolean']['output'];
|
|
53366
|
+
userProfile?: Maybe<WorkSuggestionsUserProfile>;
|
|
53367
|
+
};
|
|
53368
|
+
export declare type WorkSuggestionsCriticalVulnerabilityTask = WorkSuggestionsCommon & {
|
|
53369
|
+
__typename?: 'WorkSuggestionsCriticalVulnerabilityTask';
|
|
53370
|
+
id: Scalars['String']['output'];
|
|
53371
|
+
introducedDate: Scalars['String']['output'];
|
|
53372
|
+
issueId: Scalars['String']['output'];
|
|
53373
|
+
issueKey: Scalars['String']['output'];
|
|
53374
|
+
securityContainerName: Scalars['String']['output'];
|
|
53375
|
+
status: WorkSuggestionsVulnerabilityStatus;
|
|
53376
|
+
title: Scalars['String']['output'];
|
|
53377
|
+
url: Scalars['String']['output'];
|
|
53378
|
+
};
|
|
53379
|
+
export declare type WorkSuggestionsDeploymentTask = WorkSuggestionsCommon & {
|
|
53380
|
+
__typename?: 'WorkSuggestionsDeploymentTask';
|
|
53381
|
+
environmentNames: Array<Scalars['String']['output']>;
|
|
53382
|
+
environmentType: WorkSuggestionsEnvironmentType;
|
|
53383
|
+
id: Scalars['String']['output'];
|
|
53384
|
+
issueId: Scalars['String']['output'];
|
|
53385
|
+
issueKey: Scalars['String']['output'];
|
|
53386
|
+
issueName: Scalars['String']['output'];
|
|
53387
|
+
lastUpdated: Scalars['String']['output'];
|
|
53388
|
+
numberOfFailedDeployments: Scalars['Int']['output'];
|
|
53389
|
+
pipelineName: Scalars['String']['output'];
|
|
53390
|
+
title: Scalars['String']['output'];
|
|
53391
|
+
url: Scalars['String']['output'];
|
|
53392
|
+
};
|
|
53393
|
+
export declare type WorkSuggestionsEdge = {
|
|
53394
|
+
__typename?: 'WorkSuggestionsEdge';
|
|
53395
|
+
cursor: Scalars['String']['output'];
|
|
53396
|
+
node?: Maybe<WorkSuggestionsCommon>;
|
|
53397
|
+
};
|
|
53398
|
+
export declare enum WorkSuggestionsEnvironmentType {
|
|
53399
|
+
Development = "DEVELOPMENT",
|
|
53400
|
+
Production = "PRODUCTION",
|
|
53401
|
+
Staging = "STAGING",
|
|
53402
|
+
Testing = "TESTING",
|
|
53403
|
+
Unmapped = "UNMAPPED"
|
|
53404
|
+
}
|
|
53405
|
+
export declare type WorkSuggestionsMutation = {
|
|
53406
|
+
__typename?: 'WorkSuggestionsMutation';
|
|
53407
|
+
createUserProfile?: Maybe<WorkSuggestionsCreateUserProfilePayload>;
|
|
53408
|
+
purgeUserActionStateForCurrentUser?: Maybe<WorkSuggestionsActionPayload>;
|
|
53409
|
+
purgeUserProfileForCurrentUser?: Maybe<WorkSuggestionsPurgeUserProfilePayload>;
|
|
53410
|
+
removeTask?: Maybe<WorkSuggestionsActionPayload>;
|
|
53411
|
+
snoozeTask?: Maybe<WorkSuggestionsActionPayload>;
|
|
53412
|
+
};
|
|
53413
|
+
export declare type WorkSuggestionsMutationCreateUserProfileArgs = {
|
|
53414
|
+
input: WorkSuggestionsCreateUserProfileInput;
|
|
53415
|
+
};
|
|
53416
|
+
export declare type WorkSuggestionsMutationPurgeUserActionStateForCurrentUserArgs = {
|
|
53417
|
+
input: WorkSuggestionsPurgeUserActionStateInput;
|
|
53418
|
+
};
|
|
53419
|
+
export declare type WorkSuggestionsMutationPurgeUserProfileForCurrentUserArgs = {
|
|
53420
|
+
input: WorkSuggestionsPurgeUserProfileInput;
|
|
53421
|
+
};
|
|
53422
|
+
export declare type WorkSuggestionsMutationRemoveTaskArgs = {
|
|
53423
|
+
input: WorkSuggestionsActionInput;
|
|
53424
|
+
};
|
|
53425
|
+
export declare type WorkSuggestionsMutationSnoozeTaskArgs = {
|
|
53426
|
+
input: WorkSuggestionsActionInput;
|
|
53427
|
+
};
|
|
53428
|
+
export declare type WorkSuggestionsMutationErrorExtension = MutationErrorExtension & {
|
|
53429
|
+
__typename?: 'WorkSuggestionsMutationErrorExtension';
|
|
53430
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
53431
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
53432
|
+
};
|
|
53433
|
+
export declare type WorkSuggestionsPullRequestNeedsWorkTask = WorkSuggestionsCommon & {
|
|
53434
|
+
__typename?: 'WorkSuggestionsPullRequestNeedsWorkTask';
|
|
53435
|
+
commentCount: Scalars['Int']['output'];
|
|
53436
|
+
destinationBranchName?: Maybe<Scalars['String']['output']>;
|
|
53437
|
+
id: Scalars['String']['output'];
|
|
53438
|
+
lastUpdated: Scalars['String']['output'];
|
|
53439
|
+
needsWorkCount: Scalars['Int']['output'];
|
|
53440
|
+
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
53441
|
+
sourceBranchName?: Maybe<Scalars['String']['output']>;
|
|
53442
|
+
title: Scalars['String']['output'];
|
|
53443
|
+
url: Scalars['String']['output'];
|
|
53444
|
+
};
|
|
53445
|
+
export declare type WorkSuggestionsPullRequestReviewTask = WorkSuggestionsCommon & {
|
|
53446
|
+
__typename?: 'WorkSuggestionsPullRequestReviewTask';
|
|
53447
|
+
approvalsCount: Scalars['Int']['output'];
|
|
53448
|
+
commentCount: Scalars['Int']['output'];
|
|
53449
|
+
destinationBranchName?: Maybe<Scalars['String']['output']>;
|
|
53450
|
+
id: Scalars['String']['output'];
|
|
53451
|
+
lastUpdated: Scalars['String']['output'];
|
|
53452
|
+
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
53453
|
+
sourceBranchName?: Maybe<Scalars['String']['output']>;
|
|
53454
|
+
title: Scalars['String']['output'];
|
|
53455
|
+
url: Scalars['String']['output'];
|
|
53456
|
+
};
|
|
53457
|
+
export declare type WorkSuggestionsPurgeUserActionStateInput = {
|
|
53458
|
+
cloudId: Scalars['ID']['input'];
|
|
53459
|
+
};
|
|
53460
|
+
export declare type WorkSuggestionsPurgeUserProfileInput = {
|
|
53461
|
+
cloudId: Scalars['ID']['input'];
|
|
53462
|
+
};
|
|
53463
|
+
export declare type WorkSuggestionsPurgeUserProfilePayload = Payload & {
|
|
53464
|
+
__typename?: 'WorkSuggestionsPurgeUserProfilePayload';
|
|
53465
|
+
errors?: Maybe<Array<MutationError>>;
|
|
53466
|
+
success: Scalars['Boolean']['output'];
|
|
53467
|
+
userProfile?: Maybe<WorkSuggestionsUserProfile>;
|
|
53468
|
+
};
|
|
53469
|
+
export declare type WorkSuggestionsUserActionState = {
|
|
53470
|
+
__typename?: 'WorkSuggestionsUserActionState';
|
|
53471
|
+
expireAt: Scalars['String']['output'];
|
|
53472
|
+
reason: WorkSuggestionsAction;
|
|
53473
|
+
stateId: Scalars['String']['output'];
|
|
53474
|
+
taskId: Scalars['String']['output'];
|
|
53475
|
+
};
|
|
53476
|
+
export declare enum WorkSuggestionsUserPersona {
|
|
53477
|
+
Developer = "DEVELOPER"
|
|
53478
|
+
}
|
|
53479
|
+
export declare type WorkSuggestionsUserProfile = {
|
|
53480
|
+
__typename?: 'WorkSuggestionsUserProfile';
|
|
53481
|
+
aaid: Scalars['String']['output'];
|
|
53482
|
+
createdOn: Scalars['String']['output'];
|
|
53483
|
+
id: Scalars['String']['output'];
|
|
53484
|
+
persona?: Maybe<WorkSuggestionsUserPersona>;
|
|
53485
|
+
projectAris?: Maybe<Array<Scalars['ID']['output']>>;
|
|
53486
|
+
};
|
|
53487
|
+
export declare enum WorkSuggestionsVulnerabilityStatus {
|
|
53488
|
+
Closed = "CLOSED",
|
|
53489
|
+
Ignored = "IGNORED",
|
|
53490
|
+
Open = "OPEN",
|
|
53491
|
+
Unknown = "UNKNOWN"
|
|
53492
|
+
}
|
|
52993
53493
|
export declare type _AppliedDirective = {
|
|
52994
53494
|
__typename?: '_AppliedDirective';
|
|
52995
53495
|
args: Array<_DirectiveArgument>;
|