@forge/cli-shared 5.0.0-next.2-experimental-9e36838 → 5.0.0-next.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -32
- package/out/graphql/graphql-types.d.ts +538 -3
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +47 -11
- package/package.json +2 -2
|
@@ -438,7 +438,7 @@ export declare type ActivityObject = {
|
|
|
438
438
|
subProduct?: Maybe<Scalars['String']['output']>;
|
|
439
439
|
type: Scalars['String']['output'];
|
|
440
440
|
};
|
|
441
|
-
export declare type ActivityObjectData = ConfluenceBlogPost | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceWhiteboard | DevOpsDesign | DevOpsDocument | DevOpsPullRequestDetails | JiraIssue | JiraPlatformComment | JiraServiceManagementComment | TownsquareComment | TownsquareGoal | TownsquareProject | TrelloBoard | TrelloCard;
|
|
441
|
+
export declare type ActivityObjectData = ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceWhiteboard | DevOpsDesign | DevOpsDocument | DevOpsPullRequestDetails | JiraIssue | JiraPlatformComment | JiraServiceManagementComment | TownsquareComment | TownsquareGoal | TownsquareProject | TrelloBoard | TrelloCard;
|
|
442
442
|
export declare enum ActivityObjectType {
|
|
443
443
|
Blogpost = "BLOGPOST",
|
|
444
444
|
Comment = "COMMENT",
|
|
@@ -6300,6 +6300,21 @@ export declare type ConfluenceDeletePagePropertyPayload = Payload & {
|
|
|
6300
6300
|
errors?: Maybe<Array<MutationError>>;
|
|
6301
6301
|
success: Scalars['Boolean']['output'];
|
|
6302
6302
|
};
|
|
6303
|
+
export declare type ConfluenceEmbed = {
|
|
6304
|
+
__typename?: 'ConfluenceEmbed';
|
|
6305
|
+
author?: Maybe<ConfluenceUserInfo>;
|
|
6306
|
+
embedId: Scalars['ID']['output'];
|
|
6307
|
+
id: Scalars['ID']['output'];
|
|
6308
|
+
links?: Maybe<ConfluenceEmbedLinks>;
|
|
6309
|
+
owner?: Maybe<ConfluenceUserInfo>;
|
|
6310
|
+
space?: Maybe<ConfluenceSpace>;
|
|
6311
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
6312
|
+
};
|
|
6313
|
+
export declare type ConfluenceEmbedLinks = {
|
|
6314
|
+
__typename?: 'ConfluenceEmbedLinks';
|
|
6315
|
+
base?: Maybe<Scalars['String']['output']>;
|
|
6316
|
+
webUi?: Maybe<Scalars['String']['output']>;
|
|
6317
|
+
};
|
|
6303
6318
|
export declare type ConfluenceFavoritedSummary = {
|
|
6304
6319
|
__typename?: 'ConfluenceFavoritedSummary';
|
|
6305
6320
|
favoritedAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -6668,6 +6683,8 @@ export declare type ConfluenceQueryApi = {
|
|
|
6668
6683
|
comments?: Maybe<Array<Maybe<ConfluenceComment>>>;
|
|
6669
6684
|
database?: Maybe<ConfluenceDatabase>;
|
|
6670
6685
|
databases?: Maybe<Array<Maybe<ConfluenceDatabase>>>;
|
|
6686
|
+
embed?: Maybe<ConfluenceEmbed>;
|
|
6687
|
+
embeds?: Maybe<Array<Maybe<ConfluenceEmbed>>>;
|
|
6671
6688
|
findSpaces?: Maybe<ConfluenceSpaceConnection>;
|
|
6672
6689
|
inlineTask?: Maybe<ConfluenceInlineTask>;
|
|
6673
6690
|
longTask?: Maybe<ConfluenceLongTask>;
|
|
@@ -6698,6 +6715,12 @@ export declare type ConfluenceQueryApiDatabaseArgs = {
|
|
|
6698
6715
|
export declare type ConfluenceQueryApiDatabasesArgs = {
|
|
6699
6716
|
ids: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
6700
6717
|
};
|
|
6718
|
+
export declare type ConfluenceQueryApiEmbedArgs = {
|
|
6719
|
+
id: Scalars['ID']['input'];
|
|
6720
|
+
};
|
|
6721
|
+
export declare type ConfluenceQueryApiEmbedsArgs = {
|
|
6722
|
+
ids: Array<Scalars['ID']['input']>;
|
|
6723
|
+
};
|
|
6701
6724
|
export declare type ConfluenceQueryApiFindSpacesArgs = {
|
|
6702
6725
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
6703
6726
|
cloudId: Scalars['ID']['input'];
|
|
@@ -8639,6 +8662,15 @@ export declare type CustomerServiceCustomDetailConfigMetadataUpdatePayload = Pay
|
|
|
8639
8662
|
success: Scalars['Boolean']['output'];
|
|
8640
8663
|
successfullyUpdatedCustomDetailConfig?: Maybe<CustomerServiceCustomDetailConfigMetadata>;
|
|
8641
8664
|
};
|
|
8665
|
+
export declare enum CustomerServiceCustomDetailCreateErrorCode {
|
|
8666
|
+
ColorNotSaved = "COLOR_NOT_SAVED"
|
|
8667
|
+
}
|
|
8668
|
+
export declare type CustomerServiceCustomDetailCreateErrorExtension = MutationErrorExtension & {
|
|
8669
|
+
__typename?: 'CustomerServiceCustomDetailCreateErrorExtension';
|
|
8670
|
+
errorCode?: Maybe<CustomerServiceCustomDetailCreateErrorCode>;
|
|
8671
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
8672
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
8673
|
+
};
|
|
8642
8674
|
export declare type CustomerServiceCustomDetailCreateInput = {
|
|
8643
8675
|
contextConfigurations?: InputMaybe<Array<CustomerServiceContextConfigurationInput>>;
|
|
8644
8676
|
customDetailEntityType: CustomerServiceCustomDetailsEntityType;
|
|
@@ -12332,6 +12364,7 @@ export declare type ForgeMetricsQuery = {
|
|
|
12332
12364
|
apiRequestLatencyValue: ForgeMetricsApiRequestLatencyValueResult;
|
|
12333
12365
|
appId: Scalars['ID']['output'];
|
|
12334
12366
|
appMetrics: ForgeMetricsOtlpResult;
|
|
12367
|
+
cacheHitRate: ForgeMetricsSuccessRateResult;
|
|
12335
12368
|
chartInsight: ForgeMetricsChartInsightResult;
|
|
12336
12369
|
errors: ForgeMetricsErrorsResult;
|
|
12337
12370
|
errorsValue: ForgeMetricsErrorsValueResult;
|
|
@@ -12362,6 +12395,9 @@ export declare type ForgeMetricsQueryApiRequestLatencyValueArgs = {
|
|
|
12362
12395
|
export declare type ForgeMetricsQueryAppMetricsArgs = {
|
|
12363
12396
|
query: ForgeMetricsOtlpQueryInput;
|
|
12364
12397
|
};
|
|
12398
|
+
export declare type ForgeMetricsQueryCacheHitRateArgs = {
|
|
12399
|
+
query: ForgeMetricsApiRequestQueryInput;
|
|
12400
|
+
};
|
|
12365
12401
|
export declare type ForgeMetricsQueryChartInsightArgs = {
|
|
12366
12402
|
query: ForgeMetricsChartInsightQueryInput;
|
|
12367
12403
|
};
|
|
@@ -16196,14 +16232,18 @@ export declare type GraphStore = {
|
|
|
16196
16232
|
issueAssociatedBranchInverse?: Maybe<GraphStoreSimplifiedIssueAssociatedBranchInverseConnection>;
|
|
16197
16233
|
issueAssociatedBranchInverseRelationship?: Maybe<GraphStoreFullIssueAssociatedBranchConnection>;
|
|
16198
16234
|
issueAssociatedBranchRelationship?: Maybe<GraphStoreFullIssueAssociatedBranchConnection>;
|
|
16235
|
+
issueAssociatedBuildBatch?: Maybe<GraphStoreBatchIssueAssociatedBuildConnection>;
|
|
16199
16236
|
issueAssociatedBuildInverse?: Maybe<GraphStoreSimplifiedIssueAssociatedBuildInverseConnection>;
|
|
16237
|
+
issueAssociatedBuildInverseBatch?: Maybe<GraphStoreBatchIssueAssociatedBuildConnection>;
|
|
16200
16238
|
issueAssociatedBuildInverseRelationship?: Maybe<GraphStoreFullIssueAssociatedBuildConnection>;
|
|
16201
16239
|
issueAssociatedBuildRelationship?: Maybe<GraphStoreFullIssueAssociatedBuildConnection>;
|
|
16202
16240
|
issueAssociatedCommitInverse?: Maybe<GraphStoreSimplifiedIssueAssociatedCommitInverseConnection>;
|
|
16203
16241
|
issueAssociatedCommitInverseRelationship?: Maybe<GraphStoreFullIssueAssociatedCommitConnection>;
|
|
16204
16242
|
issueAssociatedCommitRelationship?: Maybe<GraphStoreFullIssueAssociatedCommitConnection>;
|
|
16205
16243
|
issueAssociatedDeployment?: Maybe<GraphStoreSimplifiedIssueAssociatedDeploymentConnection>;
|
|
16244
|
+
issueAssociatedDeploymentBatch?: Maybe<GraphStoreBatchIssueAssociatedDeploymentConnection>;
|
|
16206
16245
|
issueAssociatedDeploymentInverse?: Maybe<GraphStoreSimplifiedIssueAssociatedDeploymentInverseConnection>;
|
|
16246
|
+
issueAssociatedDeploymentInverseBatch?: Maybe<GraphStoreBatchIssueAssociatedDeploymentConnection>;
|
|
16207
16247
|
issueAssociatedDeploymentInverseRelationship?: Maybe<GraphStoreFullIssueAssociatedDeploymentConnection>;
|
|
16208
16248
|
issueAssociatedDeploymentRelationship?: Maybe<GraphStoreFullIssueAssociatedDeploymentConnection>;
|
|
16209
16249
|
issueAssociatedDesign?: Maybe<GraphStoreSimplifiedIssueAssociatedDesignConnection>;
|
|
@@ -16764,11 +16804,21 @@ export declare type GraphStoreIssueAssociatedBranchRelationshipArgs = {
|
|
|
16764
16804
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16765
16805
|
id: Scalars['ID']['input'];
|
|
16766
16806
|
};
|
|
16807
|
+
export declare type GraphStoreIssueAssociatedBuildBatchArgs = {
|
|
16808
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
16809
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16810
|
+
ids: Array<Scalars['ID']['input']>;
|
|
16811
|
+
};
|
|
16767
16812
|
export declare type GraphStoreIssueAssociatedBuildInverseArgs = {
|
|
16768
16813
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
16769
16814
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16770
16815
|
id: Scalars['ID']['input'];
|
|
16771
16816
|
};
|
|
16817
|
+
export declare type GraphStoreIssueAssociatedBuildInverseBatchArgs = {
|
|
16818
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
16819
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16820
|
+
ids: Array<Scalars['ID']['input']>;
|
|
16821
|
+
};
|
|
16772
16822
|
export declare type GraphStoreIssueAssociatedBuildInverseRelationshipArgs = {
|
|
16773
16823
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
16774
16824
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -16799,11 +16849,21 @@ export declare type GraphStoreIssueAssociatedDeploymentArgs = {
|
|
|
16799
16849
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16800
16850
|
id: Scalars['ID']['input'];
|
|
16801
16851
|
};
|
|
16852
|
+
export declare type GraphStoreIssueAssociatedDeploymentBatchArgs = {
|
|
16853
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
16854
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16855
|
+
ids: Array<Scalars['ID']['input']>;
|
|
16856
|
+
};
|
|
16802
16857
|
export declare type GraphStoreIssueAssociatedDeploymentInverseArgs = {
|
|
16803
16858
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
16804
16859
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16805
16860
|
id: Scalars['ID']['input'];
|
|
16806
16861
|
};
|
|
16862
|
+
export declare type GraphStoreIssueAssociatedDeploymentInverseBatchArgs = {
|
|
16863
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
16864
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16865
|
+
ids: Array<Scalars['ID']['input']>;
|
|
16866
|
+
};
|
|
16807
16867
|
export declare type GraphStoreIssueAssociatedDeploymentInverseRelationshipArgs = {
|
|
16808
16868
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
16809
16869
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -18502,6 +18562,86 @@ export declare type GraphStoreBatchIncidentLinkedJswIssueStartNode = Node & {
|
|
|
18502
18562
|
id: Scalars['ID']['output'];
|
|
18503
18563
|
};
|
|
18504
18564
|
export declare type GraphStoreBatchIncidentLinkedJswIssueStartUnion = DevOpsOperationsIncidentDetails | JiraIssue;
|
|
18565
|
+
export declare type GraphStoreBatchIssueAssociatedBuildConnection = HasPageInfo & {
|
|
18566
|
+
__typename?: 'GraphStoreBatchIssueAssociatedBuildConnection';
|
|
18567
|
+
edges: Array<Maybe<GraphStoreBatchIssueAssociatedBuildEdge>>;
|
|
18568
|
+
nodes: Array<Maybe<GraphStoreBatchIssueAssociatedBuildNode>>;
|
|
18569
|
+
pageInfo: PageInfo;
|
|
18570
|
+
};
|
|
18571
|
+
export declare type GraphStoreBatchIssueAssociatedBuildEdge = {
|
|
18572
|
+
__typename?: 'GraphStoreBatchIssueAssociatedBuildEdge';
|
|
18573
|
+
node: GraphStoreBatchIssueAssociatedBuildInnerConnection;
|
|
18574
|
+
};
|
|
18575
|
+
export declare type GraphStoreBatchIssueAssociatedBuildEndNode = Node & {
|
|
18576
|
+
__typename?: 'GraphStoreBatchIssueAssociatedBuildEndNode';
|
|
18577
|
+
id: Scalars['ID']['output'];
|
|
18578
|
+
};
|
|
18579
|
+
export declare type GraphStoreBatchIssueAssociatedBuildInnerConnection = {
|
|
18580
|
+
__typename?: 'GraphStoreBatchIssueAssociatedBuildInnerConnection';
|
|
18581
|
+
edges: Array<Maybe<GraphStoreBatchIssueAssociatedBuildInnerEdge>>;
|
|
18582
|
+
nodes: Array<Maybe<GraphStoreBatchIssueAssociatedBuildNode>>;
|
|
18583
|
+
requestedId: Scalars['ID']['output'];
|
|
18584
|
+
};
|
|
18585
|
+
export declare type GraphStoreBatchIssueAssociatedBuildInnerEdge = {
|
|
18586
|
+
__typename?: 'GraphStoreBatchIssueAssociatedBuildInnerEdge';
|
|
18587
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
18588
|
+
node: GraphStoreBatchIssueAssociatedBuildNode;
|
|
18589
|
+
};
|
|
18590
|
+
export declare type GraphStoreBatchIssueAssociatedBuildNode = Node & {
|
|
18591
|
+
__typename?: 'GraphStoreBatchIssueAssociatedBuildNode';
|
|
18592
|
+
createdAt: Scalars['DateTime']['output'];
|
|
18593
|
+
from: GraphStoreBatchIssueAssociatedBuildStartNode;
|
|
18594
|
+
id: Scalars['ID']['output'];
|
|
18595
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
18596
|
+
to: GraphStoreBatchIssueAssociatedBuildEndNode;
|
|
18597
|
+
};
|
|
18598
|
+
export declare type GraphStoreBatchIssueAssociatedBuildStartNode = Node & {
|
|
18599
|
+
__typename?: 'GraphStoreBatchIssueAssociatedBuildStartNode';
|
|
18600
|
+
data?: Maybe<GraphStoreBatchIssueAssociatedBuildStartUnion>;
|
|
18601
|
+
id: Scalars['ID']['output'];
|
|
18602
|
+
};
|
|
18603
|
+
export declare type GraphStoreBatchIssueAssociatedBuildStartUnion = JiraIssue;
|
|
18604
|
+
export declare type GraphStoreBatchIssueAssociatedDeploymentConnection = HasPageInfo & {
|
|
18605
|
+
__typename?: 'GraphStoreBatchIssueAssociatedDeploymentConnection';
|
|
18606
|
+
edges: Array<Maybe<GraphStoreBatchIssueAssociatedDeploymentEdge>>;
|
|
18607
|
+
nodes: Array<Maybe<GraphStoreBatchIssueAssociatedDeploymentNode>>;
|
|
18608
|
+
pageInfo: PageInfo;
|
|
18609
|
+
};
|
|
18610
|
+
export declare type GraphStoreBatchIssueAssociatedDeploymentEdge = {
|
|
18611
|
+
__typename?: 'GraphStoreBatchIssueAssociatedDeploymentEdge';
|
|
18612
|
+
node: GraphStoreBatchIssueAssociatedDeploymentInnerConnection;
|
|
18613
|
+
};
|
|
18614
|
+
export declare type GraphStoreBatchIssueAssociatedDeploymentEndNode = Node & {
|
|
18615
|
+
__typename?: 'GraphStoreBatchIssueAssociatedDeploymentEndNode';
|
|
18616
|
+
data?: Maybe<GraphStoreBatchIssueAssociatedDeploymentEndUnion>;
|
|
18617
|
+
id: Scalars['ID']['output'];
|
|
18618
|
+
};
|
|
18619
|
+
export declare type GraphStoreBatchIssueAssociatedDeploymentEndUnion = DeploymentSummary;
|
|
18620
|
+
export declare type GraphStoreBatchIssueAssociatedDeploymentInnerConnection = {
|
|
18621
|
+
__typename?: 'GraphStoreBatchIssueAssociatedDeploymentInnerConnection';
|
|
18622
|
+
edges: Array<Maybe<GraphStoreBatchIssueAssociatedDeploymentInnerEdge>>;
|
|
18623
|
+
nodes: Array<Maybe<GraphStoreBatchIssueAssociatedDeploymentNode>>;
|
|
18624
|
+
requestedId: Scalars['ID']['output'];
|
|
18625
|
+
};
|
|
18626
|
+
export declare type GraphStoreBatchIssueAssociatedDeploymentInnerEdge = {
|
|
18627
|
+
__typename?: 'GraphStoreBatchIssueAssociatedDeploymentInnerEdge';
|
|
18628
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
18629
|
+
node: GraphStoreBatchIssueAssociatedDeploymentNode;
|
|
18630
|
+
};
|
|
18631
|
+
export declare type GraphStoreBatchIssueAssociatedDeploymentNode = Node & {
|
|
18632
|
+
__typename?: 'GraphStoreBatchIssueAssociatedDeploymentNode';
|
|
18633
|
+
createdAt: Scalars['DateTime']['output'];
|
|
18634
|
+
from: GraphStoreBatchIssueAssociatedDeploymentStartNode;
|
|
18635
|
+
id: Scalars['ID']['output'];
|
|
18636
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
18637
|
+
to: GraphStoreBatchIssueAssociatedDeploymentEndNode;
|
|
18638
|
+
};
|
|
18639
|
+
export declare type GraphStoreBatchIssueAssociatedDeploymentStartNode = Node & {
|
|
18640
|
+
__typename?: 'GraphStoreBatchIssueAssociatedDeploymentStartNode';
|
|
18641
|
+
data?: Maybe<GraphStoreBatchIssueAssociatedDeploymentStartUnion>;
|
|
18642
|
+
id: Scalars['ID']['output'];
|
|
18643
|
+
};
|
|
18644
|
+
export declare type GraphStoreBatchIssueAssociatedDeploymentStartUnion = JiraIssue;
|
|
18505
18645
|
export declare type GraphStoreBatchIssueAssociatedIssueRemoteLinkConnection = HasPageInfo & {
|
|
18506
18646
|
__typename?: 'GraphStoreBatchIssueAssociatedIssueRemoteLinkConnection';
|
|
18507
18647
|
edges: Array<Maybe<GraphStoreBatchIssueAssociatedIssueRemoteLinkEdge>>;
|
|
@@ -23287,6 +23427,7 @@ export declare type GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalEdge =
|
|
|
23287
23427
|
__typename?: 'GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalEdge';
|
|
23288
23428
|
createdAt: Scalars['DateTime']['output'];
|
|
23289
23429
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23430
|
+
id: Scalars['ID']['output'];
|
|
23290
23431
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23291
23432
|
node?: Maybe<GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalUnion>;
|
|
23292
23433
|
};
|
|
@@ -23299,6 +23440,7 @@ export declare type GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalInvers
|
|
|
23299
23440
|
__typename?: 'GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalInverseEdge';
|
|
23300
23441
|
createdAt: Scalars['DateTime']['output'];
|
|
23301
23442
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23443
|
+
id: Scalars['ID']['output'];
|
|
23302
23444
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23303
23445
|
node?: Maybe<GraphStoreSimplifiedAtlasProjectContributesToAtlasGoalInverseUnion>;
|
|
23304
23446
|
};
|
|
@@ -23313,6 +23455,7 @@ export declare type GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicEdge = {
|
|
|
23313
23455
|
__typename?: 'GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicEdge';
|
|
23314
23456
|
createdAt: Scalars['DateTime']['output'];
|
|
23315
23457
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23458
|
+
id: Scalars['ID']['output'];
|
|
23316
23459
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23317
23460
|
node?: Maybe<GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicUnion>;
|
|
23318
23461
|
};
|
|
@@ -23325,6 +23468,7 @@ export declare type GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicInverseEd
|
|
|
23325
23468
|
__typename?: 'GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicInverseEdge';
|
|
23326
23469
|
createdAt: Scalars['DateTime']['output'];
|
|
23327
23470
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23471
|
+
id: Scalars['ID']['output'];
|
|
23328
23472
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23329
23473
|
node?: Maybe<GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicInverseUnion>;
|
|
23330
23474
|
};
|
|
@@ -23339,6 +23483,7 @@ export declare type GraphStoreSimplifiedComponentAssociatedDocumentEdge = {
|
|
|
23339
23483
|
__typename?: 'GraphStoreSimplifiedComponentAssociatedDocumentEdge';
|
|
23340
23484
|
createdAt: Scalars['DateTime']['output'];
|
|
23341
23485
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23486
|
+
id: Scalars['ID']['output'];
|
|
23342
23487
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23343
23488
|
node?: Maybe<GraphStoreSimplifiedComponentAssociatedDocumentUnion>;
|
|
23344
23489
|
};
|
|
@@ -23352,6 +23497,7 @@ export declare type GraphStoreSimplifiedComponentImpactedByIncidentEdge = {
|
|
|
23352
23497
|
__typename?: 'GraphStoreSimplifiedComponentImpactedByIncidentEdge';
|
|
23353
23498
|
createdAt: Scalars['DateTime']['output'];
|
|
23354
23499
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23500
|
+
id: Scalars['ID']['output'];
|
|
23355
23501
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23356
23502
|
node?: Maybe<GraphStoreSimplifiedComponentImpactedByIncidentUnion>;
|
|
23357
23503
|
};
|
|
@@ -23364,6 +23510,7 @@ export declare type GraphStoreSimplifiedComponentImpactedByIncidentInverseEdge =
|
|
|
23364
23510
|
__typename?: 'GraphStoreSimplifiedComponentImpactedByIncidentInverseEdge';
|
|
23365
23511
|
createdAt: Scalars['DateTime']['output'];
|
|
23366
23512
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23513
|
+
id: Scalars['ID']['output'];
|
|
23367
23514
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23368
23515
|
node?: Maybe<GraphStoreSimplifiedComponentImpactedByIncidentInverseUnion>;
|
|
23369
23516
|
};
|
|
@@ -23380,6 +23527,7 @@ export declare type GraphStoreSimplifiedComponentLinkedJswIssueEdge = {
|
|
|
23380
23527
|
__typename?: 'GraphStoreSimplifiedComponentLinkedJswIssueEdge';
|
|
23381
23528
|
createdAt: Scalars['DateTime']['output'];
|
|
23382
23529
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23530
|
+
id: Scalars['ID']['output'];
|
|
23383
23531
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23384
23532
|
node?: Maybe<GraphStoreSimplifiedComponentLinkedJswIssueUnion>;
|
|
23385
23533
|
};
|
|
@@ -23394,6 +23542,7 @@ export declare type GraphStoreSimplifiedComponentLinkedJswIssueInverseEdge = {
|
|
|
23394
23542
|
__typename?: 'GraphStoreSimplifiedComponentLinkedJswIssueInverseEdge';
|
|
23395
23543
|
createdAt: Scalars['DateTime']['output'];
|
|
23396
23544
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23545
|
+
id: Scalars['ID']['output'];
|
|
23397
23546
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23398
23547
|
node?: Maybe<GraphStoreSimplifiedComponentLinkedJswIssueInverseUnion>;
|
|
23399
23548
|
};
|
|
@@ -23408,6 +23557,7 @@ export declare type GraphStoreSimplifiedContentReferencedEntityEdge = {
|
|
|
23408
23557
|
__typename?: 'GraphStoreSimplifiedContentReferencedEntityEdge';
|
|
23409
23558
|
createdAt: Scalars['DateTime']['output'];
|
|
23410
23559
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23560
|
+
id: Scalars['ID']['output'];
|
|
23411
23561
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23412
23562
|
node?: Maybe<GraphStoreSimplifiedContentReferencedEntityUnion>;
|
|
23413
23563
|
};
|
|
@@ -23420,6 +23570,7 @@ export declare type GraphStoreSimplifiedContentReferencedEntityInverseEdge = {
|
|
|
23420
23570
|
__typename?: 'GraphStoreSimplifiedContentReferencedEntityInverseEdge';
|
|
23421
23571
|
createdAt: Scalars['DateTime']['output'];
|
|
23422
23572
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23573
|
+
id: Scalars['ID']['output'];
|
|
23423
23574
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23424
23575
|
node?: Maybe<GraphStoreSimplifiedContentReferencedEntityInverseUnion>;
|
|
23425
23576
|
};
|
|
@@ -23436,6 +23587,7 @@ export declare type GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewEdge
|
|
|
23436
23587
|
__typename?: 'GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewEdge';
|
|
23437
23588
|
createdAt: Scalars['DateTime']['output'];
|
|
23438
23589
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23590
|
+
id: Scalars['ID']['output'];
|
|
23439
23591
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23440
23592
|
node?: Maybe<GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewUnion>;
|
|
23441
23593
|
};
|
|
@@ -23450,6 +23602,7 @@ export declare type GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewInve
|
|
|
23450
23602
|
__typename?: 'GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewInverseEdge';
|
|
23451
23603
|
createdAt: Scalars['DateTime']['output'];
|
|
23452
23604
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23605
|
+
id: Scalars['ID']['output'];
|
|
23453
23606
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23454
23607
|
node?: Maybe<GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewInverseUnion>;
|
|
23455
23608
|
};
|
|
@@ -23465,6 +23618,7 @@ export declare type GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewLink
|
|
|
23465
23618
|
__typename?: 'GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewLinkEdge';
|
|
23466
23619
|
createdAt: Scalars['DateTime']['output'];
|
|
23467
23620
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23621
|
+
id: Scalars['ID']['output'];
|
|
23468
23622
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23469
23623
|
node?: Maybe<GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewLinkUnion>;
|
|
23470
23624
|
};
|
|
@@ -23479,6 +23633,7 @@ export declare type GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewLink
|
|
|
23479
23633
|
__typename?: 'GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewLinkInverseEdge';
|
|
23480
23634
|
createdAt: Scalars['DateTime']['output'];
|
|
23481
23635
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23636
|
+
id: Scalars['ID']['output'];
|
|
23482
23637
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23483
23638
|
node?: Maybe<GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewLinkInverseUnion>;
|
|
23484
23639
|
};
|
|
@@ -23496,6 +23651,7 @@ export declare type GraphStoreSimplifiedIncidentHasActionItemEdge = {
|
|
|
23496
23651
|
__typename?: 'GraphStoreSimplifiedIncidentHasActionItemEdge';
|
|
23497
23652
|
createdAt: Scalars['DateTime']['output'];
|
|
23498
23653
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23654
|
+
id: Scalars['ID']['output'];
|
|
23499
23655
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23500
23656
|
node?: Maybe<GraphStoreSimplifiedIncidentHasActionItemUnion>;
|
|
23501
23657
|
};
|
|
@@ -23510,6 +23666,7 @@ export declare type GraphStoreSimplifiedIncidentHasActionItemInverseEdge = {
|
|
|
23510
23666
|
__typename?: 'GraphStoreSimplifiedIncidentHasActionItemInverseEdge';
|
|
23511
23667
|
createdAt: Scalars['DateTime']['output'];
|
|
23512
23668
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23669
|
+
id: Scalars['ID']['output'];
|
|
23513
23670
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23514
23671
|
node?: Maybe<GraphStoreSimplifiedIncidentHasActionItemInverseUnion>;
|
|
23515
23672
|
};
|
|
@@ -23526,6 +23683,7 @@ export declare type GraphStoreSimplifiedIncidentLinkedJswIssueEdge = {
|
|
|
23526
23683
|
__typename?: 'GraphStoreSimplifiedIncidentLinkedJswIssueEdge';
|
|
23527
23684
|
createdAt: Scalars['DateTime']['output'];
|
|
23528
23685
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23686
|
+
id: Scalars['ID']['output'];
|
|
23529
23687
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23530
23688
|
node?: Maybe<GraphStoreSimplifiedIncidentLinkedJswIssueUnion>;
|
|
23531
23689
|
};
|
|
@@ -23540,6 +23698,7 @@ export declare type GraphStoreSimplifiedIncidentLinkedJswIssueInverseEdge = {
|
|
|
23540
23698
|
__typename?: 'GraphStoreSimplifiedIncidentLinkedJswIssueInverseEdge';
|
|
23541
23699
|
createdAt: Scalars['DateTime']['output'];
|
|
23542
23700
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23701
|
+
id: Scalars['ID']['output'];
|
|
23543
23702
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23544
23703
|
node?: Maybe<GraphStoreSimplifiedIncidentLinkedJswIssueInverseUnion>;
|
|
23545
23704
|
};
|
|
@@ -23554,6 +23713,7 @@ export declare type GraphStoreSimplifiedIssueAssociatedBranchInverseEdge = {
|
|
|
23554
23713
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedBranchInverseEdge';
|
|
23555
23714
|
createdAt: Scalars['DateTime']['output'];
|
|
23556
23715
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23716
|
+
id: Scalars['ID']['output'];
|
|
23557
23717
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23558
23718
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedBranchInverseUnion>;
|
|
23559
23719
|
};
|
|
@@ -23567,6 +23727,7 @@ export declare type GraphStoreSimplifiedIssueAssociatedBuildInverseEdge = {
|
|
|
23567
23727
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedBuildInverseEdge';
|
|
23568
23728
|
createdAt: Scalars['DateTime']['output'];
|
|
23569
23729
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23730
|
+
id: Scalars['ID']['output'];
|
|
23570
23731
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23571
23732
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedBuildInverseUnion>;
|
|
23572
23733
|
};
|
|
@@ -23580,6 +23741,7 @@ export declare type GraphStoreSimplifiedIssueAssociatedCommitInverseEdge = {
|
|
|
23580
23741
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedCommitInverseEdge';
|
|
23581
23742
|
createdAt: Scalars['DateTime']['output'];
|
|
23582
23743
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23744
|
+
id: Scalars['ID']['output'];
|
|
23583
23745
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23584
23746
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedCommitInverseUnion>;
|
|
23585
23747
|
};
|
|
@@ -23593,6 +23755,7 @@ export declare type GraphStoreSimplifiedIssueAssociatedDeploymentEdge = {
|
|
|
23593
23755
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedDeploymentEdge';
|
|
23594
23756
|
createdAt: Scalars['DateTime']['output'];
|
|
23595
23757
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23758
|
+
id: Scalars['ID']['output'];
|
|
23596
23759
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23597
23760
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedDeploymentUnion>;
|
|
23598
23761
|
};
|
|
@@ -23605,6 +23768,7 @@ export declare type GraphStoreSimplifiedIssueAssociatedDeploymentInverseEdge = {
|
|
|
23605
23768
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedDeploymentInverseEdge';
|
|
23606
23769
|
createdAt: Scalars['DateTime']['output'];
|
|
23607
23770
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23771
|
+
id: Scalars['ID']['output'];
|
|
23608
23772
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23609
23773
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedDeploymentInverseUnion>;
|
|
23610
23774
|
};
|
|
@@ -23619,6 +23783,7 @@ export declare type GraphStoreSimplifiedIssueAssociatedDesignEdge = {
|
|
|
23619
23783
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedDesignEdge';
|
|
23620
23784
|
createdAt: Scalars['DateTime']['output'];
|
|
23621
23785
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23786
|
+
id: Scalars['ID']['output'];
|
|
23622
23787
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23623
23788
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedDesignUnion>;
|
|
23624
23789
|
};
|
|
@@ -23631,6 +23796,7 @@ export declare type GraphStoreSimplifiedIssueAssociatedDesignInverseEdge = {
|
|
|
23631
23796
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedDesignInverseEdge';
|
|
23632
23797
|
createdAt: Scalars['DateTime']['output'];
|
|
23633
23798
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23799
|
+
id: Scalars['ID']['output'];
|
|
23634
23800
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23635
23801
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedDesignInverseUnion>;
|
|
23636
23802
|
};
|
|
@@ -23645,6 +23811,7 @@ export declare type GraphStoreSimplifiedIssueAssociatedFeatureFlagEdge = {
|
|
|
23645
23811
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedFeatureFlagEdge';
|
|
23646
23812
|
createdAt: Scalars['DateTime']['output'];
|
|
23647
23813
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23814
|
+
id: Scalars['ID']['output'];
|
|
23648
23815
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23649
23816
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedFeatureFlagUnion>;
|
|
23650
23817
|
};
|
|
@@ -23657,6 +23824,7 @@ export declare type GraphStoreSimplifiedIssueAssociatedFeatureFlagInverseEdge =
|
|
|
23657
23824
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedFeatureFlagInverseEdge';
|
|
23658
23825
|
createdAt: Scalars['DateTime']['output'];
|
|
23659
23826
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23827
|
+
id: Scalars['ID']['output'];
|
|
23660
23828
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23661
23829
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedFeatureFlagInverseUnion>;
|
|
23662
23830
|
};
|
|
@@ -23671,6 +23839,7 @@ export declare type GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkEdge = {
|
|
|
23671
23839
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkEdge';
|
|
23672
23840
|
createdAt: Scalars['DateTime']['output'];
|
|
23673
23841
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23842
|
+
id: Scalars['ID']['output'];
|
|
23674
23843
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23675
23844
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkUnion>;
|
|
23676
23845
|
};
|
|
@@ -23683,6 +23852,7 @@ export declare type GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkInverseEdg
|
|
|
23683
23852
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkInverseEdge';
|
|
23684
23853
|
createdAt: Scalars['DateTime']['output'];
|
|
23685
23854
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23855
|
+
id: Scalars['ID']['output'];
|
|
23686
23856
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23687
23857
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkInverseUnion>;
|
|
23688
23858
|
};
|
|
@@ -23697,6 +23867,7 @@ export declare type GraphStoreSimplifiedIssueAssociatedPrEdge = {
|
|
|
23697
23867
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedPrEdge';
|
|
23698
23868
|
createdAt: Scalars['DateTime']['output'];
|
|
23699
23869
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23870
|
+
id: Scalars['ID']['output'];
|
|
23700
23871
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23701
23872
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedPrUnion>;
|
|
23702
23873
|
};
|
|
@@ -23709,6 +23880,7 @@ export declare type GraphStoreSimplifiedIssueAssociatedPrInverseEdge = {
|
|
|
23709
23880
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedPrInverseEdge';
|
|
23710
23881
|
createdAt: Scalars['DateTime']['output'];
|
|
23711
23882
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23883
|
+
id: Scalars['ID']['output'];
|
|
23712
23884
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23713
23885
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedPrInverseUnion>;
|
|
23714
23886
|
};
|
|
@@ -23723,6 +23895,7 @@ export declare type GraphStoreSimplifiedIssueAssociatedRemoteLinkInverseEdge = {
|
|
|
23723
23895
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedRemoteLinkInverseEdge';
|
|
23724
23896
|
createdAt: Scalars['DateTime']['output'];
|
|
23725
23897
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23898
|
+
id: Scalars['ID']['output'];
|
|
23726
23899
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23727
23900
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedRemoteLinkInverseUnion>;
|
|
23728
23901
|
};
|
|
@@ -23738,6 +23911,7 @@ export declare type GraphStoreSimplifiedIssueChangesComponentInverseEdge = {
|
|
|
23738
23911
|
__typename?: 'GraphStoreSimplifiedIssueChangesComponentInverseEdge';
|
|
23739
23912
|
createdAt: Scalars['DateTime']['output'];
|
|
23740
23913
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23914
|
+
id: Scalars['ID']['output'];
|
|
23741
23915
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23742
23916
|
node?: Maybe<GraphStoreSimplifiedIssueChangesComponentInverseUnion>;
|
|
23743
23917
|
};
|
|
@@ -23753,6 +23927,7 @@ export declare type GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentEdge =
|
|
|
23753
23927
|
__typename?: 'GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentEdge';
|
|
23754
23928
|
createdAt: Scalars['DateTime']['output'];
|
|
23755
23929
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23930
|
+
id: Scalars['ID']['output'];
|
|
23756
23931
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23757
23932
|
node?: Maybe<GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentUnion>;
|
|
23758
23933
|
};
|
|
@@ -23767,6 +23942,7 @@ export declare type GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentInvers
|
|
|
23767
23942
|
__typename?: 'GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentInverseEdge';
|
|
23768
23943
|
createdAt: Scalars['DateTime']['output'];
|
|
23769
23944
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23945
|
+
id: Scalars['ID']['output'];
|
|
23770
23946
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23771
23947
|
node?: Maybe<GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentInverseUnion>;
|
|
23772
23948
|
};
|
|
@@ -23783,6 +23959,7 @@ export declare type GraphStoreSimplifiedIssueRecursiveAssociatedFeatureFlagEdge
|
|
|
23783
23959
|
__typename?: 'GraphStoreSimplifiedIssueRecursiveAssociatedFeatureFlagEdge';
|
|
23784
23960
|
createdAt: Scalars['DateTime']['output'];
|
|
23785
23961
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23962
|
+
id: Scalars['ID']['output'];
|
|
23786
23963
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23787
23964
|
node?: Maybe<GraphStoreSimplifiedIssueRecursiveAssociatedFeatureFlagUnion>;
|
|
23788
23965
|
};
|
|
@@ -23797,6 +23974,7 @@ export declare type GraphStoreSimplifiedIssueRecursiveAssociatedFeatureFlagInver
|
|
|
23797
23974
|
__typename?: 'GraphStoreSimplifiedIssueRecursiveAssociatedFeatureFlagInverseEdge';
|
|
23798
23975
|
createdAt: Scalars['DateTime']['output'];
|
|
23799
23976
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23977
|
+
id: Scalars['ID']['output'];
|
|
23800
23978
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23801
23979
|
node?: Maybe<GraphStoreSimplifiedIssueRecursiveAssociatedFeatureFlagInverseUnion>;
|
|
23802
23980
|
};
|
|
@@ -23813,6 +23991,7 @@ export declare type GraphStoreSimplifiedIssueRecursiveAssociatedPrEdge = {
|
|
|
23813
23991
|
__typename?: 'GraphStoreSimplifiedIssueRecursiveAssociatedPrEdge';
|
|
23814
23992
|
createdAt: Scalars['DateTime']['output'];
|
|
23815
23993
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23994
|
+
id: Scalars['ID']['output'];
|
|
23816
23995
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23817
23996
|
node?: Maybe<GraphStoreSimplifiedIssueRecursiveAssociatedPrUnion>;
|
|
23818
23997
|
};
|
|
@@ -23827,6 +24006,7 @@ export declare type GraphStoreSimplifiedIssueRecursiveAssociatedPrInverseEdge =
|
|
|
23827
24006
|
__typename?: 'GraphStoreSimplifiedIssueRecursiveAssociatedPrInverseEdge';
|
|
23828
24007
|
createdAt: Scalars['DateTime']['output'];
|
|
23829
24008
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24009
|
+
id: Scalars['ID']['output'];
|
|
23830
24010
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23831
24011
|
node?: Maybe<GraphStoreSimplifiedIssueRecursiveAssociatedPrInverseUnion>;
|
|
23832
24012
|
};
|
|
@@ -23843,6 +24023,7 @@ export declare type GraphStoreSimplifiedIssueToWhiteboardEdge = {
|
|
|
23843
24023
|
__typename?: 'GraphStoreSimplifiedIssueToWhiteboardEdge';
|
|
23844
24024
|
createdAt: Scalars['DateTime']['output'];
|
|
23845
24025
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24026
|
+
id: Scalars['ID']['output'];
|
|
23846
24027
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23847
24028
|
node?: Maybe<GraphStoreSimplifiedIssueToWhiteboardUnion>;
|
|
23848
24029
|
};
|
|
@@ -23857,6 +24038,7 @@ export declare type GraphStoreSimplifiedIssueToWhiteboardInverseEdge = {
|
|
|
23857
24038
|
__typename?: 'GraphStoreSimplifiedIssueToWhiteboardInverseEdge';
|
|
23858
24039
|
createdAt: Scalars['DateTime']['output'];
|
|
23859
24040
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24041
|
+
id: Scalars['ID']['output'];
|
|
23860
24042
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23861
24043
|
node?: Maybe<GraphStoreSimplifiedIssueToWhiteboardInverseUnion>;
|
|
23862
24044
|
};
|
|
@@ -23871,6 +24053,7 @@ export declare type GraphStoreSimplifiedJiraEpicContributesToAtlasGoalEdge = {
|
|
|
23871
24053
|
__typename?: 'GraphStoreSimplifiedJiraEpicContributesToAtlasGoalEdge';
|
|
23872
24054
|
createdAt: Scalars['DateTime']['output'];
|
|
23873
24055
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24056
|
+
id: Scalars['ID']['output'];
|
|
23874
24057
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23875
24058
|
node?: Maybe<GraphStoreSimplifiedJiraEpicContributesToAtlasGoalUnion>;
|
|
23876
24059
|
};
|
|
@@ -23883,6 +24066,7 @@ export declare type GraphStoreSimplifiedJiraEpicContributesToAtlasGoalInverseEdg
|
|
|
23883
24066
|
__typename?: 'GraphStoreSimplifiedJiraEpicContributesToAtlasGoalInverseEdge';
|
|
23884
24067
|
createdAt: Scalars['DateTime']['output'];
|
|
23885
24068
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24069
|
+
id: Scalars['ID']['output'];
|
|
23886
24070
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23887
24071
|
node?: Maybe<GraphStoreSimplifiedJiraEpicContributesToAtlasGoalInverseUnion>;
|
|
23888
24072
|
};
|
|
@@ -23899,6 +24083,7 @@ export declare type GraphStoreSimplifiedJiraProjectAssociatedAtlasGoalEdge = {
|
|
|
23899
24083
|
__typename?: 'GraphStoreSimplifiedJiraProjectAssociatedAtlasGoalEdge';
|
|
23900
24084
|
createdAt: Scalars['DateTime']['output'];
|
|
23901
24085
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24086
|
+
id: Scalars['ID']['output'];
|
|
23902
24087
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23903
24088
|
node?: Maybe<GraphStoreSimplifiedJiraProjectAssociatedAtlasGoalUnion>;
|
|
23904
24089
|
};
|
|
@@ -23913,6 +24098,7 @@ export declare type GraphStoreSimplifiedJiraProjectAssociatedAtlasGoalInverseEdg
|
|
|
23913
24098
|
__typename?: 'GraphStoreSimplifiedJiraProjectAssociatedAtlasGoalInverseEdge';
|
|
23914
24099
|
createdAt: Scalars['DateTime']['output'];
|
|
23915
24100
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24101
|
+
id: Scalars['ID']['output'];
|
|
23916
24102
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23917
24103
|
node?: Maybe<GraphStoreSimplifiedJiraProjectAssociatedAtlasGoalInverseUnion>;
|
|
23918
24104
|
};
|
|
@@ -23929,6 +24115,7 @@ export declare type GraphStoreSimplifiedJsmProjectAssociatedServiceEdge = {
|
|
|
23929
24115
|
__typename?: 'GraphStoreSimplifiedJsmProjectAssociatedServiceEdge';
|
|
23930
24116
|
createdAt: Scalars['DateTime']['output'];
|
|
23931
24117
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24118
|
+
id: Scalars['ID']['output'];
|
|
23932
24119
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23933
24120
|
node?: Maybe<GraphStoreSimplifiedJsmProjectAssociatedServiceUnion>;
|
|
23934
24121
|
};
|
|
@@ -23943,6 +24130,7 @@ export declare type GraphStoreSimplifiedJsmProjectAssociatedServiceInverseEdge =
|
|
|
23943
24130
|
__typename?: 'GraphStoreSimplifiedJsmProjectAssociatedServiceInverseEdge';
|
|
23944
24131
|
createdAt: Scalars['DateTime']['output'];
|
|
23945
24132
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24133
|
+
id: Scalars['ID']['output'];
|
|
23946
24134
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23947
24135
|
node?: Maybe<GraphStoreSimplifiedJsmProjectAssociatedServiceInverseUnion>;
|
|
23948
24136
|
};
|
|
@@ -23959,6 +24147,7 @@ export declare type GraphStoreSimplifiedJswProjectAssociatedComponentEdge = {
|
|
|
23959
24147
|
__typename?: 'GraphStoreSimplifiedJswProjectAssociatedComponentEdge';
|
|
23960
24148
|
createdAt: Scalars['DateTime']['output'];
|
|
23961
24149
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24150
|
+
id: Scalars['ID']['output'];
|
|
23962
24151
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23963
24152
|
node?: Maybe<GraphStoreSimplifiedJswProjectAssociatedComponentUnion>;
|
|
23964
24153
|
};
|
|
@@ -23973,6 +24162,7 @@ export declare type GraphStoreSimplifiedJswProjectAssociatedComponentInverseEdge
|
|
|
23973
24162
|
__typename?: 'GraphStoreSimplifiedJswProjectAssociatedComponentInverseEdge';
|
|
23974
24163
|
createdAt: Scalars['DateTime']['output'];
|
|
23975
24164
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24165
|
+
id: Scalars['ID']['output'];
|
|
23976
24166
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23977
24167
|
node?: Maybe<GraphStoreSimplifiedJswProjectAssociatedComponentInverseUnion>;
|
|
23978
24168
|
};
|
|
@@ -23989,6 +24179,7 @@ export declare type GraphStoreSimplifiedJswProjectAssociatedIncidentEdge = {
|
|
|
23989
24179
|
__typename?: 'GraphStoreSimplifiedJswProjectAssociatedIncidentEdge';
|
|
23990
24180
|
createdAt: Scalars['DateTime']['output'];
|
|
23991
24181
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24182
|
+
id: Scalars['ID']['output'];
|
|
23992
24183
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23993
24184
|
node?: Maybe<GraphStoreSimplifiedJswProjectAssociatedIncidentUnion>;
|
|
23994
24185
|
};
|
|
@@ -24003,6 +24194,7 @@ export declare type GraphStoreSimplifiedJswProjectAssociatedIncidentInverseEdge
|
|
|
24003
24194
|
__typename?: 'GraphStoreSimplifiedJswProjectAssociatedIncidentInverseEdge';
|
|
24004
24195
|
createdAt: Scalars['DateTime']['output'];
|
|
24005
24196
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24197
|
+
id: Scalars['ID']['output'];
|
|
24006
24198
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24007
24199
|
node?: Maybe<GraphStoreSimplifiedJswProjectAssociatedIncidentInverseUnion>;
|
|
24008
24200
|
};
|
|
@@ -24019,6 +24211,7 @@ export declare type GraphStoreSimplifiedJswProjectSharesComponentWithJsmProjectE
|
|
|
24019
24211
|
__typename?: 'GraphStoreSimplifiedJswProjectSharesComponentWithJsmProjectEdge';
|
|
24020
24212
|
createdAt: Scalars['DateTime']['output'];
|
|
24021
24213
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24214
|
+
id: Scalars['ID']['output'];
|
|
24022
24215
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24023
24216
|
node?: Maybe<GraphStoreSimplifiedJswProjectSharesComponentWithJsmProjectUnion>;
|
|
24024
24217
|
};
|
|
@@ -24033,6 +24226,7 @@ export declare type GraphStoreSimplifiedJswProjectSharesComponentWithJsmProjectI
|
|
|
24033
24226
|
__typename?: 'GraphStoreSimplifiedJswProjectSharesComponentWithJsmProjectInverseEdge';
|
|
24034
24227
|
createdAt: Scalars['DateTime']['output'];
|
|
24035
24228
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24229
|
+
id: Scalars['ID']['output'];
|
|
24036
24230
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24037
24231
|
node?: Maybe<GraphStoreSimplifiedJswProjectSharesComponentWithJsmProjectInverseUnion>;
|
|
24038
24232
|
};
|
|
@@ -24049,6 +24243,7 @@ export declare type GraphStoreSimplifiedLinkedProjectHasVersionEdge = {
|
|
|
24049
24243
|
__typename?: 'GraphStoreSimplifiedLinkedProjectHasVersionEdge';
|
|
24050
24244
|
createdAt: Scalars['DateTime']['output'];
|
|
24051
24245
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24246
|
+
id: Scalars['ID']['output'];
|
|
24052
24247
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24053
24248
|
node?: Maybe<GraphStoreSimplifiedLinkedProjectHasVersionUnion>;
|
|
24054
24249
|
};
|
|
@@ -24063,6 +24258,7 @@ export declare type GraphStoreSimplifiedLinkedProjectHasVersionInverseEdge = {
|
|
|
24063
24258
|
__typename?: 'GraphStoreSimplifiedLinkedProjectHasVersionInverseEdge';
|
|
24064
24259
|
createdAt: Scalars['DateTime']['output'];
|
|
24065
24260
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24261
|
+
id: Scalars['ID']['output'];
|
|
24066
24262
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24067
24263
|
node?: Maybe<GraphStoreSimplifiedLinkedProjectHasVersionInverseUnion>;
|
|
24068
24264
|
};
|
|
@@ -24077,6 +24273,7 @@ export declare type GraphStoreSimplifiedOperationsContainerImpactedByIncidentEdg
|
|
|
24077
24273
|
__typename?: 'GraphStoreSimplifiedOperationsContainerImpactedByIncidentEdge';
|
|
24078
24274
|
createdAt: Scalars['DateTime']['output'];
|
|
24079
24275
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24276
|
+
id: Scalars['ID']['output'];
|
|
24080
24277
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24081
24278
|
node?: Maybe<GraphStoreSimplifiedOperationsContainerImpactedByIncidentUnion>;
|
|
24082
24279
|
};
|
|
@@ -24089,6 +24286,7 @@ export declare type GraphStoreSimplifiedOperationsContainerImpactedByIncidentInv
|
|
|
24089
24286
|
__typename?: 'GraphStoreSimplifiedOperationsContainerImpactedByIncidentInverseEdge';
|
|
24090
24287
|
createdAt: Scalars['DateTime']['output'];
|
|
24091
24288
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24289
|
+
id: Scalars['ID']['output'];
|
|
24092
24290
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24093
24291
|
node?: Maybe<GraphStoreSimplifiedOperationsContainerImpactedByIncidentInverseUnion>;
|
|
24094
24292
|
};
|
|
@@ -24103,6 +24301,7 @@ export declare type GraphStoreSimplifiedOperationsContainerImprovedByActionItemE
|
|
|
24103
24301
|
__typename?: 'GraphStoreSimplifiedOperationsContainerImprovedByActionItemEdge';
|
|
24104
24302
|
createdAt: Scalars['DateTime']['output'];
|
|
24105
24303
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24304
|
+
id: Scalars['ID']['output'];
|
|
24106
24305
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24107
24306
|
node?: Maybe<GraphStoreSimplifiedOperationsContainerImprovedByActionItemUnion>;
|
|
24108
24307
|
};
|
|
@@ -24115,6 +24314,7 @@ export declare type GraphStoreSimplifiedOperationsContainerImprovedByActionItemI
|
|
|
24115
24314
|
__typename?: 'GraphStoreSimplifiedOperationsContainerImprovedByActionItemInverseEdge';
|
|
24116
24315
|
createdAt: Scalars['DateTime']['output'];
|
|
24117
24316
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24317
|
+
id: Scalars['ID']['output'];
|
|
24118
24318
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24119
24319
|
node?: Maybe<GraphStoreSimplifiedOperationsContainerImprovedByActionItemInverseUnion>;
|
|
24120
24320
|
};
|
|
@@ -24129,6 +24329,7 @@ export declare type GraphStoreSimplifiedParentDocumentHasChildDocumentEdge = {
|
|
|
24129
24329
|
__typename?: 'GraphStoreSimplifiedParentDocumentHasChildDocumentEdge';
|
|
24130
24330
|
createdAt: Scalars['DateTime']['output'];
|
|
24131
24331
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24332
|
+
id: Scalars['ID']['output'];
|
|
24132
24333
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24133
24334
|
node?: Maybe<GraphStoreSimplifiedParentDocumentHasChildDocumentUnion>;
|
|
24134
24335
|
};
|
|
@@ -24141,6 +24342,7 @@ export declare type GraphStoreSimplifiedParentDocumentHasChildDocumentInverseEdg
|
|
|
24141
24342
|
__typename?: 'GraphStoreSimplifiedParentDocumentHasChildDocumentInverseEdge';
|
|
24142
24343
|
createdAt: Scalars['DateTime']['output'];
|
|
24143
24344
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24345
|
+
id: Scalars['ID']['output'];
|
|
24144
24346
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24145
24347
|
node?: Maybe<GraphStoreSimplifiedParentDocumentHasChildDocumentInverseUnion>;
|
|
24146
24348
|
};
|
|
@@ -24155,6 +24357,7 @@ export declare type GraphStoreSimplifiedParentIssueHasChildIssueEdge = {
|
|
|
24155
24357
|
__typename?: 'GraphStoreSimplifiedParentIssueHasChildIssueEdge';
|
|
24156
24358
|
createdAt: Scalars['DateTime']['output'];
|
|
24157
24359
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24360
|
+
id: Scalars['ID']['output'];
|
|
24158
24361
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24159
24362
|
node?: Maybe<GraphStoreSimplifiedParentIssueHasChildIssueUnion>;
|
|
24160
24363
|
};
|
|
@@ -24167,6 +24370,7 @@ export declare type GraphStoreSimplifiedParentIssueHasChildIssueInverseEdge = {
|
|
|
24167
24370
|
__typename?: 'GraphStoreSimplifiedParentIssueHasChildIssueInverseEdge';
|
|
24168
24371
|
createdAt: Scalars['DateTime']['output'];
|
|
24169
24372
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24373
|
+
id: Scalars['ID']['output'];
|
|
24170
24374
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24171
24375
|
node?: Maybe<GraphStoreSimplifiedParentIssueHasChildIssueInverseUnion>;
|
|
24172
24376
|
};
|
|
@@ -24181,6 +24385,7 @@ export declare type GraphStoreSimplifiedPrInRepoEdge = {
|
|
|
24181
24385
|
__typename?: 'GraphStoreSimplifiedPrInRepoEdge';
|
|
24182
24386
|
createdAt: Scalars['DateTime']['output'];
|
|
24183
24387
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24388
|
+
id: Scalars['ID']['output'];
|
|
24184
24389
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24185
24390
|
node?: Maybe<GraphStoreSimplifiedPrInRepoUnion>;
|
|
24186
24391
|
};
|
|
@@ -24193,6 +24398,7 @@ export declare type GraphStoreSimplifiedPrInRepoInverseEdge = {
|
|
|
24193
24398
|
__typename?: 'GraphStoreSimplifiedPrInRepoInverseEdge';
|
|
24194
24399
|
createdAt: Scalars['DateTime']['output'];
|
|
24195
24400
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24401
|
+
id: Scalars['ID']['output'];
|
|
24196
24402
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24197
24403
|
node?: Maybe<GraphStoreSimplifiedPrInRepoInverseUnion>;
|
|
24198
24404
|
};
|
|
@@ -24209,6 +24415,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedBranchInverseEdge = {
|
|
|
24209
24415
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedBranchInverseEdge';
|
|
24210
24416
|
createdAt: Scalars['DateTime']['output'];
|
|
24211
24417
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24418
|
+
id: Scalars['ID']['output'];
|
|
24212
24419
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24213
24420
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedBranchInverseUnion>;
|
|
24214
24421
|
};
|
|
@@ -24224,6 +24431,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedBuildInverseEdge = {
|
|
|
24224
24431
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedBuildInverseEdge';
|
|
24225
24432
|
createdAt: Scalars['DateTime']['output'];
|
|
24226
24433
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24434
|
+
id: Scalars['ID']['output'];
|
|
24227
24435
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24228
24436
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedBuildInverseUnion>;
|
|
24229
24437
|
};
|
|
@@ -24239,6 +24447,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedDeploymentEdge = {
|
|
|
24239
24447
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedDeploymentEdge';
|
|
24240
24448
|
createdAt: Scalars['DateTime']['output'];
|
|
24241
24449
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24450
|
+
id: Scalars['ID']['output'];
|
|
24242
24451
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24243
24452
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedDeploymentUnion>;
|
|
24244
24453
|
};
|
|
@@ -24253,6 +24462,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedDeploymentInverseEdge =
|
|
|
24253
24462
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedDeploymentInverseEdge';
|
|
24254
24463
|
createdAt: Scalars['DateTime']['output'];
|
|
24255
24464
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24465
|
+
id: Scalars['ID']['output'];
|
|
24256
24466
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24257
24467
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedDeploymentInverseUnion>;
|
|
24258
24468
|
};
|
|
@@ -24269,6 +24479,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedFeatureFlagEdge = {
|
|
|
24269
24479
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedFeatureFlagEdge';
|
|
24270
24480
|
createdAt: Scalars['DateTime']['output'];
|
|
24271
24481
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24482
|
+
id: Scalars['ID']['output'];
|
|
24272
24483
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24273
24484
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedFeatureFlagUnion>;
|
|
24274
24485
|
};
|
|
@@ -24283,6 +24494,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedFeatureFlagInverseEdge
|
|
|
24283
24494
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedFeatureFlagInverseEdge';
|
|
24284
24495
|
createdAt: Scalars['DateTime']['output'];
|
|
24285
24496
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24497
|
+
id: Scalars['ID']['output'];
|
|
24286
24498
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24287
24499
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedFeatureFlagInverseUnion>;
|
|
24288
24500
|
};
|
|
@@ -24299,6 +24511,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedIncidentEdge = {
|
|
|
24299
24511
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedIncidentEdge';
|
|
24300
24512
|
createdAt: Scalars['DateTime']['output'];
|
|
24301
24513
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24514
|
+
id: Scalars['ID']['output'];
|
|
24302
24515
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24303
24516
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedIncidentUnion>;
|
|
24304
24517
|
};
|
|
@@ -24313,6 +24526,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedIncidentInverseEdge = {
|
|
|
24313
24526
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedIncidentInverseEdge';
|
|
24314
24527
|
createdAt: Scalars['DateTime']['output'];
|
|
24315
24528
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24529
|
+
id: Scalars['ID']['output'];
|
|
24316
24530
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24317
24531
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedIncidentInverseUnion>;
|
|
24318
24532
|
};
|
|
@@ -24329,6 +24543,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedOpsgenieTeamEdge = {
|
|
|
24329
24543
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedOpsgenieTeamEdge';
|
|
24330
24544
|
createdAt: Scalars['DateTime']['output'];
|
|
24331
24545
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24546
|
+
id: Scalars['ID']['output'];
|
|
24332
24547
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24333
24548
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedOpsgenieTeamUnion>;
|
|
24334
24549
|
};
|
|
@@ -24343,6 +24558,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedOpsgenieTeamInverseEdge
|
|
|
24343
24558
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedOpsgenieTeamInverseEdge';
|
|
24344
24559
|
createdAt: Scalars['DateTime']['output'];
|
|
24345
24560
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24561
|
+
id: Scalars['ID']['output'];
|
|
24346
24562
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24347
24563
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedOpsgenieTeamInverseUnion>;
|
|
24348
24564
|
};
|
|
@@ -24359,6 +24575,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedPrEdge = {
|
|
|
24359
24575
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedPrEdge';
|
|
24360
24576
|
createdAt: Scalars['DateTime']['output'];
|
|
24361
24577
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24578
|
+
id: Scalars['ID']['output'];
|
|
24362
24579
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24363
24580
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedPrUnion>;
|
|
24364
24581
|
};
|
|
@@ -24373,6 +24590,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedPrInverseEdge = {
|
|
|
24373
24590
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedPrInverseEdge';
|
|
24374
24591
|
createdAt: Scalars['DateTime']['output'];
|
|
24375
24592
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24593
|
+
id: Scalars['ID']['output'];
|
|
24376
24594
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24377
24595
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedPrInverseUnion>;
|
|
24378
24596
|
};
|
|
@@ -24389,6 +24607,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedRepoEdge = {
|
|
|
24389
24607
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedRepoEdge';
|
|
24390
24608
|
createdAt: Scalars['DateTime']['output'];
|
|
24391
24609
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24610
|
+
id: Scalars['ID']['output'];
|
|
24392
24611
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24393
24612
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedRepoUnion>;
|
|
24394
24613
|
};
|
|
@@ -24403,6 +24622,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedRepoInverseEdge = {
|
|
|
24403
24622
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedRepoInverseEdge';
|
|
24404
24623
|
createdAt: Scalars['DateTime']['output'];
|
|
24405
24624
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24625
|
+
id: Scalars['ID']['output'];
|
|
24406
24626
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24407
24627
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedRepoInverseUnion>;
|
|
24408
24628
|
};
|
|
@@ -24419,6 +24639,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedServiceEdge = {
|
|
|
24419
24639
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedServiceEdge';
|
|
24420
24640
|
createdAt: Scalars['DateTime']['output'];
|
|
24421
24641
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24642
|
+
id: Scalars['ID']['output'];
|
|
24422
24643
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24423
24644
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedServiceUnion>;
|
|
24424
24645
|
};
|
|
@@ -24433,6 +24654,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedServiceInverseEdge = {
|
|
|
24433
24654
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedServiceInverseEdge';
|
|
24434
24655
|
createdAt: Scalars['DateTime']['output'];
|
|
24435
24656
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24657
|
+
id: Scalars['ID']['output'];
|
|
24436
24658
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24437
24659
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedServiceInverseUnion>;
|
|
24438
24660
|
};
|
|
@@ -24449,6 +24671,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedToIncidentEdge = {
|
|
|
24449
24671
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedToIncidentEdge';
|
|
24450
24672
|
createdAt: Scalars['DateTime']['output'];
|
|
24451
24673
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24674
|
+
id: Scalars['ID']['output'];
|
|
24452
24675
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24453
24676
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedToIncidentUnion>;
|
|
24454
24677
|
};
|
|
@@ -24463,6 +24686,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedToIncidentInverseEdge =
|
|
|
24463
24686
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedToIncidentInverseEdge';
|
|
24464
24687
|
createdAt: Scalars['DateTime']['output'];
|
|
24465
24688
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24689
|
+
id: Scalars['ID']['output'];
|
|
24466
24690
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24467
24691
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedToIncidentInverseUnion>;
|
|
24468
24692
|
};
|
|
@@ -24479,6 +24703,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedToOperationsContainerEd
|
|
|
24479
24703
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedToOperationsContainerEdge';
|
|
24480
24704
|
createdAt: Scalars['DateTime']['output'];
|
|
24481
24705
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24706
|
+
id: Scalars['ID']['output'];
|
|
24482
24707
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24483
24708
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedToOperationsContainerUnion>;
|
|
24484
24709
|
};
|
|
@@ -24493,6 +24718,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedToOperationsContainerIn
|
|
|
24493
24718
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedToOperationsContainerInverseEdge';
|
|
24494
24719
|
createdAt: Scalars['DateTime']['output'];
|
|
24495
24720
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24721
|
+
id: Scalars['ID']['output'];
|
|
24496
24722
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24497
24723
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedToOperationsContainerInverseUnion>;
|
|
24498
24724
|
};
|
|
@@ -24509,6 +24735,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedToSecurityContainerInve
|
|
|
24509
24735
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedToSecurityContainerInverseEdge';
|
|
24510
24736
|
createdAt: Scalars['DateTime']['output'];
|
|
24511
24737
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24738
|
+
id: Scalars['ID']['output'];
|
|
24512
24739
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24513
24740
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedToSecurityContainerInverseUnion>;
|
|
24514
24741
|
};
|
|
@@ -24524,6 +24751,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedVulnerabilityEdge = {
|
|
|
24524
24751
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedVulnerabilityEdge';
|
|
24525
24752
|
createdAt: Scalars['DateTime']['output'];
|
|
24526
24753
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24754
|
+
id: Scalars['ID']['output'];
|
|
24527
24755
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24528
24756
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedVulnerabilityUnion>;
|
|
24529
24757
|
};
|
|
@@ -24538,6 +24766,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedVulnerabilityInverseEdg
|
|
|
24538
24766
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedVulnerabilityInverseEdge';
|
|
24539
24767
|
createdAt: Scalars['DateTime']['output'];
|
|
24540
24768
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24769
|
+
id: Scalars['ID']['output'];
|
|
24541
24770
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24542
24771
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedVulnerabilityInverseUnion>;
|
|
24543
24772
|
};
|
|
@@ -24554,6 +24783,7 @@ export declare type GraphStoreSimplifiedProjectDisassociatedRepoEdge = {
|
|
|
24554
24783
|
__typename?: 'GraphStoreSimplifiedProjectDisassociatedRepoEdge';
|
|
24555
24784
|
createdAt: Scalars['DateTime']['output'];
|
|
24556
24785
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24786
|
+
id: Scalars['ID']['output'];
|
|
24557
24787
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24558
24788
|
node?: Maybe<GraphStoreSimplifiedProjectDisassociatedRepoUnion>;
|
|
24559
24789
|
};
|
|
@@ -24568,6 +24798,7 @@ export declare type GraphStoreSimplifiedProjectDisassociatedRepoInverseEdge = {
|
|
|
24568
24798
|
__typename?: 'GraphStoreSimplifiedProjectDisassociatedRepoInverseEdge';
|
|
24569
24799
|
createdAt: Scalars['DateTime']['output'];
|
|
24570
24800
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24801
|
+
id: Scalars['ID']['output'];
|
|
24571
24802
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24572
24803
|
node?: Maybe<GraphStoreSimplifiedProjectDisassociatedRepoInverseUnion>;
|
|
24573
24804
|
};
|
|
@@ -24584,6 +24815,7 @@ export declare type GraphStoreSimplifiedProjectDocumentationEntityEdge = {
|
|
|
24584
24815
|
__typename?: 'GraphStoreSimplifiedProjectDocumentationEntityEdge';
|
|
24585
24816
|
createdAt: Scalars['DateTime']['output'];
|
|
24586
24817
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24818
|
+
id: Scalars['ID']['output'];
|
|
24587
24819
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24588
24820
|
node?: Maybe<GraphStoreSimplifiedProjectDocumentationEntityUnion>;
|
|
24589
24821
|
};
|
|
@@ -24598,6 +24830,7 @@ export declare type GraphStoreSimplifiedProjectDocumentationEntityInverseEdge =
|
|
|
24598
24830
|
__typename?: 'GraphStoreSimplifiedProjectDocumentationEntityInverseEdge';
|
|
24599
24831
|
createdAt: Scalars['DateTime']['output'];
|
|
24600
24832
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24833
|
+
id: Scalars['ID']['output'];
|
|
24601
24834
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24602
24835
|
node?: Maybe<GraphStoreSimplifiedProjectDocumentationEntityInverseUnion>;
|
|
24603
24836
|
};
|
|
@@ -24614,6 +24847,7 @@ export declare type GraphStoreSimplifiedProjectDocumentationPageEdge = {
|
|
|
24614
24847
|
__typename?: 'GraphStoreSimplifiedProjectDocumentationPageEdge';
|
|
24615
24848
|
createdAt: Scalars['DateTime']['output'];
|
|
24616
24849
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24850
|
+
id: Scalars['ID']['output'];
|
|
24617
24851
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24618
24852
|
node?: Maybe<GraphStoreSimplifiedProjectDocumentationPageUnion>;
|
|
24619
24853
|
};
|
|
@@ -24628,6 +24862,7 @@ export declare type GraphStoreSimplifiedProjectDocumentationPageInverseEdge = {
|
|
|
24628
24862
|
__typename?: 'GraphStoreSimplifiedProjectDocumentationPageInverseEdge';
|
|
24629
24863
|
createdAt: Scalars['DateTime']['output'];
|
|
24630
24864
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24865
|
+
id: Scalars['ID']['output'];
|
|
24631
24866
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24632
24867
|
node?: Maybe<GraphStoreSimplifiedProjectDocumentationPageInverseUnion>;
|
|
24633
24868
|
};
|
|
@@ -24644,6 +24879,7 @@ export declare type GraphStoreSimplifiedProjectDocumentationSpaceEdge = {
|
|
|
24644
24879
|
__typename?: 'GraphStoreSimplifiedProjectDocumentationSpaceEdge';
|
|
24645
24880
|
createdAt: Scalars['DateTime']['output'];
|
|
24646
24881
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24882
|
+
id: Scalars['ID']['output'];
|
|
24647
24883
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24648
24884
|
node?: Maybe<GraphStoreSimplifiedProjectDocumentationSpaceUnion>;
|
|
24649
24885
|
};
|
|
@@ -24658,6 +24894,7 @@ export declare type GraphStoreSimplifiedProjectDocumentationSpaceInverseEdge = {
|
|
|
24658
24894
|
__typename?: 'GraphStoreSimplifiedProjectDocumentationSpaceInverseEdge';
|
|
24659
24895
|
createdAt: Scalars['DateTime']['output'];
|
|
24660
24896
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24897
|
+
id: Scalars['ID']['output'];
|
|
24661
24898
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24662
24899
|
node?: Maybe<GraphStoreSimplifiedProjectDocumentationSpaceInverseUnion>;
|
|
24663
24900
|
};
|
|
@@ -24674,6 +24911,7 @@ export declare type GraphStoreSimplifiedProjectExplicitlyAssociatedRepoEdge = {
|
|
|
24674
24911
|
__typename?: 'GraphStoreSimplifiedProjectExplicitlyAssociatedRepoEdge';
|
|
24675
24912
|
createdAt: Scalars['DateTime']['output'];
|
|
24676
24913
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24914
|
+
id: Scalars['ID']['output'];
|
|
24677
24915
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24678
24916
|
node?: Maybe<GraphStoreSimplifiedProjectExplicitlyAssociatedRepoUnion>;
|
|
24679
24917
|
};
|
|
@@ -24688,6 +24926,7 @@ export declare type GraphStoreSimplifiedProjectExplicitlyAssociatedRepoInverseEd
|
|
|
24688
24926
|
__typename?: 'GraphStoreSimplifiedProjectExplicitlyAssociatedRepoInverseEdge';
|
|
24689
24927
|
createdAt: Scalars['DateTime']['output'];
|
|
24690
24928
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24929
|
+
id: Scalars['ID']['output'];
|
|
24691
24930
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24692
24931
|
node?: Maybe<GraphStoreSimplifiedProjectExplicitlyAssociatedRepoInverseUnion>;
|
|
24693
24932
|
};
|
|
@@ -24704,6 +24943,7 @@ export declare type GraphStoreSimplifiedProjectHasIssueEdge = {
|
|
|
24704
24943
|
__typename?: 'GraphStoreSimplifiedProjectHasIssueEdge';
|
|
24705
24944
|
createdAt: Scalars['DateTime']['output'];
|
|
24706
24945
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24946
|
+
id: Scalars['ID']['output'];
|
|
24707
24947
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24708
24948
|
node?: Maybe<GraphStoreSimplifiedProjectHasIssueUnion>;
|
|
24709
24949
|
};
|
|
@@ -24718,6 +24958,7 @@ export declare type GraphStoreSimplifiedProjectHasIssueInverseEdge = {
|
|
|
24718
24958
|
__typename?: 'GraphStoreSimplifiedProjectHasIssueInverseEdge';
|
|
24719
24959
|
createdAt: Scalars['DateTime']['output'];
|
|
24720
24960
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24961
|
+
id: Scalars['ID']['output'];
|
|
24721
24962
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24722
24963
|
node?: Maybe<GraphStoreSimplifiedProjectHasIssueInverseUnion>;
|
|
24723
24964
|
};
|
|
@@ -24734,6 +24975,7 @@ export declare type GraphStoreSimplifiedProjectHasRelatedWorkWithProjectEdge = {
|
|
|
24734
24975
|
__typename?: 'GraphStoreSimplifiedProjectHasRelatedWorkWithProjectEdge';
|
|
24735
24976
|
createdAt: Scalars['DateTime']['output'];
|
|
24736
24977
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24978
|
+
id: Scalars['ID']['output'];
|
|
24737
24979
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24738
24980
|
node?: Maybe<GraphStoreSimplifiedProjectHasRelatedWorkWithProjectUnion>;
|
|
24739
24981
|
};
|
|
@@ -24748,6 +24990,7 @@ export declare type GraphStoreSimplifiedProjectHasRelatedWorkWithProjectInverseE
|
|
|
24748
24990
|
__typename?: 'GraphStoreSimplifiedProjectHasRelatedWorkWithProjectInverseEdge';
|
|
24749
24991
|
createdAt: Scalars['DateTime']['output'];
|
|
24750
24992
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
24993
|
+
id: Scalars['ID']['output'];
|
|
24751
24994
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24752
24995
|
node?: Maybe<GraphStoreSimplifiedProjectHasRelatedWorkWithProjectInverseUnion>;
|
|
24753
24996
|
};
|
|
@@ -24764,6 +25007,7 @@ export declare type GraphStoreSimplifiedProjectHasSharedVersionWithEdge = {
|
|
|
24764
25007
|
__typename?: 'GraphStoreSimplifiedProjectHasSharedVersionWithEdge';
|
|
24765
25008
|
createdAt: Scalars['DateTime']['output'];
|
|
24766
25009
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25010
|
+
id: Scalars['ID']['output'];
|
|
24767
25011
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24768
25012
|
node?: Maybe<GraphStoreSimplifiedProjectHasSharedVersionWithUnion>;
|
|
24769
25013
|
};
|
|
@@ -24778,6 +25022,7 @@ export declare type GraphStoreSimplifiedProjectHasSharedVersionWithInverseEdge =
|
|
|
24778
25022
|
__typename?: 'GraphStoreSimplifiedProjectHasSharedVersionWithInverseEdge';
|
|
24779
25023
|
createdAt: Scalars['DateTime']['output'];
|
|
24780
25024
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25025
|
+
id: Scalars['ID']['output'];
|
|
24781
25026
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24782
25027
|
node?: Maybe<GraphStoreSimplifiedProjectHasSharedVersionWithInverseUnion>;
|
|
24783
25028
|
};
|
|
@@ -24794,6 +25039,7 @@ export declare type GraphStoreSimplifiedProjectHasVersionEdge = {
|
|
|
24794
25039
|
__typename?: 'GraphStoreSimplifiedProjectHasVersionEdge';
|
|
24795
25040
|
createdAt: Scalars['DateTime']['output'];
|
|
24796
25041
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25042
|
+
id: Scalars['ID']['output'];
|
|
24797
25043
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24798
25044
|
node?: Maybe<GraphStoreSimplifiedProjectHasVersionUnion>;
|
|
24799
25045
|
};
|
|
@@ -24808,6 +25054,7 @@ export declare type GraphStoreSimplifiedProjectHasVersionInverseEdge = {
|
|
|
24808
25054
|
__typename?: 'GraphStoreSimplifiedProjectHasVersionInverseEdge';
|
|
24809
25055
|
createdAt: Scalars['DateTime']['output'];
|
|
24810
25056
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25057
|
+
id: Scalars['ID']['output'];
|
|
24811
25058
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24812
25059
|
node?: Maybe<GraphStoreSimplifiedProjectHasVersionInverseUnion>;
|
|
24813
25060
|
};
|
|
@@ -24822,6 +25069,7 @@ export declare type GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabili
|
|
|
24822
25069
|
__typename?: 'GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityEdge';
|
|
24823
25070
|
createdAt: Scalars['DateTime']['output'];
|
|
24824
25071
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25072
|
+
id: Scalars['ID']['output'];
|
|
24825
25073
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24826
25074
|
node?: Maybe<GraphStoreSimplifiedSecurityContainerAssociatedToVulnerabilityUnion>;
|
|
24827
25075
|
};
|
|
@@ -24837,6 +25085,7 @@ export declare type GraphStoreSimplifiedServiceLinkedIncidentEdge = {
|
|
|
24837
25085
|
__typename?: 'GraphStoreSimplifiedServiceLinkedIncidentEdge';
|
|
24838
25086
|
createdAt: Scalars['DateTime']['output'];
|
|
24839
25087
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25088
|
+
id: Scalars['ID']['output'];
|
|
24840
25089
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24841
25090
|
node?: Maybe<GraphStoreSimplifiedServiceLinkedIncidentUnion>;
|
|
24842
25091
|
};
|
|
@@ -24851,6 +25100,7 @@ export declare type GraphStoreSimplifiedServiceLinkedIncidentInverseEdge = {
|
|
|
24851
25100
|
__typename?: 'GraphStoreSimplifiedServiceLinkedIncidentInverseEdge';
|
|
24852
25101
|
createdAt: Scalars['DateTime']['output'];
|
|
24853
25102
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25103
|
+
id: Scalars['ID']['output'];
|
|
24854
25104
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24855
25105
|
node?: Maybe<GraphStoreSimplifiedServiceLinkedIncidentInverseUnion>;
|
|
24856
25106
|
};
|
|
@@ -24867,6 +25117,7 @@ export declare type GraphStoreSimplifiedShipit57IssueLinksToPageEdge = {
|
|
|
24867
25117
|
__typename?: 'GraphStoreSimplifiedShipit57IssueLinksToPageEdge';
|
|
24868
25118
|
createdAt: Scalars['DateTime']['output'];
|
|
24869
25119
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25120
|
+
id: Scalars['ID']['output'];
|
|
24870
25121
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24871
25122
|
node?: Maybe<GraphStoreSimplifiedShipit57IssueLinksToPageUnion>;
|
|
24872
25123
|
};
|
|
@@ -24881,6 +25132,7 @@ export declare type GraphStoreSimplifiedShipit57IssueLinksToPageInverseEdge = {
|
|
|
24881
25132
|
__typename?: 'GraphStoreSimplifiedShipit57IssueLinksToPageInverseEdge';
|
|
24882
25133
|
createdAt: Scalars['DateTime']['output'];
|
|
24883
25134
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25135
|
+
id: Scalars['ID']['output'];
|
|
24884
25136
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24885
25137
|
node?: Maybe<GraphStoreSimplifiedShipit57IssueLinksToPageInverseUnion>;
|
|
24886
25138
|
};
|
|
@@ -24894,6 +25146,7 @@ export declare type GraphStoreSimplifiedShipit57IssueLinksToPageManualEdge = {
|
|
|
24894
25146
|
__typename?: 'GraphStoreSimplifiedShipit57IssueLinksToPageManualEdge';
|
|
24895
25147
|
createdAt: Scalars['DateTime']['output'];
|
|
24896
25148
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25149
|
+
id: Scalars['ID']['output'];
|
|
24897
25150
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24898
25151
|
node?: Maybe<GraphStoreSimplifiedShipit57IssueLinksToPageManualUnion>;
|
|
24899
25152
|
};
|
|
@@ -24906,6 +25159,7 @@ export declare type GraphStoreSimplifiedShipit57IssueLinksToPageManualInverseEdg
|
|
|
24906
25159
|
__typename?: 'GraphStoreSimplifiedShipit57IssueLinksToPageManualInverseEdge';
|
|
24907
25160
|
createdAt: Scalars['DateTime']['output'];
|
|
24908
25161
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25162
|
+
id: Scalars['ID']['output'];
|
|
24909
25163
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24910
25164
|
node?: Maybe<GraphStoreSimplifiedShipit57IssueLinksToPageManualInverseUnion>;
|
|
24911
25165
|
};
|
|
@@ -24923,6 +25177,7 @@ export declare type GraphStoreSimplifiedShipit57IssueRecursiveLinksToPageEdge =
|
|
|
24923
25177
|
__typename?: 'GraphStoreSimplifiedShipit57IssueRecursiveLinksToPageEdge';
|
|
24924
25178
|
createdAt: Scalars['DateTime']['output'];
|
|
24925
25179
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25180
|
+
id: Scalars['ID']['output'];
|
|
24926
25181
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24927
25182
|
node?: Maybe<GraphStoreSimplifiedShipit57IssueRecursiveLinksToPageUnion>;
|
|
24928
25183
|
};
|
|
@@ -24937,6 +25192,7 @@ export declare type GraphStoreSimplifiedShipit57IssueRecursiveLinksToPageInverse
|
|
|
24937
25192
|
__typename?: 'GraphStoreSimplifiedShipit57IssueRecursiveLinksToPageInverseEdge';
|
|
24938
25193
|
createdAt: Scalars['DateTime']['output'];
|
|
24939
25194
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25195
|
+
id: Scalars['ID']['output'];
|
|
24940
25196
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24941
25197
|
node?: Maybe<GraphStoreSimplifiedShipit57IssueRecursiveLinksToPageInverseUnion>;
|
|
24942
25198
|
};
|
|
@@ -24951,6 +25207,7 @@ export declare type GraphStoreSimplifiedShipit57PullRequestLinksToPageEdge = {
|
|
|
24951
25207
|
__typename?: 'GraphStoreSimplifiedShipit57PullRequestLinksToPageEdge';
|
|
24952
25208
|
createdAt: Scalars['DateTime']['output'];
|
|
24953
25209
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25210
|
+
id: Scalars['ID']['output'];
|
|
24954
25211
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24955
25212
|
node?: Maybe<GraphStoreSimplifiedShipit57PullRequestLinksToPageUnion>;
|
|
24956
25213
|
};
|
|
@@ -24963,6 +25220,7 @@ export declare type GraphStoreSimplifiedShipit57PullRequestLinksToPageInverseEdg
|
|
|
24963
25220
|
__typename?: 'GraphStoreSimplifiedShipit57PullRequestLinksToPageInverseEdge';
|
|
24964
25221
|
createdAt: Scalars['DateTime']['output'];
|
|
24965
25222
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25223
|
+
id: Scalars['ID']['output'];
|
|
24966
25224
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24967
25225
|
node?: Maybe<GraphStoreSimplifiedShipit57PullRequestLinksToPageInverseUnion>;
|
|
24968
25226
|
};
|
|
@@ -24979,6 +25237,7 @@ export declare type GraphStoreSimplifiedSprintAssociatedDeploymentEdge = {
|
|
|
24979
25237
|
__typename?: 'GraphStoreSimplifiedSprintAssociatedDeploymentEdge';
|
|
24980
25238
|
createdAt: Scalars['DateTime']['output'];
|
|
24981
25239
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25240
|
+
id: Scalars['ID']['output'];
|
|
24982
25241
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24983
25242
|
node?: Maybe<GraphStoreSimplifiedSprintAssociatedDeploymentUnion>;
|
|
24984
25243
|
};
|
|
@@ -24994,6 +25253,7 @@ export declare type GraphStoreSimplifiedSprintAssociatedFeatureFlagEdge = {
|
|
|
24994
25253
|
__typename?: 'GraphStoreSimplifiedSprintAssociatedFeatureFlagEdge';
|
|
24995
25254
|
createdAt: Scalars['DateTime']['output'];
|
|
24996
25255
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25256
|
+
id: Scalars['ID']['output'];
|
|
24997
25257
|
lastUpdated: Scalars['DateTime']['output'];
|
|
24998
25258
|
node?: Maybe<GraphStoreSimplifiedSprintAssociatedFeatureFlagUnion>;
|
|
24999
25259
|
};
|
|
@@ -25009,6 +25269,7 @@ export declare type GraphStoreSimplifiedSprintAssociatedPrEdge = {
|
|
|
25009
25269
|
__typename?: 'GraphStoreSimplifiedSprintAssociatedPrEdge';
|
|
25010
25270
|
createdAt: Scalars['DateTime']['output'];
|
|
25011
25271
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25272
|
+
id: Scalars['ID']['output'];
|
|
25012
25273
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25013
25274
|
node?: Maybe<GraphStoreSimplifiedSprintAssociatedPrUnion>;
|
|
25014
25275
|
};
|
|
@@ -25024,6 +25285,7 @@ export declare type GraphStoreSimplifiedSprintAssociatedVulnerabilityEdge = {
|
|
|
25024
25285
|
__typename?: 'GraphStoreSimplifiedSprintAssociatedVulnerabilityEdge';
|
|
25025
25286
|
createdAt: Scalars['DateTime']['output'];
|
|
25026
25287
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25288
|
+
id: Scalars['ID']['output'];
|
|
25027
25289
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25028
25290
|
node?: Maybe<GraphStoreSimplifiedSprintAssociatedVulnerabilityUnion>;
|
|
25029
25291
|
};
|
|
@@ -25039,6 +25301,7 @@ export declare type GraphStoreSimplifiedSprintContainsIssueEdge = {
|
|
|
25039
25301
|
__typename?: 'GraphStoreSimplifiedSprintContainsIssueEdge';
|
|
25040
25302
|
createdAt: Scalars['DateTime']['output'];
|
|
25041
25303
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25304
|
+
id: Scalars['ID']['output'];
|
|
25042
25305
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25043
25306
|
node?: Maybe<GraphStoreSimplifiedSprintContainsIssueUnion>;
|
|
25044
25307
|
};
|
|
@@ -25054,6 +25317,7 @@ export declare type GraphStoreSimplifiedSprintRetrospectivePageEdge = {
|
|
|
25054
25317
|
__typename?: 'GraphStoreSimplifiedSprintRetrospectivePageEdge';
|
|
25055
25318
|
createdAt: Scalars['DateTime']['output'];
|
|
25056
25319
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25320
|
+
id: Scalars['ID']['output'];
|
|
25057
25321
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25058
25322
|
node?: Maybe<GraphStoreSimplifiedSprintRetrospectivePageUnion>;
|
|
25059
25323
|
};
|
|
@@ -25069,6 +25333,7 @@ export declare type GraphStoreSimplifiedSprintRetrospectiveWhiteboardEdge = {
|
|
|
25069
25333
|
__typename?: 'GraphStoreSimplifiedSprintRetrospectiveWhiteboardEdge';
|
|
25070
25334
|
createdAt: Scalars['DateTime']['output'];
|
|
25071
25335
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25336
|
+
id: Scalars['ID']['output'];
|
|
25072
25337
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25073
25338
|
node?: Maybe<GraphStoreSimplifiedSprintRetrospectiveWhiteboardUnion>;
|
|
25074
25339
|
};
|
|
@@ -25084,6 +25349,7 @@ export declare type GraphStoreSimplifiedTeamWorksOnProjectEdge = {
|
|
|
25084
25349
|
__typename?: 'GraphStoreSimplifiedTeamWorksOnProjectEdge';
|
|
25085
25350
|
createdAt: Scalars['DateTime']['output'];
|
|
25086
25351
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25352
|
+
id: Scalars['ID']['output'];
|
|
25087
25353
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25088
25354
|
node?: Maybe<GraphStoreSimplifiedTeamWorksOnProjectUnion>;
|
|
25089
25355
|
};
|
|
@@ -25099,6 +25365,7 @@ export declare type GraphStoreSimplifiedTestPerfhammerMaterializationAInverseEdg
|
|
|
25099
25365
|
__typename?: 'GraphStoreSimplifiedTestPerfhammerMaterializationAInverseEdge';
|
|
25100
25366
|
createdAt: Scalars['DateTime']['output'];
|
|
25101
25367
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25368
|
+
id: Scalars['ID']['output'];
|
|
25102
25369
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25103
25370
|
node?: Maybe<GraphStoreSimplifiedTestPerfhammerMaterializationAInverseUnion>;
|
|
25104
25371
|
};
|
|
@@ -25114,6 +25381,7 @@ export declare type GraphStoreSimplifiedTestPerfhammerMaterializationInverseEdge
|
|
|
25114
25381
|
__typename?: 'GraphStoreSimplifiedTestPerfhammerMaterializationInverseEdge';
|
|
25115
25382
|
createdAt: Scalars['DateTime']['output'];
|
|
25116
25383
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25384
|
+
id: Scalars['ID']['output'];
|
|
25117
25385
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25118
25386
|
node?: Maybe<GraphStoreSimplifiedTestPerfhammerMaterializationInverseUnion>;
|
|
25119
25387
|
};
|
|
@@ -25127,6 +25395,7 @@ export declare type GraphStoreSimplifiedTestPerfhammerRelationshipInverseEdge =
|
|
|
25127
25395
|
__typename?: 'GraphStoreSimplifiedTestPerfhammerRelationshipInverseEdge';
|
|
25128
25396
|
createdAt: Scalars['DateTime']['output'];
|
|
25129
25397
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25398
|
+
id: Scalars['ID']['output'];
|
|
25130
25399
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25131
25400
|
node?: Maybe<GraphStoreSimplifiedTestPerfhammerRelationshipInverseUnion>;
|
|
25132
25401
|
};
|
|
@@ -25142,6 +25411,7 @@ export declare type GraphStoreSimplifiedVersionAssociatedBranchInverseEdge = {
|
|
|
25142
25411
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedBranchInverseEdge';
|
|
25143
25412
|
createdAt: Scalars['DateTime']['output'];
|
|
25144
25413
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25414
|
+
id: Scalars['ID']['output'];
|
|
25145
25415
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25146
25416
|
node?: Maybe<GraphStoreSimplifiedVersionAssociatedBranchInverseUnion>;
|
|
25147
25417
|
};
|
|
@@ -25157,6 +25427,7 @@ export declare type GraphStoreSimplifiedVersionAssociatedBuildInverseEdge = {
|
|
|
25157
25427
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedBuildInverseEdge';
|
|
25158
25428
|
createdAt: Scalars['DateTime']['output'];
|
|
25159
25429
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25430
|
+
id: Scalars['ID']['output'];
|
|
25160
25431
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25161
25432
|
node?: Maybe<GraphStoreSimplifiedVersionAssociatedBuildInverseUnion>;
|
|
25162
25433
|
};
|
|
@@ -25172,6 +25443,7 @@ export declare type GraphStoreSimplifiedVersionAssociatedCommitInverseEdge = {
|
|
|
25172
25443
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedCommitInverseEdge';
|
|
25173
25444
|
createdAt: Scalars['DateTime']['output'];
|
|
25174
25445
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25446
|
+
id: Scalars['ID']['output'];
|
|
25175
25447
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25176
25448
|
node?: Maybe<GraphStoreSimplifiedVersionAssociatedCommitInverseUnion>;
|
|
25177
25449
|
};
|
|
@@ -25187,6 +25459,7 @@ export declare type GraphStoreSimplifiedVersionAssociatedDeploymentEdge = {
|
|
|
25187
25459
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedDeploymentEdge';
|
|
25188
25460
|
createdAt: Scalars['DateTime']['output'];
|
|
25189
25461
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25462
|
+
id: Scalars['ID']['output'];
|
|
25190
25463
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25191
25464
|
node?: Maybe<GraphStoreSimplifiedVersionAssociatedDeploymentUnion>;
|
|
25192
25465
|
};
|
|
@@ -25201,6 +25474,7 @@ export declare type GraphStoreSimplifiedVersionAssociatedDeploymentInverseEdge =
|
|
|
25201
25474
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedDeploymentInverseEdge';
|
|
25202
25475
|
createdAt: Scalars['DateTime']['output'];
|
|
25203
25476
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25477
|
+
id: Scalars['ID']['output'];
|
|
25204
25478
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25205
25479
|
node?: Maybe<GraphStoreSimplifiedVersionAssociatedDeploymentInverseUnion>;
|
|
25206
25480
|
};
|
|
@@ -25217,6 +25491,7 @@ export declare type GraphStoreSimplifiedVersionAssociatedDesignEdge = {
|
|
|
25217
25491
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedDesignEdge';
|
|
25218
25492
|
createdAt: Scalars['DateTime']['output'];
|
|
25219
25493
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25494
|
+
id: Scalars['ID']['output'];
|
|
25220
25495
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25221
25496
|
node?: Maybe<GraphStoreSimplifiedVersionAssociatedDesignUnion>;
|
|
25222
25497
|
};
|
|
@@ -25231,6 +25506,7 @@ export declare type GraphStoreSimplifiedVersionAssociatedDesignInverseEdge = {
|
|
|
25231
25506
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedDesignInverseEdge';
|
|
25232
25507
|
createdAt: Scalars['DateTime']['output'];
|
|
25233
25508
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25509
|
+
id: Scalars['ID']['output'];
|
|
25234
25510
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25235
25511
|
node?: Maybe<GraphStoreSimplifiedVersionAssociatedDesignInverseUnion>;
|
|
25236
25512
|
};
|
|
@@ -25247,6 +25523,7 @@ export declare type GraphStoreSimplifiedVersionAssociatedFeatureFlagEdge = {
|
|
|
25247
25523
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedFeatureFlagEdge';
|
|
25248
25524
|
createdAt: Scalars['DateTime']['output'];
|
|
25249
25525
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25526
|
+
id: Scalars['ID']['output'];
|
|
25250
25527
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25251
25528
|
node?: Maybe<GraphStoreSimplifiedVersionAssociatedFeatureFlagUnion>;
|
|
25252
25529
|
};
|
|
@@ -25261,6 +25538,7 @@ export declare type GraphStoreSimplifiedVersionAssociatedFeatureFlagInverseEdge
|
|
|
25261
25538
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedFeatureFlagInverseEdge';
|
|
25262
25539
|
createdAt: Scalars['DateTime']['output'];
|
|
25263
25540
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25541
|
+
id: Scalars['ID']['output'];
|
|
25264
25542
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25265
25543
|
node?: Maybe<GraphStoreSimplifiedVersionAssociatedFeatureFlagInverseUnion>;
|
|
25266
25544
|
};
|
|
@@ -25275,6 +25553,7 @@ export declare type GraphStoreSimplifiedVersionAssociatedIssueEdge = {
|
|
|
25275
25553
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedIssueEdge';
|
|
25276
25554
|
createdAt: Scalars['DateTime']['output'];
|
|
25277
25555
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25556
|
+
id: Scalars['ID']['output'];
|
|
25278
25557
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25279
25558
|
node?: Maybe<GraphStoreSimplifiedVersionAssociatedIssueUnion>;
|
|
25280
25559
|
};
|
|
@@ -25287,6 +25566,7 @@ export declare type GraphStoreSimplifiedVersionAssociatedIssueInverseEdge = {
|
|
|
25287
25566
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedIssueInverseEdge';
|
|
25288
25567
|
createdAt: Scalars['DateTime']['output'];
|
|
25289
25568
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25569
|
+
id: Scalars['ID']['output'];
|
|
25290
25570
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25291
25571
|
node?: Maybe<GraphStoreSimplifiedVersionAssociatedIssueInverseUnion>;
|
|
25292
25572
|
};
|
|
@@ -25303,6 +25583,7 @@ export declare type GraphStoreSimplifiedVersionAssociatedPullRequestEdge = {
|
|
|
25303
25583
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedPullRequestEdge';
|
|
25304
25584
|
createdAt: Scalars['DateTime']['output'];
|
|
25305
25585
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25586
|
+
id: Scalars['ID']['output'];
|
|
25306
25587
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25307
25588
|
node?: Maybe<GraphStoreSimplifiedVersionAssociatedPullRequestUnion>;
|
|
25308
25589
|
};
|
|
@@ -25317,6 +25598,7 @@ export declare type GraphStoreSimplifiedVersionAssociatedPullRequestInverseEdge
|
|
|
25317
25598
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedPullRequestInverseEdge';
|
|
25318
25599
|
createdAt: Scalars['DateTime']['output'];
|
|
25319
25600
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25601
|
+
id: Scalars['ID']['output'];
|
|
25320
25602
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25321
25603
|
node?: Maybe<GraphStoreSimplifiedVersionAssociatedPullRequestInverseUnion>;
|
|
25322
25604
|
};
|
|
@@ -25331,6 +25613,7 @@ export declare type GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseEdge =
|
|
|
25331
25613
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseEdge';
|
|
25332
25614
|
createdAt: Scalars['DateTime']['output'];
|
|
25333
25615
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25616
|
+
id: Scalars['ID']['output'];
|
|
25334
25617
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25335
25618
|
node?: Maybe<GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseUnion>;
|
|
25336
25619
|
};
|
|
@@ -25346,6 +25629,7 @@ export declare type GraphStoreSimplifiedVersionUserAssociatedFeatureFlagEdge = {
|
|
|
25346
25629
|
__typename?: 'GraphStoreSimplifiedVersionUserAssociatedFeatureFlagEdge';
|
|
25347
25630
|
createdAt: Scalars['DateTime']['output'];
|
|
25348
25631
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25632
|
+
id: Scalars['ID']['output'];
|
|
25349
25633
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25350
25634
|
node?: Maybe<GraphStoreSimplifiedVersionUserAssociatedFeatureFlagUnion>;
|
|
25351
25635
|
};
|
|
@@ -25360,6 +25644,7 @@ export declare type GraphStoreSimplifiedVersionUserAssociatedFeatureFlagInverseE
|
|
|
25360
25644
|
__typename?: 'GraphStoreSimplifiedVersionUserAssociatedFeatureFlagInverseEdge';
|
|
25361
25645
|
createdAt: Scalars['DateTime']['output'];
|
|
25362
25646
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25647
|
+
id: Scalars['ID']['output'];
|
|
25363
25648
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25364
25649
|
node?: Maybe<GraphStoreSimplifiedVersionUserAssociatedFeatureFlagInverseUnion>;
|
|
25365
25650
|
};
|
|
@@ -25376,6 +25661,7 @@ export declare type GraphStoreSimplifiedVulnerabilityAssociatedIssueEdge = {
|
|
|
25376
25661
|
__typename?: 'GraphStoreSimplifiedVulnerabilityAssociatedIssueEdge';
|
|
25377
25662
|
createdAt: Scalars['DateTime']['output'];
|
|
25378
25663
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25664
|
+
id: Scalars['ID']['output'];
|
|
25379
25665
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25380
25666
|
node?: Maybe<GraphStoreSimplifiedVulnerabilityAssociatedIssueUnion>;
|
|
25381
25667
|
};
|
|
@@ -25390,6 +25676,7 @@ export declare type GraphStoreSimplifiedVulnerabilityAssociatedIssueInverseEdge
|
|
|
25390
25676
|
__typename?: 'GraphStoreSimplifiedVulnerabilityAssociatedIssueInverseEdge';
|
|
25391
25677
|
createdAt: Scalars['DateTime']['output'];
|
|
25392
25678
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
25679
|
+
id: Scalars['ID']['output'];
|
|
25393
25680
|
lastUpdated: Scalars['DateTime']['output'];
|
|
25394
25681
|
node?: Maybe<GraphStoreSimplifiedVulnerabilityAssociatedIssueInverseUnion>;
|
|
25395
25682
|
};
|
|
@@ -40893,7 +41180,14 @@ export declare type JsmChatUpdateChannelSettingsInput = {
|
|
|
40893
41180
|
};
|
|
40894
41181
|
export declare type JsmChatUpdateChannelSettingsOutput = {
|
|
40895
41182
|
__typename?: 'JsmChatUpdateChannelSettingsOutput';
|
|
41183
|
+
channelName?: Maybe<Scalars['String']['output']>;
|
|
41184
|
+
channelType?: Maybe<Scalars['String']['output']>;
|
|
41185
|
+
isPrivate?: Maybe<Scalars['Boolean']['output']>;
|
|
40896
41186
|
message: Scalars['String']['output'];
|
|
41187
|
+
requestTypes?: Maybe<Array<Maybe<JsmChatRequestTypeData>>>;
|
|
41188
|
+
settings?: Maybe<JsmChatChannelSettings>;
|
|
41189
|
+
slackChannelId?: Maybe<Scalars['String']['output']>;
|
|
41190
|
+
slackTeamId?: Maybe<Scalars['String']['output']>;
|
|
40897
41191
|
status: Scalars['Boolean']['output'];
|
|
40898
41192
|
};
|
|
40899
41193
|
export declare type JsmChatUpdateProjectSettingsInput = {
|
|
@@ -40978,22 +41272,27 @@ export declare type KnowledgeBaseSources = {
|
|
|
40978
41272
|
};
|
|
40979
41273
|
export declare type KnowledgeDiscoveryConfluenceBlogpost = KnowledgeDiscoveryEntity & {
|
|
40980
41274
|
__typename?: 'KnowledgeDiscoveryConfluenceBlogpost';
|
|
41275
|
+
confluenceBlogpost?: Maybe<ConfluenceBlogPost>;
|
|
40981
41276
|
id: Scalars['ID']['output'];
|
|
40982
41277
|
};
|
|
40983
41278
|
export declare type KnowledgeDiscoveryConfluenceEntity = ConfluenceBlogPost | ConfluencePage;
|
|
40984
41279
|
export declare type KnowledgeDiscoveryConfluencePage = KnowledgeDiscoveryEntity & {
|
|
40985
41280
|
__typename?: 'KnowledgeDiscoveryConfluencePage';
|
|
41281
|
+
confluencePage?: Maybe<ConfluencePage>;
|
|
40986
41282
|
id: Scalars['ID']['output'];
|
|
40987
41283
|
};
|
|
40988
41284
|
export declare type KnowledgeDiscoveryConfluenceSpace = KnowledgeDiscoveryEntity & {
|
|
40989
41285
|
__typename?: 'KnowledgeDiscoveryConfluenceSpace';
|
|
41286
|
+
confluenceSpace?: Maybe<ConfluenceSpace>;
|
|
40990
41287
|
id: Scalars['ID']['output'];
|
|
40991
41288
|
};
|
|
40992
41289
|
export declare type KnowledgeDiscoveryCreateDefinitionInput = {
|
|
40993
41290
|
definition: Scalars['String']['input'];
|
|
41291
|
+
entityIdInScope: Scalars['String']['input'];
|
|
40994
41292
|
keyPhrase: Scalars['String']['input'];
|
|
40995
41293
|
referenceContentId?: InputMaybe<Scalars['String']['input']>;
|
|
40996
41294
|
referenceUrl?: InputMaybe<Scalars['String']['input']>;
|
|
41295
|
+
scope: KnowledgeDiscoveryDefinitionScope;
|
|
40997
41296
|
workspaceId: Scalars['String']['input'];
|
|
40998
41297
|
};
|
|
40999
41298
|
export declare type KnowledgeDiscoveryCreateDefinitionPayload = Payload & {
|
|
@@ -41009,8 +41308,10 @@ export declare type KnowledgeDiscoveryDefinition = {
|
|
|
41009
41308
|
createdAt: Scalars['String']['output'];
|
|
41010
41309
|
definition: Scalars['String']['output'];
|
|
41011
41310
|
editor?: Maybe<User>;
|
|
41311
|
+
entityIdInScope: Scalars['String']['output'];
|
|
41012
41312
|
keyPhrase: Scalars['String']['output'];
|
|
41013
41313
|
referenceUrl?: Maybe<Scalars['String']['output']>;
|
|
41314
|
+
scope: KnowledgeDiscoveryDefinitionScope;
|
|
41014
41315
|
};
|
|
41015
41316
|
export declare type KnowledgeDiscoveryDefinitionHistoryResult = KnowledgeDiscoveryDefinitionList | QueryError;
|
|
41016
41317
|
export declare type KnowledgeDiscoveryDefinitionList = {
|
|
@@ -41018,6 +41319,12 @@ export declare type KnowledgeDiscoveryDefinitionList = {
|
|
|
41018
41319
|
definitions?: Maybe<Array<Maybe<KnowledgeDiscoveryDefinition>>>;
|
|
41019
41320
|
};
|
|
41020
41321
|
export declare type KnowledgeDiscoveryDefinitionResult = KnowledgeDiscoveryDefinition | QueryError;
|
|
41322
|
+
export declare enum KnowledgeDiscoveryDefinitionScope {
|
|
41323
|
+
Blogpost = "BLOGPOST",
|
|
41324
|
+
Organization = "ORGANIZATION",
|
|
41325
|
+
Page = "PAGE",
|
|
41326
|
+
Space = "SPACE"
|
|
41327
|
+
}
|
|
41021
41328
|
export declare type KnowledgeDiscoveryEntity = {
|
|
41022
41329
|
id: Scalars['ID']['output'];
|
|
41023
41330
|
};
|
|
@@ -41034,6 +41341,7 @@ export declare enum KnowledgeDiscoveryEntityType {
|
|
|
41034
41341
|
export declare type KnowledgeDiscoveryJiraProject = KnowledgeDiscoveryEntity & {
|
|
41035
41342
|
__typename?: 'KnowledgeDiscoveryJiraProject';
|
|
41036
41343
|
id: Scalars['ID']['output'];
|
|
41344
|
+
jiraProject?: Maybe<JiraProject>;
|
|
41037
41345
|
};
|
|
41038
41346
|
export declare type KnowledgeDiscoveryKeyPhrase = {
|
|
41039
41347
|
__typename?: 'KnowledgeDiscoveryKeyPhrase';
|
|
@@ -41077,11 +41385,15 @@ export declare type KnowledgeDiscoveryQueryApi = {
|
|
|
41077
41385
|
topic?: Maybe<KnowledgeDiscoveryTopicResult>;
|
|
41078
41386
|
};
|
|
41079
41387
|
export declare type KnowledgeDiscoveryQueryApiDefinitionArgs = {
|
|
41388
|
+
contentId: Scalars['String']['input'];
|
|
41080
41389
|
keyPhrase: Scalars['String']['input'];
|
|
41390
|
+
spaceId: Scalars['String']['input'];
|
|
41081
41391
|
workspaceId: Scalars['String']['input'];
|
|
41082
41392
|
};
|
|
41083
41393
|
export declare type KnowledgeDiscoveryQueryApiDefinitionHistoryArgs = {
|
|
41394
|
+
contentId: Scalars['String']['input'];
|
|
41084
41395
|
keyPhrase: Scalars['String']['input'];
|
|
41396
|
+
spaceId: Scalars['String']['input'];
|
|
41085
41397
|
workspaceId: Scalars['String']['input'];
|
|
41086
41398
|
};
|
|
41087
41399
|
export declare type KnowledgeDiscoveryQueryApiKeyPhrasesArgs = {
|
|
@@ -41151,6 +41463,7 @@ export declare enum KnowledgeDiscoveryTopicType {
|
|
|
41151
41463
|
export declare type KnowledgeDiscoveryUser = KnowledgeDiscoveryEntity & {
|
|
41152
41464
|
__typename?: 'KnowledgeDiscoveryUser';
|
|
41153
41465
|
id: Scalars['ID']['output'];
|
|
41466
|
+
user?: Maybe<User>;
|
|
41154
41467
|
};
|
|
41155
41468
|
export declare type LabelUsage = {
|
|
41156
41469
|
__typename?: 'LabelUsage';
|
|
@@ -42440,6 +42753,7 @@ export declare type Mutation = {
|
|
|
42440
42753
|
userAuthTokenForExtension?: Maybe<UserAuthTokenForExtensionResponse>;
|
|
42441
42754
|
virtualAgent?: Maybe<VirtualAgentMutationApi>;
|
|
42442
42755
|
watchMarketplaceApp?: Maybe<WatchMarketplaceAppPayload>;
|
|
42756
|
+
workSuggestions?: Maybe<WorkSuggestionsMutation>;
|
|
42443
42757
|
};
|
|
42444
42758
|
export declare type MutationAddBetaUserAsSiteCreatorArgs = {
|
|
42445
42759
|
input: AddBetaUserAsSiteCreatorInput;
|
|
@@ -45154,8 +45468,8 @@ export declare type Query = {
|
|
|
45154
45468
|
signup?: Maybe<SignupQueryApi>;
|
|
45155
45469
|
smarts?: Maybe<SmartsQueryApi>;
|
|
45156
45470
|
softwareBoards?: Maybe<BoardScopeConnection>;
|
|
45157
|
-
squadNameById?: Maybe<SupportInquirySquad>;
|
|
45158
45471
|
suggestions?: Maybe<AutoSuggestionApi>;
|
|
45472
|
+
supportInquiry?: Maybe<SupportInquiryApi>;
|
|
45159
45473
|
surfacePlatform: SurfacePlatformQueryApi;
|
|
45160
45474
|
team?: Maybe<TeamQuery>;
|
|
45161
45475
|
template?: Maybe<ContentPlatformTemplate>;
|
|
@@ -45173,6 +45487,7 @@ export declare type Query = {
|
|
|
45173
45487
|
users?: Maybe<Array<User>>;
|
|
45174
45488
|
virtualAgent?: Maybe<VirtualAgentQueryApi>;
|
|
45175
45489
|
webTriggerUrlsByAppContext?: Maybe<Array<WebTriggerUrl>>;
|
|
45490
|
+
workSuggestions?: Maybe<WorkSuggestions>;
|
|
45176
45491
|
xflow?: Maybe<Scalars['String']['output']>;
|
|
45177
45492
|
};
|
|
45178
45493
|
export declare type QueryAnchorArgs = {
|
|
@@ -46954,7 +47269,7 @@ export declare enum SearchConfluenceDocumentStatus {
|
|
|
46954
47269
|
Current = "CURRENT",
|
|
46955
47270
|
Draft = "DRAFT"
|
|
46956
47271
|
}
|
|
46957
|
-
export declare type SearchConfluenceEntity = ConfluenceBlogPost | ConfluencePage | ConfluenceWhiteboard;
|
|
47272
|
+
export declare type SearchConfluenceEntity = ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluencePage | ConfluenceWhiteboard;
|
|
46958
47273
|
export declare type SearchConfluenceFilter = {
|
|
46959
47274
|
ancestorIdsFilter?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
46960
47275
|
containerARIs?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -47321,6 +47636,16 @@ export declare type SearchResultMicrosoftDocument = SearchResult & {
|
|
|
47321
47636
|
type: SearchResultType;
|
|
47322
47637
|
url: Scalars['URL']['output'];
|
|
47323
47638
|
};
|
|
47639
|
+
export declare type SearchResultSlackMessage = SearchResult & {
|
|
47640
|
+
__typename?: 'SearchResultSlackMessage';
|
|
47641
|
+
description: Scalars['String']['output'];
|
|
47642
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
47643
|
+
id: Scalars['ID']['output'];
|
|
47644
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
47645
|
+
title: Scalars['String']['output'];
|
|
47646
|
+
type: SearchResultType;
|
|
47647
|
+
url: Scalars['URL']['output'];
|
|
47648
|
+
};
|
|
47324
47649
|
export declare type SearchResultTrelloBoard = SearchResult & {
|
|
47325
47650
|
__typename?: 'SearchResultTrelloBoard';
|
|
47326
47651
|
description: Scalars['String']['output'];
|
|
@@ -47358,6 +47683,7 @@ export declare enum SearchResultType {
|
|
|
47358
47683
|
Goal = "goal",
|
|
47359
47684
|
Issue = "issue",
|
|
47360
47685
|
Learning = "learning",
|
|
47686
|
+
Message = "message",
|
|
47361
47687
|
Page = "page",
|
|
47362
47688
|
Plan = "plan",
|
|
47363
47689
|
Presentation = "presentation",
|
|
@@ -49060,6 +49386,13 @@ export declare type Subscription = {
|
|
|
49060
49386
|
testing?: Maybe<TestingSubscription>;
|
|
49061
49387
|
trello: TrelloSubscriptionApi;
|
|
49062
49388
|
};
|
|
49389
|
+
export declare type SupportInquiryApi = {
|
|
49390
|
+
__typename?: 'SupportInquiryApi';
|
|
49391
|
+
squad?: Maybe<SupportInquirySquad>;
|
|
49392
|
+
};
|
|
49393
|
+
export declare type SupportInquiryApiSquadArgs = {
|
|
49394
|
+
id: Scalars['ID']['input'];
|
|
49395
|
+
};
|
|
49063
49396
|
export declare type SupportInquirySquad = {
|
|
49064
49397
|
__typename?: 'SupportInquirySquad';
|
|
49065
49398
|
id: Scalars['ID']['output'];
|
|
@@ -52990,6 +53323,208 @@ export declare type WebTriggerUrlInput = {
|
|
|
52990
53323
|
envId: Scalars['ID']['input'];
|
|
52991
53324
|
triggerKey: Scalars['String']['input'];
|
|
52992
53325
|
};
|
|
53326
|
+
export declare type WorkSuggestions = {
|
|
53327
|
+
__typename?: 'WorkSuggestions';
|
|
53328
|
+
workSuggestionsByContextAri: WorkSuggestionsConnection;
|
|
53329
|
+
};
|
|
53330
|
+
export declare type WorkSuggestionsWorkSuggestionsByContextAriArgs = {
|
|
53331
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
53332
|
+
contextAri: WorkSuggestionsContextAri;
|
|
53333
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
53334
|
+
};
|
|
53335
|
+
export declare enum WorkSuggestionsAction {
|
|
53336
|
+
Remove = "REMOVE",
|
|
53337
|
+
Snooze = "SNOOZE"
|
|
53338
|
+
}
|
|
53339
|
+
export declare type WorkSuggestionsActionInput = {
|
|
53340
|
+
cloudId: Scalars['ID']['input'];
|
|
53341
|
+
taskId: Scalars['String']['input'];
|
|
53342
|
+
};
|
|
53343
|
+
export declare type WorkSuggestionsActionPayload = Payload & {
|
|
53344
|
+
__typename?: 'WorkSuggestionsActionPayload';
|
|
53345
|
+
errors?: Maybe<Array<MutationError>>;
|
|
53346
|
+
success: Scalars['Boolean']['output'];
|
|
53347
|
+
userActionState?: Maybe<WorkSuggestionsUserActionState>;
|
|
53348
|
+
};
|
|
53349
|
+
export declare type WorkSuggestionsBlockedIssue = {
|
|
53350
|
+
__typename?: 'WorkSuggestionsBlockedIssue';
|
|
53351
|
+
issueKey: Scalars['String']['output'];
|
|
53352
|
+
title: Scalars['String']['output'];
|
|
53353
|
+
};
|
|
53354
|
+
export declare type WorkSuggestionsBlockingIssueTask = WorkSuggestionsCommon & {
|
|
53355
|
+
__typename?: 'WorkSuggestionsBlockingIssueTask';
|
|
53356
|
+
blockedIssues?: Maybe<Array<WorkSuggestionsBlockedIssue>>;
|
|
53357
|
+
id: Scalars['String']['output'];
|
|
53358
|
+
issueIconUrl: Scalars['String']['output'];
|
|
53359
|
+
issueId: Scalars['String']['output'];
|
|
53360
|
+
issueKey: Scalars['String']['output'];
|
|
53361
|
+
title: Scalars['String']['output'];
|
|
53362
|
+
url: Scalars['String']['output'];
|
|
53363
|
+
};
|
|
53364
|
+
export declare type WorkSuggestionsBuildTask = WorkSuggestionsCommon & {
|
|
53365
|
+
__typename?: 'WorkSuggestionsBuildTask';
|
|
53366
|
+
buildNumber: Scalars['Int']['output'];
|
|
53367
|
+
id: Scalars['String']['output'];
|
|
53368
|
+
issueId: Scalars['String']['output'];
|
|
53369
|
+
issueKey: Scalars['String']['output'];
|
|
53370
|
+
issueName: Scalars['String']['output'];
|
|
53371
|
+
lastUpdated: Scalars['String']['output'];
|
|
53372
|
+
numberOfFailedBuilds: Scalars['Int']['output'];
|
|
53373
|
+
title: Scalars['String']['output'];
|
|
53374
|
+
url: Scalars['String']['output'];
|
|
53375
|
+
};
|
|
53376
|
+
export declare type WorkSuggestionsCommon = {
|
|
53377
|
+
id: Scalars['String']['output'];
|
|
53378
|
+
title: Scalars['String']['output'];
|
|
53379
|
+
url: Scalars['String']['output'];
|
|
53380
|
+
};
|
|
53381
|
+
export declare type WorkSuggestionsConnection = {
|
|
53382
|
+
__typename?: 'WorkSuggestionsConnection';
|
|
53383
|
+
edges: Array<Maybe<WorkSuggestionsEdge>>;
|
|
53384
|
+
nodes: Array<Maybe<WorkSuggestionsCommon>>;
|
|
53385
|
+
pageInfo: PageInfo;
|
|
53386
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
53387
|
+
};
|
|
53388
|
+
export declare type WorkSuggestionsContextAri = {
|
|
53389
|
+
projectAri: Scalars['ID']['input'];
|
|
53390
|
+
sprintAri?: InputMaybe<Scalars['ID']['input']>;
|
|
53391
|
+
};
|
|
53392
|
+
export declare type WorkSuggestionsCreateUserProfileInput = {
|
|
53393
|
+
cloudId: Scalars['ID']['input'];
|
|
53394
|
+
persona?: InputMaybe<WorkSuggestionsUserPersona>;
|
|
53395
|
+
projectAris: Array<Scalars['ID']['input']>;
|
|
53396
|
+
};
|
|
53397
|
+
export declare type WorkSuggestionsCreateUserProfilePayload = Payload & {
|
|
53398
|
+
__typename?: 'WorkSuggestionsCreateUserProfilePayload';
|
|
53399
|
+
errors?: Maybe<Array<MutationError>>;
|
|
53400
|
+
success: Scalars['Boolean']['output'];
|
|
53401
|
+
userProfile?: Maybe<WorkSuggestionsUserProfile>;
|
|
53402
|
+
};
|
|
53403
|
+
export declare type WorkSuggestionsCriticalVulnerabilityTask = WorkSuggestionsCommon & {
|
|
53404
|
+
__typename?: 'WorkSuggestionsCriticalVulnerabilityTask';
|
|
53405
|
+
id: Scalars['String']['output'];
|
|
53406
|
+
introducedDate: Scalars['String']['output'];
|
|
53407
|
+
issueId: Scalars['String']['output'];
|
|
53408
|
+
issueKey: Scalars['String']['output'];
|
|
53409
|
+
securityContainerName: Scalars['String']['output'];
|
|
53410
|
+
status: WorkSuggestionsVulnerabilityStatus;
|
|
53411
|
+
title: Scalars['String']['output'];
|
|
53412
|
+
url: Scalars['String']['output'];
|
|
53413
|
+
};
|
|
53414
|
+
export declare type WorkSuggestionsDeploymentTask = WorkSuggestionsCommon & {
|
|
53415
|
+
__typename?: 'WorkSuggestionsDeploymentTask';
|
|
53416
|
+
environmentNames: Array<Scalars['String']['output']>;
|
|
53417
|
+
environmentType: WorkSuggestionsEnvironmentType;
|
|
53418
|
+
id: Scalars['String']['output'];
|
|
53419
|
+
issueId: Scalars['String']['output'];
|
|
53420
|
+
issueKey: Scalars['String']['output'];
|
|
53421
|
+
issueName: Scalars['String']['output'];
|
|
53422
|
+
lastUpdated: Scalars['String']['output'];
|
|
53423
|
+
numberOfFailedDeployments: Scalars['Int']['output'];
|
|
53424
|
+
pipelineName: Scalars['String']['output'];
|
|
53425
|
+
title: Scalars['String']['output'];
|
|
53426
|
+
url: Scalars['String']['output'];
|
|
53427
|
+
};
|
|
53428
|
+
export declare type WorkSuggestionsEdge = {
|
|
53429
|
+
__typename?: 'WorkSuggestionsEdge';
|
|
53430
|
+
cursor: Scalars['String']['output'];
|
|
53431
|
+
node?: Maybe<WorkSuggestionsCommon>;
|
|
53432
|
+
};
|
|
53433
|
+
export declare enum WorkSuggestionsEnvironmentType {
|
|
53434
|
+
Development = "DEVELOPMENT",
|
|
53435
|
+
Production = "PRODUCTION",
|
|
53436
|
+
Staging = "STAGING",
|
|
53437
|
+
Testing = "TESTING",
|
|
53438
|
+
Unmapped = "UNMAPPED"
|
|
53439
|
+
}
|
|
53440
|
+
export declare type WorkSuggestionsMutation = {
|
|
53441
|
+
__typename?: 'WorkSuggestionsMutation';
|
|
53442
|
+
createUserProfile?: Maybe<WorkSuggestionsCreateUserProfilePayload>;
|
|
53443
|
+
purgeUserActionStateForCurrentUser?: Maybe<WorkSuggestionsActionPayload>;
|
|
53444
|
+
purgeUserProfileForCurrentUser?: Maybe<WorkSuggestionsPurgeUserProfilePayload>;
|
|
53445
|
+
removeTask?: Maybe<WorkSuggestionsActionPayload>;
|
|
53446
|
+
snoozeTask?: Maybe<WorkSuggestionsActionPayload>;
|
|
53447
|
+
};
|
|
53448
|
+
export declare type WorkSuggestionsMutationCreateUserProfileArgs = {
|
|
53449
|
+
input: WorkSuggestionsCreateUserProfileInput;
|
|
53450
|
+
};
|
|
53451
|
+
export declare type WorkSuggestionsMutationPurgeUserActionStateForCurrentUserArgs = {
|
|
53452
|
+
input: WorkSuggestionsPurgeUserActionStateInput;
|
|
53453
|
+
};
|
|
53454
|
+
export declare type WorkSuggestionsMutationPurgeUserProfileForCurrentUserArgs = {
|
|
53455
|
+
input: WorkSuggestionsPurgeUserProfileInput;
|
|
53456
|
+
};
|
|
53457
|
+
export declare type WorkSuggestionsMutationRemoveTaskArgs = {
|
|
53458
|
+
input: WorkSuggestionsActionInput;
|
|
53459
|
+
};
|
|
53460
|
+
export declare type WorkSuggestionsMutationSnoozeTaskArgs = {
|
|
53461
|
+
input: WorkSuggestionsActionInput;
|
|
53462
|
+
};
|
|
53463
|
+
export declare type WorkSuggestionsMutationErrorExtension = MutationErrorExtension & {
|
|
53464
|
+
__typename?: 'WorkSuggestionsMutationErrorExtension';
|
|
53465
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
53466
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
53467
|
+
};
|
|
53468
|
+
export declare type WorkSuggestionsPullRequestNeedsWorkTask = WorkSuggestionsCommon & {
|
|
53469
|
+
__typename?: 'WorkSuggestionsPullRequestNeedsWorkTask';
|
|
53470
|
+
commentCount: Scalars['Int']['output'];
|
|
53471
|
+
destinationBranchName?: Maybe<Scalars['String']['output']>;
|
|
53472
|
+
id: Scalars['String']['output'];
|
|
53473
|
+
lastUpdated: Scalars['String']['output'];
|
|
53474
|
+
needsWorkCount: Scalars['Int']['output'];
|
|
53475
|
+
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
53476
|
+
sourceBranchName?: Maybe<Scalars['String']['output']>;
|
|
53477
|
+
title: Scalars['String']['output'];
|
|
53478
|
+
url: Scalars['String']['output'];
|
|
53479
|
+
};
|
|
53480
|
+
export declare type WorkSuggestionsPullRequestReviewTask = WorkSuggestionsCommon & {
|
|
53481
|
+
__typename?: 'WorkSuggestionsPullRequestReviewTask';
|
|
53482
|
+
approvalsCount: Scalars['Int']['output'];
|
|
53483
|
+
commentCount: Scalars['Int']['output'];
|
|
53484
|
+
destinationBranchName?: Maybe<Scalars['String']['output']>;
|
|
53485
|
+
id: Scalars['String']['output'];
|
|
53486
|
+
lastUpdated: Scalars['String']['output'];
|
|
53487
|
+
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
53488
|
+
sourceBranchName?: Maybe<Scalars['String']['output']>;
|
|
53489
|
+
title: Scalars['String']['output'];
|
|
53490
|
+
url: Scalars['String']['output'];
|
|
53491
|
+
};
|
|
53492
|
+
export declare type WorkSuggestionsPurgeUserActionStateInput = {
|
|
53493
|
+
cloudId: Scalars['ID']['input'];
|
|
53494
|
+
};
|
|
53495
|
+
export declare type WorkSuggestionsPurgeUserProfileInput = {
|
|
53496
|
+
cloudId: Scalars['ID']['input'];
|
|
53497
|
+
};
|
|
53498
|
+
export declare type WorkSuggestionsPurgeUserProfilePayload = Payload & {
|
|
53499
|
+
__typename?: 'WorkSuggestionsPurgeUserProfilePayload';
|
|
53500
|
+
errors?: Maybe<Array<MutationError>>;
|
|
53501
|
+
success: Scalars['Boolean']['output'];
|
|
53502
|
+
userProfile?: Maybe<WorkSuggestionsUserProfile>;
|
|
53503
|
+
};
|
|
53504
|
+
export declare type WorkSuggestionsUserActionState = {
|
|
53505
|
+
__typename?: 'WorkSuggestionsUserActionState';
|
|
53506
|
+
expireAt: Scalars['String']['output'];
|
|
53507
|
+
reason: WorkSuggestionsAction;
|
|
53508
|
+
stateId: Scalars['String']['output'];
|
|
53509
|
+
taskId: Scalars['String']['output'];
|
|
53510
|
+
};
|
|
53511
|
+
export declare enum WorkSuggestionsUserPersona {
|
|
53512
|
+
Developer = "DEVELOPER"
|
|
53513
|
+
}
|
|
53514
|
+
export declare type WorkSuggestionsUserProfile = {
|
|
53515
|
+
__typename?: 'WorkSuggestionsUserProfile';
|
|
53516
|
+
aaid: Scalars['String']['output'];
|
|
53517
|
+
createdOn: Scalars['String']['output'];
|
|
53518
|
+
id: Scalars['String']['output'];
|
|
53519
|
+
persona?: Maybe<WorkSuggestionsUserPersona>;
|
|
53520
|
+
projectAris?: Maybe<Array<Scalars['ID']['output']>>;
|
|
53521
|
+
};
|
|
53522
|
+
export declare enum WorkSuggestionsVulnerabilityStatus {
|
|
53523
|
+
Closed = "CLOSED",
|
|
53524
|
+
Ignored = "IGNORED",
|
|
53525
|
+
Open = "OPEN",
|
|
53526
|
+
Unknown = "UNKNOWN"
|
|
53527
|
+
}
|
|
52993
53528
|
export declare type _AppliedDirective = {
|
|
52994
53529
|
__typename?: '_AppliedDirective';
|
|
52995
53530
|
args: Array<_DirectiveArgument>;
|