@forge/cli-shared 6.5.2-experimental-f38fac9 → 6.5.2-next.0
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.
|
@@ -189,7 +189,6 @@ export declare type ActionsActionConfigurationParameter = {
|
|
|
189
189
|
__typename?: 'ActionsActionConfigurationParameter';
|
|
190
190
|
default?: Maybe<Scalars['String']['output']>;
|
|
191
191
|
description?: Maybe<Scalars['String']['output']>;
|
|
192
|
-
format?: Maybe<Scalars['String']['output']>;
|
|
193
192
|
maximum?: Maybe<Scalars['Int']['output']>;
|
|
194
193
|
minimum?: Maybe<Scalars['Int']['output']>;
|
|
195
194
|
required: Scalars['Boolean']['output'];
|
|
@@ -299,7 +298,6 @@ export declare type ActionsDescription = {
|
|
|
299
298
|
default: Scalars['String']['output'];
|
|
300
299
|
};
|
|
301
300
|
export declare type ActionsExecuteActionFilter = {
|
|
302
|
-
actionId?: InputMaybe<Scalars['String']['input']>;
|
|
303
301
|
extensionAri?: InputMaybe<Scalars['String']['input']>;
|
|
304
302
|
integrationKey?: InputMaybe<Scalars['String']['input']>;
|
|
305
303
|
oauthClientId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -1172,7 +1170,6 @@ export declare type AppInstallation = {
|
|
|
1172
1170
|
createdBy?: Maybe<User>;
|
|
1173
1171
|
dataClassifications?: Maybe<EcosystemDataClassificationsContext>;
|
|
1174
1172
|
id: Scalars['ID']['output'];
|
|
1175
|
-
installationConfigurations?: Maybe<Array<Maybe<AppInstallationConfig>>>;
|
|
1176
1173
|
installationContext: Scalars['ID']['output'];
|
|
1177
1174
|
isRecoverable: Scalars['Boolean']['output'];
|
|
1178
1175
|
license?: Maybe<AppInstallationLicense>;
|
|
@@ -1190,13 +1187,6 @@ export declare type AppInstallationByIndexEdge = {
|
|
|
1190
1187
|
cursor: Scalars['String']['output'];
|
|
1191
1188
|
node?: Maybe<AppInstallation>;
|
|
1192
1189
|
};
|
|
1193
|
-
export declare type AppInstallationConfig = {
|
|
1194
|
-
__typename?: 'AppInstallationConfig';
|
|
1195
|
-
id: Scalars['ID']['output'];
|
|
1196
|
-
idType: EcosystemAppInstallationConfigIdType;
|
|
1197
|
-
key: EcosystemInstallationOverrideKeys;
|
|
1198
|
-
value: Scalars['Boolean']['output'];
|
|
1199
|
-
};
|
|
1200
1190
|
export declare type AppInstallationConnection = {
|
|
1201
1191
|
__typename?: 'AppInstallationConnection';
|
|
1202
1192
|
edges?: Maybe<Array<Maybe<AppInstallationEdge>>>;
|
|
@@ -1233,6 +1223,7 @@ export declare type AppInstallationEdge = {
|
|
|
1233
1223
|
};
|
|
1234
1224
|
export declare type AppInstallationInput = {
|
|
1235
1225
|
appId: Scalars['ID']['input'];
|
|
1226
|
+
async?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1236
1227
|
environmentKey: Scalars['String']['input'];
|
|
1237
1228
|
installationContext: Scalars['ID']['input'];
|
|
1238
1229
|
licenseOverride?: InputMaybe<LicenseOverrideState>;
|
|
@@ -1296,6 +1287,7 @@ export declare type AppInstallationUnsubscribeTask = AppInstallationTask & {
|
|
|
1296
1287
|
};
|
|
1297
1288
|
export declare type AppInstallationUpgradeInput = {
|
|
1298
1289
|
appId: Scalars['ID']['input'];
|
|
1290
|
+
async?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1299
1291
|
environmentKey: Scalars['String']['input'];
|
|
1300
1292
|
installationContext: Scalars['ID']['input'];
|
|
1301
1293
|
sourceBillingType?: InputMaybe<SourceBillingType>;
|
|
@@ -1709,6 +1701,7 @@ export declare type AppTunnelDefinitions = {
|
|
|
1709
1701
|
};
|
|
1710
1702
|
export declare type AppUninstallationInput = {
|
|
1711
1703
|
appId: Scalars['ID']['input'];
|
|
1704
|
+
async?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1712
1705
|
environmentKey: Scalars['String']['input'];
|
|
1713
1706
|
installationContext?: InputMaybe<Scalars['ID']['input']>;
|
|
1714
1707
|
installationId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -2283,10 +2276,14 @@ export declare type BitbucketPullRequest = Node & {
|
|
|
2283
2276
|
};
|
|
2284
2277
|
export declare type BitbucketQuery = {
|
|
2285
2278
|
__typename?: 'BitbucketQuery';
|
|
2279
|
+
bitbucketPullRequests?: Maybe<Array<Maybe<BitbucketPullRequest>>>;
|
|
2286
2280
|
bitbucketRepositories?: Maybe<Array<Maybe<BitbucketRepository>>>;
|
|
2287
2281
|
bitbucketRepository?: Maybe<BitbucketRepository>;
|
|
2288
2282
|
bitbucketWorkspace?: Maybe<BitbucketWorkspace>;
|
|
2289
2283
|
};
|
|
2284
|
+
export declare type BitbucketQueryBitbucketPullRequestsArgs = {
|
|
2285
|
+
ids: Array<Scalars['ID']['input']>;
|
|
2286
|
+
};
|
|
2290
2287
|
export declare type BitbucketQueryBitbucketRepositoriesArgs = {
|
|
2291
2288
|
ids: Array<Scalars['ID']['input']>;
|
|
2292
2289
|
};
|
|
@@ -2483,8 +2480,7 @@ export declare type BoardScopeCardsArgs = {
|
|
|
2483
2480
|
customFilterIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
2484
2481
|
};
|
|
2485
2482
|
export declare type BoardScopeFilteredCardIdsArgs = {
|
|
2486
|
-
customFilterIds
|
|
2487
|
-
filterJql?: InputMaybe<Scalars['String']['input']>;
|
|
2483
|
+
customFilterIds: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
2488
2484
|
issueIds: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
2489
2485
|
};
|
|
2490
2486
|
export declare type BoardScopeIssuesArgs = {
|
|
@@ -3869,7 +3865,6 @@ export declare type CommerceTransactionAccountExperienceCapabilities = {
|
|
|
3869
3865
|
};
|
|
3870
3866
|
export declare type CommerceTrial = {
|
|
3871
3867
|
endTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
3872
|
-
startTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
3873
3868
|
};
|
|
3874
3869
|
export declare type CompanyHubFeature = {
|
|
3875
3870
|
__typename?: 'CompanyHubFeature';
|
|
@@ -8482,45 +8477,6 @@ export declare type ConfluenceDeletePagePropertyPayload = Payload & {
|
|
|
8482
8477
|
errors?: Maybe<Array<MutationError>>;
|
|
8483
8478
|
success: Scalars['Boolean']['output'];
|
|
8484
8479
|
};
|
|
8485
|
-
export declare type ConfluenceDeleteSubCalendarAllFutureEventsInput = {
|
|
8486
|
-
recurUntil?: InputMaybe<Scalars['String']['input']>;
|
|
8487
|
-
subCalendarId: Scalars['ID']['input'];
|
|
8488
|
-
uid: Scalars['ID']['input'];
|
|
8489
|
-
};
|
|
8490
|
-
export declare type ConfluenceDeleteSubCalendarAllFutureEventsPayload = ConfluenceConflictedPayload & {
|
|
8491
|
-
__typename?: 'ConfluenceDeleteSubCalendarAllFutureEventsPayload';
|
|
8492
|
-
errors?: Maybe<Array<ConfluenceConflictedMutationError>>;
|
|
8493
|
-
success: Scalars['Boolean']['output'];
|
|
8494
|
-
};
|
|
8495
|
-
export declare type ConfluenceDeleteSubCalendarEventInput = {
|
|
8496
|
-
subCalendarId: Scalars['ID']['input'];
|
|
8497
|
-
uid: Scalars['ID']['input'];
|
|
8498
|
-
};
|
|
8499
|
-
export declare type ConfluenceDeleteSubCalendarEventPayload = ConfluenceConflictedPayload & {
|
|
8500
|
-
__typename?: 'ConfluenceDeleteSubCalendarEventPayload';
|
|
8501
|
-
errors?: Maybe<Array<ConfluenceConflictedMutationError>>;
|
|
8502
|
-
success: Scalars['Boolean']['output'];
|
|
8503
|
-
};
|
|
8504
|
-
export declare type ConfluenceDeleteSubCalendarHiddenEventsInput = {
|
|
8505
|
-
subCalendarId: Scalars['ID']['input'];
|
|
8506
|
-
};
|
|
8507
|
-
export declare type ConfluenceDeleteSubCalendarHiddenEventsPayload = ConfluenceConflictedPayload & {
|
|
8508
|
-
__typename?: 'ConfluenceDeleteSubCalendarHiddenEventsPayload';
|
|
8509
|
-
errors?: Maybe<Array<ConfluenceConflictedMutationError>>;
|
|
8510
|
-
subCalendarIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
8511
|
-
success: Scalars['Boolean']['output'];
|
|
8512
|
-
};
|
|
8513
|
-
export declare type ConfluenceDeleteSubCalendarSingleEventInput = {
|
|
8514
|
-
originalStart?: InputMaybe<Scalars['String']['input']>;
|
|
8515
|
-
recurrenceId?: InputMaybe<Scalars['ID']['input']>;
|
|
8516
|
-
subCalendarId: Scalars['ID']['input'];
|
|
8517
|
-
uid: Scalars['ID']['input'];
|
|
8518
|
-
};
|
|
8519
|
-
export declare type ConfluenceDeleteSubCalendarSingleEventPayload = ConfluenceConflictedPayload & {
|
|
8520
|
-
__typename?: 'ConfluenceDeleteSubCalendarSingleEventPayload';
|
|
8521
|
-
errors?: Maybe<Array<ConfluenceConflictedMutationError>>;
|
|
8522
|
-
success: Scalars['Boolean']['output'];
|
|
8523
|
-
};
|
|
8524
8480
|
export declare enum ConfluenceEdition {
|
|
8525
8481
|
Free = "FREE",
|
|
8526
8482
|
Premium = "PREMIUM",
|
|
@@ -8618,14 +8574,6 @@ export declare enum ConfluenceInlineTaskStatus {
|
|
|
8618
8574
|
Complete = "COMPLETE",
|
|
8619
8575
|
Incomplete = "INCOMPLETE"
|
|
8620
8576
|
}
|
|
8621
|
-
export declare type ConfluenceInviteUserInput = {
|
|
8622
|
-
inviteeIds: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
8623
|
-
};
|
|
8624
|
-
export declare type ConfluenceInviteUserPayload = {
|
|
8625
|
-
__typename?: 'ConfluenceInviteUserPayload';
|
|
8626
|
-
errors?: Maybe<Array<ConfluenceConflictedMutationError>>;
|
|
8627
|
-
success: Scalars['Boolean']['output'];
|
|
8628
|
-
};
|
|
8629
8577
|
export declare type ConfluenceLabel = {
|
|
8630
8578
|
__typename?: 'ConfluenceLabel';
|
|
8631
8579
|
id?: Maybe<Scalars['ID']['output']>;
|
|
@@ -14662,24 +14610,6 @@ export declare type ConfluenceQueryApiWhiteboardArgs = {
|
|
|
14662
14610
|
export declare type ConfluenceQueryApiWhiteboardsArgs = {
|
|
14663
14611
|
ids: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
14664
14612
|
};
|
|
14665
|
-
export declare type ConfluenceRedactionMetadata = {
|
|
14666
|
-
__typename?: 'ConfluenceRedactionMetadata';
|
|
14667
|
-
creationDate?: Maybe<Scalars['String']['output']>;
|
|
14668
|
-
creatorAccountId?: Maybe<Scalars['String']['output']>;
|
|
14669
|
-
id?: Maybe<Scalars['String']['output']>;
|
|
14670
|
-
redactionReason?: Maybe<Scalars['String']['output']>;
|
|
14671
|
-
};
|
|
14672
|
-
export declare type ConfluenceRedactionMetadataConnection = {
|
|
14673
|
-
__typename?: 'ConfluenceRedactionMetadataConnection';
|
|
14674
|
-
edges?: Maybe<Array<Maybe<ConfluenceRedactionMetadataEdge>>>;
|
|
14675
|
-
nodes?: Maybe<Array<Maybe<ConfluenceRedactionMetadata>>>;
|
|
14676
|
-
pageInfo: PageInfo;
|
|
14677
|
-
};
|
|
14678
|
-
export declare type ConfluenceRedactionMetadataEdge = {
|
|
14679
|
-
__typename?: 'ConfluenceRedactionMetadataEdge';
|
|
14680
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
14681
|
-
node?: Maybe<ConfluenceRedactionMetadata>;
|
|
14682
|
-
};
|
|
14683
14613
|
export declare type ConfluenceReopenInlineCommentInput = {
|
|
14684
14614
|
id: Scalars['ID']['input'];
|
|
14685
14615
|
};
|
|
@@ -14905,15 +14835,6 @@ export declare type ConfluenceUpdateSpaceSettingsPayload = Payload & {
|
|
|
14905
14835
|
errors?: Maybe<Array<MutationError>>;
|
|
14906
14836
|
success: Scalars['Boolean']['output'];
|
|
14907
14837
|
};
|
|
14908
|
-
export declare type ConfluenceUpdateSubCalendarHiddenEventsInput = {
|
|
14909
|
-
subCalendarId: Scalars['ID']['input'];
|
|
14910
|
-
};
|
|
14911
|
-
export declare type ConfluenceUpdateSubCalendarHiddenEventsPayload = ConfluenceConflictedPayload & {
|
|
14912
|
-
__typename?: 'ConfluenceUpdateSubCalendarHiddenEventsPayload';
|
|
14913
|
-
errors?: Maybe<Array<ConfluenceConflictedMutationError>>;
|
|
14914
|
-
subCalendarIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
14915
|
-
success: Scalars['Boolean']['output'];
|
|
14916
|
-
};
|
|
14917
14838
|
export declare type ConfluenceUpdateValueBlogPostPropertyInput = {
|
|
14918
14839
|
blogPostId: Scalars['ID']['input'];
|
|
14919
14840
|
key: Scalars['String']['input'];
|
|
@@ -15764,9 +15685,7 @@ export declare type Content = {
|
|
|
15764
15685
|
contentReactionsSummary?: Maybe<ReactionsSummaryResponse>;
|
|
15765
15686
|
contentState?: Maybe<ContentState>;
|
|
15766
15687
|
creatorId?: Maybe<Scalars['String']['output']>;
|
|
15767
|
-
currentUserHasAncestorWatchingChildren?: Maybe<Scalars['Boolean']['output']>;
|
|
15768
15688
|
currentUserIsWatching: Scalars['Boolean']['output'];
|
|
15769
|
-
currentUserIsWatchingChildren?: Maybe<Scalars['Boolean']['output']>;
|
|
15770
15689
|
deletableDescendantsCount: Scalars['Long']['output'];
|
|
15771
15690
|
dynamicMobileBody?: Maybe<ContentBody>;
|
|
15772
15691
|
embeddedProduct?: Maybe<Scalars['String']['output']>;
|
|
@@ -15795,8 +15714,6 @@ export declare type Content = {
|
|
|
15795
15714
|
operations?: Maybe<Array<Maybe<OperationCheckResult>>>;
|
|
15796
15715
|
outgoingLinks?: Maybe<OutgoingLinks>;
|
|
15797
15716
|
properties?: Maybe<PaginatedJsonContentPropertyList>;
|
|
15798
|
-
redactionMetadata?: Maybe<ConfluenceRedactionMetadataConnection>;
|
|
15799
|
-
redactionMetadataCount?: Maybe<Scalars['Int']['output']>;
|
|
15800
15717
|
referenceId?: Maybe<Scalars['String']['output']>;
|
|
15801
15718
|
restrictions?: Maybe<ContentRestrictions>;
|
|
15802
15719
|
schedulePublishDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -15888,10 +15805,6 @@ export declare type ContentPropertiesArgs = {
|
|
|
15888
15805
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
15889
15806
|
start?: InputMaybe<Scalars['Int']['input']>;
|
|
15890
15807
|
};
|
|
15891
|
-
export declare type ContentRedactionMetadataArgs = {
|
|
15892
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
15893
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
15894
|
-
};
|
|
15895
15808
|
export declare enum ContentAccessInputType {
|
|
15896
15809
|
EveryoneCanEdit = "EVERYONE_CAN_EDIT",
|
|
15897
15810
|
EveryoneCanView = "EVERYONE_CAN_VIEW",
|
|
@@ -15919,7 +15832,6 @@ export declare type ContentAnalyticsLastViewedAtByPageItem = {
|
|
|
15919
15832
|
};
|
|
15920
15833
|
export declare type ContentAnalyticsPageViewInfo = {
|
|
15921
15834
|
__typename?: 'ContentAnalyticsPageViewInfo';
|
|
15922
|
-
isEngaged?: Maybe<Scalars['Boolean']['output']>;
|
|
15923
15835
|
lastVersionViewed: Scalars['Int']['output'];
|
|
15924
15836
|
lastVersionViewedNumber?: Maybe<Scalars['Int']['output']>;
|
|
15925
15837
|
lastVersionViewedUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -20188,12 +20100,6 @@ export declare type DevAiGenericMutationErrorExtension = MutationErrorExtension
|
|
|
20188
20100
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
20189
20101
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
20190
20102
|
};
|
|
20191
|
-
export declare type DevAiInvokeAutodevRovoAgentPayload = Payload & {
|
|
20192
|
-
__typename?: 'DevAiInvokeAutodevRovoAgentPayload';
|
|
20193
|
-
errors?: Maybe<Array<MutationError>>;
|
|
20194
|
-
jobId?: Maybe<Scalars['ID']['output']>;
|
|
20195
|
-
success: Scalars['Boolean']['output'];
|
|
20196
|
-
};
|
|
20197
20103
|
export declare enum DevAiIssueScopingLabel {
|
|
20198
20104
|
Complex = "COMPLEX",
|
|
20199
20105
|
InScope = "IN_SCOPE",
|
|
@@ -20258,22 +20164,6 @@ export declare type DevAiPlaintextAutodevLog = DevAiAutodevLog & {
|
|
|
20258
20164
|
status?: Maybe<DevAiAutodevLogStatus>;
|
|
20259
20165
|
timestamp?: Maybe<Scalars['DateTime']['output']>;
|
|
20260
20166
|
};
|
|
20261
|
-
export declare type DevAiRovoAgent = {
|
|
20262
|
-
__typename?: 'DevAiRovoAgent';
|
|
20263
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
20264
|
-
id: Scalars['ID']['output'];
|
|
20265
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
20266
|
-
};
|
|
20267
|
-
export declare type DevAiRovoAgentConnection = {
|
|
20268
|
-
__typename?: 'DevAiRovoAgentConnection';
|
|
20269
|
-
edges?: Maybe<Array<Maybe<DevAiRovoAgentEdge>>>;
|
|
20270
|
-
pageInfo: PageInfo;
|
|
20271
|
-
};
|
|
20272
|
-
export declare type DevAiRovoAgentEdge = {
|
|
20273
|
-
__typename?: 'DevAiRovoAgentEdge';
|
|
20274
|
-
cursor: Scalars['String']['output'];
|
|
20275
|
-
node?: Maybe<DevAiRovoAgent>;
|
|
20276
|
-
};
|
|
20277
20167
|
export declare type DevAiRunAutofixScanInput = {
|
|
20278
20168
|
repoUrl: Scalars['URL']['input'];
|
|
20279
20169
|
restartIfCurrentlyRunning?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -21993,10 +21883,6 @@ export declare type EarliestViewViewedForUser = {
|
|
|
21993
21883
|
datetime?: Maybe<Scalars['String']['output']>;
|
|
21994
21884
|
};
|
|
21995
21885
|
export declare type EcosystemApp = App | EcosystemConnectApp;
|
|
21996
|
-
export declare enum EcosystemAppInstallationConfigIdType {
|
|
21997
|
-
Cloud = "CLOUD",
|
|
21998
|
-
Installation = "INSTALLATION"
|
|
21999
|
-
}
|
|
22000
21886
|
export declare type EcosystemAppInstallationOverridesInput = {
|
|
22001
21887
|
licenseModes?: InputMaybe<Array<EcosystemLicenseMode>>;
|
|
22002
21888
|
usersWithAccess?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -22116,9 +22002,6 @@ export declare type EcosystemDataClassificationsContext = {
|
|
|
22116
22002
|
hasConstraints?: Maybe<Scalars['Boolean']['output']>;
|
|
22117
22003
|
id: Scalars['ID']['output'];
|
|
22118
22004
|
};
|
|
22119
|
-
export declare enum EcosystemInstallationOverrideKeys {
|
|
22120
|
-
AllowEgressAnalytics = "ALLOW_EGRESS_ANALYTICS"
|
|
22121
|
-
}
|
|
22122
22005
|
export declare enum EcosystemInstallationRecoveryMode {
|
|
22123
22006
|
FreshInstall = "FRESH_INSTALL",
|
|
22124
22007
|
RecoverPreviousInstall = "RECOVER_PREVIOUS_INSTALL"
|
|
@@ -28415,19 +28298,6 @@ export declare type GraphStore = {
|
|
|
28415
28298
|
componentLinkedJswIssueRelationship?: Maybe<GraphStoreFullComponentLinkedJswIssueConnection>;
|
|
28416
28299
|
confluencePageHasConfluenceComment?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceCommentConnection>;
|
|
28417
28300
|
confluencePageHasConfluenceCommentInverse?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceCommentInverseConnection>;
|
|
28418
|
-
confluencePageHasConfluenceDatabase?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceDatabaseConnection>;
|
|
28419
|
-
confluencePageHasConfluenceDatabaseInverse?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceDatabaseInverseConnection>;
|
|
28420
|
-
confluencePageHasParentPage?: Maybe<GraphStoreSimplifiedConfluencePageHasParentPageConnection>;
|
|
28421
|
-
confluencePageHasParentPageInverse?: Maybe<GraphStoreSimplifiedConfluencePageHasParentPageInverseConnection>;
|
|
28422
|
-
confluencePageSharedWithGroupInverse?: Maybe<GraphStoreSimplifiedConfluencePageSharedWithGroupInverseConnection>;
|
|
28423
|
-
confluencePageSharedWithUser?: Maybe<GraphStoreSimplifiedConfluencePageSharedWithUserConnection>;
|
|
28424
|
-
confluencePageSharedWithUserInverse?: Maybe<GraphStoreSimplifiedConfluencePageSharedWithUserInverseConnection>;
|
|
28425
|
-
confluenceSpaceHasConfluenceBlogpost?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceBlogpostConnection>;
|
|
28426
|
-
confluenceSpaceHasConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceBlogpostInverseConnection>;
|
|
28427
|
-
confluenceSpaceHasConfluenceDatabase?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceDatabaseConnection>;
|
|
28428
|
-
confluenceSpaceHasConfluenceDatabaseInverse?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceDatabaseInverseConnection>;
|
|
28429
|
-
confluenceSpaceHasConfluenceWhiteboard?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardConnection>;
|
|
28430
|
-
confluenceSpaceHasConfluenceWhiteboardInverse?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardInverseConnection>;
|
|
28431
28301
|
contentReferencedEntity?: Maybe<GraphStoreSimplifiedContentReferencedEntityConnection>;
|
|
28432
28302
|
contentReferencedEntityBatch?: Maybe<GraphStoreBatchContentReferencedEntityConnection>;
|
|
28433
28303
|
contentReferencedEntityInverse?: Maybe<GraphStoreSimplifiedContentReferencedEntityInverseConnection>;
|
|
@@ -28456,7 +28326,6 @@ export declare type GraphStore = {
|
|
|
28456
28326
|
focusAreaHasProjectBatch?: Maybe<GraphStoreBatchFocusAreaHasProjectConnection>;
|
|
28457
28327
|
focusAreaHasProjectInverse?: Maybe<GraphStoreSimplifiedFocusAreaHasProjectInverseConnection>;
|
|
28458
28328
|
focusAreaHasProjectInverseBatch?: Maybe<GraphStoreBatchFocusAreaHasProjectConnection>;
|
|
28459
|
-
groupCanViewConfluenceSpace?: Maybe<GraphStoreSimplifiedGroupCanViewConfluenceSpaceConnection>;
|
|
28460
28329
|
incidentAssociatedPostIncidentReview?: Maybe<GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewConnection>;
|
|
28461
28330
|
incidentAssociatedPostIncidentReviewBatch?: Maybe<GraphStoreBatchIncidentAssociatedPostIncidentReviewConnection>;
|
|
28462
28331
|
incidentAssociatedPostIncidentReviewInverse?: Maybe<GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewInverseConnection>;
|
|
@@ -28589,8 +28458,6 @@ export declare type GraphStore = {
|
|
|
28589
28458
|
operationsContainerImprovedByActionItemInverse?: Maybe<GraphStoreSimplifiedOperationsContainerImprovedByActionItemInverseConnection>;
|
|
28590
28459
|
operationsContainerImprovedByActionItemInverseRelationship?: Maybe<GraphStoreFullOperationsContainerImprovedByActionItemConnection>;
|
|
28591
28460
|
operationsContainerImprovedByActionItemRelationship?: Maybe<GraphStoreFullOperationsContainerImprovedByActionItemConnection>;
|
|
28592
|
-
parentCommentHasChildComment?: Maybe<GraphStoreSimplifiedParentCommentHasChildCommentConnection>;
|
|
28593
|
-
parentCommentHasChildCommentInverse?: Maybe<GraphStoreSimplifiedParentCommentHasChildCommentInverseConnection>;
|
|
28594
28461
|
parentDocumentHasChildDocument?: Maybe<GraphStoreSimplifiedParentDocumentHasChildDocumentConnection>;
|
|
28595
28462
|
parentDocumentHasChildDocumentInverse?: Maybe<GraphStoreSimplifiedParentDocumentHasChildDocumentInverseConnection>;
|
|
28596
28463
|
parentDocumentHasChildDocumentInverseRelationship?: Maybe<GraphStoreFullParentDocumentHasChildDocumentConnection>;
|
|
@@ -28773,58 +28640,24 @@ export declare type GraphStore = {
|
|
|
28773
28640
|
userAuthoredCommitInverse?: Maybe<GraphStoreSimplifiedUserAuthoredCommitInverseConnection>;
|
|
28774
28641
|
userAuthoredPr?: Maybe<GraphStoreSimplifiedUserAuthoredPrConnection>;
|
|
28775
28642
|
userAuthoredPrInverse?: Maybe<GraphStoreSimplifiedUserAuthoredPrInverseConnection>;
|
|
28776
|
-
userCanViewConfluenceSpace?: Maybe<GraphStoreSimplifiedUserCanViewConfluenceSpaceConnection>;
|
|
28777
|
-
userCanViewConfluenceSpaceInverse?: Maybe<GraphStoreSimplifiedUserCanViewConfluenceSpaceInverseConnection>;
|
|
28778
|
-
userCollaboratedOnDocument?: Maybe<GraphStoreSimplifiedUserCollaboratedOnDocumentConnection>;
|
|
28779
|
-
userCollaboratedOnDocumentInverse?: Maybe<GraphStoreSimplifiedUserCollaboratedOnDocumentInverseConnection>;
|
|
28780
|
-
userContributedConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserContributedConfluenceBlogpostConnection>;
|
|
28781
|
-
userContributedConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserContributedConfluenceBlogpostInverseConnection>;
|
|
28782
|
-
userContributedConfluenceDatabase?: Maybe<GraphStoreSimplifiedUserContributedConfluenceDatabaseConnection>;
|
|
28783
|
-
userContributedConfluenceDatabaseInverse?: Maybe<GraphStoreSimplifiedUserContributedConfluenceDatabaseInverseConnection>;
|
|
28784
|
-
userContributedConfluencePage?: Maybe<GraphStoreSimplifiedUserContributedConfluencePageConnection>;
|
|
28785
|
-
userContributedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserContributedConfluencePageInverseConnection>;
|
|
28786
|
-
userContributedConfluenceWhiteboard?: Maybe<GraphStoreSimplifiedUserContributedConfluenceWhiteboardConnection>;
|
|
28787
|
-
userContributedConfluenceWhiteboardInverse?: Maybe<GraphStoreSimplifiedUserContributedConfluenceWhiteboardInverseConnection>;
|
|
28788
28643
|
userCreatedBranch?: Maybe<GraphStoreSimplifiedUserCreatedBranchConnection>;
|
|
28789
28644
|
userCreatedBranchInverse?: Maybe<GraphStoreSimplifiedUserCreatedBranchInverseConnection>;
|
|
28790
|
-
userCreatedCalendarEvent?: Maybe<GraphStoreSimplifiedUserCreatedCalendarEventConnection>;
|
|
28791
|
-
userCreatedCalendarEventInverse?: Maybe<GraphStoreSimplifiedUserCreatedCalendarEventInverseConnection>;
|
|
28792
28645
|
userCreatedConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostConnection>;
|
|
28793
28646
|
userCreatedConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostInverseConnection>;
|
|
28794
|
-
userCreatedConfluenceDatabase?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceDatabaseConnection>;
|
|
28795
|
-
userCreatedConfluenceDatabaseInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceDatabaseInverseConnection>;
|
|
28796
28647
|
userCreatedConfluencePage?: Maybe<GraphStoreSimplifiedUserCreatedConfluencePageConnection>;
|
|
28797
28648
|
userCreatedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluencePageInverseConnection>;
|
|
28798
|
-
userCreatedConfluenceWhiteboard?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceWhiteboardConnection>;
|
|
28799
|
-
userCreatedConfluenceWhiteboardInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceWhiteboardInverseConnection>;
|
|
28800
|
-
userCreatedDesign?: Maybe<GraphStoreSimplifiedUserCreatedDesignConnection>;
|
|
28801
|
-
userCreatedDesignInverse?: Maybe<GraphStoreSimplifiedUserCreatedDesignInverseConnection>;
|
|
28802
|
-
userCreatedDocument?: Maybe<GraphStoreSimplifiedUserCreatedDocumentConnection>;
|
|
28803
|
-
userCreatedDocumentInverse?: Maybe<GraphStoreSimplifiedUserCreatedDocumentInverseConnection>;
|
|
28804
28649
|
userCreatedLoomVideo?: Maybe<GraphStoreSimplifiedUserCreatedLoomVideoConnection>;
|
|
28805
28650
|
userCreatedLoomVideoInverse?: Maybe<GraphStoreSimplifiedUserCreatedLoomVideoInverseConnection>;
|
|
28806
28651
|
userCreatedMessage?: Maybe<GraphStoreSimplifiedUserCreatedMessageConnection>;
|
|
28807
28652
|
userCreatedMessageInverse?: Maybe<GraphStoreSimplifiedUserCreatedMessageInverseConnection>;
|
|
28808
|
-
userCreatedRemoteLink?: Maybe<GraphStoreSimplifiedUserCreatedRemoteLinkConnection>;
|
|
28809
|
-
userCreatedRemoteLinkInverse?: Maybe<GraphStoreSimplifiedUserCreatedRemoteLinkInverseConnection>;
|
|
28810
28653
|
userCreatedRepository?: Maybe<GraphStoreSimplifiedUserCreatedRepositoryConnection>;
|
|
28811
28654
|
userCreatedRepositoryInverse?: Maybe<GraphStoreSimplifiedUserCreatedRepositoryInverseConnection>;
|
|
28812
|
-
userFavoritedConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserFavoritedConfluenceBlogpostConnection>;
|
|
28813
|
-
userFavoritedConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserFavoritedConfluenceBlogpostInverseConnection>;
|
|
28814
|
-
userFavoritedConfluenceDatabase?: Maybe<GraphStoreSimplifiedUserFavoritedConfluenceDatabaseConnection>;
|
|
28815
|
-
userFavoritedConfluenceDatabaseInverse?: Maybe<GraphStoreSimplifiedUserFavoritedConfluenceDatabaseInverseConnection>;
|
|
28816
|
-
userFavoritedConfluencePage?: Maybe<GraphStoreSimplifiedUserFavoritedConfluencePageConnection>;
|
|
28817
|
-
userFavoritedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserFavoritedConfluencePageInverseConnection>;
|
|
28818
|
-
userFavoritedConfluenceWhiteboard?: Maybe<GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardConnection>;
|
|
28819
|
-
userFavoritedConfluenceWhiteboardInverse?: Maybe<GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardInverseConnection>;
|
|
28820
28655
|
userHasRelevantProject?: Maybe<GraphStoreSimplifiedUserHasRelevantProjectConnection>;
|
|
28821
28656
|
userHasRelevantProjectInverse?: Maybe<GraphStoreSimplifiedUserHasRelevantProjectInverseConnection>;
|
|
28822
28657
|
userHasTopProject?: Maybe<GraphStoreSimplifiedUserHasTopProjectConnection>;
|
|
28823
28658
|
userHasTopProjectInverse?: Maybe<GraphStoreSimplifiedUserHasTopProjectInverseConnection>;
|
|
28824
28659
|
userIsInTeam?: Maybe<GraphStoreSimplifiedUserIsInTeamConnection>;
|
|
28825
28660
|
userIsInTeamInverse?: Maybe<GraphStoreSimplifiedUserIsInTeamInverseConnection>;
|
|
28826
|
-
userLastUpdatedDesign?: Maybe<GraphStoreSimplifiedUserLastUpdatedDesignConnection>;
|
|
28827
|
-
userLastUpdatedDesignInverse?: Maybe<GraphStoreSimplifiedUserLastUpdatedDesignInverseConnection>;
|
|
28828
28661
|
userMemberOfConversation?: Maybe<GraphStoreSimplifiedUserMemberOfConversationConnection>;
|
|
28829
28662
|
userMemberOfConversationInverse?: Maybe<GraphStoreSimplifiedUserMemberOfConversationInverseConnection>;
|
|
28830
28663
|
userMergedPullRequest?: Maybe<GraphStoreSimplifiedUserMergedPullRequestConnection>;
|
|
@@ -28833,8 +28666,6 @@ export declare type GraphStore = {
|
|
|
28833
28666
|
userOwnedBranchInverse?: Maybe<GraphStoreSimplifiedUserOwnedBranchInverseConnection>;
|
|
28834
28667
|
userOwnedCalendarEvent?: Maybe<GraphStoreSimplifiedUserOwnedCalendarEventConnection>;
|
|
28835
28668
|
userOwnedCalendarEventInverse?: Maybe<GraphStoreSimplifiedUserOwnedCalendarEventInverseConnection>;
|
|
28836
|
-
userOwnedDocument?: Maybe<GraphStoreSimplifiedUserOwnedDocumentConnection>;
|
|
28837
|
-
userOwnedDocumentInverse?: Maybe<GraphStoreSimplifiedUserOwnedDocumentInverseConnection>;
|
|
28838
28669
|
userOwnedRemoteLink?: Maybe<GraphStoreSimplifiedUserOwnedRemoteLinkConnection>;
|
|
28839
28670
|
userOwnedRemoteLinkInverse?: Maybe<GraphStoreSimplifiedUserOwnedRemoteLinkInverseConnection>;
|
|
28840
28671
|
userOwnedRepository?: Maybe<GraphStoreSimplifiedUserOwnedRepositoryConnection>;
|
|
@@ -28847,20 +28678,12 @@ export declare type GraphStore = {
|
|
|
28847
28678
|
userReportsIssueInverse?: Maybe<GraphStoreSimplifiedUserReportsIssueInverseConnection>;
|
|
28848
28679
|
userReviewsPr?: Maybe<GraphStoreSimplifiedUserReviewsPrConnection>;
|
|
28849
28680
|
userReviewsPrInverse?: Maybe<GraphStoreSimplifiedUserReviewsPrInverseConnection>;
|
|
28850
|
-
userTaggedInComment?: Maybe<GraphStoreSimplifiedUserTaggedInCommentConnection>;
|
|
28851
|
-
userTaggedInCommentInverse?: Maybe<GraphStoreSimplifiedUserTaggedInCommentInverseConnection>;
|
|
28852
|
-
userTaggedInConfluencePage?: Maybe<GraphStoreSimplifiedUserTaggedInConfluencePageConnection>;
|
|
28853
|
-
userTaggedInConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserTaggedInConfluencePageInverseConnection>;
|
|
28854
28681
|
userTriggeredDeployment?: Maybe<GraphStoreSimplifiedUserTriggeredDeploymentConnection>;
|
|
28855
28682
|
userTriggeredDeploymentInverse?: Maybe<GraphStoreSimplifiedUserTriggeredDeploymentInverseConnection>;
|
|
28856
28683
|
userUpdatedConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostConnection>;
|
|
28857
28684
|
userUpdatedConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostInverseConnection>;
|
|
28858
28685
|
userUpdatedConfluencePage?: Maybe<GraphStoreSimplifiedUserUpdatedConfluencePageConnection>;
|
|
28859
28686
|
userUpdatedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserUpdatedConfluencePageInverseConnection>;
|
|
28860
|
-
userUpdatedConfluenceSpace?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceSpaceConnection>;
|
|
28861
|
-
userUpdatedConfluenceSpaceInverse?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceSpaceInverseConnection>;
|
|
28862
|
-
userUpdatedConfluenceWhiteboard?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardConnection>;
|
|
28863
|
-
userUpdatedConfluenceWhiteboardInverse?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardInverseConnection>;
|
|
28864
28687
|
userViewedAtlasGoal?: Maybe<GraphStoreSimplifiedUserViewedAtlasGoalConnection>;
|
|
28865
28688
|
userViewedAtlasGoalInverse?: Maybe<GraphStoreSimplifiedUserViewedAtlasGoalInverseConnection>;
|
|
28866
28689
|
userViewedAtlasProject?: Maybe<GraphStoreSimplifiedUserViewedAtlasProjectConnection>;
|
|
@@ -28871,12 +28694,6 @@ export declare type GraphStore = {
|
|
|
28871
28694
|
userViewedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserViewedConfluencePageInverseConnection>;
|
|
28872
28695
|
userViewedJiraIssue?: Maybe<GraphStoreSimplifiedUserViewedJiraIssueConnection>;
|
|
28873
28696
|
userViewedJiraIssueInverse?: Maybe<GraphStoreSimplifiedUserViewedJiraIssueInverseConnection>;
|
|
28874
|
-
userWatchesConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserWatchesConfluenceBlogpostConnection>;
|
|
28875
|
-
userWatchesConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserWatchesConfluenceBlogpostInverseConnection>;
|
|
28876
|
-
userWatchesConfluencePage?: Maybe<GraphStoreSimplifiedUserWatchesConfluencePageConnection>;
|
|
28877
|
-
userWatchesConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserWatchesConfluencePageInverseConnection>;
|
|
28878
|
-
userWatchesConfluenceWhiteboard?: Maybe<GraphStoreSimplifiedUserWatchesConfluenceWhiteboardConnection>;
|
|
28879
|
-
userWatchesConfluenceWhiteboardInverse?: Maybe<GraphStoreSimplifiedUserWatchesConfluenceWhiteboardInverseConnection>;
|
|
28880
28697
|
versionAssociatedBranch?: Maybe<GraphStoreSimplifiedVersionAssociatedBranchConnection>;
|
|
28881
28698
|
versionAssociatedBranchInverse?: Maybe<GraphStoreSimplifiedVersionAssociatedBranchInverseConnection>;
|
|
28882
28699
|
versionAssociatedBranchInverseRelationship?: Maybe<GraphStoreFullVersionAssociatedBranchConnection>;
|
|
@@ -29213,97 +29030,6 @@ export declare type GraphStoreConfluencePageHasConfluenceCommentInverseArgs = {
|
|
|
29213
29030
|
id: Scalars['ID']['input'];
|
|
29214
29031
|
sort?: InputMaybe<GraphStoreConfluencePageHasConfluenceCommentSortInput>;
|
|
29215
29032
|
};
|
|
29216
|
-
export declare type GraphStoreConfluencePageHasConfluenceDatabaseArgs = {
|
|
29217
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
29218
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
29219
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29220
|
-
id: Scalars['ID']['input'];
|
|
29221
|
-
sort?: InputMaybe<GraphStoreConfluencePageHasConfluenceDatabaseSortInput>;
|
|
29222
|
-
};
|
|
29223
|
-
export declare type GraphStoreConfluencePageHasConfluenceDatabaseInverseArgs = {
|
|
29224
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
29225
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
29226
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29227
|
-
id: Scalars['ID']['input'];
|
|
29228
|
-
sort?: InputMaybe<GraphStoreConfluencePageHasConfluenceDatabaseSortInput>;
|
|
29229
|
-
};
|
|
29230
|
-
export declare type GraphStoreConfluencePageHasParentPageArgs = {
|
|
29231
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
29232
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
29233
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29234
|
-
id: Scalars['ID']['input'];
|
|
29235
|
-
sort?: InputMaybe<GraphStoreConfluencePageHasParentPageSortInput>;
|
|
29236
|
-
};
|
|
29237
|
-
export declare type GraphStoreConfluencePageHasParentPageInverseArgs = {
|
|
29238
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
29239
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
29240
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29241
|
-
id: Scalars['ID']['input'];
|
|
29242
|
-
sort?: InputMaybe<GraphStoreConfluencePageHasParentPageSortInput>;
|
|
29243
|
-
};
|
|
29244
|
-
export declare type GraphStoreConfluencePageSharedWithGroupInverseArgs = {
|
|
29245
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
29246
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
29247
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29248
|
-
id: Scalars['ID']['input'];
|
|
29249
|
-
sort?: InputMaybe<GraphStoreConfluencePageSharedWithGroupSortInput>;
|
|
29250
|
-
};
|
|
29251
|
-
export declare type GraphStoreConfluencePageSharedWithUserArgs = {
|
|
29252
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
29253
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
29254
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29255
|
-
id: Scalars['ID']['input'];
|
|
29256
|
-
sort?: InputMaybe<GraphStoreConfluencePageSharedWithUserSortInput>;
|
|
29257
|
-
};
|
|
29258
|
-
export declare type GraphStoreConfluencePageSharedWithUserInverseArgs = {
|
|
29259
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
29260
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
29261
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29262
|
-
id: Scalars['ID']['input'];
|
|
29263
|
-
sort?: InputMaybe<GraphStoreConfluencePageSharedWithUserSortInput>;
|
|
29264
|
-
};
|
|
29265
|
-
export declare type GraphStoreConfluenceSpaceHasConfluenceBlogpostArgs = {
|
|
29266
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
29267
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
29268
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29269
|
-
id: Scalars['ID']['input'];
|
|
29270
|
-
sort?: InputMaybe<GraphStoreConfluenceSpaceHasConfluenceBlogpostSortInput>;
|
|
29271
|
-
};
|
|
29272
|
-
export declare type GraphStoreConfluenceSpaceHasConfluenceBlogpostInverseArgs = {
|
|
29273
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
29274
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
29275
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29276
|
-
id: Scalars['ID']['input'];
|
|
29277
|
-
sort?: InputMaybe<GraphStoreConfluenceSpaceHasConfluenceBlogpostSortInput>;
|
|
29278
|
-
};
|
|
29279
|
-
export declare type GraphStoreConfluenceSpaceHasConfluenceDatabaseArgs = {
|
|
29280
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
29281
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
29282
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29283
|
-
id: Scalars['ID']['input'];
|
|
29284
|
-
sort?: InputMaybe<GraphStoreConfluenceSpaceHasConfluenceDatabaseSortInput>;
|
|
29285
|
-
};
|
|
29286
|
-
export declare type GraphStoreConfluenceSpaceHasConfluenceDatabaseInverseArgs = {
|
|
29287
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
29288
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
29289
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29290
|
-
id: Scalars['ID']['input'];
|
|
29291
|
-
sort?: InputMaybe<GraphStoreConfluenceSpaceHasConfluenceDatabaseSortInput>;
|
|
29292
|
-
};
|
|
29293
|
-
export declare type GraphStoreConfluenceSpaceHasConfluenceWhiteboardArgs = {
|
|
29294
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
29295
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
29296
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29297
|
-
id: Scalars['ID']['input'];
|
|
29298
|
-
sort?: InputMaybe<GraphStoreConfluenceSpaceHasConfluenceWhiteboardSortInput>;
|
|
29299
|
-
};
|
|
29300
|
-
export declare type GraphStoreConfluenceSpaceHasConfluenceWhiteboardInverseArgs = {
|
|
29301
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
29302
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
29303
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29304
|
-
id: Scalars['ID']['input'];
|
|
29305
|
-
sort?: InputMaybe<GraphStoreConfluenceSpaceHasConfluenceWhiteboardSortInput>;
|
|
29306
|
-
};
|
|
29307
29033
|
export declare type GraphStoreContentReferencedEntityArgs = {
|
|
29308
29034
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
29309
29035
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -29484,13 +29210,6 @@ export declare type GraphStoreFocusAreaHasProjectInverseBatchArgs = {
|
|
|
29484
29210
|
ids: Array<Scalars['ID']['input']>;
|
|
29485
29211
|
sort?: InputMaybe<GraphStoreFocusAreaHasProjectSortInput>;
|
|
29486
29212
|
};
|
|
29487
|
-
export declare type GraphStoreGroupCanViewConfluenceSpaceArgs = {
|
|
29488
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
29489
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
29490
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29491
|
-
id: Scalars['ID']['input'];
|
|
29492
|
-
sort?: InputMaybe<GraphStoreGroupCanViewConfluenceSpaceSortInput>;
|
|
29493
|
-
};
|
|
29494
29213
|
export declare type GraphStoreIncidentAssociatedPostIncidentReviewArgs = {
|
|
29495
29214
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
29496
29215
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -30303,20 +30022,6 @@ export declare type GraphStoreOperationsContainerImprovedByActionItemRelationshi
|
|
|
30303
30022
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30304
30023
|
id: Scalars['ID']['input'];
|
|
30305
30024
|
};
|
|
30306
|
-
export declare type GraphStoreParentCommentHasChildCommentArgs = {
|
|
30307
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
30308
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30309
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30310
|
-
id: Scalars['ID']['input'];
|
|
30311
|
-
sort?: InputMaybe<GraphStoreParentCommentHasChildCommentSortInput>;
|
|
30312
|
-
};
|
|
30313
|
-
export declare type GraphStoreParentCommentHasChildCommentInverseArgs = {
|
|
30314
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
30315
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30316
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30317
|
-
id: Scalars['ID']['input'];
|
|
30318
|
-
sort?: InputMaybe<GraphStoreParentCommentHasChildCommentSortInput>;
|
|
30319
|
-
};
|
|
30320
30025
|
export declare type GraphStoreParentDocumentHasChildDocumentArgs = {
|
|
30321
30026
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30322
30027
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31498,90 +31203,6 @@ export declare type GraphStoreUserAuthoredPrInverseArgs = {
|
|
|
31498
31203
|
id: Scalars['ID']['input'];
|
|
31499
31204
|
sort?: InputMaybe<GraphStoreUserAuthoredPrSortInput>;
|
|
31500
31205
|
};
|
|
31501
|
-
export declare type GraphStoreUserCanViewConfluenceSpaceArgs = {
|
|
31502
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
31503
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31504
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31505
|
-
id: Scalars['ID']['input'];
|
|
31506
|
-
sort?: InputMaybe<GraphStoreUserCanViewConfluenceSpaceSortInput>;
|
|
31507
|
-
};
|
|
31508
|
-
export declare type GraphStoreUserCanViewConfluenceSpaceInverseArgs = {
|
|
31509
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
31510
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31511
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31512
|
-
id: Scalars['ID']['input'];
|
|
31513
|
-
sort?: InputMaybe<GraphStoreUserCanViewConfluenceSpaceSortInput>;
|
|
31514
|
-
};
|
|
31515
|
-
export declare type GraphStoreUserCollaboratedOnDocumentArgs = {
|
|
31516
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
31517
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31518
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31519
|
-
id: Scalars['ID']['input'];
|
|
31520
|
-
sort?: InputMaybe<GraphStoreUserCollaboratedOnDocumentSortInput>;
|
|
31521
|
-
};
|
|
31522
|
-
export declare type GraphStoreUserCollaboratedOnDocumentInverseArgs = {
|
|
31523
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
31524
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31525
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31526
|
-
id: Scalars['ID']['input'];
|
|
31527
|
-
sort?: InputMaybe<GraphStoreUserCollaboratedOnDocumentSortInput>;
|
|
31528
|
-
};
|
|
31529
|
-
export declare type GraphStoreUserContributedConfluenceBlogpostArgs = {
|
|
31530
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
31531
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31532
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31533
|
-
id: Scalars['ID']['input'];
|
|
31534
|
-
sort?: InputMaybe<GraphStoreUserContributedConfluenceBlogpostSortInput>;
|
|
31535
|
-
};
|
|
31536
|
-
export declare type GraphStoreUserContributedConfluenceBlogpostInverseArgs = {
|
|
31537
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
31538
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31539
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31540
|
-
id: Scalars['ID']['input'];
|
|
31541
|
-
sort?: InputMaybe<GraphStoreUserContributedConfluenceBlogpostSortInput>;
|
|
31542
|
-
};
|
|
31543
|
-
export declare type GraphStoreUserContributedConfluenceDatabaseArgs = {
|
|
31544
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
31545
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31546
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31547
|
-
id: Scalars['ID']['input'];
|
|
31548
|
-
sort?: InputMaybe<GraphStoreUserContributedConfluenceDatabaseSortInput>;
|
|
31549
|
-
};
|
|
31550
|
-
export declare type GraphStoreUserContributedConfluenceDatabaseInverseArgs = {
|
|
31551
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
31552
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31553
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31554
|
-
id: Scalars['ID']['input'];
|
|
31555
|
-
sort?: InputMaybe<GraphStoreUserContributedConfluenceDatabaseSortInput>;
|
|
31556
|
-
};
|
|
31557
|
-
export declare type GraphStoreUserContributedConfluencePageArgs = {
|
|
31558
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
31559
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31560
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31561
|
-
id: Scalars['ID']['input'];
|
|
31562
|
-
sort?: InputMaybe<GraphStoreUserContributedConfluencePageSortInput>;
|
|
31563
|
-
};
|
|
31564
|
-
export declare type GraphStoreUserContributedConfluencePageInverseArgs = {
|
|
31565
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
31566
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31567
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31568
|
-
id: Scalars['ID']['input'];
|
|
31569
|
-
sort?: InputMaybe<GraphStoreUserContributedConfluencePageSortInput>;
|
|
31570
|
-
};
|
|
31571
|
-
export declare type GraphStoreUserContributedConfluenceWhiteboardArgs = {
|
|
31572
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
31573
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31574
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31575
|
-
id: Scalars['ID']['input'];
|
|
31576
|
-
sort?: InputMaybe<GraphStoreUserContributedConfluenceWhiteboardSortInput>;
|
|
31577
|
-
};
|
|
31578
|
-
export declare type GraphStoreUserContributedConfluenceWhiteboardInverseArgs = {
|
|
31579
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
31580
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31581
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31582
|
-
id: Scalars['ID']['input'];
|
|
31583
|
-
sort?: InputMaybe<GraphStoreUserContributedConfluenceWhiteboardSortInput>;
|
|
31584
|
-
};
|
|
31585
31206
|
export declare type GraphStoreUserCreatedBranchArgs = {
|
|
31586
31207
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31587
31208
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31596,20 +31217,6 @@ export declare type GraphStoreUserCreatedBranchInverseArgs = {
|
|
|
31596
31217
|
id: Scalars['ID']['input'];
|
|
31597
31218
|
sort?: InputMaybe<GraphStoreUserCreatedBranchSortInput>;
|
|
31598
31219
|
};
|
|
31599
|
-
export declare type GraphStoreUserCreatedCalendarEventArgs = {
|
|
31600
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
31601
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31602
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31603
|
-
id: Scalars['ID']['input'];
|
|
31604
|
-
sort?: InputMaybe<GraphStoreUserCreatedCalendarEventSortInput>;
|
|
31605
|
-
};
|
|
31606
|
-
export declare type GraphStoreUserCreatedCalendarEventInverseArgs = {
|
|
31607
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
31608
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31609
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31610
|
-
id: Scalars['ID']['input'];
|
|
31611
|
-
sort?: InputMaybe<GraphStoreUserCreatedCalendarEventSortInput>;
|
|
31612
|
-
};
|
|
31613
31220
|
export declare type GraphStoreUserCreatedConfluenceBlogpostArgs = {
|
|
31614
31221
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31615
31222
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31624,20 +31231,6 @@ export declare type GraphStoreUserCreatedConfluenceBlogpostInverseArgs = {
|
|
|
31624
31231
|
id: Scalars['ID']['input'];
|
|
31625
31232
|
sort?: InputMaybe<GraphStoreUserCreatedConfluenceBlogpostSortInput>;
|
|
31626
31233
|
};
|
|
31627
|
-
export declare type GraphStoreUserCreatedConfluenceDatabaseArgs = {
|
|
31628
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
31629
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31630
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31631
|
-
id: Scalars['ID']['input'];
|
|
31632
|
-
sort?: InputMaybe<GraphStoreUserCreatedConfluenceDatabaseSortInput>;
|
|
31633
|
-
};
|
|
31634
|
-
export declare type GraphStoreUserCreatedConfluenceDatabaseInverseArgs = {
|
|
31635
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
31636
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31637
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31638
|
-
id: Scalars['ID']['input'];
|
|
31639
|
-
sort?: InputMaybe<GraphStoreUserCreatedConfluenceDatabaseSortInput>;
|
|
31640
|
-
};
|
|
31641
31234
|
export declare type GraphStoreUserCreatedConfluencePageArgs = {
|
|
31642
31235
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31643
31236
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31652,48 +31245,6 @@ export declare type GraphStoreUserCreatedConfluencePageInverseArgs = {
|
|
|
31652
31245
|
id: Scalars['ID']['input'];
|
|
31653
31246
|
sort?: InputMaybe<GraphStoreUserCreatedConfluencePageSortInput>;
|
|
31654
31247
|
};
|
|
31655
|
-
export declare type GraphStoreUserCreatedConfluenceWhiteboardArgs = {
|
|
31656
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
31657
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31658
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31659
|
-
id: Scalars['ID']['input'];
|
|
31660
|
-
sort?: InputMaybe<GraphStoreUserCreatedConfluenceWhiteboardSortInput>;
|
|
31661
|
-
};
|
|
31662
|
-
export declare type GraphStoreUserCreatedConfluenceWhiteboardInverseArgs = {
|
|
31663
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
31664
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31665
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31666
|
-
id: Scalars['ID']['input'];
|
|
31667
|
-
sort?: InputMaybe<GraphStoreUserCreatedConfluenceWhiteboardSortInput>;
|
|
31668
|
-
};
|
|
31669
|
-
export declare type GraphStoreUserCreatedDesignArgs = {
|
|
31670
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
31671
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31672
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31673
|
-
id: Scalars['ID']['input'];
|
|
31674
|
-
sort?: InputMaybe<GraphStoreUserCreatedDesignSortInput>;
|
|
31675
|
-
};
|
|
31676
|
-
export declare type GraphStoreUserCreatedDesignInverseArgs = {
|
|
31677
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
31678
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31679
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31680
|
-
id: Scalars['ID']['input'];
|
|
31681
|
-
sort?: InputMaybe<GraphStoreUserCreatedDesignSortInput>;
|
|
31682
|
-
};
|
|
31683
|
-
export declare type GraphStoreUserCreatedDocumentArgs = {
|
|
31684
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
31685
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31686
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31687
|
-
id: Scalars['ID']['input'];
|
|
31688
|
-
sort?: InputMaybe<GraphStoreUserCreatedDocumentSortInput>;
|
|
31689
|
-
};
|
|
31690
|
-
export declare type GraphStoreUserCreatedDocumentInverseArgs = {
|
|
31691
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
31692
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31693
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31694
|
-
id: Scalars['ID']['input'];
|
|
31695
|
-
sort?: InputMaybe<GraphStoreUserCreatedDocumentSortInput>;
|
|
31696
|
-
};
|
|
31697
31248
|
export declare type GraphStoreUserCreatedLoomVideoArgs = {
|
|
31698
31249
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31699
31250
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31722,20 +31273,6 @@ export declare type GraphStoreUserCreatedMessageInverseArgs = {
|
|
|
31722
31273
|
id: Scalars['ID']['input'];
|
|
31723
31274
|
sort?: InputMaybe<GraphStoreUserCreatedMessageSortInput>;
|
|
31724
31275
|
};
|
|
31725
|
-
export declare type GraphStoreUserCreatedRemoteLinkArgs = {
|
|
31726
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
31727
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31728
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31729
|
-
id: Scalars['ID']['input'];
|
|
31730
|
-
sort?: InputMaybe<GraphStoreUserCreatedRemoteLinkSortInput>;
|
|
31731
|
-
};
|
|
31732
|
-
export declare type GraphStoreUserCreatedRemoteLinkInverseArgs = {
|
|
31733
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
31734
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31735
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31736
|
-
id: Scalars['ID']['input'];
|
|
31737
|
-
sort?: InputMaybe<GraphStoreUserCreatedRemoteLinkSortInput>;
|
|
31738
|
-
};
|
|
31739
31276
|
export declare type GraphStoreUserCreatedRepositoryArgs = {
|
|
31740
31277
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31741
31278
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31750,62 +31287,6 @@ export declare type GraphStoreUserCreatedRepositoryInverseArgs = {
|
|
|
31750
31287
|
id: Scalars['ID']['input'];
|
|
31751
31288
|
sort?: InputMaybe<GraphStoreUserCreatedRepositorySortInput>;
|
|
31752
31289
|
};
|
|
31753
|
-
export declare type GraphStoreUserFavoritedConfluenceBlogpostArgs = {
|
|
31754
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
31755
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31756
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31757
|
-
id: Scalars['ID']['input'];
|
|
31758
|
-
sort?: InputMaybe<GraphStoreUserFavoritedConfluenceBlogpostSortInput>;
|
|
31759
|
-
};
|
|
31760
|
-
export declare type GraphStoreUserFavoritedConfluenceBlogpostInverseArgs = {
|
|
31761
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
31762
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31763
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31764
|
-
id: Scalars['ID']['input'];
|
|
31765
|
-
sort?: InputMaybe<GraphStoreUserFavoritedConfluenceBlogpostSortInput>;
|
|
31766
|
-
};
|
|
31767
|
-
export declare type GraphStoreUserFavoritedConfluenceDatabaseArgs = {
|
|
31768
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
31769
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31770
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31771
|
-
id: Scalars['ID']['input'];
|
|
31772
|
-
sort?: InputMaybe<GraphStoreUserFavoritedConfluenceDatabaseSortInput>;
|
|
31773
|
-
};
|
|
31774
|
-
export declare type GraphStoreUserFavoritedConfluenceDatabaseInverseArgs = {
|
|
31775
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
31776
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31777
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31778
|
-
id: Scalars['ID']['input'];
|
|
31779
|
-
sort?: InputMaybe<GraphStoreUserFavoritedConfluenceDatabaseSortInput>;
|
|
31780
|
-
};
|
|
31781
|
-
export declare type GraphStoreUserFavoritedConfluencePageArgs = {
|
|
31782
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
31783
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31784
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31785
|
-
id: Scalars['ID']['input'];
|
|
31786
|
-
sort?: InputMaybe<GraphStoreUserFavoritedConfluencePageSortInput>;
|
|
31787
|
-
};
|
|
31788
|
-
export declare type GraphStoreUserFavoritedConfluencePageInverseArgs = {
|
|
31789
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
31790
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31791
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31792
|
-
id: Scalars['ID']['input'];
|
|
31793
|
-
sort?: InputMaybe<GraphStoreUserFavoritedConfluencePageSortInput>;
|
|
31794
|
-
};
|
|
31795
|
-
export declare type GraphStoreUserFavoritedConfluenceWhiteboardArgs = {
|
|
31796
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
31797
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31798
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31799
|
-
id: Scalars['ID']['input'];
|
|
31800
|
-
sort?: InputMaybe<GraphStoreUserFavoritedConfluenceWhiteboardSortInput>;
|
|
31801
|
-
};
|
|
31802
|
-
export declare type GraphStoreUserFavoritedConfluenceWhiteboardInverseArgs = {
|
|
31803
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
31804
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31805
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31806
|
-
id: Scalars['ID']['input'];
|
|
31807
|
-
sort?: InputMaybe<GraphStoreUserFavoritedConfluenceWhiteboardSortInput>;
|
|
31808
|
-
};
|
|
31809
31290
|
export declare type GraphStoreUserHasRelevantProjectArgs = {
|
|
31810
31291
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31811
31292
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31848,20 +31329,6 @@ export declare type GraphStoreUserIsInTeamInverseArgs = {
|
|
|
31848
31329
|
id: Scalars['ID']['input'];
|
|
31849
31330
|
sort?: InputMaybe<GraphStoreUserIsInTeamSortInput>;
|
|
31850
31331
|
};
|
|
31851
|
-
export declare type GraphStoreUserLastUpdatedDesignArgs = {
|
|
31852
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
31853
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31854
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31855
|
-
id: Scalars['ID']['input'];
|
|
31856
|
-
sort?: InputMaybe<GraphStoreUserLastUpdatedDesignSortInput>;
|
|
31857
|
-
};
|
|
31858
|
-
export declare type GraphStoreUserLastUpdatedDesignInverseArgs = {
|
|
31859
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
31860
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31861
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31862
|
-
id: Scalars['ID']['input'];
|
|
31863
|
-
sort?: InputMaybe<GraphStoreUserLastUpdatedDesignSortInput>;
|
|
31864
|
-
};
|
|
31865
31332
|
export declare type GraphStoreUserMemberOfConversationArgs = {
|
|
31866
31333
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31867
31334
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31918,20 +31385,6 @@ export declare type GraphStoreUserOwnedCalendarEventInverseArgs = {
|
|
|
31918
31385
|
id: Scalars['ID']['input'];
|
|
31919
31386
|
sort?: InputMaybe<GraphStoreUserOwnedCalendarEventSortInput>;
|
|
31920
31387
|
};
|
|
31921
|
-
export declare type GraphStoreUserOwnedDocumentArgs = {
|
|
31922
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
31923
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31924
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31925
|
-
id: Scalars['ID']['input'];
|
|
31926
|
-
sort?: InputMaybe<GraphStoreUserOwnedDocumentSortInput>;
|
|
31927
|
-
};
|
|
31928
|
-
export declare type GraphStoreUserOwnedDocumentInverseArgs = {
|
|
31929
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
31930
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31931
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31932
|
-
id: Scalars['ID']['input'];
|
|
31933
|
-
sort?: InputMaybe<GraphStoreUserOwnedDocumentSortInput>;
|
|
31934
|
-
};
|
|
31935
31388
|
export declare type GraphStoreUserOwnedRemoteLinkArgs = {
|
|
31936
31389
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31937
31390
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -32016,34 +31469,6 @@ export declare type GraphStoreUserReviewsPrInverseArgs = {
|
|
|
32016
31469
|
id: Scalars['ID']['input'];
|
|
32017
31470
|
sort?: InputMaybe<GraphStoreUserReviewsPrSortInput>;
|
|
32018
31471
|
};
|
|
32019
|
-
export declare type GraphStoreUserTaggedInCommentArgs = {
|
|
32020
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
32021
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32022
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32023
|
-
id: Scalars['ID']['input'];
|
|
32024
|
-
sort?: InputMaybe<GraphStoreUserTaggedInCommentSortInput>;
|
|
32025
|
-
};
|
|
32026
|
-
export declare type GraphStoreUserTaggedInCommentInverseArgs = {
|
|
32027
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
32028
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32029
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32030
|
-
id: Scalars['ID']['input'];
|
|
32031
|
-
sort?: InputMaybe<GraphStoreUserTaggedInCommentSortInput>;
|
|
32032
|
-
};
|
|
32033
|
-
export declare type GraphStoreUserTaggedInConfluencePageArgs = {
|
|
32034
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
32035
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32036
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32037
|
-
id: Scalars['ID']['input'];
|
|
32038
|
-
sort?: InputMaybe<GraphStoreUserTaggedInConfluencePageSortInput>;
|
|
32039
|
-
};
|
|
32040
|
-
export declare type GraphStoreUserTaggedInConfluencePageInverseArgs = {
|
|
32041
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
32042
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32043
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32044
|
-
id: Scalars['ID']['input'];
|
|
32045
|
-
sort?: InputMaybe<GraphStoreUserTaggedInConfluencePageSortInput>;
|
|
32046
|
-
};
|
|
32047
31472
|
export declare type GraphStoreUserTriggeredDeploymentArgs = {
|
|
32048
31473
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32049
31474
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -32086,34 +31511,6 @@ export declare type GraphStoreUserUpdatedConfluencePageInverseArgs = {
|
|
|
32086
31511
|
id: Scalars['ID']['input'];
|
|
32087
31512
|
sort?: InputMaybe<GraphStoreUserUpdatedConfluencePageSortInput>;
|
|
32088
31513
|
};
|
|
32089
|
-
export declare type GraphStoreUserUpdatedConfluenceSpaceArgs = {
|
|
32090
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
32091
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32092
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32093
|
-
id: Scalars['ID']['input'];
|
|
32094
|
-
sort?: InputMaybe<GraphStoreUserUpdatedConfluenceSpaceSortInput>;
|
|
32095
|
-
};
|
|
32096
|
-
export declare type GraphStoreUserUpdatedConfluenceSpaceInverseArgs = {
|
|
32097
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
32098
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32099
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32100
|
-
id: Scalars['ID']['input'];
|
|
32101
|
-
sort?: InputMaybe<GraphStoreUserUpdatedConfluenceSpaceSortInput>;
|
|
32102
|
-
};
|
|
32103
|
-
export declare type GraphStoreUserUpdatedConfluenceWhiteboardArgs = {
|
|
32104
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
32105
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32106
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32107
|
-
id: Scalars['ID']['input'];
|
|
32108
|
-
sort?: InputMaybe<GraphStoreUserUpdatedConfluenceWhiteboardSortInput>;
|
|
32109
|
-
};
|
|
32110
|
-
export declare type GraphStoreUserUpdatedConfluenceWhiteboardInverseArgs = {
|
|
32111
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
32112
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32113
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32114
|
-
id: Scalars['ID']['input'];
|
|
32115
|
-
sort?: InputMaybe<GraphStoreUserUpdatedConfluenceWhiteboardSortInput>;
|
|
32116
|
-
};
|
|
32117
31514
|
export declare type GraphStoreUserViewedAtlasGoalArgs = {
|
|
32118
31515
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32119
31516
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -32184,48 +31581,6 @@ export declare type GraphStoreUserViewedJiraIssueInverseArgs = {
|
|
|
32184
31581
|
id: Scalars['ID']['input'];
|
|
32185
31582
|
sort?: InputMaybe<GraphStoreUserViewedJiraIssueSortInput>;
|
|
32186
31583
|
};
|
|
32187
|
-
export declare type GraphStoreUserWatchesConfluenceBlogpostArgs = {
|
|
32188
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
32189
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32190
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32191
|
-
id: Scalars['ID']['input'];
|
|
32192
|
-
sort?: InputMaybe<GraphStoreUserWatchesConfluenceBlogpostSortInput>;
|
|
32193
|
-
};
|
|
32194
|
-
export declare type GraphStoreUserWatchesConfluenceBlogpostInverseArgs = {
|
|
32195
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
32196
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32197
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32198
|
-
id: Scalars['ID']['input'];
|
|
32199
|
-
sort?: InputMaybe<GraphStoreUserWatchesConfluenceBlogpostSortInput>;
|
|
32200
|
-
};
|
|
32201
|
-
export declare type GraphStoreUserWatchesConfluencePageArgs = {
|
|
32202
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
32203
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32204
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32205
|
-
id: Scalars['ID']['input'];
|
|
32206
|
-
sort?: InputMaybe<GraphStoreUserWatchesConfluencePageSortInput>;
|
|
32207
|
-
};
|
|
32208
|
-
export declare type GraphStoreUserWatchesConfluencePageInverseArgs = {
|
|
32209
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
32210
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32211
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32212
|
-
id: Scalars['ID']['input'];
|
|
32213
|
-
sort?: InputMaybe<GraphStoreUserWatchesConfluencePageSortInput>;
|
|
32214
|
-
};
|
|
32215
|
-
export declare type GraphStoreUserWatchesConfluenceWhiteboardArgs = {
|
|
32216
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
32217
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32218
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32219
|
-
id: Scalars['ID']['input'];
|
|
32220
|
-
sort?: InputMaybe<GraphStoreUserWatchesConfluenceWhiteboardSortInput>;
|
|
32221
|
-
};
|
|
32222
|
-
export declare type GraphStoreUserWatchesConfluenceWhiteboardInverseArgs = {
|
|
32223
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
32224
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32225
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32226
|
-
id: Scalars['ID']['input'];
|
|
32227
|
-
sort?: InputMaybe<GraphStoreUserWatchesConfluenceWhiteboardSortInput>;
|
|
32228
|
-
};
|
|
32229
31584
|
export declare type GraphStoreVersionAssociatedBranchArgs = {
|
|
32230
31585
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32231
31586
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -33255,27 +32610,6 @@ export declare type GraphStoreComponentLinkedJswIssueSortInput = {
|
|
|
33255
32610
|
export declare type GraphStoreConfluencePageHasConfluenceCommentSortInput = {
|
|
33256
32611
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
33257
32612
|
};
|
|
33258
|
-
export declare type GraphStoreConfluencePageHasConfluenceDatabaseSortInput = {
|
|
33259
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
33260
|
-
};
|
|
33261
|
-
export declare type GraphStoreConfluencePageHasParentPageSortInput = {
|
|
33262
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
33263
|
-
};
|
|
33264
|
-
export declare type GraphStoreConfluencePageSharedWithGroupSortInput = {
|
|
33265
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
33266
|
-
};
|
|
33267
|
-
export declare type GraphStoreConfluencePageSharedWithUserSortInput = {
|
|
33268
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
33269
|
-
};
|
|
33270
|
-
export declare type GraphStoreConfluenceSpaceHasConfluenceBlogpostSortInput = {
|
|
33271
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
33272
|
-
};
|
|
33273
|
-
export declare type GraphStoreConfluenceSpaceHasConfluenceDatabaseSortInput = {
|
|
33274
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
33275
|
-
};
|
|
33276
|
-
export declare type GraphStoreConfluenceSpaceHasConfluenceWhiteboardSortInput = {
|
|
33277
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
33278
|
-
};
|
|
33279
32613
|
export declare type GraphStoreContentReferencedEntitySortInput = {
|
|
33280
32614
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
33281
32615
|
};
|
|
@@ -33682,7 +33016,7 @@ export declare type GraphStoreCypherQueryFromNode = {
|
|
|
33682
33016
|
data?: Maybe<GraphStoreCypherQueryFromNodeUnion>;
|
|
33683
33017
|
id: Scalars['ID']['output'];
|
|
33684
33018
|
};
|
|
33685
|
-
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost |
|
|
33019
|
+
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPostIncidentReviewLink | JiraProject | JiraVersion | JiraWebRemoteIssueLink | MercuryFocusArea | MercuryJiraAlignEpic | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject;
|
|
33686
33020
|
export declare type GraphStoreCypherQueryNode = {
|
|
33687
33021
|
__typename?: 'GraphStoreCypherQueryNode';
|
|
33688
33022
|
from: GraphStoreCypherQueryFromNode;
|
|
@@ -33693,7 +33027,7 @@ export declare type GraphStoreCypherQueryToNode = {
|
|
|
33693
33027
|
data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
|
|
33694
33028
|
id: Scalars['ID']['output'];
|
|
33695
33029
|
};
|
|
33696
|
-
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost |
|
|
33030
|
+
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPostIncidentReviewLink | JiraProject | JiraVersion | JiraWebRemoteIssueLink | MercuryFocusArea | MercuryJiraAlignEpic | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject;
|
|
33697
33031
|
export declare type GraphStoreDateFilterInput = {
|
|
33698
33032
|
after?: InputMaybe<Scalars['DateTime']['input']>;
|
|
33699
33033
|
before?: InputMaybe<Scalars['DateTime']['input']>;
|
|
@@ -37443,9 +36777,6 @@ export declare enum GraphStoreFullVulnerabilityAssociatedIssueVulnerabilityTypeO
|
|
|
37443
36777
|
Sca = "SCA",
|
|
37444
36778
|
Unknown = "UNKNOWN"
|
|
37445
36779
|
}
|
|
37446
|
-
export declare type GraphStoreGroupCanViewConfluenceSpaceSortInput = {
|
|
37447
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
37448
|
-
};
|
|
37449
36780
|
export declare type GraphStoreIncidentAssociatedPostIncidentReviewLinkSortInput = {
|
|
37450
36781
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
37451
36782
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -37887,9 +37218,6 @@ export declare type GraphStoreOperationsContainerImpactedByIncidentSortInput = {
|
|
|
37887
37218
|
export declare type GraphStoreOperationsContainerImprovedByActionItemSortInput = {
|
|
37888
37219
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
37889
37220
|
};
|
|
37890
|
-
export declare type GraphStoreParentCommentHasChildCommentSortInput = {
|
|
37891
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
37892
|
-
};
|
|
37893
37221
|
export declare type GraphStoreParentDocumentHasChildDocumentSortInput = {
|
|
37894
37222
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
37895
37223
|
};
|
|
@@ -38850,188 +38178,6 @@ export declare type GraphStoreSimplifiedConfluencePageHasConfluenceCommentInvers
|
|
|
38850
38178
|
};
|
|
38851
38179
|
export declare type GraphStoreSimplifiedConfluencePageHasConfluenceCommentInverseUnion = ConfluenceBlogPost | ConfluencePage;
|
|
38852
38180
|
export declare type GraphStoreSimplifiedConfluencePageHasConfluenceCommentUnion = ConfluenceFooterComment | ConfluenceInlineComment;
|
|
38853
|
-
export declare type GraphStoreSimplifiedConfluencePageHasConfluenceDatabaseConnection = HasPageInfo & {
|
|
38854
|
-
__typename?: 'GraphStoreSimplifiedConfluencePageHasConfluenceDatabaseConnection';
|
|
38855
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceDatabaseEdge>>>;
|
|
38856
|
-
pageInfo: PageInfo;
|
|
38857
|
-
};
|
|
38858
|
-
export declare type GraphStoreSimplifiedConfluencePageHasConfluenceDatabaseEdge = {
|
|
38859
|
-
__typename?: 'GraphStoreSimplifiedConfluencePageHasConfluenceDatabaseEdge';
|
|
38860
|
-
createdAt: Scalars['DateTime']['output'];
|
|
38861
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
38862
|
-
id: Scalars['ID']['output'];
|
|
38863
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
38864
|
-
node?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceDatabaseUnion>;
|
|
38865
|
-
};
|
|
38866
|
-
export declare type GraphStoreSimplifiedConfluencePageHasConfluenceDatabaseInverseConnection = HasPageInfo & {
|
|
38867
|
-
__typename?: 'GraphStoreSimplifiedConfluencePageHasConfluenceDatabaseInverseConnection';
|
|
38868
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceDatabaseInverseEdge>>>;
|
|
38869
|
-
pageInfo: PageInfo;
|
|
38870
|
-
};
|
|
38871
|
-
export declare type GraphStoreSimplifiedConfluencePageHasConfluenceDatabaseInverseEdge = {
|
|
38872
|
-
__typename?: 'GraphStoreSimplifiedConfluencePageHasConfluenceDatabaseInverseEdge';
|
|
38873
|
-
createdAt: Scalars['DateTime']['output'];
|
|
38874
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
38875
|
-
id: Scalars['ID']['output'];
|
|
38876
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
38877
|
-
node?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceDatabaseInverseUnion>;
|
|
38878
|
-
};
|
|
38879
|
-
export declare type GraphStoreSimplifiedConfluencePageHasConfluenceDatabaseInverseUnion = ConfluencePage;
|
|
38880
|
-
export declare type GraphStoreSimplifiedConfluencePageHasConfluenceDatabaseUnion = ConfluenceDatabase;
|
|
38881
|
-
export declare type GraphStoreSimplifiedConfluencePageHasParentPageConnection = HasPageInfo & {
|
|
38882
|
-
__typename?: 'GraphStoreSimplifiedConfluencePageHasParentPageConnection';
|
|
38883
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluencePageHasParentPageEdge>>>;
|
|
38884
|
-
pageInfo: PageInfo;
|
|
38885
|
-
};
|
|
38886
|
-
export declare type GraphStoreSimplifiedConfluencePageHasParentPageEdge = {
|
|
38887
|
-
__typename?: 'GraphStoreSimplifiedConfluencePageHasParentPageEdge';
|
|
38888
|
-
createdAt: Scalars['DateTime']['output'];
|
|
38889
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
38890
|
-
id: Scalars['ID']['output'];
|
|
38891
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
38892
|
-
node?: Maybe<GraphStoreSimplifiedConfluencePageHasParentPageUnion>;
|
|
38893
|
-
};
|
|
38894
|
-
export declare type GraphStoreSimplifiedConfluencePageHasParentPageInverseConnection = HasPageInfo & {
|
|
38895
|
-
__typename?: 'GraphStoreSimplifiedConfluencePageHasParentPageInverseConnection';
|
|
38896
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluencePageHasParentPageInverseEdge>>>;
|
|
38897
|
-
pageInfo: PageInfo;
|
|
38898
|
-
};
|
|
38899
|
-
export declare type GraphStoreSimplifiedConfluencePageHasParentPageInverseEdge = {
|
|
38900
|
-
__typename?: 'GraphStoreSimplifiedConfluencePageHasParentPageInverseEdge';
|
|
38901
|
-
createdAt: Scalars['DateTime']['output'];
|
|
38902
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
38903
|
-
id: Scalars['ID']['output'];
|
|
38904
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
38905
|
-
node?: Maybe<GraphStoreSimplifiedConfluencePageHasParentPageInverseUnion>;
|
|
38906
|
-
};
|
|
38907
|
-
export declare type GraphStoreSimplifiedConfluencePageHasParentPageInverseUnion = ConfluencePage;
|
|
38908
|
-
export declare type GraphStoreSimplifiedConfluencePageHasParentPageUnion = ConfluencePage;
|
|
38909
|
-
export declare type GraphStoreSimplifiedConfluencePageSharedWithGroupInverseConnection = HasPageInfo & {
|
|
38910
|
-
__typename?: 'GraphStoreSimplifiedConfluencePageSharedWithGroupInverseConnection';
|
|
38911
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluencePageSharedWithGroupInverseEdge>>>;
|
|
38912
|
-
pageInfo: PageInfo;
|
|
38913
|
-
};
|
|
38914
|
-
export declare type GraphStoreSimplifiedConfluencePageSharedWithGroupInverseEdge = {
|
|
38915
|
-
__typename?: 'GraphStoreSimplifiedConfluencePageSharedWithGroupInverseEdge';
|
|
38916
|
-
createdAt: Scalars['DateTime']['output'];
|
|
38917
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
38918
|
-
id: Scalars['ID']['output'];
|
|
38919
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
38920
|
-
node?: Maybe<GraphStoreSimplifiedConfluencePageSharedWithGroupInverseUnion>;
|
|
38921
|
-
};
|
|
38922
|
-
export declare type GraphStoreSimplifiedConfluencePageSharedWithGroupInverseUnion = ConfluencePage;
|
|
38923
|
-
export declare type GraphStoreSimplifiedConfluencePageSharedWithUserConnection = HasPageInfo & {
|
|
38924
|
-
__typename?: 'GraphStoreSimplifiedConfluencePageSharedWithUserConnection';
|
|
38925
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluencePageSharedWithUserEdge>>>;
|
|
38926
|
-
pageInfo: PageInfo;
|
|
38927
|
-
};
|
|
38928
|
-
export declare type GraphStoreSimplifiedConfluencePageSharedWithUserEdge = {
|
|
38929
|
-
__typename?: 'GraphStoreSimplifiedConfluencePageSharedWithUserEdge';
|
|
38930
|
-
createdAt: Scalars['DateTime']['output'];
|
|
38931
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
38932
|
-
id: Scalars['ID']['output'];
|
|
38933
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
38934
|
-
node?: Maybe<GraphStoreSimplifiedConfluencePageSharedWithUserUnion>;
|
|
38935
|
-
};
|
|
38936
|
-
export declare type GraphStoreSimplifiedConfluencePageSharedWithUserInverseConnection = HasPageInfo & {
|
|
38937
|
-
__typename?: 'GraphStoreSimplifiedConfluencePageSharedWithUserInverseConnection';
|
|
38938
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluencePageSharedWithUserInverseEdge>>>;
|
|
38939
|
-
pageInfo: PageInfo;
|
|
38940
|
-
};
|
|
38941
|
-
export declare type GraphStoreSimplifiedConfluencePageSharedWithUserInverseEdge = {
|
|
38942
|
-
__typename?: 'GraphStoreSimplifiedConfluencePageSharedWithUserInverseEdge';
|
|
38943
|
-
createdAt: Scalars['DateTime']['output'];
|
|
38944
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
38945
|
-
id: Scalars['ID']['output'];
|
|
38946
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
38947
|
-
node?: Maybe<GraphStoreSimplifiedConfluencePageSharedWithUserInverseUnion>;
|
|
38948
|
-
};
|
|
38949
|
-
export declare type GraphStoreSimplifiedConfluencePageSharedWithUserInverseUnion = ConfluencePage;
|
|
38950
|
-
export declare type GraphStoreSimplifiedConfluencePageSharedWithUserUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
38951
|
-
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceBlogpostConnection = HasPageInfo & {
|
|
38952
|
-
__typename?: 'GraphStoreSimplifiedConfluenceSpaceHasConfluenceBlogpostConnection';
|
|
38953
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceBlogpostEdge>>>;
|
|
38954
|
-
pageInfo: PageInfo;
|
|
38955
|
-
};
|
|
38956
|
-
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceBlogpostEdge = {
|
|
38957
|
-
__typename?: 'GraphStoreSimplifiedConfluenceSpaceHasConfluenceBlogpostEdge';
|
|
38958
|
-
createdAt: Scalars['DateTime']['output'];
|
|
38959
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
38960
|
-
id: Scalars['ID']['output'];
|
|
38961
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
38962
|
-
node?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceBlogpostUnion>;
|
|
38963
|
-
};
|
|
38964
|
-
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceBlogpostInverseConnection = HasPageInfo & {
|
|
38965
|
-
__typename?: 'GraphStoreSimplifiedConfluenceSpaceHasConfluenceBlogpostInverseConnection';
|
|
38966
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceBlogpostInverseEdge>>>;
|
|
38967
|
-
pageInfo: PageInfo;
|
|
38968
|
-
};
|
|
38969
|
-
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceBlogpostInverseEdge = {
|
|
38970
|
-
__typename?: 'GraphStoreSimplifiedConfluenceSpaceHasConfluenceBlogpostInverseEdge';
|
|
38971
|
-
createdAt: Scalars['DateTime']['output'];
|
|
38972
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
38973
|
-
id: Scalars['ID']['output'];
|
|
38974
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
38975
|
-
node?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceBlogpostInverseUnion>;
|
|
38976
|
-
};
|
|
38977
|
-
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceBlogpostInverseUnion = ConfluenceSpace;
|
|
38978
|
-
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceBlogpostUnion = ConfluenceBlogPost;
|
|
38979
|
-
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceDatabaseConnection = HasPageInfo & {
|
|
38980
|
-
__typename?: 'GraphStoreSimplifiedConfluenceSpaceHasConfluenceDatabaseConnection';
|
|
38981
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceDatabaseEdge>>>;
|
|
38982
|
-
pageInfo: PageInfo;
|
|
38983
|
-
};
|
|
38984
|
-
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceDatabaseEdge = {
|
|
38985
|
-
__typename?: 'GraphStoreSimplifiedConfluenceSpaceHasConfluenceDatabaseEdge';
|
|
38986
|
-
createdAt: Scalars['DateTime']['output'];
|
|
38987
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
38988
|
-
id: Scalars['ID']['output'];
|
|
38989
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
38990
|
-
node?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceDatabaseUnion>;
|
|
38991
|
-
};
|
|
38992
|
-
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceDatabaseInverseConnection = HasPageInfo & {
|
|
38993
|
-
__typename?: 'GraphStoreSimplifiedConfluenceSpaceHasConfluenceDatabaseInverseConnection';
|
|
38994
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceDatabaseInverseEdge>>>;
|
|
38995
|
-
pageInfo: PageInfo;
|
|
38996
|
-
};
|
|
38997
|
-
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceDatabaseInverseEdge = {
|
|
38998
|
-
__typename?: 'GraphStoreSimplifiedConfluenceSpaceHasConfluenceDatabaseInverseEdge';
|
|
38999
|
-
createdAt: Scalars['DateTime']['output'];
|
|
39000
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
39001
|
-
id: Scalars['ID']['output'];
|
|
39002
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
39003
|
-
node?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceDatabaseInverseUnion>;
|
|
39004
|
-
};
|
|
39005
|
-
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceDatabaseInverseUnion = ConfluenceSpace;
|
|
39006
|
-
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceDatabaseUnion = ConfluenceDatabase;
|
|
39007
|
-
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardConnection = HasPageInfo & {
|
|
39008
|
-
__typename?: 'GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardConnection';
|
|
39009
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardEdge>>>;
|
|
39010
|
-
pageInfo: PageInfo;
|
|
39011
|
-
};
|
|
39012
|
-
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardEdge = {
|
|
39013
|
-
__typename?: 'GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardEdge';
|
|
39014
|
-
createdAt: Scalars['DateTime']['output'];
|
|
39015
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
39016
|
-
id: Scalars['ID']['output'];
|
|
39017
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
39018
|
-
node?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardUnion>;
|
|
39019
|
-
};
|
|
39020
|
-
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardInverseConnection = HasPageInfo & {
|
|
39021
|
-
__typename?: 'GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardInverseConnection';
|
|
39022
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardInverseEdge>>>;
|
|
39023
|
-
pageInfo: PageInfo;
|
|
39024
|
-
};
|
|
39025
|
-
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardInverseEdge = {
|
|
39026
|
-
__typename?: 'GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardInverseEdge';
|
|
39027
|
-
createdAt: Scalars['DateTime']['output'];
|
|
39028
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
39029
|
-
id: Scalars['ID']['output'];
|
|
39030
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
39031
|
-
node?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardInverseUnion>;
|
|
39032
|
-
};
|
|
39033
|
-
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardInverseUnion = ConfluenceSpace;
|
|
39034
|
-
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceWhiteboardUnion = ConfluenceWhiteboard;
|
|
39035
38181
|
export declare type GraphStoreSimplifiedContentReferencedEntityConnection = HasPageInfo & {
|
|
39036
38182
|
__typename?: 'GraphStoreSimplifiedContentReferencedEntityConnection';
|
|
39037
38183
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedContentReferencedEntityEdge>>>;
|
|
@@ -39228,20 +38374,6 @@ export declare type GraphStoreSimplifiedFocusAreaHasProjectInverseEdge = {
|
|
|
39228
38374
|
};
|
|
39229
38375
|
export declare type GraphStoreSimplifiedFocusAreaHasProjectInverseUnion = MercuryFocusArea;
|
|
39230
38376
|
export declare type GraphStoreSimplifiedFocusAreaHasProjectUnion = JiraAlignAggProject | JiraIssue | MercuryJiraAlignEpic | TownsquareProject;
|
|
39231
|
-
export declare type GraphStoreSimplifiedGroupCanViewConfluenceSpaceConnection = HasPageInfo & {
|
|
39232
|
-
__typename?: 'GraphStoreSimplifiedGroupCanViewConfluenceSpaceConnection';
|
|
39233
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedGroupCanViewConfluenceSpaceEdge>>>;
|
|
39234
|
-
pageInfo: PageInfo;
|
|
39235
|
-
};
|
|
39236
|
-
export declare type GraphStoreSimplifiedGroupCanViewConfluenceSpaceEdge = {
|
|
39237
|
-
__typename?: 'GraphStoreSimplifiedGroupCanViewConfluenceSpaceEdge';
|
|
39238
|
-
createdAt: Scalars['DateTime']['output'];
|
|
39239
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
39240
|
-
id: Scalars['ID']['output'];
|
|
39241
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
39242
|
-
node?: Maybe<GraphStoreSimplifiedGroupCanViewConfluenceSpaceUnion>;
|
|
39243
|
-
};
|
|
39244
|
-
export declare type GraphStoreSimplifiedGroupCanViewConfluenceSpaceUnion = ConfluenceSpace;
|
|
39245
38377
|
export declare type GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewConnection = HasPageInfo & HasTotal & {
|
|
39246
38378
|
__typename?: 'GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewConnection';
|
|
39247
38379
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewEdge>>>;
|
|
@@ -40146,34 +39278,6 @@ export declare type GraphStoreSimplifiedOperationsContainerImprovedByActionItemI
|
|
|
40146
39278
|
};
|
|
40147
39279
|
export declare type GraphStoreSimplifiedOperationsContainerImprovedByActionItemInverseUnion = DevOpsService;
|
|
40148
39280
|
export declare type GraphStoreSimplifiedOperationsContainerImprovedByActionItemUnion = JiraIssue;
|
|
40149
|
-
export declare type GraphStoreSimplifiedParentCommentHasChildCommentConnection = HasPageInfo & {
|
|
40150
|
-
__typename?: 'GraphStoreSimplifiedParentCommentHasChildCommentConnection';
|
|
40151
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedParentCommentHasChildCommentEdge>>>;
|
|
40152
|
-
pageInfo: PageInfo;
|
|
40153
|
-
};
|
|
40154
|
-
export declare type GraphStoreSimplifiedParentCommentHasChildCommentEdge = {
|
|
40155
|
-
__typename?: 'GraphStoreSimplifiedParentCommentHasChildCommentEdge';
|
|
40156
|
-
createdAt: Scalars['DateTime']['output'];
|
|
40157
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
40158
|
-
id: Scalars['ID']['output'];
|
|
40159
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
40160
|
-
node?: Maybe<GraphStoreSimplifiedParentCommentHasChildCommentUnion>;
|
|
40161
|
-
};
|
|
40162
|
-
export declare type GraphStoreSimplifiedParentCommentHasChildCommentInverseConnection = HasPageInfo & {
|
|
40163
|
-
__typename?: 'GraphStoreSimplifiedParentCommentHasChildCommentInverseConnection';
|
|
40164
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedParentCommentHasChildCommentInverseEdge>>>;
|
|
40165
|
-
pageInfo: PageInfo;
|
|
40166
|
-
};
|
|
40167
|
-
export declare type GraphStoreSimplifiedParentCommentHasChildCommentInverseEdge = {
|
|
40168
|
-
__typename?: 'GraphStoreSimplifiedParentCommentHasChildCommentInverseEdge';
|
|
40169
|
-
createdAt: Scalars['DateTime']['output'];
|
|
40170
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
40171
|
-
id: Scalars['ID']['output'];
|
|
40172
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
40173
|
-
node?: Maybe<GraphStoreSimplifiedParentCommentHasChildCommentInverseUnion>;
|
|
40174
|
-
};
|
|
40175
|
-
export declare type GraphStoreSimplifiedParentCommentHasChildCommentInverseUnion = ConfluenceFooterComment | ConfluenceInlineComment;
|
|
40176
|
-
export declare type GraphStoreSimplifiedParentCommentHasChildCommentUnion = ConfluenceFooterComment | ConfluenceInlineComment;
|
|
40177
39281
|
export declare type GraphStoreSimplifiedParentDocumentHasChildDocumentConnection = HasPageInfo & {
|
|
40178
39282
|
__typename?: 'GraphStoreSimplifiedParentDocumentHasChildDocumentConnection';
|
|
40179
39283
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedParentDocumentHasChildDocumentEdge>>>;
|
|
@@ -41708,174 +40812,6 @@ export declare type GraphStoreSimplifiedUserAuthoredPrInverseEdge = {
|
|
|
41708
40812
|
};
|
|
41709
40813
|
export declare type GraphStoreSimplifiedUserAuthoredPrInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
41710
40814
|
export declare type GraphStoreSimplifiedUserAuthoredPrUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
41711
|
-
export declare type GraphStoreSimplifiedUserCanViewConfluenceSpaceConnection = HasPageInfo & {
|
|
41712
|
-
__typename?: 'GraphStoreSimplifiedUserCanViewConfluenceSpaceConnection';
|
|
41713
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCanViewConfluenceSpaceEdge>>>;
|
|
41714
|
-
pageInfo: PageInfo;
|
|
41715
|
-
};
|
|
41716
|
-
export declare type GraphStoreSimplifiedUserCanViewConfluenceSpaceEdge = {
|
|
41717
|
-
__typename?: 'GraphStoreSimplifiedUserCanViewConfluenceSpaceEdge';
|
|
41718
|
-
createdAt: Scalars['DateTime']['output'];
|
|
41719
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
41720
|
-
id: Scalars['ID']['output'];
|
|
41721
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
41722
|
-
node?: Maybe<GraphStoreSimplifiedUserCanViewConfluenceSpaceUnion>;
|
|
41723
|
-
};
|
|
41724
|
-
export declare type GraphStoreSimplifiedUserCanViewConfluenceSpaceInverseConnection = HasPageInfo & {
|
|
41725
|
-
__typename?: 'GraphStoreSimplifiedUserCanViewConfluenceSpaceInverseConnection';
|
|
41726
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCanViewConfluenceSpaceInverseEdge>>>;
|
|
41727
|
-
pageInfo: PageInfo;
|
|
41728
|
-
};
|
|
41729
|
-
export declare type GraphStoreSimplifiedUserCanViewConfluenceSpaceInverseEdge = {
|
|
41730
|
-
__typename?: 'GraphStoreSimplifiedUserCanViewConfluenceSpaceInverseEdge';
|
|
41731
|
-
createdAt: Scalars['DateTime']['output'];
|
|
41732
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
41733
|
-
id: Scalars['ID']['output'];
|
|
41734
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
41735
|
-
node?: Maybe<GraphStoreSimplifiedUserCanViewConfluenceSpaceInverseUnion>;
|
|
41736
|
-
};
|
|
41737
|
-
export declare type GraphStoreSimplifiedUserCanViewConfluenceSpaceInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
41738
|
-
export declare type GraphStoreSimplifiedUserCanViewConfluenceSpaceUnion = ConfluenceSpace;
|
|
41739
|
-
export declare type GraphStoreSimplifiedUserCollaboratedOnDocumentConnection = HasPageInfo & {
|
|
41740
|
-
__typename?: 'GraphStoreSimplifiedUserCollaboratedOnDocumentConnection';
|
|
41741
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCollaboratedOnDocumentEdge>>>;
|
|
41742
|
-
pageInfo: PageInfo;
|
|
41743
|
-
};
|
|
41744
|
-
export declare type GraphStoreSimplifiedUserCollaboratedOnDocumentEdge = {
|
|
41745
|
-
__typename?: 'GraphStoreSimplifiedUserCollaboratedOnDocumentEdge';
|
|
41746
|
-
createdAt: Scalars['DateTime']['output'];
|
|
41747
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
41748
|
-
id: Scalars['ID']['output'];
|
|
41749
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
41750
|
-
node?: Maybe<GraphStoreSimplifiedUserCollaboratedOnDocumentUnion>;
|
|
41751
|
-
};
|
|
41752
|
-
export declare type GraphStoreSimplifiedUserCollaboratedOnDocumentInverseConnection = HasPageInfo & {
|
|
41753
|
-
__typename?: 'GraphStoreSimplifiedUserCollaboratedOnDocumentInverseConnection';
|
|
41754
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCollaboratedOnDocumentInverseEdge>>>;
|
|
41755
|
-
pageInfo: PageInfo;
|
|
41756
|
-
};
|
|
41757
|
-
export declare type GraphStoreSimplifiedUserCollaboratedOnDocumentInverseEdge = {
|
|
41758
|
-
__typename?: 'GraphStoreSimplifiedUserCollaboratedOnDocumentInverseEdge';
|
|
41759
|
-
createdAt: Scalars['DateTime']['output'];
|
|
41760
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
41761
|
-
id: Scalars['ID']['output'];
|
|
41762
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
41763
|
-
node?: Maybe<GraphStoreSimplifiedUserCollaboratedOnDocumentInverseUnion>;
|
|
41764
|
-
};
|
|
41765
|
-
export declare type GraphStoreSimplifiedUserCollaboratedOnDocumentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
41766
|
-
export declare type GraphStoreSimplifiedUserCollaboratedOnDocumentUnion = DevOpsDocument | ExternalDocument;
|
|
41767
|
-
export declare type GraphStoreSimplifiedUserContributedConfluenceBlogpostConnection = HasPageInfo & {
|
|
41768
|
-
__typename?: 'GraphStoreSimplifiedUserContributedConfluenceBlogpostConnection';
|
|
41769
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserContributedConfluenceBlogpostEdge>>>;
|
|
41770
|
-
pageInfo: PageInfo;
|
|
41771
|
-
};
|
|
41772
|
-
export declare type GraphStoreSimplifiedUserContributedConfluenceBlogpostEdge = {
|
|
41773
|
-
__typename?: 'GraphStoreSimplifiedUserContributedConfluenceBlogpostEdge';
|
|
41774
|
-
createdAt: Scalars['DateTime']['output'];
|
|
41775
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
41776
|
-
id: Scalars['ID']['output'];
|
|
41777
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
41778
|
-
node?: Maybe<GraphStoreSimplifiedUserContributedConfluenceBlogpostUnion>;
|
|
41779
|
-
};
|
|
41780
|
-
export declare type GraphStoreSimplifiedUserContributedConfluenceBlogpostInverseConnection = HasPageInfo & {
|
|
41781
|
-
__typename?: 'GraphStoreSimplifiedUserContributedConfluenceBlogpostInverseConnection';
|
|
41782
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserContributedConfluenceBlogpostInverseEdge>>>;
|
|
41783
|
-
pageInfo: PageInfo;
|
|
41784
|
-
};
|
|
41785
|
-
export declare type GraphStoreSimplifiedUserContributedConfluenceBlogpostInverseEdge = {
|
|
41786
|
-
__typename?: 'GraphStoreSimplifiedUserContributedConfluenceBlogpostInverseEdge';
|
|
41787
|
-
createdAt: Scalars['DateTime']['output'];
|
|
41788
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
41789
|
-
id: Scalars['ID']['output'];
|
|
41790
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
41791
|
-
node?: Maybe<GraphStoreSimplifiedUserContributedConfluenceBlogpostInverseUnion>;
|
|
41792
|
-
};
|
|
41793
|
-
export declare type GraphStoreSimplifiedUserContributedConfluenceBlogpostInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
41794
|
-
export declare type GraphStoreSimplifiedUserContributedConfluenceBlogpostUnion = ConfluenceBlogPost;
|
|
41795
|
-
export declare type GraphStoreSimplifiedUserContributedConfluenceDatabaseConnection = HasPageInfo & {
|
|
41796
|
-
__typename?: 'GraphStoreSimplifiedUserContributedConfluenceDatabaseConnection';
|
|
41797
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserContributedConfluenceDatabaseEdge>>>;
|
|
41798
|
-
pageInfo: PageInfo;
|
|
41799
|
-
};
|
|
41800
|
-
export declare type GraphStoreSimplifiedUserContributedConfluenceDatabaseEdge = {
|
|
41801
|
-
__typename?: 'GraphStoreSimplifiedUserContributedConfluenceDatabaseEdge';
|
|
41802
|
-
createdAt: Scalars['DateTime']['output'];
|
|
41803
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
41804
|
-
id: Scalars['ID']['output'];
|
|
41805
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
41806
|
-
node?: Maybe<GraphStoreSimplifiedUserContributedConfluenceDatabaseUnion>;
|
|
41807
|
-
};
|
|
41808
|
-
export declare type GraphStoreSimplifiedUserContributedConfluenceDatabaseInverseConnection = HasPageInfo & {
|
|
41809
|
-
__typename?: 'GraphStoreSimplifiedUserContributedConfluenceDatabaseInverseConnection';
|
|
41810
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserContributedConfluenceDatabaseInverseEdge>>>;
|
|
41811
|
-
pageInfo: PageInfo;
|
|
41812
|
-
};
|
|
41813
|
-
export declare type GraphStoreSimplifiedUserContributedConfluenceDatabaseInverseEdge = {
|
|
41814
|
-
__typename?: 'GraphStoreSimplifiedUserContributedConfluenceDatabaseInverseEdge';
|
|
41815
|
-
createdAt: Scalars['DateTime']['output'];
|
|
41816
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
41817
|
-
id: Scalars['ID']['output'];
|
|
41818
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
41819
|
-
node?: Maybe<GraphStoreSimplifiedUserContributedConfluenceDatabaseInverseUnion>;
|
|
41820
|
-
};
|
|
41821
|
-
export declare type GraphStoreSimplifiedUserContributedConfluenceDatabaseInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
41822
|
-
export declare type GraphStoreSimplifiedUserContributedConfluenceDatabaseUnion = ConfluenceDatabase;
|
|
41823
|
-
export declare type GraphStoreSimplifiedUserContributedConfluencePageConnection = HasPageInfo & {
|
|
41824
|
-
__typename?: 'GraphStoreSimplifiedUserContributedConfluencePageConnection';
|
|
41825
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserContributedConfluencePageEdge>>>;
|
|
41826
|
-
pageInfo: PageInfo;
|
|
41827
|
-
};
|
|
41828
|
-
export declare type GraphStoreSimplifiedUserContributedConfluencePageEdge = {
|
|
41829
|
-
__typename?: 'GraphStoreSimplifiedUserContributedConfluencePageEdge';
|
|
41830
|
-
createdAt: Scalars['DateTime']['output'];
|
|
41831
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
41832
|
-
id: Scalars['ID']['output'];
|
|
41833
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
41834
|
-
node?: Maybe<GraphStoreSimplifiedUserContributedConfluencePageUnion>;
|
|
41835
|
-
};
|
|
41836
|
-
export declare type GraphStoreSimplifiedUserContributedConfluencePageInverseConnection = HasPageInfo & {
|
|
41837
|
-
__typename?: 'GraphStoreSimplifiedUserContributedConfluencePageInverseConnection';
|
|
41838
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserContributedConfluencePageInverseEdge>>>;
|
|
41839
|
-
pageInfo: PageInfo;
|
|
41840
|
-
};
|
|
41841
|
-
export declare type GraphStoreSimplifiedUserContributedConfluencePageInverseEdge = {
|
|
41842
|
-
__typename?: 'GraphStoreSimplifiedUserContributedConfluencePageInverseEdge';
|
|
41843
|
-
createdAt: Scalars['DateTime']['output'];
|
|
41844
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
41845
|
-
id: Scalars['ID']['output'];
|
|
41846
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
41847
|
-
node?: Maybe<GraphStoreSimplifiedUserContributedConfluencePageInverseUnion>;
|
|
41848
|
-
};
|
|
41849
|
-
export declare type GraphStoreSimplifiedUserContributedConfluencePageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
41850
|
-
export declare type GraphStoreSimplifiedUserContributedConfluencePageUnion = ConfluencePage;
|
|
41851
|
-
export declare type GraphStoreSimplifiedUserContributedConfluenceWhiteboardConnection = HasPageInfo & {
|
|
41852
|
-
__typename?: 'GraphStoreSimplifiedUserContributedConfluenceWhiteboardConnection';
|
|
41853
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserContributedConfluenceWhiteboardEdge>>>;
|
|
41854
|
-
pageInfo: PageInfo;
|
|
41855
|
-
};
|
|
41856
|
-
export declare type GraphStoreSimplifiedUserContributedConfluenceWhiteboardEdge = {
|
|
41857
|
-
__typename?: 'GraphStoreSimplifiedUserContributedConfluenceWhiteboardEdge';
|
|
41858
|
-
createdAt: Scalars['DateTime']['output'];
|
|
41859
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
41860
|
-
id: Scalars['ID']['output'];
|
|
41861
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
41862
|
-
node?: Maybe<GraphStoreSimplifiedUserContributedConfluenceWhiteboardUnion>;
|
|
41863
|
-
};
|
|
41864
|
-
export declare type GraphStoreSimplifiedUserContributedConfluenceWhiteboardInverseConnection = HasPageInfo & {
|
|
41865
|
-
__typename?: 'GraphStoreSimplifiedUserContributedConfluenceWhiteboardInverseConnection';
|
|
41866
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserContributedConfluenceWhiteboardInverseEdge>>>;
|
|
41867
|
-
pageInfo: PageInfo;
|
|
41868
|
-
};
|
|
41869
|
-
export declare type GraphStoreSimplifiedUserContributedConfluenceWhiteboardInverseEdge = {
|
|
41870
|
-
__typename?: 'GraphStoreSimplifiedUserContributedConfluenceWhiteboardInverseEdge';
|
|
41871
|
-
createdAt: Scalars['DateTime']['output'];
|
|
41872
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
41873
|
-
id: Scalars['ID']['output'];
|
|
41874
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
41875
|
-
node?: Maybe<GraphStoreSimplifiedUserContributedConfluenceWhiteboardInverseUnion>;
|
|
41876
|
-
};
|
|
41877
|
-
export declare type GraphStoreSimplifiedUserContributedConfluenceWhiteboardInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
41878
|
-
export declare type GraphStoreSimplifiedUserContributedConfluenceWhiteboardUnion = ConfluenceWhiteboard;
|
|
41879
40815
|
export declare type GraphStoreSimplifiedUserCreatedBranchConnection = HasPageInfo & {
|
|
41880
40816
|
__typename?: 'GraphStoreSimplifiedUserCreatedBranchConnection';
|
|
41881
40817
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedBranchEdge>>>;
|
|
@@ -41904,34 +40840,6 @@ export declare type GraphStoreSimplifiedUserCreatedBranchInverseEdge = {
|
|
|
41904
40840
|
};
|
|
41905
40841
|
export declare type GraphStoreSimplifiedUserCreatedBranchInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
41906
40842
|
export declare type GraphStoreSimplifiedUserCreatedBranchUnion = ExternalBranch;
|
|
41907
|
-
export declare type GraphStoreSimplifiedUserCreatedCalendarEventConnection = HasPageInfo & {
|
|
41908
|
-
__typename?: 'GraphStoreSimplifiedUserCreatedCalendarEventConnection';
|
|
41909
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedCalendarEventEdge>>>;
|
|
41910
|
-
pageInfo: PageInfo;
|
|
41911
|
-
};
|
|
41912
|
-
export declare type GraphStoreSimplifiedUserCreatedCalendarEventEdge = {
|
|
41913
|
-
__typename?: 'GraphStoreSimplifiedUserCreatedCalendarEventEdge';
|
|
41914
|
-
createdAt: Scalars['DateTime']['output'];
|
|
41915
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
41916
|
-
id: Scalars['ID']['output'];
|
|
41917
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
41918
|
-
node?: Maybe<GraphStoreSimplifiedUserCreatedCalendarEventUnion>;
|
|
41919
|
-
};
|
|
41920
|
-
export declare type GraphStoreSimplifiedUserCreatedCalendarEventInverseConnection = HasPageInfo & {
|
|
41921
|
-
__typename?: 'GraphStoreSimplifiedUserCreatedCalendarEventInverseConnection';
|
|
41922
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedCalendarEventInverseEdge>>>;
|
|
41923
|
-
pageInfo: PageInfo;
|
|
41924
|
-
};
|
|
41925
|
-
export declare type GraphStoreSimplifiedUserCreatedCalendarEventInverseEdge = {
|
|
41926
|
-
__typename?: 'GraphStoreSimplifiedUserCreatedCalendarEventInverseEdge';
|
|
41927
|
-
createdAt: Scalars['DateTime']['output'];
|
|
41928
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
41929
|
-
id: Scalars['ID']['output'];
|
|
41930
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
41931
|
-
node?: Maybe<GraphStoreSimplifiedUserCreatedCalendarEventInverseUnion>;
|
|
41932
|
-
};
|
|
41933
|
-
export declare type GraphStoreSimplifiedUserCreatedCalendarEventInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
41934
|
-
export declare type GraphStoreSimplifiedUserCreatedCalendarEventUnion = ExternalCalendarEvent;
|
|
41935
40843
|
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostConnection = HasPageInfo & {
|
|
41936
40844
|
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceBlogpostConnection';
|
|
41937
40845
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostEdge>>>;
|
|
@@ -41960,34 +40868,6 @@ export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostInverseEdge
|
|
|
41960
40868
|
};
|
|
41961
40869
|
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
41962
40870
|
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostUnion = ConfluenceBlogPost;
|
|
41963
|
-
export declare type GraphStoreSimplifiedUserCreatedConfluenceDatabaseConnection = HasPageInfo & {
|
|
41964
|
-
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceDatabaseConnection';
|
|
41965
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluenceDatabaseEdge>>>;
|
|
41966
|
-
pageInfo: PageInfo;
|
|
41967
|
-
};
|
|
41968
|
-
export declare type GraphStoreSimplifiedUserCreatedConfluenceDatabaseEdge = {
|
|
41969
|
-
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceDatabaseEdge';
|
|
41970
|
-
createdAt: Scalars['DateTime']['output'];
|
|
41971
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
41972
|
-
id: Scalars['ID']['output'];
|
|
41973
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
41974
|
-
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceDatabaseUnion>;
|
|
41975
|
-
};
|
|
41976
|
-
export declare type GraphStoreSimplifiedUserCreatedConfluenceDatabaseInverseConnection = HasPageInfo & {
|
|
41977
|
-
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceDatabaseInverseConnection';
|
|
41978
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluenceDatabaseInverseEdge>>>;
|
|
41979
|
-
pageInfo: PageInfo;
|
|
41980
|
-
};
|
|
41981
|
-
export declare type GraphStoreSimplifiedUserCreatedConfluenceDatabaseInverseEdge = {
|
|
41982
|
-
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceDatabaseInverseEdge';
|
|
41983
|
-
createdAt: Scalars['DateTime']['output'];
|
|
41984
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
41985
|
-
id: Scalars['ID']['output'];
|
|
41986
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
41987
|
-
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceDatabaseInverseUnion>;
|
|
41988
|
-
};
|
|
41989
|
-
export declare type GraphStoreSimplifiedUserCreatedConfluenceDatabaseInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
41990
|
-
export declare type GraphStoreSimplifiedUserCreatedConfluenceDatabaseUnion = ConfluenceDatabase;
|
|
41991
40871
|
export declare type GraphStoreSimplifiedUserCreatedConfluencePageConnection = HasPageInfo & {
|
|
41992
40872
|
__typename?: 'GraphStoreSimplifiedUserCreatedConfluencePageConnection';
|
|
41993
40873
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluencePageEdge>>>;
|
|
@@ -42016,90 +40896,6 @@ export declare type GraphStoreSimplifiedUserCreatedConfluencePageInverseEdge = {
|
|
|
42016
40896
|
};
|
|
42017
40897
|
export declare type GraphStoreSimplifiedUserCreatedConfluencePageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
42018
40898
|
export declare type GraphStoreSimplifiedUserCreatedConfluencePageUnion = ConfluencePage;
|
|
42019
|
-
export declare type GraphStoreSimplifiedUserCreatedConfluenceWhiteboardConnection = HasPageInfo & {
|
|
42020
|
-
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceWhiteboardConnection';
|
|
42021
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluenceWhiteboardEdge>>>;
|
|
42022
|
-
pageInfo: PageInfo;
|
|
42023
|
-
};
|
|
42024
|
-
export declare type GraphStoreSimplifiedUserCreatedConfluenceWhiteboardEdge = {
|
|
42025
|
-
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceWhiteboardEdge';
|
|
42026
|
-
createdAt: Scalars['DateTime']['output'];
|
|
42027
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
42028
|
-
id: Scalars['ID']['output'];
|
|
42029
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
42030
|
-
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceWhiteboardUnion>;
|
|
42031
|
-
};
|
|
42032
|
-
export declare type GraphStoreSimplifiedUserCreatedConfluenceWhiteboardInverseConnection = HasPageInfo & {
|
|
42033
|
-
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceWhiteboardInverseConnection';
|
|
42034
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluenceWhiteboardInverseEdge>>>;
|
|
42035
|
-
pageInfo: PageInfo;
|
|
42036
|
-
};
|
|
42037
|
-
export declare type GraphStoreSimplifiedUserCreatedConfluenceWhiteboardInverseEdge = {
|
|
42038
|
-
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceWhiteboardInverseEdge';
|
|
42039
|
-
createdAt: Scalars['DateTime']['output'];
|
|
42040
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
42041
|
-
id: Scalars['ID']['output'];
|
|
42042
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
42043
|
-
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceWhiteboardInverseUnion>;
|
|
42044
|
-
};
|
|
42045
|
-
export declare type GraphStoreSimplifiedUserCreatedConfluenceWhiteboardInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
42046
|
-
export declare type GraphStoreSimplifiedUserCreatedConfluenceWhiteboardUnion = ConfluenceWhiteboard;
|
|
42047
|
-
export declare type GraphStoreSimplifiedUserCreatedDesignConnection = HasPageInfo & {
|
|
42048
|
-
__typename?: 'GraphStoreSimplifiedUserCreatedDesignConnection';
|
|
42049
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedDesignEdge>>>;
|
|
42050
|
-
pageInfo: PageInfo;
|
|
42051
|
-
};
|
|
42052
|
-
export declare type GraphStoreSimplifiedUserCreatedDesignEdge = {
|
|
42053
|
-
__typename?: 'GraphStoreSimplifiedUserCreatedDesignEdge';
|
|
42054
|
-
createdAt: Scalars['DateTime']['output'];
|
|
42055
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
42056
|
-
id: Scalars['ID']['output'];
|
|
42057
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
42058
|
-
node?: Maybe<GraphStoreSimplifiedUserCreatedDesignUnion>;
|
|
42059
|
-
};
|
|
42060
|
-
export declare type GraphStoreSimplifiedUserCreatedDesignInverseConnection = HasPageInfo & {
|
|
42061
|
-
__typename?: 'GraphStoreSimplifiedUserCreatedDesignInverseConnection';
|
|
42062
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedDesignInverseEdge>>>;
|
|
42063
|
-
pageInfo: PageInfo;
|
|
42064
|
-
};
|
|
42065
|
-
export declare type GraphStoreSimplifiedUserCreatedDesignInverseEdge = {
|
|
42066
|
-
__typename?: 'GraphStoreSimplifiedUserCreatedDesignInverseEdge';
|
|
42067
|
-
createdAt: Scalars['DateTime']['output'];
|
|
42068
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
42069
|
-
id: Scalars['ID']['output'];
|
|
42070
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
42071
|
-
node?: Maybe<GraphStoreSimplifiedUserCreatedDesignInverseUnion>;
|
|
42072
|
-
};
|
|
42073
|
-
export declare type GraphStoreSimplifiedUserCreatedDesignInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
42074
|
-
export declare type GraphStoreSimplifiedUserCreatedDesignUnion = DevOpsDesign | ExternalDesign;
|
|
42075
|
-
export declare type GraphStoreSimplifiedUserCreatedDocumentConnection = HasPageInfo & {
|
|
42076
|
-
__typename?: 'GraphStoreSimplifiedUserCreatedDocumentConnection';
|
|
42077
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedDocumentEdge>>>;
|
|
42078
|
-
pageInfo: PageInfo;
|
|
42079
|
-
};
|
|
42080
|
-
export declare type GraphStoreSimplifiedUserCreatedDocumentEdge = {
|
|
42081
|
-
__typename?: 'GraphStoreSimplifiedUserCreatedDocumentEdge';
|
|
42082
|
-
createdAt: Scalars['DateTime']['output'];
|
|
42083
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
42084
|
-
id: Scalars['ID']['output'];
|
|
42085
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
42086
|
-
node?: Maybe<GraphStoreSimplifiedUserCreatedDocumentUnion>;
|
|
42087
|
-
};
|
|
42088
|
-
export declare type GraphStoreSimplifiedUserCreatedDocumentInverseConnection = HasPageInfo & {
|
|
42089
|
-
__typename?: 'GraphStoreSimplifiedUserCreatedDocumentInverseConnection';
|
|
42090
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedDocumentInverseEdge>>>;
|
|
42091
|
-
pageInfo: PageInfo;
|
|
42092
|
-
};
|
|
42093
|
-
export declare type GraphStoreSimplifiedUserCreatedDocumentInverseEdge = {
|
|
42094
|
-
__typename?: 'GraphStoreSimplifiedUserCreatedDocumentInverseEdge';
|
|
42095
|
-
createdAt: Scalars['DateTime']['output'];
|
|
42096
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
42097
|
-
id: Scalars['ID']['output'];
|
|
42098
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
42099
|
-
node?: Maybe<GraphStoreSimplifiedUserCreatedDocumentInverseUnion>;
|
|
42100
|
-
};
|
|
42101
|
-
export declare type GraphStoreSimplifiedUserCreatedDocumentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
42102
|
-
export declare type GraphStoreSimplifiedUserCreatedDocumentUnion = DevOpsDocument | ExternalDocument;
|
|
42103
40899
|
export declare type GraphStoreSimplifiedUserCreatedLoomVideoConnection = HasPageInfo & {
|
|
42104
40900
|
__typename?: 'GraphStoreSimplifiedUserCreatedLoomVideoConnection';
|
|
42105
40901
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedLoomVideoEdge>>>;
|
|
@@ -42156,34 +40952,6 @@ export declare type GraphStoreSimplifiedUserCreatedMessageInverseEdge = {
|
|
|
42156
40952
|
};
|
|
42157
40953
|
export declare type GraphStoreSimplifiedUserCreatedMessageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
42158
40954
|
export declare type GraphStoreSimplifiedUserCreatedMessageUnion = ExternalMessage;
|
|
42159
|
-
export declare type GraphStoreSimplifiedUserCreatedRemoteLinkConnection = HasPageInfo & {
|
|
42160
|
-
__typename?: 'GraphStoreSimplifiedUserCreatedRemoteLinkConnection';
|
|
42161
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedRemoteLinkEdge>>>;
|
|
42162
|
-
pageInfo: PageInfo;
|
|
42163
|
-
};
|
|
42164
|
-
export declare type GraphStoreSimplifiedUserCreatedRemoteLinkEdge = {
|
|
42165
|
-
__typename?: 'GraphStoreSimplifiedUserCreatedRemoteLinkEdge';
|
|
42166
|
-
createdAt: Scalars['DateTime']['output'];
|
|
42167
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
42168
|
-
id: Scalars['ID']['output'];
|
|
42169
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
42170
|
-
node?: Maybe<GraphStoreSimplifiedUserCreatedRemoteLinkUnion>;
|
|
42171
|
-
};
|
|
42172
|
-
export declare type GraphStoreSimplifiedUserCreatedRemoteLinkInverseConnection = HasPageInfo & {
|
|
42173
|
-
__typename?: 'GraphStoreSimplifiedUserCreatedRemoteLinkInverseConnection';
|
|
42174
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedRemoteLinkInverseEdge>>>;
|
|
42175
|
-
pageInfo: PageInfo;
|
|
42176
|
-
};
|
|
42177
|
-
export declare type GraphStoreSimplifiedUserCreatedRemoteLinkInverseEdge = {
|
|
42178
|
-
__typename?: 'GraphStoreSimplifiedUserCreatedRemoteLinkInverseEdge';
|
|
42179
|
-
createdAt: Scalars['DateTime']['output'];
|
|
42180
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
42181
|
-
id: Scalars['ID']['output'];
|
|
42182
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
42183
|
-
node?: Maybe<GraphStoreSimplifiedUserCreatedRemoteLinkInverseUnion>;
|
|
42184
|
-
};
|
|
42185
|
-
export declare type GraphStoreSimplifiedUserCreatedRemoteLinkInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
42186
|
-
export declare type GraphStoreSimplifiedUserCreatedRemoteLinkUnion = ExternalRemoteLink;
|
|
42187
40955
|
export declare type GraphStoreSimplifiedUserCreatedRepositoryConnection = HasPageInfo & {
|
|
42188
40956
|
__typename?: 'GraphStoreSimplifiedUserCreatedRepositoryConnection';
|
|
42189
40957
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedRepositoryEdge>>>;
|
|
@@ -42212,118 +40980,6 @@ export declare type GraphStoreSimplifiedUserCreatedRepositoryInverseEdge = {
|
|
|
42212
40980
|
};
|
|
42213
40981
|
export declare type GraphStoreSimplifiedUserCreatedRepositoryInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
42214
40982
|
export declare type GraphStoreSimplifiedUserCreatedRepositoryUnion = ExternalRepository;
|
|
42215
|
-
export declare type GraphStoreSimplifiedUserFavoritedConfluenceBlogpostConnection = HasPageInfo & {
|
|
42216
|
-
__typename?: 'GraphStoreSimplifiedUserFavoritedConfluenceBlogpostConnection';
|
|
42217
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserFavoritedConfluenceBlogpostEdge>>>;
|
|
42218
|
-
pageInfo: PageInfo;
|
|
42219
|
-
};
|
|
42220
|
-
export declare type GraphStoreSimplifiedUserFavoritedConfluenceBlogpostEdge = {
|
|
42221
|
-
__typename?: 'GraphStoreSimplifiedUserFavoritedConfluenceBlogpostEdge';
|
|
42222
|
-
createdAt: Scalars['DateTime']['output'];
|
|
42223
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
42224
|
-
id: Scalars['ID']['output'];
|
|
42225
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
42226
|
-
node?: Maybe<GraphStoreSimplifiedUserFavoritedConfluenceBlogpostUnion>;
|
|
42227
|
-
};
|
|
42228
|
-
export declare type GraphStoreSimplifiedUserFavoritedConfluenceBlogpostInverseConnection = HasPageInfo & {
|
|
42229
|
-
__typename?: 'GraphStoreSimplifiedUserFavoritedConfluenceBlogpostInverseConnection';
|
|
42230
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserFavoritedConfluenceBlogpostInverseEdge>>>;
|
|
42231
|
-
pageInfo: PageInfo;
|
|
42232
|
-
};
|
|
42233
|
-
export declare type GraphStoreSimplifiedUserFavoritedConfluenceBlogpostInverseEdge = {
|
|
42234
|
-
__typename?: 'GraphStoreSimplifiedUserFavoritedConfluenceBlogpostInverseEdge';
|
|
42235
|
-
createdAt: Scalars['DateTime']['output'];
|
|
42236
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
42237
|
-
id: Scalars['ID']['output'];
|
|
42238
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
42239
|
-
node?: Maybe<GraphStoreSimplifiedUserFavoritedConfluenceBlogpostInverseUnion>;
|
|
42240
|
-
};
|
|
42241
|
-
export declare type GraphStoreSimplifiedUserFavoritedConfluenceBlogpostInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
42242
|
-
export declare type GraphStoreSimplifiedUserFavoritedConfluenceBlogpostUnion = ConfluenceBlogPost;
|
|
42243
|
-
export declare type GraphStoreSimplifiedUserFavoritedConfluenceDatabaseConnection = HasPageInfo & {
|
|
42244
|
-
__typename?: 'GraphStoreSimplifiedUserFavoritedConfluenceDatabaseConnection';
|
|
42245
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserFavoritedConfluenceDatabaseEdge>>>;
|
|
42246
|
-
pageInfo: PageInfo;
|
|
42247
|
-
};
|
|
42248
|
-
export declare type GraphStoreSimplifiedUserFavoritedConfluenceDatabaseEdge = {
|
|
42249
|
-
__typename?: 'GraphStoreSimplifiedUserFavoritedConfluenceDatabaseEdge';
|
|
42250
|
-
createdAt: Scalars['DateTime']['output'];
|
|
42251
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
42252
|
-
id: Scalars['ID']['output'];
|
|
42253
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
42254
|
-
node?: Maybe<GraphStoreSimplifiedUserFavoritedConfluenceDatabaseUnion>;
|
|
42255
|
-
};
|
|
42256
|
-
export declare type GraphStoreSimplifiedUserFavoritedConfluenceDatabaseInverseConnection = HasPageInfo & {
|
|
42257
|
-
__typename?: 'GraphStoreSimplifiedUserFavoritedConfluenceDatabaseInverseConnection';
|
|
42258
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserFavoritedConfluenceDatabaseInverseEdge>>>;
|
|
42259
|
-
pageInfo: PageInfo;
|
|
42260
|
-
};
|
|
42261
|
-
export declare type GraphStoreSimplifiedUserFavoritedConfluenceDatabaseInverseEdge = {
|
|
42262
|
-
__typename?: 'GraphStoreSimplifiedUserFavoritedConfluenceDatabaseInverseEdge';
|
|
42263
|
-
createdAt: Scalars['DateTime']['output'];
|
|
42264
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
42265
|
-
id: Scalars['ID']['output'];
|
|
42266
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
42267
|
-
node?: Maybe<GraphStoreSimplifiedUserFavoritedConfluenceDatabaseInverseUnion>;
|
|
42268
|
-
};
|
|
42269
|
-
export declare type GraphStoreSimplifiedUserFavoritedConfluenceDatabaseInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
42270
|
-
export declare type GraphStoreSimplifiedUserFavoritedConfluenceDatabaseUnion = ConfluenceDatabase;
|
|
42271
|
-
export declare type GraphStoreSimplifiedUserFavoritedConfluencePageConnection = HasPageInfo & {
|
|
42272
|
-
__typename?: 'GraphStoreSimplifiedUserFavoritedConfluencePageConnection';
|
|
42273
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserFavoritedConfluencePageEdge>>>;
|
|
42274
|
-
pageInfo: PageInfo;
|
|
42275
|
-
};
|
|
42276
|
-
export declare type GraphStoreSimplifiedUserFavoritedConfluencePageEdge = {
|
|
42277
|
-
__typename?: 'GraphStoreSimplifiedUserFavoritedConfluencePageEdge';
|
|
42278
|
-
createdAt: Scalars['DateTime']['output'];
|
|
42279
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
42280
|
-
id: Scalars['ID']['output'];
|
|
42281
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
42282
|
-
node?: Maybe<GraphStoreSimplifiedUserFavoritedConfluencePageUnion>;
|
|
42283
|
-
};
|
|
42284
|
-
export declare type GraphStoreSimplifiedUserFavoritedConfluencePageInverseConnection = HasPageInfo & {
|
|
42285
|
-
__typename?: 'GraphStoreSimplifiedUserFavoritedConfluencePageInverseConnection';
|
|
42286
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserFavoritedConfluencePageInverseEdge>>>;
|
|
42287
|
-
pageInfo: PageInfo;
|
|
42288
|
-
};
|
|
42289
|
-
export declare type GraphStoreSimplifiedUserFavoritedConfluencePageInverseEdge = {
|
|
42290
|
-
__typename?: 'GraphStoreSimplifiedUserFavoritedConfluencePageInverseEdge';
|
|
42291
|
-
createdAt: Scalars['DateTime']['output'];
|
|
42292
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
42293
|
-
id: Scalars['ID']['output'];
|
|
42294
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
42295
|
-
node?: Maybe<GraphStoreSimplifiedUserFavoritedConfluencePageInverseUnion>;
|
|
42296
|
-
};
|
|
42297
|
-
export declare type GraphStoreSimplifiedUserFavoritedConfluencePageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
42298
|
-
export declare type GraphStoreSimplifiedUserFavoritedConfluencePageUnion = ConfluencePage;
|
|
42299
|
-
export declare type GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardConnection = HasPageInfo & {
|
|
42300
|
-
__typename?: 'GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardConnection';
|
|
42301
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardEdge>>>;
|
|
42302
|
-
pageInfo: PageInfo;
|
|
42303
|
-
};
|
|
42304
|
-
export declare type GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardEdge = {
|
|
42305
|
-
__typename?: 'GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardEdge';
|
|
42306
|
-
createdAt: Scalars['DateTime']['output'];
|
|
42307
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
42308
|
-
id: Scalars['ID']['output'];
|
|
42309
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
42310
|
-
node?: Maybe<GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardUnion>;
|
|
42311
|
-
};
|
|
42312
|
-
export declare type GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardInverseConnection = HasPageInfo & {
|
|
42313
|
-
__typename?: 'GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardInverseConnection';
|
|
42314
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardInverseEdge>>>;
|
|
42315
|
-
pageInfo: PageInfo;
|
|
42316
|
-
};
|
|
42317
|
-
export declare type GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardInverseEdge = {
|
|
42318
|
-
__typename?: 'GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardInverseEdge';
|
|
42319
|
-
createdAt: Scalars['DateTime']['output'];
|
|
42320
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
42321
|
-
id: Scalars['ID']['output'];
|
|
42322
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
42323
|
-
node?: Maybe<GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardInverseUnion>;
|
|
42324
|
-
};
|
|
42325
|
-
export declare type GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
42326
|
-
export declare type GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardUnion = ConfluenceWhiteboard;
|
|
42327
40983
|
export declare type GraphStoreSimplifiedUserHasRelevantProjectConnection = HasPageInfo & HasTotal & {
|
|
42328
40984
|
__typename?: 'GraphStoreSimplifiedUserHasRelevantProjectConnection';
|
|
42329
40985
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserHasRelevantProjectEdge>>>;
|
|
@@ -42412,34 +41068,6 @@ export declare type GraphStoreSimplifiedUserIsInTeamInverseEdge = {
|
|
|
42412
41068
|
};
|
|
42413
41069
|
export declare type GraphStoreSimplifiedUserIsInTeamInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
42414
41070
|
export declare type GraphStoreSimplifiedUserIsInTeamUnion = TeamV2;
|
|
42415
|
-
export declare type GraphStoreSimplifiedUserLastUpdatedDesignConnection = HasPageInfo & {
|
|
42416
|
-
__typename?: 'GraphStoreSimplifiedUserLastUpdatedDesignConnection';
|
|
42417
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserLastUpdatedDesignEdge>>>;
|
|
42418
|
-
pageInfo: PageInfo;
|
|
42419
|
-
};
|
|
42420
|
-
export declare type GraphStoreSimplifiedUserLastUpdatedDesignEdge = {
|
|
42421
|
-
__typename?: 'GraphStoreSimplifiedUserLastUpdatedDesignEdge';
|
|
42422
|
-
createdAt: Scalars['DateTime']['output'];
|
|
42423
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
42424
|
-
id: Scalars['ID']['output'];
|
|
42425
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
42426
|
-
node?: Maybe<GraphStoreSimplifiedUserLastUpdatedDesignUnion>;
|
|
42427
|
-
};
|
|
42428
|
-
export declare type GraphStoreSimplifiedUserLastUpdatedDesignInverseConnection = HasPageInfo & {
|
|
42429
|
-
__typename?: 'GraphStoreSimplifiedUserLastUpdatedDesignInverseConnection';
|
|
42430
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserLastUpdatedDesignInverseEdge>>>;
|
|
42431
|
-
pageInfo: PageInfo;
|
|
42432
|
-
};
|
|
42433
|
-
export declare type GraphStoreSimplifiedUserLastUpdatedDesignInverseEdge = {
|
|
42434
|
-
__typename?: 'GraphStoreSimplifiedUserLastUpdatedDesignInverseEdge';
|
|
42435
|
-
createdAt: Scalars['DateTime']['output'];
|
|
42436
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
42437
|
-
id: Scalars['ID']['output'];
|
|
42438
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
42439
|
-
node?: Maybe<GraphStoreSimplifiedUserLastUpdatedDesignInverseUnion>;
|
|
42440
|
-
};
|
|
42441
|
-
export declare type GraphStoreSimplifiedUserLastUpdatedDesignInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
42442
|
-
export declare type GraphStoreSimplifiedUserLastUpdatedDesignUnion = DevOpsDesign | ExternalDesign;
|
|
42443
41071
|
export declare type GraphStoreSimplifiedUserMemberOfConversationConnection = HasPageInfo & {
|
|
42444
41072
|
__typename?: 'GraphStoreSimplifiedUserMemberOfConversationConnection';
|
|
42445
41073
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserMemberOfConversationEdge>>>;
|
|
@@ -42552,34 +41180,6 @@ export declare type GraphStoreSimplifiedUserOwnedCalendarEventInverseEdge = {
|
|
|
42552
41180
|
};
|
|
42553
41181
|
export declare type GraphStoreSimplifiedUserOwnedCalendarEventInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
42554
41182
|
export declare type GraphStoreSimplifiedUserOwnedCalendarEventUnion = ExternalCalendarEvent;
|
|
42555
|
-
export declare type GraphStoreSimplifiedUserOwnedDocumentConnection = HasPageInfo & {
|
|
42556
|
-
__typename?: 'GraphStoreSimplifiedUserOwnedDocumentConnection';
|
|
42557
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnedDocumentEdge>>>;
|
|
42558
|
-
pageInfo: PageInfo;
|
|
42559
|
-
};
|
|
42560
|
-
export declare type GraphStoreSimplifiedUserOwnedDocumentEdge = {
|
|
42561
|
-
__typename?: 'GraphStoreSimplifiedUserOwnedDocumentEdge';
|
|
42562
|
-
createdAt: Scalars['DateTime']['output'];
|
|
42563
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
42564
|
-
id: Scalars['ID']['output'];
|
|
42565
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
42566
|
-
node?: Maybe<GraphStoreSimplifiedUserOwnedDocumentUnion>;
|
|
42567
|
-
};
|
|
42568
|
-
export declare type GraphStoreSimplifiedUserOwnedDocumentInverseConnection = HasPageInfo & {
|
|
42569
|
-
__typename?: 'GraphStoreSimplifiedUserOwnedDocumentInverseConnection';
|
|
42570
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnedDocumentInverseEdge>>>;
|
|
42571
|
-
pageInfo: PageInfo;
|
|
42572
|
-
};
|
|
42573
|
-
export declare type GraphStoreSimplifiedUserOwnedDocumentInverseEdge = {
|
|
42574
|
-
__typename?: 'GraphStoreSimplifiedUserOwnedDocumentInverseEdge';
|
|
42575
|
-
createdAt: Scalars['DateTime']['output'];
|
|
42576
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
42577
|
-
id: Scalars['ID']['output'];
|
|
42578
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
42579
|
-
node?: Maybe<GraphStoreSimplifiedUserOwnedDocumentInverseUnion>;
|
|
42580
|
-
};
|
|
42581
|
-
export declare type GraphStoreSimplifiedUserOwnedDocumentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
42582
|
-
export declare type GraphStoreSimplifiedUserOwnedDocumentUnion = DevOpsDocument | ExternalDocument;
|
|
42583
41183
|
export declare type GraphStoreSimplifiedUserOwnedRemoteLinkConnection = HasPageInfo & {
|
|
42584
41184
|
__typename?: 'GraphStoreSimplifiedUserOwnedRemoteLinkConnection';
|
|
42585
41185
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnedRemoteLinkEdge>>>;
|
|
@@ -42752,62 +41352,6 @@ export declare type GraphStoreSimplifiedUserReviewsPrInverseEdge = {
|
|
|
42752
41352
|
};
|
|
42753
41353
|
export declare type GraphStoreSimplifiedUserReviewsPrInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
42754
41354
|
export declare type GraphStoreSimplifiedUserReviewsPrUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
42755
|
-
export declare type GraphStoreSimplifiedUserTaggedInCommentConnection = HasPageInfo & {
|
|
42756
|
-
__typename?: 'GraphStoreSimplifiedUserTaggedInCommentConnection';
|
|
42757
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTaggedInCommentEdge>>>;
|
|
42758
|
-
pageInfo: PageInfo;
|
|
42759
|
-
};
|
|
42760
|
-
export declare type GraphStoreSimplifiedUserTaggedInCommentEdge = {
|
|
42761
|
-
__typename?: 'GraphStoreSimplifiedUserTaggedInCommentEdge';
|
|
42762
|
-
createdAt: Scalars['DateTime']['output'];
|
|
42763
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
42764
|
-
id: Scalars['ID']['output'];
|
|
42765
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
42766
|
-
node?: Maybe<GraphStoreSimplifiedUserTaggedInCommentUnion>;
|
|
42767
|
-
};
|
|
42768
|
-
export declare type GraphStoreSimplifiedUserTaggedInCommentInverseConnection = HasPageInfo & {
|
|
42769
|
-
__typename?: 'GraphStoreSimplifiedUserTaggedInCommentInverseConnection';
|
|
42770
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTaggedInCommentInverseEdge>>>;
|
|
42771
|
-
pageInfo: PageInfo;
|
|
42772
|
-
};
|
|
42773
|
-
export declare type GraphStoreSimplifiedUserTaggedInCommentInverseEdge = {
|
|
42774
|
-
__typename?: 'GraphStoreSimplifiedUserTaggedInCommentInverseEdge';
|
|
42775
|
-
createdAt: Scalars['DateTime']['output'];
|
|
42776
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
42777
|
-
id: Scalars['ID']['output'];
|
|
42778
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
42779
|
-
node?: Maybe<GraphStoreSimplifiedUserTaggedInCommentInverseUnion>;
|
|
42780
|
-
};
|
|
42781
|
-
export declare type GraphStoreSimplifiedUserTaggedInCommentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
42782
|
-
export declare type GraphStoreSimplifiedUserTaggedInCommentUnion = ConfluenceFooterComment | ConfluenceInlineComment;
|
|
42783
|
-
export declare type GraphStoreSimplifiedUserTaggedInConfluencePageConnection = HasPageInfo & {
|
|
42784
|
-
__typename?: 'GraphStoreSimplifiedUserTaggedInConfluencePageConnection';
|
|
42785
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTaggedInConfluencePageEdge>>>;
|
|
42786
|
-
pageInfo: PageInfo;
|
|
42787
|
-
};
|
|
42788
|
-
export declare type GraphStoreSimplifiedUserTaggedInConfluencePageEdge = {
|
|
42789
|
-
__typename?: 'GraphStoreSimplifiedUserTaggedInConfluencePageEdge';
|
|
42790
|
-
createdAt: Scalars['DateTime']['output'];
|
|
42791
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
42792
|
-
id: Scalars['ID']['output'];
|
|
42793
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
42794
|
-
node?: Maybe<GraphStoreSimplifiedUserTaggedInConfluencePageUnion>;
|
|
42795
|
-
};
|
|
42796
|
-
export declare type GraphStoreSimplifiedUserTaggedInConfluencePageInverseConnection = HasPageInfo & {
|
|
42797
|
-
__typename?: 'GraphStoreSimplifiedUserTaggedInConfluencePageInverseConnection';
|
|
42798
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTaggedInConfluencePageInverseEdge>>>;
|
|
42799
|
-
pageInfo: PageInfo;
|
|
42800
|
-
};
|
|
42801
|
-
export declare type GraphStoreSimplifiedUserTaggedInConfluencePageInverseEdge = {
|
|
42802
|
-
__typename?: 'GraphStoreSimplifiedUserTaggedInConfluencePageInverseEdge';
|
|
42803
|
-
createdAt: Scalars['DateTime']['output'];
|
|
42804
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
42805
|
-
id: Scalars['ID']['output'];
|
|
42806
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
42807
|
-
node?: Maybe<GraphStoreSimplifiedUserTaggedInConfluencePageInverseUnion>;
|
|
42808
|
-
};
|
|
42809
|
-
export declare type GraphStoreSimplifiedUserTaggedInConfluencePageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
42810
|
-
export declare type GraphStoreSimplifiedUserTaggedInConfluencePageUnion = ConfluencePage;
|
|
42811
41355
|
export declare type GraphStoreSimplifiedUserTriggeredDeploymentConnection = HasPageInfo & {
|
|
42812
41356
|
__typename?: 'GraphStoreSimplifiedUserTriggeredDeploymentConnection';
|
|
42813
41357
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTriggeredDeploymentEdge>>>;
|
|
@@ -42892,62 +41436,6 @@ export declare type GraphStoreSimplifiedUserUpdatedConfluencePageInverseEdge = {
|
|
|
42892
41436
|
};
|
|
42893
41437
|
export declare type GraphStoreSimplifiedUserUpdatedConfluencePageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
42894
41438
|
export declare type GraphStoreSimplifiedUserUpdatedConfluencePageUnion = ConfluencePage;
|
|
42895
|
-
export declare type GraphStoreSimplifiedUserUpdatedConfluenceSpaceConnection = HasPageInfo & {
|
|
42896
|
-
__typename?: 'GraphStoreSimplifiedUserUpdatedConfluenceSpaceConnection';
|
|
42897
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedConfluenceSpaceEdge>>>;
|
|
42898
|
-
pageInfo: PageInfo;
|
|
42899
|
-
};
|
|
42900
|
-
export declare type GraphStoreSimplifiedUserUpdatedConfluenceSpaceEdge = {
|
|
42901
|
-
__typename?: 'GraphStoreSimplifiedUserUpdatedConfluenceSpaceEdge';
|
|
42902
|
-
createdAt: Scalars['DateTime']['output'];
|
|
42903
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
42904
|
-
id: Scalars['ID']['output'];
|
|
42905
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
42906
|
-
node?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceSpaceUnion>;
|
|
42907
|
-
};
|
|
42908
|
-
export declare type GraphStoreSimplifiedUserUpdatedConfluenceSpaceInverseConnection = HasPageInfo & {
|
|
42909
|
-
__typename?: 'GraphStoreSimplifiedUserUpdatedConfluenceSpaceInverseConnection';
|
|
42910
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedConfluenceSpaceInverseEdge>>>;
|
|
42911
|
-
pageInfo: PageInfo;
|
|
42912
|
-
};
|
|
42913
|
-
export declare type GraphStoreSimplifiedUserUpdatedConfluenceSpaceInverseEdge = {
|
|
42914
|
-
__typename?: 'GraphStoreSimplifiedUserUpdatedConfluenceSpaceInverseEdge';
|
|
42915
|
-
createdAt: Scalars['DateTime']['output'];
|
|
42916
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
42917
|
-
id: Scalars['ID']['output'];
|
|
42918
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
42919
|
-
node?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceSpaceInverseUnion>;
|
|
42920
|
-
};
|
|
42921
|
-
export declare type GraphStoreSimplifiedUserUpdatedConfluenceSpaceInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
42922
|
-
export declare type GraphStoreSimplifiedUserUpdatedConfluenceSpaceUnion = ConfluenceSpace;
|
|
42923
|
-
export declare type GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardConnection = HasPageInfo & {
|
|
42924
|
-
__typename?: 'GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardConnection';
|
|
42925
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardEdge>>>;
|
|
42926
|
-
pageInfo: PageInfo;
|
|
42927
|
-
};
|
|
42928
|
-
export declare type GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardEdge = {
|
|
42929
|
-
__typename?: 'GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardEdge';
|
|
42930
|
-
createdAt: Scalars['DateTime']['output'];
|
|
42931
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
42932
|
-
id: Scalars['ID']['output'];
|
|
42933
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
42934
|
-
node?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardUnion>;
|
|
42935
|
-
};
|
|
42936
|
-
export declare type GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardInverseConnection = HasPageInfo & {
|
|
42937
|
-
__typename?: 'GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardInverseConnection';
|
|
42938
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardInverseEdge>>>;
|
|
42939
|
-
pageInfo: PageInfo;
|
|
42940
|
-
};
|
|
42941
|
-
export declare type GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardInverseEdge = {
|
|
42942
|
-
__typename?: 'GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardInverseEdge';
|
|
42943
|
-
createdAt: Scalars['DateTime']['output'];
|
|
42944
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
42945
|
-
id: Scalars['ID']['output'];
|
|
42946
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
42947
|
-
node?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardInverseUnion>;
|
|
42948
|
-
};
|
|
42949
|
-
export declare type GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
42950
|
-
export declare type GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardUnion = ConfluenceWhiteboard;
|
|
42951
41439
|
export declare type GraphStoreSimplifiedUserViewedAtlasGoalConnection = HasPageInfo & {
|
|
42952
41440
|
__typename?: 'GraphStoreSimplifiedUserViewedAtlasGoalConnection';
|
|
42953
41441
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedAtlasGoalEdge>>>;
|
|
@@ -43088,90 +41576,6 @@ export declare type GraphStoreSimplifiedUserViewedJiraIssueInverseEdge = {
|
|
|
43088
41576
|
};
|
|
43089
41577
|
export declare type GraphStoreSimplifiedUserViewedJiraIssueInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
43090
41578
|
export declare type GraphStoreSimplifiedUserViewedJiraIssueUnion = JiraIssue;
|
|
43091
|
-
export declare type GraphStoreSimplifiedUserWatchesConfluenceBlogpostConnection = HasPageInfo & {
|
|
43092
|
-
__typename?: 'GraphStoreSimplifiedUserWatchesConfluenceBlogpostConnection';
|
|
43093
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserWatchesConfluenceBlogpostEdge>>>;
|
|
43094
|
-
pageInfo: PageInfo;
|
|
43095
|
-
};
|
|
43096
|
-
export declare type GraphStoreSimplifiedUserWatchesConfluenceBlogpostEdge = {
|
|
43097
|
-
__typename?: 'GraphStoreSimplifiedUserWatchesConfluenceBlogpostEdge';
|
|
43098
|
-
createdAt: Scalars['DateTime']['output'];
|
|
43099
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
43100
|
-
id: Scalars['ID']['output'];
|
|
43101
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
43102
|
-
node?: Maybe<GraphStoreSimplifiedUserWatchesConfluenceBlogpostUnion>;
|
|
43103
|
-
};
|
|
43104
|
-
export declare type GraphStoreSimplifiedUserWatchesConfluenceBlogpostInverseConnection = HasPageInfo & {
|
|
43105
|
-
__typename?: 'GraphStoreSimplifiedUserWatchesConfluenceBlogpostInverseConnection';
|
|
43106
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserWatchesConfluenceBlogpostInverseEdge>>>;
|
|
43107
|
-
pageInfo: PageInfo;
|
|
43108
|
-
};
|
|
43109
|
-
export declare type GraphStoreSimplifiedUserWatchesConfluenceBlogpostInverseEdge = {
|
|
43110
|
-
__typename?: 'GraphStoreSimplifiedUserWatchesConfluenceBlogpostInverseEdge';
|
|
43111
|
-
createdAt: Scalars['DateTime']['output'];
|
|
43112
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
43113
|
-
id: Scalars['ID']['output'];
|
|
43114
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
43115
|
-
node?: Maybe<GraphStoreSimplifiedUserWatchesConfluenceBlogpostInverseUnion>;
|
|
43116
|
-
};
|
|
43117
|
-
export declare type GraphStoreSimplifiedUserWatchesConfluenceBlogpostInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
43118
|
-
export declare type GraphStoreSimplifiedUserWatchesConfluenceBlogpostUnion = ConfluenceBlogPost;
|
|
43119
|
-
export declare type GraphStoreSimplifiedUserWatchesConfluencePageConnection = HasPageInfo & {
|
|
43120
|
-
__typename?: 'GraphStoreSimplifiedUserWatchesConfluencePageConnection';
|
|
43121
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserWatchesConfluencePageEdge>>>;
|
|
43122
|
-
pageInfo: PageInfo;
|
|
43123
|
-
};
|
|
43124
|
-
export declare type GraphStoreSimplifiedUserWatchesConfluencePageEdge = {
|
|
43125
|
-
__typename?: 'GraphStoreSimplifiedUserWatchesConfluencePageEdge';
|
|
43126
|
-
createdAt: Scalars['DateTime']['output'];
|
|
43127
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
43128
|
-
id: Scalars['ID']['output'];
|
|
43129
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
43130
|
-
node?: Maybe<GraphStoreSimplifiedUserWatchesConfluencePageUnion>;
|
|
43131
|
-
};
|
|
43132
|
-
export declare type GraphStoreSimplifiedUserWatchesConfluencePageInverseConnection = HasPageInfo & {
|
|
43133
|
-
__typename?: 'GraphStoreSimplifiedUserWatchesConfluencePageInverseConnection';
|
|
43134
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserWatchesConfluencePageInverseEdge>>>;
|
|
43135
|
-
pageInfo: PageInfo;
|
|
43136
|
-
};
|
|
43137
|
-
export declare type GraphStoreSimplifiedUserWatchesConfluencePageInverseEdge = {
|
|
43138
|
-
__typename?: 'GraphStoreSimplifiedUserWatchesConfluencePageInverseEdge';
|
|
43139
|
-
createdAt: Scalars['DateTime']['output'];
|
|
43140
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
43141
|
-
id: Scalars['ID']['output'];
|
|
43142
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
43143
|
-
node?: Maybe<GraphStoreSimplifiedUserWatchesConfluencePageInverseUnion>;
|
|
43144
|
-
};
|
|
43145
|
-
export declare type GraphStoreSimplifiedUserWatchesConfluencePageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
43146
|
-
export declare type GraphStoreSimplifiedUserWatchesConfluencePageUnion = ConfluencePage;
|
|
43147
|
-
export declare type GraphStoreSimplifiedUserWatchesConfluenceWhiteboardConnection = HasPageInfo & {
|
|
43148
|
-
__typename?: 'GraphStoreSimplifiedUserWatchesConfluenceWhiteboardConnection';
|
|
43149
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserWatchesConfluenceWhiteboardEdge>>>;
|
|
43150
|
-
pageInfo: PageInfo;
|
|
43151
|
-
};
|
|
43152
|
-
export declare type GraphStoreSimplifiedUserWatchesConfluenceWhiteboardEdge = {
|
|
43153
|
-
__typename?: 'GraphStoreSimplifiedUserWatchesConfluenceWhiteboardEdge';
|
|
43154
|
-
createdAt: Scalars['DateTime']['output'];
|
|
43155
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
43156
|
-
id: Scalars['ID']['output'];
|
|
43157
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
43158
|
-
node?: Maybe<GraphStoreSimplifiedUserWatchesConfluenceWhiteboardUnion>;
|
|
43159
|
-
};
|
|
43160
|
-
export declare type GraphStoreSimplifiedUserWatchesConfluenceWhiteboardInverseConnection = HasPageInfo & {
|
|
43161
|
-
__typename?: 'GraphStoreSimplifiedUserWatchesConfluenceWhiteboardInverseConnection';
|
|
43162
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserWatchesConfluenceWhiteboardInverseEdge>>>;
|
|
43163
|
-
pageInfo: PageInfo;
|
|
43164
|
-
};
|
|
43165
|
-
export declare type GraphStoreSimplifiedUserWatchesConfluenceWhiteboardInverseEdge = {
|
|
43166
|
-
__typename?: 'GraphStoreSimplifiedUserWatchesConfluenceWhiteboardInverseEdge';
|
|
43167
|
-
createdAt: Scalars['DateTime']['output'];
|
|
43168
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
43169
|
-
id: Scalars['ID']['output'];
|
|
43170
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
43171
|
-
node?: Maybe<GraphStoreSimplifiedUserWatchesConfluenceWhiteboardInverseUnion>;
|
|
43172
|
-
};
|
|
43173
|
-
export declare type GraphStoreSimplifiedUserWatchesConfluenceWhiteboardInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
43174
|
-
export declare type GraphStoreSimplifiedUserWatchesConfluenceWhiteboardUnion = ConfluenceWhiteboard;
|
|
43175
41579
|
export declare type GraphStoreSimplifiedVersionAssociatedBranchConnection = HasPageInfo & HasTotal & {
|
|
43176
41580
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedBranchConnection';
|
|
43177
41581
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVersionAssociatedBranchEdge>>>;
|
|
@@ -43892,72 +42296,24 @@ export declare type GraphStoreUserAuthoredCommitSortInput = {
|
|
|
43892
42296
|
export declare type GraphStoreUserAuthoredPrSortInput = {
|
|
43893
42297
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43894
42298
|
};
|
|
43895
|
-
export declare type GraphStoreUserCanViewConfluenceSpaceSortInput = {
|
|
43896
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43897
|
-
};
|
|
43898
|
-
export declare type GraphStoreUserCollaboratedOnDocumentSortInput = {
|
|
43899
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43900
|
-
};
|
|
43901
|
-
export declare type GraphStoreUserContributedConfluenceBlogpostSortInput = {
|
|
43902
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43903
|
-
};
|
|
43904
|
-
export declare type GraphStoreUserContributedConfluenceDatabaseSortInput = {
|
|
43905
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43906
|
-
};
|
|
43907
|
-
export declare type GraphStoreUserContributedConfluencePageSortInput = {
|
|
43908
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43909
|
-
};
|
|
43910
|
-
export declare type GraphStoreUserContributedConfluenceWhiteboardSortInput = {
|
|
43911
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43912
|
-
};
|
|
43913
42299
|
export declare type GraphStoreUserCreatedBranchSortInput = {
|
|
43914
42300
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43915
42301
|
};
|
|
43916
|
-
export declare type GraphStoreUserCreatedCalendarEventSortInput = {
|
|
43917
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43918
|
-
};
|
|
43919
42302
|
export declare type GraphStoreUserCreatedConfluenceBlogpostSortInput = {
|
|
43920
42303
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43921
42304
|
};
|
|
43922
|
-
export declare type GraphStoreUserCreatedConfluenceDatabaseSortInput = {
|
|
43923
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43924
|
-
};
|
|
43925
42305
|
export declare type GraphStoreUserCreatedConfluencePageSortInput = {
|
|
43926
42306
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43927
42307
|
};
|
|
43928
|
-
export declare type GraphStoreUserCreatedConfluenceWhiteboardSortInput = {
|
|
43929
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43930
|
-
};
|
|
43931
|
-
export declare type GraphStoreUserCreatedDesignSortInput = {
|
|
43932
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43933
|
-
};
|
|
43934
|
-
export declare type GraphStoreUserCreatedDocumentSortInput = {
|
|
43935
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43936
|
-
};
|
|
43937
42308
|
export declare type GraphStoreUserCreatedLoomVideoSortInput = {
|
|
43938
42309
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43939
42310
|
};
|
|
43940
42311
|
export declare type GraphStoreUserCreatedMessageSortInput = {
|
|
43941
42312
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43942
42313
|
};
|
|
43943
|
-
export declare type GraphStoreUserCreatedRemoteLinkSortInput = {
|
|
43944
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43945
|
-
};
|
|
43946
42314
|
export declare type GraphStoreUserCreatedRepositorySortInput = {
|
|
43947
42315
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43948
42316
|
};
|
|
43949
|
-
export declare type GraphStoreUserFavoritedConfluenceBlogpostSortInput = {
|
|
43950
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43951
|
-
};
|
|
43952
|
-
export declare type GraphStoreUserFavoritedConfluenceDatabaseSortInput = {
|
|
43953
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43954
|
-
};
|
|
43955
|
-
export declare type GraphStoreUserFavoritedConfluencePageSortInput = {
|
|
43956
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43957
|
-
};
|
|
43958
|
-
export declare type GraphStoreUserFavoritedConfluenceWhiteboardSortInput = {
|
|
43959
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43960
|
-
};
|
|
43961
42317
|
export declare type GraphStoreUserHasRelevantProjectSortInput = {
|
|
43962
42318
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
43963
42319
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -43970,9 +42326,6 @@ export declare type GraphStoreUserHasTopProjectSortInput = {
|
|
|
43970
42326
|
export declare type GraphStoreUserIsInTeamSortInput = {
|
|
43971
42327
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43972
42328
|
};
|
|
43973
|
-
export declare type GraphStoreUserLastUpdatedDesignSortInput = {
|
|
43974
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43975
|
-
};
|
|
43976
42329
|
export declare type GraphStoreUserMemberOfConversationSortInput = {
|
|
43977
42330
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43978
42331
|
};
|
|
@@ -43985,9 +42338,6 @@ export declare type GraphStoreUserOwnedBranchSortInput = {
|
|
|
43985
42338
|
export declare type GraphStoreUserOwnedCalendarEventSortInput = {
|
|
43986
42339
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43987
42340
|
};
|
|
43988
|
-
export declare type GraphStoreUserOwnedDocumentSortInput = {
|
|
43989
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43990
|
-
};
|
|
43991
42341
|
export declare type GraphStoreUserOwnedRemoteLinkSortInput = {
|
|
43992
42342
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43993
42343
|
};
|
|
@@ -44009,12 +42359,6 @@ export declare type GraphStoreUserReportsIssueSortInput = {
|
|
|
44009
42359
|
export declare type GraphStoreUserReviewsPrSortInput = {
|
|
44010
42360
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44011
42361
|
};
|
|
44012
|
-
export declare type GraphStoreUserTaggedInCommentSortInput = {
|
|
44013
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44014
|
-
};
|
|
44015
|
-
export declare type GraphStoreUserTaggedInConfluencePageSortInput = {
|
|
44016
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44017
|
-
};
|
|
44018
42362
|
export declare type GraphStoreUserTriggeredDeploymentSortInput = {
|
|
44019
42363
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44020
42364
|
};
|
|
@@ -44024,12 +42368,6 @@ export declare type GraphStoreUserUpdatedConfluenceBlogpostSortInput = {
|
|
|
44024
42368
|
export declare type GraphStoreUserUpdatedConfluencePageSortInput = {
|
|
44025
42369
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44026
42370
|
};
|
|
44027
|
-
export declare type GraphStoreUserUpdatedConfluenceSpaceSortInput = {
|
|
44028
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44029
|
-
};
|
|
44030
|
-
export declare type GraphStoreUserUpdatedConfluenceWhiteboardSortInput = {
|
|
44031
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44032
|
-
};
|
|
44033
42371
|
export declare type GraphStoreUserViewedAtlasGoalSortInput = {
|
|
44034
42372
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44035
42373
|
};
|
|
@@ -44045,15 +42383,6 @@ export declare type GraphStoreUserViewedConfluencePageSortInput = {
|
|
|
44045
42383
|
export declare type GraphStoreUserViewedJiraIssueSortInput = {
|
|
44046
42384
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44047
42385
|
};
|
|
44048
|
-
export declare type GraphStoreUserWatchesConfluenceBlogpostSortInput = {
|
|
44049
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44050
|
-
};
|
|
44051
|
-
export declare type GraphStoreUserWatchesConfluencePageSortInput = {
|
|
44052
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44053
|
-
};
|
|
44054
|
-
export declare type GraphStoreUserWatchesConfluenceWhiteboardSortInput = {
|
|
44055
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44056
|
-
};
|
|
44057
42386
|
export declare type GraphStoreVersionAssociatedBranchSortInput = {
|
|
44058
42387
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
44059
42388
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -44291,10 +42620,6 @@ export declare type GrowthUnifiedProfileCompany = {
|
|
|
44291
42620
|
size?: Maybe<GrowthUnifiedProfileCompanySize>;
|
|
44292
42621
|
type?: Maybe<GrowthUnifiedProfileCompanyType>;
|
|
44293
42622
|
};
|
|
44294
|
-
export declare type GrowthUnifiedProfileCompanyProfile = {
|
|
44295
|
-
__typename?: 'GrowthUnifiedProfileCompanyProfile';
|
|
44296
|
-
companyType?: Maybe<GrowthUnifiedProfileEntryType>;
|
|
44297
|
-
};
|
|
44298
42623
|
export declare enum GrowthUnifiedProfileCompanySize {
|
|
44299
42624
|
Large = "LARGE",
|
|
44300
42625
|
Medium = "MEDIUM",
|
|
@@ -44320,10 +42645,6 @@ export declare type GrowthUnifiedProfileCreateProfileInput = {
|
|
|
44320
42645
|
tenantId?: InputMaybe<Scalars['ID']['input']>;
|
|
44321
42646
|
unifiedProfile: GrowthUnifiedProfileInput;
|
|
44322
42647
|
};
|
|
44323
|
-
export declare enum GrowthUnifiedProfileDomainType {
|
|
44324
|
-
Business = "BUSINESS",
|
|
44325
|
-
Personal = "PERSONAL"
|
|
44326
|
-
}
|
|
44327
42648
|
export declare enum GrowthUnifiedProfileEnrichmentStatus {
|
|
44328
42649
|
Complete = "COMPLETE",
|
|
44329
42650
|
Error = "ERROR",
|
|
@@ -44343,10 +42664,6 @@ export declare enum GrowthUnifiedProfileEntityType {
|
|
|
44343
42664
|
Org = "ORG",
|
|
44344
42665
|
Site = "SITE"
|
|
44345
42666
|
}
|
|
44346
|
-
export declare enum GrowthUnifiedProfileEntryType {
|
|
44347
|
-
Existing = "EXISTING",
|
|
44348
|
-
New = "NEW"
|
|
44349
|
-
}
|
|
44350
42667
|
export declare type GrowthUnifiedProfileInput = {
|
|
44351
42668
|
onboardingContext?: InputMaybe<GrowthUnifiedProfileOnboardingContextInput>;
|
|
44352
42669
|
};
|
|
@@ -44468,7 +42785,6 @@ export declare type GrowthUnifiedProfileProductDetails = {
|
|
|
44468
42785
|
export declare type GrowthUnifiedProfileResult = {
|
|
44469
42786
|
__typename?: 'GrowthUnifiedProfileResult';
|
|
44470
42787
|
company?: Maybe<GrowthUnifiedProfileCompany>;
|
|
44471
|
-
companyProfile?: Maybe<GrowthUnifiedProfileCompanyProfile>;
|
|
44472
42788
|
enrichmentStatus?: Maybe<GrowthUnifiedProfileEnrichmentStatus>;
|
|
44473
42789
|
entityType?: Maybe<GrowthUnifiedProfileEntityType>;
|
|
44474
42790
|
linkedEntities?: Maybe<Array<Maybe<GrowthUnifiedProfileLinkedEntities>>>;
|
|
@@ -44477,7 +42793,6 @@ export declare type GrowthUnifiedProfileResult = {
|
|
|
44477
42793
|
seoContext?: Maybe<GrowthUnifiedProfileSeoContext>;
|
|
44478
42794
|
sites?: Maybe<Array<Maybe<GrowthUnifiedProfileSiteDetails>>>;
|
|
44479
42795
|
userFootprints?: Maybe<GrowthUnifiedProfileUserFootprints>;
|
|
44480
|
-
userProfile?: Maybe<GrowthUnifiedProfileUserProfile>;
|
|
44481
42796
|
};
|
|
44482
42797
|
export declare type GrowthUnifiedProfileSeoContext = {
|
|
44483
42798
|
__typename?: 'GrowthUnifiedProfileSeoContext';
|
|
@@ -44515,11 +42830,6 @@ export declare type GrowthUnifiedProfileUserFootprints = {
|
|
|
44515
42830
|
hasAtlassianAccount?: Maybe<Scalars['Boolean']['output']>;
|
|
44516
42831
|
products?: Maybe<Array<Maybe<GrowthUnifiedProfileProduct>>>;
|
|
44517
42832
|
};
|
|
44518
|
-
export declare type GrowthUnifiedProfileUserProfile = {
|
|
44519
|
-
__typename?: 'GrowthUnifiedProfileUserProfile';
|
|
44520
|
-
domainType?: Maybe<GrowthUnifiedProfileDomainType>;
|
|
44521
|
-
userType?: Maybe<GrowthUnifiedProfileEntryType>;
|
|
44522
|
-
};
|
|
44523
42833
|
export declare type GrowthUnifiedProfileUtm = {
|
|
44524
42834
|
__typename?: 'GrowthUnifiedProfileUtm';
|
|
44525
42835
|
channel?: Maybe<GrowthUnifiedProfileChannel>;
|
|
@@ -44669,7 +42979,6 @@ export declare type HamsTransactionAccountExperienceCapabilities = CommerceTrans
|
|
|
44669
42979
|
export declare type HamsTrial = CommerceTrial & {
|
|
44670
42980
|
__typename?: 'HamsTrial';
|
|
44671
42981
|
endTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
44672
|
-
startTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
44673
42982
|
};
|
|
44674
42983
|
export declare type HasMercuryProjectFields = {
|
|
44675
42984
|
mercuryProjectIcon?: Maybe<Scalars['URL']['output']>;
|
|
@@ -48375,103 +46684,6 @@ export declare enum JiraBoardType {
|
|
|
48375
46684
|
Kanban = "KANBAN",
|
|
48376
46685
|
Scrum = "SCRUM"
|
|
48377
46686
|
}
|
|
48378
|
-
export declare type JiraBoardView = {
|
|
48379
|
-
__typename?: 'JiraBoardView';
|
|
48380
|
-
cardOptions?: Maybe<JiraBoardViewCardOptionConnection>;
|
|
48381
|
-
columns?: Maybe<JiraBoardViewColumnConnection>;
|
|
48382
|
-
completedIssueSearchCutOffInDays?: Maybe<Scalars['Int']['output']>;
|
|
48383
|
-
error?: Maybe<QueryError>;
|
|
48384
|
-
filterConfig?: Maybe<JiraViewFilterConfig>;
|
|
48385
|
-
groupByConfig?: Maybe<JiraViewGroupByConfig>;
|
|
48386
|
-
id: Scalars['ID']['output'];
|
|
48387
|
-
};
|
|
48388
|
-
export declare type JiraBoardViewCardOptionsArgs = {
|
|
48389
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
48390
|
-
enabledOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
48391
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
48392
|
-
};
|
|
48393
|
-
export declare type JiraBoardViewColumnsArgs = {
|
|
48394
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
48395
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
48396
|
-
};
|
|
48397
|
-
export declare type JiraBoardViewAssigneeColumn = JiraBoardViewColumn & {
|
|
48398
|
-
__typename?: 'JiraBoardViewAssigneeColumn';
|
|
48399
|
-
collapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
48400
|
-
id: Scalars['ID']['output'];
|
|
48401
|
-
user?: Maybe<User>;
|
|
48402
|
-
};
|
|
48403
|
-
export declare type JiraBoardViewCardOption = {
|
|
48404
|
-
id: Scalars['ID']['output'];
|
|
48405
|
-
};
|
|
48406
|
-
export declare type JiraBoardViewCardOptionConnection = {
|
|
48407
|
-
__typename?: 'JiraBoardViewCardOptionConnection';
|
|
48408
|
-
edges?: Maybe<Array<Maybe<JiraBoardViewCardOptionEdge>>>;
|
|
48409
|
-
errors?: Maybe<Array<QueryError>>;
|
|
48410
|
-
pageInfo?: Maybe<PageInfo>;
|
|
48411
|
-
};
|
|
48412
|
-
export declare type JiraBoardViewCardOptionEdge = {
|
|
48413
|
-
__typename?: 'JiraBoardViewCardOptionEdge';
|
|
48414
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
48415
|
-
node?: Maybe<JiraBoardViewCardOption>;
|
|
48416
|
-
};
|
|
48417
|
-
export declare type JiraBoardViewCategoryColumn = JiraBoardViewColumn & {
|
|
48418
|
-
__typename?: 'JiraBoardViewCategoryColumn';
|
|
48419
|
-
category?: Maybe<JiraOption>;
|
|
48420
|
-
collapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
48421
|
-
id: Scalars['ID']['output'];
|
|
48422
|
-
};
|
|
48423
|
-
export declare type JiraBoardViewColumn = {
|
|
48424
|
-
collapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
48425
|
-
id: Scalars['ID']['output'];
|
|
48426
|
-
};
|
|
48427
|
-
export declare type JiraBoardViewColumnConnection = {
|
|
48428
|
-
__typename?: 'JiraBoardViewColumnConnection';
|
|
48429
|
-
edges?: Maybe<Array<Maybe<JiraBoardViewColumnEdge>>>;
|
|
48430
|
-
errors?: Maybe<Array<QueryError>>;
|
|
48431
|
-
pageInfo?: Maybe<PageInfo>;
|
|
48432
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
48433
|
-
};
|
|
48434
|
-
export declare type JiraBoardViewColumnEdge = {
|
|
48435
|
-
__typename?: 'JiraBoardViewColumnEdge';
|
|
48436
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
48437
|
-
node?: Maybe<JiraBoardViewColumn>;
|
|
48438
|
-
};
|
|
48439
|
-
export declare type JiraBoardViewFieldCardOption = JiraBoardViewCardOption & {
|
|
48440
|
-
__typename?: 'JiraBoardViewFieldCardOption';
|
|
48441
|
-
canToggle?: Maybe<Scalars['Boolean']['output']>;
|
|
48442
|
-
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
48443
|
-
field?: Maybe<JiraField>;
|
|
48444
|
-
id: Scalars['ID']['output'];
|
|
48445
|
-
};
|
|
48446
|
-
export declare type JiraBoardViewInput = {
|
|
48447
|
-
jiraBoardViewQueryInput: JiraBoardViewQueryInput;
|
|
48448
|
-
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
48449
|
-
};
|
|
48450
|
-
export declare type JiraBoardViewPriorityColumn = JiraBoardViewColumn & {
|
|
48451
|
-
__typename?: 'JiraBoardViewPriorityColumn';
|
|
48452
|
-
collapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
48453
|
-
id: Scalars['ID']['output'];
|
|
48454
|
-
priority?: Maybe<JiraPriority>;
|
|
48455
|
-
};
|
|
48456
|
-
export declare type JiraBoardViewProjectKeyAndItemIdQuery = {
|
|
48457
|
-
cloudId: Scalars['ID']['input'];
|
|
48458
|
-
itemId: Scalars['String']['input'];
|
|
48459
|
-
projectKey: Scalars['String']['input'];
|
|
48460
|
-
};
|
|
48461
|
-
export declare type JiraBoardViewQueryInput = {
|
|
48462
|
-
projectKeyAndItemIdQuery?: InputMaybe<JiraBoardViewProjectKeyAndItemIdQuery>;
|
|
48463
|
-
viewId?: InputMaybe<Scalars['ID']['input']>;
|
|
48464
|
-
};
|
|
48465
|
-
export declare type JiraBoardViewSettings = {
|
|
48466
|
-
filterJql?: InputMaybe<Scalars['String']['input']>;
|
|
48467
|
-
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
48468
|
-
};
|
|
48469
|
-
export declare type JiraBoardViewStatusColumn = JiraBoardViewColumn & {
|
|
48470
|
-
__typename?: 'JiraBoardViewStatusColumn';
|
|
48471
|
-
collapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
48472
|
-
id: Scalars['ID']['output'];
|
|
48473
|
-
statuses?: Maybe<Array<Maybe<JiraStatus>>>;
|
|
48474
|
-
};
|
|
48475
46687
|
export declare type JiraBooleanField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
48476
46688
|
__typename?: 'JiraBooleanField';
|
|
48477
46689
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -50306,7 +48518,6 @@ export declare type JiraDeleteCustomFieldInput = {
|
|
|
50306
48518
|
};
|
|
50307
48519
|
export declare type JiraDeleteCustomFieldPayload = Payload & {
|
|
50308
48520
|
__typename?: 'JiraDeleteCustomFieldPayload';
|
|
50309
|
-
affectedFieldAssociationWithIssueTypesId?: Maybe<Scalars['ID']['output']>;
|
|
50310
48521
|
errors?: Maybe<Array<MutationError>>;
|
|
50311
48522
|
success: Scalars['Boolean']['output'];
|
|
50312
48523
|
};
|
|
@@ -51966,7 +50177,6 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
51966
50177
|
issueTypesForHierarchySame?: Maybe<JiraIssueTypeConnection>;
|
|
51967
50178
|
jiraCoverMedia?: Maybe<JiraBackground>;
|
|
51968
50179
|
key: Scalars['String']['output'];
|
|
51969
|
-
lastRedactionTime?: Maybe<Scalars['DateTime']['output']>;
|
|
51970
50180
|
lastViewedTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
51971
50181
|
legacyContentPanels?: Maybe<JiraIssueContentPanelConnection>;
|
|
51972
50182
|
lifecycleState?: Maybe<JiraIssueLifecycleState>;
|
|
@@ -51989,8 +50199,6 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
51989
50199
|
priorityField?: Maybe<JiraPriorityField>;
|
|
51990
50200
|
projectField?: Maybe<JiraProjectField>;
|
|
51991
50201
|
projectRoleCommentVisibilities?: Maybe<JiraRoleConnection>;
|
|
51992
|
-
redactedFields?: Maybe<JiraFieldConnection>;
|
|
51993
|
-
redactions?: Maybe<JiraRedactionConnection>;
|
|
51994
50202
|
reporter?: Maybe<User>;
|
|
51995
50203
|
resolutionDateField?: Maybe<JiraDateTimePickerField>;
|
|
51996
50204
|
resolutionField?: Maybe<JiraResolutionField>;
|
|
@@ -52151,19 +50359,6 @@ export declare type JiraIssueProjectRoleCommentVisibilitiesArgs = {
|
|
|
52151
50359
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
52152
50360
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
52153
50361
|
};
|
|
52154
|
-
export declare type JiraIssueRedactedFieldsArgs = {
|
|
52155
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
52156
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
52157
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
52158
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
52159
|
-
};
|
|
52160
|
-
export declare type JiraIssueRedactionsArgs = {
|
|
52161
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
52162
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
52163
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
52164
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
52165
|
-
sortBy?: InputMaybe<JiraRedactionSortInput>;
|
|
52166
|
-
};
|
|
52167
50362
|
export declare type JiraIssueSearchViewContextArgs = {
|
|
52168
50363
|
isGroupingEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
52169
50364
|
isHierarchyEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -52446,24 +50641,16 @@ export declare type JiraIssueDevSummaryResult = {
|
|
|
52446
50641
|
};
|
|
52447
50642
|
export declare type JiraIssueEdge = {
|
|
52448
50643
|
__typename?: 'JiraIssueEdge';
|
|
52449
|
-
canHaveChildIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
52450
50644
|
cursor: Scalars['String']['output'];
|
|
52451
50645
|
fieldSets?: Maybe<JiraIssueFieldSetConnection>;
|
|
52452
|
-
hasChildren?: Maybe<Scalars['Boolean']['output']>;
|
|
52453
50646
|
node?: Maybe<JiraIssue>;
|
|
52454
50647
|
};
|
|
52455
|
-
export declare type JiraIssueEdgeCanHaveChildIssuesArgs = {
|
|
52456
|
-
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
52457
|
-
};
|
|
52458
50648
|
export declare type JiraIssueEdgeFieldSetsArgs = {
|
|
52459
50649
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
52460
50650
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
52461
50651
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
52462
50652
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
52463
50653
|
};
|
|
52464
|
-
export declare type JiraIssueEdgeHasChildrenArgs = {
|
|
52465
|
-
filterByProjectKeys?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
52466
|
-
};
|
|
52467
50654
|
export declare type JiraIssueExpandedGroup = {
|
|
52468
50655
|
fieldValue?: InputMaybe<Scalars['String']['input']>;
|
|
52469
50656
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -53122,12 +51309,6 @@ export declare type JiraIssueSearchGroupByFieldMutationPayload = Payload & {
|
|
|
53122
51309
|
errors?: Maybe<Array<MutationError>>;
|
|
53123
51310
|
success: Scalars['Boolean']['output'];
|
|
53124
51311
|
};
|
|
53125
|
-
export declare type JiraIssueSearchHideDonePreferenceMutationPayload = Payload & {
|
|
53126
|
-
__typename?: 'JiraIssueSearchHideDonePreferenceMutationPayload';
|
|
53127
|
-
errors?: Maybe<Array<MutationError>>;
|
|
53128
|
-
isHideDoneEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
53129
|
-
success: Scalars['Boolean']['output'];
|
|
53130
|
-
};
|
|
53131
51312
|
export declare type JiraIssueSearchHierarchyPreferenceMutationPayload = Payload & {
|
|
53132
51313
|
__typename?: 'JiraIssueSearchHierarchyPreferenceMutationPayload';
|
|
53133
51314
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -53142,10 +51323,8 @@ export declare type JiraIssueSearchInput = {
|
|
|
53142
51323
|
};
|
|
53143
51324
|
export declare enum JiraIssueSearchOperationScope {
|
|
53144
51325
|
NinGlobal = "NIN_GLOBAL",
|
|
53145
|
-
NinGlobalSchemaRefactor = "NIN_GLOBAL_SCHEMA_REFACTOR",
|
|
53146
51326
|
NinGlobalShadowRequest = "NIN_GLOBAL_SHADOW_REQUEST",
|
|
53147
51327
|
NinProject = "NIN_PROJECT",
|
|
53148
|
-
NinProjectSchemaRefactor = "NIN_PROJECT_SCHEMA_REFACTOR",
|
|
53149
51328
|
NinProjectShadowRequest = "NIN_PROJECT_SHADOW_REQUEST"
|
|
53150
51329
|
}
|
|
53151
51330
|
export declare type JiraIssueSearchOptions = {
|
|
@@ -54735,7 +52914,6 @@ export declare type JiraMutation = {
|
|
|
54735
52914
|
jiraServiceManagementCreateRequestTypeCategory?: Maybe<JiraServiceManagementRequestTypeCategoryPayload>;
|
|
54736
52915
|
jiraServiceManagementDeleteRequestTypeCategory?: Maybe<JiraServiceManagementRequestTypeCategoryDefaultPayload>;
|
|
54737
52916
|
jiraServiceManagementUpdateRequestTypeCategory?: Maybe<JiraServiceManagementRequestTypeCategoryPayload>;
|
|
54738
|
-
jwmAssociateField?: Maybe<JiraWorkManagementAssociateFieldPayload>;
|
|
54739
52917
|
jwmCreateCustomBackground?: Maybe<JiraWorkManagementCreateCustomBackgroundPayload>;
|
|
54740
52918
|
jwmCreateSavedView?: Maybe<JiraWorkManagementCreateSavedViewPayload>;
|
|
54741
52919
|
jwmDeleteAttachment?: Maybe<JiraWorkManagementDeleteAttachmentPayload>;
|
|
@@ -54756,7 +52934,6 @@ export declare type JiraMutation = {
|
|
|
54756
52934
|
rankIssues?: Maybe<JiraRankMutationPayload>;
|
|
54757
52935
|
rankNavigationItem?: Maybe<JiraRankNavigationItemPayload>;
|
|
54758
52936
|
removeActiveBackground?: Maybe<JiraRemoveActiveBackgroundPayload>;
|
|
54759
|
-
removeCustomField?: Maybe<JiraRemoveCustomFieldPayload>;
|
|
54760
52937
|
removeIssuesFromAllFixVersions?: Maybe<JiraRemoveIssuesFromAllFixVersionsPayload>;
|
|
54761
52938
|
removeIssuesFromFixVersion?: Maybe<JiraRemoveIssuesFromFixVersionPayload>;
|
|
54762
52939
|
removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
|
|
@@ -54798,7 +52975,6 @@ export declare type JiraMutation = {
|
|
|
54798
52975
|
updateGlobalNotificationPreferences?: Maybe<JiraUpdateGlobalPreferencesPayload>;
|
|
54799
52976
|
updateIssueHierarchyConfig?: Maybe<JiraIssueHierarchyConfigurationMutationResult>;
|
|
54800
52977
|
updateIssueSearchGroupByConfig?: Maybe<JiraIssueSearchGroupByFieldMutationPayload>;
|
|
54801
|
-
updateIssueSearchHideDonePreference?: Maybe<JiraIssueSearchHideDonePreferenceMutationPayload>;
|
|
54802
52978
|
updateIssueSearchHierarchyPreference?: Maybe<JiraIssueSearchHierarchyPreferenceMutationPayload>;
|
|
54803
52979
|
updateIssueTypeField?: Maybe<JiraIssueTypeFieldPayload>;
|
|
54804
52980
|
updateJiraActivityConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
@@ -55050,10 +53226,6 @@ export declare type JiraMutationJiraServiceManagementUpdateRequestTypeCategoryAr
|
|
|
55050
53226
|
input: JiraServiceManagementUpdateRequestTypeCategoryInput;
|
|
55051
53227
|
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
55052
53228
|
};
|
|
55053
|
-
export declare type JiraMutationJwmAssociateFieldArgs = {
|
|
55054
|
-
cloudId: Scalars['ID']['input'];
|
|
55055
|
-
input: JiraWorkManagementAssociateFieldInput;
|
|
55056
|
-
};
|
|
55057
53229
|
export declare type JiraMutationJwmCreateCustomBackgroundArgs = {
|
|
55058
53230
|
input: JiraWorkManagementCreateCustomBackgroundInput;
|
|
55059
53231
|
};
|
|
@@ -55115,9 +53287,6 @@ export declare type JiraMutationRankNavigationItemArgs = {
|
|
|
55115
53287
|
export declare type JiraMutationRemoveActiveBackgroundArgs = {
|
|
55116
53288
|
input: JiraRemoveActiveBackgroundInput;
|
|
55117
53289
|
};
|
|
55118
|
-
export declare type JiraMutationRemoveCustomFieldArgs = {
|
|
55119
|
-
input: JiraRemoveCustomFieldInput;
|
|
55120
|
-
};
|
|
55121
53290
|
export declare type JiraMutationRemoveIssuesFromAllFixVersionsArgs = {
|
|
55122
53291
|
input: JiraRemoveIssuesFromAllFixVersionsInput;
|
|
55123
53292
|
};
|
|
@@ -55259,10 +53428,6 @@ export declare type JiraMutationUpdateIssueSearchGroupByConfigArgs = {
|
|
|
55259
53428
|
fieldId?: InputMaybe<Scalars['String']['input']>;
|
|
55260
53429
|
viewId: Scalars['ID']['input'];
|
|
55261
53430
|
};
|
|
55262
|
-
export declare type JiraMutationUpdateIssueSearchHideDonePreferenceArgs = {
|
|
55263
|
-
isHideDoneEnabled: Scalars['Boolean']['input'];
|
|
55264
|
-
viewId: Scalars['ID']['input'];
|
|
55265
|
-
};
|
|
55266
53431
|
export declare type JiraMutationUpdateIssueSearchHierarchyPreferenceArgs = {
|
|
55267
53432
|
isHierarchyEnabled: Scalars['Boolean']['input'];
|
|
55268
53433
|
viewId: Scalars['ID']['input'];
|
|
@@ -55699,7 +53864,6 @@ export declare type JiraOAuthAppsApp = {
|
|
|
55699
53864
|
featureFlagsModule?: Maybe<JiraOAuthAppsFeatureFlagsModule>;
|
|
55700
53865
|
homeUrl: Scalars['String']['output'];
|
|
55701
53866
|
id: Scalars['ID']['output'];
|
|
55702
|
-
installationStatus?: Maybe<JiraOAuthAppsInstallationStatus>;
|
|
55703
53867
|
logoUrl: Scalars['String']['output'];
|
|
55704
53868
|
name: Scalars['String']['output'];
|
|
55705
53869
|
remoteLinksModule?: Maybe<JiraOAuthAppsRemoteLinksModule>;
|
|
@@ -55796,21 +53960,10 @@ export declare type JiraOAuthAppsFeatureFlagsModuleInput = {
|
|
|
55796
53960
|
actions?: InputMaybe<JiraOAuthAppsFeatureFlagsModuleActionsInput>;
|
|
55797
53961
|
isEnabled: Scalars['Boolean']['input'];
|
|
55798
53962
|
};
|
|
55799
|
-
export declare type JiraOAuthAppsInstallAppInput = {
|
|
55800
|
-
appId: Scalars['ID']['input'];
|
|
55801
|
-
clientMutationId?: InputMaybe<Scalars['ID']['input']>;
|
|
55802
|
-
};
|
|
55803
|
-
export declare enum JiraOAuthAppsInstallationStatus {
|
|
55804
|
-
Complete = "COMPLETE",
|
|
55805
|
-
Failed = "FAILED",
|
|
55806
|
-
Pending = "PENDING",
|
|
55807
|
-
Running = "RUNNING"
|
|
55808
|
-
}
|
|
55809
53963
|
export declare type JiraOAuthAppsMutation = {
|
|
55810
53964
|
__typename?: 'JiraOAuthAppsMutation';
|
|
55811
53965
|
createJiraOAuthApp?: Maybe<JiraOAuthAppsPayload>;
|
|
55812
53966
|
deleteJiraOAuthApp?: Maybe<JiraOAuthAppsPayload>;
|
|
55813
|
-
installJiraOAuthApp?: Maybe<JiraOAuthAppsPayload>;
|
|
55814
53967
|
updateJiraOAuthApp?: Maybe<JiraOAuthAppsPayload>;
|
|
55815
53968
|
};
|
|
55816
53969
|
export declare type JiraOAuthAppsMutationCreateJiraOAuthAppArgs = {
|
|
@@ -55821,10 +53974,6 @@ export declare type JiraOAuthAppsMutationDeleteJiraOAuthAppArgs = {
|
|
|
55821
53974
|
cloudId: Scalars['String']['input'];
|
|
55822
53975
|
input: JiraOAuthAppsDeleteAppInput;
|
|
55823
53976
|
};
|
|
55824
|
-
export declare type JiraOAuthAppsMutationInstallJiraOAuthAppArgs = {
|
|
55825
|
-
cloudId: Scalars['String']['input'];
|
|
55826
|
-
input: JiraOAuthAppsInstallAppInput;
|
|
55827
|
-
};
|
|
55828
53977
|
export declare type JiraOAuthAppsMutationUpdateJiraOAuthAppArgs = {
|
|
55829
53978
|
cloudId: Scalars['String']['input'];
|
|
55830
53979
|
input: JiraOAuthAppsUpdateAppInput;
|
|
@@ -57244,12 +55393,6 @@ export declare type JiraProjectUpdateAvatarMutationPayload = Payload & {
|
|
|
57244
55393
|
project?: Maybe<JiraProject>;
|
|
57245
55394
|
success: Scalars['Boolean']['output'];
|
|
57246
55395
|
};
|
|
57247
|
-
export declare type JiraProjectUpdateBackgroundMutationPayload = Payload & {
|
|
57248
|
-
__typename?: 'JiraProjectUpdateBackgroundMutationPayload';
|
|
57249
|
-
errors?: Maybe<Array<MutationError>>;
|
|
57250
|
-
project?: Maybe<JiraProject>;
|
|
57251
|
-
success: Scalars['Boolean']['output'];
|
|
57252
|
-
};
|
|
57253
55396
|
export declare type JiraProjectUpdateNameInput = {
|
|
57254
55397
|
cloudId: Scalars['ID']['input'];
|
|
57255
55398
|
name: Scalars['String']['input'];
|
|
@@ -57461,7 +55604,6 @@ export declare type JiraQuery = {
|
|
|
57461
55604
|
recentProjects?: Maybe<JiraProjectConnection>;
|
|
57462
55605
|
recentQueues?: Maybe<JiraSearchableEntityConnection>;
|
|
57463
55606
|
remoteIssueLinksById?: Maybe<Array<Maybe<JiraRemoteIssueLink>>>;
|
|
57464
|
-
reportsPage?: Maybe<JiraReportsPage>;
|
|
57465
55607
|
requestTypeTemplateById?: Maybe<JiraServiceManagementRequestTypeTemplate>;
|
|
57466
55608
|
requestTypeTemplateDefaultConfigurationDependencies?: Maybe<JiraServiceManagementRequestTypeTemplateDefaultConfigurationDependencies>;
|
|
57467
55609
|
requestTypeTemplates?: Maybe<Array<JiraServiceManagementRequestTypeTemplate>>;
|
|
@@ -58232,10 +56374,6 @@ export declare type JiraQueryRecentQueuesArgs = {
|
|
|
58232
56374
|
export declare type JiraQueryRemoteIssueLinksByIdArgs = {
|
|
58233
56375
|
ids: Array<Scalars['ID']['input']>;
|
|
58234
56376
|
};
|
|
58235
|
-
export declare type JiraQueryReportsPageArgs = {
|
|
58236
|
-
boardId?: InputMaybe<Scalars['ID']['input']>;
|
|
58237
|
-
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
58238
|
-
};
|
|
58239
56377
|
export declare type JiraQueryRequestTypeTemplateByIdArgs = {
|
|
58240
56378
|
cloudId: Scalars['ID']['input'];
|
|
58241
56379
|
templateId: Scalars['ID']['input'];
|
|
@@ -58450,7 +56588,6 @@ export declare type JiraRankNavigationItemInput = {
|
|
|
58450
56588
|
afterItemId?: InputMaybe<Scalars['ID']['input']>;
|
|
58451
56589
|
beforeItemId?: InputMaybe<Scalars['ID']['input']>;
|
|
58452
56590
|
id: Scalars['ID']['input'];
|
|
58453
|
-
scopeId?: InputMaybe<Scalars['ID']['input']>;
|
|
58454
56591
|
};
|
|
58455
56592
|
export declare type JiraRankNavigationItemPayload = Payload & {
|
|
58456
56593
|
__typename?: 'JiraRankNavigationItemPayload';
|
|
@@ -58474,38 +56611,6 @@ export declare enum JiraRecommendationCategory {
|
|
|
58474
56611
|
ProjectCleanup = "PROJECT_CLEANUP",
|
|
58475
56612
|
ProjectRoleActor = "PROJECT_ROLE_ACTOR"
|
|
58476
56613
|
}
|
|
58477
|
-
export declare type JiraRedaction = {
|
|
58478
|
-
__typename?: 'JiraRedaction';
|
|
58479
|
-
created?: Maybe<Scalars['DateTime']['output']>;
|
|
58480
|
-
externalRedactionId?: Maybe<Scalars['String']['output']>;
|
|
58481
|
-
fieldName?: Maybe<Scalars['String']['output']>;
|
|
58482
|
-
id: Scalars['ID']['output'];
|
|
58483
|
-
reason?: Maybe<Scalars['String']['output']>;
|
|
58484
|
-
redactedBy?: Maybe<User>;
|
|
58485
|
-
updated?: Maybe<Scalars['DateTime']['output']>;
|
|
58486
|
-
};
|
|
58487
|
-
export declare type JiraRedactionConnection = {
|
|
58488
|
-
__typename?: 'JiraRedactionConnection';
|
|
58489
|
-
edges?: Maybe<Array<Maybe<JiraRedactionEdge>>>;
|
|
58490
|
-
pageInfo: PageInfo;
|
|
58491
|
-
totalCount?: Maybe<Scalars['Long']['output']>;
|
|
58492
|
-
};
|
|
58493
|
-
export declare type JiraRedactionEdge = {
|
|
58494
|
-
__typename?: 'JiraRedactionEdge';
|
|
58495
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
58496
|
-
node?: Maybe<JiraRedaction>;
|
|
58497
|
-
};
|
|
58498
|
-
export declare enum JiraRedactionSortField {
|
|
58499
|
-
Created = "CREATED",
|
|
58500
|
-
Field = "FIELD",
|
|
58501
|
-
Reason = "REASON",
|
|
58502
|
-
RedactedBy = "REDACTED_BY",
|
|
58503
|
-
Updated = "UPDATED"
|
|
58504
|
-
}
|
|
58505
|
-
export declare type JiraRedactionSortInput = {
|
|
58506
|
-
field: JiraRedactionSortField;
|
|
58507
|
-
order?: SortDirection;
|
|
58508
|
-
};
|
|
58509
56614
|
export declare type JiraReleaseNotesConfiguration = {
|
|
58510
56615
|
__typename?: 'JiraReleaseNotesConfiguration';
|
|
58511
56616
|
issueFieldIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
@@ -58683,17 +56788,6 @@ export declare type JiraRemoveActiveBackgroundPayload = Payload & {
|
|
|
58683
56788
|
errors?: Maybe<Array<MutationError>>;
|
|
58684
56789
|
success: Scalars['Boolean']['output'];
|
|
58685
56790
|
};
|
|
58686
|
-
export declare type JiraRemoveCustomFieldInput = {
|
|
58687
|
-
cloudId: Scalars['ID']['input'];
|
|
58688
|
-
fieldId: Scalars['String']['input'];
|
|
58689
|
-
projectId: Scalars['String']['input'];
|
|
58690
|
-
};
|
|
58691
|
-
export declare type JiraRemoveCustomFieldPayload = Payload & {
|
|
58692
|
-
__typename?: 'JiraRemoveCustomFieldPayload';
|
|
58693
|
-
affectedFieldAssociationWithIssueTypesId?: Maybe<Scalars['ID']['output']>;
|
|
58694
|
-
errors?: Maybe<Array<MutationError>>;
|
|
58695
|
-
success: Scalars['Boolean']['output'];
|
|
58696
|
-
};
|
|
58697
56791
|
export declare type JiraRemoveIssuesFromAllFixVersionsInput = {
|
|
58698
56792
|
issueIds: Array<Scalars['ID']['input']>;
|
|
58699
56793
|
};
|
|
@@ -58746,7 +56840,6 @@ export declare type JiraRemoveRelatedWorkFromVersionPayload = Payload & {
|
|
|
58746
56840
|
export declare type JiraRenameNavigationItemInput = {
|
|
58747
56841
|
id: Scalars['ID']['input'];
|
|
58748
56842
|
label: Scalars['String']['input'];
|
|
58749
|
-
scopeId?: InputMaybe<Scalars['ID']['input']>;
|
|
58750
56843
|
};
|
|
58751
56844
|
export declare type JiraRenameNavigationItemPayload = Payload & {
|
|
58752
56845
|
__typename?: 'JiraRenameNavigationItemPayload';
|
|
@@ -58754,22 +56847,6 @@ export declare type JiraRenameNavigationItemPayload = Payload & {
|
|
|
58754
56847
|
navigationItem?: Maybe<JiraNavigationItem>;
|
|
58755
56848
|
success: Scalars['Boolean']['output'];
|
|
58756
56849
|
};
|
|
58757
|
-
export declare type JiraReorderBoardViewColumnInput = {
|
|
58758
|
-
columnId: Scalars['ID']['input'];
|
|
58759
|
-
position: JiraReorderBoardViewColumnPosition;
|
|
58760
|
-
relativeColumnId: Scalars['ID']['input'];
|
|
58761
|
-
viewId: Scalars['ID']['input'];
|
|
58762
|
-
};
|
|
58763
|
-
export declare type JiraReorderBoardViewColumnPayload = Payload & {
|
|
58764
|
-
__typename?: 'JiraReorderBoardViewColumnPayload';
|
|
58765
|
-
boardView?: Maybe<JiraBoardView>;
|
|
58766
|
-
errors?: Maybe<Array<MutationError>>;
|
|
58767
|
-
success: Scalars['Boolean']['output'];
|
|
58768
|
-
};
|
|
58769
|
-
export declare enum JiraReorderBoardViewColumnPosition {
|
|
58770
|
-
After = "AFTER",
|
|
58771
|
-
Before = "BEFORE"
|
|
58772
|
-
}
|
|
58773
56850
|
export declare type JiraReplaceIssueSearchViewFieldSetsInput = {
|
|
58774
56851
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
58775
56852
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -58777,25 +56854,6 @@ export declare type JiraReplaceIssueSearchViewFieldSetsInput = {
|
|
|
58777
56854
|
inclusive?: InputMaybe<Scalars['Boolean']['input']>;
|
|
58778
56855
|
nodes: Array<Scalars['String']['input']>;
|
|
58779
56856
|
};
|
|
58780
|
-
export declare type JiraReport = {
|
|
58781
|
-
__typename?: 'JiraReport';
|
|
58782
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
58783
|
-
id: Scalars['ID']['output'];
|
|
58784
|
-
imageUrl?: Maybe<Scalars['String']['output']>;
|
|
58785
|
-
key?: Maybe<Scalars['String']['output']>;
|
|
58786
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
58787
|
-
url?: Maybe<Scalars['String']['output']>;
|
|
58788
|
-
};
|
|
58789
|
-
export declare type JiraReportCategory = {
|
|
58790
|
-
__typename?: 'JiraReportCategory';
|
|
58791
|
-
id: Scalars['ID']['output'];
|
|
58792
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
58793
|
-
reports?: Maybe<Array<Maybe<JiraReport>>>;
|
|
58794
|
-
};
|
|
58795
|
-
export declare type JiraReportsPage = {
|
|
58796
|
-
__typename?: 'JiraReportsPage';
|
|
58797
|
-
categories?: Maybe<Array<Maybe<JiraReportCategory>>>;
|
|
58798
|
-
};
|
|
58799
56857
|
export declare type JiraResolution = Node & {
|
|
58800
56858
|
__typename?: 'JiraResolution';
|
|
58801
56859
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -60361,41 +58419,8 @@ export declare type JiraSetApplicationPropertyInput = {
|
|
|
60361
58419
|
key: Scalars['String']['input'];
|
|
60362
58420
|
value: Scalars['String']['input'];
|
|
60363
58421
|
};
|
|
60364
|
-
export declare type JiraSetBoardViewCardFieldSelectedInput = {
|
|
60365
|
-
fieldId: Scalars['String']['input'];
|
|
60366
|
-
selected: Scalars['Boolean']['input'];
|
|
60367
|
-
viewId: Scalars['ID']['input'];
|
|
60368
|
-
};
|
|
60369
|
-
export declare type JiraSetBoardViewCardFieldSelectedPayload = Payload & {
|
|
60370
|
-
__typename?: 'JiraSetBoardViewCardFieldSelectedPayload';
|
|
60371
|
-
boardView?: Maybe<JiraBoardView>;
|
|
60372
|
-
errors?: Maybe<Array<MutationError>>;
|
|
60373
|
-
success: Scalars['Boolean']['output'];
|
|
60374
|
-
};
|
|
60375
|
-
export declare type JiraSetBoardViewColumnStateInput = {
|
|
60376
|
-
collapsed: Scalars['Boolean']['input'];
|
|
60377
|
-
columnId: Scalars['ID']['input'];
|
|
60378
|
-
viewId: Scalars['ID']['input'];
|
|
60379
|
-
};
|
|
60380
|
-
export declare type JiraSetBoardViewColumnStatePayload = Payload & {
|
|
60381
|
-
__typename?: 'JiraSetBoardViewColumnStatePayload';
|
|
60382
|
-
boardView?: Maybe<JiraBoardView>;
|
|
60383
|
-
errors?: Maybe<Array<MutationError>>;
|
|
60384
|
-
success: Scalars['Boolean']['output'];
|
|
60385
|
-
};
|
|
60386
|
-
export declare type JiraSetBoardViewCompletedIssueSearchCutOffInput = {
|
|
60387
|
-
completedIssueSearchCutOffInDays: Scalars['Int']['input'];
|
|
60388
|
-
viewId: Scalars['ID']['input'];
|
|
60389
|
-
};
|
|
60390
|
-
export declare type JiraSetBoardViewCompletedIssueSearchCutOffPayload = Payload & {
|
|
60391
|
-
__typename?: 'JiraSetBoardViewCompletedIssueSearchCutOffPayload';
|
|
60392
|
-
boardView?: Maybe<JiraBoardView>;
|
|
60393
|
-
errors?: Maybe<Array<MutationError>>;
|
|
60394
|
-
success: Scalars['Boolean']['output'];
|
|
60395
|
-
};
|
|
60396
58422
|
export declare type JiraSetDefaultNavigationItemInput = {
|
|
60397
58423
|
id: Scalars['ID']['input'];
|
|
60398
|
-
scopeId?: InputMaybe<Scalars['ID']['input']>;
|
|
60399
58424
|
};
|
|
60400
58425
|
export declare type JiraSetDefaultNavigationItemPayload = Payload & {
|
|
60401
58426
|
__typename?: 'JiraSetDefaultNavigationItemPayload';
|
|
@@ -60444,26 +58469,6 @@ export declare type JiraSetProjectSelectedDeploymentAppsPropertyPayload = Payloa
|
|
|
60444
58469
|
errors?: Maybe<Array<MutationError>>;
|
|
60445
58470
|
success: Scalars['Boolean']['output'];
|
|
60446
58471
|
};
|
|
60447
|
-
export declare type JiraSetViewFilterInput = {
|
|
60448
|
-
jql: Scalars['String']['input'];
|
|
60449
|
-
viewId: Scalars['ID']['input'];
|
|
60450
|
-
};
|
|
60451
|
-
export declare type JiraSetViewFilterPayload = Payload & {
|
|
60452
|
-
__typename?: 'JiraSetViewFilterPayload';
|
|
60453
|
-
errors?: Maybe<Array<MutationError>>;
|
|
60454
|
-
success: Scalars['Boolean']['output'];
|
|
60455
|
-
view?: Maybe<JiraView>;
|
|
60456
|
-
};
|
|
60457
|
-
export declare type JiraSetViewGroupByInput = {
|
|
60458
|
-
fieldId: Scalars['String']['input'];
|
|
60459
|
-
viewId: Scalars['ID']['input'];
|
|
60460
|
-
};
|
|
60461
|
-
export declare type JiraSetViewGroupByPayload = Payload & {
|
|
60462
|
-
__typename?: 'JiraSetViewGroupByPayload';
|
|
60463
|
-
errors?: Maybe<Array<MutationError>>;
|
|
60464
|
-
success: Scalars['Boolean']['output'];
|
|
60465
|
-
view?: Maybe<JiraView>;
|
|
60466
|
-
};
|
|
60467
58472
|
export declare type JiraShareableEntityAnonymousAccessGrant = {
|
|
60468
58473
|
__typename?: 'JiraShareableEntityAnonymousAccessGrant';
|
|
60469
58474
|
type?: Maybe<JiraShareableEntityGrant>;
|
|
@@ -62219,7 +60224,6 @@ export declare type JiraUserPreferences = {
|
|
|
62219
60224
|
isAdvancedRoadmapsSidebarLayoutEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
62220
60225
|
isIssueViewAttachmentReferenceFlagDismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
62221
60226
|
isIssueViewChildIssuesLimitBestPracticeFlagDismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
62222
|
-
isIssueViewCrossFlowBannerDismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
62223
60227
|
isIssueViewHideDoneChildIssuesFilterEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
62224
60228
|
isIssueViewPinnedFieldsBannerDismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
62225
60229
|
isIssueViewSmartRepliesUserEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -62826,15 +60830,6 @@ export declare type JiraView = {
|
|
|
62826
60830
|
error?: Maybe<QueryError>;
|
|
62827
60831
|
id: Scalars['ID']['output'];
|
|
62828
60832
|
};
|
|
62829
|
-
export declare type JiraViewFilterConfig = {
|
|
62830
|
-
__typename?: 'JiraViewFilterConfig';
|
|
62831
|
-
jql?: Maybe<Scalars['String']['output']>;
|
|
62832
|
-
};
|
|
62833
|
-
export declare type JiraViewGroupByConfig = {
|
|
62834
|
-
__typename?: 'JiraViewGroupByConfig';
|
|
62835
|
-
fieldId?: Maybe<Scalars['String']['output']>;
|
|
62836
|
-
fieldName?: Maybe<Scalars['String']['output']>;
|
|
62837
|
-
};
|
|
62838
60833
|
export declare type JiraViewScopeInput = {
|
|
62839
60834
|
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
62840
60835
|
projectKeys?: InputMaybe<JiraProjectKeysInput>;
|
|
@@ -62987,17 +60982,6 @@ export declare type JiraWorkLogField = JiraIssueField & JiraIssueFieldConfigurat
|
|
|
62987
60982
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
62988
60983
|
};
|
|
62989
60984
|
export declare type JiraWorkManagementActiveBackgroundDetailsResult = JiraWorkManagementAttachmentBackground | JiraWorkManagementColorBackground | JiraWorkManagementGradientBackground | JiraWorkManagementMediaBackground | QueryError;
|
|
62990
|
-
export declare type JiraWorkManagementAssociateFieldInput = {
|
|
62991
|
-
fieldId: Scalars['String']['input'];
|
|
62992
|
-
issueTypeIds?: InputMaybe<Array<InputMaybe<Scalars['Long']['input']>>>;
|
|
62993
|
-
projectId: Scalars['Long']['input'];
|
|
62994
|
-
};
|
|
62995
|
-
export declare type JiraWorkManagementAssociateFieldPayload = Payload & {
|
|
62996
|
-
__typename?: 'JiraWorkManagementAssociateFieldPayload';
|
|
62997
|
-
associatedIssueTypeIds?: Maybe<Array<Maybe<Scalars['Long']['output']>>>;
|
|
62998
|
-
errors?: Maybe<Array<MutationError>>;
|
|
62999
|
-
success: Scalars['Boolean']['output'];
|
|
63000
|
-
};
|
|
63001
60985
|
export declare type JiraWorkManagementAttachmentBackground = JiraWorkManagementBackground & {
|
|
63002
60986
|
__typename?: 'JiraWorkManagementAttachmentBackground';
|
|
63003
60987
|
attachment?: Maybe<JiraAttachment>;
|
|
@@ -64317,13 +62301,10 @@ export declare type KnowledgeBaseMutationApi = {
|
|
|
64317
62301
|
};
|
|
64318
62302
|
export declare type KnowledgeBaseMutationApiLinkKnowledgeBaseSourceArgs = {
|
|
64319
62303
|
container: Scalars['ID']['input'];
|
|
64320
|
-
|
|
64321
|
-
url?: InputMaybe<Scalars['String']['input']>;
|
|
62304
|
+
url: Scalars['String']['input'];
|
|
64322
62305
|
};
|
|
64323
62306
|
export declare type KnowledgeBaseMutationApiUnlinkKnowledgeBaseSourceArgs = {
|
|
64324
|
-
|
|
64325
|
-
id?: InputMaybe<Scalars['ID']['input']>;
|
|
64326
|
-
linkedSourceARI?: InputMaybe<Scalars['ID']['input']>;
|
|
62307
|
+
id: Scalars['ID']['input'];
|
|
64327
62308
|
};
|
|
64328
62309
|
export declare type KnowledgeBaseQueryApi = {
|
|
64329
62310
|
__typename?: 'KnowledgeBaseQueryApi';
|
|
@@ -64342,7 +62323,6 @@ export declare type KnowledgeBaseSource = {
|
|
|
64342
62323
|
id: Scalars['ID']['output'];
|
|
64343
62324
|
name: Scalars['String']['output'];
|
|
64344
62325
|
permissions?: Maybe<KnowledgeBaseSourcePermissions>;
|
|
64345
|
-
sourceType?: Maybe<Scalars['String']['output']>;
|
|
64346
62326
|
url: Scalars['String']['output'];
|
|
64347
62327
|
};
|
|
64348
62328
|
export declare type KnowledgeBaseSourcePermissionsArgs = {
|
|
@@ -64606,7 +62586,6 @@ export declare type KnowledgeDiscoveryKeyPhrase = {
|
|
|
64606
62586
|
};
|
|
64607
62587
|
export declare enum KnowledgeDiscoveryKeyPhraseCategory {
|
|
64608
62588
|
Acronym = "ACRONYM",
|
|
64609
|
-
Auto = "AUTO",
|
|
64610
62589
|
Other = "OTHER",
|
|
64611
62590
|
Project = "PROJECT",
|
|
64612
62591
|
Team = "TEAM"
|
|
@@ -64675,7 +62654,6 @@ export declare type KnowledgeDiscoveryQueryApi = {
|
|
|
64675
62654
|
relatedEntities?: Maybe<KnowledgeDiscoveryRelatedEntitiesResult>;
|
|
64676
62655
|
searchRelatedEntities?: Maybe<KnowledgeDiscoverySearchRelatedEntitiesResult>;
|
|
64677
62656
|
searchTeam?: Maybe<KnowledgeDiscoveryTeamSearchResult>;
|
|
64678
|
-
searchUser?: Maybe<KnowledgeDiscoveryUserSearchResult>;
|
|
64679
62657
|
smartAnswersRoute?: Maybe<KnowledgeDiscoverySmartAnswersRouteResult>;
|
|
64680
62658
|
topic?: Maybe<KnowledgeDiscoveryTopicResult>;
|
|
64681
62659
|
};
|
|
@@ -64746,10 +62724,6 @@ export declare type KnowledgeDiscoveryQueryApiSearchTeamArgs = {
|
|
|
64746
62724
|
siteId: Scalars['String']['input'];
|
|
64747
62725
|
teamName: Scalars['String']['input'];
|
|
64748
62726
|
};
|
|
64749
|
-
export declare type KnowledgeDiscoveryQueryApiSearchUserArgs = {
|
|
64750
|
-
siteId: Scalars['String']['input'];
|
|
64751
|
-
userQuery: Scalars['String']['input'];
|
|
64752
|
-
};
|
|
64753
62727
|
export declare type KnowledgeDiscoveryQueryApiSmartAnswersRouteArgs = {
|
|
64754
62728
|
locale: Scalars['String']['input'];
|
|
64755
62729
|
query: Scalars['String']['input'];
|
|
@@ -64802,13 +62776,6 @@ export declare type KnowledgeDiscoverySearchRelatedEntities = {
|
|
|
64802
62776
|
entityGroups?: Maybe<Array<Maybe<KnowledgeDiscoveryEntityGroup>>>;
|
|
64803
62777
|
};
|
|
64804
62778
|
export declare type KnowledgeDiscoverySearchRelatedEntitiesResult = KnowledgeDiscoverySearchRelatedEntities | QueryError;
|
|
64805
|
-
export declare type KnowledgeDiscoverySearchUser = {
|
|
64806
|
-
__typename?: 'KnowledgeDiscoverySearchUser';
|
|
64807
|
-
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
64808
|
-
id: Scalars['String']['output'];
|
|
64809
|
-
name: Scalars['String']['output'];
|
|
64810
|
-
title?: Maybe<Scalars['String']['output']>;
|
|
64811
|
-
};
|
|
64812
62779
|
export declare type KnowledgeDiscoverySmartAnswersRoute = {
|
|
64813
62780
|
__typename?: 'KnowledgeDiscoverySmartAnswersRoute';
|
|
64814
62781
|
route: KnowledgeDiscoverySearchQueryClassification;
|
|
@@ -64882,11 +62849,6 @@ export declare type KnowledgeDiscoveryUser = KnowledgeDiscoveryEntity & {
|
|
|
64882
62849
|
id: Scalars['ID']['output'];
|
|
64883
62850
|
user?: Maybe<User>;
|
|
64884
62851
|
};
|
|
64885
|
-
export declare type KnowledgeDiscoveryUserSearchResult = KnowledgeDiscoveryUsers | QueryError;
|
|
64886
|
-
export declare type KnowledgeDiscoveryUsers = {
|
|
64887
|
-
__typename?: 'KnowledgeDiscoveryUsers';
|
|
64888
|
-
users?: Maybe<Array<Maybe<KnowledgeDiscoverySearchUser>>>;
|
|
64889
|
-
};
|
|
64890
62852
|
export declare type KnownUser = Person & {
|
|
64891
62853
|
__typename?: 'KnownUser';
|
|
64892
62854
|
accountId?: Maybe<Scalars['String']['output']>;
|
|
@@ -65598,7 +63560,6 @@ export declare type MarketplaceConsoleAppSoftwareShort = {
|
|
|
65598
63560
|
__typename?: 'MarketplaceConsoleAppSoftwareShort';
|
|
65599
63561
|
appKey: Scalars['ID']['output'];
|
|
65600
63562
|
appSoftwareId: Scalars['ID']['output'];
|
|
65601
|
-
editionsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
65602
63563
|
hasConnectVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
65603
63564
|
hasPublicVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
65604
63565
|
hosting: MarketplaceConsoleHosting;
|
|
@@ -69090,12 +67051,6 @@ export declare type Mutation = {
|
|
|
69090
67051
|
confluenceV2_deletePage?: Maybe<Scalars['Boolean']['output']>;
|
|
69091
67052
|
confluenceV2_updatePage?: Maybe<ConfluenceV2UpdatePagePayload>;
|
|
69092
67053
|
confluence_deleteCalendarCustomEventType?: Maybe<ConfluenceDeleteCalendarCustomEventTypePayload>;
|
|
69093
|
-
confluence_deleteSubCalendarAllFutureEvents?: Maybe<ConfluenceDeleteSubCalendarAllFutureEventsPayload>;
|
|
69094
|
-
confluence_deleteSubCalendarEvent?: Maybe<ConfluenceDeleteSubCalendarEventPayload>;
|
|
69095
|
-
confluence_deleteSubCalendarHiddenEvents?: Maybe<ConfluenceDeleteSubCalendarHiddenEventsPayload>;
|
|
69096
|
-
confluence_deleteSubCalendarSingleEvent?: Maybe<ConfluenceDeleteSubCalendarSingleEventPayload>;
|
|
69097
|
-
confluence_inviteUsers?: Maybe<ConfluenceInviteUserPayload>;
|
|
69098
|
-
confluence_updateSubCalendarHiddenEvents?: Maybe<ConfluenceUpdateSubCalendarHiddenEventsPayload>;
|
|
69099
67054
|
connectionManager_createApiTokenConnectionForJiraProject?: Maybe<ConnectionManagerCreateApiTokenConnectionForJiraProjectPayload>;
|
|
69100
67055
|
connectionManager_createOAuthConnectionForJiraProject?: Maybe<ConnectionManagerCreateOAuthConnectionForJiraProjectPayload>;
|
|
69101
67056
|
connectionManager_deleteApiTokenConnectionForJiraProject?: Maybe<ConnectionManagerDeleteApiTokenConnectionForJiraProjectPayload>;
|
|
@@ -69176,7 +67131,6 @@ export declare type Mutation = {
|
|
|
69176
67131
|
deleteWebTriggerUrl?: Maybe<DeleteWebTriggerUrlResponse>;
|
|
69177
67132
|
devAi?: Maybe<DevAiMutations>;
|
|
69178
67133
|
devOps?: Maybe<DevOpsMutation>;
|
|
69179
|
-
devai_invokeAutodevRovoAgent?: Maybe<DevAiInvokeAutodevRovoAgentPayload>;
|
|
69180
67134
|
disableExperiment?: Maybe<TapExperiment>;
|
|
69181
67135
|
disablePublicLinkForPage?: Maybe<DisablePublicLinkForPagePayload>;
|
|
69182
67136
|
disablePublicLinkForSite?: Maybe<PublicLinkSitePayload>;
|
|
@@ -69206,13 +67160,6 @@ export declare type Mutation = {
|
|
|
69206
67160
|
jira?: Maybe<JiraMutation>;
|
|
69207
67161
|
jiraCannedResponse?: Maybe<JiraCannedResponseMutationApi>;
|
|
69208
67162
|
jiraOAuthApps?: Maybe<JiraOAuthAppsMutation>;
|
|
69209
|
-
jira_reorderBoardViewColumn?: Maybe<JiraReorderBoardViewColumnPayload>;
|
|
69210
|
-
jira_setBoardViewCardFieldSelected?: Maybe<JiraSetBoardViewCardFieldSelectedPayload>;
|
|
69211
|
-
jira_setBoardViewColumnState?: Maybe<JiraSetBoardViewColumnStatePayload>;
|
|
69212
|
-
jira_setBoardViewCompletedIssueSearchCutOff?: Maybe<JiraSetBoardViewCompletedIssueSearchCutOffPayload>;
|
|
69213
|
-
jira_setViewFilter?: Maybe<JiraSetViewFilterPayload>;
|
|
69214
|
-
jira_setViewGroupBy?: Maybe<JiraSetViewGroupByPayload>;
|
|
69215
|
-
jira_updateProjectBackground?: Maybe<JiraProjectUpdateBackgroundMutationPayload>;
|
|
69216
67163
|
jsmChat?: Maybe<JsmChatMutation>;
|
|
69217
67164
|
jsw?: Maybe<JswMutation>;
|
|
69218
67165
|
knowledgeBase?: Maybe<KnowledgeBaseMutationApi>;
|
|
@@ -69926,30 +67873,6 @@ export declare type MutationConfluence_DeleteCalendarCustomEventTypeArgs = {
|
|
|
69926
67873
|
cloudId: Scalars['ID']['input'];
|
|
69927
67874
|
input: ConfluenceDeleteCalendarCustomEventTypeInput;
|
|
69928
67875
|
};
|
|
69929
|
-
export declare type MutationConfluence_DeleteSubCalendarAllFutureEventsArgs = {
|
|
69930
|
-
cloudId: Scalars['ID']['input'];
|
|
69931
|
-
input?: InputMaybe<ConfluenceDeleteSubCalendarAllFutureEventsInput>;
|
|
69932
|
-
};
|
|
69933
|
-
export declare type MutationConfluence_DeleteSubCalendarEventArgs = {
|
|
69934
|
-
cloudId: Scalars['ID']['input'];
|
|
69935
|
-
input: ConfluenceDeleteSubCalendarEventInput;
|
|
69936
|
-
};
|
|
69937
|
-
export declare type MutationConfluence_DeleteSubCalendarHiddenEventsArgs = {
|
|
69938
|
-
cloudId: Scalars['ID']['input'];
|
|
69939
|
-
input: Array<ConfluenceDeleteSubCalendarHiddenEventsInput>;
|
|
69940
|
-
};
|
|
69941
|
-
export declare type MutationConfluence_DeleteSubCalendarSingleEventArgs = {
|
|
69942
|
-
cloudId: Scalars['ID']['input'];
|
|
69943
|
-
input: ConfluenceDeleteSubCalendarSingleEventInput;
|
|
69944
|
-
};
|
|
69945
|
-
export declare type MutationConfluence_InviteUsersArgs = {
|
|
69946
|
-
cloudId: Scalars['ID']['input'];
|
|
69947
|
-
input: ConfluenceInviteUserInput;
|
|
69948
|
-
};
|
|
69949
|
-
export declare type MutationConfluence_UpdateSubCalendarHiddenEventsArgs = {
|
|
69950
|
-
cloudId: Scalars['ID']['input'];
|
|
69951
|
-
input: Array<ConfluenceUpdateSubCalendarHiddenEventsInput>;
|
|
69952
|
-
};
|
|
69953
67876
|
export declare type MutationConnectionManager_CreateApiTokenConnectionForJiraProjectArgs = {
|
|
69954
67877
|
createApiTokenConnectionInput?: InputMaybe<ConnectionManagerCreateApiTokenConnectionInput>;
|
|
69955
67878
|
jiraProjectARI?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -70219,10 +68142,6 @@ export declare type MutationDeleteTemplateArgs = {
|
|
|
70219
68142
|
export declare type MutationDeleteWebTriggerUrlArgs = {
|
|
70220
68143
|
id: Scalars['ID']['input'];
|
|
70221
68144
|
};
|
|
70222
|
-
export declare type MutationDevai_InvokeAutodevRovoAgentArgs = {
|
|
70223
|
-
agentId: Scalars['ID']['input'];
|
|
70224
|
-
issueId: Scalars['ID']['input'];
|
|
70225
|
-
};
|
|
70226
68145
|
export declare type MutationDisableExperimentArgs = {
|
|
70227
68146
|
experimentKey: Scalars['String']['input'];
|
|
70228
68147
|
};
|
|
@@ -70277,27 +68196,6 @@ export declare type MutationInvokeExtensionArgs = {
|
|
|
70277
68196
|
export declare type MutationInvokePolarisObjectArgs = {
|
|
70278
68197
|
input: InvokePolarisObjectInput;
|
|
70279
68198
|
};
|
|
70280
|
-
export declare type MutationJira_ReorderBoardViewColumnArgs = {
|
|
70281
|
-
input: JiraReorderBoardViewColumnInput;
|
|
70282
|
-
};
|
|
70283
|
-
export declare type MutationJira_SetBoardViewCardFieldSelectedArgs = {
|
|
70284
|
-
input: JiraSetBoardViewCardFieldSelectedInput;
|
|
70285
|
-
};
|
|
70286
|
-
export declare type MutationJira_SetBoardViewColumnStateArgs = {
|
|
70287
|
-
input: JiraSetBoardViewColumnStateInput;
|
|
70288
|
-
};
|
|
70289
|
-
export declare type MutationJira_SetBoardViewCompletedIssueSearchCutOffArgs = {
|
|
70290
|
-
input: JiraSetBoardViewCompletedIssueSearchCutOffInput;
|
|
70291
|
-
};
|
|
70292
|
-
export declare type MutationJira_SetViewFilterArgs = {
|
|
70293
|
-
input: JiraSetViewFilterInput;
|
|
70294
|
-
};
|
|
70295
|
-
export declare type MutationJira_SetViewGroupByArgs = {
|
|
70296
|
-
input: JiraSetViewGroupByInput;
|
|
70297
|
-
};
|
|
70298
|
-
export declare type MutationJira_UpdateProjectBackgroundArgs = {
|
|
70299
|
-
input: JiraUpdateBackgroundInput;
|
|
70300
|
-
};
|
|
70301
68199
|
export declare type MutationKnowledgeBaseArgs = {
|
|
70302
68200
|
cloudId: Scalars['ID']['input'];
|
|
70303
68201
|
};
|
|
@@ -71320,11 +69218,10 @@ export declare type PeapProgram = {
|
|
|
71320
69218
|
status: PeapProgramStatus;
|
|
71321
69219
|
updatedAt: Scalars['Date']['output'];
|
|
71322
69220
|
};
|
|
71323
|
-
export declare type PeapProgramConnection = HasPageInfo &
|
|
69221
|
+
export declare type PeapProgramConnection = HasPageInfo & {
|
|
71324
69222
|
__typename?: 'PEAPProgramConnection';
|
|
71325
69223
|
edges?: Maybe<Array<Maybe<PeapProgramEdge>>>;
|
|
71326
69224
|
pageInfo: PageInfo;
|
|
71327
|
-
totalCount: Scalars['Int']['output'];
|
|
71328
69225
|
};
|
|
71329
69226
|
export declare type PeapProgramEdge = {
|
|
71330
69227
|
__typename?: 'PEAPProgramEdge';
|
|
@@ -73594,7 +71491,6 @@ export declare type Query = {
|
|
|
73594
71491
|
confluence_mutationsPlaceholderQuery?: Maybe<Scalars['Boolean']['output']>;
|
|
73595
71492
|
confluence_searchTeamLabels?: Maybe<LabelSearchResults>;
|
|
73596
71493
|
confluence_storage?: Maybe<ConfluenceStorage>;
|
|
73597
|
-
confluence_template?: Maybe<ContentTemplate>;
|
|
73598
71494
|
confluence_tenantContext?: Maybe<ConfluenceTenantContext>;
|
|
73599
71495
|
confluence_validateCalendarJql?: Maybe<ConfluenceCalendarJqlValidationResult>;
|
|
73600
71496
|
confluence_workflow?: Maybe<ConfluenceWorkflow>;
|
|
@@ -73666,7 +71562,6 @@ export declare type Query = {
|
|
|
73666
71562
|
devai_autodevJobFileContents?: Maybe<Scalars['String']['output']>;
|
|
73667
71563
|
devai_autodevJobLogGroups?: Maybe<DevAiAutodevLogGroupConnection>;
|
|
73668
71564
|
devai_autodevJobLogs?: Maybe<DevAiAutodevLogConnection>;
|
|
73669
|
-
devai_autodevRovoAgents?: Maybe<DevAiRovoAgentConnection>;
|
|
73670
71565
|
developerLogAccess?: Maybe<Array<Maybe<DeveloperLogAccessResult>>>;
|
|
73671
71566
|
developmentInformation?: Maybe<IssueDevOpsDevelopmentInformation>;
|
|
73672
71567
|
diagnostics?: Maybe<Scalars['JSON']['output']>;
|
|
@@ -73762,8 +71657,6 @@ export declare type Query = {
|
|
|
73762
71657
|
jiraProjectRelationshipsForService?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
73763
71658
|
jiraReleases?: Maybe<JiraReleases>;
|
|
73764
71659
|
jiraServers?: Maybe<JiraServersResult>;
|
|
73765
|
-
jira_boardView?: Maybe<JiraBoardView>;
|
|
73766
|
-
jira_issueSearchViewsByIds?: Maybe<Array<Maybe<JiraIssueSearchView>>>;
|
|
73767
71660
|
jira_projectByIdOrKey?: Maybe<JiraProject>;
|
|
73768
71661
|
jsmChat?: Maybe<JsmChatQuery>;
|
|
73769
71662
|
jsw?: Maybe<JswQuery>;
|
|
@@ -75144,10 +73037,6 @@ export declare type QueryConfluence_SearchTeamLabelsArgs = {
|
|
|
75144
73037
|
export declare type QueryConfluence_StorageArgs = {
|
|
75145
73038
|
cloudId: Scalars['ID']['input'];
|
|
75146
73039
|
};
|
|
75147
|
-
export declare type QueryConfluence_TemplateArgs = {
|
|
75148
|
-
cloudId: Scalars['ID']['input'];
|
|
75149
|
-
contentTemplateId: Scalars['String']['input'];
|
|
75150
|
-
};
|
|
75151
73040
|
export declare type QueryConfluence_TenantContextArgs = {
|
|
75152
73041
|
cloudId: Scalars['ID']['input'];
|
|
75153
73042
|
};
|
|
@@ -75485,12 +73374,6 @@ export declare type QueryDevai_AutodevJobLogsArgs = {
|
|
|
75485
73374
|
jobId: Scalars['ID']['input'];
|
|
75486
73375
|
minPriority?: InputMaybe<DevAiAutodevLogPriority>;
|
|
75487
73376
|
};
|
|
75488
|
-
export declare type QueryDevai_AutodevRovoAgentsArgs = {
|
|
75489
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
75490
|
-
cloudId: Scalars['ID']['input'];
|
|
75491
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
75492
|
-
query?: InputMaybe<Scalars['String']['input']>;
|
|
75493
|
-
};
|
|
75494
73377
|
export declare type QueryDeveloperLogAccessArgs = {
|
|
75495
73378
|
appId: Scalars['ID']['input'];
|
|
75496
73379
|
contextIds: Array<Scalars['ID']['input']>;
|
|
@@ -75779,12 +73662,6 @@ export declare type QueryJiraProjectRelationshipsForServiceArgs = {
|
|
|
75779
73662
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
75780
73663
|
id: Scalars['ID']['input'];
|
|
75781
73664
|
};
|
|
75782
|
-
export declare type QueryJira_BoardViewArgs = {
|
|
75783
|
-
input: JiraBoardViewInput;
|
|
75784
|
-
};
|
|
75785
|
-
export declare type QueryJira_IssueSearchViewsByIdsArgs = {
|
|
75786
|
-
ids: Array<Scalars['ID']['input']>;
|
|
75787
|
-
};
|
|
75788
73665
|
export declare type QueryJira_ProjectByIdOrKeyArgs = {
|
|
75789
73666
|
cloudId: Scalars['ID']['input'];
|
|
75790
73667
|
idOrKey: Scalars['String']['input'];
|
|
@@ -76701,13 +74578,7 @@ export declare type RadarGroupMetrics = {
|
|
|
76701
74578
|
__typename?: 'RadarGroupMetrics';
|
|
76702
74579
|
count: Scalars['Int']['output'];
|
|
76703
74580
|
field: RadarFieldValueIdPair;
|
|
76704
|
-
subGroups
|
|
76705
|
-
};
|
|
76706
|
-
export declare type RadarGroupMetricsSubGroupsArgs = {
|
|
76707
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
76708
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
76709
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
76710
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
74581
|
+
subGroups: Array<RadarGroupMetrics>;
|
|
76711
74582
|
};
|
|
76712
74583
|
export declare type RadarGroupMetricsConnection = RadarConnection & {
|
|
76713
74584
|
__typename?: 'RadarGroupMetricsConnection';
|
|
@@ -79087,9 +76958,7 @@ export declare enum SearchSortOrder {
|
|
|
79087
76958
|
Desc = "DESC"
|
|
79088
76959
|
}
|
|
79089
76960
|
export declare type SearchThirdPartyFilter = {
|
|
79090
|
-
ancestorAris?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
79091
76961
|
containerNames?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
79092
|
-
excludeSubtypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
79093
76962
|
integrations?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
79094
76963
|
range?: InputMaybe<Array<InputMaybe<SearchThirdPartyRangeFilter>>>;
|
|
79095
76964
|
subtypes?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
@@ -84641,7 +82510,6 @@ export declare type TrelloCardViewer = {
|
|
|
84641
82510
|
export declare type TrelloCheckItem = {
|
|
84642
82511
|
__typename?: 'TrelloCheckItem';
|
|
84643
82512
|
due?: Maybe<TrelloCheckItemDueInfo>;
|
|
84644
|
-
member?: Maybe<TrelloMember>;
|
|
84645
82513
|
name?: Maybe<TrelloUserGeneratedText>;
|
|
84646
82514
|
objectId: Scalars['ID']['output'];
|
|
84647
82515
|
position?: Maybe<Scalars['Float']['output']>;
|
|
@@ -85418,7 +83286,6 @@ export declare type TrelloPowerUpDataFilterInput = {
|
|
|
85418
83286
|
export declare enum TrelloPowerUpDataScope {
|
|
85419
83287
|
Board = "BOARD",
|
|
85420
83288
|
Card = "CARD",
|
|
85421
|
-
Member = "MEMBER",
|
|
85422
83289
|
Organization = "ORGANIZATION"
|
|
85423
83290
|
}
|
|
85424
83291
|
export declare type TrelloPowerUpIcon = {
|
|
@@ -85781,7 +83648,6 @@ export declare type TrelloWatchCardPayload = Payload & {
|
|
|
85781
83648
|
};
|
|
85782
83649
|
export declare type TrelloWorkspace = Node & {
|
|
85783
83650
|
__typename?: 'TrelloWorkspace';
|
|
85784
|
-
aiEligible?: Maybe<Scalars['Boolean']['output']>;
|
|
85785
83651
|
creationMethod?: Maybe<Scalars['String']['output']>;
|
|
85786
83652
|
description?: Maybe<Scalars['String']['output']>;
|
|
85787
83653
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -85987,7 +83853,6 @@ export declare type UnifiedForumsBadgesConnection = UnifiedIConnection & {
|
|
|
85987
83853
|
};
|
|
85988
83854
|
export declare type UnifiedForumsGroup = UnifiedINode & {
|
|
85989
83855
|
__typename?: 'UnifiedForumsGroup';
|
|
85990
|
-
aaid?: Maybe<Scalars['String']['output']>;
|
|
85991
83856
|
avatar?: Maybe<UnifiedForumsGroupAvatar>;
|
|
85992
83857
|
description?: Maybe<Scalars['String']['output']>;
|
|
85993
83858
|
groupMemberCount?: Maybe<Scalars['Int']['output']>;
|
|
@@ -86314,7 +84179,6 @@ export declare type UnifiedProfile = UnifiedINode & {
|
|
|
86314
84179
|
gamification?: Maybe<UnifiedUGamificationResult>;
|
|
86315
84180
|
id: Scalars['ID']['output'];
|
|
86316
84181
|
internalId?: Maybe<Scalars['ID']['output']>;
|
|
86317
|
-
isLinkedView?: Maybe<Scalars['Boolean']['output']>;
|
|
86318
84182
|
isPersonalView?: Maybe<Scalars['Boolean']['output']>;
|
|
86319
84183
|
isPrivate: Scalars['Boolean']['output'];
|
|
86320
84184
|
learning?: Maybe<UnifiedULearningResult>;
|