@forge/cli-shared 6.5.1 → 6.5.2-experimental-f38fac9
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,6 +189,7 @@ 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']>;
|
|
192
193
|
maximum?: Maybe<Scalars['Int']['output']>;
|
|
193
194
|
minimum?: Maybe<Scalars['Int']['output']>;
|
|
194
195
|
required: Scalars['Boolean']['output'];
|
|
@@ -298,6 +299,7 @@ export declare type ActionsDescription = {
|
|
|
298
299
|
default: Scalars['String']['output'];
|
|
299
300
|
};
|
|
300
301
|
export declare type ActionsExecuteActionFilter = {
|
|
302
|
+
actionId?: InputMaybe<Scalars['String']['input']>;
|
|
301
303
|
extensionAri?: InputMaybe<Scalars['String']['input']>;
|
|
302
304
|
integrationKey?: InputMaybe<Scalars['String']['input']>;
|
|
303
305
|
oauthClientId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -583,7 +585,7 @@ export declare type ActivityObject = {
|
|
|
583
585
|
subProduct?: Maybe<Scalars['String']['output']>;
|
|
584
586
|
type: Scalars['String']['output'];
|
|
585
587
|
};
|
|
586
|
-
export declare type ActivityObjectData = ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceWhiteboard | DevOpsDesign | DevOpsDocument | DevOpsPullRequestDetails | JiraIssue | JiraPlatformComment | JiraServiceManagementComment | MercuryFocusArea | MercuryPortfolio | TownsquareComment | TownsquareGoal | TownsquareProject | TrelloAttachment | TrelloBoard | TrelloCard | TrelloLabel | TrelloList | TrelloMember;
|
|
588
|
+
export declare type ActivityObjectData = BitbucketPullRequest | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceWhiteboard | DevOpsDesign | DevOpsDocument | DevOpsPullRequestDetails | JiraIssue | JiraPlatformComment | JiraServiceManagementComment | MercuryFocusArea | MercuryPortfolio | TownsquareComment | TownsquareGoal | TownsquareProject | TrelloAttachment | TrelloBoard | TrelloCard | TrelloLabel | TrelloList | TrelloMember;
|
|
587
589
|
export declare enum ActivityObjectType {
|
|
588
590
|
Blogpost = "BLOGPOST",
|
|
589
591
|
Comment = "COMMENT",
|
|
@@ -1122,6 +1124,7 @@ export declare type AppEnvironmentVersion = {
|
|
|
1122
1124
|
isLatest: Scalars['Boolean']['output'];
|
|
1123
1125
|
migrationKeys?: Maybe<MigrationKeys>;
|
|
1124
1126
|
permissions: Array<AppPermission>;
|
|
1127
|
+
primaryProduct?: Maybe<EcosystemPrimaryProduct>;
|
|
1125
1128
|
requiresLicense: Scalars['Boolean']['output'];
|
|
1126
1129
|
storage: Storage;
|
|
1127
1130
|
trustSignal: TrustSignal;
|
|
@@ -1169,6 +1172,7 @@ export declare type AppInstallation = {
|
|
|
1169
1172
|
createdBy?: Maybe<User>;
|
|
1170
1173
|
dataClassifications?: Maybe<EcosystemDataClassificationsContext>;
|
|
1171
1174
|
id: Scalars['ID']['output'];
|
|
1175
|
+
installationConfigurations?: Maybe<Array<Maybe<AppInstallationConfig>>>;
|
|
1172
1176
|
installationContext: Scalars['ID']['output'];
|
|
1173
1177
|
isRecoverable: Scalars['Boolean']['output'];
|
|
1174
1178
|
license?: Maybe<AppInstallationLicense>;
|
|
@@ -1186,6 +1190,13 @@ export declare type AppInstallationByIndexEdge = {
|
|
|
1186
1190
|
cursor: Scalars['String']['output'];
|
|
1187
1191
|
node?: Maybe<AppInstallation>;
|
|
1188
1192
|
};
|
|
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
|
+
};
|
|
1189
1200
|
export declare type AppInstallationConnection = {
|
|
1190
1201
|
__typename?: 'AppInstallationConnection';
|
|
1191
1202
|
edges?: Maybe<Array<Maybe<AppInstallationEdge>>>;
|
|
@@ -1222,7 +1233,6 @@ export declare type AppInstallationEdge = {
|
|
|
1222
1233
|
};
|
|
1223
1234
|
export declare type AppInstallationInput = {
|
|
1224
1235
|
appId: Scalars['ID']['input'];
|
|
1225
|
-
async?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1226
1236
|
environmentKey: Scalars['String']['input'];
|
|
1227
1237
|
installationContext: Scalars['ID']['input'];
|
|
1228
1238
|
licenseOverride?: InputMaybe<LicenseOverrideState>;
|
|
@@ -1286,7 +1296,6 @@ export declare type AppInstallationUnsubscribeTask = AppInstallationTask & {
|
|
|
1286
1296
|
};
|
|
1287
1297
|
export declare type AppInstallationUpgradeInput = {
|
|
1288
1298
|
appId: Scalars['ID']['input'];
|
|
1289
|
-
async?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1290
1299
|
environmentKey: Scalars['String']['input'];
|
|
1291
1300
|
installationContext: Scalars['ID']['input'];
|
|
1292
1301
|
sourceBillingType?: InputMaybe<SourceBillingType>;
|
|
@@ -1700,7 +1709,6 @@ export declare type AppTunnelDefinitions = {
|
|
|
1700
1709
|
};
|
|
1701
1710
|
export declare type AppUninstallationInput = {
|
|
1702
1711
|
appId: Scalars['ID']['input'];
|
|
1703
|
-
async?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1704
1712
|
environmentKey: Scalars['String']['input'];
|
|
1705
1713
|
installationContext?: InputMaybe<Scalars['ID']['input']>;
|
|
1706
1714
|
installationId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -2264,6 +2272,15 @@ export declare enum BillingSourceSystem {
|
|
|
2264
2272
|
export declare enum BitbucketPermission {
|
|
2265
2273
|
Admin = "ADMIN"
|
|
2266
2274
|
}
|
|
2275
|
+
export declare type BitbucketPullRequest = Node & {
|
|
2276
|
+
__typename?: 'BitbucketPullRequest';
|
|
2277
|
+
author?: Maybe<User>;
|
|
2278
|
+
createdDate?: Maybe<Scalars['DateTime']['output']>;
|
|
2279
|
+
href?: Maybe<Scalars['URL']['output']>;
|
|
2280
|
+
id: Scalars['ID']['output'];
|
|
2281
|
+
state?: Maybe<Scalars['String']['output']>;
|
|
2282
|
+
title: Scalars['String']['output'];
|
|
2283
|
+
};
|
|
2267
2284
|
export declare type BitbucketQuery = {
|
|
2268
2285
|
__typename?: 'BitbucketQuery';
|
|
2269
2286
|
bitbucketRepositories?: Maybe<Array<Maybe<BitbucketRepository>>>;
|
|
@@ -2466,7 +2483,8 @@ export declare type BoardScopeCardsArgs = {
|
|
|
2466
2483
|
customFilterIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
2467
2484
|
};
|
|
2468
2485
|
export declare type BoardScopeFilteredCardIdsArgs = {
|
|
2469
|
-
customFilterIds
|
|
2486
|
+
customFilterIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
2487
|
+
filterJql?: InputMaybe<Scalars['String']['input']>;
|
|
2470
2488
|
issueIds: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
2471
2489
|
};
|
|
2472
2490
|
export declare type BoardScopeIssuesArgs = {
|
|
@@ -3851,6 +3869,7 @@ export declare type CommerceTransactionAccountExperienceCapabilities = {
|
|
|
3851
3869
|
};
|
|
3852
3870
|
export declare type CommerceTrial = {
|
|
3853
3871
|
endTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
3872
|
+
startTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
3854
3873
|
};
|
|
3855
3874
|
export declare type CompanyHubFeature = {
|
|
3856
3875
|
__typename?: 'CompanyHubFeature';
|
|
@@ -8463,6 +8482,45 @@ export declare type ConfluenceDeletePagePropertyPayload = Payload & {
|
|
|
8463
8482
|
errors?: Maybe<Array<MutationError>>;
|
|
8464
8483
|
success: Scalars['Boolean']['output'];
|
|
8465
8484
|
};
|
|
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
|
+
};
|
|
8466
8524
|
export declare enum ConfluenceEdition {
|
|
8467
8525
|
Free = "FREE",
|
|
8468
8526
|
Premium = "PREMIUM",
|
|
@@ -8560,6 +8618,14 @@ export declare enum ConfluenceInlineTaskStatus {
|
|
|
8560
8618
|
Complete = "COMPLETE",
|
|
8561
8619
|
Incomplete = "INCOMPLETE"
|
|
8562
8620
|
}
|
|
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
|
+
};
|
|
8563
8629
|
export declare type ConfluenceLabel = {
|
|
8564
8630
|
__typename?: 'ConfluenceLabel';
|
|
8565
8631
|
id?: Maybe<Scalars['ID']['output']>;
|
|
@@ -14596,6 +14662,24 @@ export declare type ConfluenceQueryApiWhiteboardArgs = {
|
|
|
14596
14662
|
export declare type ConfluenceQueryApiWhiteboardsArgs = {
|
|
14597
14663
|
ids: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
14598
14664
|
};
|
|
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
|
+
};
|
|
14599
14683
|
export declare type ConfluenceReopenInlineCommentInput = {
|
|
14600
14684
|
id: Scalars['ID']['input'];
|
|
14601
14685
|
};
|
|
@@ -14821,6 +14905,15 @@ export declare type ConfluenceUpdateSpaceSettingsPayload = Payload & {
|
|
|
14821
14905
|
errors?: Maybe<Array<MutationError>>;
|
|
14822
14906
|
success: Scalars['Boolean']['output'];
|
|
14823
14907
|
};
|
|
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
|
+
};
|
|
14824
14917
|
export declare type ConfluenceUpdateValueBlogPostPropertyInput = {
|
|
14825
14918
|
blogPostId: Scalars['ID']['input'];
|
|
14826
14919
|
key: Scalars['String']['input'];
|
|
@@ -15671,7 +15764,9 @@ export declare type Content = {
|
|
|
15671
15764
|
contentReactionsSummary?: Maybe<ReactionsSummaryResponse>;
|
|
15672
15765
|
contentState?: Maybe<ContentState>;
|
|
15673
15766
|
creatorId?: Maybe<Scalars['String']['output']>;
|
|
15767
|
+
currentUserHasAncestorWatchingChildren?: Maybe<Scalars['Boolean']['output']>;
|
|
15674
15768
|
currentUserIsWatching: Scalars['Boolean']['output'];
|
|
15769
|
+
currentUserIsWatchingChildren?: Maybe<Scalars['Boolean']['output']>;
|
|
15675
15770
|
deletableDescendantsCount: Scalars['Long']['output'];
|
|
15676
15771
|
dynamicMobileBody?: Maybe<ContentBody>;
|
|
15677
15772
|
embeddedProduct?: Maybe<Scalars['String']['output']>;
|
|
@@ -15700,6 +15795,8 @@ export declare type Content = {
|
|
|
15700
15795
|
operations?: Maybe<Array<Maybe<OperationCheckResult>>>;
|
|
15701
15796
|
outgoingLinks?: Maybe<OutgoingLinks>;
|
|
15702
15797
|
properties?: Maybe<PaginatedJsonContentPropertyList>;
|
|
15798
|
+
redactionMetadata?: Maybe<ConfluenceRedactionMetadataConnection>;
|
|
15799
|
+
redactionMetadataCount?: Maybe<Scalars['Int']['output']>;
|
|
15703
15800
|
referenceId?: Maybe<Scalars['String']['output']>;
|
|
15704
15801
|
restrictions?: Maybe<ContentRestrictions>;
|
|
15705
15802
|
schedulePublishDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -15791,6 +15888,10 @@ export declare type ContentPropertiesArgs = {
|
|
|
15791
15888
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
15792
15889
|
start?: InputMaybe<Scalars['Int']['input']>;
|
|
15793
15890
|
};
|
|
15891
|
+
export declare type ContentRedactionMetadataArgs = {
|
|
15892
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
15893
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
15894
|
+
};
|
|
15794
15895
|
export declare enum ContentAccessInputType {
|
|
15795
15896
|
EveryoneCanEdit = "EVERYONE_CAN_EDIT",
|
|
15796
15897
|
EveryoneCanView = "EVERYONE_CAN_VIEW",
|
|
@@ -15818,6 +15919,7 @@ export declare type ContentAnalyticsLastViewedAtByPageItem = {
|
|
|
15818
15919
|
};
|
|
15819
15920
|
export declare type ContentAnalyticsPageViewInfo = {
|
|
15820
15921
|
__typename?: 'ContentAnalyticsPageViewInfo';
|
|
15922
|
+
isEngaged?: Maybe<Scalars['Boolean']['output']>;
|
|
15821
15923
|
lastVersionViewed: Scalars['Int']['output'];
|
|
15822
15924
|
lastVersionViewedNumber?: Maybe<Scalars['Int']['output']>;
|
|
15823
15925
|
lastVersionViewedUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -20086,6 +20188,12 @@ export declare type DevAiGenericMutationErrorExtension = MutationErrorExtension
|
|
|
20086
20188
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
20087
20189
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
20088
20190
|
};
|
|
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
|
+
};
|
|
20089
20197
|
export declare enum DevAiIssueScopingLabel {
|
|
20090
20198
|
Complex = "COMPLEX",
|
|
20091
20199
|
InScope = "IN_SCOPE",
|
|
@@ -20150,6 +20258,22 @@ export declare type DevAiPlaintextAutodevLog = DevAiAutodevLog & {
|
|
|
20150
20258
|
status?: Maybe<DevAiAutodevLogStatus>;
|
|
20151
20259
|
timestamp?: Maybe<Scalars['DateTime']['output']>;
|
|
20152
20260
|
};
|
|
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
|
+
};
|
|
20153
20277
|
export declare type DevAiRunAutofixScanInput = {
|
|
20154
20278
|
repoUrl: Scalars['URL']['input'];
|
|
20155
20279
|
restartIfCurrentlyRunning?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -21869,6 +21993,10 @@ export declare type EarliestViewViewedForUser = {
|
|
|
21869
21993
|
datetime?: Maybe<Scalars['String']['output']>;
|
|
21870
21994
|
};
|
|
21871
21995
|
export declare type EcosystemApp = App | EcosystemConnectApp;
|
|
21996
|
+
export declare enum EcosystemAppInstallationConfigIdType {
|
|
21997
|
+
Cloud = "CLOUD",
|
|
21998
|
+
Installation = "INSTALLATION"
|
|
21999
|
+
}
|
|
21872
22000
|
export declare type EcosystemAppInstallationOverridesInput = {
|
|
21873
22001
|
licenseModes?: InputMaybe<Array<EcosystemLicenseMode>>;
|
|
21874
22002
|
usersWithAccess?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -21988,6 +22116,9 @@ export declare type EcosystemDataClassificationsContext = {
|
|
|
21988
22116
|
hasConstraints?: Maybe<Scalars['Boolean']['output']>;
|
|
21989
22117
|
id: Scalars['ID']['output'];
|
|
21990
22118
|
};
|
|
22119
|
+
export declare enum EcosystemInstallationOverrideKeys {
|
|
22120
|
+
AllowEgressAnalytics = "ALLOW_EGRESS_ANALYTICS"
|
|
22121
|
+
}
|
|
21991
22122
|
export declare enum EcosystemInstallationRecoveryMode {
|
|
21992
22123
|
FreshInstall = "FRESH_INSTALL",
|
|
21993
22124
|
RecoverPreviousInstall = "RECOVER_PREVIOUS_INSTALL"
|
|
@@ -22064,6 +22195,11 @@ export declare type EcosystemOnEventBody = {
|
|
|
22064
22195
|
__typename?: 'EcosystemOnEventBody';
|
|
22065
22196
|
payload?: Maybe<Scalars['String']['output']>;
|
|
22066
22197
|
};
|
|
22198
|
+
export declare enum EcosystemPrimaryProduct {
|
|
22199
|
+
Compass = "COMPASS",
|
|
22200
|
+
Confluence = "CONFLUENCE",
|
|
22201
|
+
Jira = "JIRA"
|
|
22202
|
+
}
|
|
22067
22203
|
export declare type EcosystemPublishEventBody = {
|
|
22068
22204
|
__typename?: 'EcosystemPublishEventBody';
|
|
22069
22205
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
@@ -28279,12 +28415,27 @@ export declare type GraphStore = {
|
|
|
28279
28415
|
componentLinkedJswIssueRelationship?: Maybe<GraphStoreFullComponentLinkedJswIssueConnection>;
|
|
28280
28416
|
confluencePageHasConfluenceComment?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceCommentConnection>;
|
|
28281
28417
|
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>;
|
|
28282
28431
|
contentReferencedEntity?: Maybe<GraphStoreSimplifiedContentReferencedEntityConnection>;
|
|
28283
28432
|
contentReferencedEntityBatch?: Maybe<GraphStoreBatchContentReferencedEntityConnection>;
|
|
28284
28433
|
contentReferencedEntityInverse?: Maybe<GraphStoreSimplifiedContentReferencedEntityInverseConnection>;
|
|
28285
28434
|
contentReferencedEntityInverseBatch?: Maybe<GraphStoreBatchContentReferencedEntityConnection>;
|
|
28286
28435
|
contentReferencedEntityInverseRelationship?: Maybe<GraphStoreFullContentReferencedEntityConnection>;
|
|
28287
28436
|
contentReferencedEntityRelationship?: Maybe<GraphStoreFullContentReferencedEntityConnection>;
|
|
28437
|
+
conversationHasMessage?: Maybe<GraphStoreSimplifiedConversationHasMessageConnection>;
|
|
28438
|
+
conversationHasMessageInverse?: Maybe<GraphStoreSimplifiedConversationHasMessageInverseConnection>;
|
|
28288
28439
|
cypherQuery: GraphStoreCypherQueryConnection;
|
|
28289
28440
|
deploymentContainsCommit?: Maybe<GraphStoreSimplifiedDeploymentContainsCommitConnection>;
|
|
28290
28441
|
deploymentContainsCommitInverse?: Maybe<GraphStoreSimplifiedDeploymentContainsCommitInverseConnection>;
|
|
@@ -28305,6 +28456,7 @@ export declare type GraphStore = {
|
|
|
28305
28456
|
focusAreaHasProjectBatch?: Maybe<GraphStoreBatchFocusAreaHasProjectConnection>;
|
|
28306
28457
|
focusAreaHasProjectInverse?: Maybe<GraphStoreSimplifiedFocusAreaHasProjectInverseConnection>;
|
|
28307
28458
|
focusAreaHasProjectInverseBatch?: Maybe<GraphStoreBatchFocusAreaHasProjectConnection>;
|
|
28459
|
+
groupCanViewConfluenceSpace?: Maybe<GraphStoreSimplifiedGroupCanViewConfluenceSpaceConnection>;
|
|
28308
28460
|
incidentAssociatedPostIncidentReview?: Maybe<GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewConnection>;
|
|
28309
28461
|
incidentAssociatedPostIncidentReviewBatch?: Maybe<GraphStoreBatchIncidentAssociatedPostIncidentReviewConnection>;
|
|
28310
28462
|
incidentAssociatedPostIncidentReviewInverse?: Maybe<GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewInverseConnection>;
|
|
@@ -28329,6 +28481,7 @@ export declare type GraphStore = {
|
|
|
28329
28481
|
incidentLinkedJswIssueInverseBatch?: Maybe<GraphStoreBatchIncidentLinkedJswIssueConnection>;
|
|
28330
28482
|
incidentLinkedJswIssueInverseRelationship?: Maybe<GraphStoreFullIncidentLinkedJswIssueConnection>;
|
|
28331
28483
|
incidentLinkedJswIssueRelationship?: Maybe<GraphStoreFullIncidentLinkedJswIssueConnection>;
|
|
28484
|
+
issueAssociatedBranch?: Maybe<GraphStoreSimplifiedIssueAssociatedBranchConnection>;
|
|
28332
28485
|
issueAssociatedBranchInverse?: Maybe<GraphStoreSimplifiedIssueAssociatedBranchInverseConnection>;
|
|
28333
28486
|
issueAssociatedBranchInverseRelationship?: Maybe<GraphStoreFullIssueAssociatedBranchConnection>;
|
|
28334
28487
|
issueAssociatedBranchRelationship?: Maybe<GraphStoreFullIssueAssociatedBranchConnection>;
|
|
@@ -28366,6 +28519,7 @@ export declare type GraphStore = {
|
|
|
28366
28519
|
issueAssociatedPrInverse?: Maybe<GraphStoreSimplifiedIssueAssociatedPrInverseConnection>;
|
|
28367
28520
|
issueAssociatedPrInverseRelationship?: Maybe<GraphStoreFullIssueAssociatedPrConnection>;
|
|
28368
28521
|
issueAssociatedPrRelationship?: Maybe<GraphStoreFullIssueAssociatedPrConnection>;
|
|
28522
|
+
issueAssociatedRemoteLink?: Maybe<GraphStoreSimplifiedIssueAssociatedRemoteLinkConnection>;
|
|
28369
28523
|
issueAssociatedRemoteLinkInverse?: Maybe<GraphStoreSimplifiedIssueAssociatedRemoteLinkInverseConnection>;
|
|
28370
28524
|
issueAssociatedRemoteLinkInverseRelationship?: Maybe<GraphStoreFullIssueAssociatedRemoteLinkConnection>;
|
|
28371
28525
|
issueAssociatedRemoteLinkRelationship?: Maybe<GraphStoreFullIssueAssociatedRemoteLinkConnection>;
|
|
@@ -28435,6 +28589,8 @@ export declare type GraphStore = {
|
|
|
28435
28589
|
operationsContainerImprovedByActionItemInverse?: Maybe<GraphStoreSimplifiedOperationsContainerImprovedByActionItemInverseConnection>;
|
|
28436
28590
|
operationsContainerImprovedByActionItemInverseRelationship?: Maybe<GraphStoreFullOperationsContainerImprovedByActionItemConnection>;
|
|
28437
28591
|
operationsContainerImprovedByActionItemRelationship?: Maybe<GraphStoreFullOperationsContainerImprovedByActionItemConnection>;
|
|
28592
|
+
parentCommentHasChildComment?: Maybe<GraphStoreSimplifiedParentCommentHasChildCommentConnection>;
|
|
28593
|
+
parentCommentHasChildCommentInverse?: Maybe<GraphStoreSimplifiedParentCommentHasChildCommentInverseConnection>;
|
|
28438
28594
|
parentDocumentHasChildDocument?: Maybe<GraphStoreSimplifiedParentDocumentHasChildDocumentConnection>;
|
|
28439
28595
|
parentDocumentHasChildDocumentInverse?: Maybe<GraphStoreSimplifiedParentDocumentHasChildDocumentInverseConnection>;
|
|
28440
28596
|
parentDocumentHasChildDocumentInverseRelationship?: Maybe<GraphStoreFullParentDocumentHasChildDocumentConnection>;
|
|
@@ -28443,10 +28599,15 @@ export declare type GraphStore = {
|
|
|
28443
28599
|
parentIssueHasChildIssueInverse?: Maybe<GraphStoreSimplifiedParentIssueHasChildIssueInverseConnection>;
|
|
28444
28600
|
parentIssueHasChildIssueInverseRelationship?: Maybe<GraphStoreFullParentIssueHasChildIssueConnection>;
|
|
28445
28601
|
parentIssueHasChildIssueRelationship?: Maybe<GraphStoreFullParentIssueHasChildIssueConnection>;
|
|
28602
|
+
parentMessageHasChildMessage?: Maybe<GraphStoreSimplifiedParentMessageHasChildMessageConnection>;
|
|
28603
|
+
parentMessageHasChildMessageInverse?: Maybe<GraphStoreSimplifiedParentMessageHasChildMessageInverseConnection>;
|
|
28604
|
+
positionAllocatedToFocusArea?: Maybe<GraphStoreSimplifiedPositionAllocatedToFocusAreaConnection>;
|
|
28605
|
+
positionAllocatedToFocusAreaInverse?: Maybe<GraphStoreSimplifiedPositionAllocatedToFocusAreaInverseConnection>;
|
|
28446
28606
|
prInRepo?: Maybe<GraphStoreSimplifiedPrInRepoConnection>;
|
|
28447
28607
|
prInRepoInverse?: Maybe<GraphStoreSimplifiedPrInRepoInverseConnection>;
|
|
28448
28608
|
prInRepoInverseRelationship?: Maybe<GraphStoreFullPrInRepoConnection>;
|
|
28449
28609
|
prInRepoRelationship?: Maybe<GraphStoreFullPrInRepoConnection>;
|
|
28610
|
+
projectAssociatedBranch?: Maybe<GraphStoreSimplifiedProjectAssociatedBranchConnection>;
|
|
28450
28611
|
projectAssociatedBranchInverse?: Maybe<GraphStoreSimplifiedProjectAssociatedBranchInverseConnection>;
|
|
28451
28612
|
projectAssociatedBranchInverseRelationship?: Maybe<GraphStoreFullProjectAssociatedBranchConnection>;
|
|
28452
28613
|
projectAssociatedBranchRelationship?: Maybe<GraphStoreFullProjectAssociatedBranchConnection>;
|
|
@@ -28540,6 +28701,8 @@ export declare type GraphStore = {
|
|
|
28540
28701
|
securityContainerAssociatedToVulnerabilityRelationship?: Maybe<GraphStoreFullSecurityContainerAssociatedToVulnerabilityConnection>;
|
|
28541
28702
|
serviceAssociatedDeployment?: Maybe<GraphStoreSimplifiedServiceAssociatedDeploymentConnection>;
|
|
28542
28703
|
serviceAssociatedDeploymentInverse?: Maybe<GraphStoreSimplifiedServiceAssociatedDeploymentInverseConnection>;
|
|
28704
|
+
serviceAssociatedRemoteLink?: Maybe<GraphStoreSimplifiedServiceAssociatedRemoteLinkConnection>;
|
|
28705
|
+
serviceAssociatedRemoteLinkInverse?: Maybe<GraphStoreSimplifiedServiceAssociatedRemoteLinkInverseConnection>;
|
|
28543
28706
|
serviceLinkedIncident?: Maybe<GraphStoreSimplifiedServiceLinkedIncidentConnection>;
|
|
28544
28707
|
serviceLinkedIncidentInverse?: Maybe<GraphStoreSimplifiedServiceLinkedIncidentInverseConnection>;
|
|
28545
28708
|
serviceLinkedIncidentInverseRelationship?: Maybe<GraphStoreFullServiceLinkedIncidentConnection>;
|
|
@@ -28604,20 +28767,78 @@ export declare type GraphStore = {
|
|
|
28604
28767
|
testPerfhammerRelationshipRelationship?: Maybe<GraphStoreFullTestPerfhammerRelationshipConnection>;
|
|
28605
28768
|
userAssignedIncident?: Maybe<GraphStoreSimplifiedUserAssignedIncidentConnection>;
|
|
28606
28769
|
userAssignedIncidentInverse?: Maybe<GraphStoreSimplifiedUserAssignedIncidentInverseConnection>;
|
|
28770
|
+
userAttendedCalendarEvent?: Maybe<GraphStoreSimplifiedUserAttendedCalendarEventConnection>;
|
|
28771
|
+
userAttendedCalendarEventInverse?: Maybe<GraphStoreSimplifiedUserAttendedCalendarEventInverseConnection>;
|
|
28772
|
+
userAuthoredCommit?: Maybe<GraphStoreSimplifiedUserAuthoredCommitConnection>;
|
|
28773
|
+
userAuthoredCommitInverse?: Maybe<GraphStoreSimplifiedUserAuthoredCommitInverseConnection>;
|
|
28607
28774
|
userAuthoredPr?: Maybe<GraphStoreSimplifiedUserAuthoredPrConnection>;
|
|
28608
28775
|
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
|
+
userCreatedBranch?: Maybe<GraphStoreSimplifiedUserCreatedBranchConnection>;
|
|
28789
|
+
userCreatedBranchInverse?: Maybe<GraphStoreSimplifiedUserCreatedBranchInverseConnection>;
|
|
28790
|
+
userCreatedCalendarEvent?: Maybe<GraphStoreSimplifiedUserCreatedCalendarEventConnection>;
|
|
28791
|
+
userCreatedCalendarEventInverse?: Maybe<GraphStoreSimplifiedUserCreatedCalendarEventInverseConnection>;
|
|
28609
28792
|
userCreatedConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostConnection>;
|
|
28610
28793
|
userCreatedConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostInverseConnection>;
|
|
28794
|
+
userCreatedConfluenceDatabase?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceDatabaseConnection>;
|
|
28795
|
+
userCreatedConfluenceDatabaseInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceDatabaseInverseConnection>;
|
|
28611
28796
|
userCreatedConfluencePage?: Maybe<GraphStoreSimplifiedUserCreatedConfluencePageConnection>;
|
|
28612
28797
|
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
|
+
userCreatedLoomVideo?: Maybe<GraphStoreSimplifiedUserCreatedLoomVideoConnection>;
|
|
28805
|
+
userCreatedLoomVideoInverse?: Maybe<GraphStoreSimplifiedUserCreatedLoomVideoInverseConnection>;
|
|
28806
|
+
userCreatedMessage?: Maybe<GraphStoreSimplifiedUserCreatedMessageConnection>;
|
|
28807
|
+
userCreatedMessageInverse?: Maybe<GraphStoreSimplifiedUserCreatedMessageInverseConnection>;
|
|
28808
|
+
userCreatedRemoteLink?: Maybe<GraphStoreSimplifiedUserCreatedRemoteLinkConnection>;
|
|
28809
|
+
userCreatedRemoteLinkInverse?: Maybe<GraphStoreSimplifiedUserCreatedRemoteLinkInverseConnection>;
|
|
28810
|
+
userCreatedRepository?: Maybe<GraphStoreSimplifiedUserCreatedRepositoryConnection>;
|
|
28811
|
+
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>;
|
|
28613
28820
|
userHasRelevantProject?: Maybe<GraphStoreSimplifiedUserHasRelevantProjectConnection>;
|
|
28614
28821
|
userHasRelevantProjectInverse?: Maybe<GraphStoreSimplifiedUserHasRelevantProjectInverseConnection>;
|
|
28615
28822
|
userHasTopProject?: Maybe<GraphStoreSimplifiedUserHasTopProjectConnection>;
|
|
28616
28823
|
userHasTopProjectInverse?: Maybe<GraphStoreSimplifiedUserHasTopProjectInverseConnection>;
|
|
28617
28824
|
userIsInTeam?: Maybe<GraphStoreSimplifiedUserIsInTeamConnection>;
|
|
28618
28825
|
userIsInTeamInverse?: Maybe<GraphStoreSimplifiedUserIsInTeamInverseConnection>;
|
|
28826
|
+
userLastUpdatedDesign?: Maybe<GraphStoreSimplifiedUserLastUpdatedDesignConnection>;
|
|
28827
|
+
userLastUpdatedDesignInverse?: Maybe<GraphStoreSimplifiedUserLastUpdatedDesignInverseConnection>;
|
|
28828
|
+
userMemberOfConversation?: Maybe<GraphStoreSimplifiedUserMemberOfConversationConnection>;
|
|
28829
|
+
userMemberOfConversationInverse?: Maybe<GraphStoreSimplifiedUserMemberOfConversationInverseConnection>;
|
|
28619
28830
|
userMergedPullRequest?: Maybe<GraphStoreSimplifiedUserMergedPullRequestConnection>;
|
|
28620
28831
|
userMergedPullRequestInverse?: Maybe<GraphStoreSimplifiedUserMergedPullRequestInverseConnection>;
|
|
28832
|
+
userOwnedBranch?: Maybe<GraphStoreSimplifiedUserOwnedBranchConnection>;
|
|
28833
|
+
userOwnedBranchInverse?: Maybe<GraphStoreSimplifiedUserOwnedBranchInverseConnection>;
|
|
28834
|
+
userOwnedCalendarEvent?: Maybe<GraphStoreSimplifiedUserOwnedCalendarEventConnection>;
|
|
28835
|
+
userOwnedCalendarEventInverse?: Maybe<GraphStoreSimplifiedUserOwnedCalendarEventInverseConnection>;
|
|
28836
|
+
userOwnedDocument?: Maybe<GraphStoreSimplifiedUserOwnedDocumentConnection>;
|
|
28837
|
+
userOwnedDocumentInverse?: Maybe<GraphStoreSimplifiedUserOwnedDocumentInverseConnection>;
|
|
28838
|
+
userOwnedRemoteLink?: Maybe<GraphStoreSimplifiedUserOwnedRemoteLinkConnection>;
|
|
28839
|
+
userOwnedRemoteLinkInverse?: Maybe<GraphStoreSimplifiedUserOwnedRemoteLinkInverseConnection>;
|
|
28840
|
+
userOwnedRepository?: Maybe<GraphStoreSimplifiedUserOwnedRepositoryConnection>;
|
|
28841
|
+
userOwnedRepositoryInverse?: Maybe<GraphStoreSimplifiedUserOwnedRepositoryInverseConnection>;
|
|
28621
28842
|
userOwnsComponent?: Maybe<GraphStoreSimplifiedUserOwnsComponentConnection>;
|
|
28622
28843
|
userOwnsComponentInverse?: Maybe<GraphStoreSimplifiedUserOwnsComponentInverseConnection>;
|
|
28623
28844
|
userReportedIncident?: Maybe<GraphStoreSimplifiedUserReportedIncidentConnection>;
|
|
@@ -28626,10 +28847,20 @@ export declare type GraphStore = {
|
|
|
28626
28847
|
userReportsIssueInverse?: Maybe<GraphStoreSimplifiedUserReportsIssueInverseConnection>;
|
|
28627
28848
|
userReviewsPr?: Maybe<GraphStoreSimplifiedUserReviewsPrConnection>;
|
|
28628
28849
|
userReviewsPrInverse?: Maybe<GraphStoreSimplifiedUserReviewsPrInverseConnection>;
|
|
28850
|
+
userTaggedInComment?: Maybe<GraphStoreSimplifiedUserTaggedInCommentConnection>;
|
|
28851
|
+
userTaggedInCommentInverse?: Maybe<GraphStoreSimplifiedUserTaggedInCommentInverseConnection>;
|
|
28852
|
+
userTaggedInConfluencePage?: Maybe<GraphStoreSimplifiedUserTaggedInConfluencePageConnection>;
|
|
28853
|
+
userTaggedInConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserTaggedInConfluencePageInverseConnection>;
|
|
28854
|
+
userTriggeredDeployment?: Maybe<GraphStoreSimplifiedUserTriggeredDeploymentConnection>;
|
|
28855
|
+
userTriggeredDeploymentInverse?: Maybe<GraphStoreSimplifiedUserTriggeredDeploymentInverseConnection>;
|
|
28629
28856
|
userUpdatedConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostConnection>;
|
|
28630
28857
|
userUpdatedConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostInverseConnection>;
|
|
28631
28858
|
userUpdatedConfluencePage?: Maybe<GraphStoreSimplifiedUserUpdatedConfluencePageConnection>;
|
|
28632
28859
|
userUpdatedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserUpdatedConfluencePageInverseConnection>;
|
|
28860
|
+
userUpdatedConfluenceSpace?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceSpaceConnection>;
|
|
28861
|
+
userUpdatedConfluenceSpaceInverse?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceSpaceInverseConnection>;
|
|
28862
|
+
userUpdatedConfluenceWhiteboard?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardConnection>;
|
|
28863
|
+
userUpdatedConfluenceWhiteboardInverse?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceWhiteboardInverseConnection>;
|
|
28633
28864
|
userViewedAtlasGoal?: Maybe<GraphStoreSimplifiedUserViewedAtlasGoalConnection>;
|
|
28634
28865
|
userViewedAtlasGoalInverse?: Maybe<GraphStoreSimplifiedUserViewedAtlasGoalInverseConnection>;
|
|
28635
28866
|
userViewedAtlasProject?: Maybe<GraphStoreSimplifiedUserViewedAtlasProjectConnection>;
|
|
@@ -28640,6 +28871,13 @@ export declare type GraphStore = {
|
|
|
28640
28871
|
userViewedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserViewedConfluencePageInverseConnection>;
|
|
28641
28872
|
userViewedJiraIssue?: Maybe<GraphStoreSimplifiedUserViewedJiraIssueConnection>;
|
|
28642
28873
|
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
|
+
versionAssociatedBranch?: Maybe<GraphStoreSimplifiedVersionAssociatedBranchConnection>;
|
|
28643
28881
|
versionAssociatedBranchInverse?: Maybe<GraphStoreSimplifiedVersionAssociatedBranchInverseConnection>;
|
|
28644
28882
|
versionAssociatedBranchInverseRelationship?: Maybe<GraphStoreFullVersionAssociatedBranchConnection>;
|
|
28645
28883
|
versionAssociatedBranchRelationship?: Maybe<GraphStoreFullVersionAssociatedBranchConnection>;
|
|
@@ -28671,6 +28909,7 @@ export declare type GraphStore = {
|
|
|
28671
28909
|
versionAssociatedPullRequestInverse?: Maybe<GraphStoreSimplifiedVersionAssociatedPullRequestInverseConnection>;
|
|
28672
28910
|
versionAssociatedPullRequestInverseRelationship?: Maybe<GraphStoreFullVersionAssociatedPullRequestConnection>;
|
|
28673
28911
|
versionAssociatedPullRequestRelationship?: Maybe<GraphStoreFullVersionAssociatedPullRequestConnection>;
|
|
28912
|
+
versionAssociatedRemoteLink?: Maybe<GraphStoreSimplifiedVersionAssociatedRemoteLinkConnection>;
|
|
28674
28913
|
versionAssociatedRemoteLinkInverse?: Maybe<GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseConnection>;
|
|
28675
28914
|
versionAssociatedRemoteLinkInverseRelationship?: Maybe<GraphStoreFullVersionAssociatedRemoteLinkConnection>;
|
|
28676
28915
|
versionAssociatedRemoteLinkRelationship?: Maybe<GraphStoreFullVersionAssociatedRemoteLinkConnection>;
|
|
@@ -28974,6 +29213,97 @@ export declare type GraphStoreConfluencePageHasConfluenceCommentInverseArgs = {
|
|
|
28974
29213
|
id: Scalars['ID']['input'];
|
|
28975
29214
|
sort?: InputMaybe<GraphStoreConfluencePageHasConfluenceCommentSortInput>;
|
|
28976
29215
|
};
|
|
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
|
+
};
|
|
28977
29307
|
export declare type GraphStoreContentReferencedEntityArgs = {
|
|
28978
29308
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
28979
29309
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -29010,6 +29340,20 @@ export declare type GraphStoreContentReferencedEntityRelationshipArgs = {
|
|
|
29010
29340
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29011
29341
|
id: Scalars['ID']['input'];
|
|
29012
29342
|
};
|
|
29343
|
+
export declare type GraphStoreConversationHasMessageArgs = {
|
|
29344
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
29345
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
29346
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29347
|
+
id: Scalars['ID']['input'];
|
|
29348
|
+
sort?: InputMaybe<GraphStoreConversationHasMessageSortInput>;
|
|
29349
|
+
};
|
|
29350
|
+
export declare type GraphStoreConversationHasMessageInverseArgs = {
|
|
29351
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
29352
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
29353
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29354
|
+
id: Scalars['ID']['input'];
|
|
29355
|
+
sort?: InputMaybe<GraphStoreConversationHasMessageSortInput>;
|
|
29356
|
+
};
|
|
29013
29357
|
export declare type GraphStoreCypherQueryArgs = {
|
|
29014
29358
|
additionalInputs?: InputMaybe<Scalars['JSON']['input']>;
|
|
29015
29359
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -29140,6 +29484,13 @@ export declare type GraphStoreFocusAreaHasProjectInverseBatchArgs = {
|
|
|
29140
29484
|
ids: Array<Scalars['ID']['input']>;
|
|
29141
29485
|
sort?: InputMaybe<GraphStoreFocusAreaHasProjectSortInput>;
|
|
29142
29486
|
};
|
|
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
|
+
};
|
|
29143
29494
|
export declare type GraphStoreIncidentAssociatedPostIncidentReviewArgs = {
|
|
29144
29495
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
29145
29496
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -29284,6 +29635,13 @@ export declare type GraphStoreIncidentLinkedJswIssueRelationshipArgs = {
|
|
|
29284
29635
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29285
29636
|
id: Scalars['ID']['input'];
|
|
29286
29637
|
};
|
|
29638
|
+
export declare type GraphStoreIssueAssociatedBranchArgs = {
|
|
29639
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
29640
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
29641
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29642
|
+
id: Scalars['ID']['input'];
|
|
29643
|
+
sort?: InputMaybe<GraphStoreIssueAssociatedBranchSortInput>;
|
|
29644
|
+
};
|
|
29287
29645
|
export declare type GraphStoreIssueAssociatedBranchInverseArgs = {
|
|
29288
29646
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
29289
29647
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -29513,6 +29871,13 @@ export declare type GraphStoreIssueAssociatedPrRelationshipArgs = {
|
|
|
29513
29871
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29514
29872
|
id: Scalars['ID']['input'];
|
|
29515
29873
|
};
|
|
29874
|
+
export declare type GraphStoreIssueAssociatedRemoteLinkArgs = {
|
|
29875
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
29876
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
29877
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29878
|
+
id: Scalars['ID']['input'];
|
|
29879
|
+
sort?: InputMaybe<GraphStoreIssueAssociatedRemoteLinkSortInput>;
|
|
29880
|
+
};
|
|
29516
29881
|
export declare type GraphStoreIssueAssociatedRemoteLinkInverseArgs = {
|
|
29517
29882
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
29518
29883
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -29938,6 +30303,20 @@ export declare type GraphStoreOperationsContainerImprovedByActionItemRelationshi
|
|
|
29938
30303
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29939
30304
|
id: Scalars['ID']['input'];
|
|
29940
30305
|
};
|
|
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
|
+
};
|
|
29941
30320
|
export declare type GraphStoreParentDocumentHasChildDocumentArgs = {
|
|
29942
30321
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
29943
30322
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -29986,6 +30365,34 @@ export declare type GraphStoreParentIssueHasChildIssueRelationshipArgs = {
|
|
|
29986
30365
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29987
30366
|
id: Scalars['ID']['input'];
|
|
29988
30367
|
};
|
|
30368
|
+
export declare type GraphStoreParentMessageHasChildMessageArgs = {
|
|
30369
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30370
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30371
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30372
|
+
id: Scalars['ID']['input'];
|
|
30373
|
+
sort?: InputMaybe<GraphStoreParentMessageHasChildMessageSortInput>;
|
|
30374
|
+
};
|
|
30375
|
+
export declare type GraphStoreParentMessageHasChildMessageInverseArgs = {
|
|
30376
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30377
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30378
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30379
|
+
id: Scalars['ID']['input'];
|
|
30380
|
+
sort?: InputMaybe<GraphStoreParentMessageHasChildMessageSortInput>;
|
|
30381
|
+
};
|
|
30382
|
+
export declare type GraphStorePositionAllocatedToFocusAreaArgs = {
|
|
30383
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30384
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30385
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30386
|
+
id: Scalars['ID']['input'];
|
|
30387
|
+
sort?: InputMaybe<GraphStorePositionAllocatedToFocusAreaSortInput>;
|
|
30388
|
+
};
|
|
30389
|
+
export declare type GraphStorePositionAllocatedToFocusAreaInverseArgs = {
|
|
30390
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30391
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30392
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30393
|
+
id: Scalars['ID']['input'];
|
|
30394
|
+
sort?: InputMaybe<GraphStorePositionAllocatedToFocusAreaSortInput>;
|
|
30395
|
+
};
|
|
29989
30396
|
export declare type GraphStorePrInRepoArgs = {
|
|
29990
30397
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
29991
30398
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -30010,6 +30417,13 @@ export declare type GraphStorePrInRepoRelationshipArgs = {
|
|
|
30010
30417
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30011
30418
|
id: Scalars['ID']['input'];
|
|
30012
30419
|
};
|
|
30420
|
+
export declare type GraphStoreProjectAssociatedBranchArgs = {
|
|
30421
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30422
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30423
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30424
|
+
id: Scalars['ID']['input'];
|
|
30425
|
+
sort?: InputMaybe<GraphStoreProjectAssociatedBranchSortInput>;
|
|
30426
|
+
};
|
|
30013
30427
|
export declare type GraphStoreProjectAssociatedBranchInverseArgs = {
|
|
30014
30428
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30015
30429
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -30607,6 +31021,20 @@ export declare type GraphStoreServiceAssociatedDeploymentInverseArgs = {
|
|
|
30607
31021
|
id: Scalars['ID']['input'];
|
|
30608
31022
|
sort?: InputMaybe<GraphStoreServiceAssociatedDeploymentSortInput>;
|
|
30609
31023
|
};
|
|
31024
|
+
export declare type GraphStoreServiceAssociatedRemoteLinkArgs = {
|
|
31025
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31026
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31027
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31028
|
+
id: Scalars['ID']['input'];
|
|
31029
|
+
sort?: InputMaybe<GraphStoreServiceAssociatedRemoteLinkSortInput>;
|
|
31030
|
+
};
|
|
31031
|
+
export declare type GraphStoreServiceAssociatedRemoteLinkInverseArgs = {
|
|
31032
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31033
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31034
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31035
|
+
id: Scalars['ID']['input'];
|
|
31036
|
+
sort?: InputMaybe<GraphStoreServiceAssociatedRemoteLinkSortInput>;
|
|
31037
|
+
};
|
|
30610
31038
|
export declare type GraphStoreServiceLinkedIncidentArgs = {
|
|
30611
31039
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30612
31040
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31028,6 +31456,34 @@ export declare type GraphStoreUserAssignedIncidentInverseArgs = {
|
|
|
31028
31456
|
id: Scalars['ID']['input'];
|
|
31029
31457
|
sort?: InputMaybe<GraphStoreUserAssignedIncidentSortInput>;
|
|
31030
31458
|
};
|
|
31459
|
+
export declare type GraphStoreUserAttendedCalendarEventArgs = {
|
|
31460
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31461
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31462
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31463
|
+
id: Scalars['ID']['input'];
|
|
31464
|
+
sort?: InputMaybe<GraphStoreUserAttendedCalendarEventSortInput>;
|
|
31465
|
+
};
|
|
31466
|
+
export declare type GraphStoreUserAttendedCalendarEventInverseArgs = {
|
|
31467
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31468
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31469
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31470
|
+
id: Scalars['ID']['input'];
|
|
31471
|
+
sort?: InputMaybe<GraphStoreUserAttendedCalendarEventSortInput>;
|
|
31472
|
+
};
|
|
31473
|
+
export declare type GraphStoreUserAuthoredCommitArgs = {
|
|
31474
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31475
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31476
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31477
|
+
id: Scalars['ID']['input'];
|
|
31478
|
+
sort?: InputMaybe<GraphStoreUserAuthoredCommitSortInput>;
|
|
31479
|
+
};
|
|
31480
|
+
export declare type GraphStoreUserAuthoredCommitInverseArgs = {
|
|
31481
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31482
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31483
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31484
|
+
id: Scalars['ID']['input'];
|
|
31485
|
+
sort?: InputMaybe<GraphStoreUserAuthoredCommitSortInput>;
|
|
31486
|
+
};
|
|
31031
31487
|
export declare type GraphStoreUserAuthoredPrArgs = {
|
|
31032
31488
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31033
31489
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31042,6 +31498,118 @@ export declare type GraphStoreUserAuthoredPrInverseArgs = {
|
|
|
31042
31498
|
id: Scalars['ID']['input'];
|
|
31043
31499
|
sort?: InputMaybe<GraphStoreUserAuthoredPrSortInput>;
|
|
31044
31500
|
};
|
|
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
|
+
export declare type GraphStoreUserCreatedBranchArgs = {
|
|
31586
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31587
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31588
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31589
|
+
id: Scalars['ID']['input'];
|
|
31590
|
+
sort?: InputMaybe<GraphStoreUserCreatedBranchSortInput>;
|
|
31591
|
+
};
|
|
31592
|
+
export declare type GraphStoreUserCreatedBranchInverseArgs = {
|
|
31593
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31594
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31595
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31596
|
+
id: Scalars['ID']['input'];
|
|
31597
|
+
sort?: InputMaybe<GraphStoreUserCreatedBranchSortInput>;
|
|
31598
|
+
};
|
|
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
|
+
};
|
|
31045
31613
|
export declare type GraphStoreUserCreatedConfluenceBlogpostArgs = {
|
|
31046
31614
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31047
31615
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31056,6 +31624,20 @@ export declare type GraphStoreUserCreatedConfluenceBlogpostInverseArgs = {
|
|
|
31056
31624
|
id: Scalars['ID']['input'];
|
|
31057
31625
|
sort?: InputMaybe<GraphStoreUserCreatedConfluenceBlogpostSortInput>;
|
|
31058
31626
|
};
|
|
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
|
+
};
|
|
31059
31641
|
export declare type GraphStoreUserCreatedConfluencePageArgs = {
|
|
31060
31642
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31061
31643
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31070,6 +31652,160 @@ export declare type GraphStoreUserCreatedConfluencePageInverseArgs = {
|
|
|
31070
31652
|
id: Scalars['ID']['input'];
|
|
31071
31653
|
sort?: InputMaybe<GraphStoreUserCreatedConfluencePageSortInput>;
|
|
31072
31654
|
};
|
|
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
|
+
export declare type GraphStoreUserCreatedLoomVideoArgs = {
|
|
31698
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31699
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31700
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31701
|
+
id: Scalars['ID']['input'];
|
|
31702
|
+
sort?: InputMaybe<GraphStoreUserCreatedLoomVideoSortInput>;
|
|
31703
|
+
};
|
|
31704
|
+
export declare type GraphStoreUserCreatedLoomVideoInverseArgs = {
|
|
31705
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31706
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31707
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31708
|
+
id: Scalars['ID']['input'];
|
|
31709
|
+
sort?: InputMaybe<GraphStoreUserCreatedLoomVideoSortInput>;
|
|
31710
|
+
};
|
|
31711
|
+
export declare type GraphStoreUserCreatedMessageArgs = {
|
|
31712
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31713
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31714
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31715
|
+
id: Scalars['ID']['input'];
|
|
31716
|
+
sort?: InputMaybe<GraphStoreUserCreatedMessageSortInput>;
|
|
31717
|
+
};
|
|
31718
|
+
export declare type GraphStoreUserCreatedMessageInverseArgs = {
|
|
31719
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31720
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31721
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31722
|
+
id: Scalars['ID']['input'];
|
|
31723
|
+
sort?: InputMaybe<GraphStoreUserCreatedMessageSortInput>;
|
|
31724
|
+
};
|
|
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
|
+
export declare type GraphStoreUserCreatedRepositoryArgs = {
|
|
31740
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31741
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31742
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31743
|
+
id: Scalars['ID']['input'];
|
|
31744
|
+
sort?: InputMaybe<GraphStoreUserCreatedRepositorySortInput>;
|
|
31745
|
+
};
|
|
31746
|
+
export declare type GraphStoreUserCreatedRepositoryInverseArgs = {
|
|
31747
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31748
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31749
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31750
|
+
id: Scalars['ID']['input'];
|
|
31751
|
+
sort?: InputMaybe<GraphStoreUserCreatedRepositorySortInput>;
|
|
31752
|
+
};
|
|
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
|
+
};
|
|
31073
31809
|
export declare type GraphStoreUserHasRelevantProjectArgs = {
|
|
31074
31810
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31075
31811
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31112,6 +31848,34 @@ export declare type GraphStoreUserIsInTeamInverseArgs = {
|
|
|
31112
31848
|
id: Scalars['ID']['input'];
|
|
31113
31849
|
sort?: InputMaybe<GraphStoreUserIsInTeamSortInput>;
|
|
31114
31850
|
};
|
|
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
|
+
export declare type GraphStoreUserMemberOfConversationArgs = {
|
|
31866
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31867
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31868
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31869
|
+
id: Scalars['ID']['input'];
|
|
31870
|
+
sort?: InputMaybe<GraphStoreUserMemberOfConversationSortInput>;
|
|
31871
|
+
};
|
|
31872
|
+
export declare type GraphStoreUserMemberOfConversationInverseArgs = {
|
|
31873
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31874
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31875
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31876
|
+
id: Scalars['ID']['input'];
|
|
31877
|
+
sort?: InputMaybe<GraphStoreUserMemberOfConversationSortInput>;
|
|
31878
|
+
};
|
|
31115
31879
|
export declare type GraphStoreUserMergedPullRequestArgs = {
|
|
31116
31880
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31117
31881
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31126,6 +31890,76 @@ export declare type GraphStoreUserMergedPullRequestInverseArgs = {
|
|
|
31126
31890
|
id: Scalars['ID']['input'];
|
|
31127
31891
|
sort?: InputMaybe<GraphStoreUserMergedPullRequestSortInput>;
|
|
31128
31892
|
};
|
|
31893
|
+
export declare type GraphStoreUserOwnedBranchArgs = {
|
|
31894
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31895
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31896
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31897
|
+
id: Scalars['ID']['input'];
|
|
31898
|
+
sort?: InputMaybe<GraphStoreUserOwnedBranchSortInput>;
|
|
31899
|
+
};
|
|
31900
|
+
export declare type GraphStoreUserOwnedBranchInverseArgs = {
|
|
31901
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31902
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31903
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31904
|
+
id: Scalars['ID']['input'];
|
|
31905
|
+
sort?: InputMaybe<GraphStoreUserOwnedBranchSortInput>;
|
|
31906
|
+
};
|
|
31907
|
+
export declare type GraphStoreUserOwnedCalendarEventArgs = {
|
|
31908
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31909
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31910
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31911
|
+
id: Scalars['ID']['input'];
|
|
31912
|
+
sort?: InputMaybe<GraphStoreUserOwnedCalendarEventSortInput>;
|
|
31913
|
+
};
|
|
31914
|
+
export declare type GraphStoreUserOwnedCalendarEventInverseArgs = {
|
|
31915
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31916
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31917
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31918
|
+
id: Scalars['ID']['input'];
|
|
31919
|
+
sort?: InputMaybe<GraphStoreUserOwnedCalendarEventSortInput>;
|
|
31920
|
+
};
|
|
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
|
+
export declare type GraphStoreUserOwnedRemoteLinkArgs = {
|
|
31936
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31937
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31938
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31939
|
+
id: Scalars['ID']['input'];
|
|
31940
|
+
sort?: InputMaybe<GraphStoreUserOwnedRemoteLinkSortInput>;
|
|
31941
|
+
};
|
|
31942
|
+
export declare type GraphStoreUserOwnedRemoteLinkInverseArgs = {
|
|
31943
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31944
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31945
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31946
|
+
id: Scalars['ID']['input'];
|
|
31947
|
+
sort?: InputMaybe<GraphStoreUserOwnedRemoteLinkSortInput>;
|
|
31948
|
+
};
|
|
31949
|
+
export declare type GraphStoreUserOwnedRepositoryArgs = {
|
|
31950
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31951
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31952
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31953
|
+
id: Scalars['ID']['input'];
|
|
31954
|
+
sort?: InputMaybe<GraphStoreUserOwnedRepositorySortInput>;
|
|
31955
|
+
};
|
|
31956
|
+
export declare type GraphStoreUserOwnedRepositoryInverseArgs = {
|
|
31957
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31958
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31959
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31960
|
+
id: Scalars['ID']['input'];
|
|
31961
|
+
sort?: InputMaybe<GraphStoreUserOwnedRepositorySortInput>;
|
|
31962
|
+
};
|
|
31129
31963
|
export declare type GraphStoreUserOwnsComponentArgs = {
|
|
31130
31964
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31131
31965
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31182,6 +32016,48 @@ export declare type GraphStoreUserReviewsPrInverseArgs = {
|
|
|
31182
32016
|
id: Scalars['ID']['input'];
|
|
31183
32017
|
sort?: InputMaybe<GraphStoreUserReviewsPrSortInput>;
|
|
31184
32018
|
};
|
|
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
|
+
export declare type GraphStoreUserTriggeredDeploymentArgs = {
|
|
32048
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32049
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32050
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32051
|
+
id: Scalars['ID']['input'];
|
|
32052
|
+
sort?: InputMaybe<GraphStoreUserTriggeredDeploymentSortInput>;
|
|
32053
|
+
};
|
|
32054
|
+
export declare type GraphStoreUserTriggeredDeploymentInverseArgs = {
|
|
32055
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32056
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32057
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32058
|
+
id: Scalars['ID']['input'];
|
|
32059
|
+
sort?: InputMaybe<GraphStoreUserTriggeredDeploymentSortInput>;
|
|
32060
|
+
};
|
|
31185
32061
|
export declare type GraphStoreUserUpdatedConfluenceBlogpostArgs = {
|
|
31186
32062
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31187
32063
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31210,6 +32086,34 @@ export declare type GraphStoreUserUpdatedConfluencePageInverseArgs = {
|
|
|
31210
32086
|
id: Scalars['ID']['input'];
|
|
31211
32087
|
sort?: InputMaybe<GraphStoreUserUpdatedConfluencePageSortInput>;
|
|
31212
32088
|
};
|
|
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
|
+
};
|
|
31213
32117
|
export declare type GraphStoreUserViewedAtlasGoalArgs = {
|
|
31214
32118
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31215
32119
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31280,6 +32184,55 @@ export declare type GraphStoreUserViewedJiraIssueInverseArgs = {
|
|
|
31280
32184
|
id: Scalars['ID']['input'];
|
|
31281
32185
|
sort?: InputMaybe<GraphStoreUserViewedJiraIssueSortInput>;
|
|
31282
32186
|
};
|
|
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
|
+
export declare type GraphStoreVersionAssociatedBranchArgs = {
|
|
32230
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32231
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32232
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32233
|
+
id: Scalars['ID']['input'];
|
|
32234
|
+
sort?: InputMaybe<GraphStoreVersionAssociatedBranchSortInput>;
|
|
32235
|
+
};
|
|
31283
32236
|
export declare type GraphStoreVersionAssociatedBranchInverseArgs = {
|
|
31284
32237
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31285
32238
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31471,6 +32424,13 @@ export declare type GraphStoreVersionAssociatedPullRequestRelationshipArgs = {
|
|
|
31471
32424
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31472
32425
|
id: Scalars['ID']['input'];
|
|
31473
32426
|
};
|
|
32427
|
+
export declare type GraphStoreVersionAssociatedRemoteLinkArgs = {
|
|
32428
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32429
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32430
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32431
|
+
id: Scalars['ID']['input'];
|
|
32432
|
+
sort?: InputMaybe<GraphStoreVersionAssociatedRemoteLinkSortInput>;
|
|
32433
|
+
};
|
|
31474
32434
|
export declare type GraphStoreVersionAssociatedRemoteLinkInverseArgs = {
|
|
31475
32435
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31476
32436
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -32047,7 +33007,7 @@ export declare type GraphStoreBatchIssueAssociatedDeploymentEndNode = {
|
|
|
32047
33007
|
data?: Maybe<GraphStoreBatchIssueAssociatedDeploymentEndUnion>;
|
|
32048
33008
|
id: Scalars['ID']['output'];
|
|
32049
33009
|
};
|
|
32050
|
-
export declare type GraphStoreBatchIssueAssociatedDeploymentEndUnion = DeploymentSummary;
|
|
33010
|
+
export declare type GraphStoreBatchIssueAssociatedDeploymentEndUnion = DeploymentSummary | ExternalDeployment;
|
|
32051
33011
|
export declare type GraphStoreBatchIssueAssociatedDeploymentInnerConnection = {
|
|
32052
33012
|
__typename?: 'GraphStoreBatchIssueAssociatedDeploymentInnerConnection';
|
|
32053
33013
|
edges: Array<Maybe<GraphStoreBatchIssueAssociatedDeploymentInnerEdge>>;
|
|
@@ -32295,9 +33255,33 @@ export declare type GraphStoreComponentLinkedJswIssueSortInput = {
|
|
|
32295
33255
|
export declare type GraphStoreConfluencePageHasConfluenceCommentSortInput = {
|
|
32296
33256
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
32297
33257
|
};
|
|
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
|
+
};
|
|
32298
33279
|
export declare type GraphStoreContentReferencedEntitySortInput = {
|
|
32299
33280
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
32300
33281
|
};
|
|
33282
|
+
export declare type GraphStoreConversationHasMessageSortInput = {
|
|
33283
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
33284
|
+
};
|
|
32301
33285
|
export declare type GraphStoreCreateComponentImpactedByIncidentInput = {
|
|
32302
33286
|
relationships: Array<GraphStoreCreateComponentImpactedByIncidentRelationshipInput>;
|
|
32303
33287
|
};
|
|
@@ -32698,7 +33682,7 @@ export declare type GraphStoreCypherQueryFromNode = {
|
|
|
32698
33682
|
data?: Maybe<GraphStoreCypherQueryFromNodeUnion>;
|
|
32699
33683
|
id: Scalars['ID']['output'];
|
|
32700
33684
|
};
|
|
32701
|
-
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 | ExternalBuildInfo | ExternalCommit | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalPullRequest | ExternalRepository | ExternalVulnerability | JiraAlignAggProject | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPostIncidentReviewLink | JiraProject | JiraVersion | JiraWebRemoteIssueLink | MercuryFocusArea | MercuryJiraAlignEpic | OpsgenieTeam | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject;
|
|
33685
|
+
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | 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;
|
|
32702
33686
|
export declare type GraphStoreCypherQueryNode = {
|
|
32703
33687
|
__typename?: 'GraphStoreCypherQueryNode';
|
|
32704
33688
|
from: GraphStoreCypherQueryFromNode;
|
|
@@ -32709,7 +33693,7 @@ export declare type GraphStoreCypherQueryToNode = {
|
|
|
32709
33693
|
data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
|
|
32710
33694
|
id: Scalars['ID']['output'];
|
|
32711
33695
|
};
|
|
32712
|
-
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 | ExternalBuildInfo | ExternalCommit | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalPullRequest | ExternalRepository | ExternalVulnerability | JiraAlignAggProject | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPostIncidentReviewLink | JiraProject | JiraVersion | JiraWebRemoteIssueLink | MercuryFocusArea | MercuryJiraAlignEpic | OpsgenieTeam | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject;
|
|
33696
|
+
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | 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;
|
|
32713
33697
|
export declare type GraphStoreDateFilterInput = {
|
|
32714
33698
|
after?: InputMaybe<Scalars['DateTime']['input']>;
|
|
32715
33699
|
before?: InputMaybe<Scalars['DateTime']['input']>;
|
|
@@ -33456,8 +34440,10 @@ export declare type GraphStoreFullIssueAssociatedBranchEdge = {
|
|
|
33456
34440
|
};
|
|
33457
34441
|
export declare type GraphStoreFullIssueAssociatedBranchEndNode = {
|
|
33458
34442
|
__typename?: 'GraphStoreFullIssueAssociatedBranchEndNode';
|
|
34443
|
+
data?: Maybe<GraphStoreFullIssueAssociatedBranchEndUnion>;
|
|
33459
34444
|
id: Scalars['ID']['output'];
|
|
33460
34445
|
};
|
|
34446
|
+
export declare type GraphStoreFullIssueAssociatedBranchEndUnion = ExternalBranch;
|
|
33461
34447
|
export declare type GraphStoreFullIssueAssociatedBranchNode = Node & {
|
|
33462
34448
|
__typename?: 'GraphStoreFullIssueAssociatedBranchNode';
|
|
33463
34449
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -33589,7 +34575,7 @@ export declare type GraphStoreFullIssueAssociatedDeploymentEndNode = {
|
|
|
33589
34575
|
id: Scalars['ID']['output'];
|
|
33590
34576
|
metadata?: Maybe<GraphStoreFullIssueAssociatedDeploymentRelationshipObjectMetadataOutput>;
|
|
33591
34577
|
};
|
|
33592
|
-
export declare type GraphStoreFullIssueAssociatedDeploymentEndUnion = DeploymentSummary;
|
|
34578
|
+
export declare type GraphStoreFullIssueAssociatedDeploymentEndUnion = DeploymentSummary | ExternalDeployment;
|
|
33593
34579
|
export declare enum GraphStoreFullIssueAssociatedDeploymentEnvironmentTypeOutput {
|
|
33594
34580
|
Development = "DEVELOPMENT",
|
|
33595
34581
|
NotSet = "NOT_SET",
|
|
@@ -33847,8 +34833,10 @@ export declare type GraphStoreFullIssueAssociatedRemoteLinkEdge = {
|
|
|
33847
34833
|
};
|
|
33848
34834
|
export declare type GraphStoreFullIssueAssociatedRemoteLinkEndNode = {
|
|
33849
34835
|
__typename?: 'GraphStoreFullIssueAssociatedRemoteLinkEndNode';
|
|
34836
|
+
data?: Maybe<GraphStoreFullIssueAssociatedRemoteLinkEndUnion>;
|
|
33850
34837
|
id: Scalars['ID']['output'];
|
|
33851
34838
|
};
|
|
34839
|
+
export declare type GraphStoreFullIssueAssociatedRemoteLinkEndUnion = ExternalRemoteLink;
|
|
33852
34840
|
export declare type GraphStoreFullIssueAssociatedRemoteLinkNode = Node & {
|
|
33853
34841
|
__typename?: 'GraphStoreFullIssueAssociatedRemoteLinkNode';
|
|
33854
34842
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -33914,7 +34902,7 @@ export declare type GraphStoreFullIssueRecursiveAssociatedDeploymentEndNode = {
|
|
|
33914
34902
|
data?: Maybe<GraphStoreFullIssueRecursiveAssociatedDeploymentEndUnion>;
|
|
33915
34903
|
id: Scalars['ID']['output'];
|
|
33916
34904
|
};
|
|
33917
|
-
export declare type GraphStoreFullIssueRecursiveAssociatedDeploymentEndUnion = DeploymentSummary;
|
|
34905
|
+
export declare type GraphStoreFullIssueRecursiveAssociatedDeploymentEndUnion = DeploymentSummary | ExternalDeployment;
|
|
33918
34906
|
export declare type GraphStoreFullIssueRecursiveAssociatedDeploymentNode = Node & {
|
|
33919
34907
|
__typename?: 'GraphStoreFullIssueRecursiveAssociatedDeploymentNode';
|
|
33920
34908
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -34487,8 +35475,10 @@ export declare type GraphStoreFullProjectAssociatedBranchEdge = {
|
|
|
34487
35475
|
};
|
|
34488
35476
|
export declare type GraphStoreFullProjectAssociatedBranchEndNode = {
|
|
34489
35477
|
__typename?: 'GraphStoreFullProjectAssociatedBranchEndNode';
|
|
35478
|
+
data?: Maybe<GraphStoreFullProjectAssociatedBranchEndUnion>;
|
|
34490
35479
|
id: Scalars['ID']['output'];
|
|
34491
35480
|
};
|
|
35481
|
+
export declare type GraphStoreFullProjectAssociatedBranchEndUnion = ExternalBranch;
|
|
34492
35482
|
export declare type GraphStoreFullProjectAssociatedBranchNode = Node & {
|
|
34493
35483
|
__typename?: 'GraphStoreFullProjectAssociatedBranchNode';
|
|
34494
35484
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -34601,7 +35591,7 @@ export declare type GraphStoreFullProjectAssociatedDeploymentEndNode = {
|
|
|
34601
35591
|
id: Scalars['ID']['output'];
|
|
34602
35592
|
metadata?: Maybe<GraphStoreFullProjectAssociatedDeploymentRelationshipObjectMetadataOutput>;
|
|
34603
35593
|
};
|
|
34604
|
-
export declare type GraphStoreFullProjectAssociatedDeploymentEndUnion = DeploymentSummary;
|
|
35594
|
+
export declare type GraphStoreFullProjectAssociatedDeploymentEndUnion = DeploymentSummary | ExternalDeployment;
|
|
34605
35595
|
export declare enum GraphStoreFullProjectAssociatedDeploymentEnvironmentTypeOutput {
|
|
34606
35596
|
Development = "DEVELOPMENT",
|
|
34607
35597
|
NotSet = "NOT_SET",
|
|
@@ -35553,7 +36543,7 @@ export declare type GraphStoreFullSprintAssociatedDeploymentEndNode = {
|
|
|
35553
36543
|
id: Scalars['ID']['output'];
|
|
35554
36544
|
metadata?: Maybe<GraphStoreFullSprintAssociatedDeploymentRelationshipObjectMetadataOutput>;
|
|
35555
36545
|
};
|
|
35556
|
-
export declare type GraphStoreFullSprintAssociatedDeploymentEndUnion = DeploymentSummary;
|
|
36546
|
+
export declare type GraphStoreFullSprintAssociatedDeploymentEndUnion = DeploymentSummary | ExternalDeployment;
|
|
35557
36547
|
export declare enum GraphStoreFullSprintAssociatedDeploymentEnvironmentTypeOutput {
|
|
35558
36548
|
Development = "DEVELOPMENT",
|
|
35559
36549
|
NotSet = "NOT_SET",
|
|
@@ -36052,8 +37042,10 @@ export declare type GraphStoreFullVersionAssociatedBranchEdge = {
|
|
|
36052
37042
|
};
|
|
36053
37043
|
export declare type GraphStoreFullVersionAssociatedBranchEndNode = {
|
|
36054
37044
|
__typename?: 'GraphStoreFullVersionAssociatedBranchEndNode';
|
|
37045
|
+
data?: Maybe<GraphStoreFullVersionAssociatedBranchEndUnion>;
|
|
36055
37046
|
id: Scalars['ID']['output'];
|
|
36056
37047
|
};
|
|
37048
|
+
export declare type GraphStoreFullVersionAssociatedBranchEndUnion = ExternalBranch;
|
|
36057
37049
|
export declare type GraphStoreFullVersionAssociatedBranchNode = Node & {
|
|
36058
37050
|
__typename?: 'GraphStoreFullVersionAssociatedBranchNode';
|
|
36059
37051
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -36152,7 +37144,7 @@ export declare type GraphStoreFullVersionAssociatedDeploymentEndNode = {
|
|
|
36152
37144
|
data?: Maybe<GraphStoreFullVersionAssociatedDeploymentEndUnion>;
|
|
36153
37145
|
id: Scalars['ID']['output'];
|
|
36154
37146
|
};
|
|
36155
|
-
export declare type GraphStoreFullVersionAssociatedDeploymentEndUnion = DeploymentSummary;
|
|
37147
|
+
export declare type GraphStoreFullVersionAssociatedDeploymentEndUnion = DeploymentSummary | ExternalDeployment;
|
|
36156
37148
|
export declare type GraphStoreFullVersionAssociatedDeploymentNode = Node & {
|
|
36157
37149
|
__typename?: 'GraphStoreFullVersionAssociatedDeploymentNode';
|
|
36158
37150
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -36332,8 +37324,10 @@ export declare type GraphStoreFullVersionAssociatedRemoteLinkEdge = {
|
|
|
36332
37324
|
};
|
|
36333
37325
|
export declare type GraphStoreFullVersionAssociatedRemoteLinkEndNode = {
|
|
36334
37326
|
__typename?: 'GraphStoreFullVersionAssociatedRemoteLinkEndNode';
|
|
37327
|
+
data?: Maybe<GraphStoreFullVersionAssociatedRemoteLinkEndUnion>;
|
|
36335
37328
|
id: Scalars['ID']['output'];
|
|
36336
37329
|
};
|
|
37330
|
+
export declare type GraphStoreFullVersionAssociatedRemoteLinkEndUnion = ExternalRemoteLink;
|
|
36337
37331
|
export declare type GraphStoreFullVersionAssociatedRemoteLinkNode = Node & {
|
|
36338
37332
|
__typename?: 'GraphStoreFullVersionAssociatedRemoteLinkNode';
|
|
36339
37333
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -36449,6 +37443,9 @@ export declare enum GraphStoreFullVulnerabilityAssociatedIssueVulnerabilityTypeO
|
|
|
36449
37443
|
Sca = "SCA",
|
|
36450
37444
|
Unknown = "UNKNOWN"
|
|
36451
37445
|
}
|
|
37446
|
+
export declare type GraphStoreGroupCanViewConfluenceSpaceSortInput = {
|
|
37447
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
37448
|
+
};
|
|
36452
37449
|
export declare type GraphStoreIncidentAssociatedPostIncidentReviewLinkSortInput = {
|
|
36453
37450
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
36454
37451
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -36890,12 +37887,21 @@ export declare type GraphStoreOperationsContainerImpactedByIncidentSortInput = {
|
|
|
36890
37887
|
export declare type GraphStoreOperationsContainerImprovedByActionItemSortInput = {
|
|
36891
37888
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
36892
37889
|
};
|
|
37890
|
+
export declare type GraphStoreParentCommentHasChildCommentSortInput = {
|
|
37891
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
37892
|
+
};
|
|
36893
37893
|
export declare type GraphStoreParentDocumentHasChildDocumentSortInput = {
|
|
36894
37894
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
36895
37895
|
};
|
|
36896
37896
|
export declare type GraphStoreParentIssueHasChildIssueSortInput = {
|
|
36897
37897
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
36898
37898
|
};
|
|
37899
|
+
export declare type GraphStoreParentMessageHasChildMessageSortInput = {
|
|
37900
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
37901
|
+
};
|
|
37902
|
+
export declare type GraphStorePositionAllocatedToFocusAreaSortInput = {
|
|
37903
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
37904
|
+
};
|
|
36899
37905
|
export declare type GraphStorePrInRepoSortInput = {
|
|
36900
37906
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
36901
37907
|
};
|
|
@@ -37334,6 +38340,9 @@ export declare type GraphStoreSecurityContainerAssociatedToVulnerabilitySortInpu
|
|
|
37334
38340
|
export declare type GraphStoreServiceAssociatedDeploymentSortInput = {
|
|
37335
38341
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
37336
38342
|
};
|
|
38343
|
+
export declare type GraphStoreServiceAssociatedRemoteLinkSortInput = {
|
|
38344
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38345
|
+
};
|
|
37337
38346
|
export declare type GraphStoreServiceLinkedIncidentConditionalFilterInput = {
|
|
37338
38347
|
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
37339
38348
|
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
@@ -37841,6 +38850,188 @@ export declare type GraphStoreSimplifiedConfluencePageHasConfluenceCommentInvers
|
|
|
37841
38850
|
};
|
|
37842
38851
|
export declare type GraphStoreSimplifiedConfluencePageHasConfluenceCommentInverseUnion = ConfluenceBlogPost | ConfluencePage;
|
|
37843
38852
|
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;
|
|
37844
39035
|
export declare type GraphStoreSimplifiedContentReferencedEntityConnection = HasPageInfo & {
|
|
37845
39036
|
__typename?: 'GraphStoreSimplifiedContentReferencedEntityConnection';
|
|
37846
39037
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedContentReferencedEntityEdge>>>;
|
|
@@ -37869,6 +39060,34 @@ export declare type GraphStoreSimplifiedContentReferencedEntityInverseEdge = {
|
|
|
37869
39060
|
};
|
|
37870
39061
|
export declare type GraphStoreSimplifiedContentReferencedEntityInverseUnion = ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
37871
39062
|
export declare type GraphStoreSimplifiedContentReferencedEntityUnion = CompassComponent | ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
39063
|
+
export declare type GraphStoreSimplifiedConversationHasMessageConnection = HasPageInfo & {
|
|
39064
|
+
__typename?: 'GraphStoreSimplifiedConversationHasMessageConnection';
|
|
39065
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConversationHasMessageEdge>>>;
|
|
39066
|
+
pageInfo: PageInfo;
|
|
39067
|
+
};
|
|
39068
|
+
export declare type GraphStoreSimplifiedConversationHasMessageEdge = {
|
|
39069
|
+
__typename?: 'GraphStoreSimplifiedConversationHasMessageEdge';
|
|
39070
|
+
createdAt: Scalars['DateTime']['output'];
|
|
39071
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
39072
|
+
id: Scalars['ID']['output'];
|
|
39073
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
39074
|
+
node?: Maybe<GraphStoreSimplifiedConversationHasMessageUnion>;
|
|
39075
|
+
};
|
|
39076
|
+
export declare type GraphStoreSimplifiedConversationHasMessageInverseConnection = HasPageInfo & {
|
|
39077
|
+
__typename?: 'GraphStoreSimplifiedConversationHasMessageInverseConnection';
|
|
39078
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConversationHasMessageInverseEdge>>>;
|
|
39079
|
+
pageInfo: PageInfo;
|
|
39080
|
+
};
|
|
39081
|
+
export declare type GraphStoreSimplifiedConversationHasMessageInverseEdge = {
|
|
39082
|
+
__typename?: 'GraphStoreSimplifiedConversationHasMessageInverseEdge';
|
|
39083
|
+
createdAt: Scalars['DateTime']['output'];
|
|
39084
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
39085
|
+
id: Scalars['ID']['output'];
|
|
39086
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
39087
|
+
node?: Maybe<GraphStoreSimplifiedConversationHasMessageInverseUnion>;
|
|
39088
|
+
};
|
|
39089
|
+
export declare type GraphStoreSimplifiedConversationHasMessageInverseUnion = ExternalConversation;
|
|
39090
|
+
export declare type GraphStoreSimplifiedConversationHasMessageUnion = ExternalMessage;
|
|
37872
39091
|
export declare type GraphStoreSimplifiedDeploymentContainsCommitConnection = HasPageInfo & {
|
|
37873
39092
|
__typename?: 'GraphStoreSimplifiedDeploymentContainsCommitConnection';
|
|
37874
39093
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedDeploymentContainsCommitEdge>>>;
|
|
@@ -37895,7 +39114,7 @@ export declare type GraphStoreSimplifiedDeploymentContainsCommitInverseEdge = {
|
|
|
37895
39114
|
lastUpdated: Scalars['DateTime']['output'];
|
|
37896
39115
|
node?: Maybe<GraphStoreSimplifiedDeploymentContainsCommitInverseUnion>;
|
|
37897
39116
|
};
|
|
37898
|
-
export declare type GraphStoreSimplifiedDeploymentContainsCommitInverseUnion = DeploymentSummary;
|
|
39117
|
+
export declare type GraphStoreSimplifiedDeploymentContainsCommitInverseUnion = DeploymentSummary | ExternalDeployment;
|
|
37899
39118
|
export declare type GraphStoreSimplifiedDeploymentContainsCommitUnion = ExternalCommit;
|
|
37900
39119
|
export declare type GraphStoreSimplifiedFocusAreaAssociatedToProjectConnection = HasPageInfo & {
|
|
37901
39120
|
__typename?: 'GraphStoreSimplifiedFocusAreaAssociatedToProjectConnection';
|
|
@@ -38009,6 +39228,20 @@ export declare type GraphStoreSimplifiedFocusAreaHasProjectInverseEdge = {
|
|
|
38009
39228
|
};
|
|
38010
39229
|
export declare type GraphStoreSimplifiedFocusAreaHasProjectInverseUnion = MercuryFocusArea;
|
|
38011
39230
|
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;
|
|
38012
39245
|
export declare type GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewConnection = HasPageInfo & HasTotal & {
|
|
38013
39246
|
__typename?: 'GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewConnection';
|
|
38014
39247
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewEdge>>>;
|
|
@@ -38137,6 +39370,19 @@ export declare type GraphStoreSimplifiedIncidentLinkedJswIssueInverseEdge = {
|
|
|
38137
39370
|
};
|
|
38138
39371
|
export declare type GraphStoreSimplifiedIncidentLinkedJswIssueInverseUnion = DevOpsOperationsIncidentDetails | JiraIssue;
|
|
38139
39372
|
export declare type GraphStoreSimplifiedIncidentLinkedJswIssueUnion = JiraIssue;
|
|
39373
|
+
export declare type GraphStoreSimplifiedIssueAssociatedBranchConnection = HasPageInfo & {
|
|
39374
|
+
__typename?: 'GraphStoreSimplifiedIssueAssociatedBranchConnection';
|
|
39375
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedBranchEdge>>>;
|
|
39376
|
+
pageInfo: PageInfo;
|
|
39377
|
+
};
|
|
39378
|
+
export declare type GraphStoreSimplifiedIssueAssociatedBranchEdge = {
|
|
39379
|
+
__typename?: 'GraphStoreSimplifiedIssueAssociatedBranchEdge';
|
|
39380
|
+
createdAt: Scalars['DateTime']['output'];
|
|
39381
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
39382
|
+
id: Scalars['ID']['output'];
|
|
39383
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
39384
|
+
node?: Maybe<GraphStoreSimplifiedIssueAssociatedBranchUnion>;
|
|
39385
|
+
};
|
|
38140
39386
|
export declare type GraphStoreSimplifiedIssueAssociatedBranchInverseConnection = HasPageInfo & {
|
|
38141
39387
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedBranchInverseConnection';
|
|
38142
39388
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedBranchInverseEdge>>>;
|
|
@@ -38151,6 +39397,7 @@ export declare type GraphStoreSimplifiedIssueAssociatedBranchInverseEdge = {
|
|
|
38151
39397
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedBranchInverseUnion>;
|
|
38152
39398
|
};
|
|
38153
39399
|
export declare type GraphStoreSimplifiedIssueAssociatedBranchInverseUnion = JiraIssue;
|
|
39400
|
+
export declare type GraphStoreSimplifiedIssueAssociatedBranchUnion = ExternalBranch;
|
|
38154
39401
|
export declare type GraphStoreSimplifiedIssueAssociatedBuildConnection = HasPageInfo & {
|
|
38155
39402
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedBuildConnection';
|
|
38156
39403
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedBuildEdge>>>;
|
|
@@ -38238,7 +39485,7 @@ export declare type GraphStoreSimplifiedIssueAssociatedDeploymentInverseEdge = {
|
|
|
38238
39485
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedDeploymentInverseUnion>;
|
|
38239
39486
|
};
|
|
38240
39487
|
export declare type GraphStoreSimplifiedIssueAssociatedDeploymentInverseUnion = JiraIssue;
|
|
38241
|
-
export declare type GraphStoreSimplifiedIssueAssociatedDeploymentUnion = DeploymentSummary;
|
|
39488
|
+
export declare type GraphStoreSimplifiedIssueAssociatedDeploymentUnion = DeploymentSummary | ExternalDeployment;
|
|
38242
39489
|
export declare type GraphStoreSimplifiedIssueAssociatedDesignConnection = HasPageInfo & {
|
|
38243
39490
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedDesignConnection';
|
|
38244
39491
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedDesignEdge>>>;
|
|
@@ -38351,6 +39598,19 @@ export declare type GraphStoreSimplifiedIssueAssociatedPrInverseEdge = {
|
|
|
38351
39598
|
};
|
|
38352
39599
|
export declare type GraphStoreSimplifiedIssueAssociatedPrInverseUnion = JiraIssue;
|
|
38353
39600
|
export declare type GraphStoreSimplifiedIssueAssociatedPrUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
39601
|
+
export declare type GraphStoreSimplifiedIssueAssociatedRemoteLinkConnection = HasPageInfo & {
|
|
39602
|
+
__typename?: 'GraphStoreSimplifiedIssueAssociatedRemoteLinkConnection';
|
|
39603
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedRemoteLinkEdge>>>;
|
|
39604
|
+
pageInfo: PageInfo;
|
|
39605
|
+
};
|
|
39606
|
+
export declare type GraphStoreSimplifiedIssueAssociatedRemoteLinkEdge = {
|
|
39607
|
+
__typename?: 'GraphStoreSimplifiedIssueAssociatedRemoteLinkEdge';
|
|
39608
|
+
createdAt: Scalars['DateTime']['output'];
|
|
39609
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
39610
|
+
id: Scalars['ID']['output'];
|
|
39611
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
39612
|
+
node?: Maybe<GraphStoreSimplifiedIssueAssociatedRemoteLinkUnion>;
|
|
39613
|
+
};
|
|
38354
39614
|
export declare type GraphStoreSimplifiedIssueAssociatedRemoteLinkInverseConnection = HasPageInfo & {
|
|
38355
39615
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedRemoteLinkInverseConnection';
|
|
38356
39616
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedRemoteLinkInverseEdge>>>;
|
|
@@ -38365,6 +39625,7 @@ export declare type GraphStoreSimplifiedIssueAssociatedRemoteLinkInverseEdge = {
|
|
|
38365
39625
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedRemoteLinkInverseUnion>;
|
|
38366
39626
|
};
|
|
38367
39627
|
export declare type GraphStoreSimplifiedIssueAssociatedRemoteLinkInverseUnion = JiraIssue;
|
|
39628
|
+
export declare type GraphStoreSimplifiedIssueAssociatedRemoteLinkUnion = ExternalRemoteLink;
|
|
38368
39629
|
export declare type GraphStoreSimplifiedIssueChangesComponentConnection = HasPageInfo & HasTotal & {
|
|
38369
39630
|
__typename?: 'GraphStoreSimplifiedIssueChangesComponentConnection';
|
|
38370
39631
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueChangesComponentEdge>>>;
|
|
@@ -38470,7 +39731,7 @@ export declare type GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentInvers
|
|
|
38470
39731
|
node?: Maybe<GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentInverseUnion>;
|
|
38471
39732
|
};
|
|
38472
39733
|
export declare type GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentInverseUnion = JiraIssue;
|
|
38473
|
-
export declare type GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentUnion = DeploymentSummary;
|
|
39734
|
+
export declare type GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentUnion = DeploymentSummary | ExternalDeployment;
|
|
38474
39735
|
export declare type GraphStoreSimplifiedIssueRecursiveAssociatedFeatureFlagConnection = HasPageInfo & HasTotal & {
|
|
38475
39736
|
__typename?: 'GraphStoreSimplifiedIssueRecursiveAssociatedFeatureFlagConnection';
|
|
38476
39737
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueRecursiveAssociatedFeatureFlagEdge>>>;
|
|
@@ -38885,6 +40146,34 @@ export declare type GraphStoreSimplifiedOperationsContainerImprovedByActionItemI
|
|
|
38885
40146
|
};
|
|
38886
40147
|
export declare type GraphStoreSimplifiedOperationsContainerImprovedByActionItemInverseUnion = DevOpsService;
|
|
38887
40148
|
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;
|
|
38888
40177
|
export declare type GraphStoreSimplifiedParentDocumentHasChildDocumentConnection = HasPageInfo & {
|
|
38889
40178
|
__typename?: 'GraphStoreSimplifiedParentDocumentHasChildDocumentConnection';
|
|
38890
40179
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedParentDocumentHasChildDocumentEdge>>>;
|
|
@@ -38941,6 +40230,62 @@ export declare type GraphStoreSimplifiedParentIssueHasChildIssueInverseEdge = {
|
|
|
38941
40230
|
};
|
|
38942
40231
|
export declare type GraphStoreSimplifiedParentIssueHasChildIssueInverseUnion = JiraIssue;
|
|
38943
40232
|
export declare type GraphStoreSimplifiedParentIssueHasChildIssueUnion = JiraIssue;
|
|
40233
|
+
export declare type GraphStoreSimplifiedParentMessageHasChildMessageConnection = HasPageInfo & {
|
|
40234
|
+
__typename?: 'GraphStoreSimplifiedParentMessageHasChildMessageConnection';
|
|
40235
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedParentMessageHasChildMessageEdge>>>;
|
|
40236
|
+
pageInfo: PageInfo;
|
|
40237
|
+
};
|
|
40238
|
+
export declare type GraphStoreSimplifiedParentMessageHasChildMessageEdge = {
|
|
40239
|
+
__typename?: 'GraphStoreSimplifiedParentMessageHasChildMessageEdge';
|
|
40240
|
+
createdAt: Scalars['DateTime']['output'];
|
|
40241
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
40242
|
+
id: Scalars['ID']['output'];
|
|
40243
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
40244
|
+
node?: Maybe<GraphStoreSimplifiedParentMessageHasChildMessageUnion>;
|
|
40245
|
+
};
|
|
40246
|
+
export declare type GraphStoreSimplifiedParentMessageHasChildMessageInverseConnection = HasPageInfo & {
|
|
40247
|
+
__typename?: 'GraphStoreSimplifiedParentMessageHasChildMessageInverseConnection';
|
|
40248
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedParentMessageHasChildMessageInverseEdge>>>;
|
|
40249
|
+
pageInfo: PageInfo;
|
|
40250
|
+
};
|
|
40251
|
+
export declare type GraphStoreSimplifiedParentMessageHasChildMessageInverseEdge = {
|
|
40252
|
+
__typename?: 'GraphStoreSimplifiedParentMessageHasChildMessageInverseEdge';
|
|
40253
|
+
createdAt: Scalars['DateTime']['output'];
|
|
40254
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
40255
|
+
id: Scalars['ID']['output'];
|
|
40256
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
40257
|
+
node?: Maybe<GraphStoreSimplifiedParentMessageHasChildMessageInverseUnion>;
|
|
40258
|
+
};
|
|
40259
|
+
export declare type GraphStoreSimplifiedParentMessageHasChildMessageInverseUnion = ExternalMessage;
|
|
40260
|
+
export declare type GraphStoreSimplifiedParentMessageHasChildMessageUnion = ExternalMessage;
|
|
40261
|
+
export declare type GraphStoreSimplifiedPositionAllocatedToFocusAreaConnection = HasPageInfo & {
|
|
40262
|
+
__typename?: 'GraphStoreSimplifiedPositionAllocatedToFocusAreaConnection';
|
|
40263
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedPositionAllocatedToFocusAreaEdge>>>;
|
|
40264
|
+
pageInfo: PageInfo;
|
|
40265
|
+
};
|
|
40266
|
+
export declare type GraphStoreSimplifiedPositionAllocatedToFocusAreaEdge = {
|
|
40267
|
+
__typename?: 'GraphStoreSimplifiedPositionAllocatedToFocusAreaEdge';
|
|
40268
|
+
createdAt: Scalars['DateTime']['output'];
|
|
40269
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
40270
|
+
id: Scalars['ID']['output'];
|
|
40271
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
40272
|
+
node?: Maybe<GraphStoreSimplifiedPositionAllocatedToFocusAreaUnion>;
|
|
40273
|
+
};
|
|
40274
|
+
export declare type GraphStoreSimplifiedPositionAllocatedToFocusAreaInverseConnection = HasPageInfo & {
|
|
40275
|
+
__typename?: 'GraphStoreSimplifiedPositionAllocatedToFocusAreaInverseConnection';
|
|
40276
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedPositionAllocatedToFocusAreaInverseEdge>>>;
|
|
40277
|
+
pageInfo: PageInfo;
|
|
40278
|
+
};
|
|
40279
|
+
export declare type GraphStoreSimplifiedPositionAllocatedToFocusAreaInverseEdge = {
|
|
40280
|
+
__typename?: 'GraphStoreSimplifiedPositionAllocatedToFocusAreaInverseEdge';
|
|
40281
|
+
createdAt: Scalars['DateTime']['output'];
|
|
40282
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
40283
|
+
id: Scalars['ID']['output'];
|
|
40284
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
40285
|
+
node?: Maybe<GraphStoreSimplifiedPositionAllocatedToFocusAreaInverseUnion>;
|
|
40286
|
+
};
|
|
40287
|
+
export declare type GraphStoreSimplifiedPositionAllocatedToFocusAreaInverseUnion = RadarPosition;
|
|
40288
|
+
export declare type GraphStoreSimplifiedPositionAllocatedToFocusAreaUnion = MercuryFocusArea;
|
|
38944
40289
|
export declare type GraphStoreSimplifiedPrInRepoConnection = HasPageInfo & {
|
|
38945
40290
|
__typename?: 'GraphStoreSimplifiedPrInRepoConnection';
|
|
38946
40291
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedPrInRepoEdge>>>;
|
|
@@ -38969,6 +40314,21 @@ export declare type GraphStoreSimplifiedPrInRepoInverseEdge = {
|
|
|
38969
40314
|
};
|
|
38970
40315
|
export declare type GraphStoreSimplifiedPrInRepoInverseUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
38971
40316
|
export declare type GraphStoreSimplifiedPrInRepoUnion = DevOpsRepository | ExternalRepository;
|
|
40317
|
+
export declare type GraphStoreSimplifiedProjectAssociatedBranchConnection = HasPageInfo & HasTotal & {
|
|
40318
|
+
__typename?: 'GraphStoreSimplifiedProjectAssociatedBranchConnection';
|
|
40319
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectAssociatedBranchEdge>>>;
|
|
40320
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
40321
|
+
pageInfo: PageInfo;
|
|
40322
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
40323
|
+
};
|
|
40324
|
+
export declare type GraphStoreSimplifiedProjectAssociatedBranchEdge = {
|
|
40325
|
+
__typename?: 'GraphStoreSimplifiedProjectAssociatedBranchEdge';
|
|
40326
|
+
createdAt: Scalars['DateTime']['output'];
|
|
40327
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
40328
|
+
id: Scalars['ID']['output'];
|
|
40329
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
40330
|
+
node?: Maybe<GraphStoreSimplifiedProjectAssociatedBranchUnion>;
|
|
40331
|
+
};
|
|
38972
40332
|
export declare type GraphStoreSimplifiedProjectAssociatedBranchInverseConnection = HasPageInfo & HasTotal & {
|
|
38973
40333
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedBranchInverseConnection';
|
|
38974
40334
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectAssociatedBranchInverseEdge>>>;
|
|
@@ -38985,6 +40345,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedBranchInverseEdge = {
|
|
|
38985
40345
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedBranchInverseUnion>;
|
|
38986
40346
|
};
|
|
38987
40347
|
export declare type GraphStoreSimplifiedProjectAssociatedBranchInverseUnion = JiraProject;
|
|
40348
|
+
export declare type GraphStoreSimplifiedProjectAssociatedBranchUnion = ExternalBranch;
|
|
38988
40349
|
export declare type GraphStoreSimplifiedProjectAssociatedBuildConnection = HasPageInfo & HasTotal & {
|
|
38989
40350
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedBuildConnection';
|
|
38990
40351
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectAssociatedBuildEdge>>>;
|
|
@@ -39048,7 +40409,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedDeploymentInverseEdge =
|
|
|
39048
40409
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedDeploymentInverseUnion>;
|
|
39049
40410
|
};
|
|
39050
40411
|
export declare type GraphStoreSimplifiedProjectAssociatedDeploymentInverseUnion = JiraProject;
|
|
39051
|
-
export declare type GraphStoreSimplifiedProjectAssociatedDeploymentUnion = DeploymentSummary;
|
|
40412
|
+
export declare type GraphStoreSimplifiedProjectAssociatedDeploymentUnion = DeploymentSummary | ExternalDeployment;
|
|
39052
40413
|
export declare type GraphStoreSimplifiedProjectAssociatedFeatureFlagConnection = HasPageInfo & HasTotal & {
|
|
39053
40414
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedFeatureFlagConnection';
|
|
39054
40415
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectAssociatedFeatureFlagEdge>>>;
|
|
@@ -39714,7 +41075,35 @@ export declare type GraphStoreSimplifiedServiceAssociatedDeploymentInverseEdge =
|
|
|
39714
41075
|
node?: Maybe<GraphStoreSimplifiedServiceAssociatedDeploymentInverseUnion>;
|
|
39715
41076
|
};
|
|
39716
41077
|
export declare type GraphStoreSimplifiedServiceAssociatedDeploymentInverseUnion = DevOpsService;
|
|
39717
|
-
export declare type GraphStoreSimplifiedServiceAssociatedDeploymentUnion = DeploymentSummary;
|
|
41078
|
+
export declare type GraphStoreSimplifiedServiceAssociatedDeploymentUnion = DeploymentSummary | ExternalDeployment;
|
|
41079
|
+
export declare type GraphStoreSimplifiedServiceAssociatedRemoteLinkConnection = HasPageInfo & {
|
|
41080
|
+
__typename?: 'GraphStoreSimplifiedServiceAssociatedRemoteLinkConnection';
|
|
41081
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedServiceAssociatedRemoteLinkEdge>>>;
|
|
41082
|
+
pageInfo: PageInfo;
|
|
41083
|
+
};
|
|
41084
|
+
export declare type GraphStoreSimplifiedServiceAssociatedRemoteLinkEdge = {
|
|
41085
|
+
__typename?: 'GraphStoreSimplifiedServiceAssociatedRemoteLinkEdge';
|
|
41086
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41087
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41088
|
+
id: Scalars['ID']['output'];
|
|
41089
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41090
|
+
node?: Maybe<GraphStoreSimplifiedServiceAssociatedRemoteLinkUnion>;
|
|
41091
|
+
};
|
|
41092
|
+
export declare type GraphStoreSimplifiedServiceAssociatedRemoteLinkInverseConnection = HasPageInfo & {
|
|
41093
|
+
__typename?: 'GraphStoreSimplifiedServiceAssociatedRemoteLinkInverseConnection';
|
|
41094
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedServiceAssociatedRemoteLinkInverseEdge>>>;
|
|
41095
|
+
pageInfo: PageInfo;
|
|
41096
|
+
};
|
|
41097
|
+
export declare type GraphStoreSimplifiedServiceAssociatedRemoteLinkInverseEdge = {
|
|
41098
|
+
__typename?: 'GraphStoreSimplifiedServiceAssociatedRemoteLinkInverseEdge';
|
|
41099
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41100
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41101
|
+
id: Scalars['ID']['output'];
|
|
41102
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41103
|
+
node?: Maybe<GraphStoreSimplifiedServiceAssociatedRemoteLinkInverseUnion>;
|
|
41104
|
+
};
|
|
41105
|
+
export declare type GraphStoreSimplifiedServiceAssociatedRemoteLinkInverseUnion = DevOpsService;
|
|
41106
|
+
export declare type GraphStoreSimplifiedServiceAssociatedRemoteLinkUnion = ExternalRemoteLink;
|
|
39718
41107
|
export declare type GraphStoreSimplifiedServiceLinkedIncidentConnection = HasPageInfo & HasTotal & {
|
|
39719
41108
|
__typename?: 'GraphStoreSimplifiedServiceLinkedIncidentConnection';
|
|
39720
41109
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedServiceLinkedIncidentEdge>>>;
|
|
@@ -39926,7 +41315,7 @@ export declare type GraphStoreSimplifiedSprintAssociatedDeploymentEdge = {
|
|
|
39926
41315
|
lastUpdated: Scalars['DateTime']['output'];
|
|
39927
41316
|
node?: Maybe<GraphStoreSimplifiedSprintAssociatedDeploymentUnion>;
|
|
39928
41317
|
};
|
|
39929
|
-
export declare type GraphStoreSimplifiedSprintAssociatedDeploymentUnion = DeploymentSummary;
|
|
41318
|
+
export declare type GraphStoreSimplifiedSprintAssociatedDeploymentUnion = DeploymentSummary | ExternalDeployment;
|
|
39930
41319
|
export declare type GraphStoreSimplifiedSprintAssociatedFeatureFlagConnection = HasPageInfo & HasTotal & {
|
|
39931
41320
|
__typename?: 'GraphStoreSimplifiedSprintAssociatedFeatureFlagConnection';
|
|
39932
41321
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedSprintAssociatedFeatureFlagEdge>>>;
|
|
@@ -40235,6 +41624,62 @@ export declare type GraphStoreSimplifiedUserAssignedIncidentInverseEdge = {
|
|
|
40235
41624
|
};
|
|
40236
41625
|
export declare type GraphStoreSimplifiedUserAssignedIncidentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
40237
41626
|
export declare type GraphStoreSimplifiedUserAssignedIncidentUnion = JiraIssue;
|
|
41627
|
+
export declare type GraphStoreSimplifiedUserAttendedCalendarEventConnection = HasPageInfo & {
|
|
41628
|
+
__typename?: 'GraphStoreSimplifiedUserAttendedCalendarEventConnection';
|
|
41629
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserAttendedCalendarEventEdge>>>;
|
|
41630
|
+
pageInfo: PageInfo;
|
|
41631
|
+
};
|
|
41632
|
+
export declare type GraphStoreSimplifiedUserAttendedCalendarEventEdge = {
|
|
41633
|
+
__typename?: 'GraphStoreSimplifiedUserAttendedCalendarEventEdge';
|
|
41634
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41635
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41636
|
+
id: Scalars['ID']['output'];
|
|
41637
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41638
|
+
node?: Maybe<GraphStoreSimplifiedUserAttendedCalendarEventUnion>;
|
|
41639
|
+
};
|
|
41640
|
+
export declare type GraphStoreSimplifiedUserAttendedCalendarEventInverseConnection = HasPageInfo & {
|
|
41641
|
+
__typename?: 'GraphStoreSimplifiedUserAttendedCalendarEventInverseConnection';
|
|
41642
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserAttendedCalendarEventInverseEdge>>>;
|
|
41643
|
+
pageInfo: PageInfo;
|
|
41644
|
+
};
|
|
41645
|
+
export declare type GraphStoreSimplifiedUserAttendedCalendarEventInverseEdge = {
|
|
41646
|
+
__typename?: 'GraphStoreSimplifiedUserAttendedCalendarEventInverseEdge';
|
|
41647
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41648
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41649
|
+
id: Scalars['ID']['output'];
|
|
41650
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41651
|
+
node?: Maybe<GraphStoreSimplifiedUserAttendedCalendarEventInverseUnion>;
|
|
41652
|
+
};
|
|
41653
|
+
export declare type GraphStoreSimplifiedUserAttendedCalendarEventInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
41654
|
+
export declare type GraphStoreSimplifiedUserAttendedCalendarEventUnion = ExternalCalendarEvent;
|
|
41655
|
+
export declare type GraphStoreSimplifiedUserAuthoredCommitConnection = HasPageInfo & {
|
|
41656
|
+
__typename?: 'GraphStoreSimplifiedUserAuthoredCommitConnection';
|
|
41657
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserAuthoredCommitEdge>>>;
|
|
41658
|
+
pageInfo: PageInfo;
|
|
41659
|
+
};
|
|
41660
|
+
export declare type GraphStoreSimplifiedUserAuthoredCommitEdge = {
|
|
41661
|
+
__typename?: 'GraphStoreSimplifiedUserAuthoredCommitEdge';
|
|
41662
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41663
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41664
|
+
id: Scalars['ID']['output'];
|
|
41665
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41666
|
+
node?: Maybe<GraphStoreSimplifiedUserAuthoredCommitUnion>;
|
|
41667
|
+
};
|
|
41668
|
+
export declare type GraphStoreSimplifiedUserAuthoredCommitInverseConnection = HasPageInfo & {
|
|
41669
|
+
__typename?: 'GraphStoreSimplifiedUserAuthoredCommitInverseConnection';
|
|
41670
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserAuthoredCommitInverseEdge>>>;
|
|
41671
|
+
pageInfo: PageInfo;
|
|
41672
|
+
};
|
|
41673
|
+
export declare type GraphStoreSimplifiedUserAuthoredCommitInverseEdge = {
|
|
41674
|
+
__typename?: 'GraphStoreSimplifiedUserAuthoredCommitInverseEdge';
|
|
41675
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41676
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41677
|
+
id: Scalars['ID']['output'];
|
|
41678
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41679
|
+
node?: Maybe<GraphStoreSimplifiedUserAuthoredCommitInverseUnion>;
|
|
41680
|
+
};
|
|
41681
|
+
export declare type GraphStoreSimplifiedUserAuthoredCommitInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
41682
|
+
export declare type GraphStoreSimplifiedUserAuthoredCommitUnion = ExternalCommit;
|
|
40238
41683
|
export declare type GraphStoreSimplifiedUserAuthoredPrConnection = HasPageInfo & {
|
|
40239
41684
|
__typename?: 'GraphStoreSimplifiedUserAuthoredPrConnection';
|
|
40240
41685
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserAuthoredPrEdge>>>;
|
|
@@ -40263,6 +41708,230 @@ export declare type GraphStoreSimplifiedUserAuthoredPrInverseEdge = {
|
|
|
40263
41708
|
};
|
|
40264
41709
|
export declare type GraphStoreSimplifiedUserAuthoredPrInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
40265
41710
|
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
|
+
export declare type GraphStoreSimplifiedUserCreatedBranchConnection = HasPageInfo & {
|
|
41880
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedBranchConnection';
|
|
41881
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedBranchEdge>>>;
|
|
41882
|
+
pageInfo: PageInfo;
|
|
41883
|
+
};
|
|
41884
|
+
export declare type GraphStoreSimplifiedUserCreatedBranchEdge = {
|
|
41885
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedBranchEdge';
|
|
41886
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41887
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41888
|
+
id: Scalars['ID']['output'];
|
|
41889
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41890
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedBranchUnion>;
|
|
41891
|
+
};
|
|
41892
|
+
export declare type GraphStoreSimplifiedUserCreatedBranchInverseConnection = HasPageInfo & {
|
|
41893
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedBranchInverseConnection';
|
|
41894
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedBranchInverseEdge>>>;
|
|
41895
|
+
pageInfo: PageInfo;
|
|
41896
|
+
};
|
|
41897
|
+
export declare type GraphStoreSimplifiedUserCreatedBranchInverseEdge = {
|
|
41898
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedBranchInverseEdge';
|
|
41899
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41900
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41901
|
+
id: Scalars['ID']['output'];
|
|
41902
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41903
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedBranchInverseUnion>;
|
|
41904
|
+
};
|
|
41905
|
+
export declare type GraphStoreSimplifiedUserCreatedBranchInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
41906
|
+
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;
|
|
40266
41935
|
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostConnection = HasPageInfo & {
|
|
40267
41936
|
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceBlogpostConnection';
|
|
40268
41937
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostEdge>>>;
|
|
@@ -40291,6 +41960,34 @@ export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostInverseEdge
|
|
|
40291
41960
|
};
|
|
40292
41961
|
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
40293
41962
|
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;
|
|
40294
41991
|
export declare type GraphStoreSimplifiedUserCreatedConfluencePageConnection = HasPageInfo & {
|
|
40295
41992
|
__typename?: 'GraphStoreSimplifiedUserCreatedConfluencePageConnection';
|
|
40296
41993
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluencePageEdge>>>;
|
|
@@ -40319,6 +42016,314 @@ export declare type GraphStoreSimplifiedUserCreatedConfluencePageInverseEdge = {
|
|
|
40319
42016
|
};
|
|
40320
42017
|
export declare type GraphStoreSimplifiedUserCreatedConfluencePageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
40321
42018
|
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
|
+
export declare type GraphStoreSimplifiedUserCreatedLoomVideoConnection = HasPageInfo & {
|
|
42104
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedLoomVideoConnection';
|
|
42105
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedLoomVideoEdge>>>;
|
|
42106
|
+
pageInfo: PageInfo;
|
|
42107
|
+
};
|
|
42108
|
+
export declare type GraphStoreSimplifiedUserCreatedLoomVideoEdge = {
|
|
42109
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedLoomVideoEdge';
|
|
42110
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42111
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42112
|
+
id: Scalars['ID']['output'];
|
|
42113
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42114
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedLoomVideoUnion>;
|
|
42115
|
+
};
|
|
42116
|
+
export declare type GraphStoreSimplifiedUserCreatedLoomVideoInverseConnection = HasPageInfo & {
|
|
42117
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedLoomVideoInverseConnection';
|
|
42118
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedLoomVideoInverseEdge>>>;
|
|
42119
|
+
pageInfo: PageInfo;
|
|
42120
|
+
};
|
|
42121
|
+
export declare type GraphStoreSimplifiedUserCreatedLoomVideoInverseEdge = {
|
|
42122
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedLoomVideoInverseEdge';
|
|
42123
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42124
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42125
|
+
id: Scalars['ID']['output'];
|
|
42126
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42127
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedLoomVideoInverseUnion>;
|
|
42128
|
+
};
|
|
42129
|
+
export declare type GraphStoreSimplifiedUserCreatedLoomVideoInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
42130
|
+
export declare type GraphStoreSimplifiedUserCreatedLoomVideoUnion = ExternalVideo;
|
|
42131
|
+
export declare type GraphStoreSimplifiedUserCreatedMessageConnection = HasPageInfo & {
|
|
42132
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedMessageConnection';
|
|
42133
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedMessageEdge>>>;
|
|
42134
|
+
pageInfo: PageInfo;
|
|
42135
|
+
};
|
|
42136
|
+
export declare type GraphStoreSimplifiedUserCreatedMessageEdge = {
|
|
42137
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedMessageEdge';
|
|
42138
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42139
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42140
|
+
id: Scalars['ID']['output'];
|
|
42141
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42142
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedMessageUnion>;
|
|
42143
|
+
};
|
|
42144
|
+
export declare type GraphStoreSimplifiedUserCreatedMessageInverseConnection = HasPageInfo & {
|
|
42145
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedMessageInverseConnection';
|
|
42146
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedMessageInverseEdge>>>;
|
|
42147
|
+
pageInfo: PageInfo;
|
|
42148
|
+
};
|
|
42149
|
+
export declare type GraphStoreSimplifiedUserCreatedMessageInverseEdge = {
|
|
42150
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedMessageInverseEdge';
|
|
42151
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42152
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42153
|
+
id: Scalars['ID']['output'];
|
|
42154
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42155
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedMessageInverseUnion>;
|
|
42156
|
+
};
|
|
42157
|
+
export declare type GraphStoreSimplifiedUserCreatedMessageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
42158
|
+
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
|
+
export declare type GraphStoreSimplifiedUserCreatedRepositoryConnection = HasPageInfo & {
|
|
42188
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedRepositoryConnection';
|
|
42189
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedRepositoryEdge>>>;
|
|
42190
|
+
pageInfo: PageInfo;
|
|
42191
|
+
};
|
|
42192
|
+
export declare type GraphStoreSimplifiedUserCreatedRepositoryEdge = {
|
|
42193
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedRepositoryEdge';
|
|
42194
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42195
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42196
|
+
id: Scalars['ID']['output'];
|
|
42197
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42198
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedRepositoryUnion>;
|
|
42199
|
+
};
|
|
42200
|
+
export declare type GraphStoreSimplifiedUserCreatedRepositoryInverseConnection = HasPageInfo & {
|
|
42201
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedRepositoryInverseConnection';
|
|
42202
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedRepositoryInverseEdge>>>;
|
|
42203
|
+
pageInfo: PageInfo;
|
|
42204
|
+
};
|
|
42205
|
+
export declare type GraphStoreSimplifiedUserCreatedRepositoryInverseEdge = {
|
|
42206
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedRepositoryInverseEdge';
|
|
42207
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42208
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42209
|
+
id: Scalars['ID']['output'];
|
|
42210
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42211
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedRepositoryInverseUnion>;
|
|
42212
|
+
};
|
|
42213
|
+
export declare type GraphStoreSimplifiedUserCreatedRepositoryInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
42214
|
+
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;
|
|
40322
42327
|
export declare type GraphStoreSimplifiedUserHasRelevantProjectConnection = HasPageInfo & HasTotal & {
|
|
40323
42328
|
__typename?: 'GraphStoreSimplifiedUserHasRelevantProjectConnection';
|
|
40324
42329
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserHasRelevantProjectEdge>>>;
|
|
@@ -40407,6 +42412,62 @@ export declare type GraphStoreSimplifiedUserIsInTeamInverseEdge = {
|
|
|
40407
42412
|
};
|
|
40408
42413
|
export declare type GraphStoreSimplifiedUserIsInTeamInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
40409
42414
|
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
|
+
export declare type GraphStoreSimplifiedUserMemberOfConversationConnection = HasPageInfo & {
|
|
42444
|
+
__typename?: 'GraphStoreSimplifiedUserMemberOfConversationConnection';
|
|
42445
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserMemberOfConversationEdge>>>;
|
|
42446
|
+
pageInfo: PageInfo;
|
|
42447
|
+
};
|
|
42448
|
+
export declare type GraphStoreSimplifiedUserMemberOfConversationEdge = {
|
|
42449
|
+
__typename?: 'GraphStoreSimplifiedUserMemberOfConversationEdge';
|
|
42450
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42451
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42452
|
+
id: Scalars['ID']['output'];
|
|
42453
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42454
|
+
node?: Maybe<GraphStoreSimplifiedUserMemberOfConversationUnion>;
|
|
42455
|
+
};
|
|
42456
|
+
export declare type GraphStoreSimplifiedUserMemberOfConversationInverseConnection = HasPageInfo & {
|
|
42457
|
+
__typename?: 'GraphStoreSimplifiedUserMemberOfConversationInverseConnection';
|
|
42458
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserMemberOfConversationInverseEdge>>>;
|
|
42459
|
+
pageInfo: PageInfo;
|
|
42460
|
+
};
|
|
42461
|
+
export declare type GraphStoreSimplifiedUserMemberOfConversationInverseEdge = {
|
|
42462
|
+
__typename?: 'GraphStoreSimplifiedUserMemberOfConversationInverseEdge';
|
|
42463
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42464
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42465
|
+
id: Scalars['ID']['output'];
|
|
42466
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42467
|
+
node?: Maybe<GraphStoreSimplifiedUserMemberOfConversationInverseUnion>;
|
|
42468
|
+
};
|
|
42469
|
+
export declare type GraphStoreSimplifiedUserMemberOfConversationInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
42470
|
+
export declare type GraphStoreSimplifiedUserMemberOfConversationUnion = ExternalConversation;
|
|
40410
42471
|
export declare type GraphStoreSimplifiedUserMergedPullRequestConnection = HasPageInfo & {
|
|
40411
42472
|
__typename?: 'GraphStoreSimplifiedUserMergedPullRequestConnection';
|
|
40412
42473
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserMergedPullRequestEdge>>>;
|
|
@@ -40435,6 +42496,146 @@ export declare type GraphStoreSimplifiedUserMergedPullRequestInverseEdge = {
|
|
|
40435
42496
|
};
|
|
40436
42497
|
export declare type GraphStoreSimplifiedUserMergedPullRequestInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
40437
42498
|
export declare type GraphStoreSimplifiedUserMergedPullRequestUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
42499
|
+
export declare type GraphStoreSimplifiedUserOwnedBranchConnection = HasPageInfo & {
|
|
42500
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedBranchConnection';
|
|
42501
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnedBranchEdge>>>;
|
|
42502
|
+
pageInfo: PageInfo;
|
|
42503
|
+
};
|
|
42504
|
+
export declare type GraphStoreSimplifiedUserOwnedBranchEdge = {
|
|
42505
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedBranchEdge';
|
|
42506
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42507
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42508
|
+
id: Scalars['ID']['output'];
|
|
42509
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42510
|
+
node?: Maybe<GraphStoreSimplifiedUserOwnedBranchUnion>;
|
|
42511
|
+
};
|
|
42512
|
+
export declare type GraphStoreSimplifiedUserOwnedBranchInverseConnection = HasPageInfo & {
|
|
42513
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedBranchInverseConnection';
|
|
42514
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnedBranchInverseEdge>>>;
|
|
42515
|
+
pageInfo: PageInfo;
|
|
42516
|
+
};
|
|
42517
|
+
export declare type GraphStoreSimplifiedUserOwnedBranchInverseEdge = {
|
|
42518
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedBranchInverseEdge';
|
|
42519
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42520
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42521
|
+
id: Scalars['ID']['output'];
|
|
42522
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42523
|
+
node?: Maybe<GraphStoreSimplifiedUserOwnedBranchInverseUnion>;
|
|
42524
|
+
};
|
|
42525
|
+
export declare type GraphStoreSimplifiedUserOwnedBranchInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
42526
|
+
export declare type GraphStoreSimplifiedUserOwnedBranchUnion = ExternalBranch;
|
|
42527
|
+
export declare type GraphStoreSimplifiedUserOwnedCalendarEventConnection = HasPageInfo & {
|
|
42528
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedCalendarEventConnection';
|
|
42529
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnedCalendarEventEdge>>>;
|
|
42530
|
+
pageInfo: PageInfo;
|
|
42531
|
+
};
|
|
42532
|
+
export declare type GraphStoreSimplifiedUserOwnedCalendarEventEdge = {
|
|
42533
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedCalendarEventEdge';
|
|
42534
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42535
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42536
|
+
id: Scalars['ID']['output'];
|
|
42537
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42538
|
+
node?: Maybe<GraphStoreSimplifiedUserOwnedCalendarEventUnion>;
|
|
42539
|
+
};
|
|
42540
|
+
export declare type GraphStoreSimplifiedUserOwnedCalendarEventInverseConnection = HasPageInfo & {
|
|
42541
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedCalendarEventInverseConnection';
|
|
42542
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnedCalendarEventInverseEdge>>>;
|
|
42543
|
+
pageInfo: PageInfo;
|
|
42544
|
+
};
|
|
42545
|
+
export declare type GraphStoreSimplifiedUserOwnedCalendarEventInverseEdge = {
|
|
42546
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedCalendarEventInverseEdge';
|
|
42547
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42548
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42549
|
+
id: Scalars['ID']['output'];
|
|
42550
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42551
|
+
node?: Maybe<GraphStoreSimplifiedUserOwnedCalendarEventInverseUnion>;
|
|
42552
|
+
};
|
|
42553
|
+
export declare type GraphStoreSimplifiedUserOwnedCalendarEventInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
42554
|
+
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
|
+
export declare type GraphStoreSimplifiedUserOwnedRemoteLinkConnection = HasPageInfo & {
|
|
42584
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedRemoteLinkConnection';
|
|
42585
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnedRemoteLinkEdge>>>;
|
|
42586
|
+
pageInfo: PageInfo;
|
|
42587
|
+
};
|
|
42588
|
+
export declare type GraphStoreSimplifiedUserOwnedRemoteLinkEdge = {
|
|
42589
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedRemoteLinkEdge';
|
|
42590
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42591
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42592
|
+
id: Scalars['ID']['output'];
|
|
42593
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42594
|
+
node?: Maybe<GraphStoreSimplifiedUserOwnedRemoteLinkUnion>;
|
|
42595
|
+
};
|
|
42596
|
+
export declare type GraphStoreSimplifiedUserOwnedRemoteLinkInverseConnection = HasPageInfo & {
|
|
42597
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedRemoteLinkInverseConnection';
|
|
42598
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnedRemoteLinkInverseEdge>>>;
|
|
42599
|
+
pageInfo: PageInfo;
|
|
42600
|
+
};
|
|
42601
|
+
export declare type GraphStoreSimplifiedUserOwnedRemoteLinkInverseEdge = {
|
|
42602
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedRemoteLinkInverseEdge';
|
|
42603
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42604
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42605
|
+
id: Scalars['ID']['output'];
|
|
42606
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42607
|
+
node?: Maybe<GraphStoreSimplifiedUserOwnedRemoteLinkInverseUnion>;
|
|
42608
|
+
};
|
|
42609
|
+
export declare type GraphStoreSimplifiedUserOwnedRemoteLinkInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
42610
|
+
export declare type GraphStoreSimplifiedUserOwnedRemoteLinkUnion = ExternalRemoteLink;
|
|
42611
|
+
export declare type GraphStoreSimplifiedUserOwnedRepositoryConnection = HasPageInfo & {
|
|
42612
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedRepositoryConnection';
|
|
42613
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnedRepositoryEdge>>>;
|
|
42614
|
+
pageInfo: PageInfo;
|
|
42615
|
+
};
|
|
42616
|
+
export declare type GraphStoreSimplifiedUserOwnedRepositoryEdge = {
|
|
42617
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedRepositoryEdge';
|
|
42618
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42619
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42620
|
+
id: Scalars['ID']['output'];
|
|
42621
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42622
|
+
node?: Maybe<GraphStoreSimplifiedUserOwnedRepositoryUnion>;
|
|
42623
|
+
};
|
|
42624
|
+
export declare type GraphStoreSimplifiedUserOwnedRepositoryInverseConnection = HasPageInfo & {
|
|
42625
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedRepositoryInverseConnection';
|
|
42626
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnedRepositoryInverseEdge>>>;
|
|
42627
|
+
pageInfo: PageInfo;
|
|
42628
|
+
};
|
|
42629
|
+
export declare type GraphStoreSimplifiedUserOwnedRepositoryInverseEdge = {
|
|
42630
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedRepositoryInverseEdge';
|
|
42631
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42632
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42633
|
+
id: Scalars['ID']['output'];
|
|
42634
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42635
|
+
node?: Maybe<GraphStoreSimplifiedUserOwnedRepositoryInverseUnion>;
|
|
42636
|
+
};
|
|
42637
|
+
export declare type GraphStoreSimplifiedUserOwnedRepositoryInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
42638
|
+
export declare type GraphStoreSimplifiedUserOwnedRepositoryUnion = ExternalRepository;
|
|
40438
42639
|
export declare type GraphStoreSimplifiedUserOwnsComponentConnection = HasPageInfo & HasTotal & {
|
|
40439
42640
|
__typename?: 'GraphStoreSimplifiedUserOwnsComponentConnection';
|
|
40440
42641
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnsComponentEdge>>>;
|
|
@@ -40551,6 +42752,90 @@ export declare type GraphStoreSimplifiedUserReviewsPrInverseEdge = {
|
|
|
40551
42752
|
};
|
|
40552
42753
|
export declare type GraphStoreSimplifiedUserReviewsPrInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
40553
42754
|
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
|
+
export declare type GraphStoreSimplifiedUserTriggeredDeploymentConnection = HasPageInfo & {
|
|
42812
|
+
__typename?: 'GraphStoreSimplifiedUserTriggeredDeploymentConnection';
|
|
42813
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTriggeredDeploymentEdge>>>;
|
|
42814
|
+
pageInfo: PageInfo;
|
|
42815
|
+
};
|
|
42816
|
+
export declare type GraphStoreSimplifiedUserTriggeredDeploymentEdge = {
|
|
42817
|
+
__typename?: 'GraphStoreSimplifiedUserTriggeredDeploymentEdge';
|
|
42818
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42819
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42820
|
+
id: Scalars['ID']['output'];
|
|
42821
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42822
|
+
node?: Maybe<GraphStoreSimplifiedUserTriggeredDeploymentUnion>;
|
|
42823
|
+
};
|
|
42824
|
+
export declare type GraphStoreSimplifiedUserTriggeredDeploymentInverseConnection = HasPageInfo & {
|
|
42825
|
+
__typename?: 'GraphStoreSimplifiedUserTriggeredDeploymentInverseConnection';
|
|
42826
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTriggeredDeploymentInverseEdge>>>;
|
|
42827
|
+
pageInfo: PageInfo;
|
|
42828
|
+
};
|
|
42829
|
+
export declare type GraphStoreSimplifiedUserTriggeredDeploymentInverseEdge = {
|
|
42830
|
+
__typename?: 'GraphStoreSimplifiedUserTriggeredDeploymentInverseEdge';
|
|
42831
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42832
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42833
|
+
id: Scalars['ID']['output'];
|
|
42834
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42835
|
+
node?: Maybe<GraphStoreSimplifiedUserTriggeredDeploymentInverseUnion>;
|
|
42836
|
+
};
|
|
42837
|
+
export declare type GraphStoreSimplifiedUserTriggeredDeploymentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
42838
|
+
export declare type GraphStoreSimplifiedUserTriggeredDeploymentUnion = DeploymentSummary | ExternalDeployment;
|
|
40554
42839
|
export declare type GraphStoreSimplifiedUserUpdatedConfluenceBlogpostConnection = HasPageInfo & {
|
|
40555
42840
|
__typename?: 'GraphStoreSimplifiedUserUpdatedConfluenceBlogpostConnection';
|
|
40556
42841
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostEdge>>>;
|
|
@@ -40607,6 +42892,62 @@ export declare type GraphStoreSimplifiedUserUpdatedConfluencePageInverseEdge = {
|
|
|
40607
42892
|
};
|
|
40608
42893
|
export declare type GraphStoreSimplifiedUserUpdatedConfluencePageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
40609
42894
|
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;
|
|
40610
42951
|
export declare type GraphStoreSimplifiedUserViewedAtlasGoalConnection = HasPageInfo & {
|
|
40611
42952
|
__typename?: 'GraphStoreSimplifiedUserViewedAtlasGoalConnection';
|
|
40612
42953
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedAtlasGoalEdge>>>;
|
|
@@ -40747,6 +43088,105 @@ export declare type GraphStoreSimplifiedUserViewedJiraIssueInverseEdge = {
|
|
|
40747
43088
|
};
|
|
40748
43089
|
export declare type GraphStoreSimplifiedUserViewedJiraIssueInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
40749
43090
|
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
|
+
export declare type GraphStoreSimplifiedVersionAssociatedBranchConnection = HasPageInfo & HasTotal & {
|
|
43176
|
+
__typename?: 'GraphStoreSimplifiedVersionAssociatedBranchConnection';
|
|
43177
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVersionAssociatedBranchEdge>>>;
|
|
43178
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
43179
|
+
pageInfo: PageInfo;
|
|
43180
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
43181
|
+
};
|
|
43182
|
+
export declare type GraphStoreSimplifiedVersionAssociatedBranchEdge = {
|
|
43183
|
+
__typename?: 'GraphStoreSimplifiedVersionAssociatedBranchEdge';
|
|
43184
|
+
createdAt: Scalars['DateTime']['output'];
|
|
43185
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
43186
|
+
id: Scalars['ID']['output'];
|
|
43187
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
43188
|
+
node?: Maybe<GraphStoreSimplifiedVersionAssociatedBranchUnion>;
|
|
43189
|
+
};
|
|
40750
43190
|
export declare type GraphStoreSimplifiedVersionAssociatedBranchInverseConnection = HasPageInfo & HasTotal & {
|
|
40751
43191
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedBranchInverseConnection';
|
|
40752
43192
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVersionAssociatedBranchInverseEdge>>>;
|
|
@@ -40763,6 +43203,7 @@ export declare type GraphStoreSimplifiedVersionAssociatedBranchInverseEdge = {
|
|
|
40763
43203
|
node?: Maybe<GraphStoreSimplifiedVersionAssociatedBranchInverseUnion>;
|
|
40764
43204
|
};
|
|
40765
43205
|
export declare type GraphStoreSimplifiedVersionAssociatedBranchInverseUnion = JiraVersion;
|
|
43206
|
+
export declare type GraphStoreSimplifiedVersionAssociatedBranchUnion = ExternalBranch;
|
|
40766
43207
|
export declare type GraphStoreSimplifiedVersionAssociatedBuildConnection = HasPageInfo & HasTotal & {
|
|
40767
43208
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedBuildConnection';
|
|
40768
43209
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVersionAssociatedBuildEdge>>>;
|
|
@@ -40858,7 +43299,7 @@ export declare type GraphStoreSimplifiedVersionAssociatedDeploymentInverseEdge =
|
|
|
40858
43299
|
node?: Maybe<GraphStoreSimplifiedVersionAssociatedDeploymentInverseUnion>;
|
|
40859
43300
|
};
|
|
40860
43301
|
export declare type GraphStoreSimplifiedVersionAssociatedDeploymentInverseUnion = JiraVersion;
|
|
40861
|
-
export declare type GraphStoreSimplifiedVersionAssociatedDeploymentUnion = DeploymentSummary;
|
|
43302
|
+
export declare type GraphStoreSimplifiedVersionAssociatedDeploymentUnion = DeploymentSummary | ExternalDeployment;
|
|
40862
43303
|
export declare type GraphStoreSimplifiedVersionAssociatedDesignConnection = HasPageInfo & HasTotal & {
|
|
40863
43304
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedDesignConnection';
|
|
40864
43305
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVersionAssociatedDesignEdge>>>;
|
|
@@ -40983,6 +43424,19 @@ export declare type GraphStoreSimplifiedVersionAssociatedPullRequestInverseEdge
|
|
|
40983
43424
|
};
|
|
40984
43425
|
export declare type GraphStoreSimplifiedVersionAssociatedPullRequestInverseUnion = JiraVersion;
|
|
40985
43426
|
export declare type GraphStoreSimplifiedVersionAssociatedPullRequestUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
43427
|
+
export declare type GraphStoreSimplifiedVersionAssociatedRemoteLinkConnection = HasPageInfo & {
|
|
43428
|
+
__typename?: 'GraphStoreSimplifiedVersionAssociatedRemoteLinkConnection';
|
|
43429
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVersionAssociatedRemoteLinkEdge>>>;
|
|
43430
|
+
pageInfo: PageInfo;
|
|
43431
|
+
};
|
|
43432
|
+
export declare type GraphStoreSimplifiedVersionAssociatedRemoteLinkEdge = {
|
|
43433
|
+
__typename?: 'GraphStoreSimplifiedVersionAssociatedRemoteLinkEdge';
|
|
43434
|
+
createdAt: Scalars['DateTime']['output'];
|
|
43435
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
43436
|
+
id: Scalars['ID']['output'];
|
|
43437
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
43438
|
+
node?: Maybe<GraphStoreSimplifiedVersionAssociatedRemoteLinkUnion>;
|
|
43439
|
+
};
|
|
40986
43440
|
export declare type GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseConnection = HasPageInfo & {
|
|
40987
43441
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseConnection';
|
|
40988
43442
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseEdge>>>;
|
|
@@ -40997,6 +43451,7 @@ export declare type GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseEdge =
|
|
|
40997
43451
|
node?: Maybe<GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseUnion>;
|
|
40998
43452
|
};
|
|
40999
43453
|
export declare type GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseUnion = JiraVersion;
|
|
43454
|
+
export declare type GraphStoreSimplifiedVersionAssociatedRemoteLinkUnion = ExternalRemoteLink;
|
|
41000
43455
|
export declare type GraphStoreSimplifiedVersionUserAssociatedFeatureFlagConnection = HasPageInfo & HasTotal & {
|
|
41001
43456
|
__typename?: 'GraphStoreSimplifiedVersionUserAssociatedFeatureFlagConnection';
|
|
41002
43457
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVersionUserAssociatedFeatureFlagEdge>>>;
|
|
@@ -41428,15 +43883,81 @@ export declare type GraphStoreTestPerfhammerRelationshipSortInput = {
|
|
|
41428
43883
|
export declare type GraphStoreUserAssignedIncidentSortInput = {
|
|
41429
43884
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41430
43885
|
};
|
|
43886
|
+
export declare type GraphStoreUserAttendedCalendarEventSortInput = {
|
|
43887
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43888
|
+
};
|
|
43889
|
+
export declare type GraphStoreUserAuthoredCommitSortInput = {
|
|
43890
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43891
|
+
};
|
|
41431
43892
|
export declare type GraphStoreUserAuthoredPrSortInput = {
|
|
41432
43893
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41433
43894
|
};
|
|
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
|
+
export declare type GraphStoreUserCreatedBranchSortInput = {
|
|
43914
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43915
|
+
};
|
|
43916
|
+
export declare type GraphStoreUserCreatedCalendarEventSortInput = {
|
|
43917
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43918
|
+
};
|
|
41434
43919
|
export declare type GraphStoreUserCreatedConfluenceBlogpostSortInput = {
|
|
41435
43920
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41436
43921
|
};
|
|
43922
|
+
export declare type GraphStoreUserCreatedConfluenceDatabaseSortInput = {
|
|
43923
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43924
|
+
};
|
|
41437
43925
|
export declare type GraphStoreUserCreatedConfluencePageSortInput = {
|
|
41438
43926
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41439
43927
|
};
|
|
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
|
+
export declare type GraphStoreUserCreatedLoomVideoSortInput = {
|
|
43938
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43939
|
+
};
|
|
43940
|
+
export declare type GraphStoreUserCreatedMessageSortInput = {
|
|
43941
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43942
|
+
};
|
|
43943
|
+
export declare type GraphStoreUserCreatedRemoteLinkSortInput = {
|
|
43944
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43945
|
+
};
|
|
43946
|
+
export declare type GraphStoreUserCreatedRepositorySortInput = {
|
|
43947
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43948
|
+
};
|
|
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
|
+
};
|
|
41440
43961
|
export declare type GraphStoreUserHasRelevantProjectSortInput = {
|
|
41441
43962
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
41442
43963
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -41449,9 +43970,30 @@ export declare type GraphStoreUserHasTopProjectSortInput = {
|
|
|
41449
43970
|
export declare type GraphStoreUserIsInTeamSortInput = {
|
|
41450
43971
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41451
43972
|
};
|
|
43973
|
+
export declare type GraphStoreUserLastUpdatedDesignSortInput = {
|
|
43974
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43975
|
+
};
|
|
43976
|
+
export declare type GraphStoreUserMemberOfConversationSortInput = {
|
|
43977
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43978
|
+
};
|
|
41452
43979
|
export declare type GraphStoreUserMergedPullRequestSortInput = {
|
|
41453
43980
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41454
43981
|
};
|
|
43982
|
+
export declare type GraphStoreUserOwnedBranchSortInput = {
|
|
43983
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43984
|
+
};
|
|
43985
|
+
export declare type GraphStoreUserOwnedCalendarEventSortInput = {
|
|
43986
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43987
|
+
};
|
|
43988
|
+
export declare type GraphStoreUserOwnedDocumentSortInput = {
|
|
43989
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43990
|
+
};
|
|
43991
|
+
export declare type GraphStoreUserOwnedRemoteLinkSortInput = {
|
|
43992
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43993
|
+
};
|
|
43994
|
+
export declare type GraphStoreUserOwnedRepositorySortInput = {
|
|
43995
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43996
|
+
};
|
|
41455
43997
|
export declare type GraphStoreUserOwnsComponentSortInput = {
|
|
41456
43998
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
41457
43999
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -41467,12 +44009,27 @@ export declare type GraphStoreUserReportsIssueSortInput = {
|
|
|
41467
44009
|
export declare type GraphStoreUserReviewsPrSortInput = {
|
|
41468
44010
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41469
44011
|
};
|
|
44012
|
+
export declare type GraphStoreUserTaggedInCommentSortInput = {
|
|
44013
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44014
|
+
};
|
|
44015
|
+
export declare type GraphStoreUserTaggedInConfluencePageSortInput = {
|
|
44016
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44017
|
+
};
|
|
44018
|
+
export declare type GraphStoreUserTriggeredDeploymentSortInput = {
|
|
44019
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44020
|
+
};
|
|
41470
44021
|
export declare type GraphStoreUserUpdatedConfluenceBlogpostSortInput = {
|
|
41471
44022
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41472
44023
|
};
|
|
41473
44024
|
export declare type GraphStoreUserUpdatedConfluencePageSortInput = {
|
|
41474
44025
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41475
44026
|
};
|
|
44027
|
+
export declare type GraphStoreUserUpdatedConfluenceSpaceSortInput = {
|
|
44028
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44029
|
+
};
|
|
44030
|
+
export declare type GraphStoreUserUpdatedConfluenceWhiteboardSortInput = {
|
|
44031
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
44032
|
+
};
|
|
41476
44033
|
export declare type GraphStoreUserViewedAtlasGoalSortInput = {
|
|
41477
44034
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41478
44035
|
};
|
|
@@ -41488,6 +44045,15 @@ export declare type GraphStoreUserViewedConfluencePageSortInput = {
|
|
|
41488
44045
|
export declare type GraphStoreUserViewedJiraIssueSortInput = {
|
|
41489
44046
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41490
44047
|
};
|
|
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
|
+
};
|
|
41491
44057
|
export declare type GraphStoreVersionAssociatedBranchSortInput = {
|
|
41492
44058
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
41493
44059
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -41725,6 +44291,10 @@ export declare type GrowthUnifiedProfileCompany = {
|
|
|
41725
44291
|
size?: Maybe<GrowthUnifiedProfileCompanySize>;
|
|
41726
44292
|
type?: Maybe<GrowthUnifiedProfileCompanyType>;
|
|
41727
44293
|
};
|
|
44294
|
+
export declare type GrowthUnifiedProfileCompanyProfile = {
|
|
44295
|
+
__typename?: 'GrowthUnifiedProfileCompanyProfile';
|
|
44296
|
+
companyType?: Maybe<GrowthUnifiedProfileEntryType>;
|
|
44297
|
+
};
|
|
41728
44298
|
export declare enum GrowthUnifiedProfileCompanySize {
|
|
41729
44299
|
Large = "LARGE",
|
|
41730
44300
|
Medium = "MEDIUM",
|
|
@@ -41750,6 +44320,10 @@ export declare type GrowthUnifiedProfileCreateProfileInput = {
|
|
|
41750
44320
|
tenantId?: InputMaybe<Scalars['ID']['input']>;
|
|
41751
44321
|
unifiedProfile: GrowthUnifiedProfileInput;
|
|
41752
44322
|
};
|
|
44323
|
+
export declare enum GrowthUnifiedProfileDomainType {
|
|
44324
|
+
Business = "BUSINESS",
|
|
44325
|
+
Personal = "PERSONAL"
|
|
44326
|
+
}
|
|
41753
44327
|
export declare enum GrowthUnifiedProfileEnrichmentStatus {
|
|
41754
44328
|
Complete = "COMPLETE",
|
|
41755
44329
|
Error = "ERROR",
|
|
@@ -41769,6 +44343,10 @@ export declare enum GrowthUnifiedProfileEntityType {
|
|
|
41769
44343
|
Org = "ORG",
|
|
41770
44344
|
Site = "SITE"
|
|
41771
44345
|
}
|
|
44346
|
+
export declare enum GrowthUnifiedProfileEntryType {
|
|
44347
|
+
Existing = "EXISTING",
|
|
44348
|
+
New = "NEW"
|
|
44349
|
+
}
|
|
41772
44350
|
export declare type GrowthUnifiedProfileInput = {
|
|
41773
44351
|
onboardingContext?: InputMaybe<GrowthUnifiedProfileOnboardingContextInput>;
|
|
41774
44352
|
};
|
|
@@ -41890,6 +44468,7 @@ export declare type GrowthUnifiedProfileProductDetails = {
|
|
|
41890
44468
|
export declare type GrowthUnifiedProfileResult = {
|
|
41891
44469
|
__typename?: 'GrowthUnifiedProfileResult';
|
|
41892
44470
|
company?: Maybe<GrowthUnifiedProfileCompany>;
|
|
44471
|
+
companyProfile?: Maybe<GrowthUnifiedProfileCompanyProfile>;
|
|
41893
44472
|
enrichmentStatus?: Maybe<GrowthUnifiedProfileEnrichmentStatus>;
|
|
41894
44473
|
entityType?: Maybe<GrowthUnifiedProfileEntityType>;
|
|
41895
44474
|
linkedEntities?: Maybe<Array<Maybe<GrowthUnifiedProfileLinkedEntities>>>;
|
|
@@ -41898,6 +44477,7 @@ export declare type GrowthUnifiedProfileResult = {
|
|
|
41898
44477
|
seoContext?: Maybe<GrowthUnifiedProfileSeoContext>;
|
|
41899
44478
|
sites?: Maybe<Array<Maybe<GrowthUnifiedProfileSiteDetails>>>;
|
|
41900
44479
|
userFootprints?: Maybe<GrowthUnifiedProfileUserFootprints>;
|
|
44480
|
+
userProfile?: Maybe<GrowthUnifiedProfileUserProfile>;
|
|
41901
44481
|
};
|
|
41902
44482
|
export declare type GrowthUnifiedProfileSeoContext = {
|
|
41903
44483
|
__typename?: 'GrowthUnifiedProfileSeoContext';
|
|
@@ -41935,6 +44515,11 @@ export declare type GrowthUnifiedProfileUserFootprints = {
|
|
|
41935
44515
|
hasAtlassianAccount?: Maybe<Scalars['Boolean']['output']>;
|
|
41936
44516
|
products?: Maybe<Array<Maybe<GrowthUnifiedProfileProduct>>>;
|
|
41937
44517
|
};
|
|
44518
|
+
export declare type GrowthUnifiedProfileUserProfile = {
|
|
44519
|
+
__typename?: 'GrowthUnifiedProfileUserProfile';
|
|
44520
|
+
domainType?: Maybe<GrowthUnifiedProfileDomainType>;
|
|
44521
|
+
userType?: Maybe<GrowthUnifiedProfileEntryType>;
|
|
44522
|
+
};
|
|
41938
44523
|
export declare type GrowthUnifiedProfileUtm = {
|
|
41939
44524
|
__typename?: 'GrowthUnifiedProfileUtm';
|
|
41940
44525
|
channel?: Maybe<GrowthUnifiedProfileChannel>;
|
|
@@ -42084,6 +44669,7 @@ export declare type HamsTransactionAccountExperienceCapabilities = CommerceTrans
|
|
|
42084
44669
|
export declare type HamsTrial = CommerceTrial & {
|
|
42085
44670
|
__typename?: 'HamsTrial';
|
|
42086
44671
|
endTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
44672
|
+
startTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
42087
44673
|
};
|
|
42088
44674
|
export declare type HasMercuryProjectFields = {
|
|
42089
44675
|
mercuryProjectIcon?: Maybe<Scalars['URL']['output']>;
|
|
@@ -43275,12 +45861,17 @@ export declare type HelpLayoutQueryApi = {
|
|
|
43275
45861
|
__typename?: 'HelpLayoutQueryApi';
|
|
43276
45862
|
elementTypes?: Maybe<Array<HelpLayoutElementType>>;
|
|
43277
45863
|
layout?: Maybe<HelpLayoutResult>;
|
|
45864
|
+
layoutByParentId?: Maybe<HelpLayoutResult>;
|
|
43278
45865
|
mediaConfig?: Maybe<HelpLayoutMediaConfig>;
|
|
43279
45866
|
};
|
|
43280
45867
|
export declare type HelpLayoutQueryApiLayoutArgs = {
|
|
43281
45868
|
filter?: InputMaybe<HelpLayoutFilter>;
|
|
43282
45869
|
id: Scalars['ID']['input'];
|
|
43283
45870
|
};
|
|
45871
|
+
export declare type HelpLayoutQueryApiLayoutByParentIdArgs = {
|
|
45872
|
+
filter?: InputMaybe<HelpLayoutFilter>;
|
|
45873
|
+
parentAri: Scalars['ID']['input'];
|
|
45874
|
+
};
|
|
43284
45875
|
export declare type HelpLayoutQueryApiMediaConfigArgs = {
|
|
43285
45876
|
filter?: InputMaybe<HelpLayoutFilter>;
|
|
43286
45877
|
parentAri: Scalars['ID']['input'];
|
|
@@ -45784,6 +48375,103 @@ export declare enum JiraBoardType {
|
|
|
45784
48375
|
Kanban = "KANBAN",
|
|
45785
48376
|
Scrum = "SCRUM"
|
|
45786
48377
|
}
|
|
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
|
+
};
|
|
45787
48475
|
export declare type JiraBooleanField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
45788
48476
|
__typename?: 'JiraBooleanField';
|
|
45789
48477
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -47618,6 +50306,7 @@ export declare type JiraDeleteCustomFieldInput = {
|
|
|
47618
50306
|
};
|
|
47619
50307
|
export declare type JiraDeleteCustomFieldPayload = Payload & {
|
|
47620
50308
|
__typename?: 'JiraDeleteCustomFieldPayload';
|
|
50309
|
+
affectedFieldAssociationWithIssueTypesId?: Maybe<Scalars['ID']['output']>;
|
|
47621
50310
|
errors?: Maybe<Array<MutationError>>;
|
|
47622
50311
|
success: Scalars['Boolean']['output'];
|
|
47623
50312
|
};
|
|
@@ -49277,6 +51966,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
49277
51966
|
issueTypesForHierarchySame?: Maybe<JiraIssueTypeConnection>;
|
|
49278
51967
|
jiraCoverMedia?: Maybe<JiraBackground>;
|
|
49279
51968
|
key: Scalars['String']['output'];
|
|
51969
|
+
lastRedactionTime?: Maybe<Scalars['DateTime']['output']>;
|
|
49280
51970
|
lastViewedTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
49281
51971
|
legacyContentPanels?: Maybe<JiraIssueContentPanelConnection>;
|
|
49282
51972
|
lifecycleState?: Maybe<JiraIssueLifecycleState>;
|
|
@@ -49299,6 +51989,8 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
49299
51989
|
priorityField?: Maybe<JiraPriorityField>;
|
|
49300
51990
|
projectField?: Maybe<JiraProjectField>;
|
|
49301
51991
|
projectRoleCommentVisibilities?: Maybe<JiraRoleConnection>;
|
|
51992
|
+
redactedFields?: Maybe<JiraFieldConnection>;
|
|
51993
|
+
redactions?: Maybe<JiraRedactionConnection>;
|
|
49302
51994
|
reporter?: Maybe<User>;
|
|
49303
51995
|
resolutionDateField?: Maybe<JiraDateTimePickerField>;
|
|
49304
51996
|
resolutionField?: Maybe<JiraResolutionField>;
|
|
@@ -49459,6 +52151,19 @@ export declare type JiraIssueProjectRoleCommentVisibilitiesArgs = {
|
|
|
49459
52151
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
49460
52152
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
49461
52153
|
};
|
|
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
|
+
};
|
|
49462
52167
|
export declare type JiraIssueSearchViewContextArgs = {
|
|
49463
52168
|
isGroupingEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
49464
52169
|
isHierarchyEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -49741,16 +52446,24 @@ export declare type JiraIssueDevSummaryResult = {
|
|
|
49741
52446
|
};
|
|
49742
52447
|
export declare type JiraIssueEdge = {
|
|
49743
52448
|
__typename?: 'JiraIssueEdge';
|
|
52449
|
+
canHaveChildIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
49744
52450
|
cursor: Scalars['String']['output'];
|
|
49745
52451
|
fieldSets?: Maybe<JiraIssueFieldSetConnection>;
|
|
52452
|
+
hasChildren?: Maybe<Scalars['Boolean']['output']>;
|
|
49746
52453
|
node?: Maybe<JiraIssue>;
|
|
49747
52454
|
};
|
|
52455
|
+
export declare type JiraIssueEdgeCanHaveChildIssuesArgs = {
|
|
52456
|
+
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
52457
|
+
};
|
|
49748
52458
|
export declare type JiraIssueEdgeFieldSetsArgs = {
|
|
49749
52459
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
49750
52460
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
49751
52461
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
49752
52462
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
49753
52463
|
};
|
|
52464
|
+
export declare type JiraIssueEdgeHasChildrenArgs = {
|
|
52465
|
+
filterByProjectKeys?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
52466
|
+
};
|
|
49754
52467
|
export declare type JiraIssueExpandedGroup = {
|
|
49755
52468
|
fieldValue?: InputMaybe<Scalars['String']['input']>;
|
|
49756
52469
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -50409,6 +53122,12 @@ export declare type JiraIssueSearchGroupByFieldMutationPayload = Payload & {
|
|
|
50409
53122
|
errors?: Maybe<Array<MutationError>>;
|
|
50410
53123
|
success: Scalars['Boolean']['output'];
|
|
50411
53124
|
};
|
|
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
|
+
};
|
|
50412
53131
|
export declare type JiraIssueSearchHierarchyPreferenceMutationPayload = Payload & {
|
|
50413
53132
|
__typename?: 'JiraIssueSearchHierarchyPreferenceMutationPayload';
|
|
50414
53133
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -50423,8 +53142,10 @@ export declare type JiraIssueSearchInput = {
|
|
|
50423
53142
|
};
|
|
50424
53143
|
export declare enum JiraIssueSearchOperationScope {
|
|
50425
53144
|
NinGlobal = "NIN_GLOBAL",
|
|
53145
|
+
NinGlobalSchemaRefactor = "NIN_GLOBAL_SCHEMA_REFACTOR",
|
|
50426
53146
|
NinGlobalShadowRequest = "NIN_GLOBAL_SHADOW_REQUEST",
|
|
50427
53147
|
NinProject = "NIN_PROJECT",
|
|
53148
|
+
NinProjectSchemaRefactor = "NIN_PROJECT_SCHEMA_REFACTOR",
|
|
50428
53149
|
NinProjectShadowRequest = "NIN_PROJECT_SHADOW_REQUEST"
|
|
50429
53150
|
}
|
|
50430
53151
|
export declare type JiraIssueSearchOptions = {
|
|
@@ -52014,6 +54735,7 @@ export declare type JiraMutation = {
|
|
|
52014
54735
|
jiraServiceManagementCreateRequestTypeCategory?: Maybe<JiraServiceManagementRequestTypeCategoryPayload>;
|
|
52015
54736
|
jiraServiceManagementDeleteRequestTypeCategory?: Maybe<JiraServiceManagementRequestTypeCategoryDefaultPayload>;
|
|
52016
54737
|
jiraServiceManagementUpdateRequestTypeCategory?: Maybe<JiraServiceManagementRequestTypeCategoryPayload>;
|
|
54738
|
+
jwmAssociateField?: Maybe<JiraWorkManagementAssociateFieldPayload>;
|
|
52017
54739
|
jwmCreateCustomBackground?: Maybe<JiraWorkManagementCreateCustomBackgroundPayload>;
|
|
52018
54740
|
jwmCreateSavedView?: Maybe<JiraWorkManagementCreateSavedViewPayload>;
|
|
52019
54741
|
jwmDeleteAttachment?: Maybe<JiraWorkManagementDeleteAttachmentPayload>;
|
|
@@ -52034,6 +54756,7 @@ export declare type JiraMutation = {
|
|
|
52034
54756
|
rankIssues?: Maybe<JiraRankMutationPayload>;
|
|
52035
54757
|
rankNavigationItem?: Maybe<JiraRankNavigationItemPayload>;
|
|
52036
54758
|
removeActiveBackground?: Maybe<JiraRemoveActiveBackgroundPayload>;
|
|
54759
|
+
removeCustomField?: Maybe<JiraRemoveCustomFieldPayload>;
|
|
52037
54760
|
removeIssuesFromAllFixVersions?: Maybe<JiraRemoveIssuesFromAllFixVersionsPayload>;
|
|
52038
54761
|
removeIssuesFromFixVersion?: Maybe<JiraRemoveIssuesFromFixVersionPayload>;
|
|
52039
54762
|
removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
|
|
@@ -52075,6 +54798,7 @@ export declare type JiraMutation = {
|
|
|
52075
54798
|
updateGlobalNotificationPreferences?: Maybe<JiraUpdateGlobalPreferencesPayload>;
|
|
52076
54799
|
updateIssueHierarchyConfig?: Maybe<JiraIssueHierarchyConfigurationMutationResult>;
|
|
52077
54800
|
updateIssueSearchGroupByConfig?: Maybe<JiraIssueSearchGroupByFieldMutationPayload>;
|
|
54801
|
+
updateIssueSearchHideDonePreference?: Maybe<JiraIssueSearchHideDonePreferenceMutationPayload>;
|
|
52078
54802
|
updateIssueSearchHierarchyPreference?: Maybe<JiraIssueSearchHierarchyPreferenceMutationPayload>;
|
|
52079
54803
|
updateIssueTypeField?: Maybe<JiraIssueTypeFieldPayload>;
|
|
52080
54804
|
updateJiraActivityConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
@@ -52326,6 +55050,10 @@ export declare type JiraMutationJiraServiceManagementUpdateRequestTypeCategoryAr
|
|
|
52326
55050
|
input: JiraServiceManagementUpdateRequestTypeCategoryInput;
|
|
52327
55051
|
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
52328
55052
|
};
|
|
55053
|
+
export declare type JiraMutationJwmAssociateFieldArgs = {
|
|
55054
|
+
cloudId: Scalars['ID']['input'];
|
|
55055
|
+
input: JiraWorkManagementAssociateFieldInput;
|
|
55056
|
+
};
|
|
52329
55057
|
export declare type JiraMutationJwmCreateCustomBackgroundArgs = {
|
|
52330
55058
|
input: JiraWorkManagementCreateCustomBackgroundInput;
|
|
52331
55059
|
};
|
|
@@ -52387,6 +55115,9 @@ export declare type JiraMutationRankNavigationItemArgs = {
|
|
|
52387
55115
|
export declare type JiraMutationRemoveActiveBackgroundArgs = {
|
|
52388
55116
|
input: JiraRemoveActiveBackgroundInput;
|
|
52389
55117
|
};
|
|
55118
|
+
export declare type JiraMutationRemoveCustomFieldArgs = {
|
|
55119
|
+
input: JiraRemoveCustomFieldInput;
|
|
55120
|
+
};
|
|
52390
55121
|
export declare type JiraMutationRemoveIssuesFromAllFixVersionsArgs = {
|
|
52391
55122
|
input: JiraRemoveIssuesFromAllFixVersionsInput;
|
|
52392
55123
|
};
|
|
@@ -52528,6 +55259,10 @@ export declare type JiraMutationUpdateIssueSearchGroupByConfigArgs = {
|
|
|
52528
55259
|
fieldId?: InputMaybe<Scalars['String']['input']>;
|
|
52529
55260
|
viewId: Scalars['ID']['input'];
|
|
52530
55261
|
};
|
|
55262
|
+
export declare type JiraMutationUpdateIssueSearchHideDonePreferenceArgs = {
|
|
55263
|
+
isHideDoneEnabled: Scalars['Boolean']['input'];
|
|
55264
|
+
viewId: Scalars['ID']['input'];
|
|
55265
|
+
};
|
|
52531
55266
|
export declare type JiraMutationUpdateIssueSearchHierarchyPreferenceArgs = {
|
|
52532
55267
|
isHierarchyEnabled: Scalars['Boolean']['input'];
|
|
52533
55268
|
viewId: Scalars['ID']['input'];
|
|
@@ -52964,6 +55699,7 @@ export declare type JiraOAuthAppsApp = {
|
|
|
52964
55699
|
featureFlagsModule?: Maybe<JiraOAuthAppsFeatureFlagsModule>;
|
|
52965
55700
|
homeUrl: Scalars['String']['output'];
|
|
52966
55701
|
id: Scalars['ID']['output'];
|
|
55702
|
+
installationStatus?: Maybe<JiraOAuthAppsInstallationStatus>;
|
|
52967
55703
|
logoUrl: Scalars['String']['output'];
|
|
52968
55704
|
name: Scalars['String']['output'];
|
|
52969
55705
|
remoteLinksModule?: Maybe<JiraOAuthAppsRemoteLinksModule>;
|
|
@@ -53060,10 +55796,21 @@ export declare type JiraOAuthAppsFeatureFlagsModuleInput = {
|
|
|
53060
55796
|
actions?: InputMaybe<JiraOAuthAppsFeatureFlagsModuleActionsInput>;
|
|
53061
55797
|
isEnabled: Scalars['Boolean']['input'];
|
|
53062
55798
|
};
|
|
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
|
+
}
|
|
53063
55809
|
export declare type JiraOAuthAppsMutation = {
|
|
53064
55810
|
__typename?: 'JiraOAuthAppsMutation';
|
|
53065
55811
|
createJiraOAuthApp?: Maybe<JiraOAuthAppsPayload>;
|
|
53066
55812
|
deleteJiraOAuthApp?: Maybe<JiraOAuthAppsPayload>;
|
|
55813
|
+
installJiraOAuthApp?: Maybe<JiraOAuthAppsPayload>;
|
|
53067
55814
|
updateJiraOAuthApp?: Maybe<JiraOAuthAppsPayload>;
|
|
53068
55815
|
};
|
|
53069
55816
|
export declare type JiraOAuthAppsMutationCreateJiraOAuthAppArgs = {
|
|
@@ -53074,6 +55821,10 @@ export declare type JiraOAuthAppsMutationDeleteJiraOAuthAppArgs = {
|
|
|
53074
55821
|
cloudId: Scalars['String']['input'];
|
|
53075
55822
|
input: JiraOAuthAppsDeleteAppInput;
|
|
53076
55823
|
};
|
|
55824
|
+
export declare type JiraOAuthAppsMutationInstallJiraOAuthAppArgs = {
|
|
55825
|
+
cloudId: Scalars['String']['input'];
|
|
55826
|
+
input: JiraOAuthAppsInstallAppInput;
|
|
55827
|
+
};
|
|
53077
55828
|
export declare type JiraOAuthAppsMutationUpdateJiraOAuthAppArgs = {
|
|
53078
55829
|
cloudId: Scalars['String']['input'];
|
|
53079
55830
|
input: JiraOAuthAppsUpdateAppInput;
|
|
@@ -54493,6 +57244,12 @@ export declare type JiraProjectUpdateAvatarMutationPayload = Payload & {
|
|
|
54493
57244
|
project?: Maybe<JiraProject>;
|
|
54494
57245
|
success: Scalars['Boolean']['output'];
|
|
54495
57246
|
};
|
|
57247
|
+
export declare type JiraProjectUpdateBackgroundMutationPayload = Payload & {
|
|
57248
|
+
__typename?: 'JiraProjectUpdateBackgroundMutationPayload';
|
|
57249
|
+
errors?: Maybe<Array<MutationError>>;
|
|
57250
|
+
project?: Maybe<JiraProject>;
|
|
57251
|
+
success: Scalars['Boolean']['output'];
|
|
57252
|
+
};
|
|
54496
57253
|
export declare type JiraProjectUpdateNameInput = {
|
|
54497
57254
|
cloudId: Scalars['ID']['input'];
|
|
54498
57255
|
name: Scalars['String']['input'];
|
|
@@ -54704,6 +57461,7 @@ export declare type JiraQuery = {
|
|
|
54704
57461
|
recentProjects?: Maybe<JiraProjectConnection>;
|
|
54705
57462
|
recentQueues?: Maybe<JiraSearchableEntityConnection>;
|
|
54706
57463
|
remoteIssueLinksById?: Maybe<Array<Maybe<JiraRemoteIssueLink>>>;
|
|
57464
|
+
reportsPage?: Maybe<JiraReportsPage>;
|
|
54707
57465
|
requestTypeTemplateById?: Maybe<JiraServiceManagementRequestTypeTemplate>;
|
|
54708
57466
|
requestTypeTemplateDefaultConfigurationDependencies?: Maybe<JiraServiceManagementRequestTypeTemplateDefaultConfigurationDependencies>;
|
|
54709
57467
|
requestTypeTemplates?: Maybe<Array<JiraServiceManagementRequestTypeTemplate>>;
|
|
@@ -55474,6 +58232,10 @@ export declare type JiraQueryRecentQueuesArgs = {
|
|
|
55474
58232
|
export declare type JiraQueryRemoteIssueLinksByIdArgs = {
|
|
55475
58233
|
ids: Array<Scalars['ID']['input']>;
|
|
55476
58234
|
};
|
|
58235
|
+
export declare type JiraQueryReportsPageArgs = {
|
|
58236
|
+
boardId?: InputMaybe<Scalars['ID']['input']>;
|
|
58237
|
+
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
58238
|
+
};
|
|
55477
58239
|
export declare type JiraQueryRequestTypeTemplateByIdArgs = {
|
|
55478
58240
|
cloudId: Scalars['ID']['input'];
|
|
55479
58241
|
templateId: Scalars['ID']['input'];
|
|
@@ -55688,6 +58450,7 @@ export declare type JiraRankNavigationItemInput = {
|
|
|
55688
58450
|
afterItemId?: InputMaybe<Scalars['ID']['input']>;
|
|
55689
58451
|
beforeItemId?: InputMaybe<Scalars['ID']['input']>;
|
|
55690
58452
|
id: Scalars['ID']['input'];
|
|
58453
|
+
scopeId?: InputMaybe<Scalars['ID']['input']>;
|
|
55691
58454
|
};
|
|
55692
58455
|
export declare type JiraRankNavigationItemPayload = Payload & {
|
|
55693
58456
|
__typename?: 'JiraRankNavigationItemPayload';
|
|
@@ -55711,6 +58474,38 @@ export declare enum JiraRecommendationCategory {
|
|
|
55711
58474
|
ProjectCleanup = "PROJECT_CLEANUP",
|
|
55712
58475
|
ProjectRoleActor = "PROJECT_ROLE_ACTOR"
|
|
55713
58476
|
}
|
|
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
|
+
};
|
|
55714
58509
|
export declare type JiraReleaseNotesConfiguration = {
|
|
55715
58510
|
__typename?: 'JiraReleaseNotesConfiguration';
|
|
55716
58511
|
issueFieldIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
@@ -55888,6 +58683,17 @@ export declare type JiraRemoveActiveBackgroundPayload = Payload & {
|
|
|
55888
58683
|
errors?: Maybe<Array<MutationError>>;
|
|
55889
58684
|
success: Scalars['Boolean']['output'];
|
|
55890
58685
|
};
|
|
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
|
+
};
|
|
55891
58697
|
export declare type JiraRemoveIssuesFromAllFixVersionsInput = {
|
|
55892
58698
|
issueIds: Array<Scalars['ID']['input']>;
|
|
55893
58699
|
};
|
|
@@ -55940,6 +58746,7 @@ export declare type JiraRemoveRelatedWorkFromVersionPayload = Payload & {
|
|
|
55940
58746
|
export declare type JiraRenameNavigationItemInput = {
|
|
55941
58747
|
id: Scalars['ID']['input'];
|
|
55942
58748
|
label: Scalars['String']['input'];
|
|
58749
|
+
scopeId?: InputMaybe<Scalars['ID']['input']>;
|
|
55943
58750
|
};
|
|
55944
58751
|
export declare type JiraRenameNavigationItemPayload = Payload & {
|
|
55945
58752
|
__typename?: 'JiraRenameNavigationItemPayload';
|
|
@@ -55947,6 +58754,22 @@ export declare type JiraRenameNavigationItemPayload = Payload & {
|
|
|
55947
58754
|
navigationItem?: Maybe<JiraNavigationItem>;
|
|
55948
58755
|
success: Scalars['Boolean']['output'];
|
|
55949
58756
|
};
|
|
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
|
+
}
|
|
55950
58773
|
export declare type JiraReplaceIssueSearchViewFieldSetsInput = {
|
|
55951
58774
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
55952
58775
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -55954,6 +58777,25 @@ export declare type JiraReplaceIssueSearchViewFieldSetsInput = {
|
|
|
55954
58777
|
inclusive?: InputMaybe<Scalars['Boolean']['input']>;
|
|
55955
58778
|
nodes: Array<Scalars['String']['input']>;
|
|
55956
58779
|
};
|
|
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
|
+
};
|
|
55957
58799
|
export declare type JiraResolution = Node & {
|
|
55958
58800
|
__typename?: 'JiraResolution';
|
|
55959
58801
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -57519,8 +60361,41 @@ export declare type JiraSetApplicationPropertyInput = {
|
|
|
57519
60361
|
key: Scalars['String']['input'];
|
|
57520
60362
|
value: Scalars['String']['input'];
|
|
57521
60363
|
};
|
|
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
|
+
};
|
|
57522
60396
|
export declare type JiraSetDefaultNavigationItemInput = {
|
|
57523
60397
|
id: Scalars['ID']['input'];
|
|
60398
|
+
scopeId?: InputMaybe<Scalars['ID']['input']>;
|
|
57524
60399
|
};
|
|
57525
60400
|
export declare type JiraSetDefaultNavigationItemPayload = Payload & {
|
|
57526
60401
|
__typename?: 'JiraSetDefaultNavigationItemPayload';
|
|
@@ -57569,6 +60444,26 @@ export declare type JiraSetProjectSelectedDeploymentAppsPropertyPayload = Payloa
|
|
|
57569
60444
|
errors?: Maybe<Array<MutationError>>;
|
|
57570
60445
|
success: Scalars['Boolean']['output'];
|
|
57571
60446
|
};
|
|
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
|
+
};
|
|
57572
60467
|
export declare type JiraShareableEntityAnonymousAccessGrant = {
|
|
57573
60468
|
__typename?: 'JiraShareableEntityAnonymousAccessGrant';
|
|
57574
60469
|
type?: Maybe<JiraShareableEntityGrant>;
|
|
@@ -59324,6 +62219,7 @@ export declare type JiraUserPreferences = {
|
|
|
59324
62219
|
isAdvancedRoadmapsSidebarLayoutEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
59325
62220
|
isIssueViewAttachmentReferenceFlagDismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
59326
62221
|
isIssueViewChildIssuesLimitBestPracticeFlagDismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
62222
|
+
isIssueViewCrossFlowBannerDismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
59327
62223
|
isIssueViewHideDoneChildIssuesFilterEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
59328
62224
|
isIssueViewPinnedFieldsBannerDismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
59329
62225
|
isIssueViewSmartRepliesUserEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -59930,6 +62826,15 @@ export declare type JiraView = {
|
|
|
59930
62826
|
error?: Maybe<QueryError>;
|
|
59931
62827
|
id: Scalars['ID']['output'];
|
|
59932
62828
|
};
|
|
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
|
+
};
|
|
59933
62838
|
export declare type JiraViewScopeInput = {
|
|
59934
62839
|
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
59935
62840
|
projectKeys?: InputMaybe<JiraProjectKeysInput>;
|
|
@@ -60082,6 +62987,17 @@ export declare type JiraWorkLogField = JiraIssueField & JiraIssueFieldConfigurat
|
|
|
60082
62987
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
60083
62988
|
};
|
|
60084
62989
|
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
|
+
};
|
|
60085
63001
|
export declare type JiraWorkManagementAttachmentBackground = JiraWorkManagementBackground & {
|
|
60086
63002
|
__typename?: 'JiraWorkManagementAttachmentBackground';
|
|
60087
63003
|
attachment?: Maybe<JiraAttachment>;
|
|
@@ -61401,10 +64317,13 @@ export declare type KnowledgeBaseMutationApi = {
|
|
|
61401
64317
|
};
|
|
61402
64318
|
export declare type KnowledgeBaseMutationApiLinkKnowledgeBaseSourceArgs = {
|
|
61403
64319
|
container: Scalars['ID']['input'];
|
|
61404
|
-
|
|
64320
|
+
sourceARI?: InputMaybe<Scalars['ID']['input']>;
|
|
64321
|
+
url?: InputMaybe<Scalars['String']['input']>;
|
|
61405
64322
|
};
|
|
61406
64323
|
export declare type KnowledgeBaseMutationApiUnlinkKnowledgeBaseSourceArgs = {
|
|
61407
|
-
|
|
64324
|
+
container?: InputMaybe<Scalars['ID']['input']>;
|
|
64325
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
64326
|
+
linkedSourceARI?: InputMaybe<Scalars['ID']['input']>;
|
|
61408
64327
|
};
|
|
61409
64328
|
export declare type KnowledgeBaseQueryApi = {
|
|
61410
64329
|
__typename?: 'KnowledgeBaseQueryApi';
|
|
@@ -61423,6 +64342,7 @@ export declare type KnowledgeBaseSource = {
|
|
|
61423
64342
|
id: Scalars['ID']['output'];
|
|
61424
64343
|
name: Scalars['String']['output'];
|
|
61425
64344
|
permissions?: Maybe<KnowledgeBaseSourcePermissions>;
|
|
64345
|
+
sourceType?: Maybe<Scalars['String']['output']>;
|
|
61426
64346
|
url: Scalars['String']['output'];
|
|
61427
64347
|
};
|
|
61428
64348
|
export declare type KnowledgeBaseSourcePermissionsArgs = {
|
|
@@ -61686,6 +64606,7 @@ export declare type KnowledgeDiscoveryKeyPhrase = {
|
|
|
61686
64606
|
};
|
|
61687
64607
|
export declare enum KnowledgeDiscoveryKeyPhraseCategory {
|
|
61688
64608
|
Acronym = "ACRONYM",
|
|
64609
|
+
Auto = "AUTO",
|
|
61689
64610
|
Other = "OTHER",
|
|
61690
64611
|
Project = "PROJECT",
|
|
61691
64612
|
Team = "TEAM"
|
|
@@ -61754,6 +64675,7 @@ export declare type KnowledgeDiscoveryQueryApi = {
|
|
|
61754
64675
|
relatedEntities?: Maybe<KnowledgeDiscoveryRelatedEntitiesResult>;
|
|
61755
64676
|
searchRelatedEntities?: Maybe<KnowledgeDiscoverySearchRelatedEntitiesResult>;
|
|
61756
64677
|
searchTeam?: Maybe<KnowledgeDiscoveryTeamSearchResult>;
|
|
64678
|
+
searchUser?: Maybe<KnowledgeDiscoveryUserSearchResult>;
|
|
61757
64679
|
smartAnswersRoute?: Maybe<KnowledgeDiscoverySmartAnswersRouteResult>;
|
|
61758
64680
|
topic?: Maybe<KnowledgeDiscoveryTopicResult>;
|
|
61759
64681
|
};
|
|
@@ -61824,6 +64746,10 @@ export declare type KnowledgeDiscoveryQueryApiSearchTeamArgs = {
|
|
|
61824
64746
|
siteId: Scalars['String']['input'];
|
|
61825
64747
|
teamName: Scalars['String']['input'];
|
|
61826
64748
|
};
|
|
64749
|
+
export declare type KnowledgeDiscoveryQueryApiSearchUserArgs = {
|
|
64750
|
+
siteId: Scalars['String']['input'];
|
|
64751
|
+
userQuery: Scalars['String']['input'];
|
|
64752
|
+
};
|
|
61827
64753
|
export declare type KnowledgeDiscoveryQueryApiSmartAnswersRouteArgs = {
|
|
61828
64754
|
locale: Scalars['String']['input'];
|
|
61829
64755
|
query: Scalars['String']['input'];
|
|
@@ -61876,6 +64802,13 @@ export declare type KnowledgeDiscoverySearchRelatedEntities = {
|
|
|
61876
64802
|
entityGroups?: Maybe<Array<Maybe<KnowledgeDiscoveryEntityGroup>>>;
|
|
61877
64803
|
};
|
|
61878
64804
|
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
|
+
};
|
|
61879
64812
|
export declare type KnowledgeDiscoverySmartAnswersRoute = {
|
|
61880
64813
|
__typename?: 'KnowledgeDiscoverySmartAnswersRoute';
|
|
61881
64814
|
route: KnowledgeDiscoverySearchQueryClassification;
|
|
@@ -61949,6 +64882,11 @@ export declare type KnowledgeDiscoveryUser = KnowledgeDiscoveryEntity & {
|
|
|
61949
64882
|
id: Scalars['ID']['output'];
|
|
61950
64883
|
user?: Maybe<User>;
|
|
61951
64884
|
};
|
|
64885
|
+
export declare type KnowledgeDiscoveryUserSearchResult = KnowledgeDiscoveryUsers | QueryError;
|
|
64886
|
+
export declare type KnowledgeDiscoveryUsers = {
|
|
64887
|
+
__typename?: 'KnowledgeDiscoveryUsers';
|
|
64888
|
+
users?: Maybe<Array<Maybe<KnowledgeDiscoverySearchUser>>>;
|
|
64889
|
+
};
|
|
61952
64890
|
export declare type KnownUser = Person & {
|
|
61953
64891
|
__typename?: 'KnownUser';
|
|
61954
64892
|
accountId?: Maybe<Scalars['String']['output']>;
|
|
@@ -62660,6 +65598,7 @@ export declare type MarketplaceConsoleAppSoftwareShort = {
|
|
|
62660
65598
|
__typename?: 'MarketplaceConsoleAppSoftwareShort';
|
|
62661
65599
|
appKey: Scalars['ID']['output'];
|
|
62662
65600
|
appSoftwareId: Scalars['ID']['output'];
|
|
65601
|
+
editionsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
62663
65602
|
hasConnectVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
62664
65603
|
hasPublicVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
62665
65604
|
hosting: MarketplaceConsoleHosting;
|
|
@@ -64052,6 +66991,10 @@ export declare type MarketplaceStoreHomePageSectionScreenSpecificProperties = {
|
|
|
64052
66991
|
md: MarketplaceStoreHomePageSectionScreenConfig;
|
|
64053
66992
|
sm: MarketplaceStoreHomePageSectionScreenConfig;
|
|
64054
66993
|
};
|
|
66994
|
+
export declare enum MarketplaceStoreHostInstanceType {
|
|
66995
|
+
Production = "PRODUCTION",
|
|
66996
|
+
Sandbox = "SANDBOX"
|
|
66997
|
+
}
|
|
64055
66998
|
export declare type MarketplaceStoreHostLicense = {
|
|
64056
66999
|
__typename?: 'MarketplaceStoreHostLicense';
|
|
64057
67000
|
autoRenewal: Scalars['Boolean']['output'];
|
|
@@ -64064,8 +67007,10 @@ export declare type MarketplaceStoreHostLicense = {
|
|
|
64064
67007
|
export declare type MarketplaceStoreHostStatusResponse = {
|
|
64065
67008
|
__typename?: 'MarketplaceStoreHostStatusResponse';
|
|
64066
67009
|
billingCurrency: Scalars['String']['output'];
|
|
64067
|
-
|
|
67010
|
+
billingSystem: MarketplaceStoreBillingSystem;
|
|
67011
|
+
hostCmtEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
64068
67012
|
hostLicense: MarketplaceStoreHostLicense;
|
|
67013
|
+
instanceType: MarketplaceStoreHostInstanceType;
|
|
64069
67014
|
pacUnavailable: Scalars['Boolean']['output'];
|
|
64070
67015
|
upmLicensedHostUsers: Scalars['Int']['output'];
|
|
64071
67016
|
};
|
|
@@ -64097,8 +67042,11 @@ export declare enum MarketplaceStoreInstallationTargetProduct {
|
|
|
64097
67042
|
}
|
|
64098
67043
|
export declare type MarketplaceStoreInstalledAppDetailsResponse = {
|
|
64099
67044
|
__typename?: 'MarketplaceStoreInstalledAppDetailsResponse';
|
|
64100
|
-
|
|
64101
|
-
|
|
67045
|
+
edition?: Maybe<Scalars['String']['output']>;
|
|
67046
|
+
installed: Scalars['Boolean']['output'];
|
|
67047
|
+
licenseActive: Scalars['Boolean']['output'];
|
|
67048
|
+
licenseExpiryDate?: Maybe<Scalars['String']['output']>;
|
|
67049
|
+
paidLicenseActiveOnParent: Scalars['Boolean']['output'];
|
|
64102
67050
|
};
|
|
64103
67051
|
export declare type MarketplaceStoreLoggedInUser = {
|
|
64104
67052
|
__typename?: 'MarketplaceStoreLoggedInUser';
|
|
@@ -64670,6 +67618,7 @@ export declare type MercuryFocusArea = Node & {
|
|
|
64670
67618
|
allocations?: Maybe<MercuryFocusAreaAllocations>;
|
|
64671
67619
|
ari: Scalars['String']['output'];
|
|
64672
67620
|
createdDate: Scalars['String']['output'];
|
|
67621
|
+
externalId?: Maybe<Scalars['String']['output']>;
|
|
64673
67622
|
focusAreaLinks?: Maybe<MercuryFocusAreaLinks>;
|
|
64674
67623
|
focusAreaStatusUpdates?: Maybe<MercuryFocusAreaStatusUpdateConnection>;
|
|
64675
67624
|
focusAreaType: MercuryFocusAreaType;
|
|
@@ -66141,6 +69090,12 @@ export declare type Mutation = {
|
|
|
66141
69090
|
confluenceV2_deletePage?: Maybe<Scalars['Boolean']['output']>;
|
|
66142
69091
|
confluenceV2_updatePage?: Maybe<ConfluenceV2UpdatePagePayload>;
|
|
66143
69092
|
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>;
|
|
66144
69099
|
connectionManager_createApiTokenConnectionForJiraProject?: Maybe<ConnectionManagerCreateApiTokenConnectionForJiraProjectPayload>;
|
|
66145
69100
|
connectionManager_createOAuthConnectionForJiraProject?: Maybe<ConnectionManagerCreateOAuthConnectionForJiraProjectPayload>;
|
|
66146
69101
|
connectionManager_deleteApiTokenConnectionForJiraProject?: Maybe<ConnectionManagerDeleteApiTokenConnectionForJiraProjectPayload>;
|
|
@@ -66221,6 +69176,7 @@ export declare type Mutation = {
|
|
|
66221
69176
|
deleteWebTriggerUrl?: Maybe<DeleteWebTriggerUrlResponse>;
|
|
66222
69177
|
devAi?: Maybe<DevAiMutations>;
|
|
66223
69178
|
devOps?: Maybe<DevOpsMutation>;
|
|
69179
|
+
devai_invokeAutodevRovoAgent?: Maybe<DevAiInvokeAutodevRovoAgentPayload>;
|
|
66224
69180
|
disableExperiment?: Maybe<TapExperiment>;
|
|
66225
69181
|
disablePublicLinkForPage?: Maybe<DisablePublicLinkForPagePayload>;
|
|
66226
69182
|
disablePublicLinkForSite?: Maybe<PublicLinkSitePayload>;
|
|
@@ -66250,6 +69206,13 @@ export declare type Mutation = {
|
|
|
66250
69206
|
jira?: Maybe<JiraMutation>;
|
|
66251
69207
|
jiraCannedResponse?: Maybe<JiraCannedResponseMutationApi>;
|
|
66252
69208
|
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>;
|
|
66253
69216
|
jsmChat?: Maybe<JsmChatMutation>;
|
|
66254
69217
|
jsw?: Maybe<JswMutation>;
|
|
66255
69218
|
knowledgeBase?: Maybe<KnowledgeBaseMutationApi>;
|
|
@@ -66963,6 +69926,30 @@ export declare type MutationConfluence_DeleteCalendarCustomEventTypeArgs = {
|
|
|
66963
69926
|
cloudId: Scalars['ID']['input'];
|
|
66964
69927
|
input: ConfluenceDeleteCalendarCustomEventTypeInput;
|
|
66965
69928
|
};
|
|
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
|
+
};
|
|
66966
69953
|
export declare type MutationConnectionManager_CreateApiTokenConnectionForJiraProjectArgs = {
|
|
66967
69954
|
createApiTokenConnectionInput?: InputMaybe<ConnectionManagerCreateApiTokenConnectionInput>;
|
|
66968
69955
|
jiraProjectARI?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -67232,6 +70219,10 @@ export declare type MutationDeleteTemplateArgs = {
|
|
|
67232
70219
|
export declare type MutationDeleteWebTriggerUrlArgs = {
|
|
67233
70220
|
id: Scalars['ID']['input'];
|
|
67234
70221
|
};
|
|
70222
|
+
export declare type MutationDevai_InvokeAutodevRovoAgentArgs = {
|
|
70223
|
+
agentId: Scalars['ID']['input'];
|
|
70224
|
+
issueId: Scalars['ID']['input'];
|
|
70225
|
+
};
|
|
67235
70226
|
export declare type MutationDisableExperimentArgs = {
|
|
67236
70227
|
experimentKey: Scalars['String']['input'];
|
|
67237
70228
|
};
|
|
@@ -67286,6 +70277,27 @@ export declare type MutationInvokeExtensionArgs = {
|
|
|
67286
70277
|
export declare type MutationInvokePolarisObjectArgs = {
|
|
67287
70278
|
input: InvokePolarisObjectInput;
|
|
67288
70279
|
};
|
|
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
|
+
};
|
|
67289
70301
|
export declare type MutationKnowledgeBaseArgs = {
|
|
67290
70302
|
cloudId: Scalars['ID']['input'];
|
|
67291
70303
|
};
|
|
@@ -68308,10 +71320,11 @@ export declare type PeapProgram = {
|
|
|
68308
71320
|
status: PeapProgramStatus;
|
|
68309
71321
|
updatedAt: Scalars['Date']['output'];
|
|
68310
71322
|
};
|
|
68311
|
-
export declare type PeapProgramConnection = HasPageInfo & {
|
|
71323
|
+
export declare type PeapProgramConnection = HasPageInfo & HasTotal & {
|
|
68312
71324
|
__typename?: 'PEAPProgramConnection';
|
|
68313
71325
|
edges?: Maybe<Array<Maybe<PeapProgramEdge>>>;
|
|
68314
71326
|
pageInfo: PageInfo;
|
|
71327
|
+
totalCount: Scalars['Int']['output'];
|
|
68315
71328
|
};
|
|
68316
71329
|
export declare type PeapProgramEdge = {
|
|
68317
71330
|
__typename?: 'PEAPProgramEdge';
|
|
@@ -70581,6 +73594,7 @@ export declare type Query = {
|
|
|
70581
73594
|
confluence_mutationsPlaceholderQuery?: Maybe<Scalars['Boolean']['output']>;
|
|
70582
73595
|
confluence_searchTeamLabels?: Maybe<LabelSearchResults>;
|
|
70583
73596
|
confluence_storage?: Maybe<ConfluenceStorage>;
|
|
73597
|
+
confluence_template?: Maybe<ContentTemplate>;
|
|
70584
73598
|
confluence_tenantContext?: Maybe<ConfluenceTenantContext>;
|
|
70585
73599
|
confluence_validateCalendarJql?: Maybe<ConfluenceCalendarJqlValidationResult>;
|
|
70586
73600
|
confluence_workflow?: Maybe<ConfluenceWorkflow>;
|
|
@@ -70652,6 +73666,7 @@ export declare type Query = {
|
|
|
70652
73666
|
devai_autodevJobFileContents?: Maybe<Scalars['String']['output']>;
|
|
70653
73667
|
devai_autodevJobLogGroups?: Maybe<DevAiAutodevLogGroupConnection>;
|
|
70654
73668
|
devai_autodevJobLogs?: Maybe<DevAiAutodevLogConnection>;
|
|
73669
|
+
devai_autodevRovoAgents?: Maybe<DevAiRovoAgentConnection>;
|
|
70655
73670
|
developerLogAccess?: Maybe<Array<Maybe<DeveloperLogAccessResult>>>;
|
|
70656
73671
|
developmentInformation?: Maybe<IssueDevOpsDevelopmentInformation>;
|
|
70657
73672
|
diagnostics?: Maybe<Scalars['JSON']['output']>;
|
|
@@ -70747,6 +73762,8 @@ export declare type Query = {
|
|
|
70747
73762
|
jiraProjectRelationshipsForService?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
70748
73763
|
jiraReleases?: Maybe<JiraReleases>;
|
|
70749
73764
|
jiraServers?: Maybe<JiraServersResult>;
|
|
73765
|
+
jira_boardView?: Maybe<JiraBoardView>;
|
|
73766
|
+
jira_issueSearchViewsByIds?: Maybe<Array<Maybe<JiraIssueSearchView>>>;
|
|
70750
73767
|
jira_projectByIdOrKey?: Maybe<JiraProject>;
|
|
70751
73768
|
jsmChat?: Maybe<JsmChatQuery>;
|
|
70752
73769
|
jsw?: Maybe<JswQuery>;
|
|
@@ -72127,6 +75144,10 @@ export declare type QueryConfluence_SearchTeamLabelsArgs = {
|
|
|
72127
75144
|
export declare type QueryConfluence_StorageArgs = {
|
|
72128
75145
|
cloudId: Scalars['ID']['input'];
|
|
72129
75146
|
};
|
|
75147
|
+
export declare type QueryConfluence_TemplateArgs = {
|
|
75148
|
+
cloudId: Scalars['ID']['input'];
|
|
75149
|
+
contentTemplateId: Scalars['String']['input'];
|
|
75150
|
+
};
|
|
72130
75151
|
export declare type QueryConfluence_TenantContextArgs = {
|
|
72131
75152
|
cloudId: Scalars['ID']['input'];
|
|
72132
75153
|
};
|
|
@@ -72464,6 +75485,12 @@ export declare type QueryDevai_AutodevJobLogsArgs = {
|
|
|
72464
75485
|
jobId: Scalars['ID']['input'];
|
|
72465
75486
|
minPriority?: InputMaybe<DevAiAutodevLogPriority>;
|
|
72466
75487
|
};
|
|
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
|
+
};
|
|
72467
75494
|
export declare type QueryDeveloperLogAccessArgs = {
|
|
72468
75495
|
appId: Scalars['ID']['input'];
|
|
72469
75496
|
contextIds: Array<Scalars['ID']['input']>;
|
|
@@ -72752,6 +75779,12 @@ export declare type QueryJiraProjectRelationshipsForServiceArgs = {
|
|
|
72752
75779
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
72753
75780
|
id: Scalars['ID']['input'];
|
|
72754
75781
|
};
|
|
75782
|
+
export declare type QueryJira_BoardViewArgs = {
|
|
75783
|
+
input: JiraBoardViewInput;
|
|
75784
|
+
};
|
|
75785
|
+
export declare type QueryJira_IssueSearchViewsByIdsArgs = {
|
|
75786
|
+
ids: Array<Scalars['ID']['input']>;
|
|
75787
|
+
};
|
|
72755
75788
|
export declare type QueryJira_ProjectByIdOrKeyArgs = {
|
|
72756
75789
|
cloudId: Scalars['ID']['input'];
|
|
72757
75790
|
idOrKey: Scalars['String']['input'];
|
|
@@ -73668,7 +76701,13 @@ export declare type RadarGroupMetrics = {
|
|
|
73668
76701
|
__typename?: 'RadarGroupMetrics';
|
|
73669
76702
|
count: Scalars['Int']['output'];
|
|
73670
76703
|
field: RadarFieldValueIdPair;
|
|
73671
|
-
subGroups
|
|
76704
|
+
subGroups?: Maybe<RadarGroupMetricsConnection>;
|
|
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']>;
|
|
73672
76711
|
};
|
|
73673
76712
|
export declare type RadarGroupMetricsConnection = RadarConnection & {
|
|
73674
76713
|
__typename?: 'RadarGroupMetricsConnection';
|
|
@@ -76048,7 +79087,9 @@ export declare enum SearchSortOrder {
|
|
|
76048
79087
|
Desc = "DESC"
|
|
76049
79088
|
}
|
|
76050
79089
|
export declare type SearchThirdPartyFilter = {
|
|
79090
|
+
ancestorAris?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
76051
79091
|
containerNames?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
79092
|
+
excludeSubtypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
76052
79093
|
integrations?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
76053
79094
|
range?: InputMaybe<Array<InputMaybe<SearchThirdPartyRangeFilter>>>;
|
|
76054
79095
|
subtypes?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
@@ -81600,6 +84641,7 @@ export declare type TrelloCardViewer = {
|
|
|
81600
84641
|
export declare type TrelloCheckItem = {
|
|
81601
84642
|
__typename?: 'TrelloCheckItem';
|
|
81602
84643
|
due?: Maybe<TrelloCheckItemDueInfo>;
|
|
84644
|
+
member?: Maybe<TrelloMember>;
|
|
81603
84645
|
name?: Maybe<TrelloUserGeneratedText>;
|
|
81604
84646
|
objectId: Scalars['ID']['output'];
|
|
81605
84647
|
position?: Maybe<Scalars['Float']['output']>;
|
|
@@ -82376,6 +85418,7 @@ export declare type TrelloPowerUpDataFilterInput = {
|
|
|
82376
85418
|
export declare enum TrelloPowerUpDataScope {
|
|
82377
85419
|
Board = "BOARD",
|
|
82378
85420
|
Card = "CARD",
|
|
85421
|
+
Member = "MEMBER",
|
|
82379
85422
|
Organization = "ORGANIZATION"
|
|
82380
85423
|
}
|
|
82381
85424
|
export declare type TrelloPowerUpIcon = {
|
|
@@ -82738,6 +85781,7 @@ export declare type TrelloWatchCardPayload = Payload & {
|
|
|
82738
85781
|
};
|
|
82739
85782
|
export declare type TrelloWorkspace = Node & {
|
|
82740
85783
|
__typename?: 'TrelloWorkspace';
|
|
85784
|
+
aiEligible?: Maybe<Scalars['Boolean']['output']>;
|
|
82741
85785
|
creationMethod?: Maybe<Scalars['String']['output']>;
|
|
82742
85786
|
description?: Maybe<Scalars['String']['output']>;
|
|
82743
85787
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -82943,6 +85987,7 @@ export declare type UnifiedForumsBadgesConnection = UnifiedIConnection & {
|
|
|
82943
85987
|
};
|
|
82944
85988
|
export declare type UnifiedForumsGroup = UnifiedINode & {
|
|
82945
85989
|
__typename?: 'UnifiedForumsGroup';
|
|
85990
|
+
aaid?: Maybe<Scalars['String']['output']>;
|
|
82946
85991
|
avatar?: Maybe<UnifiedForumsGroupAvatar>;
|
|
82947
85992
|
description?: Maybe<Scalars['String']['output']>;
|
|
82948
85993
|
groupMemberCount?: Maybe<Scalars['Int']['output']>;
|
|
@@ -83269,6 +86314,7 @@ export declare type UnifiedProfile = UnifiedINode & {
|
|
|
83269
86314
|
gamification?: Maybe<UnifiedUGamificationResult>;
|
|
83270
86315
|
id: Scalars['ID']['output'];
|
|
83271
86316
|
internalId?: Maybe<Scalars['ID']['output']>;
|
|
86317
|
+
isLinkedView?: Maybe<Scalars['Boolean']['output']>;
|
|
83272
86318
|
isPersonalView?: Maybe<Scalars['Boolean']['output']>;
|
|
83273
86319
|
isPrivate: Scalars['Boolean']['output'];
|
|
83274
86320
|
learning?: Maybe<UnifiedULearningResult>;
|