@forge/cli-shared 3.22.0 → 3.22.1-next.1
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 +15 -0
- package/out/graphql/graphql-types.d.ts +1676 -133
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +190 -7
- package/package.json +3 -3
|
@@ -690,6 +690,8 @@ export declare enum ApiGroup {
|
|
|
690
690
|
SurfacePlatform = "SURFACE_PLATFORM",
|
|
691
691
|
Teams = "TEAMS",
|
|
692
692
|
VirtualAgent = "VIRTUAL_AGENT",
|
|
693
|
+
WebTriggers = "WEB_TRIGGERS",
|
|
694
|
+
XenInvocationService = "XEN_INVOCATION_SERVICE",
|
|
693
695
|
XenLogsApi = "XEN_LOGS_API"
|
|
694
696
|
}
|
|
695
697
|
export type App = {
|
|
@@ -4687,6 +4689,15 @@ export type CompassRichTextObject = {
|
|
|
4687
4689
|
__typename?: 'CompassRichTextObject';
|
|
4688
4690
|
adf?: Maybe<Scalars['String']['output']>;
|
|
4689
4691
|
};
|
|
4692
|
+
export type CompassScoreStatisticsHistoryComponentTypesFilter = {
|
|
4693
|
+
in: Array<Scalars['ID']['input']>;
|
|
4694
|
+
};
|
|
4695
|
+
export type CompassScoreStatisticsHistoryDateFilter = {
|
|
4696
|
+
startFrom: Scalars['DateTime']['input'];
|
|
4697
|
+
};
|
|
4698
|
+
export type CompassScoreStatisticsHistoryOwnersFilter = {
|
|
4699
|
+
in: Array<Scalars['ID']['input']>;
|
|
4700
|
+
};
|
|
4690
4701
|
export type CompassScorecard = Node & {
|
|
4691
4702
|
__typename?: 'CompassScorecard';
|
|
4692
4703
|
appliedToComponentStats?: Maybe<CompassScorecardComponentStatsQueryResult>;
|
|
@@ -4697,6 +4708,7 @@ export type CompassScorecard = Node & {
|
|
|
4697
4708
|
componentType: CompassComponentType;
|
|
4698
4709
|
componentTypeId: Scalars['ID']['output'];
|
|
4699
4710
|
componentTypeIds: Array<Scalars['ID']['output']>;
|
|
4711
|
+
criteriaScoreStatisticsHistories?: Maybe<CompassScorecardCriteriaScoreStatisticsHistoryConnection>;
|
|
4700
4712
|
criterias?: Maybe<Array<CompassScorecardCriteria>>;
|
|
4701
4713
|
description?: Maybe<Scalars['String']['output']>;
|
|
4702
4714
|
id: Scalars['ID']['output'];
|
|
@@ -4704,14 +4716,25 @@ export type CompassScorecard = Node & {
|
|
|
4704
4716
|
name: Scalars['String']['output'];
|
|
4705
4717
|
owner?: Maybe<User>;
|
|
4706
4718
|
scorecardScore?: Maybe<CompassScorecardScore>;
|
|
4719
|
+
scorecardScoreStatisticsHistories?: Maybe<CompassScorecardScoreStatisticsHistoryConnection>;
|
|
4707
4720
|
type: Scalars['String']['output'];
|
|
4708
4721
|
};
|
|
4709
4722
|
export type CompassScorecardAppliedToComponentsArgs = {
|
|
4710
4723
|
query?: InputMaybe<CompassScorecardAppliedToComponentsQuery>;
|
|
4711
4724
|
};
|
|
4725
|
+
export type CompassScorecardCriteriaScoreStatisticsHistoriesArgs = {
|
|
4726
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
4727
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
4728
|
+
query?: InputMaybe<CompassScorecardCriteriaScoreStatisticsHistoryQuery>;
|
|
4729
|
+
};
|
|
4712
4730
|
export type CompassScorecardScorecardScoreArgs = {
|
|
4713
4731
|
query?: InputMaybe<CompassScorecardScoreQuery>;
|
|
4714
4732
|
};
|
|
4733
|
+
export type CompassScorecardScorecardScoreStatisticsHistoriesArgs = {
|
|
4734
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
4735
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
4736
|
+
query?: InputMaybe<CompassScorecardScoreStatisticsHistoryQuery>;
|
|
4737
|
+
};
|
|
4715
4738
|
export type CompassScorecardAppliedToComponentsConnection = {
|
|
4716
4739
|
__typename?: 'CompassScorecardAppliedToComponentsConnection';
|
|
4717
4740
|
edges?: Maybe<Array<CompassScorecardAppliedToComponentsEdge>>;
|
|
@@ -4804,6 +4827,31 @@ export type CompassScorecardCriteriaScore = {
|
|
|
4804
4827
|
export type CompassScorecardCriteriaScoreQuery = {
|
|
4805
4828
|
componentId: Scalars['ID']['input'];
|
|
4806
4829
|
};
|
|
4830
|
+
export type CompassScorecardCriteriaScoreStatisticsHistory = {
|
|
4831
|
+
__typename?: 'CompassScorecardCriteriaScoreStatisticsHistory';
|
|
4832
|
+
criteriaStatistics?: Maybe<Array<CompassScorecardCriterionScoreStatistic>>;
|
|
4833
|
+
date: Scalars['DateTime']['output'];
|
|
4834
|
+
totalCount: Scalars['Int']['output'];
|
|
4835
|
+
};
|
|
4836
|
+
export type CompassScorecardCriteriaScoreStatisticsHistoryConnection = {
|
|
4837
|
+
__typename?: 'CompassScorecardCriteriaScoreStatisticsHistoryConnection';
|
|
4838
|
+
edges?: Maybe<Array<CompassScorecardCriteriaScoreStatisticsHistoryEdge>>;
|
|
4839
|
+
nodes?: Maybe<Array<CompassScorecardCriteriaScoreStatisticsHistory>>;
|
|
4840
|
+
pageInfo: PageInfo;
|
|
4841
|
+
};
|
|
4842
|
+
export type CompassScorecardCriteriaScoreStatisticsHistoryEdge = {
|
|
4843
|
+
__typename?: 'CompassScorecardCriteriaScoreStatisticsHistoryEdge';
|
|
4844
|
+
cursor: Scalars['String']['output'];
|
|
4845
|
+
node?: Maybe<CompassScorecardCriteriaScoreStatisticsHistory>;
|
|
4846
|
+
};
|
|
4847
|
+
export type CompassScorecardCriteriaScoreStatisticsHistoryQuery = {
|
|
4848
|
+
filter?: InputMaybe<CompassScorecardCriteriaScoreStatisticsHistoryQueryFilter>;
|
|
4849
|
+
};
|
|
4850
|
+
export type CompassScorecardCriteriaScoreStatisticsHistoryQueryFilter = {
|
|
4851
|
+
componentTypes?: InputMaybe<CompassScoreStatisticsHistoryComponentTypesFilter>;
|
|
4852
|
+
date?: InputMaybe<CompassScoreStatisticsHistoryDateFilter>;
|
|
4853
|
+
owners?: InputMaybe<CompassScoreStatisticsHistoryOwnersFilter>;
|
|
4854
|
+
};
|
|
4807
4855
|
export type CompassScorecardCriteriaStats = {
|
|
4808
4856
|
__typename?: 'CompassScorecardCriteriaStats';
|
|
4809
4857
|
error: Scalars['Int']['output'];
|
|
@@ -4812,6 +4860,21 @@ export type CompassScorecardCriteriaStats = {
|
|
|
4812
4860
|
scorecardCriteriaId: Scalars['ID']['output'];
|
|
4813
4861
|
weight: Scalars['Int']['output'];
|
|
4814
4862
|
};
|
|
4863
|
+
export type CompassScorecardCriterionScoreStatistic = {
|
|
4864
|
+
__typename?: 'CompassScorecardCriterionScoreStatistic';
|
|
4865
|
+
criterionId: Scalars['ID']['output'];
|
|
4866
|
+
scoreStatusStatistics?: Maybe<Array<CompassScorecardCriterionScoreStatusStatistic>>;
|
|
4867
|
+
totalCount: Scalars['Int']['output'];
|
|
4868
|
+
};
|
|
4869
|
+
export type CompassScorecardCriterionScoreStatus = {
|
|
4870
|
+
__typename?: 'CompassScorecardCriterionScoreStatus';
|
|
4871
|
+
name: Scalars['String']['output'];
|
|
4872
|
+
};
|
|
4873
|
+
export type CompassScorecardCriterionScoreStatusStatistic = {
|
|
4874
|
+
__typename?: 'CompassScorecardCriterionScoreStatusStatistic';
|
|
4875
|
+
count: Scalars['Int']['output'];
|
|
4876
|
+
scoreStatus: CompassScorecardCriterionScoreStatus;
|
|
4877
|
+
};
|
|
4815
4878
|
export type CompassScorecardEdge = {
|
|
4816
4879
|
__typename?: 'CompassScorecardEdge';
|
|
4817
4880
|
cursor: Scalars['String']['output'];
|
|
@@ -4874,6 +4937,42 @@ export type CompassScorecardScoreQuery = {
|
|
|
4874
4937
|
componentId: Scalars['ID']['input'];
|
|
4875
4938
|
};
|
|
4876
4939
|
export type CompassScorecardScoreResult = CompassScorecardScore | QueryError;
|
|
4940
|
+
export type CompassScorecardScoreStatistic = {
|
|
4941
|
+
__typename?: 'CompassScorecardScoreStatistic';
|
|
4942
|
+
count: Scalars['Int']['output'];
|
|
4943
|
+
scoreStatus: CompassScorecardScoreStatus;
|
|
4944
|
+
};
|
|
4945
|
+
export type CompassScorecardScoreStatisticsHistory = {
|
|
4946
|
+
__typename?: 'CompassScorecardScoreStatisticsHistory';
|
|
4947
|
+
date: Scalars['DateTime']['output'];
|
|
4948
|
+
statistics?: Maybe<Array<CompassScorecardScoreStatistic>>;
|
|
4949
|
+
totalCount: Scalars['Int']['output'];
|
|
4950
|
+
};
|
|
4951
|
+
export type CompassScorecardScoreStatisticsHistoryConnection = {
|
|
4952
|
+
__typename?: 'CompassScorecardScoreStatisticsHistoryConnection';
|
|
4953
|
+
edges?: Maybe<Array<CompassScorecardScoreStatisticsHistoryEdge>>;
|
|
4954
|
+
nodes?: Maybe<Array<CompassScorecardScoreStatisticsHistory>>;
|
|
4955
|
+
pageInfo: PageInfo;
|
|
4956
|
+
};
|
|
4957
|
+
export type CompassScorecardScoreStatisticsHistoryEdge = {
|
|
4958
|
+
__typename?: 'CompassScorecardScoreStatisticsHistoryEdge';
|
|
4959
|
+
cursor: Scalars['String']['output'];
|
|
4960
|
+
node?: Maybe<CompassScorecardScoreStatisticsHistory>;
|
|
4961
|
+
};
|
|
4962
|
+
export type CompassScorecardScoreStatisticsHistoryQuery = {
|
|
4963
|
+
filter?: InputMaybe<CompassScorecardScoreStatisticsHistoryQueryFilter>;
|
|
4964
|
+
};
|
|
4965
|
+
export type CompassScorecardScoreStatisticsHistoryQueryFilter = {
|
|
4966
|
+
componentTypes?: InputMaybe<CompassScoreStatisticsHistoryComponentTypesFilter>;
|
|
4967
|
+
date?: InputMaybe<CompassScoreStatisticsHistoryDateFilter>;
|
|
4968
|
+
owners?: InputMaybe<CompassScoreStatisticsHistoryOwnersFilter>;
|
|
4969
|
+
};
|
|
4970
|
+
export type CompassScorecardScoreStatus = {
|
|
4971
|
+
__typename?: 'CompassScorecardScoreStatus';
|
|
4972
|
+
lowerBound: Scalars['Int']['output'];
|
|
4973
|
+
name: Scalars['String']['output'];
|
|
4974
|
+
upperBound: Scalars['Int']['output'];
|
|
4975
|
+
};
|
|
4877
4976
|
export type CompassScorecardScoreStatusDuration = {
|
|
4878
4977
|
__typename?: 'CompassScorecardScoreStatusDuration';
|
|
4879
4978
|
since: Scalars['DateTime']['output'];
|
|
@@ -9111,6 +9210,7 @@ export type DevOpsService = Node & {
|
|
|
9111
9210
|
dependsOnDevOpsServiceRelationships?: Maybe<DevOpsServiceRelationshipConnection>;
|
|
9112
9211
|
description?: Maybe<Scalars['String']['output']>;
|
|
9113
9212
|
id: Scalars['ID']['output'];
|
|
9213
|
+
isCompassSynchronised: Scalars['Boolean']['output'];
|
|
9114
9214
|
jiraProjects?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
9115
9215
|
lastUpdatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
9116
9216
|
lastUpdatedBy?: Maybe<Scalars['String']['output']>;
|
|
@@ -9800,6 +9900,7 @@ export type EcosystemAppsInstalledInContextsEdge = {
|
|
|
9800
9900
|
};
|
|
9801
9901
|
export type EcosystemAppsInstalledInContextsEdgeNodeArgs = {
|
|
9802
9902
|
contextIds: Array<Scalars['ID']['input']>;
|
|
9903
|
+
options?: InputMaybe<EcosystemAppsInstalledInContextsOptions>;
|
|
9803
9904
|
};
|
|
9804
9905
|
export type EcosystemAppsInstalledInContextsFilter = {
|
|
9805
9906
|
type: EcosystemAppsInstalledInContextsFilterType;
|
|
@@ -9809,6 +9910,9 @@ export declare enum EcosystemAppsInstalledInContextsFilterType {
|
|
|
9809
9910
|
Name = "NAME",
|
|
9810
9911
|
OnlyAppIds = "ONLY_APP_IDS"
|
|
9811
9912
|
}
|
|
9913
|
+
export type EcosystemAppsInstalledInContextsOptions = {
|
|
9914
|
+
groupByBaseApp?: InputMaybe<Scalars['Boolean']['input']>;
|
|
9915
|
+
};
|
|
9812
9916
|
export type EcosystemAppsInstalledInContextsOrderBy = {
|
|
9813
9917
|
direction: SortDirection;
|
|
9814
9918
|
sortKey: EcosystemAppsInstalledInContextsSortKey;
|
|
@@ -9968,6 +10072,7 @@ export type EcosystemQueryAppsInstalledInContextsArgs = {
|
|
|
9968
10072
|
filters?: InputMaybe<Array<EcosystemAppsInstalledInContextsFilter>>;
|
|
9969
10073
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
9970
10074
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
10075
|
+
options?: InputMaybe<EcosystemAppsInstalledInContextsOptions>;
|
|
9971
10076
|
orderBy?: InputMaybe<Array<EcosystemAppsInstalledInContextsOrderBy>>;
|
|
9972
10077
|
};
|
|
9973
10078
|
export type EcosystemQueryCheckConsentPermissionByOAuthClientIdArgs = {
|
|
@@ -10243,6 +10348,22 @@ export type FilterQuery = {
|
|
|
10243
10348
|
errors?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
10244
10349
|
sanitisedJql: Scalars['String']['output'];
|
|
10245
10350
|
};
|
|
10351
|
+
export type ForgeAiDemo = {
|
|
10352
|
+
__typename?: 'ForgeAiDemo';
|
|
10353
|
+
emoji?: Maybe<Scalars['String']['output']>;
|
|
10354
|
+
endTimestamp?: Maybe<Scalars['String']['output']>;
|
|
10355
|
+
presenter?: Maybe<Scalars['String']['output']>;
|
|
10356
|
+
startTimestamp?: Maybe<Scalars['String']['output']>;
|
|
10357
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
10358
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
10359
|
+
};
|
|
10360
|
+
export type ForgeAiMutation = {
|
|
10361
|
+
__typename?: 'ForgeAiMutation';
|
|
10362
|
+
ForgeAiDemoAppAiGenerateSummaries?: Maybe<Array<Maybe<ForgeAiDemo>>>;
|
|
10363
|
+
};
|
|
10364
|
+
export type ForgeAiMutationForgeAiDemoAppAiGenerateSummariesArgs = {
|
|
10365
|
+
transcript?: InputMaybe<Scalars['String']['input']>;
|
|
10366
|
+
};
|
|
10246
10367
|
export type ForgeAlertsActivitiesQueryInput = {
|
|
10247
10368
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
10248
10369
|
endTime: Scalars['String']['input'];
|
|
@@ -13779,6 +13900,7 @@ export type GraphStore = {
|
|
|
13779
13900
|
issueAssociatedCommitInverse?: Maybe<GraphStoreSimplifiedIssueAssociatedCommitInverseConnection>;
|
|
13780
13901
|
issueAssociatedCommitInverseRelationship?: Maybe<GraphStoreFullIssueAssociatedCommitConnection>;
|
|
13781
13902
|
issueAssociatedCommitRelationship?: Maybe<GraphStoreFullIssueAssociatedCommitConnection>;
|
|
13903
|
+
issueAssociatedDeployment?: Maybe<GraphStoreSimplifiedIssueAssociatedDeploymentConnection>;
|
|
13782
13904
|
issueAssociatedDeploymentInverse?: Maybe<GraphStoreSimplifiedIssueAssociatedDeploymentInverseConnection>;
|
|
13783
13905
|
issueAssociatedDeploymentInverseRelationship?: Maybe<GraphStoreFullIssueAssociatedDeploymentConnection>;
|
|
13784
13906
|
issueAssociatedDeploymentRelationship?: Maybe<GraphStoreFullIssueAssociatedDeploymentConnection>;
|
|
@@ -13809,6 +13931,8 @@ export type GraphStore = {
|
|
|
13809
13931
|
jiraEpicContributesToAtlasGoalRelationship?: Maybe<GraphStoreFullJiraEpicContributesToAtlasGoalConnection>;
|
|
13810
13932
|
jiraProjectAssociatedAtlasGoalInverseRelationship?: Maybe<GraphStoreFullJiraProjectAssociatedAtlasGoalConnection>;
|
|
13811
13933
|
jiraProjectAssociatedAtlasGoalRelationship?: Maybe<GraphStoreFullJiraProjectAssociatedAtlasGoalConnection>;
|
|
13934
|
+
jsmProjectAssociatedServiceBatch?: Maybe<GraphStoreBatchJsmProjectAssociatedServiceConnection>;
|
|
13935
|
+
jsmProjectAssociatedServiceInverseBatch?: Maybe<GraphStoreBatchJsmProjectAssociatedServiceConnection>;
|
|
13812
13936
|
jsmProjectAssociatedServiceInverseRelationship?: Maybe<GraphStoreFullJsmProjectAssociatedServiceConnection>;
|
|
13813
13937
|
jsmProjectAssociatedServiceRelationship?: Maybe<GraphStoreFullJsmProjectAssociatedServiceConnection>;
|
|
13814
13938
|
jswProjectAssociatedComponentInverseRelationship?: Maybe<GraphStoreFullJswProjectAssociatedComponentConnection>;
|
|
@@ -13835,6 +13959,7 @@ export type GraphStore = {
|
|
|
13835
13959
|
projectAssociatedBranchRelationship?: Maybe<GraphStoreFullProjectAssociatedBranchConnection>;
|
|
13836
13960
|
projectAssociatedBuildInverseRelationship?: Maybe<GraphStoreFullProjectAssociatedBuildConnection>;
|
|
13837
13961
|
projectAssociatedBuildRelationship?: Maybe<GraphStoreFullProjectAssociatedBuildConnection>;
|
|
13962
|
+
projectAssociatedDeployment?: Maybe<GraphStoreSimplifiedProjectAssociatedDeploymentConnection>;
|
|
13838
13963
|
projectAssociatedDeploymentInverseRelationship?: Maybe<GraphStoreFullProjectAssociatedDeploymentConnection>;
|
|
13839
13964
|
projectAssociatedDeploymentRelationship?: Maybe<GraphStoreFullProjectAssociatedDeploymentConnection>;
|
|
13840
13965
|
projectAssociatedFeatureFlagInverseRelationship?: Maybe<GraphStoreFullProjectAssociatedFeatureFlagConnection>;
|
|
@@ -13899,8 +14024,20 @@ export type GraphStore = {
|
|
|
13899
14024
|
sprintContainsIssueRelationship?: Maybe<GraphStoreFullSprintContainsIssueConnection>;
|
|
13900
14025
|
sprintRetrospectivePageInverseRelationship?: Maybe<GraphStoreFullSprintRetrospectivePageConnection>;
|
|
13901
14026
|
sprintRetrospectivePageRelationship?: Maybe<GraphStoreFullSprintRetrospectivePageConnection>;
|
|
14027
|
+
sprintRetrospectiveWhiteboardInverseRelationship?: Maybe<GraphStoreFullSprintRetrospectiveWhiteboardConnection>;
|
|
14028
|
+
sprintRetrospectiveWhiteboardRelationship?: Maybe<GraphStoreFullSprintRetrospectiveWhiteboardConnection>;
|
|
13902
14029
|
teamWorksOnProjectInverseRelationship?: Maybe<GraphStoreFullTeamWorksOnProjectConnection>;
|
|
13903
14030
|
teamWorksOnProjectRelationship?: Maybe<GraphStoreFullTeamWorksOnProjectConnection>;
|
|
14031
|
+
testPerfhammerMaterializationAInverseRelationship?: Maybe<GraphStoreFullTestPerfhammerMaterializationAConnection>;
|
|
14032
|
+
testPerfhammerMaterializationARelationship?: Maybe<GraphStoreFullTestPerfhammerMaterializationAConnection>;
|
|
14033
|
+
testPerfhammerMaterializationBInverseRelationship?: Maybe<GraphStoreFullTestPerfhammerMaterializationBConnection>;
|
|
14034
|
+
testPerfhammerMaterializationBRelationship?: Maybe<GraphStoreFullTestPerfhammerMaterializationBConnection>;
|
|
14035
|
+
testPerfhammerMaterializationInverseRelationship?: Maybe<GraphStoreFullTestPerfhammerMaterializationConnection>;
|
|
14036
|
+
testPerfhammerMaterializationRelationship?: Maybe<GraphStoreFullTestPerfhammerMaterializationConnection>;
|
|
14037
|
+
testPerfhammerRelationshipBatch?: Maybe<GraphStoreBatchTestPerfhammerRelationshipConnection>;
|
|
14038
|
+
testPerfhammerRelationshipInverseBatch?: Maybe<GraphStoreBatchTestPerfhammerRelationshipConnection>;
|
|
14039
|
+
testPerfhammerRelationshipInverseRelationship?: Maybe<GraphStoreFullTestPerfhammerRelationshipConnection>;
|
|
14040
|
+
testPerfhammerRelationshipRelationship?: Maybe<GraphStoreFullTestPerfhammerRelationshipConnection>;
|
|
13904
14041
|
userIsInTeamInverseRelationship?: Maybe<GraphStoreFullUserIsInTeamConnection>;
|
|
13905
14042
|
userIsInTeamRelationship?: Maybe<GraphStoreFullUserIsInTeamConnection>;
|
|
13906
14043
|
versionAssociatedBranchInverseRelationship?: Maybe<GraphStoreFullVersionAssociatedBranchConnection>;
|
|
@@ -14097,6 +14234,11 @@ export type GraphStoreIssueAssociatedCommitRelationshipArgs = {
|
|
|
14097
14234
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14098
14235
|
id: Scalars['ID']['input'];
|
|
14099
14236
|
};
|
|
14237
|
+
export type GraphStoreIssueAssociatedDeploymentArgs = {
|
|
14238
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
14239
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14240
|
+
id: Scalars['ID']['input'];
|
|
14241
|
+
};
|
|
14100
14242
|
export type GraphStoreIssueAssociatedDeploymentInverseArgs = {
|
|
14101
14243
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
14102
14244
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -14247,6 +14389,16 @@ export type GraphStoreJiraProjectAssociatedAtlasGoalRelationshipArgs = {
|
|
|
14247
14389
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14248
14390
|
id: Scalars['ID']['input'];
|
|
14249
14391
|
};
|
|
14392
|
+
export type GraphStoreJsmProjectAssociatedServiceBatchArgs = {
|
|
14393
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
14394
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14395
|
+
ids: Array<Scalars['ID']['input']>;
|
|
14396
|
+
};
|
|
14397
|
+
export type GraphStoreJsmProjectAssociatedServiceInverseBatchArgs = {
|
|
14398
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
14399
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14400
|
+
ids: Array<Scalars['ID']['input']>;
|
|
14401
|
+
};
|
|
14250
14402
|
export type GraphStoreJsmProjectAssociatedServiceInverseRelationshipArgs = {
|
|
14251
14403
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
14252
14404
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -14369,23 +14521,38 @@ export type GraphStoreProjectAssociatedBranchRelationshipArgs = {
|
|
|
14369
14521
|
};
|
|
14370
14522
|
export type GraphStoreProjectAssociatedBuildInverseRelationshipArgs = {
|
|
14371
14523
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
14524
|
+
filter?: InputMaybe<GraphStoreProjectAssociatedBuildFilterInput>;
|
|
14372
14525
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14373
14526
|
id: Scalars['ID']['input'];
|
|
14527
|
+
sort?: InputMaybe<GraphStoreProjectAssociatedBuildSortInput>;
|
|
14374
14528
|
};
|
|
14375
14529
|
export type GraphStoreProjectAssociatedBuildRelationshipArgs = {
|
|
14376
14530
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
14531
|
+
filter?: InputMaybe<GraphStoreProjectAssociatedBuildFilterInput>;
|
|
14532
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14533
|
+
id: Scalars['ID']['input'];
|
|
14534
|
+
sort?: InputMaybe<GraphStoreProjectAssociatedBuildSortInput>;
|
|
14535
|
+
};
|
|
14536
|
+
export type GraphStoreProjectAssociatedDeploymentArgs = {
|
|
14537
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
14538
|
+
filter?: InputMaybe<GraphStoreProjectAssociatedDeploymentFilterInput>;
|
|
14377
14539
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14378
14540
|
id: Scalars['ID']['input'];
|
|
14541
|
+
sort?: InputMaybe<GraphStoreProjectAssociatedDeploymentSortInput>;
|
|
14379
14542
|
};
|
|
14380
14543
|
export type GraphStoreProjectAssociatedDeploymentInverseRelationshipArgs = {
|
|
14381
14544
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
14545
|
+
filter?: InputMaybe<GraphStoreProjectAssociatedDeploymentFilterInput>;
|
|
14382
14546
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14383
14547
|
id: Scalars['ID']['input'];
|
|
14548
|
+
sort?: InputMaybe<GraphStoreProjectAssociatedDeploymentSortInput>;
|
|
14384
14549
|
};
|
|
14385
14550
|
export type GraphStoreProjectAssociatedDeploymentRelationshipArgs = {
|
|
14386
14551
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
14552
|
+
filter?: InputMaybe<GraphStoreProjectAssociatedDeploymentFilterInput>;
|
|
14387
14553
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14388
14554
|
id: Scalars['ID']['input'];
|
|
14555
|
+
sort?: InputMaybe<GraphStoreProjectAssociatedDeploymentSortInput>;
|
|
14389
14556
|
};
|
|
14390
14557
|
export type GraphStoreProjectAssociatedFeatureFlagInverseRelationshipArgs = {
|
|
14391
14558
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -14419,13 +14586,17 @@ export type GraphStoreProjectAssociatedOpsgenieTeamRelationshipArgs = {
|
|
|
14419
14586
|
};
|
|
14420
14587
|
export type GraphStoreProjectAssociatedPrInverseRelationshipArgs = {
|
|
14421
14588
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
14589
|
+
filter?: InputMaybe<GraphStoreProjectAssociatedPrFilterInput>;
|
|
14422
14590
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14423
14591
|
id: Scalars['ID']['input'];
|
|
14592
|
+
sort?: InputMaybe<GraphStoreProjectAssociatedPrSortInput>;
|
|
14424
14593
|
};
|
|
14425
14594
|
export type GraphStoreProjectAssociatedPrRelationshipArgs = {
|
|
14426
14595
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
14596
|
+
filter?: InputMaybe<GraphStoreProjectAssociatedPrFilterInput>;
|
|
14427
14597
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14428
14598
|
id: Scalars['ID']['input'];
|
|
14599
|
+
sort?: InputMaybe<GraphStoreProjectAssociatedPrSortInput>;
|
|
14429
14600
|
};
|
|
14430
14601
|
export type GraphStoreProjectAssociatedRepoInverseRelationshipArgs = {
|
|
14431
14602
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -14479,13 +14650,17 @@ export type GraphStoreProjectAssociatedToSecurityContainerRelationshipArgs = {
|
|
|
14479
14650
|
};
|
|
14480
14651
|
export type GraphStoreProjectAssociatedVulnerabilityInverseRelationshipArgs = {
|
|
14481
14652
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
14653
|
+
filter?: InputMaybe<GraphStoreProjectAssociatedVulnerabilityFilterInput>;
|
|
14482
14654
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14483
14655
|
id: Scalars['ID']['input'];
|
|
14656
|
+
sort?: InputMaybe<GraphStoreProjectAssociatedVulnerabilitySortInput>;
|
|
14484
14657
|
};
|
|
14485
14658
|
export type GraphStoreProjectAssociatedVulnerabilityRelationshipArgs = {
|
|
14486
14659
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
14660
|
+
filter?: InputMaybe<GraphStoreProjectAssociatedVulnerabilityFilterInput>;
|
|
14487
14661
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14488
14662
|
id: Scalars['ID']['input'];
|
|
14663
|
+
sort?: InputMaybe<GraphStoreProjectAssociatedVulnerabilitySortInput>;
|
|
14489
14664
|
};
|
|
14490
14665
|
export type GraphStoreProjectDisassociatedRepoInverseRelationshipArgs = {
|
|
14491
14666
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -14589,13 +14764,17 @@ export type GraphStoreSecurityContainerAssociatedToVulnerabilityRelationshipArgs
|
|
|
14589
14764
|
};
|
|
14590
14765
|
export type GraphStoreServiceLinkedIncidentInverseRelationshipArgs = {
|
|
14591
14766
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
14767
|
+
filter?: InputMaybe<GraphStoreServiceLinkedIncidentFilterInput>;
|
|
14592
14768
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14593
14769
|
id: Scalars['ID']['input'];
|
|
14770
|
+
sort?: InputMaybe<GraphStoreServiceLinkedIncidentSortInput>;
|
|
14594
14771
|
};
|
|
14595
14772
|
export type GraphStoreServiceLinkedIncidentRelationshipArgs = {
|
|
14596
14773
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
14774
|
+
filter?: InputMaybe<GraphStoreServiceLinkedIncidentFilterInput>;
|
|
14597
14775
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14598
14776
|
id: Scalars['ID']['input'];
|
|
14777
|
+
sort?: InputMaybe<GraphStoreServiceLinkedIncidentSortInput>;
|
|
14599
14778
|
};
|
|
14600
14779
|
export type GraphStoreShipit57IssueLinksToPageInverseRelationshipArgs = {
|
|
14601
14780
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -14639,23 +14818,31 @@ export type GraphStoreShipit57PullRequestLinksToPageRelationshipArgs = {
|
|
|
14639
14818
|
};
|
|
14640
14819
|
export type GraphStoreSprintAssociatedBuildInverseRelationshipArgs = {
|
|
14641
14820
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
14821
|
+
filter?: InputMaybe<GraphStoreSprintAssociatedBuildFilterInput>;
|
|
14642
14822
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14643
14823
|
id: Scalars['ID']['input'];
|
|
14824
|
+
sort?: InputMaybe<GraphStoreSprintAssociatedBuildSortInput>;
|
|
14644
14825
|
};
|
|
14645
14826
|
export type GraphStoreSprintAssociatedBuildRelationshipArgs = {
|
|
14646
14827
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
14828
|
+
filter?: InputMaybe<GraphStoreSprintAssociatedBuildFilterInput>;
|
|
14647
14829
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14648
14830
|
id: Scalars['ID']['input'];
|
|
14831
|
+
sort?: InputMaybe<GraphStoreSprintAssociatedBuildSortInput>;
|
|
14649
14832
|
};
|
|
14650
14833
|
export type GraphStoreSprintAssociatedDeploymentInverseRelationshipArgs = {
|
|
14651
14834
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
14835
|
+
filter?: InputMaybe<GraphStoreSprintAssociatedDeploymentFilterInput>;
|
|
14652
14836
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14653
14837
|
id: Scalars['ID']['input'];
|
|
14838
|
+
sort?: InputMaybe<GraphStoreSprintAssociatedDeploymentSortInput>;
|
|
14654
14839
|
};
|
|
14655
14840
|
export type GraphStoreSprintAssociatedDeploymentRelationshipArgs = {
|
|
14656
14841
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
14842
|
+
filter?: InputMaybe<GraphStoreSprintAssociatedDeploymentFilterInput>;
|
|
14657
14843
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14658
14844
|
id: Scalars['ID']['input'];
|
|
14845
|
+
sort?: InputMaybe<GraphStoreSprintAssociatedDeploymentSortInput>;
|
|
14659
14846
|
};
|
|
14660
14847
|
export type GraphStoreSprintAssociatedFeatureFlagInverseRelationshipArgs = {
|
|
14661
14848
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -14669,13 +14856,17 @@ export type GraphStoreSprintAssociatedFeatureFlagRelationshipArgs = {
|
|
|
14669
14856
|
};
|
|
14670
14857
|
export type GraphStoreSprintAssociatedPrInverseRelationshipArgs = {
|
|
14671
14858
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
14859
|
+
filter?: InputMaybe<GraphStoreSprintAssociatedPrFilterInput>;
|
|
14672
14860
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14673
14861
|
id: Scalars['ID']['input'];
|
|
14862
|
+
sort?: InputMaybe<GraphStoreSprintAssociatedPrSortInput>;
|
|
14674
14863
|
};
|
|
14675
14864
|
export type GraphStoreSprintAssociatedPrRelationshipArgs = {
|
|
14676
14865
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
14866
|
+
filter?: InputMaybe<GraphStoreSprintAssociatedPrFilterInput>;
|
|
14677
14867
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14678
14868
|
id: Scalars['ID']['input'];
|
|
14869
|
+
sort?: InputMaybe<GraphStoreSprintAssociatedPrSortInput>;
|
|
14679
14870
|
};
|
|
14680
14871
|
export type GraphStoreSprintContainsIssueInverseRelationshipArgs = {
|
|
14681
14872
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -14697,6 +14888,16 @@ export type GraphStoreSprintRetrospectivePageRelationshipArgs = {
|
|
|
14697
14888
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14698
14889
|
id: Scalars['ID']['input'];
|
|
14699
14890
|
};
|
|
14891
|
+
export type GraphStoreSprintRetrospectiveWhiteboardInverseRelationshipArgs = {
|
|
14892
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
14893
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14894
|
+
id: Scalars['ID']['input'];
|
|
14895
|
+
};
|
|
14896
|
+
export type GraphStoreSprintRetrospectiveWhiteboardRelationshipArgs = {
|
|
14897
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
14898
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14899
|
+
id: Scalars['ID']['input'];
|
|
14900
|
+
};
|
|
14700
14901
|
export type GraphStoreTeamWorksOnProjectInverseRelationshipArgs = {
|
|
14701
14902
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
14702
14903
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -14707,6 +14908,56 @@ export type GraphStoreTeamWorksOnProjectRelationshipArgs = {
|
|
|
14707
14908
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14708
14909
|
id: Scalars['ID']['input'];
|
|
14709
14910
|
};
|
|
14911
|
+
export type GraphStoreTestPerfhammerMaterializationAInverseRelationshipArgs = {
|
|
14912
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
14913
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14914
|
+
id: Scalars['ID']['input'];
|
|
14915
|
+
};
|
|
14916
|
+
export type GraphStoreTestPerfhammerMaterializationARelationshipArgs = {
|
|
14917
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
14918
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14919
|
+
id: Scalars['ID']['input'];
|
|
14920
|
+
};
|
|
14921
|
+
export type GraphStoreTestPerfhammerMaterializationBInverseRelationshipArgs = {
|
|
14922
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
14923
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14924
|
+
id: Scalars['ID']['input'];
|
|
14925
|
+
};
|
|
14926
|
+
export type GraphStoreTestPerfhammerMaterializationBRelationshipArgs = {
|
|
14927
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
14928
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14929
|
+
id: Scalars['ID']['input'];
|
|
14930
|
+
};
|
|
14931
|
+
export type GraphStoreTestPerfhammerMaterializationInverseRelationshipArgs = {
|
|
14932
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
14933
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14934
|
+
id: Scalars['ID']['input'];
|
|
14935
|
+
};
|
|
14936
|
+
export type GraphStoreTestPerfhammerMaterializationRelationshipArgs = {
|
|
14937
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
14938
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14939
|
+
id: Scalars['ID']['input'];
|
|
14940
|
+
};
|
|
14941
|
+
export type GraphStoreTestPerfhammerRelationshipBatchArgs = {
|
|
14942
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
14943
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14944
|
+
ids: Array<Scalars['ID']['input']>;
|
|
14945
|
+
};
|
|
14946
|
+
export type GraphStoreTestPerfhammerRelationshipInverseBatchArgs = {
|
|
14947
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
14948
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14949
|
+
ids: Array<Scalars['ID']['input']>;
|
|
14950
|
+
};
|
|
14951
|
+
export type GraphStoreTestPerfhammerRelationshipInverseRelationshipArgs = {
|
|
14952
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
14953
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14954
|
+
id: Scalars['ID']['input'];
|
|
14955
|
+
};
|
|
14956
|
+
export type GraphStoreTestPerfhammerRelationshipRelationshipArgs = {
|
|
14957
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
14958
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14959
|
+
id: Scalars['ID']['input'];
|
|
14960
|
+
};
|
|
14710
14961
|
export type GraphStoreUserIsInTeamInverseRelationshipArgs = {
|
|
14711
14962
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
14712
14963
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -14807,6 +15058,14 @@ export type GraphStoreVulnerabilityAssociatedIssueRelationshipArgs = {
|
|
|
14807
15058
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14808
15059
|
id: Scalars['ID']['input'];
|
|
14809
15060
|
};
|
|
15061
|
+
export type GraphStoreAriFilterInput = {
|
|
15062
|
+
is?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
15063
|
+
isNot?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
15064
|
+
};
|
|
15065
|
+
export type GraphStoreAtiFilterInput = {
|
|
15066
|
+
is?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
15067
|
+
isNot?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
15068
|
+
};
|
|
14810
15069
|
export type GraphStoreBatchIncidentAssociatedPostIncidentReviewLinkConnection = HasPageInfo & {
|
|
14811
15070
|
__typename?: 'GraphStoreBatchIncidentAssociatedPostIncidentReviewLinkConnection';
|
|
14812
15071
|
edges: Array<Maybe<GraphStoreBatchIncidentAssociatedPostIncidentReviewLinkEdge>>;
|
|
@@ -14918,6 +15177,43 @@ export type GraphStoreBatchIncidentLinkedJswIssueStartNode = Node & {
|
|
|
14918
15177
|
__typename?: 'GraphStoreBatchIncidentLinkedJswIssueStartNode';
|
|
14919
15178
|
id: Scalars['ID']['output'];
|
|
14920
15179
|
};
|
|
15180
|
+
export type GraphStoreBatchJsmProjectAssociatedServiceConnection = HasPageInfo & {
|
|
15181
|
+
__typename?: 'GraphStoreBatchJsmProjectAssociatedServiceConnection';
|
|
15182
|
+
edges: Array<Maybe<GraphStoreBatchJsmProjectAssociatedServiceEdge>>;
|
|
15183
|
+
nodes: Array<Maybe<GraphStoreBatchJsmProjectAssociatedServiceNode>>;
|
|
15184
|
+
pageInfo: PageInfo;
|
|
15185
|
+
};
|
|
15186
|
+
export type GraphStoreBatchJsmProjectAssociatedServiceEdge = {
|
|
15187
|
+
__typename?: 'GraphStoreBatchJsmProjectAssociatedServiceEdge';
|
|
15188
|
+
node: GraphStoreBatchJsmProjectAssociatedServiceInnerConnection;
|
|
15189
|
+
};
|
|
15190
|
+
export type GraphStoreBatchJsmProjectAssociatedServiceEndNode = Node & {
|
|
15191
|
+
__typename?: 'GraphStoreBatchJsmProjectAssociatedServiceEndNode';
|
|
15192
|
+
id: Scalars['ID']['output'];
|
|
15193
|
+
};
|
|
15194
|
+
export type GraphStoreBatchJsmProjectAssociatedServiceInnerConnection = {
|
|
15195
|
+
__typename?: 'GraphStoreBatchJsmProjectAssociatedServiceInnerConnection';
|
|
15196
|
+
edges: Array<Maybe<GraphStoreBatchJsmProjectAssociatedServiceInnerEdge>>;
|
|
15197
|
+
nodes: Array<Maybe<GraphStoreBatchJsmProjectAssociatedServiceNode>>;
|
|
15198
|
+
requestedId: Scalars['ID']['output'];
|
|
15199
|
+
};
|
|
15200
|
+
export type GraphStoreBatchJsmProjectAssociatedServiceInnerEdge = {
|
|
15201
|
+
__typename?: 'GraphStoreBatchJsmProjectAssociatedServiceInnerEdge';
|
|
15202
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
15203
|
+
node: GraphStoreBatchJsmProjectAssociatedServiceNode;
|
|
15204
|
+
};
|
|
15205
|
+
export type GraphStoreBatchJsmProjectAssociatedServiceNode = Node & {
|
|
15206
|
+
__typename?: 'GraphStoreBatchJsmProjectAssociatedServiceNode';
|
|
15207
|
+
createdAt: Scalars['DateTime']['output'];
|
|
15208
|
+
from: GraphStoreBatchJsmProjectAssociatedServiceStartNode;
|
|
15209
|
+
id: Scalars['ID']['output'];
|
|
15210
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
15211
|
+
to: GraphStoreBatchJsmProjectAssociatedServiceEndNode;
|
|
15212
|
+
};
|
|
15213
|
+
export type GraphStoreBatchJsmProjectAssociatedServiceStartNode = Node & {
|
|
15214
|
+
__typename?: 'GraphStoreBatchJsmProjectAssociatedServiceStartNode';
|
|
15215
|
+
id: Scalars['ID']['output'];
|
|
15216
|
+
};
|
|
14921
15217
|
export type GraphStoreBatchSecurityContainerAssociatedToVulnerabilityConnection = HasPageInfo & {
|
|
14922
15218
|
__typename?: 'GraphStoreBatchSecurityContainerAssociatedToVulnerabilityConnection';
|
|
14923
15219
|
edges: Array<Maybe<GraphStoreBatchSecurityContainerAssociatedToVulnerabilityEdge>>;
|
|
@@ -14955,81 +15251,537 @@ export type GraphStoreBatchSecurityContainerAssociatedToVulnerabilityStartNode =
|
|
|
14955
15251
|
__typename?: 'GraphStoreBatchSecurityContainerAssociatedToVulnerabilityStartNode';
|
|
14956
15252
|
id: Scalars['ID']['output'];
|
|
14957
15253
|
};
|
|
15254
|
+
export type GraphStoreBatchTestPerfhammerRelationshipConnection = HasPageInfo & {
|
|
15255
|
+
__typename?: 'GraphStoreBatchTestPerfhammerRelationshipConnection';
|
|
15256
|
+
edges: Array<Maybe<GraphStoreBatchTestPerfhammerRelationshipEdge>>;
|
|
15257
|
+
nodes: Array<Maybe<GraphStoreBatchTestPerfhammerRelationshipNode>>;
|
|
15258
|
+
pageInfo: PageInfo;
|
|
15259
|
+
};
|
|
15260
|
+
export type GraphStoreBatchTestPerfhammerRelationshipEdge = {
|
|
15261
|
+
__typename?: 'GraphStoreBatchTestPerfhammerRelationshipEdge';
|
|
15262
|
+
node: GraphStoreBatchTestPerfhammerRelationshipInnerConnection;
|
|
15263
|
+
};
|
|
15264
|
+
export type GraphStoreBatchTestPerfhammerRelationshipEndNode = Node & {
|
|
15265
|
+
__typename?: 'GraphStoreBatchTestPerfhammerRelationshipEndNode';
|
|
15266
|
+
id: Scalars['ID']['output'];
|
|
15267
|
+
};
|
|
15268
|
+
export type GraphStoreBatchTestPerfhammerRelationshipInnerConnection = {
|
|
15269
|
+
__typename?: 'GraphStoreBatchTestPerfhammerRelationshipInnerConnection';
|
|
15270
|
+
edges: Array<Maybe<GraphStoreBatchTestPerfhammerRelationshipInnerEdge>>;
|
|
15271
|
+
nodes: Array<Maybe<GraphStoreBatchTestPerfhammerRelationshipNode>>;
|
|
15272
|
+
requestedId: Scalars['ID']['output'];
|
|
15273
|
+
};
|
|
15274
|
+
export type GraphStoreBatchTestPerfhammerRelationshipInnerEdge = {
|
|
15275
|
+
__typename?: 'GraphStoreBatchTestPerfhammerRelationshipInnerEdge';
|
|
15276
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
15277
|
+
node: GraphStoreBatchTestPerfhammerRelationshipNode;
|
|
15278
|
+
};
|
|
15279
|
+
export type GraphStoreBatchTestPerfhammerRelationshipNode = Node & {
|
|
15280
|
+
__typename?: 'GraphStoreBatchTestPerfhammerRelationshipNode';
|
|
15281
|
+
createdAt: Scalars['DateTime']['output'];
|
|
15282
|
+
from: GraphStoreBatchTestPerfhammerRelationshipStartNode;
|
|
15283
|
+
id: Scalars['ID']['output'];
|
|
15284
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
15285
|
+
to: GraphStoreBatchTestPerfhammerRelationshipEndNode;
|
|
15286
|
+
};
|
|
15287
|
+
export type GraphStoreBatchTestPerfhammerRelationshipStartNode = Node & {
|
|
15288
|
+
__typename?: 'GraphStoreBatchTestPerfhammerRelationshipStartNode';
|
|
15289
|
+
id: Scalars['ID']['output'];
|
|
15290
|
+
};
|
|
15291
|
+
export type GraphStoreBooleanFilterInput = {
|
|
15292
|
+
is?: InputMaybe<Scalars['Boolean']['input']>;
|
|
15293
|
+
};
|
|
15294
|
+
export type GraphStoreCreateIncidentAssociatedPostIncidentReviewLinkInput = {
|
|
15295
|
+
relationships: Array<GraphStoreCreateIncidentAssociatedPostIncidentReviewLinkRelationshipInput>;
|
|
15296
|
+
};
|
|
14958
15297
|
export type GraphStoreCreateIncidentAssociatedPostIncidentReviewLinkPayload = Payload & {
|
|
14959
15298
|
__typename?: 'GraphStoreCreateIncidentAssociatedPostIncidentReviewLinkPayload';
|
|
14960
15299
|
errors?: Maybe<Array<MutationError>>;
|
|
14961
15300
|
success: Scalars['Boolean']['output'];
|
|
14962
15301
|
};
|
|
15302
|
+
export type GraphStoreCreateIncidentAssociatedPostIncidentReviewLinkRelationshipInput = {
|
|
15303
|
+
from: Scalars['ID']['input'];
|
|
15304
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
15305
|
+
to: Scalars['ID']['input'];
|
|
15306
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
15307
|
+
};
|
|
15308
|
+
export type GraphStoreCreateIncidentHasActionItemInput = {
|
|
15309
|
+
relationships: Array<GraphStoreCreateIncidentHasActionItemRelationshipInput>;
|
|
15310
|
+
};
|
|
14963
15311
|
export type GraphStoreCreateIncidentHasActionItemPayload = Payload & {
|
|
14964
15312
|
__typename?: 'GraphStoreCreateIncidentHasActionItemPayload';
|
|
14965
15313
|
errors?: Maybe<Array<MutationError>>;
|
|
14966
15314
|
success: Scalars['Boolean']['output'];
|
|
14967
15315
|
};
|
|
15316
|
+
export type GraphStoreCreateIncidentHasActionItemRelationshipInput = {
|
|
15317
|
+
from: Scalars['ID']['input'];
|
|
15318
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
15319
|
+
to: Scalars['ID']['input'];
|
|
15320
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
15321
|
+
};
|
|
15322
|
+
export type GraphStoreCreateIncidentLinkedJswIssueInput = {
|
|
15323
|
+
relationships: Array<GraphStoreCreateIncidentLinkedJswIssueRelationshipInput>;
|
|
15324
|
+
};
|
|
14968
15325
|
export type GraphStoreCreateIncidentLinkedJswIssuePayload = Payload & {
|
|
14969
15326
|
__typename?: 'GraphStoreCreateIncidentLinkedJswIssuePayload';
|
|
14970
15327
|
errors?: Maybe<Array<MutationError>>;
|
|
14971
15328
|
success: Scalars['Boolean']['output'];
|
|
14972
15329
|
};
|
|
15330
|
+
export type GraphStoreCreateIncidentLinkedJswIssueRelationshipInput = {
|
|
15331
|
+
from: Scalars['ID']['input'];
|
|
15332
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
15333
|
+
to: Scalars['ID']['input'];
|
|
15334
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
15335
|
+
};
|
|
15336
|
+
export type GraphStoreCreateJswProjectAssociatedComponentInput = {
|
|
15337
|
+
relationships: Array<GraphStoreCreateJswProjectAssociatedComponentRelationshipInput>;
|
|
15338
|
+
};
|
|
14973
15339
|
export type GraphStoreCreateJswProjectAssociatedComponentPayload = Payload & {
|
|
14974
15340
|
__typename?: 'GraphStoreCreateJswProjectAssociatedComponentPayload';
|
|
14975
15341
|
errors?: Maybe<Array<MutationError>>;
|
|
14976
15342
|
success: Scalars['Boolean']['output'];
|
|
14977
15343
|
};
|
|
15344
|
+
export type GraphStoreCreateJswProjectAssociatedComponentRelationshipInput = {
|
|
15345
|
+
from: Scalars['ID']['input'];
|
|
15346
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
15347
|
+
to: Scalars['ID']['input'];
|
|
15348
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
15349
|
+
};
|
|
15350
|
+
export type GraphStoreCreateProjectAssociatedOpsgenieTeamInput = {
|
|
15351
|
+
relationships: Array<GraphStoreCreateProjectAssociatedOpsgenieTeamRelationshipInput>;
|
|
15352
|
+
};
|
|
14978
15353
|
export type GraphStoreCreateProjectAssociatedOpsgenieTeamPayload = Payload & {
|
|
14979
15354
|
__typename?: 'GraphStoreCreateProjectAssociatedOpsgenieTeamPayload';
|
|
14980
15355
|
errors?: Maybe<Array<MutationError>>;
|
|
14981
15356
|
success: Scalars['Boolean']['output'];
|
|
14982
15357
|
};
|
|
15358
|
+
export type GraphStoreCreateProjectAssociatedOpsgenieTeamRelationshipInput = {
|
|
15359
|
+
from: Scalars['ID']['input'];
|
|
15360
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
15361
|
+
to: Scalars['ID']['input'];
|
|
15362
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
15363
|
+
};
|
|
15364
|
+
export type GraphStoreCreateProjectAssociatedToSecurityContainerInput = {
|
|
15365
|
+
relationships: Array<GraphStoreCreateProjectAssociatedToSecurityContainerRelationshipInput>;
|
|
15366
|
+
};
|
|
14983
15367
|
export type GraphStoreCreateProjectAssociatedToSecurityContainerPayload = Payload & {
|
|
14984
15368
|
__typename?: 'GraphStoreCreateProjectAssociatedToSecurityContainerPayload';
|
|
14985
15369
|
errors?: Maybe<Array<MutationError>>;
|
|
14986
15370
|
success: Scalars['Boolean']['output'];
|
|
14987
15371
|
};
|
|
15372
|
+
export type GraphStoreCreateProjectAssociatedToSecurityContainerRelationshipInput = {
|
|
15373
|
+
from: Scalars['ID']['input'];
|
|
15374
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
15375
|
+
to: Scalars['ID']['input'];
|
|
15376
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
15377
|
+
};
|
|
15378
|
+
export type GraphStoreCreateProjectDisassociatedRepoInput = {
|
|
15379
|
+
relationships: Array<GraphStoreCreateProjectDisassociatedRepoRelationshipInput>;
|
|
15380
|
+
};
|
|
14988
15381
|
export type GraphStoreCreateProjectDisassociatedRepoPayload = Payload & {
|
|
14989
15382
|
__typename?: 'GraphStoreCreateProjectDisassociatedRepoPayload';
|
|
14990
15383
|
errors?: Maybe<Array<MutationError>>;
|
|
14991
15384
|
success: Scalars['Boolean']['output'];
|
|
14992
15385
|
};
|
|
15386
|
+
export type GraphStoreCreateProjectDisassociatedRepoRelationshipInput = {
|
|
15387
|
+
from: Scalars['ID']['input'];
|
|
15388
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
15389
|
+
to: Scalars['ID']['input'];
|
|
15390
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
15391
|
+
};
|
|
15392
|
+
export type GraphStoreCreateProjectDocumentationEntityInput = {
|
|
15393
|
+
relationships: Array<GraphStoreCreateProjectDocumentationEntityRelationshipInput>;
|
|
15394
|
+
};
|
|
14993
15395
|
export type GraphStoreCreateProjectDocumentationEntityPayload = Payload & {
|
|
14994
15396
|
__typename?: 'GraphStoreCreateProjectDocumentationEntityPayload';
|
|
14995
15397
|
errors?: Maybe<Array<MutationError>>;
|
|
14996
15398
|
success: Scalars['Boolean']['output'];
|
|
14997
15399
|
};
|
|
15400
|
+
export type GraphStoreCreateProjectDocumentationEntityRelationshipInput = {
|
|
15401
|
+
from: Scalars['ID']['input'];
|
|
15402
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
15403
|
+
to: Scalars['ID']['input'];
|
|
15404
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
15405
|
+
};
|
|
15406
|
+
export type GraphStoreCreateProjectDocumentationPageInput = {
|
|
15407
|
+
relationships: Array<GraphStoreCreateProjectDocumentationPageRelationshipInput>;
|
|
15408
|
+
};
|
|
14998
15409
|
export type GraphStoreCreateProjectDocumentationPagePayload = Payload & {
|
|
14999
15410
|
__typename?: 'GraphStoreCreateProjectDocumentationPagePayload';
|
|
15000
15411
|
errors?: Maybe<Array<MutationError>>;
|
|
15001
15412
|
success: Scalars['Boolean']['output'];
|
|
15002
15413
|
};
|
|
15414
|
+
export type GraphStoreCreateProjectDocumentationPageRelationshipInput = {
|
|
15415
|
+
from: Scalars['ID']['input'];
|
|
15416
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
15417
|
+
to: Scalars['ID']['input'];
|
|
15418
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
15419
|
+
};
|
|
15420
|
+
export type GraphStoreCreateProjectDocumentationSpaceInput = {
|
|
15421
|
+
relationships: Array<GraphStoreCreateProjectDocumentationSpaceRelationshipInput>;
|
|
15422
|
+
};
|
|
15003
15423
|
export type GraphStoreCreateProjectDocumentationSpacePayload = Payload & {
|
|
15004
15424
|
__typename?: 'GraphStoreCreateProjectDocumentationSpacePayload';
|
|
15005
15425
|
errors?: Maybe<Array<MutationError>>;
|
|
15006
15426
|
success: Scalars['Boolean']['output'];
|
|
15007
15427
|
};
|
|
15428
|
+
export type GraphStoreCreateProjectDocumentationSpaceRelationshipInput = {
|
|
15429
|
+
from: Scalars['ID']['input'];
|
|
15430
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
15431
|
+
to: Scalars['ID']['input'];
|
|
15432
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
15433
|
+
};
|
|
15434
|
+
export type GraphStoreCreateProjectHasSharedVersionWithInput = {
|
|
15435
|
+
relationships: Array<GraphStoreCreateProjectHasSharedVersionWithRelationshipInput>;
|
|
15436
|
+
};
|
|
15008
15437
|
export type GraphStoreCreateProjectHasSharedVersionWithPayload = Payload & {
|
|
15009
15438
|
__typename?: 'GraphStoreCreateProjectHasSharedVersionWithPayload';
|
|
15010
15439
|
errors?: Maybe<Array<MutationError>>;
|
|
15011
15440
|
success: Scalars['Boolean']['output'];
|
|
15012
15441
|
};
|
|
15442
|
+
export type GraphStoreCreateProjectHasSharedVersionWithRelationshipInput = {
|
|
15443
|
+
from: Scalars['ID']['input'];
|
|
15444
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
15445
|
+
to: Scalars['ID']['input'];
|
|
15446
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
15447
|
+
};
|
|
15448
|
+
export type GraphStoreCreateProjectHasVersionInput = {
|
|
15449
|
+
relationships: Array<GraphStoreCreateProjectHasVersionRelationshipInput>;
|
|
15450
|
+
};
|
|
15013
15451
|
export type GraphStoreCreateProjectHasVersionPayload = Payload & {
|
|
15014
15452
|
__typename?: 'GraphStoreCreateProjectHasVersionPayload';
|
|
15015
15453
|
errors?: Maybe<Array<MutationError>>;
|
|
15016
15454
|
success: Scalars['Boolean']['output'];
|
|
15017
15455
|
};
|
|
15456
|
+
export type GraphStoreCreateProjectHasVersionRelationshipInput = {
|
|
15457
|
+
from: Scalars['ID']['input'];
|
|
15458
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
15459
|
+
to: Scalars['ID']['input'];
|
|
15460
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
15461
|
+
};
|
|
15462
|
+
export type GraphStoreCreateSprintRetrospectivePageInput = {
|
|
15463
|
+
relationships: Array<GraphStoreCreateSprintRetrospectivePageRelationshipInput>;
|
|
15464
|
+
};
|
|
15018
15465
|
export type GraphStoreCreateSprintRetrospectivePagePayload = Payload & {
|
|
15019
15466
|
__typename?: 'GraphStoreCreateSprintRetrospectivePagePayload';
|
|
15020
15467
|
errors?: Maybe<Array<MutationError>>;
|
|
15021
15468
|
success: Scalars['Boolean']['output'];
|
|
15022
15469
|
};
|
|
15470
|
+
export type GraphStoreCreateSprintRetrospectivePageRelationshipInput = {
|
|
15471
|
+
from: Scalars['ID']['input'];
|
|
15472
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
15473
|
+
to: Scalars['ID']['input'];
|
|
15474
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
15475
|
+
};
|
|
15476
|
+
export type GraphStoreCreateSprintRetrospectiveWhiteboardInput = {
|
|
15477
|
+
relationships: Array<GraphStoreCreateSprintRetrospectiveWhiteboardRelationshipInput>;
|
|
15478
|
+
};
|
|
15479
|
+
export type GraphStoreCreateSprintRetrospectiveWhiteboardPayload = Payload & {
|
|
15480
|
+
__typename?: 'GraphStoreCreateSprintRetrospectiveWhiteboardPayload';
|
|
15481
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15482
|
+
success: Scalars['Boolean']['output'];
|
|
15483
|
+
};
|
|
15484
|
+
export type GraphStoreCreateSprintRetrospectiveWhiteboardRelationshipInput = {
|
|
15485
|
+
from: Scalars['ID']['input'];
|
|
15486
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
15487
|
+
to: Scalars['ID']['input'];
|
|
15488
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
15489
|
+
};
|
|
15490
|
+
export type GraphStoreCreateTestPerfhammerRelationshipInput = {
|
|
15491
|
+
relationships: Array<GraphStoreCreateTestPerfhammerRelationshipRelationshipInput>;
|
|
15492
|
+
};
|
|
15493
|
+
export type GraphStoreCreateTestPerfhammerRelationshipPayload = Payload & {
|
|
15494
|
+
__typename?: 'GraphStoreCreateTestPerfhammerRelationshipPayload';
|
|
15495
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15496
|
+
success: Scalars['Boolean']['output'];
|
|
15497
|
+
};
|
|
15498
|
+
export type GraphStoreCreateTestPerfhammerRelationshipRelationshipInput = {
|
|
15499
|
+
from: Scalars['ID']['input'];
|
|
15500
|
+
relationshipMetadata?: InputMaybe<GraphStoreCreateTestPerfhammerRelationshipRelationshipMetadataInput>;
|
|
15501
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
15502
|
+
to: Scalars['ID']['input'];
|
|
15503
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
15504
|
+
};
|
|
15505
|
+
export type GraphStoreCreateTestPerfhammerRelationshipRelationshipMetadataInput = {
|
|
15506
|
+
replicatedNumber?: InputMaybe<Scalars['Int']['input']>;
|
|
15507
|
+
sequentialNumber?: InputMaybe<Scalars['Int']['input']>;
|
|
15508
|
+
};
|
|
15509
|
+
export type GraphStoreCreateVersionUserAssociatedFeatureFlagInput = {
|
|
15510
|
+
relationships: Array<GraphStoreCreateVersionUserAssociatedFeatureFlagRelationshipInput>;
|
|
15511
|
+
};
|
|
15023
15512
|
export type GraphStoreCreateVersionUserAssociatedFeatureFlagPayload = Payload & {
|
|
15024
15513
|
__typename?: 'GraphStoreCreateVersionUserAssociatedFeatureFlagPayload';
|
|
15025
15514
|
errors?: Maybe<Array<MutationError>>;
|
|
15026
15515
|
success: Scalars['Boolean']['output'];
|
|
15027
15516
|
};
|
|
15517
|
+
export type GraphStoreCreateVersionUserAssociatedFeatureFlagRelationshipInput = {
|
|
15518
|
+
from: Scalars['ID']['input'];
|
|
15519
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
15520
|
+
to: Scalars['ID']['input'];
|
|
15521
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
15522
|
+
};
|
|
15523
|
+
export type GraphStoreCreateVulnerabilityAssociatedIssueContainerInput = {
|
|
15524
|
+
containerAri?: InputMaybe<Scalars['String']['input']>;
|
|
15525
|
+
};
|
|
15526
|
+
export type GraphStoreCreateVulnerabilityAssociatedIssueInput = {
|
|
15527
|
+
relationships: Array<GraphStoreCreateVulnerabilityAssociatedIssueRelationshipInput>;
|
|
15528
|
+
};
|
|
15028
15529
|
export type GraphStoreCreateVulnerabilityAssociatedIssuePayload = Payload & {
|
|
15029
15530
|
__typename?: 'GraphStoreCreateVulnerabilityAssociatedIssuePayload';
|
|
15030
15531
|
errors?: Maybe<Array<MutationError>>;
|
|
15031
15532
|
success: Scalars['Boolean']['output'];
|
|
15032
15533
|
};
|
|
15534
|
+
export type GraphStoreCreateVulnerabilityAssociatedIssueRelationshipInput = {
|
|
15535
|
+
from: Scalars['ID']['input'];
|
|
15536
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
15537
|
+
subjectMetadata?: InputMaybe<GraphStoreCreateVulnerabilityAssociatedIssueRelationshipSubjectMetadataInput>;
|
|
15538
|
+
to: Scalars['ID']['input'];
|
|
15539
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
15540
|
+
};
|
|
15541
|
+
export type GraphStoreCreateVulnerabilityAssociatedIssueRelationshipSubjectMetadataInput = {
|
|
15542
|
+
container?: InputMaybe<GraphStoreCreateVulnerabilityAssociatedIssueContainerInput>;
|
|
15543
|
+
severity?: InputMaybe<GraphStoreCreateVulnerabilityAssociatedIssueVulnerabilitySeverityInput>;
|
|
15544
|
+
status?: InputMaybe<GraphStoreCreateVulnerabilityAssociatedIssueVulnerabilityStatusInput>;
|
|
15545
|
+
type?: InputMaybe<GraphStoreCreateVulnerabilityAssociatedIssueVulnerabilityTypeInput>;
|
|
15546
|
+
};
|
|
15547
|
+
export declare enum GraphStoreCreateVulnerabilityAssociatedIssueVulnerabilitySeverityInput {
|
|
15548
|
+
Critical = "CRITICAL",
|
|
15549
|
+
High = "HIGH",
|
|
15550
|
+
Low = "LOW",
|
|
15551
|
+
Medium = "MEDIUM",
|
|
15552
|
+
NotSet = "NOT_SET",
|
|
15553
|
+
Unknown = "UNKNOWN"
|
|
15554
|
+
}
|
|
15555
|
+
export declare enum GraphStoreCreateVulnerabilityAssociatedIssueVulnerabilityStatusInput {
|
|
15556
|
+
Closed = "CLOSED",
|
|
15557
|
+
Ignored = "IGNORED",
|
|
15558
|
+
NotSet = "NOT_SET",
|
|
15559
|
+
Open = "OPEN",
|
|
15560
|
+
Unknown = "UNKNOWN"
|
|
15561
|
+
}
|
|
15562
|
+
export declare enum GraphStoreCreateVulnerabilityAssociatedIssueVulnerabilityTypeInput {
|
|
15563
|
+
Dast = "DAST",
|
|
15564
|
+
NotSet = "NOT_SET",
|
|
15565
|
+
Sast = "SAST",
|
|
15566
|
+
Sca = "SCA",
|
|
15567
|
+
Unknown = "UNKNOWN"
|
|
15568
|
+
}
|
|
15569
|
+
export type GraphStoreDateFilterInput = {
|
|
15570
|
+
after?: InputMaybe<Scalars['DateTime']['input']>;
|
|
15571
|
+
before?: InputMaybe<Scalars['DateTime']['input']>;
|
|
15572
|
+
};
|
|
15573
|
+
export type GraphStoreDeleteIncidentAssociatedPostIncidentReviewLinkInput = {
|
|
15574
|
+
relationships: Array<GraphStoreDeleteIncidentAssociatedPostIncidentReviewLinkRelationshipInput>;
|
|
15575
|
+
};
|
|
15576
|
+
export type GraphStoreDeleteIncidentAssociatedPostIncidentReviewLinkPayload = Payload & {
|
|
15577
|
+
__typename?: 'GraphStoreDeleteIncidentAssociatedPostIncidentReviewLinkPayload';
|
|
15578
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15579
|
+
success: Scalars['Boolean']['output'];
|
|
15580
|
+
};
|
|
15581
|
+
export type GraphStoreDeleteIncidentAssociatedPostIncidentReviewLinkRelationshipInput = {
|
|
15582
|
+
from: Scalars['ID']['input'];
|
|
15583
|
+
to: Scalars['ID']['input'];
|
|
15584
|
+
};
|
|
15585
|
+
export type GraphStoreDeleteIncidentHasActionItemInput = {
|
|
15586
|
+
relationships: Array<GraphStoreDeleteIncidentHasActionItemRelationshipInput>;
|
|
15587
|
+
};
|
|
15588
|
+
export type GraphStoreDeleteIncidentHasActionItemPayload = Payload & {
|
|
15589
|
+
__typename?: 'GraphStoreDeleteIncidentHasActionItemPayload';
|
|
15590
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15591
|
+
success: Scalars['Boolean']['output'];
|
|
15592
|
+
};
|
|
15593
|
+
export type GraphStoreDeleteIncidentHasActionItemRelationshipInput = {
|
|
15594
|
+
from: Scalars['ID']['input'];
|
|
15595
|
+
to: Scalars['ID']['input'];
|
|
15596
|
+
};
|
|
15597
|
+
export type GraphStoreDeleteIncidentLinkedJswIssueInput = {
|
|
15598
|
+
relationships: Array<GraphStoreDeleteIncidentLinkedJswIssueRelationshipInput>;
|
|
15599
|
+
};
|
|
15600
|
+
export type GraphStoreDeleteIncidentLinkedJswIssuePayload = Payload & {
|
|
15601
|
+
__typename?: 'GraphStoreDeleteIncidentLinkedJswIssuePayload';
|
|
15602
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15603
|
+
success: Scalars['Boolean']['output'];
|
|
15604
|
+
};
|
|
15605
|
+
export type GraphStoreDeleteIncidentLinkedJswIssueRelationshipInput = {
|
|
15606
|
+
from: Scalars['ID']['input'];
|
|
15607
|
+
to: Scalars['ID']['input'];
|
|
15608
|
+
};
|
|
15609
|
+
export type GraphStoreDeleteJswProjectAssociatedComponentInput = {
|
|
15610
|
+
relationships: Array<GraphStoreDeleteJswProjectAssociatedComponentRelationshipInput>;
|
|
15611
|
+
};
|
|
15612
|
+
export type GraphStoreDeleteJswProjectAssociatedComponentPayload = Payload & {
|
|
15613
|
+
__typename?: 'GraphStoreDeleteJswProjectAssociatedComponentPayload';
|
|
15614
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15615
|
+
success: Scalars['Boolean']['output'];
|
|
15616
|
+
};
|
|
15617
|
+
export type GraphStoreDeleteJswProjectAssociatedComponentRelationshipInput = {
|
|
15618
|
+
from: Scalars['ID']['input'];
|
|
15619
|
+
to: Scalars['ID']['input'];
|
|
15620
|
+
};
|
|
15621
|
+
export type GraphStoreDeleteProjectAssociatedOpsgenieTeamInput = {
|
|
15622
|
+
relationships: Array<GraphStoreDeleteProjectAssociatedOpsgenieTeamRelationshipInput>;
|
|
15623
|
+
};
|
|
15624
|
+
export type GraphStoreDeleteProjectAssociatedOpsgenieTeamPayload = Payload & {
|
|
15625
|
+
__typename?: 'GraphStoreDeleteProjectAssociatedOpsgenieTeamPayload';
|
|
15626
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15627
|
+
success: Scalars['Boolean']['output'];
|
|
15628
|
+
};
|
|
15629
|
+
export type GraphStoreDeleteProjectAssociatedOpsgenieTeamRelationshipInput = {
|
|
15630
|
+
from: Scalars['ID']['input'];
|
|
15631
|
+
to: Scalars['ID']['input'];
|
|
15632
|
+
};
|
|
15633
|
+
export type GraphStoreDeleteProjectAssociatedToSecurityContainerInput = {
|
|
15634
|
+
relationships: Array<GraphStoreDeleteProjectAssociatedToSecurityContainerRelationshipInput>;
|
|
15635
|
+
};
|
|
15636
|
+
export type GraphStoreDeleteProjectAssociatedToSecurityContainerPayload = Payload & {
|
|
15637
|
+
__typename?: 'GraphStoreDeleteProjectAssociatedToSecurityContainerPayload';
|
|
15638
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15639
|
+
success: Scalars['Boolean']['output'];
|
|
15640
|
+
};
|
|
15641
|
+
export type GraphStoreDeleteProjectAssociatedToSecurityContainerRelationshipInput = {
|
|
15642
|
+
from: Scalars['ID']['input'];
|
|
15643
|
+
to: Scalars['ID']['input'];
|
|
15644
|
+
};
|
|
15645
|
+
export type GraphStoreDeleteProjectDisassociatedRepoInput = {
|
|
15646
|
+
relationships: Array<GraphStoreDeleteProjectDisassociatedRepoRelationshipInput>;
|
|
15647
|
+
};
|
|
15648
|
+
export type GraphStoreDeleteProjectDisassociatedRepoPayload = Payload & {
|
|
15649
|
+
__typename?: 'GraphStoreDeleteProjectDisassociatedRepoPayload';
|
|
15650
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15651
|
+
success: Scalars['Boolean']['output'];
|
|
15652
|
+
};
|
|
15653
|
+
export type GraphStoreDeleteProjectDisassociatedRepoRelationshipInput = {
|
|
15654
|
+
from: Scalars['ID']['input'];
|
|
15655
|
+
to: Scalars['ID']['input'];
|
|
15656
|
+
};
|
|
15657
|
+
export type GraphStoreDeleteProjectDocumentationEntityInput = {
|
|
15658
|
+
relationships: Array<GraphStoreDeleteProjectDocumentationEntityRelationshipInput>;
|
|
15659
|
+
};
|
|
15660
|
+
export type GraphStoreDeleteProjectDocumentationEntityPayload = Payload & {
|
|
15661
|
+
__typename?: 'GraphStoreDeleteProjectDocumentationEntityPayload';
|
|
15662
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15663
|
+
success: Scalars['Boolean']['output'];
|
|
15664
|
+
};
|
|
15665
|
+
export type GraphStoreDeleteProjectDocumentationEntityRelationshipInput = {
|
|
15666
|
+
from: Scalars['ID']['input'];
|
|
15667
|
+
to: Scalars['ID']['input'];
|
|
15668
|
+
};
|
|
15669
|
+
export type GraphStoreDeleteProjectDocumentationPageInput = {
|
|
15670
|
+
relationships: Array<GraphStoreDeleteProjectDocumentationPageRelationshipInput>;
|
|
15671
|
+
};
|
|
15672
|
+
export type GraphStoreDeleteProjectDocumentationPagePayload = Payload & {
|
|
15673
|
+
__typename?: 'GraphStoreDeleteProjectDocumentationPagePayload';
|
|
15674
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15675
|
+
success: Scalars['Boolean']['output'];
|
|
15676
|
+
};
|
|
15677
|
+
export type GraphStoreDeleteProjectDocumentationPageRelationshipInput = {
|
|
15678
|
+
from: Scalars['ID']['input'];
|
|
15679
|
+
to: Scalars['ID']['input'];
|
|
15680
|
+
};
|
|
15681
|
+
export type GraphStoreDeleteProjectDocumentationSpaceInput = {
|
|
15682
|
+
relationships: Array<GraphStoreDeleteProjectDocumentationSpaceRelationshipInput>;
|
|
15683
|
+
};
|
|
15684
|
+
export type GraphStoreDeleteProjectDocumentationSpacePayload = Payload & {
|
|
15685
|
+
__typename?: 'GraphStoreDeleteProjectDocumentationSpacePayload';
|
|
15686
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15687
|
+
success: Scalars['Boolean']['output'];
|
|
15688
|
+
};
|
|
15689
|
+
export type GraphStoreDeleteProjectDocumentationSpaceRelationshipInput = {
|
|
15690
|
+
from: Scalars['ID']['input'];
|
|
15691
|
+
to: Scalars['ID']['input'];
|
|
15692
|
+
};
|
|
15693
|
+
export type GraphStoreDeleteProjectHasSharedVersionWithInput = {
|
|
15694
|
+
relationships: Array<GraphStoreDeleteProjectHasSharedVersionWithRelationshipInput>;
|
|
15695
|
+
};
|
|
15696
|
+
export type GraphStoreDeleteProjectHasSharedVersionWithPayload = Payload & {
|
|
15697
|
+
__typename?: 'GraphStoreDeleteProjectHasSharedVersionWithPayload';
|
|
15698
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15699
|
+
success: Scalars['Boolean']['output'];
|
|
15700
|
+
};
|
|
15701
|
+
export type GraphStoreDeleteProjectHasSharedVersionWithRelationshipInput = {
|
|
15702
|
+
from: Scalars['ID']['input'];
|
|
15703
|
+
to: Scalars['ID']['input'];
|
|
15704
|
+
};
|
|
15705
|
+
export type GraphStoreDeleteProjectHasVersionInput = {
|
|
15706
|
+
relationships: Array<GraphStoreDeleteProjectHasVersionRelationshipInput>;
|
|
15707
|
+
};
|
|
15708
|
+
export type GraphStoreDeleteProjectHasVersionPayload = Payload & {
|
|
15709
|
+
__typename?: 'GraphStoreDeleteProjectHasVersionPayload';
|
|
15710
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15711
|
+
success: Scalars['Boolean']['output'];
|
|
15712
|
+
};
|
|
15713
|
+
export type GraphStoreDeleteProjectHasVersionRelationshipInput = {
|
|
15714
|
+
from: Scalars['ID']['input'];
|
|
15715
|
+
to: Scalars['ID']['input'];
|
|
15716
|
+
};
|
|
15717
|
+
export type GraphStoreDeleteSprintRetrospectivePageInput = {
|
|
15718
|
+
relationships: Array<GraphStoreDeleteSprintRetrospectivePageRelationshipInput>;
|
|
15719
|
+
};
|
|
15720
|
+
export type GraphStoreDeleteSprintRetrospectivePagePayload = Payload & {
|
|
15721
|
+
__typename?: 'GraphStoreDeleteSprintRetrospectivePagePayload';
|
|
15722
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15723
|
+
success: Scalars['Boolean']['output'];
|
|
15724
|
+
};
|
|
15725
|
+
export type GraphStoreDeleteSprintRetrospectivePageRelationshipInput = {
|
|
15726
|
+
from: Scalars['ID']['input'];
|
|
15727
|
+
to: Scalars['ID']['input'];
|
|
15728
|
+
};
|
|
15729
|
+
export type GraphStoreDeleteSprintRetrospectiveWhiteboardInput = {
|
|
15730
|
+
relationships: Array<GraphStoreDeleteSprintRetrospectiveWhiteboardRelationshipInput>;
|
|
15731
|
+
};
|
|
15732
|
+
export type GraphStoreDeleteSprintRetrospectiveWhiteboardPayload = Payload & {
|
|
15733
|
+
__typename?: 'GraphStoreDeleteSprintRetrospectiveWhiteboardPayload';
|
|
15734
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15735
|
+
success: Scalars['Boolean']['output'];
|
|
15736
|
+
};
|
|
15737
|
+
export type GraphStoreDeleteSprintRetrospectiveWhiteboardRelationshipInput = {
|
|
15738
|
+
from: Scalars['ID']['input'];
|
|
15739
|
+
to: Scalars['ID']['input'];
|
|
15740
|
+
};
|
|
15741
|
+
export type GraphStoreDeleteTestPerfhammerRelationshipInput = {
|
|
15742
|
+
relationships: Array<GraphStoreDeleteTestPerfhammerRelationshipRelationshipInput>;
|
|
15743
|
+
};
|
|
15744
|
+
export type GraphStoreDeleteTestPerfhammerRelationshipPayload = Payload & {
|
|
15745
|
+
__typename?: 'GraphStoreDeleteTestPerfhammerRelationshipPayload';
|
|
15746
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15747
|
+
success: Scalars['Boolean']['output'];
|
|
15748
|
+
};
|
|
15749
|
+
export type GraphStoreDeleteTestPerfhammerRelationshipRelationshipInput = {
|
|
15750
|
+
from: Scalars['ID']['input'];
|
|
15751
|
+
to: Scalars['ID']['input'];
|
|
15752
|
+
};
|
|
15753
|
+
export type GraphStoreDeleteVersionUserAssociatedFeatureFlagInput = {
|
|
15754
|
+
relationships: Array<GraphStoreDeleteVersionUserAssociatedFeatureFlagRelationshipInput>;
|
|
15755
|
+
};
|
|
15756
|
+
export type GraphStoreDeleteVersionUserAssociatedFeatureFlagPayload = Payload & {
|
|
15757
|
+
__typename?: 'GraphStoreDeleteVersionUserAssociatedFeatureFlagPayload';
|
|
15758
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15759
|
+
success: Scalars['Boolean']['output'];
|
|
15760
|
+
};
|
|
15761
|
+
export type GraphStoreDeleteVersionUserAssociatedFeatureFlagRelationshipInput = {
|
|
15762
|
+
from: Scalars['ID']['input'];
|
|
15763
|
+
to: Scalars['ID']['input'];
|
|
15764
|
+
};
|
|
15765
|
+
export type GraphStoreDeleteVulnerabilityAssociatedIssueInput = {
|
|
15766
|
+
relationships: Array<GraphStoreDeleteVulnerabilityAssociatedIssueRelationshipInput>;
|
|
15767
|
+
};
|
|
15768
|
+
export type GraphStoreDeleteVulnerabilityAssociatedIssuePayload = Payload & {
|
|
15769
|
+
__typename?: 'GraphStoreDeleteVulnerabilityAssociatedIssuePayload';
|
|
15770
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15771
|
+
success: Scalars['Boolean']['output'];
|
|
15772
|
+
};
|
|
15773
|
+
export type GraphStoreDeleteVulnerabilityAssociatedIssueRelationshipInput = {
|
|
15774
|
+
from: Scalars['ID']['input'];
|
|
15775
|
+
to: Scalars['ID']['input'];
|
|
15776
|
+
};
|
|
15777
|
+
export type GraphStoreFloatFilterInput = {
|
|
15778
|
+
greaterThan?: InputMaybe<Scalars['Float']['input']>;
|
|
15779
|
+
greaterThanOrEqual?: InputMaybe<Scalars['Float']['input']>;
|
|
15780
|
+
is?: InputMaybe<Array<Scalars['Float']['input']>>;
|
|
15781
|
+
isNot?: InputMaybe<Array<Scalars['Float']['input']>>;
|
|
15782
|
+
lessThan?: InputMaybe<Scalars['Float']['input']>;
|
|
15783
|
+
lessThanOrEqual?: InputMaybe<Scalars['Float']['input']>;
|
|
15784
|
+
};
|
|
15033
15785
|
export type GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceConnection = HasPageInfo & {
|
|
15034
15786
|
__typename?: 'GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceConnection';
|
|
15035
15787
|
edges: Array<Maybe<GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceEdge>>;
|
|
@@ -15408,8 +16160,10 @@ export type GraphStoreFullIssueAssociatedDeploymentEdge = {
|
|
|
15408
16160
|
};
|
|
15409
16161
|
export type GraphStoreFullIssueAssociatedDeploymentEndNode = Node & {
|
|
15410
16162
|
__typename?: 'GraphStoreFullIssueAssociatedDeploymentEndNode';
|
|
16163
|
+
data?: Maybe<GraphStoreFullIssueAssociatedDeploymentEndUnion>;
|
|
15411
16164
|
id: Scalars['ID']['output'];
|
|
15412
16165
|
};
|
|
16166
|
+
export type GraphStoreFullIssueAssociatedDeploymentEndUnion = DeploymentSummary;
|
|
15413
16167
|
export type GraphStoreFullIssueAssociatedDeploymentNode = Node & {
|
|
15414
16168
|
__typename?: 'GraphStoreFullIssueAssociatedDeploymentNode';
|
|
15415
16169
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -16075,8 +16829,10 @@ export type GraphStoreFullProjectAssociatedDeploymentEdge = {
|
|
|
16075
16829
|
};
|
|
16076
16830
|
export type GraphStoreFullProjectAssociatedDeploymentEndNode = Node & {
|
|
16077
16831
|
__typename?: 'GraphStoreFullProjectAssociatedDeploymentEndNode';
|
|
16832
|
+
data?: Maybe<GraphStoreFullProjectAssociatedDeploymentEndUnion>;
|
|
16078
16833
|
id: Scalars['ID']['output'];
|
|
16079
16834
|
};
|
|
16835
|
+
export type GraphStoreFullProjectAssociatedDeploymentEndUnion = DeploymentSummary;
|
|
16080
16836
|
export type GraphStoreFullProjectAssociatedDeploymentNode = Node & {
|
|
16081
16837
|
__typename?: 'GraphStoreFullProjectAssociatedDeploymentNode';
|
|
16082
16838
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -16949,6 +17705,35 @@ export type GraphStoreFullSprintRetrospectivePageStartNode = Node & {
|
|
|
16949
17705
|
__typename?: 'GraphStoreFullSprintRetrospectivePageStartNode';
|
|
16950
17706
|
id: Scalars['ID']['output'];
|
|
16951
17707
|
};
|
|
17708
|
+
export type GraphStoreFullSprintRetrospectiveWhiteboardConnection = HasPageInfo & HasTotal & {
|
|
17709
|
+
__typename?: 'GraphStoreFullSprintRetrospectiveWhiteboardConnection';
|
|
17710
|
+
edges: Array<Maybe<GraphStoreFullSprintRetrospectiveWhiteboardEdge>>;
|
|
17711
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
17712
|
+
nodes: Array<Maybe<GraphStoreFullSprintRetrospectiveWhiteboardNode>>;
|
|
17713
|
+
pageInfo: PageInfo;
|
|
17714
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
17715
|
+
};
|
|
17716
|
+
export type GraphStoreFullSprintRetrospectiveWhiteboardEdge = {
|
|
17717
|
+
__typename?: 'GraphStoreFullSprintRetrospectiveWhiteboardEdge';
|
|
17718
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
17719
|
+
node: GraphStoreFullSprintRetrospectiveWhiteboardNode;
|
|
17720
|
+
};
|
|
17721
|
+
export type GraphStoreFullSprintRetrospectiveWhiteboardEndNode = Node & {
|
|
17722
|
+
__typename?: 'GraphStoreFullSprintRetrospectiveWhiteboardEndNode';
|
|
17723
|
+
id: Scalars['ID']['output'];
|
|
17724
|
+
};
|
|
17725
|
+
export type GraphStoreFullSprintRetrospectiveWhiteboardNode = Node & {
|
|
17726
|
+
__typename?: 'GraphStoreFullSprintRetrospectiveWhiteboardNode';
|
|
17727
|
+
createdAt: Scalars['DateTime']['output'];
|
|
17728
|
+
from: GraphStoreFullSprintRetrospectiveWhiteboardStartNode;
|
|
17729
|
+
id: Scalars['ID']['output'];
|
|
17730
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
17731
|
+
to: GraphStoreFullSprintRetrospectiveWhiteboardEndNode;
|
|
17732
|
+
};
|
|
17733
|
+
export type GraphStoreFullSprintRetrospectiveWhiteboardStartNode = Node & {
|
|
17734
|
+
__typename?: 'GraphStoreFullSprintRetrospectiveWhiteboardStartNode';
|
|
17735
|
+
id: Scalars['ID']['output'];
|
|
17736
|
+
};
|
|
16952
17737
|
export type GraphStoreFullTeamWorksOnProjectConnection = HasPageInfo & HasTotal & {
|
|
16953
17738
|
__typename?: 'GraphStoreFullTeamWorksOnProjectConnection';
|
|
16954
17739
|
edges: Array<Maybe<GraphStoreFullTeamWorksOnProjectEdge>>;
|
|
@@ -16978,6 +17763,120 @@ export type GraphStoreFullTeamWorksOnProjectStartNode = Node & {
|
|
|
16978
17763
|
__typename?: 'GraphStoreFullTeamWorksOnProjectStartNode';
|
|
16979
17764
|
id: Scalars['ID']['output'];
|
|
16980
17765
|
};
|
|
17766
|
+
export type GraphStoreFullTestPerfhammerMaterializationAConnection = HasPageInfo & HasTotal & {
|
|
17767
|
+
__typename?: 'GraphStoreFullTestPerfhammerMaterializationAConnection';
|
|
17768
|
+
edges: Array<Maybe<GraphStoreFullTestPerfhammerMaterializationAEdge>>;
|
|
17769
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
17770
|
+
nodes: Array<Maybe<GraphStoreFullTestPerfhammerMaterializationANode>>;
|
|
17771
|
+
pageInfo: PageInfo;
|
|
17772
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
17773
|
+
};
|
|
17774
|
+
export type GraphStoreFullTestPerfhammerMaterializationAEdge = {
|
|
17775
|
+
__typename?: 'GraphStoreFullTestPerfhammerMaterializationAEdge';
|
|
17776
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
17777
|
+
node: GraphStoreFullTestPerfhammerMaterializationANode;
|
|
17778
|
+
};
|
|
17779
|
+
export type GraphStoreFullTestPerfhammerMaterializationAEndNode = Node & {
|
|
17780
|
+
__typename?: 'GraphStoreFullTestPerfhammerMaterializationAEndNode';
|
|
17781
|
+
id: Scalars['ID']['output'];
|
|
17782
|
+
};
|
|
17783
|
+
export type GraphStoreFullTestPerfhammerMaterializationANode = Node & {
|
|
17784
|
+
__typename?: 'GraphStoreFullTestPerfhammerMaterializationANode';
|
|
17785
|
+
createdAt: Scalars['DateTime']['output'];
|
|
17786
|
+
from: GraphStoreFullTestPerfhammerMaterializationAStartNode;
|
|
17787
|
+
id: Scalars['ID']['output'];
|
|
17788
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
17789
|
+
to: GraphStoreFullTestPerfhammerMaterializationAEndNode;
|
|
17790
|
+
};
|
|
17791
|
+
export type GraphStoreFullTestPerfhammerMaterializationAStartNode = Node & {
|
|
17792
|
+
__typename?: 'GraphStoreFullTestPerfhammerMaterializationAStartNode';
|
|
17793
|
+
id: Scalars['ID']['output'];
|
|
17794
|
+
};
|
|
17795
|
+
export type GraphStoreFullTestPerfhammerMaterializationBConnection = HasPageInfo & HasTotal & {
|
|
17796
|
+
__typename?: 'GraphStoreFullTestPerfhammerMaterializationBConnection';
|
|
17797
|
+
edges: Array<Maybe<GraphStoreFullTestPerfhammerMaterializationBEdge>>;
|
|
17798
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
17799
|
+
nodes: Array<Maybe<GraphStoreFullTestPerfhammerMaterializationBNode>>;
|
|
17800
|
+
pageInfo: PageInfo;
|
|
17801
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
17802
|
+
};
|
|
17803
|
+
export type GraphStoreFullTestPerfhammerMaterializationBEdge = {
|
|
17804
|
+
__typename?: 'GraphStoreFullTestPerfhammerMaterializationBEdge';
|
|
17805
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
17806
|
+
node: GraphStoreFullTestPerfhammerMaterializationBNode;
|
|
17807
|
+
};
|
|
17808
|
+
export type GraphStoreFullTestPerfhammerMaterializationBEndNode = Node & {
|
|
17809
|
+
__typename?: 'GraphStoreFullTestPerfhammerMaterializationBEndNode';
|
|
17810
|
+
id: Scalars['ID']['output'];
|
|
17811
|
+
};
|
|
17812
|
+
export type GraphStoreFullTestPerfhammerMaterializationBNode = Node & {
|
|
17813
|
+
__typename?: 'GraphStoreFullTestPerfhammerMaterializationBNode';
|
|
17814
|
+
createdAt: Scalars['DateTime']['output'];
|
|
17815
|
+
from: GraphStoreFullTestPerfhammerMaterializationBStartNode;
|
|
17816
|
+
id: Scalars['ID']['output'];
|
|
17817
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
17818
|
+
to: GraphStoreFullTestPerfhammerMaterializationBEndNode;
|
|
17819
|
+
};
|
|
17820
|
+
export type GraphStoreFullTestPerfhammerMaterializationBStartNode = Node & {
|
|
17821
|
+
__typename?: 'GraphStoreFullTestPerfhammerMaterializationBStartNode';
|
|
17822
|
+
id: Scalars['ID']['output'];
|
|
17823
|
+
};
|
|
17824
|
+
export type GraphStoreFullTestPerfhammerMaterializationConnection = HasPageInfo & HasTotal & {
|
|
17825
|
+
__typename?: 'GraphStoreFullTestPerfhammerMaterializationConnection';
|
|
17826
|
+
edges: Array<Maybe<GraphStoreFullTestPerfhammerMaterializationEdge>>;
|
|
17827
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
17828
|
+
nodes: Array<Maybe<GraphStoreFullTestPerfhammerMaterializationNode>>;
|
|
17829
|
+
pageInfo: PageInfo;
|
|
17830
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
17831
|
+
};
|
|
17832
|
+
export type GraphStoreFullTestPerfhammerMaterializationEdge = {
|
|
17833
|
+
__typename?: 'GraphStoreFullTestPerfhammerMaterializationEdge';
|
|
17834
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
17835
|
+
node: GraphStoreFullTestPerfhammerMaterializationNode;
|
|
17836
|
+
};
|
|
17837
|
+
export type GraphStoreFullTestPerfhammerMaterializationEndNode = Node & {
|
|
17838
|
+
__typename?: 'GraphStoreFullTestPerfhammerMaterializationEndNode';
|
|
17839
|
+
id: Scalars['ID']['output'];
|
|
17840
|
+
};
|
|
17841
|
+
export type GraphStoreFullTestPerfhammerMaterializationNode = Node & {
|
|
17842
|
+
__typename?: 'GraphStoreFullTestPerfhammerMaterializationNode';
|
|
17843
|
+
createdAt: Scalars['DateTime']['output'];
|
|
17844
|
+
from: GraphStoreFullTestPerfhammerMaterializationStartNode;
|
|
17845
|
+
id: Scalars['ID']['output'];
|
|
17846
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
17847
|
+
to: GraphStoreFullTestPerfhammerMaterializationEndNode;
|
|
17848
|
+
};
|
|
17849
|
+
export type GraphStoreFullTestPerfhammerMaterializationStartNode = Node & {
|
|
17850
|
+
__typename?: 'GraphStoreFullTestPerfhammerMaterializationStartNode';
|
|
17851
|
+
id: Scalars['ID']['output'];
|
|
17852
|
+
};
|
|
17853
|
+
export type GraphStoreFullTestPerfhammerRelationshipConnection = HasPageInfo & {
|
|
17854
|
+
__typename?: 'GraphStoreFullTestPerfhammerRelationshipConnection';
|
|
17855
|
+
edges: Array<Maybe<GraphStoreFullTestPerfhammerRelationshipEdge>>;
|
|
17856
|
+
nodes: Array<Maybe<GraphStoreFullTestPerfhammerRelationshipNode>>;
|
|
17857
|
+
pageInfo: PageInfo;
|
|
17858
|
+
};
|
|
17859
|
+
export type GraphStoreFullTestPerfhammerRelationshipEdge = {
|
|
17860
|
+
__typename?: 'GraphStoreFullTestPerfhammerRelationshipEdge';
|
|
17861
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
17862
|
+
node: GraphStoreFullTestPerfhammerRelationshipNode;
|
|
17863
|
+
};
|
|
17864
|
+
export type GraphStoreFullTestPerfhammerRelationshipEndNode = Node & {
|
|
17865
|
+
__typename?: 'GraphStoreFullTestPerfhammerRelationshipEndNode';
|
|
17866
|
+
id: Scalars['ID']['output'];
|
|
17867
|
+
};
|
|
17868
|
+
export type GraphStoreFullTestPerfhammerRelationshipNode = Node & {
|
|
17869
|
+
__typename?: 'GraphStoreFullTestPerfhammerRelationshipNode';
|
|
17870
|
+
createdAt: Scalars['DateTime']['output'];
|
|
17871
|
+
from: GraphStoreFullTestPerfhammerRelationshipStartNode;
|
|
17872
|
+
id: Scalars['ID']['output'];
|
|
17873
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
17874
|
+
to: GraphStoreFullTestPerfhammerRelationshipEndNode;
|
|
17875
|
+
};
|
|
17876
|
+
export type GraphStoreFullTestPerfhammerRelationshipStartNode = Node & {
|
|
17877
|
+
__typename?: 'GraphStoreFullTestPerfhammerRelationshipStartNode';
|
|
17878
|
+
id: Scalars['ID']['output'];
|
|
17879
|
+
};
|
|
16981
17880
|
export type GraphStoreFullUserIsInTeamConnection = HasPageInfo & {
|
|
16982
17881
|
__typename?: 'GraphStoreFullUserIsInTeamConnection';
|
|
16983
17882
|
edges: Array<Maybe<GraphStoreFullUserIsInTeamEdge>>;
|
|
@@ -17262,41 +18161,21 @@ export type GraphStoreFullVulnerabilityAssociatedIssueStartNode = Node & {
|
|
|
17262
18161
|
__typename?: 'GraphStoreFullVulnerabilityAssociatedIssueStartNode';
|
|
17263
18162
|
id: Scalars['ID']['output'];
|
|
17264
18163
|
};
|
|
17265
|
-
export type
|
|
17266
|
-
|
|
17267
|
-
|
|
17268
|
-
|
|
17269
|
-
|
|
17270
|
-
|
|
17271
|
-
|
|
17272
|
-
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
17273
|
-
};
|
|
17274
|
-
export type GraphStoreIncidentHasActionItemInput = {
|
|
17275
|
-
relationships: Array<GraphStoreIncidentHasActionItemRelationship>;
|
|
17276
|
-
};
|
|
17277
|
-
export type GraphStoreIncidentHasActionItemRelationship = {
|
|
17278
|
-
from: Scalars['ID']['input'];
|
|
17279
|
-
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
17280
|
-
to: Scalars['ID']['input'];
|
|
17281
|
-
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
18164
|
+
export type GraphStoreIntFilterInput = {
|
|
18165
|
+
greaterThan?: InputMaybe<Scalars['Int']['input']>;
|
|
18166
|
+
greaterThanOrEqual?: InputMaybe<Scalars['Int']['input']>;
|
|
18167
|
+
is?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
18168
|
+
isNot?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
18169
|
+
lessThan?: InputMaybe<Scalars['Int']['input']>;
|
|
18170
|
+
lessThanOrEqual?: InputMaybe<Scalars['Int']['input']>;
|
|
17282
18171
|
};
|
|
17283
|
-
export type
|
|
17284
|
-
|
|
17285
|
-
|
|
17286
|
-
|
|
17287
|
-
|
|
17288
|
-
|
|
17289
|
-
|
|
17290
|
-
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
17291
|
-
};
|
|
17292
|
-
export type GraphStoreJswProjectAssociatedComponentInput = {
|
|
17293
|
-
relationships: Array<GraphStoreJswProjectAssociatedComponentRelationship>;
|
|
17294
|
-
};
|
|
17295
|
-
export type GraphStoreJswProjectAssociatedComponentRelationship = {
|
|
17296
|
-
from: Scalars['ID']['input'];
|
|
17297
|
-
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
17298
|
-
to: Scalars['ID']['input'];
|
|
17299
|
-
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
18172
|
+
export type GraphStoreLongFilterInput = {
|
|
18173
|
+
greaterThan?: InputMaybe<Scalars['Long']['input']>;
|
|
18174
|
+
greaterThanOrEqual?: InputMaybe<Scalars['Long']['input']>;
|
|
18175
|
+
is?: InputMaybe<Array<Scalars['Long']['input']>>;
|
|
18176
|
+
isNot?: InputMaybe<Array<Scalars['Long']['input']>>;
|
|
18177
|
+
lessThan?: InputMaybe<Scalars['Long']['input']>;
|
|
18178
|
+
lessThanOrEqual?: InputMaybe<Scalars['Long']['input']>;
|
|
17300
18179
|
};
|
|
17301
18180
|
export type GraphStoreMutation = {
|
|
17302
18181
|
__typename?: 'GraphStoreMutation';
|
|
@@ -17313,125 +18192,450 @@ export type GraphStoreMutation = {
|
|
|
17313
18192
|
createProjectHasSharedVersionWith?: Maybe<GraphStoreCreateProjectHasSharedVersionWithPayload>;
|
|
17314
18193
|
createProjectHasVersion?: Maybe<GraphStoreCreateProjectHasVersionPayload>;
|
|
17315
18194
|
createSprintRetrospectivePage?: Maybe<GraphStoreCreateSprintRetrospectivePagePayload>;
|
|
18195
|
+
createSprintRetrospectiveWhiteboard?: Maybe<GraphStoreCreateSprintRetrospectiveWhiteboardPayload>;
|
|
18196
|
+
createTestPerfhammerRelationship?: Maybe<GraphStoreCreateTestPerfhammerRelationshipPayload>;
|
|
17316
18197
|
createVersionUserAssociatedFeatureFlag?: Maybe<GraphStoreCreateVersionUserAssociatedFeatureFlagPayload>;
|
|
17317
18198
|
createVulnerabilityAssociatedIssue?: Maybe<GraphStoreCreateVulnerabilityAssociatedIssuePayload>;
|
|
18199
|
+
deleteIncidentAssociatedPostIncidentReviewLink?: Maybe<GraphStoreDeleteIncidentAssociatedPostIncidentReviewLinkPayload>;
|
|
18200
|
+
deleteIncidentHasActionItem?: Maybe<GraphStoreDeleteIncidentHasActionItemPayload>;
|
|
18201
|
+
deleteIncidentLinkedJswIssue?: Maybe<GraphStoreDeleteIncidentLinkedJswIssuePayload>;
|
|
18202
|
+
deleteJswProjectAssociatedComponent?: Maybe<GraphStoreDeleteJswProjectAssociatedComponentPayload>;
|
|
18203
|
+
deleteProjectAssociatedOpsgenieTeam?: Maybe<GraphStoreDeleteProjectAssociatedOpsgenieTeamPayload>;
|
|
18204
|
+
deleteProjectAssociatedToSecurityContainer?: Maybe<GraphStoreDeleteProjectAssociatedToSecurityContainerPayload>;
|
|
18205
|
+
deleteProjectDisassociatedRepo?: Maybe<GraphStoreDeleteProjectDisassociatedRepoPayload>;
|
|
18206
|
+
deleteProjectDocumentationEntity?: Maybe<GraphStoreDeleteProjectDocumentationEntityPayload>;
|
|
18207
|
+
deleteProjectDocumentationPage?: Maybe<GraphStoreDeleteProjectDocumentationPagePayload>;
|
|
18208
|
+
deleteProjectDocumentationSpace?: Maybe<GraphStoreDeleteProjectDocumentationSpacePayload>;
|
|
18209
|
+
deleteProjectHasSharedVersionWith?: Maybe<GraphStoreDeleteProjectHasSharedVersionWithPayload>;
|
|
18210
|
+
deleteProjectHasVersion?: Maybe<GraphStoreDeleteProjectHasVersionPayload>;
|
|
18211
|
+
deleteSprintRetrospectivePage?: Maybe<GraphStoreDeleteSprintRetrospectivePagePayload>;
|
|
18212
|
+
deleteSprintRetrospectiveWhiteboard?: Maybe<GraphStoreDeleteSprintRetrospectiveWhiteboardPayload>;
|
|
18213
|
+
deleteTestPerfhammerRelationship?: Maybe<GraphStoreDeleteTestPerfhammerRelationshipPayload>;
|
|
18214
|
+
deleteVersionUserAssociatedFeatureFlag?: Maybe<GraphStoreDeleteVersionUserAssociatedFeatureFlagPayload>;
|
|
18215
|
+
deleteVulnerabilityAssociatedIssue?: Maybe<GraphStoreDeleteVulnerabilityAssociatedIssuePayload>;
|
|
17318
18216
|
};
|
|
17319
18217
|
export type GraphStoreMutationCreateIncidentAssociatedPostIncidentReviewLinkArgs = {
|
|
17320
|
-
input?: InputMaybe<
|
|
18218
|
+
input?: InputMaybe<GraphStoreCreateIncidentAssociatedPostIncidentReviewLinkInput>;
|
|
17321
18219
|
};
|
|
17322
18220
|
export type GraphStoreMutationCreateIncidentHasActionItemArgs = {
|
|
17323
|
-
input?: InputMaybe<
|
|
18221
|
+
input?: InputMaybe<GraphStoreCreateIncidentHasActionItemInput>;
|
|
17324
18222
|
};
|
|
17325
18223
|
export type GraphStoreMutationCreateIncidentLinkedJswIssueArgs = {
|
|
17326
|
-
input?: InputMaybe<
|
|
18224
|
+
input?: InputMaybe<GraphStoreCreateIncidentLinkedJswIssueInput>;
|
|
17327
18225
|
};
|
|
17328
18226
|
export type GraphStoreMutationCreateJswProjectAssociatedComponentArgs = {
|
|
17329
|
-
input?: InputMaybe<
|
|
18227
|
+
input?: InputMaybe<GraphStoreCreateJswProjectAssociatedComponentInput>;
|
|
17330
18228
|
};
|
|
17331
18229
|
export type GraphStoreMutationCreateProjectAssociatedOpsgenieTeamArgs = {
|
|
17332
|
-
input?: InputMaybe<
|
|
18230
|
+
input?: InputMaybe<GraphStoreCreateProjectAssociatedOpsgenieTeamInput>;
|
|
17333
18231
|
};
|
|
17334
18232
|
export type GraphStoreMutationCreateProjectAssociatedToSecurityContainerArgs = {
|
|
17335
|
-
input?: InputMaybe<
|
|
18233
|
+
input?: InputMaybe<GraphStoreCreateProjectAssociatedToSecurityContainerInput>;
|
|
17336
18234
|
};
|
|
17337
18235
|
export type GraphStoreMutationCreateProjectDisassociatedRepoArgs = {
|
|
17338
|
-
input?: InputMaybe<
|
|
18236
|
+
input?: InputMaybe<GraphStoreCreateProjectDisassociatedRepoInput>;
|
|
17339
18237
|
};
|
|
17340
18238
|
export type GraphStoreMutationCreateProjectDocumentationEntityArgs = {
|
|
17341
|
-
input?: InputMaybe<
|
|
18239
|
+
input?: InputMaybe<GraphStoreCreateProjectDocumentationEntityInput>;
|
|
17342
18240
|
};
|
|
17343
18241
|
export type GraphStoreMutationCreateProjectDocumentationPageArgs = {
|
|
17344
|
-
input?: InputMaybe<
|
|
18242
|
+
input?: InputMaybe<GraphStoreCreateProjectDocumentationPageInput>;
|
|
17345
18243
|
};
|
|
17346
18244
|
export type GraphStoreMutationCreateProjectDocumentationSpaceArgs = {
|
|
17347
|
-
input?: InputMaybe<
|
|
18245
|
+
input?: InputMaybe<GraphStoreCreateProjectDocumentationSpaceInput>;
|
|
17348
18246
|
};
|
|
17349
18247
|
export type GraphStoreMutationCreateProjectHasSharedVersionWithArgs = {
|
|
17350
|
-
input?: InputMaybe<
|
|
18248
|
+
input?: InputMaybe<GraphStoreCreateProjectHasSharedVersionWithInput>;
|
|
17351
18249
|
};
|
|
17352
18250
|
export type GraphStoreMutationCreateProjectHasVersionArgs = {
|
|
17353
|
-
input?: InputMaybe<
|
|
18251
|
+
input?: InputMaybe<GraphStoreCreateProjectHasVersionInput>;
|
|
17354
18252
|
};
|
|
17355
18253
|
export type GraphStoreMutationCreateSprintRetrospectivePageArgs = {
|
|
17356
|
-
input?: InputMaybe<
|
|
18254
|
+
input?: InputMaybe<GraphStoreCreateSprintRetrospectivePageInput>;
|
|
18255
|
+
};
|
|
18256
|
+
export type GraphStoreMutationCreateSprintRetrospectiveWhiteboardArgs = {
|
|
18257
|
+
input?: InputMaybe<GraphStoreCreateSprintRetrospectiveWhiteboardInput>;
|
|
18258
|
+
};
|
|
18259
|
+
export type GraphStoreMutationCreateTestPerfhammerRelationshipArgs = {
|
|
18260
|
+
input?: InputMaybe<GraphStoreCreateTestPerfhammerRelationshipInput>;
|
|
17357
18261
|
};
|
|
17358
18262
|
export type GraphStoreMutationCreateVersionUserAssociatedFeatureFlagArgs = {
|
|
17359
|
-
input?: InputMaybe<
|
|
18263
|
+
input?: InputMaybe<GraphStoreCreateVersionUserAssociatedFeatureFlagInput>;
|
|
17360
18264
|
};
|
|
17361
18265
|
export type GraphStoreMutationCreateVulnerabilityAssociatedIssueArgs = {
|
|
17362
|
-
input?: InputMaybe<
|
|
18266
|
+
input?: InputMaybe<GraphStoreCreateVulnerabilityAssociatedIssueInput>;
|
|
17363
18267
|
};
|
|
17364
|
-
export type
|
|
17365
|
-
|
|
18268
|
+
export type GraphStoreMutationDeleteIncidentAssociatedPostIncidentReviewLinkArgs = {
|
|
18269
|
+
input?: InputMaybe<GraphStoreDeleteIncidentAssociatedPostIncidentReviewLinkInput>;
|
|
17366
18270
|
};
|
|
17367
|
-
export type
|
|
17368
|
-
|
|
17369
|
-
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
17370
|
-
to: Scalars['ID']['input'];
|
|
17371
|
-
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
18271
|
+
export type GraphStoreMutationDeleteIncidentHasActionItemArgs = {
|
|
18272
|
+
input?: InputMaybe<GraphStoreDeleteIncidentHasActionItemInput>;
|
|
17372
18273
|
};
|
|
17373
|
-
export type
|
|
17374
|
-
|
|
18274
|
+
export type GraphStoreMutationDeleteIncidentLinkedJswIssueArgs = {
|
|
18275
|
+
input?: InputMaybe<GraphStoreDeleteIncidentLinkedJswIssueInput>;
|
|
17375
18276
|
};
|
|
17376
|
-
export type
|
|
17377
|
-
|
|
17378
|
-
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
17379
|
-
to: Scalars['ID']['input'];
|
|
17380
|
-
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
18277
|
+
export type GraphStoreMutationDeleteJswProjectAssociatedComponentArgs = {
|
|
18278
|
+
input?: InputMaybe<GraphStoreDeleteJswProjectAssociatedComponentInput>;
|
|
17381
18279
|
};
|
|
17382
|
-
export type
|
|
17383
|
-
|
|
18280
|
+
export type GraphStoreMutationDeleteProjectAssociatedOpsgenieTeamArgs = {
|
|
18281
|
+
input?: InputMaybe<GraphStoreDeleteProjectAssociatedOpsgenieTeamInput>;
|
|
17384
18282
|
};
|
|
17385
|
-
export type
|
|
17386
|
-
|
|
17387
|
-
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
17388
|
-
to: Scalars['ID']['input'];
|
|
17389
|
-
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
18283
|
+
export type GraphStoreMutationDeleteProjectAssociatedToSecurityContainerArgs = {
|
|
18284
|
+
input?: InputMaybe<GraphStoreDeleteProjectAssociatedToSecurityContainerInput>;
|
|
17390
18285
|
};
|
|
17391
|
-
export type
|
|
17392
|
-
|
|
18286
|
+
export type GraphStoreMutationDeleteProjectDisassociatedRepoArgs = {
|
|
18287
|
+
input?: InputMaybe<GraphStoreDeleteProjectDisassociatedRepoInput>;
|
|
17393
18288
|
};
|
|
17394
|
-
export type
|
|
17395
|
-
|
|
17396
|
-
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
17397
|
-
to: Scalars['ID']['input'];
|
|
17398
|
-
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
18289
|
+
export type GraphStoreMutationDeleteProjectDocumentationEntityArgs = {
|
|
18290
|
+
input?: InputMaybe<GraphStoreDeleteProjectDocumentationEntityInput>;
|
|
17399
18291
|
};
|
|
17400
|
-
export type
|
|
17401
|
-
|
|
18292
|
+
export type GraphStoreMutationDeleteProjectDocumentationPageArgs = {
|
|
18293
|
+
input?: InputMaybe<GraphStoreDeleteProjectDocumentationPageInput>;
|
|
17402
18294
|
};
|
|
17403
|
-
export type
|
|
17404
|
-
|
|
17405
|
-
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
17406
|
-
to: Scalars['ID']['input'];
|
|
17407
|
-
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
18295
|
+
export type GraphStoreMutationDeleteProjectDocumentationSpaceArgs = {
|
|
18296
|
+
input?: InputMaybe<GraphStoreDeleteProjectDocumentationSpaceInput>;
|
|
17408
18297
|
};
|
|
17409
|
-
export type
|
|
17410
|
-
|
|
18298
|
+
export type GraphStoreMutationDeleteProjectHasSharedVersionWithArgs = {
|
|
18299
|
+
input?: InputMaybe<GraphStoreDeleteProjectHasSharedVersionWithInput>;
|
|
17411
18300
|
};
|
|
17412
|
-
export type
|
|
17413
|
-
|
|
17414
|
-
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
17415
|
-
to: Scalars['ID']['input'];
|
|
17416
|
-
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
18301
|
+
export type GraphStoreMutationDeleteProjectHasVersionArgs = {
|
|
18302
|
+
input?: InputMaybe<GraphStoreDeleteProjectHasVersionInput>;
|
|
17417
18303
|
};
|
|
17418
|
-
export type
|
|
17419
|
-
|
|
18304
|
+
export type GraphStoreMutationDeleteSprintRetrospectivePageArgs = {
|
|
18305
|
+
input?: InputMaybe<GraphStoreDeleteSprintRetrospectivePageInput>;
|
|
17420
18306
|
};
|
|
17421
|
-
export type
|
|
17422
|
-
|
|
17423
|
-
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
17424
|
-
to: Scalars['ID']['input'];
|
|
17425
|
-
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
18307
|
+
export type GraphStoreMutationDeleteSprintRetrospectiveWhiteboardArgs = {
|
|
18308
|
+
input?: InputMaybe<GraphStoreDeleteSprintRetrospectiveWhiteboardInput>;
|
|
17426
18309
|
};
|
|
17427
|
-
export type
|
|
17428
|
-
|
|
18310
|
+
export type GraphStoreMutationDeleteTestPerfhammerRelationshipArgs = {
|
|
18311
|
+
input?: InputMaybe<GraphStoreDeleteTestPerfhammerRelationshipInput>;
|
|
17429
18312
|
};
|
|
17430
|
-
export type
|
|
17431
|
-
|
|
17432
|
-
|
|
17433
|
-
|
|
17434
|
-
|
|
18313
|
+
export type GraphStoreMutationDeleteVersionUserAssociatedFeatureFlagArgs = {
|
|
18314
|
+
input?: InputMaybe<GraphStoreDeleteVersionUserAssociatedFeatureFlagInput>;
|
|
18315
|
+
};
|
|
18316
|
+
export type GraphStoreMutationDeleteVulnerabilityAssociatedIssueArgs = {
|
|
18317
|
+
input?: InputMaybe<GraphStoreDeleteVulnerabilityAssociatedIssueInput>;
|
|
18318
|
+
};
|
|
18319
|
+
export declare enum GraphStoreProjectAssociatedBuildBuildState {
|
|
18320
|
+
Cancelled = "CANCELLED",
|
|
18321
|
+
Failed = "FAILED",
|
|
18322
|
+
InProgress = "IN_PROGRESS",
|
|
18323
|
+
NotSet = "NOT_SET",
|
|
18324
|
+
Pending = "PENDING",
|
|
18325
|
+
Successful = "SUCCESSFUL",
|
|
18326
|
+
Unknown = "UNKNOWN"
|
|
18327
|
+
}
|
|
18328
|
+
export type GraphStoreProjectAssociatedBuildBuildStateFilterInput = {
|
|
18329
|
+
is?: InputMaybe<Array<GraphStoreProjectAssociatedBuildBuildState>>;
|
|
18330
|
+
isNot?: InputMaybe<Array<GraphStoreProjectAssociatedBuildBuildState>>;
|
|
18331
|
+
};
|
|
18332
|
+
export type GraphStoreProjectAssociatedBuildConditionalFilterInput = {
|
|
18333
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
18334
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
18335
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
18336
|
+
relationship_assigneeAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18337
|
+
relationship_creatorAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18338
|
+
relationship_issueAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18339
|
+
relationship_issueLastUpdatedOn?: InputMaybe<GraphStoreLongFilterInput>;
|
|
18340
|
+
relationship_reporterAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18341
|
+
relationship_statusAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18342
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
18343
|
+
to_state?: InputMaybe<GraphStoreProjectAssociatedBuildBuildStateFilterInput>;
|
|
18344
|
+
to_testInfo?: InputMaybe<GraphStoreProjectAssociatedBuildTestInfoFilterInput>;
|
|
18345
|
+
};
|
|
18346
|
+
export type GraphStoreProjectAssociatedBuildFilterInput = {
|
|
18347
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreProjectAssociatedBuildConditionalFilterInput>>>;
|
|
18348
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreProjectAssociatedBuildConditionalFilterInput>>>;
|
|
18349
|
+
};
|
|
18350
|
+
export type GraphStoreProjectAssociatedBuildSortInput = {
|
|
18351
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
18352
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
18353
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
18354
|
+
relationship_assigneeAri?: InputMaybe<GraphStoreSortInput>;
|
|
18355
|
+
relationship_creatorAri?: InputMaybe<GraphStoreSortInput>;
|
|
18356
|
+
relationship_issueAri?: InputMaybe<GraphStoreSortInput>;
|
|
18357
|
+
relationship_issueLastUpdatedOn?: InputMaybe<GraphStoreSortInput>;
|
|
18358
|
+
relationship_reporterAri?: InputMaybe<GraphStoreSortInput>;
|
|
18359
|
+
relationship_statusAri?: InputMaybe<GraphStoreSortInput>;
|
|
18360
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
18361
|
+
to_state?: InputMaybe<GraphStoreSortInput>;
|
|
18362
|
+
to_testInfo?: InputMaybe<GraphStoreProjectAssociatedBuildTestInfoSortInput>;
|
|
18363
|
+
};
|
|
18364
|
+
export type GraphStoreProjectAssociatedBuildTestInfoFilterInput = {
|
|
18365
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreProjectAssociatedBuildTestInfoFilterInput>>>;
|
|
18366
|
+
numberFailed?: InputMaybe<GraphStoreLongFilterInput>;
|
|
18367
|
+
numberPassed?: InputMaybe<GraphStoreLongFilterInput>;
|
|
18368
|
+
numberSkipped?: InputMaybe<GraphStoreLongFilterInput>;
|
|
18369
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreProjectAssociatedBuildTestInfoFilterInput>>>;
|
|
18370
|
+
totalNumber?: InputMaybe<GraphStoreLongFilterInput>;
|
|
18371
|
+
};
|
|
18372
|
+
export type GraphStoreProjectAssociatedBuildTestInfoSortInput = {
|
|
18373
|
+
numberFailed?: InputMaybe<GraphStoreSortInput>;
|
|
18374
|
+
numberPassed?: InputMaybe<GraphStoreSortInput>;
|
|
18375
|
+
numberSkipped?: InputMaybe<GraphStoreSortInput>;
|
|
18376
|
+
totalNumber?: InputMaybe<GraphStoreSortInput>;
|
|
18377
|
+
};
|
|
18378
|
+
export type GraphStoreProjectAssociatedDeploymentAuthorFilterInput = {
|
|
18379
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreProjectAssociatedDeploymentAuthorFilterInput>>>;
|
|
18380
|
+
authorAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18381
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreProjectAssociatedDeploymentAuthorFilterInput>>>;
|
|
18382
|
+
};
|
|
18383
|
+
export type GraphStoreProjectAssociatedDeploymentAuthorSortInput = {
|
|
18384
|
+
authorAri?: InputMaybe<GraphStoreSortInput>;
|
|
18385
|
+
};
|
|
18386
|
+
export type GraphStoreProjectAssociatedDeploymentConditionalFilterInput = {
|
|
18387
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
18388
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
18389
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
18390
|
+
relationship_assigneeAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18391
|
+
relationship_creatorAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18392
|
+
relationship_fixVersionIds?: InputMaybe<GraphStoreLongFilterInput>;
|
|
18393
|
+
relationship_issueAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18394
|
+
relationship_issueLastUpdatedOn?: InputMaybe<GraphStoreLongFilterInput>;
|
|
18395
|
+
relationship_issueTypeAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18396
|
+
relationship_reporterAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18397
|
+
relationship_statusAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18398
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
18399
|
+
to_author?: InputMaybe<GraphStoreProjectAssociatedDeploymentAuthorFilterInput>;
|
|
18400
|
+
to_environmentType?: InputMaybe<GraphStoreProjectAssociatedDeploymentEnvironmentTypeFilterInput>;
|
|
18401
|
+
to_state?: InputMaybe<GraphStoreProjectAssociatedDeploymentDeploymentStateFilterInput>;
|
|
18402
|
+
};
|
|
18403
|
+
export declare enum GraphStoreProjectAssociatedDeploymentDeploymentState {
|
|
18404
|
+
Cancelled = "CANCELLED",
|
|
18405
|
+
Failed = "FAILED",
|
|
18406
|
+
InProgress = "IN_PROGRESS",
|
|
18407
|
+
NotSet = "NOT_SET",
|
|
18408
|
+
Pending = "PENDING",
|
|
18409
|
+
RolledBack = "ROLLED_BACK",
|
|
18410
|
+
Successful = "SUCCESSFUL",
|
|
18411
|
+
Unknown = "UNKNOWN"
|
|
18412
|
+
}
|
|
18413
|
+
export type GraphStoreProjectAssociatedDeploymentDeploymentStateFilterInput = {
|
|
18414
|
+
is?: InputMaybe<Array<GraphStoreProjectAssociatedDeploymentDeploymentState>>;
|
|
18415
|
+
isNot?: InputMaybe<Array<GraphStoreProjectAssociatedDeploymentDeploymentState>>;
|
|
18416
|
+
};
|
|
18417
|
+
export declare enum GraphStoreProjectAssociatedDeploymentEnvironmentType {
|
|
18418
|
+
Development = "DEVELOPMENT",
|
|
18419
|
+
NotSet = "NOT_SET",
|
|
18420
|
+
Production = "PRODUCTION",
|
|
18421
|
+
Staging = "STAGING",
|
|
18422
|
+
Testing = "TESTING",
|
|
18423
|
+
Unmapped = "UNMAPPED"
|
|
18424
|
+
}
|
|
18425
|
+
export type GraphStoreProjectAssociatedDeploymentEnvironmentTypeFilterInput = {
|
|
18426
|
+
is?: InputMaybe<Array<GraphStoreProjectAssociatedDeploymentEnvironmentType>>;
|
|
18427
|
+
isNot?: InputMaybe<Array<GraphStoreProjectAssociatedDeploymentEnvironmentType>>;
|
|
18428
|
+
};
|
|
18429
|
+
export type GraphStoreProjectAssociatedDeploymentFilterInput = {
|
|
18430
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreProjectAssociatedDeploymentConditionalFilterInput>>>;
|
|
18431
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreProjectAssociatedDeploymentConditionalFilterInput>>>;
|
|
18432
|
+
};
|
|
18433
|
+
export type GraphStoreProjectAssociatedDeploymentSortInput = {
|
|
18434
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
18435
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
18436
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
18437
|
+
relationship_assigneeAri?: InputMaybe<GraphStoreSortInput>;
|
|
18438
|
+
relationship_creatorAri?: InputMaybe<GraphStoreSortInput>;
|
|
18439
|
+
relationship_fixVersionIds?: InputMaybe<GraphStoreSortInput>;
|
|
18440
|
+
relationship_issueAri?: InputMaybe<GraphStoreSortInput>;
|
|
18441
|
+
relationship_issueLastUpdatedOn?: InputMaybe<GraphStoreSortInput>;
|
|
18442
|
+
relationship_issueTypeAri?: InputMaybe<GraphStoreSortInput>;
|
|
18443
|
+
relationship_reporterAri?: InputMaybe<GraphStoreSortInput>;
|
|
18444
|
+
relationship_statusAri?: InputMaybe<GraphStoreSortInput>;
|
|
18445
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
18446
|
+
to_author?: InputMaybe<GraphStoreProjectAssociatedDeploymentAuthorSortInput>;
|
|
18447
|
+
to_environmentType?: InputMaybe<GraphStoreSortInput>;
|
|
18448
|
+
to_state?: InputMaybe<GraphStoreSortInput>;
|
|
18449
|
+
};
|
|
18450
|
+
export type GraphStoreProjectAssociatedPrAuthorFilterInput = {
|
|
18451
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreProjectAssociatedPrAuthorFilterInput>>>;
|
|
18452
|
+
authorAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18453
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreProjectAssociatedPrAuthorFilterInput>>>;
|
|
18454
|
+
};
|
|
18455
|
+
export type GraphStoreProjectAssociatedPrAuthorSortInput = {
|
|
18456
|
+
authorAri?: InputMaybe<GraphStoreSortInput>;
|
|
18457
|
+
};
|
|
18458
|
+
export type GraphStoreProjectAssociatedPrConditionalFilterInput = {
|
|
18459
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
18460
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
18461
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
18462
|
+
relationship_assigneeAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18463
|
+
relationship_creatorAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18464
|
+
relationship_issueAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18465
|
+
relationship_issueLastUpdatedOn?: InputMaybe<GraphStoreLongFilterInput>;
|
|
18466
|
+
relationship_reporterAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18467
|
+
relationship_statusAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18468
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
18469
|
+
to_author?: InputMaybe<GraphStoreProjectAssociatedPrAuthorFilterInput>;
|
|
18470
|
+
to_reviewers?: InputMaybe<GraphStoreProjectAssociatedPrReviewerFilterInput>;
|
|
18471
|
+
to_status?: InputMaybe<GraphStoreProjectAssociatedPrPullRequestStatusFilterInput>;
|
|
18472
|
+
to_taskCount?: InputMaybe<GraphStoreFloatFilterInput>;
|
|
18473
|
+
};
|
|
18474
|
+
export type GraphStoreProjectAssociatedPrFilterInput = {
|
|
18475
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreProjectAssociatedPrConditionalFilterInput>>>;
|
|
18476
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreProjectAssociatedPrConditionalFilterInput>>>;
|
|
18477
|
+
};
|
|
18478
|
+
export declare enum GraphStoreProjectAssociatedPrPullRequestStatus {
|
|
18479
|
+
Declined = "DECLINED",
|
|
18480
|
+
Merged = "MERGED",
|
|
18481
|
+
NotSet = "NOT_SET",
|
|
18482
|
+
Open = "OPEN",
|
|
18483
|
+
Unknown = "UNKNOWN"
|
|
18484
|
+
}
|
|
18485
|
+
export type GraphStoreProjectAssociatedPrPullRequestStatusFilterInput = {
|
|
18486
|
+
is?: InputMaybe<Array<GraphStoreProjectAssociatedPrPullRequestStatus>>;
|
|
18487
|
+
isNot?: InputMaybe<Array<GraphStoreProjectAssociatedPrPullRequestStatus>>;
|
|
18488
|
+
};
|
|
18489
|
+
export type GraphStoreProjectAssociatedPrReviewerFilterInput = {
|
|
18490
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreProjectAssociatedPrReviewerFilterInput>>>;
|
|
18491
|
+
approvalStatus?: InputMaybe<GraphStoreProjectAssociatedPrReviewerReviewerStatusFilterInput>;
|
|
18492
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreProjectAssociatedPrReviewerFilterInput>>>;
|
|
18493
|
+
reviewerAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18494
|
+
};
|
|
18495
|
+
export declare enum GraphStoreProjectAssociatedPrReviewerReviewerStatus {
|
|
18496
|
+
Approved = "APPROVED",
|
|
18497
|
+
Needswork = "NEEDSWORK",
|
|
18498
|
+
NotSet = "NOT_SET",
|
|
18499
|
+
Unapproved = "UNAPPROVED"
|
|
18500
|
+
}
|
|
18501
|
+
export type GraphStoreProjectAssociatedPrReviewerReviewerStatusFilterInput = {
|
|
18502
|
+
is?: InputMaybe<Array<GraphStoreProjectAssociatedPrReviewerReviewerStatus>>;
|
|
18503
|
+
isNot?: InputMaybe<Array<GraphStoreProjectAssociatedPrReviewerReviewerStatus>>;
|
|
18504
|
+
};
|
|
18505
|
+
export type GraphStoreProjectAssociatedPrReviewerSortInput = {
|
|
18506
|
+
approvalStatus?: InputMaybe<GraphStoreSortInput>;
|
|
18507
|
+
reviewerAri?: InputMaybe<GraphStoreSortInput>;
|
|
18508
|
+
};
|
|
18509
|
+
export type GraphStoreProjectAssociatedPrSortInput = {
|
|
18510
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
18511
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
18512
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
18513
|
+
relationship_assigneeAri?: InputMaybe<GraphStoreSortInput>;
|
|
18514
|
+
relationship_creatorAri?: InputMaybe<GraphStoreSortInput>;
|
|
18515
|
+
relationship_issueAri?: InputMaybe<GraphStoreSortInput>;
|
|
18516
|
+
relationship_issueLastUpdatedOn?: InputMaybe<GraphStoreSortInput>;
|
|
18517
|
+
relationship_reporterAri?: InputMaybe<GraphStoreSortInput>;
|
|
18518
|
+
relationship_statusAri?: InputMaybe<GraphStoreSortInput>;
|
|
18519
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
18520
|
+
to_author?: InputMaybe<GraphStoreProjectAssociatedPrAuthorSortInput>;
|
|
18521
|
+
to_reviewers?: InputMaybe<GraphStoreProjectAssociatedPrReviewerSortInput>;
|
|
18522
|
+
to_status?: InputMaybe<GraphStoreSortInput>;
|
|
18523
|
+
to_taskCount?: InputMaybe<GraphStoreSortInput>;
|
|
18524
|
+
};
|
|
18525
|
+
export type GraphStoreProjectAssociatedVulnerabilityConditionalFilterInput = {
|
|
18526
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
18527
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
18528
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
18529
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
18530
|
+
to_container?: InputMaybe<GraphStoreProjectAssociatedVulnerabilityContainerFilterInput>;
|
|
18531
|
+
to_severity?: InputMaybe<GraphStoreProjectAssociatedVulnerabilityVulnerabilitySeverityFilterInput>;
|
|
18532
|
+
to_status?: InputMaybe<GraphStoreProjectAssociatedVulnerabilityVulnerabilityStatusFilterInput>;
|
|
18533
|
+
to_type?: InputMaybe<GraphStoreProjectAssociatedVulnerabilityVulnerabilityTypeFilterInput>;
|
|
18534
|
+
};
|
|
18535
|
+
export type GraphStoreProjectAssociatedVulnerabilityContainerFilterInput = {
|
|
18536
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreProjectAssociatedVulnerabilityContainerFilterInput>>>;
|
|
18537
|
+
containerAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18538
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreProjectAssociatedVulnerabilityContainerFilterInput>>>;
|
|
18539
|
+
};
|
|
18540
|
+
export type GraphStoreProjectAssociatedVulnerabilityContainerSortInput = {
|
|
18541
|
+
containerAri?: InputMaybe<GraphStoreSortInput>;
|
|
18542
|
+
};
|
|
18543
|
+
export type GraphStoreProjectAssociatedVulnerabilityFilterInput = {
|
|
18544
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreProjectAssociatedVulnerabilityConditionalFilterInput>>>;
|
|
18545
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreProjectAssociatedVulnerabilityConditionalFilterInput>>>;
|
|
18546
|
+
};
|
|
18547
|
+
export type GraphStoreProjectAssociatedVulnerabilitySortInput = {
|
|
18548
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
18549
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
18550
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
18551
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
18552
|
+
to_container?: InputMaybe<GraphStoreProjectAssociatedVulnerabilityContainerSortInput>;
|
|
18553
|
+
to_severity?: InputMaybe<GraphStoreSortInput>;
|
|
18554
|
+
to_status?: InputMaybe<GraphStoreSortInput>;
|
|
18555
|
+
to_type?: InputMaybe<GraphStoreSortInput>;
|
|
18556
|
+
};
|
|
18557
|
+
export declare enum GraphStoreProjectAssociatedVulnerabilityVulnerabilitySeverity {
|
|
18558
|
+
Critical = "CRITICAL",
|
|
18559
|
+
High = "HIGH",
|
|
18560
|
+
Low = "LOW",
|
|
18561
|
+
Medium = "MEDIUM",
|
|
18562
|
+
NotSet = "NOT_SET",
|
|
18563
|
+
Unknown = "UNKNOWN"
|
|
18564
|
+
}
|
|
18565
|
+
export type GraphStoreProjectAssociatedVulnerabilityVulnerabilitySeverityFilterInput = {
|
|
18566
|
+
is?: InputMaybe<Array<GraphStoreProjectAssociatedVulnerabilityVulnerabilitySeverity>>;
|
|
18567
|
+
isNot?: InputMaybe<Array<GraphStoreProjectAssociatedVulnerabilityVulnerabilitySeverity>>;
|
|
18568
|
+
};
|
|
18569
|
+
export declare enum GraphStoreProjectAssociatedVulnerabilityVulnerabilityStatus {
|
|
18570
|
+
Closed = "CLOSED",
|
|
18571
|
+
Ignored = "IGNORED",
|
|
18572
|
+
NotSet = "NOT_SET",
|
|
18573
|
+
Open = "OPEN",
|
|
18574
|
+
Unknown = "UNKNOWN"
|
|
18575
|
+
}
|
|
18576
|
+
export type GraphStoreProjectAssociatedVulnerabilityVulnerabilityStatusFilterInput = {
|
|
18577
|
+
is?: InputMaybe<Array<GraphStoreProjectAssociatedVulnerabilityVulnerabilityStatus>>;
|
|
18578
|
+
isNot?: InputMaybe<Array<GraphStoreProjectAssociatedVulnerabilityVulnerabilityStatus>>;
|
|
18579
|
+
};
|
|
18580
|
+
export declare enum GraphStoreProjectAssociatedVulnerabilityVulnerabilityType {
|
|
18581
|
+
Dast = "DAST",
|
|
18582
|
+
NotSet = "NOT_SET",
|
|
18583
|
+
Sast = "SAST",
|
|
18584
|
+
Sca = "SCA",
|
|
18585
|
+
Unknown = "UNKNOWN"
|
|
18586
|
+
}
|
|
18587
|
+
export type GraphStoreProjectAssociatedVulnerabilityVulnerabilityTypeFilterInput = {
|
|
18588
|
+
is?: InputMaybe<Array<GraphStoreProjectAssociatedVulnerabilityVulnerabilityType>>;
|
|
18589
|
+
isNot?: InputMaybe<Array<GraphStoreProjectAssociatedVulnerabilityVulnerabilityType>>;
|
|
18590
|
+
};
|
|
18591
|
+
export type GraphStoreServiceLinkedIncidentConditionalFilterInput = {
|
|
18592
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
18593
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
18594
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
18595
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
18596
|
+
to_assigneeAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18597
|
+
to_majorIncident?: InputMaybe<GraphStoreBooleanFilterInput>;
|
|
18598
|
+
to_priority?: InputMaybe<GraphStoreServiceLinkedIncidentJiraServiceManagementIncidentPriorityFilterInput>;
|
|
18599
|
+
to_reporterAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18600
|
+
to_status?: InputMaybe<GraphStoreServiceLinkedIncidentJiraServiceManagementIncidentStatusFilterInput>;
|
|
18601
|
+
};
|
|
18602
|
+
export type GraphStoreServiceLinkedIncidentFilterInput = {
|
|
18603
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreServiceLinkedIncidentConditionalFilterInput>>>;
|
|
18604
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreServiceLinkedIncidentConditionalFilterInput>>>;
|
|
18605
|
+
};
|
|
18606
|
+
export declare enum GraphStoreServiceLinkedIncidentJiraServiceManagementIncidentPriority {
|
|
18607
|
+
NotSet = "NOT_SET",
|
|
18608
|
+
P1 = "P1",
|
|
18609
|
+
P2 = "P2",
|
|
18610
|
+
P3 = "P3",
|
|
18611
|
+
P4 = "P4",
|
|
18612
|
+
P5 = "P5"
|
|
18613
|
+
}
|
|
18614
|
+
export type GraphStoreServiceLinkedIncidentJiraServiceManagementIncidentPriorityFilterInput = {
|
|
18615
|
+
is?: InputMaybe<Array<GraphStoreServiceLinkedIncidentJiraServiceManagementIncidentPriority>>;
|
|
18616
|
+
isNot?: InputMaybe<Array<GraphStoreServiceLinkedIncidentJiraServiceManagementIncidentPriority>>;
|
|
18617
|
+
};
|
|
18618
|
+
export declare enum GraphStoreServiceLinkedIncidentJiraServiceManagementIncidentStatus {
|
|
18619
|
+
Done = "DONE",
|
|
18620
|
+
Indeterminate = "INDETERMINATE",
|
|
18621
|
+
New = "NEW",
|
|
18622
|
+
NotSet = "NOT_SET",
|
|
18623
|
+
Undefined = "UNDEFINED"
|
|
18624
|
+
}
|
|
18625
|
+
export type GraphStoreServiceLinkedIncidentJiraServiceManagementIncidentStatusFilterInput = {
|
|
18626
|
+
is?: InputMaybe<Array<GraphStoreServiceLinkedIncidentJiraServiceManagementIncidentStatus>>;
|
|
18627
|
+
isNot?: InputMaybe<Array<GraphStoreServiceLinkedIncidentJiraServiceManagementIncidentStatus>>;
|
|
18628
|
+
};
|
|
18629
|
+
export type GraphStoreServiceLinkedIncidentSortInput = {
|
|
18630
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
18631
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
18632
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
18633
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
18634
|
+
to_assigneeAri?: InputMaybe<GraphStoreSortInput>;
|
|
18635
|
+
to_majorIncident?: InputMaybe<GraphStoreSortInput>;
|
|
18636
|
+
to_priority?: InputMaybe<GraphStoreSortInput>;
|
|
18637
|
+
to_reporterAri?: InputMaybe<GraphStoreSortInput>;
|
|
18638
|
+
to_status?: InputMaybe<GraphStoreSortInput>;
|
|
17435
18639
|
};
|
|
17436
18640
|
export type GraphStoreSimplifiedIssueAssociatedBranchInverseConnection = HasPageInfo & {
|
|
17437
18641
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedBranchInverseConnection';
|
|
@@ -17472,6 +18676,18 @@ export type GraphStoreSimplifiedIssueAssociatedCommitInverseEdge = {
|
|
|
17472
18676
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedCommitInverseUnion>;
|
|
17473
18677
|
};
|
|
17474
18678
|
export type GraphStoreSimplifiedIssueAssociatedCommitInverseUnion = JiraIssue;
|
|
18679
|
+
export type GraphStoreSimplifiedIssueAssociatedDeploymentConnection = HasPageInfo & {
|
|
18680
|
+
__typename?: 'GraphStoreSimplifiedIssueAssociatedDeploymentConnection';
|
|
18681
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedDeploymentEdge>>>;
|
|
18682
|
+
pageInfo: PageInfo;
|
|
18683
|
+
};
|
|
18684
|
+
export type GraphStoreSimplifiedIssueAssociatedDeploymentEdge = {
|
|
18685
|
+
__typename?: 'GraphStoreSimplifiedIssueAssociatedDeploymentEdge';
|
|
18686
|
+
createdAt: Scalars['DateTime']['output'];
|
|
18687
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
18688
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
18689
|
+
node?: Maybe<GraphStoreSimplifiedIssueAssociatedDeploymentUnion>;
|
|
18690
|
+
};
|
|
17475
18691
|
export type GraphStoreSimplifiedIssueAssociatedDeploymentInverseConnection = HasPageInfo & {
|
|
17476
18692
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedDeploymentInverseConnection';
|
|
17477
18693
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedDeploymentInverseEdge>>>;
|
|
@@ -17485,6 +18701,7 @@ export type GraphStoreSimplifiedIssueAssociatedDeploymentInverseEdge = {
|
|
|
17485
18701
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedDeploymentInverseUnion>;
|
|
17486
18702
|
};
|
|
17487
18703
|
export type GraphStoreSimplifiedIssueAssociatedDeploymentInverseUnion = JiraIssue;
|
|
18704
|
+
export type GraphStoreSimplifiedIssueAssociatedDeploymentUnion = DeploymentSummary;
|
|
17488
18705
|
export type GraphStoreSimplifiedIssueAssociatedDesignConnection = HasPageInfo & {
|
|
17489
18706
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedDesignConnection';
|
|
17490
18707
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedDesignEdge>>>;
|
|
@@ -17604,32 +18821,226 @@ export type GraphStoreSimplifiedParentIssueHasChildIssueInverseEdge = {
|
|
|
17604
18821
|
};
|
|
17605
18822
|
export type GraphStoreSimplifiedParentIssueHasChildIssueInverseUnion = JiraIssue;
|
|
17606
18823
|
export type GraphStoreSimplifiedParentIssueHasChildIssueUnion = JiraIssue;
|
|
17607
|
-
export type
|
|
17608
|
-
|
|
18824
|
+
export type GraphStoreSimplifiedProjectAssociatedDeploymentConnection = HasPageInfo & HasTotal & {
|
|
18825
|
+
__typename?: 'GraphStoreSimplifiedProjectAssociatedDeploymentConnection';
|
|
18826
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectAssociatedDeploymentEdge>>>;
|
|
18827
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
18828
|
+
pageInfo: PageInfo;
|
|
18829
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
17609
18830
|
};
|
|
17610
|
-
export type
|
|
17611
|
-
|
|
17612
|
-
|
|
17613
|
-
|
|
17614
|
-
|
|
18831
|
+
export type GraphStoreSimplifiedProjectAssociatedDeploymentEdge = {
|
|
18832
|
+
__typename?: 'GraphStoreSimplifiedProjectAssociatedDeploymentEdge';
|
|
18833
|
+
createdAt: Scalars['DateTime']['output'];
|
|
18834
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
18835
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
18836
|
+
node?: Maybe<GraphStoreSimplifiedProjectAssociatedDeploymentUnion>;
|
|
17615
18837
|
};
|
|
17616
|
-
export type
|
|
17617
|
-
|
|
18838
|
+
export type GraphStoreSimplifiedProjectAssociatedDeploymentUnion = DeploymentSummary;
|
|
18839
|
+
export type GraphStoreSortInput = {
|
|
18840
|
+
direction: SortDirection;
|
|
18841
|
+
priority: Scalars['Int']['input'];
|
|
17618
18842
|
};
|
|
17619
|
-
export
|
|
17620
|
-
|
|
17621
|
-
|
|
17622
|
-
|
|
17623
|
-
|
|
18843
|
+
export declare enum GraphStoreSprintAssociatedBuildBuildState {
|
|
18844
|
+
Cancelled = "CANCELLED",
|
|
18845
|
+
Failed = "FAILED",
|
|
18846
|
+
InProgress = "IN_PROGRESS",
|
|
18847
|
+
NotSet = "NOT_SET",
|
|
18848
|
+
Pending = "PENDING",
|
|
18849
|
+
Successful = "SUCCESSFUL",
|
|
18850
|
+
Unknown = "UNKNOWN"
|
|
18851
|
+
}
|
|
18852
|
+
export type GraphStoreSprintAssociatedBuildBuildStateFilterInput = {
|
|
18853
|
+
is?: InputMaybe<Array<GraphStoreSprintAssociatedBuildBuildState>>;
|
|
18854
|
+
isNot?: InputMaybe<Array<GraphStoreSprintAssociatedBuildBuildState>>;
|
|
18855
|
+
};
|
|
18856
|
+
export type GraphStoreSprintAssociatedBuildConditionalFilterInput = {
|
|
18857
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
18858
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
18859
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
18860
|
+
relationship_assigneeAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18861
|
+
relationship_creatorAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18862
|
+
relationship_issueAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18863
|
+
relationship_issueLastUpdatedOn?: InputMaybe<GraphStoreLongFilterInput>;
|
|
18864
|
+
relationship_reporterAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18865
|
+
relationship_statusAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18866
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
18867
|
+
to_state?: InputMaybe<GraphStoreSprintAssociatedBuildBuildStateFilterInput>;
|
|
18868
|
+
to_testInfo?: InputMaybe<GraphStoreSprintAssociatedBuildTestInfoFilterInput>;
|
|
18869
|
+
};
|
|
18870
|
+
export type GraphStoreSprintAssociatedBuildFilterInput = {
|
|
18871
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreSprintAssociatedBuildConditionalFilterInput>>>;
|
|
18872
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreSprintAssociatedBuildConditionalFilterInput>>>;
|
|
18873
|
+
};
|
|
18874
|
+
export type GraphStoreSprintAssociatedBuildSortInput = {
|
|
18875
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
18876
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
18877
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
18878
|
+
relationship_assigneeAri?: InputMaybe<GraphStoreSortInput>;
|
|
18879
|
+
relationship_creatorAri?: InputMaybe<GraphStoreSortInput>;
|
|
18880
|
+
relationship_issueAri?: InputMaybe<GraphStoreSortInput>;
|
|
18881
|
+
relationship_issueLastUpdatedOn?: InputMaybe<GraphStoreSortInput>;
|
|
18882
|
+
relationship_reporterAri?: InputMaybe<GraphStoreSortInput>;
|
|
18883
|
+
relationship_statusAri?: InputMaybe<GraphStoreSortInput>;
|
|
18884
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
18885
|
+
to_state?: InputMaybe<GraphStoreSortInput>;
|
|
18886
|
+
to_testInfo?: InputMaybe<GraphStoreSprintAssociatedBuildTestInfoSortInput>;
|
|
18887
|
+
};
|
|
18888
|
+
export type GraphStoreSprintAssociatedBuildTestInfoFilterInput = {
|
|
18889
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreSprintAssociatedBuildTestInfoFilterInput>>>;
|
|
18890
|
+
numberFailed?: InputMaybe<GraphStoreLongFilterInput>;
|
|
18891
|
+
numberPassed?: InputMaybe<GraphStoreLongFilterInput>;
|
|
18892
|
+
numberSkipped?: InputMaybe<GraphStoreLongFilterInput>;
|
|
18893
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreSprintAssociatedBuildTestInfoFilterInput>>>;
|
|
18894
|
+
totalNumber?: InputMaybe<GraphStoreLongFilterInput>;
|
|
18895
|
+
};
|
|
18896
|
+
export type GraphStoreSprintAssociatedBuildTestInfoSortInput = {
|
|
18897
|
+
numberFailed?: InputMaybe<GraphStoreSortInput>;
|
|
18898
|
+
numberPassed?: InputMaybe<GraphStoreSortInput>;
|
|
18899
|
+
numberSkipped?: InputMaybe<GraphStoreSortInput>;
|
|
18900
|
+
totalNumber?: InputMaybe<GraphStoreSortInput>;
|
|
18901
|
+
};
|
|
18902
|
+
export type GraphStoreSprintAssociatedDeploymentAuthorFilterInput = {
|
|
18903
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreSprintAssociatedDeploymentAuthorFilterInput>>>;
|
|
18904
|
+
authorAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18905
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreSprintAssociatedDeploymentAuthorFilterInput>>>;
|
|
18906
|
+
};
|
|
18907
|
+
export type GraphStoreSprintAssociatedDeploymentAuthorSortInput = {
|
|
18908
|
+
authorAri?: InputMaybe<GraphStoreSortInput>;
|
|
18909
|
+
};
|
|
18910
|
+
export type GraphStoreSprintAssociatedDeploymentConditionalFilterInput = {
|
|
18911
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
18912
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
18913
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
18914
|
+
relationship_assigneeAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18915
|
+
relationship_creatorAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18916
|
+
relationship_issueAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18917
|
+
relationship_issueLastUpdatedOn?: InputMaybe<GraphStoreLongFilterInput>;
|
|
18918
|
+
relationship_reporterAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18919
|
+
relationship_statusAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18920
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
18921
|
+
to_author?: InputMaybe<GraphStoreSprintAssociatedDeploymentAuthorFilterInput>;
|
|
18922
|
+
to_environmentType?: InputMaybe<GraphStoreSprintAssociatedDeploymentEnvironmentTypeFilterInput>;
|
|
18923
|
+
to_state?: InputMaybe<GraphStoreSprintAssociatedDeploymentDeploymentStateFilterInput>;
|
|
18924
|
+
};
|
|
18925
|
+
export declare enum GraphStoreSprintAssociatedDeploymentDeploymentState {
|
|
18926
|
+
Cancelled = "CANCELLED",
|
|
18927
|
+
Failed = "FAILED",
|
|
18928
|
+
InProgress = "IN_PROGRESS",
|
|
18929
|
+
NotSet = "NOT_SET",
|
|
18930
|
+
Pending = "PENDING",
|
|
18931
|
+
RolledBack = "ROLLED_BACK",
|
|
18932
|
+
Successful = "SUCCESSFUL",
|
|
18933
|
+
Unknown = "UNKNOWN"
|
|
18934
|
+
}
|
|
18935
|
+
export type GraphStoreSprintAssociatedDeploymentDeploymentStateFilterInput = {
|
|
18936
|
+
is?: InputMaybe<Array<GraphStoreSprintAssociatedDeploymentDeploymentState>>;
|
|
18937
|
+
isNot?: InputMaybe<Array<GraphStoreSprintAssociatedDeploymentDeploymentState>>;
|
|
18938
|
+
};
|
|
18939
|
+
export declare enum GraphStoreSprintAssociatedDeploymentEnvironmentType {
|
|
18940
|
+
Development = "DEVELOPMENT",
|
|
18941
|
+
NotSet = "NOT_SET",
|
|
18942
|
+
Production = "PRODUCTION",
|
|
18943
|
+
Staging = "STAGING",
|
|
18944
|
+
Testing = "TESTING",
|
|
18945
|
+
Unmapped = "UNMAPPED"
|
|
18946
|
+
}
|
|
18947
|
+
export type GraphStoreSprintAssociatedDeploymentEnvironmentTypeFilterInput = {
|
|
18948
|
+
is?: InputMaybe<Array<GraphStoreSprintAssociatedDeploymentEnvironmentType>>;
|
|
18949
|
+
isNot?: InputMaybe<Array<GraphStoreSprintAssociatedDeploymentEnvironmentType>>;
|
|
18950
|
+
};
|
|
18951
|
+
export type GraphStoreSprintAssociatedDeploymentFilterInput = {
|
|
18952
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreSprintAssociatedDeploymentConditionalFilterInput>>>;
|
|
18953
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreSprintAssociatedDeploymentConditionalFilterInput>>>;
|
|
18954
|
+
};
|
|
18955
|
+
export type GraphStoreSprintAssociatedDeploymentSortInput = {
|
|
18956
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
18957
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
18958
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
18959
|
+
relationship_assigneeAri?: InputMaybe<GraphStoreSortInput>;
|
|
18960
|
+
relationship_creatorAri?: InputMaybe<GraphStoreSortInput>;
|
|
18961
|
+
relationship_issueAri?: InputMaybe<GraphStoreSortInput>;
|
|
18962
|
+
relationship_issueLastUpdatedOn?: InputMaybe<GraphStoreSortInput>;
|
|
18963
|
+
relationship_reporterAri?: InputMaybe<GraphStoreSortInput>;
|
|
18964
|
+
relationship_statusAri?: InputMaybe<GraphStoreSortInput>;
|
|
18965
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
18966
|
+
to_author?: InputMaybe<GraphStoreSprintAssociatedDeploymentAuthorSortInput>;
|
|
18967
|
+
to_environmentType?: InputMaybe<GraphStoreSortInput>;
|
|
18968
|
+
to_state?: InputMaybe<GraphStoreSortInput>;
|
|
18969
|
+
};
|
|
18970
|
+
export type GraphStoreSprintAssociatedPrAuthorFilterInput = {
|
|
18971
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreSprintAssociatedPrAuthorFilterInput>>>;
|
|
18972
|
+
authorAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18973
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreSprintAssociatedPrAuthorFilterInput>>>;
|
|
18974
|
+
};
|
|
18975
|
+
export type GraphStoreSprintAssociatedPrAuthorSortInput = {
|
|
18976
|
+
authorAri?: InputMaybe<GraphStoreSortInput>;
|
|
18977
|
+
};
|
|
18978
|
+
export type GraphStoreSprintAssociatedPrConditionalFilterInput = {
|
|
18979
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
18980
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
18981
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
18982
|
+
relationship_assigneeAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18983
|
+
relationship_creatorAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18984
|
+
relationship_issueAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18985
|
+
relationship_issueLastUpdatedOn?: InputMaybe<GraphStoreLongFilterInput>;
|
|
18986
|
+
relationship_reporterAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18987
|
+
relationship_statusAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
18988
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
18989
|
+
to_author?: InputMaybe<GraphStoreSprintAssociatedPrAuthorFilterInput>;
|
|
18990
|
+
to_reviewers?: InputMaybe<GraphStoreSprintAssociatedPrReviewerFilterInput>;
|
|
18991
|
+
to_status?: InputMaybe<GraphStoreSprintAssociatedPrPullRequestStatusFilterInput>;
|
|
18992
|
+
to_taskCount?: InputMaybe<GraphStoreFloatFilterInput>;
|
|
18993
|
+
};
|
|
18994
|
+
export type GraphStoreSprintAssociatedPrFilterInput = {
|
|
18995
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreSprintAssociatedPrConditionalFilterInput>>>;
|
|
18996
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreSprintAssociatedPrConditionalFilterInput>>>;
|
|
18997
|
+
};
|
|
18998
|
+
export declare enum GraphStoreSprintAssociatedPrPullRequestStatus {
|
|
18999
|
+
Declined = "DECLINED",
|
|
19000
|
+
Merged = "MERGED",
|
|
19001
|
+
NotSet = "NOT_SET",
|
|
19002
|
+
Open = "OPEN",
|
|
19003
|
+
Unknown = "UNKNOWN"
|
|
19004
|
+
}
|
|
19005
|
+
export type GraphStoreSprintAssociatedPrPullRequestStatusFilterInput = {
|
|
19006
|
+
is?: InputMaybe<Array<GraphStoreSprintAssociatedPrPullRequestStatus>>;
|
|
19007
|
+
isNot?: InputMaybe<Array<GraphStoreSprintAssociatedPrPullRequestStatus>>;
|
|
17624
19008
|
};
|
|
17625
|
-
export type
|
|
17626
|
-
|
|
19009
|
+
export type GraphStoreSprintAssociatedPrReviewerFilterInput = {
|
|
19010
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreSprintAssociatedPrReviewerFilterInput>>>;
|
|
19011
|
+
approvalStatus?: InputMaybe<GraphStoreSprintAssociatedPrReviewerReviewerStatusFilterInput>;
|
|
19012
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreSprintAssociatedPrReviewerFilterInput>>>;
|
|
19013
|
+
reviewerAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
17627
19014
|
};
|
|
17628
|
-
export
|
|
17629
|
-
|
|
17630
|
-
|
|
17631
|
-
|
|
17632
|
-
|
|
19015
|
+
export declare enum GraphStoreSprintAssociatedPrReviewerReviewerStatus {
|
|
19016
|
+
Approved = "APPROVED",
|
|
19017
|
+
Needswork = "NEEDSWORK",
|
|
19018
|
+
NotSet = "NOT_SET",
|
|
19019
|
+
Unapproved = "UNAPPROVED"
|
|
19020
|
+
}
|
|
19021
|
+
export type GraphStoreSprintAssociatedPrReviewerReviewerStatusFilterInput = {
|
|
19022
|
+
is?: InputMaybe<Array<GraphStoreSprintAssociatedPrReviewerReviewerStatus>>;
|
|
19023
|
+
isNot?: InputMaybe<Array<GraphStoreSprintAssociatedPrReviewerReviewerStatus>>;
|
|
19024
|
+
};
|
|
19025
|
+
export type GraphStoreSprintAssociatedPrReviewerSortInput = {
|
|
19026
|
+
approvalStatus?: InputMaybe<GraphStoreSortInput>;
|
|
19027
|
+
reviewerAri?: InputMaybe<GraphStoreSortInput>;
|
|
19028
|
+
};
|
|
19029
|
+
export type GraphStoreSprintAssociatedPrSortInput = {
|
|
19030
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
19031
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
19032
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
19033
|
+
relationship_assigneeAri?: InputMaybe<GraphStoreSortInput>;
|
|
19034
|
+
relationship_creatorAri?: InputMaybe<GraphStoreSortInput>;
|
|
19035
|
+
relationship_issueAri?: InputMaybe<GraphStoreSortInput>;
|
|
19036
|
+
relationship_issueLastUpdatedOn?: InputMaybe<GraphStoreSortInput>;
|
|
19037
|
+
relationship_reporterAri?: InputMaybe<GraphStoreSortInput>;
|
|
19038
|
+
relationship_statusAri?: InputMaybe<GraphStoreSortInput>;
|
|
19039
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
19040
|
+
to_author?: InputMaybe<GraphStoreSprintAssociatedPrAuthorSortInput>;
|
|
19041
|
+
to_reviewers?: InputMaybe<GraphStoreSprintAssociatedPrReviewerSortInput>;
|
|
19042
|
+
to_status?: InputMaybe<GraphStoreSortInput>;
|
|
19043
|
+
to_taskCount?: InputMaybe<GraphStoreSortInput>;
|
|
17633
19044
|
};
|
|
17634
19045
|
export type GrowthRecContext = {
|
|
17635
19046
|
containers?: InputMaybe<Scalars['JSON']['input']>;
|
|
@@ -18954,6 +20365,7 @@ export type InfluentsNotificationQueryNotificationFeedArgs = {
|
|
|
18954
20365
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
18955
20366
|
filter?: InputMaybe<InfluentsNotificationFilter>;
|
|
18956
20367
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
20368
|
+
flat?: InputMaybe<Scalars['Boolean']['input']>;
|
|
18957
20369
|
};
|
|
18958
20370
|
export type InfluentsNotificationQueryNotificationGroupArgs = {
|
|
18959
20371
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -20874,6 +22286,17 @@ export type JiraCustomFilterShareGrantsArgs = {
|
|
|
20874
22286
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
20875
22287
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
20876
22288
|
};
|
|
22289
|
+
export type JiraCustomIssueSearchError = {
|
|
22290
|
+
__typename?: 'JiraCustomIssueSearchError';
|
|
22291
|
+
errorType?: Maybe<JiraCustomIssueSearchErrorType>;
|
|
22292
|
+
messages?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
22293
|
+
};
|
|
22294
|
+
export declare enum JiraCustomIssueSearchErrorType {
|
|
22295
|
+
CustomImplementationError = "CUSTOM_IMPLEMENTATION_ERROR",
|
|
22296
|
+
CustomSearchDisabled = "CUSTOM_SEARCH_DISABLED",
|
|
22297
|
+
InvalidAri = "INVALID_ARI",
|
|
22298
|
+
UnsupportedAri = "UNSUPPORTED_ARI"
|
|
22299
|
+
}
|
|
20877
22300
|
export type JiraDataClassification = {
|
|
20878
22301
|
__typename?: 'JiraDataClassification';
|
|
20879
22302
|
color?: Maybe<JiraColor>;
|
|
@@ -21102,10 +22525,8 @@ export type JiraDevOpsQueryBitbucketIntegrationArgs = {
|
|
|
21102
22525
|
cloudId: Scalars['ID']['input'];
|
|
21103
22526
|
};
|
|
21104
22527
|
export type JiraDevOpsQueryConfigStateArgs = {
|
|
21105
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
21106
22528
|
appId: Scalars['ID']['input'];
|
|
21107
22529
|
cloudId: Scalars['ID']['input'];
|
|
21108
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
21109
22530
|
};
|
|
21110
22531
|
export type JiraDevOpsQueryConfigStatesArgs = {
|
|
21111
22532
|
cloudId: Scalars['ID']['input'];
|
|
@@ -22527,7 +23948,10 @@ export type JiraIssueSearchContextualContentIssuesArgs = {
|
|
|
22527
23948
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
22528
23949
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
22529
23950
|
};
|
|
22530
|
-
export type
|
|
23951
|
+
export type JiraIssueSearchCustomInput = {
|
|
23952
|
+
jiraSoftwareInput?: InputMaybe<JiraSoftwareIssueSearchCustomInput>;
|
|
23953
|
+
};
|
|
23954
|
+
export type JiraIssueSearchError = JiraCustomIssueSearchError | JiraInvalidJqlError | JiraInvalidSyntaxError | JiraServerError;
|
|
22531
23955
|
export type JiraIssueSearchFieldSet = {
|
|
22532
23956
|
__typename?: 'JiraIssueSearchFieldSet';
|
|
22533
23957
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -22560,6 +23984,7 @@ export type JiraIssueSearchFieldSetsFilter = {
|
|
|
22560
23984
|
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
22561
23985
|
};
|
|
22562
23986
|
export type JiraIssueSearchInput = {
|
|
23987
|
+
customInput?: InputMaybe<JiraIssueSearchCustomInput>;
|
|
22563
23988
|
filterId?: InputMaybe<Scalars['String']['input']>;
|
|
22564
23989
|
jql?: InputMaybe<Scalars['String']['input']>;
|
|
22565
23990
|
};
|
|
@@ -23575,11 +25000,13 @@ export type JiraMutation = {
|
|
|
23575
25000
|
createJiraVersion?: Maybe<JiraUpdateVersionPayload>;
|
|
23576
25001
|
createJwmFilter?: Maybe<JiraWorkManagementCreateFilterPayload>;
|
|
23577
25002
|
createJwmIssue?: Maybe<JiraWorkManagementCreateIssuePayload>;
|
|
25003
|
+
createJwmOverview?: Maybe<JiraWorkManagementGiraCreateOverviewPayload>;
|
|
23578
25004
|
createProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
|
|
23579
25005
|
createReleaseNoteConfluencePage?: Maybe<JiraCreateReleaseNoteConfluencePagePayload>;
|
|
23580
25006
|
deleteGlobalPermissionGrant?: Maybe<JiraGlobalPermissionDeleteGroupGrantPayload>;
|
|
23581
25007
|
deleteIssueNavigatorJQLHistory?: Maybe<JiraIssueNavigatorJqlHistoryDeletePayload>;
|
|
23582
25008
|
deleteJiraVersionApprover?: Maybe<JiraVersionDeleteApproverPayload>;
|
|
25009
|
+
deleteJwmOverview?: Maybe<JiraWorkManagementGiraDeleteOverviewPayload>;
|
|
23583
25010
|
deleteProjectNotificationPreferences?: Maybe<JiraDeleteProjectNotificationPreferencesPayload>;
|
|
23584
25011
|
deleteProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
|
|
23585
25012
|
devOps?: Maybe<JiraDevOpsMutation>;
|
|
@@ -23621,6 +25048,7 @@ export type JiraMutation = {
|
|
|
23621
25048
|
updateJiraVersionRichTextSectionContent?: Maybe<JiraUpdateVersionPayload>;
|
|
23622
25049
|
updateJiraVersionRichTextSectionTitle?: Maybe<JiraUpdateVersionPayload>;
|
|
23623
25050
|
updateJwmFilter?: Maybe<JiraWorkManagementUpdateFilterPayload>;
|
|
25051
|
+
updateJwmOverview?: Maybe<JiraWorkManagementGiraUpdateOverviewPayload>;
|
|
23624
25052
|
updateLabelsField?: Maybe<JiraLabelsFieldPayload>;
|
|
23625
25053
|
updateLegacyTeamField?: Maybe<JiraLegacyTeamFieldPayload>;
|
|
23626
25054
|
updateMultipleSelectField?: Maybe<JiraMultipleSelectFieldPayload>;
|
|
@@ -23695,6 +25123,10 @@ export type JiraMutationCreateJwmFilterArgs = {
|
|
|
23695
25123
|
export type JiraMutationCreateJwmIssueArgs = {
|
|
23696
25124
|
input: JiraWorkManagementCreateIssueInput;
|
|
23697
25125
|
};
|
|
25126
|
+
export type JiraMutationCreateJwmOverviewArgs = {
|
|
25127
|
+
cloudId: Scalars['ID']['input'];
|
|
25128
|
+
input: JiraWorkManagementCreateOverviewInput;
|
|
25129
|
+
};
|
|
23698
25130
|
export type JiraMutationCreateProjectShortcutArgs = {
|
|
23699
25131
|
input: JiraCreateShortcutInput;
|
|
23700
25132
|
};
|
|
@@ -23711,6 +25143,9 @@ export type JiraMutationDeleteIssueNavigatorJqlHistoryArgs = {
|
|
|
23711
25143
|
export type JiraMutationDeleteJiraVersionApproverArgs = {
|
|
23712
25144
|
id: Scalars['ID']['input'];
|
|
23713
25145
|
};
|
|
25146
|
+
export type JiraMutationDeleteJwmOverviewArgs = {
|
|
25147
|
+
input: JiraWorkManagementDeleteOverviewInput;
|
|
25148
|
+
};
|
|
23714
25149
|
export type JiraMutationDeleteProjectNotificationPreferencesArgs = {
|
|
23715
25150
|
cloudId: Scalars['ID']['input'];
|
|
23716
25151
|
input: JiraDeleteProjectNotificationPreferencesInput;
|
|
@@ -23838,6 +25273,9 @@ export type JiraMutationUpdateJiraVersionRichTextSectionTitleArgs = {
|
|
|
23838
25273
|
export type JiraMutationUpdateJwmFilterArgs = {
|
|
23839
25274
|
input: JiraWorkManagementUpdateFilterInput;
|
|
23840
25275
|
};
|
|
25276
|
+
export type JiraMutationUpdateJwmOverviewArgs = {
|
|
25277
|
+
input: JiraWorkManagementUpdateOverviewInput;
|
|
25278
|
+
};
|
|
23841
25279
|
export type JiraMutationUpdateLabelsFieldArgs = {
|
|
23842
25280
|
input: JiraUpdateLabelsFieldInput;
|
|
23843
25281
|
};
|
|
@@ -25107,11 +26545,14 @@ export declare enum JiraProjectPermissionCategoryEnum {
|
|
|
25107
26545
|
}
|
|
25108
26546
|
export type JiraProjectRoleActorRecommendation = Node & {
|
|
25109
26547
|
__typename?: 'JiraProjectRoleActorRecommendation';
|
|
26548
|
+
executedBy?: Maybe<User>;
|
|
26549
|
+
executedGroupId?: Maybe<Scalars['String']['output']>;
|
|
25110
26550
|
id: Scalars['ID']['output'];
|
|
25111
26551
|
project?: Maybe<JiraProject>;
|
|
25112
26552
|
projectRoleActorAction?: Maybe<JiraProjectRoleActorRecommendationAction>;
|
|
25113
26553
|
recommendationId?: Maybe<Scalars['Long']['output']>;
|
|
25114
26554
|
status?: Maybe<JiraResourceUsageRecommendationStatus>;
|
|
26555
|
+
updated?: Maybe<Scalars['DateTime']['output']>;
|
|
25115
26556
|
user?: Maybe<JiraUserMetadata>;
|
|
25116
26557
|
};
|
|
25117
26558
|
export declare enum JiraProjectRoleActorRecommendationAction {
|
|
@@ -25285,9 +26726,12 @@ export type JiraQuery = {
|
|
|
25285
26726
|
jsonUserProperty?: Maybe<JiraEntityPropertyJson>;
|
|
25286
26727
|
jwmFilters?: Maybe<JiraWorkManagementFilterConnectionResult>;
|
|
25287
26728
|
jwmForm?: Maybe<JiraWorkManagementFormConfiguration>;
|
|
26729
|
+
jwmLicensing?: Maybe<JiraWorkManagementLicensing>;
|
|
25288
26730
|
jwmNavigation?: Maybe<JiraWorkManagementNavigation>;
|
|
25289
26731
|
jwmNavigationByProjectId?: Maybe<JiraWorkManagementNavigation>;
|
|
25290
26732
|
jwmNavigationByProjectKey?: Maybe<JiraWorkManagementNavigation>;
|
|
26733
|
+
jwmOverview?: Maybe<JiraWorkManagementGiraOverviewResult>;
|
|
26734
|
+
jwmOverviews?: Maybe<JiraWorkManagementGiraOverviewConnection>;
|
|
25291
26735
|
jwmViewItems?: Maybe<JiraWorkManagementViewItemConnectionResult>;
|
|
25292
26736
|
labelsFieldOptions?: Maybe<JiraLabelConnection>;
|
|
25293
26737
|
lockedIssueTypeIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
@@ -25638,6 +27082,9 @@ export type JiraQueryJwmFormArgs = {
|
|
|
25638
27082
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
25639
27083
|
formId: Scalars['ID']['input'];
|
|
25640
27084
|
};
|
|
27085
|
+
export type JiraQueryJwmLicensingArgs = {
|
|
27086
|
+
cloudId: Scalars['ID']['input'];
|
|
27087
|
+
};
|
|
25641
27088
|
export type JiraQueryJwmNavigationArgs = {
|
|
25642
27089
|
cloudId: Scalars['ID']['input'];
|
|
25643
27090
|
};
|
|
@@ -25648,6 +27095,14 @@ export type JiraQueryJwmNavigationByProjectKeyArgs = {
|
|
|
25648
27095
|
cloudId: Scalars['ID']['input'];
|
|
25649
27096
|
projectKey: Scalars['String']['input'];
|
|
25650
27097
|
};
|
|
27098
|
+
export type JiraQueryJwmOverviewArgs = {
|
|
27099
|
+
id: Scalars['ID']['input'];
|
|
27100
|
+
};
|
|
27101
|
+
export type JiraQueryJwmOverviewsArgs = {
|
|
27102
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
27103
|
+
cloudId: Scalars['ID']['input'];
|
|
27104
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
27105
|
+
};
|
|
25651
27106
|
export type JiraQueryJwmViewItemsArgs = {
|
|
25652
27107
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25653
27108
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -26966,6 +28421,7 @@ export type JiraServiceManagementRequestTypeTemplate = {
|
|
|
26966
28421
|
previewImageUrl?: Maybe<Scalars['URL']['output']>;
|
|
26967
28422
|
requestTypeIcon?: Maybe<JiraServiceManagementRequestTypeTemplateRequestTypeIcon>;
|
|
26968
28423
|
requestTypePortalDescription?: Maybe<Scalars['String']['output']>;
|
|
28424
|
+
supportedProjectStyles?: Maybe<Array<JiraProjectStyle>>;
|
|
26969
28425
|
};
|
|
26970
28426
|
export type JiraServiceManagementRequestTypeTemplateDefaultConfigurationDependencies = {
|
|
26971
28427
|
__typename?: 'JiraServiceManagementRequestTypeTemplateDefaultConfigurationDependencies';
|
|
@@ -27400,6 +28856,16 @@ export type JiraSingleVersionPickerFieldInput = {
|
|
|
27400
28856
|
fieldId: Scalars['ID']['input'];
|
|
27401
28857
|
version: JiraVersionInput;
|
|
27402
28858
|
};
|
|
28859
|
+
export type JiraSoftwareIssueSearchCustomInput = {
|
|
28860
|
+
additionalJql?: InputMaybe<Scalars['String']['input']>;
|
|
28861
|
+
context?: InputMaybe<JiraSoftwareIssueSearchCustomInputContext>;
|
|
28862
|
+
jiraEntityId: Scalars['ID']['input'];
|
|
28863
|
+
};
|
|
28864
|
+
export declare enum JiraSoftwareIssueSearchCustomInputContext {
|
|
28865
|
+
Backlog = "BACKLOG",
|
|
28866
|
+
Board = "BOARD",
|
|
28867
|
+
None = "NONE"
|
|
28868
|
+
}
|
|
27403
28869
|
export type JiraSoftwareProjectNavigationMetadata = {
|
|
27404
28870
|
__typename?: 'JiraSoftwareProjectNavigationMetadata';
|
|
27405
28871
|
boardId: Scalars['ID']['output'];
|
|
@@ -28977,6 +30443,52 @@ export type JiraWorkManagementFormField = {
|
|
|
28977
30443
|
fieldId: Scalars['ID']['output'];
|
|
28978
30444
|
id: Scalars['ID']['output'];
|
|
28979
30445
|
};
|
|
30446
|
+
export type JiraWorkManagementGiraCreateOverviewPayload = Payload & {
|
|
30447
|
+
__typename?: 'JiraWorkManagementGiraCreateOverviewPayload';
|
|
30448
|
+
errors?: Maybe<Array<MutationError>>;
|
|
30449
|
+
jwmOverview?: Maybe<JiraWorkManagementGiraOverview>;
|
|
30450
|
+
success: Scalars['Boolean']['output'];
|
|
30451
|
+
};
|
|
30452
|
+
export type JiraWorkManagementGiraDeleteOverviewPayload = Payload & {
|
|
30453
|
+
__typename?: 'JiraWorkManagementGiraDeleteOverviewPayload';
|
|
30454
|
+
errors?: Maybe<Array<MutationError>>;
|
|
30455
|
+
success: Scalars['Boolean']['output'];
|
|
30456
|
+
};
|
|
30457
|
+
export type JiraWorkManagementGiraOverview = Node & {
|
|
30458
|
+
__typename?: 'JiraWorkManagementGiraOverview';
|
|
30459
|
+
author?: Maybe<User>;
|
|
30460
|
+
fields?: Maybe<JiraJqlFieldConnection>;
|
|
30461
|
+
id: Scalars['ID']['output'];
|
|
30462
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
30463
|
+
projects?: Maybe<JiraProjectConnection>;
|
|
30464
|
+
theme?: Maybe<Scalars['String']['output']>;
|
|
30465
|
+
};
|
|
30466
|
+
export type JiraWorkManagementGiraOverviewFieldsArgs = {
|
|
30467
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30468
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30469
|
+
};
|
|
30470
|
+
export type JiraWorkManagementGiraOverviewProjectsArgs = {
|
|
30471
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30472
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30473
|
+
};
|
|
30474
|
+
export type JiraWorkManagementGiraOverviewConnection = {
|
|
30475
|
+
__typename?: 'JiraWorkManagementGiraOverviewConnection';
|
|
30476
|
+
edges?: Maybe<Array<Maybe<JiraWorkManagementGiraOverviewEdge>>>;
|
|
30477
|
+
pageInfo: PageInfo;
|
|
30478
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
30479
|
+
};
|
|
30480
|
+
export type JiraWorkManagementGiraOverviewEdge = {
|
|
30481
|
+
__typename?: 'JiraWorkManagementGiraOverviewEdge';
|
|
30482
|
+
cursor: Scalars['String']['output'];
|
|
30483
|
+
node?: Maybe<JiraWorkManagementGiraOverview>;
|
|
30484
|
+
};
|
|
30485
|
+
export type JiraWorkManagementGiraOverviewResult = JiraWorkManagementGiraOverview | QueryError;
|
|
30486
|
+
export type JiraWorkManagementGiraUpdateOverviewPayload = Payload & {
|
|
30487
|
+
__typename?: 'JiraWorkManagementGiraUpdateOverviewPayload';
|
|
30488
|
+
errors?: Maybe<Array<MutationError>>;
|
|
30489
|
+
jwmOverview?: Maybe<JiraWorkManagementGiraOverview>;
|
|
30490
|
+
success: Scalars['Boolean']['output'];
|
|
30491
|
+
};
|
|
28980
30492
|
export type JiraWorkManagementLicensing = {
|
|
28981
30493
|
__typename?: 'JiraWorkManagementLicensing';
|
|
28982
30494
|
currentUserSeatEdition?: Maybe<JiraWorkManagementUserLicenseSeatEdition>;
|
|
@@ -29594,10 +31106,18 @@ export type MarketplaceStoreInstallAppInput = {
|
|
|
29594
31106
|
appKey: Scalars['String']['input'];
|
|
29595
31107
|
target: MarketplaceStoreInstallAppTargetInput;
|
|
29596
31108
|
};
|
|
29597
|
-
export type
|
|
29598
|
-
__typename?: '
|
|
31109
|
+
export type MarketplaceStoreInstallAppResponse = {
|
|
31110
|
+
__typename?: 'MarketplaceStoreInstallAppResponse';
|
|
29599
31111
|
id: Scalars['ID']['output'];
|
|
31112
|
+
status: MarketplaceStoreInstallAppStatus;
|
|
29600
31113
|
};
|
|
31114
|
+
export declare enum MarketplaceStoreInstallAppStatus {
|
|
31115
|
+
InProgress = "IN_PROGRESS",
|
|
31116
|
+
Pending = "PENDING",
|
|
31117
|
+
ProvisioningFailure = "PROVISIONING_FAILURE",
|
|
31118
|
+
Success = "SUCCESS",
|
|
31119
|
+
TimedOut = "TIMED_OUT"
|
|
31120
|
+
}
|
|
29601
31121
|
export type MarketplaceStoreInstallAppTargetInput = {
|
|
29602
31122
|
cloudId: Scalars['ID']['input'];
|
|
29603
31123
|
product: MarketplaceStoreInstallationTargetProduct;
|
|
@@ -29608,14 +31128,14 @@ export declare enum MarketplaceStoreInstallationTargetProduct {
|
|
|
29608
31128
|
}
|
|
29609
31129
|
export type MarketplaceStoreMutationApi = {
|
|
29610
31130
|
__typename?: 'MarketplaceStoreMutationApi';
|
|
29611
|
-
installApp:
|
|
31131
|
+
installApp: MarketplaceStoreInstallAppResponse;
|
|
29612
31132
|
};
|
|
29613
31133
|
export type MarketplaceStoreMutationApiInstallAppArgs = {
|
|
29614
31134
|
input: MarketplaceStoreInstallAppInput;
|
|
29615
31135
|
};
|
|
29616
31136
|
export type MarketplaceStoreQueryApi = {
|
|
29617
31137
|
__typename?: 'MarketplaceStoreQueryApi';
|
|
29618
|
-
installAppStatus:
|
|
31138
|
+
installAppStatus: MarketplaceStoreInstallAppResponse;
|
|
29619
31139
|
};
|
|
29620
31140
|
export type MarketplaceStoreQueryApiInstallAppStatusArgs = {
|
|
29621
31141
|
id: Scalars['ID']['input'];
|
|
@@ -29714,6 +31234,7 @@ export type MoveSprintUpResponse = MutationResponse & {
|
|
|
29714
31234
|
};
|
|
29715
31235
|
export type Mutation = {
|
|
29716
31236
|
__typename?: 'Mutation';
|
|
31237
|
+
ForgeAi?: Maybe<ForgeAiMutation>;
|
|
29717
31238
|
addBetaUserAsSiteCreator?: Maybe<AddBetaUserAsSiteCreatorPayload>;
|
|
29718
31239
|
admin?: Maybe<AdminMutation>;
|
|
29719
31240
|
appRecommendations?: Maybe<AppRecMutation>;
|
|
@@ -30443,6 +31964,18 @@ export type NadelHydrationFromArgument = {
|
|
|
30443
31964
|
export declare enum NadelHydrationTemplate {
|
|
30444
31965
|
NadelPlaceholder = "NADEL_PLACEHOLDER"
|
|
30445
31966
|
}
|
|
31967
|
+
export type NadelWhenCondition = {
|
|
31968
|
+
result: NadelWhenConditionResult;
|
|
31969
|
+
};
|
|
31970
|
+
export type NadelWhenConditionPredicate = {
|
|
31971
|
+
equals?: InputMaybe<Scalars['JSON']['input']>;
|
|
31972
|
+
matches?: InputMaybe<Scalars['String']['input']>;
|
|
31973
|
+
startsWith?: InputMaybe<Scalars['String']['input']>;
|
|
31974
|
+
};
|
|
31975
|
+
export type NadelWhenConditionResult = {
|
|
31976
|
+
predicate: NadelWhenConditionPredicate;
|
|
31977
|
+
sourceField: Scalars['String']['input'];
|
|
31978
|
+
};
|
|
30446
31979
|
export type NewCard = {
|
|
30447
31980
|
assigneeId?: InputMaybe<Scalars['ID']['input']>;
|
|
30448
31981
|
fixVersions?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -32836,6 +34369,7 @@ export type QueryNlpFollowUpArgs = {
|
|
|
32836
34369
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
32837
34370
|
};
|
|
32838
34371
|
export type QueryNlpSearchArgs = {
|
|
34372
|
+
experience?: InputMaybe<Scalars['String']['input']>;
|
|
32839
34373
|
followups_enabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32840
34374
|
locale?: InputMaybe<Scalars['String']['input']>;
|
|
32841
34375
|
locations: Array<Scalars['String']['input']>;
|
|
@@ -34689,6 +36223,7 @@ export type ShepherdActivityHighlight = {
|
|
|
34689
36223
|
__typename?: 'ShepherdActivityHighlight';
|
|
34690
36224
|
action?: Maybe<ShepherdActionType>;
|
|
34691
36225
|
actor?: Maybe<ShepherdActor>;
|
|
36226
|
+
eventIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
34692
36227
|
histogram?: Maybe<Array<ShepherdActivityHistogramBucket>>;
|
|
34693
36228
|
subject?: Maybe<ShepherdSubject>;
|
|
34694
36229
|
time?: Maybe<ShepherdTime>;
|
|
@@ -34696,6 +36231,7 @@ export type ShepherdActivityHighlight = {
|
|
|
34696
36231
|
export type ShepherdActivityHighlightInput = {
|
|
34697
36232
|
action?: InputMaybe<ShepherdActionType>;
|
|
34698
36233
|
actor?: InputMaybe<Scalars['ID']['input']>;
|
|
36234
|
+
eventIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
34699
36235
|
histogram?: InputMaybe<Array<InputMaybe<ShepherdHistogramBucketInput>>>;
|
|
34700
36236
|
subject?: InputMaybe<ShepherdSubjectInput>;
|
|
34701
36237
|
time: ShepherdTimeInput;
|
|
@@ -34852,6 +36388,9 @@ export declare enum ShepherdAlertTemplateType {
|
|
|
34852
36388
|
CreatedSamlConfig = "CREATED_SAML_CONFIG",
|
|
34853
36389
|
CreatedTunnel = "CREATED_TUNNEL",
|
|
34854
36390
|
CreatedUserProvisioning = "CREATED_USER_PROVISIONING",
|
|
36391
|
+
DataSecurityPolicyActivated = "DATA_SECURITY_POLICY_ACTIVATED",
|
|
36392
|
+
DataSecurityPolicyDeactivated = "DATA_SECURITY_POLICY_DEACTIVATED",
|
|
36393
|
+
DataSecurityPolicyDeleted = "DATA_SECURITY_POLICY_DELETED",
|
|
34855
36394
|
Default = "DEFAULT",
|
|
34856
36395
|
DeletedAuthPolicy = "DELETED_AUTH_POLICY",
|
|
34857
36396
|
DeletedDomain = "DELETED_DOMAIN",
|
|
@@ -35105,6 +36644,7 @@ export type ShepherdQueryShepherdActivityArgs = {
|
|
|
35105
36644
|
actor?: InputMaybe<Scalars['ID']['input']>;
|
|
35106
36645
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
35107
36646
|
endTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
36647
|
+
eventId?: InputMaybe<Scalars['ID']['input']>;
|
|
35108
36648
|
first: Scalars['Int']['input'];
|
|
35109
36649
|
orgId?: InputMaybe<Scalars['String']['input']>;
|
|
35110
36650
|
startTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
@@ -37200,6 +38740,7 @@ export type TrelloBoardPrefs = {
|
|
|
37200
38740
|
calendarFeedEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
37201
38741
|
canInvite?: Maybe<Scalars['Boolean']['output']>;
|
|
37202
38742
|
cardAging?: Maybe<Scalars['String']['output']>;
|
|
38743
|
+
cardCounts?: Maybe<Scalars['Boolean']['output']>;
|
|
37203
38744
|
cardCovers?: Maybe<Scalars['Boolean']['output']>;
|
|
37204
38745
|
comments?: Maybe<Scalars['String']['output']>;
|
|
37205
38746
|
hiddenPowerUpBoardButtons?: Maybe<Array<TrelloPowerUp>>;
|
|
@@ -38124,6 +39665,7 @@ export type TrelloWorkspace = Node & {
|
|
|
38124
39665
|
members?: Maybe<TrelloWorkspaceMembershipsConnection>;
|
|
38125
39666
|
name: Scalars['String']['output'];
|
|
38126
39667
|
objectId: Scalars['ID']['output'];
|
|
39668
|
+
offering?: Maybe<Scalars['String']['output']>;
|
|
38127
39669
|
prefs: TrelloWorkspacePrefs;
|
|
38128
39670
|
premiumFeatures?: Maybe<Array<Scalars['String']['output']>>;
|
|
38129
39671
|
products?: Maybe<Array<Maybe<TrelloProduct>>>;
|
|
@@ -38906,6 +40448,7 @@ export type VirtualAgentCreateChatChannelPayload = Payload & {
|
|
|
38906
40448
|
success: Scalars['Boolean']['output'];
|
|
38907
40449
|
};
|
|
38908
40450
|
export type VirtualAgentCreateConfigurationInput = {
|
|
40451
|
+
defaultJiraRequestTypeId?: InputMaybe<Scalars['String']['input']>;
|
|
38909
40452
|
respondToQueries?: InputMaybe<Scalars['Boolean']['input']>;
|
|
38910
40453
|
};
|
|
38911
40454
|
export type VirtualAgentCreateConfigurationPayload = Payload & {
|