@forge/cli-shared 6.5.1 → 6.5.2-experimental-4d5d98e
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +30 -0
- package/out/config/config-file.d.ts.map +1 -1
- package/out/config/config-file.js +49 -2
- package/out/graphql/graphql-types.d.ts +1874 -24
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +56 -16
- package/out/ui/text.d.ts +131 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +142 -2
- package/package.json +2 -2
|
@@ -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 = {
|
|
@@ -8463,6 +8481,45 @@ export declare type ConfluenceDeletePagePropertyPayload = Payload & {
|
|
|
8463
8481
|
errors?: Maybe<Array<MutationError>>;
|
|
8464
8482
|
success: Scalars['Boolean']['output'];
|
|
8465
8483
|
};
|
|
8484
|
+
export declare type ConfluenceDeleteSubCalendarAllFutureEventsInput = {
|
|
8485
|
+
recurUntil?: InputMaybe<Scalars['String']['input']>;
|
|
8486
|
+
subCalendarId: Scalars['ID']['input'];
|
|
8487
|
+
uid: Scalars['ID']['input'];
|
|
8488
|
+
};
|
|
8489
|
+
export declare type ConfluenceDeleteSubCalendarAllFutureEventsPayload = ConfluenceConflictedPayload & {
|
|
8490
|
+
__typename?: 'ConfluenceDeleteSubCalendarAllFutureEventsPayload';
|
|
8491
|
+
errors?: Maybe<Array<ConfluenceConflictedMutationError>>;
|
|
8492
|
+
success: Scalars['Boolean']['output'];
|
|
8493
|
+
};
|
|
8494
|
+
export declare type ConfluenceDeleteSubCalendarEventInput = {
|
|
8495
|
+
subCalendarId: Scalars['ID']['input'];
|
|
8496
|
+
uid: Scalars['ID']['input'];
|
|
8497
|
+
};
|
|
8498
|
+
export declare type ConfluenceDeleteSubCalendarEventPayload = ConfluenceConflictedPayload & {
|
|
8499
|
+
__typename?: 'ConfluenceDeleteSubCalendarEventPayload';
|
|
8500
|
+
errors?: Maybe<Array<ConfluenceConflictedMutationError>>;
|
|
8501
|
+
success: Scalars['Boolean']['output'];
|
|
8502
|
+
};
|
|
8503
|
+
export declare type ConfluenceDeleteSubCalendarHiddenEventsInput = {
|
|
8504
|
+
subCalendarId: Scalars['ID']['input'];
|
|
8505
|
+
};
|
|
8506
|
+
export declare type ConfluenceDeleteSubCalendarHiddenEventsPayload = ConfluenceConflictedPayload & {
|
|
8507
|
+
__typename?: 'ConfluenceDeleteSubCalendarHiddenEventsPayload';
|
|
8508
|
+
errors?: Maybe<Array<ConfluenceConflictedMutationError>>;
|
|
8509
|
+
subCalendarIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
8510
|
+
success: Scalars['Boolean']['output'];
|
|
8511
|
+
};
|
|
8512
|
+
export declare type ConfluenceDeleteSubCalendarSingleEventInput = {
|
|
8513
|
+
originalStart?: InputMaybe<Scalars['String']['input']>;
|
|
8514
|
+
recurrenceId?: InputMaybe<Scalars['ID']['input']>;
|
|
8515
|
+
subCalendarId: Scalars['ID']['input'];
|
|
8516
|
+
uid: Scalars['ID']['input'];
|
|
8517
|
+
};
|
|
8518
|
+
export declare type ConfluenceDeleteSubCalendarSingleEventPayload = ConfluenceConflictedPayload & {
|
|
8519
|
+
__typename?: 'ConfluenceDeleteSubCalendarSingleEventPayload';
|
|
8520
|
+
errors?: Maybe<Array<ConfluenceConflictedMutationError>>;
|
|
8521
|
+
success: Scalars['Boolean']['output'];
|
|
8522
|
+
};
|
|
8466
8523
|
export declare enum ConfluenceEdition {
|
|
8467
8524
|
Free = "FREE",
|
|
8468
8525
|
Premium = "PREMIUM",
|
|
@@ -8560,6 +8617,14 @@ export declare enum ConfluenceInlineTaskStatus {
|
|
|
8560
8617
|
Complete = "COMPLETE",
|
|
8561
8618
|
Incomplete = "INCOMPLETE"
|
|
8562
8619
|
}
|
|
8620
|
+
export declare type ConfluenceInviteUserInput = {
|
|
8621
|
+
inviteeIds: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
8622
|
+
};
|
|
8623
|
+
export declare type ConfluenceInviteUserPayload = {
|
|
8624
|
+
__typename?: 'ConfluenceInviteUserPayload';
|
|
8625
|
+
errors?: Maybe<Array<ConfluenceConflictedMutationError>>;
|
|
8626
|
+
success: Scalars['Boolean']['output'];
|
|
8627
|
+
};
|
|
8563
8628
|
export declare type ConfluenceLabel = {
|
|
8564
8629
|
__typename?: 'ConfluenceLabel';
|
|
8565
8630
|
id?: Maybe<Scalars['ID']['output']>;
|
|
@@ -14596,6 +14661,24 @@ export declare type ConfluenceQueryApiWhiteboardArgs = {
|
|
|
14596
14661
|
export declare type ConfluenceQueryApiWhiteboardsArgs = {
|
|
14597
14662
|
ids: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
14598
14663
|
};
|
|
14664
|
+
export declare type ConfluenceRedactionMetadata = {
|
|
14665
|
+
__typename?: 'ConfluenceRedactionMetadata';
|
|
14666
|
+
creationDate?: Maybe<Scalars['String']['output']>;
|
|
14667
|
+
creatorAccountId?: Maybe<Scalars['String']['output']>;
|
|
14668
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
14669
|
+
redactionReason?: Maybe<Scalars['String']['output']>;
|
|
14670
|
+
};
|
|
14671
|
+
export declare type ConfluenceRedactionMetadataConnection = {
|
|
14672
|
+
__typename?: 'ConfluenceRedactionMetadataConnection';
|
|
14673
|
+
edges?: Maybe<Array<Maybe<ConfluenceRedactionMetadataEdge>>>;
|
|
14674
|
+
nodes?: Maybe<Array<Maybe<ConfluenceRedactionMetadata>>>;
|
|
14675
|
+
pageInfo: PageInfo;
|
|
14676
|
+
};
|
|
14677
|
+
export declare type ConfluenceRedactionMetadataEdge = {
|
|
14678
|
+
__typename?: 'ConfluenceRedactionMetadataEdge';
|
|
14679
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
14680
|
+
node?: Maybe<ConfluenceRedactionMetadata>;
|
|
14681
|
+
};
|
|
14599
14682
|
export declare type ConfluenceReopenInlineCommentInput = {
|
|
14600
14683
|
id: Scalars['ID']['input'];
|
|
14601
14684
|
};
|
|
@@ -14821,6 +14904,15 @@ export declare type ConfluenceUpdateSpaceSettingsPayload = Payload & {
|
|
|
14821
14904
|
errors?: Maybe<Array<MutationError>>;
|
|
14822
14905
|
success: Scalars['Boolean']['output'];
|
|
14823
14906
|
};
|
|
14907
|
+
export declare type ConfluenceUpdateSubCalendarHiddenEventsInput = {
|
|
14908
|
+
subCalendarId: Scalars['ID']['input'];
|
|
14909
|
+
};
|
|
14910
|
+
export declare type ConfluenceUpdateSubCalendarHiddenEventsPayload = ConfluenceConflictedPayload & {
|
|
14911
|
+
__typename?: 'ConfluenceUpdateSubCalendarHiddenEventsPayload';
|
|
14912
|
+
errors?: Maybe<Array<ConfluenceConflictedMutationError>>;
|
|
14913
|
+
subCalendarIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
14914
|
+
success: Scalars['Boolean']['output'];
|
|
14915
|
+
};
|
|
14824
14916
|
export declare type ConfluenceUpdateValueBlogPostPropertyInput = {
|
|
14825
14917
|
blogPostId: Scalars['ID']['input'];
|
|
14826
14918
|
key: Scalars['String']['input'];
|
|
@@ -15671,7 +15763,9 @@ export declare type Content = {
|
|
|
15671
15763
|
contentReactionsSummary?: Maybe<ReactionsSummaryResponse>;
|
|
15672
15764
|
contentState?: Maybe<ContentState>;
|
|
15673
15765
|
creatorId?: Maybe<Scalars['String']['output']>;
|
|
15766
|
+
currentUserHasAncestorWatchingChildren?: Maybe<Scalars['Boolean']['output']>;
|
|
15674
15767
|
currentUserIsWatching: Scalars['Boolean']['output'];
|
|
15768
|
+
currentUserIsWatchingChildren?: Maybe<Scalars['Boolean']['output']>;
|
|
15675
15769
|
deletableDescendantsCount: Scalars['Long']['output'];
|
|
15676
15770
|
dynamicMobileBody?: Maybe<ContentBody>;
|
|
15677
15771
|
embeddedProduct?: Maybe<Scalars['String']['output']>;
|
|
@@ -15700,6 +15794,8 @@ export declare type Content = {
|
|
|
15700
15794
|
operations?: Maybe<Array<Maybe<OperationCheckResult>>>;
|
|
15701
15795
|
outgoingLinks?: Maybe<OutgoingLinks>;
|
|
15702
15796
|
properties?: Maybe<PaginatedJsonContentPropertyList>;
|
|
15797
|
+
redactionMetadata?: Maybe<ConfluenceRedactionMetadataConnection>;
|
|
15798
|
+
redactionMetadataCount?: Maybe<Scalars['Int']['output']>;
|
|
15703
15799
|
referenceId?: Maybe<Scalars['String']['output']>;
|
|
15704
15800
|
restrictions?: Maybe<ContentRestrictions>;
|
|
15705
15801
|
schedulePublishDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -15791,6 +15887,10 @@ export declare type ContentPropertiesArgs = {
|
|
|
15791
15887
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
15792
15888
|
start?: InputMaybe<Scalars['Int']['input']>;
|
|
15793
15889
|
};
|
|
15890
|
+
export declare type ContentRedactionMetadataArgs = {
|
|
15891
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
15892
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
15893
|
+
};
|
|
15794
15894
|
export declare enum ContentAccessInputType {
|
|
15795
15895
|
EveryoneCanEdit = "EVERYONE_CAN_EDIT",
|
|
15796
15896
|
EveryoneCanView = "EVERYONE_CAN_VIEW",
|
|
@@ -15818,6 +15918,7 @@ export declare type ContentAnalyticsLastViewedAtByPageItem = {
|
|
|
15818
15918
|
};
|
|
15819
15919
|
export declare type ContentAnalyticsPageViewInfo = {
|
|
15820
15920
|
__typename?: 'ContentAnalyticsPageViewInfo';
|
|
15921
|
+
isEngaged?: Maybe<Scalars['Boolean']['output']>;
|
|
15821
15922
|
lastVersionViewed: Scalars['Int']['output'];
|
|
15822
15923
|
lastVersionViewedNumber?: Maybe<Scalars['Int']['output']>;
|
|
15823
15924
|
lastVersionViewedUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -21869,6 +21970,10 @@ export declare type EarliestViewViewedForUser = {
|
|
|
21869
21970
|
datetime?: Maybe<Scalars['String']['output']>;
|
|
21870
21971
|
};
|
|
21871
21972
|
export declare type EcosystemApp = App | EcosystemConnectApp;
|
|
21973
|
+
export declare enum EcosystemAppInstallationConfigIdType {
|
|
21974
|
+
Cloud = "CLOUD",
|
|
21975
|
+
Installation = "INSTALLATION"
|
|
21976
|
+
}
|
|
21872
21977
|
export declare type EcosystemAppInstallationOverridesInput = {
|
|
21873
21978
|
licenseModes?: InputMaybe<Array<EcosystemLicenseMode>>;
|
|
21874
21979
|
usersWithAccess?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -21988,6 +22093,9 @@ export declare type EcosystemDataClassificationsContext = {
|
|
|
21988
22093
|
hasConstraints?: Maybe<Scalars['Boolean']['output']>;
|
|
21989
22094
|
id: Scalars['ID']['output'];
|
|
21990
22095
|
};
|
|
22096
|
+
export declare enum EcosystemInstallationOverrideKeys {
|
|
22097
|
+
AllowEgressAnalytics = "ALLOW_EGRESS_ANALYTICS"
|
|
22098
|
+
}
|
|
21991
22099
|
export declare enum EcosystemInstallationRecoveryMode {
|
|
21992
22100
|
FreshInstall = "FRESH_INSTALL",
|
|
21993
22101
|
RecoverPreviousInstall = "RECOVER_PREVIOUS_INSTALL"
|
|
@@ -22064,6 +22172,11 @@ export declare type EcosystemOnEventBody = {
|
|
|
22064
22172
|
__typename?: 'EcosystemOnEventBody';
|
|
22065
22173
|
payload?: Maybe<Scalars['String']['output']>;
|
|
22066
22174
|
};
|
|
22175
|
+
export declare enum EcosystemPrimaryProduct {
|
|
22176
|
+
Compass = "COMPASS",
|
|
22177
|
+
Confluence = "CONFLUENCE",
|
|
22178
|
+
Jira = "JIRA"
|
|
22179
|
+
}
|
|
22067
22180
|
export declare type EcosystemPublishEventBody = {
|
|
22068
22181
|
__typename?: 'EcosystemPublishEventBody';
|
|
22069
22182
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
@@ -28279,12 +28392,21 @@ export declare type GraphStore = {
|
|
|
28279
28392
|
componentLinkedJswIssueRelationship?: Maybe<GraphStoreFullComponentLinkedJswIssueConnection>;
|
|
28280
28393
|
confluencePageHasConfluenceComment?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceCommentConnection>;
|
|
28281
28394
|
confluencePageHasConfluenceCommentInverse?: Maybe<GraphStoreSimplifiedConfluencePageHasConfluenceCommentInverseConnection>;
|
|
28395
|
+
confluencePageHasParentPage?: Maybe<GraphStoreSimplifiedConfluencePageHasParentPageConnection>;
|
|
28396
|
+
confluencePageHasParentPageInverse?: Maybe<GraphStoreSimplifiedConfluencePageHasParentPageInverseConnection>;
|
|
28397
|
+
confluencePageSharedWithGroupInverse?: Maybe<GraphStoreSimplifiedConfluencePageSharedWithGroupInverseConnection>;
|
|
28398
|
+
confluencePageSharedWithUser?: Maybe<GraphStoreSimplifiedConfluencePageSharedWithUserConnection>;
|
|
28399
|
+
confluencePageSharedWithUserInverse?: Maybe<GraphStoreSimplifiedConfluencePageSharedWithUserInverseConnection>;
|
|
28400
|
+
confluenceSpaceHasConfluenceBlogpost?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceBlogpostConnection>;
|
|
28401
|
+
confluenceSpaceHasConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceBlogpostInverseConnection>;
|
|
28282
28402
|
contentReferencedEntity?: Maybe<GraphStoreSimplifiedContentReferencedEntityConnection>;
|
|
28283
28403
|
contentReferencedEntityBatch?: Maybe<GraphStoreBatchContentReferencedEntityConnection>;
|
|
28284
28404
|
contentReferencedEntityInverse?: Maybe<GraphStoreSimplifiedContentReferencedEntityInverseConnection>;
|
|
28285
28405
|
contentReferencedEntityInverseBatch?: Maybe<GraphStoreBatchContentReferencedEntityConnection>;
|
|
28286
28406
|
contentReferencedEntityInverseRelationship?: Maybe<GraphStoreFullContentReferencedEntityConnection>;
|
|
28287
28407
|
contentReferencedEntityRelationship?: Maybe<GraphStoreFullContentReferencedEntityConnection>;
|
|
28408
|
+
conversationHasMessage?: Maybe<GraphStoreSimplifiedConversationHasMessageConnection>;
|
|
28409
|
+
conversationHasMessageInverse?: Maybe<GraphStoreSimplifiedConversationHasMessageInverseConnection>;
|
|
28288
28410
|
cypherQuery: GraphStoreCypherQueryConnection;
|
|
28289
28411
|
deploymentContainsCommit?: Maybe<GraphStoreSimplifiedDeploymentContainsCommitConnection>;
|
|
28290
28412
|
deploymentContainsCommitInverse?: Maybe<GraphStoreSimplifiedDeploymentContainsCommitInverseConnection>;
|
|
@@ -28305,6 +28427,7 @@ export declare type GraphStore = {
|
|
|
28305
28427
|
focusAreaHasProjectBatch?: Maybe<GraphStoreBatchFocusAreaHasProjectConnection>;
|
|
28306
28428
|
focusAreaHasProjectInverse?: Maybe<GraphStoreSimplifiedFocusAreaHasProjectInverseConnection>;
|
|
28307
28429
|
focusAreaHasProjectInverseBatch?: Maybe<GraphStoreBatchFocusAreaHasProjectConnection>;
|
|
28430
|
+
groupCanViewConfluenceSpace?: Maybe<GraphStoreSimplifiedGroupCanViewConfluenceSpaceConnection>;
|
|
28308
28431
|
incidentAssociatedPostIncidentReview?: Maybe<GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewConnection>;
|
|
28309
28432
|
incidentAssociatedPostIncidentReviewBatch?: Maybe<GraphStoreBatchIncidentAssociatedPostIncidentReviewConnection>;
|
|
28310
28433
|
incidentAssociatedPostIncidentReviewInverse?: Maybe<GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewInverseConnection>;
|
|
@@ -28329,6 +28452,7 @@ export declare type GraphStore = {
|
|
|
28329
28452
|
incidentLinkedJswIssueInverseBatch?: Maybe<GraphStoreBatchIncidentLinkedJswIssueConnection>;
|
|
28330
28453
|
incidentLinkedJswIssueInverseRelationship?: Maybe<GraphStoreFullIncidentLinkedJswIssueConnection>;
|
|
28331
28454
|
incidentLinkedJswIssueRelationship?: Maybe<GraphStoreFullIncidentLinkedJswIssueConnection>;
|
|
28455
|
+
issueAssociatedBranch?: Maybe<GraphStoreSimplifiedIssueAssociatedBranchConnection>;
|
|
28332
28456
|
issueAssociatedBranchInverse?: Maybe<GraphStoreSimplifiedIssueAssociatedBranchInverseConnection>;
|
|
28333
28457
|
issueAssociatedBranchInverseRelationship?: Maybe<GraphStoreFullIssueAssociatedBranchConnection>;
|
|
28334
28458
|
issueAssociatedBranchRelationship?: Maybe<GraphStoreFullIssueAssociatedBranchConnection>;
|
|
@@ -28366,6 +28490,7 @@ export declare type GraphStore = {
|
|
|
28366
28490
|
issueAssociatedPrInverse?: Maybe<GraphStoreSimplifiedIssueAssociatedPrInverseConnection>;
|
|
28367
28491
|
issueAssociatedPrInverseRelationship?: Maybe<GraphStoreFullIssueAssociatedPrConnection>;
|
|
28368
28492
|
issueAssociatedPrRelationship?: Maybe<GraphStoreFullIssueAssociatedPrConnection>;
|
|
28493
|
+
issueAssociatedRemoteLink?: Maybe<GraphStoreSimplifiedIssueAssociatedRemoteLinkConnection>;
|
|
28369
28494
|
issueAssociatedRemoteLinkInverse?: Maybe<GraphStoreSimplifiedIssueAssociatedRemoteLinkInverseConnection>;
|
|
28370
28495
|
issueAssociatedRemoteLinkInverseRelationship?: Maybe<GraphStoreFullIssueAssociatedRemoteLinkConnection>;
|
|
28371
28496
|
issueAssociatedRemoteLinkRelationship?: Maybe<GraphStoreFullIssueAssociatedRemoteLinkConnection>;
|
|
@@ -28435,6 +28560,8 @@ export declare type GraphStore = {
|
|
|
28435
28560
|
operationsContainerImprovedByActionItemInverse?: Maybe<GraphStoreSimplifiedOperationsContainerImprovedByActionItemInverseConnection>;
|
|
28436
28561
|
operationsContainerImprovedByActionItemInverseRelationship?: Maybe<GraphStoreFullOperationsContainerImprovedByActionItemConnection>;
|
|
28437
28562
|
operationsContainerImprovedByActionItemRelationship?: Maybe<GraphStoreFullOperationsContainerImprovedByActionItemConnection>;
|
|
28563
|
+
parentCommentHasChildComment?: Maybe<GraphStoreSimplifiedParentCommentHasChildCommentConnection>;
|
|
28564
|
+
parentCommentHasChildCommentInverse?: Maybe<GraphStoreSimplifiedParentCommentHasChildCommentInverseConnection>;
|
|
28438
28565
|
parentDocumentHasChildDocument?: Maybe<GraphStoreSimplifiedParentDocumentHasChildDocumentConnection>;
|
|
28439
28566
|
parentDocumentHasChildDocumentInverse?: Maybe<GraphStoreSimplifiedParentDocumentHasChildDocumentInverseConnection>;
|
|
28440
28567
|
parentDocumentHasChildDocumentInverseRelationship?: Maybe<GraphStoreFullParentDocumentHasChildDocumentConnection>;
|
|
@@ -28443,10 +28570,15 @@ export declare type GraphStore = {
|
|
|
28443
28570
|
parentIssueHasChildIssueInverse?: Maybe<GraphStoreSimplifiedParentIssueHasChildIssueInverseConnection>;
|
|
28444
28571
|
parentIssueHasChildIssueInverseRelationship?: Maybe<GraphStoreFullParentIssueHasChildIssueConnection>;
|
|
28445
28572
|
parentIssueHasChildIssueRelationship?: Maybe<GraphStoreFullParentIssueHasChildIssueConnection>;
|
|
28573
|
+
parentMessageHasChildMessage?: Maybe<GraphStoreSimplifiedParentMessageHasChildMessageConnection>;
|
|
28574
|
+
parentMessageHasChildMessageInverse?: Maybe<GraphStoreSimplifiedParentMessageHasChildMessageInverseConnection>;
|
|
28575
|
+
positionAllocatedToFocusArea?: Maybe<GraphStoreSimplifiedPositionAllocatedToFocusAreaConnection>;
|
|
28576
|
+
positionAllocatedToFocusAreaInverse?: Maybe<GraphStoreSimplifiedPositionAllocatedToFocusAreaInverseConnection>;
|
|
28446
28577
|
prInRepo?: Maybe<GraphStoreSimplifiedPrInRepoConnection>;
|
|
28447
28578
|
prInRepoInverse?: Maybe<GraphStoreSimplifiedPrInRepoInverseConnection>;
|
|
28448
28579
|
prInRepoInverseRelationship?: Maybe<GraphStoreFullPrInRepoConnection>;
|
|
28449
28580
|
prInRepoRelationship?: Maybe<GraphStoreFullPrInRepoConnection>;
|
|
28581
|
+
projectAssociatedBranch?: Maybe<GraphStoreSimplifiedProjectAssociatedBranchConnection>;
|
|
28450
28582
|
projectAssociatedBranchInverse?: Maybe<GraphStoreSimplifiedProjectAssociatedBranchInverseConnection>;
|
|
28451
28583
|
projectAssociatedBranchInverseRelationship?: Maybe<GraphStoreFullProjectAssociatedBranchConnection>;
|
|
28452
28584
|
projectAssociatedBranchRelationship?: Maybe<GraphStoreFullProjectAssociatedBranchConnection>;
|
|
@@ -28540,6 +28672,8 @@ export declare type GraphStore = {
|
|
|
28540
28672
|
securityContainerAssociatedToVulnerabilityRelationship?: Maybe<GraphStoreFullSecurityContainerAssociatedToVulnerabilityConnection>;
|
|
28541
28673
|
serviceAssociatedDeployment?: Maybe<GraphStoreSimplifiedServiceAssociatedDeploymentConnection>;
|
|
28542
28674
|
serviceAssociatedDeploymentInverse?: Maybe<GraphStoreSimplifiedServiceAssociatedDeploymentInverseConnection>;
|
|
28675
|
+
serviceAssociatedRemoteLink?: Maybe<GraphStoreSimplifiedServiceAssociatedRemoteLinkConnection>;
|
|
28676
|
+
serviceAssociatedRemoteLinkInverse?: Maybe<GraphStoreSimplifiedServiceAssociatedRemoteLinkInverseConnection>;
|
|
28543
28677
|
serviceLinkedIncident?: Maybe<GraphStoreSimplifiedServiceLinkedIncidentConnection>;
|
|
28544
28678
|
serviceLinkedIncidentInverse?: Maybe<GraphStoreSimplifiedServiceLinkedIncidentInverseConnection>;
|
|
28545
28679
|
serviceLinkedIncidentInverseRelationship?: Maybe<GraphStoreFullServiceLinkedIncidentConnection>;
|
|
@@ -28604,20 +28738,52 @@ export declare type GraphStore = {
|
|
|
28604
28738
|
testPerfhammerRelationshipRelationship?: Maybe<GraphStoreFullTestPerfhammerRelationshipConnection>;
|
|
28605
28739
|
userAssignedIncident?: Maybe<GraphStoreSimplifiedUserAssignedIncidentConnection>;
|
|
28606
28740
|
userAssignedIncidentInverse?: Maybe<GraphStoreSimplifiedUserAssignedIncidentInverseConnection>;
|
|
28741
|
+
userAttendedCalendarEvent?: Maybe<GraphStoreSimplifiedUserAttendedCalendarEventConnection>;
|
|
28742
|
+
userAttendedCalendarEventInverse?: Maybe<GraphStoreSimplifiedUserAttendedCalendarEventInverseConnection>;
|
|
28743
|
+
userAuthoredCommit?: Maybe<GraphStoreSimplifiedUserAuthoredCommitConnection>;
|
|
28744
|
+
userAuthoredCommitInverse?: Maybe<GraphStoreSimplifiedUserAuthoredCommitInverseConnection>;
|
|
28607
28745
|
userAuthoredPr?: Maybe<GraphStoreSimplifiedUserAuthoredPrConnection>;
|
|
28608
28746
|
userAuthoredPrInverse?: Maybe<GraphStoreSimplifiedUserAuthoredPrInverseConnection>;
|
|
28747
|
+
userCanViewConfluenceSpace?: Maybe<GraphStoreSimplifiedUserCanViewConfluenceSpaceConnection>;
|
|
28748
|
+
userCanViewConfluenceSpaceInverse?: Maybe<GraphStoreSimplifiedUserCanViewConfluenceSpaceInverseConnection>;
|
|
28749
|
+
userContributedConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserContributedConfluenceBlogpostConnection>;
|
|
28750
|
+
userContributedConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserContributedConfluenceBlogpostInverseConnection>;
|
|
28751
|
+
userContributedConfluencePage?: Maybe<GraphStoreSimplifiedUserContributedConfluencePageConnection>;
|
|
28752
|
+
userContributedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserContributedConfluencePageInverseConnection>;
|
|
28753
|
+
userCreatedBranch?: Maybe<GraphStoreSimplifiedUserCreatedBranchConnection>;
|
|
28754
|
+
userCreatedBranchInverse?: Maybe<GraphStoreSimplifiedUserCreatedBranchInverseConnection>;
|
|
28609
28755
|
userCreatedConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostConnection>;
|
|
28610
28756
|
userCreatedConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostInverseConnection>;
|
|
28611
28757
|
userCreatedConfluencePage?: Maybe<GraphStoreSimplifiedUserCreatedConfluencePageConnection>;
|
|
28612
28758
|
userCreatedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluencePageInverseConnection>;
|
|
28759
|
+
userCreatedLoomVideo?: Maybe<GraphStoreSimplifiedUserCreatedLoomVideoConnection>;
|
|
28760
|
+
userCreatedLoomVideoInverse?: Maybe<GraphStoreSimplifiedUserCreatedLoomVideoInverseConnection>;
|
|
28761
|
+
userCreatedMessage?: Maybe<GraphStoreSimplifiedUserCreatedMessageConnection>;
|
|
28762
|
+
userCreatedMessageInverse?: Maybe<GraphStoreSimplifiedUserCreatedMessageInverseConnection>;
|
|
28763
|
+
userCreatedRepository?: Maybe<GraphStoreSimplifiedUserCreatedRepositoryConnection>;
|
|
28764
|
+
userCreatedRepositoryInverse?: Maybe<GraphStoreSimplifiedUserCreatedRepositoryInverseConnection>;
|
|
28765
|
+
userFavoritedConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserFavoritedConfluenceBlogpostConnection>;
|
|
28766
|
+
userFavoritedConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserFavoritedConfluenceBlogpostInverseConnection>;
|
|
28767
|
+
userFavoritedConfluencePage?: Maybe<GraphStoreSimplifiedUserFavoritedConfluencePageConnection>;
|
|
28768
|
+
userFavoritedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserFavoritedConfluencePageInverseConnection>;
|
|
28613
28769
|
userHasRelevantProject?: Maybe<GraphStoreSimplifiedUserHasRelevantProjectConnection>;
|
|
28614
28770
|
userHasRelevantProjectInverse?: Maybe<GraphStoreSimplifiedUserHasRelevantProjectInverseConnection>;
|
|
28615
28771
|
userHasTopProject?: Maybe<GraphStoreSimplifiedUserHasTopProjectConnection>;
|
|
28616
28772
|
userHasTopProjectInverse?: Maybe<GraphStoreSimplifiedUserHasTopProjectInverseConnection>;
|
|
28617
28773
|
userIsInTeam?: Maybe<GraphStoreSimplifiedUserIsInTeamConnection>;
|
|
28618
28774
|
userIsInTeamInverse?: Maybe<GraphStoreSimplifiedUserIsInTeamInverseConnection>;
|
|
28775
|
+
userMemberOfConversation?: Maybe<GraphStoreSimplifiedUserMemberOfConversationConnection>;
|
|
28776
|
+
userMemberOfConversationInverse?: Maybe<GraphStoreSimplifiedUserMemberOfConversationInverseConnection>;
|
|
28619
28777
|
userMergedPullRequest?: Maybe<GraphStoreSimplifiedUserMergedPullRequestConnection>;
|
|
28620
28778
|
userMergedPullRequestInverse?: Maybe<GraphStoreSimplifiedUserMergedPullRequestInverseConnection>;
|
|
28779
|
+
userOwnedBranch?: Maybe<GraphStoreSimplifiedUserOwnedBranchConnection>;
|
|
28780
|
+
userOwnedBranchInverse?: Maybe<GraphStoreSimplifiedUserOwnedBranchInverseConnection>;
|
|
28781
|
+
userOwnedCalendarEvent?: Maybe<GraphStoreSimplifiedUserOwnedCalendarEventConnection>;
|
|
28782
|
+
userOwnedCalendarEventInverse?: Maybe<GraphStoreSimplifiedUserOwnedCalendarEventInverseConnection>;
|
|
28783
|
+
userOwnedRemoteLink?: Maybe<GraphStoreSimplifiedUserOwnedRemoteLinkConnection>;
|
|
28784
|
+
userOwnedRemoteLinkInverse?: Maybe<GraphStoreSimplifiedUserOwnedRemoteLinkInverseConnection>;
|
|
28785
|
+
userOwnedRepository?: Maybe<GraphStoreSimplifiedUserOwnedRepositoryConnection>;
|
|
28786
|
+
userOwnedRepositoryInverse?: Maybe<GraphStoreSimplifiedUserOwnedRepositoryInverseConnection>;
|
|
28621
28787
|
userOwnsComponent?: Maybe<GraphStoreSimplifiedUserOwnsComponentConnection>;
|
|
28622
28788
|
userOwnsComponentInverse?: Maybe<GraphStoreSimplifiedUserOwnsComponentInverseConnection>;
|
|
28623
28789
|
userReportedIncident?: Maybe<GraphStoreSimplifiedUserReportedIncidentConnection>;
|
|
@@ -28626,10 +28792,16 @@ export declare type GraphStore = {
|
|
|
28626
28792
|
userReportsIssueInverse?: Maybe<GraphStoreSimplifiedUserReportsIssueInverseConnection>;
|
|
28627
28793
|
userReviewsPr?: Maybe<GraphStoreSimplifiedUserReviewsPrConnection>;
|
|
28628
28794
|
userReviewsPrInverse?: Maybe<GraphStoreSimplifiedUserReviewsPrInverseConnection>;
|
|
28795
|
+
userTaggedInComment?: Maybe<GraphStoreSimplifiedUserTaggedInCommentConnection>;
|
|
28796
|
+
userTaggedInCommentInverse?: Maybe<GraphStoreSimplifiedUserTaggedInCommentInverseConnection>;
|
|
28797
|
+
userTriggeredDeployment?: Maybe<GraphStoreSimplifiedUserTriggeredDeploymentConnection>;
|
|
28798
|
+
userTriggeredDeploymentInverse?: Maybe<GraphStoreSimplifiedUserTriggeredDeploymentInverseConnection>;
|
|
28629
28799
|
userUpdatedConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostConnection>;
|
|
28630
28800
|
userUpdatedConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostInverseConnection>;
|
|
28631
28801
|
userUpdatedConfluencePage?: Maybe<GraphStoreSimplifiedUserUpdatedConfluencePageConnection>;
|
|
28632
28802
|
userUpdatedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserUpdatedConfluencePageInverseConnection>;
|
|
28803
|
+
userUpdatedConfluenceSpace?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceSpaceConnection>;
|
|
28804
|
+
userUpdatedConfluenceSpaceInverse?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceSpaceInverseConnection>;
|
|
28633
28805
|
userViewedAtlasGoal?: Maybe<GraphStoreSimplifiedUserViewedAtlasGoalConnection>;
|
|
28634
28806
|
userViewedAtlasGoalInverse?: Maybe<GraphStoreSimplifiedUserViewedAtlasGoalInverseConnection>;
|
|
28635
28807
|
userViewedAtlasProject?: Maybe<GraphStoreSimplifiedUserViewedAtlasProjectConnection>;
|
|
@@ -28640,6 +28812,11 @@ export declare type GraphStore = {
|
|
|
28640
28812
|
userViewedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserViewedConfluencePageInverseConnection>;
|
|
28641
28813
|
userViewedJiraIssue?: Maybe<GraphStoreSimplifiedUserViewedJiraIssueConnection>;
|
|
28642
28814
|
userViewedJiraIssueInverse?: Maybe<GraphStoreSimplifiedUserViewedJiraIssueInverseConnection>;
|
|
28815
|
+
userWatchesConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserWatchesConfluenceBlogpostConnection>;
|
|
28816
|
+
userWatchesConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserWatchesConfluenceBlogpostInverseConnection>;
|
|
28817
|
+
userWatchesConfluencePage?: Maybe<GraphStoreSimplifiedUserWatchesConfluencePageConnection>;
|
|
28818
|
+
userWatchesConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserWatchesConfluencePageInverseConnection>;
|
|
28819
|
+
versionAssociatedBranch?: Maybe<GraphStoreSimplifiedVersionAssociatedBranchConnection>;
|
|
28643
28820
|
versionAssociatedBranchInverse?: Maybe<GraphStoreSimplifiedVersionAssociatedBranchInverseConnection>;
|
|
28644
28821
|
versionAssociatedBranchInverseRelationship?: Maybe<GraphStoreFullVersionAssociatedBranchConnection>;
|
|
28645
28822
|
versionAssociatedBranchRelationship?: Maybe<GraphStoreFullVersionAssociatedBranchConnection>;
|
|
@@ -28671,6 +28848,7 @@ export declare type GraphStore = {
|
|
|
28671
28848
|
versionAssociatedPullRequestInverse?: Maybe<GraphStoreSimplifiedVersionAssociatedPullRequestInverseConnection>;
|
|
28672
28849
|
versionAssociatedPullRequestInverseRelationship?: Maybe<GraphStoreFullVersionAssociatedPullRequestConnection>;
|
|
28673
28850
|
versionAssociatedPullRequestRelationship?: Maybe<GraphStoreFullVersionAssociatedPullRequestConnection>;
|
|
28851
|
+
versionAssociatedRemoteLink?: Maybe<GraphStoreSimplifiedVersionAssociatedRemoteLinkConnection>;
|
|
28674
28852
|
versionAssociatedRemoteLinkInverse?: Maybe<GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseConnection>;
|
|
28675
28853
|
versionAssociatedRemoteLinkInverseRelationship?: Maybe<GraphStoreFullVersionAssociatedRemoteLinkConnection>;
|
|
28676
28854
|
versionAssociatedRemoteLinkRelationship?: Maybe<GraphStoreFullVersionAssociatedRemoteLinkConnection>;
|
|
@@ -28974,6 +29152,55 @@ export declare type GraphStoreConfluencePageHasConfluenceCommentInverseArgs = {
|
|
|
28974
29152
|
id: Scalars['ID']['input'];
|
|
28975
29153
|
sort?: InputMaybe<GraphStoreConfluencePageHasConfluenceCommentSortInput>;
|
|
28976
29154
|
};
|
|
29155
|
+
export declare type GraphStoreConfluencePageHasParentPageArgs = {
|
|
29156
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
29157
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
29158
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29159
|
+
id: Scalars['ID']['input'];
|
|
29160
|
+
sort?: InputMaybe<GraphStoreConfluencePageHasParentPageSortInput>;
|
|
29161
|
+
};
|
|
29162
|
+
export declare type GraphStoreConfluencePageHasParentPageInverseArgs = {
|
|
29163
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
29164
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
29165
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29166
|
+
id: Scalars['ID']['input'];
|
|
29167
|
+
sort?: InputMaybe<GraphStoreConfluencePageHasParentPageSortInput>;
|
|
29168
|
+
};
|
|
29169
|
+
export declare type GraphStoreConfluencePageSharedWithGroupInverseArgs = {
|
|
29170
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
29171
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
29172
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29173
|
+
id: Scalars['ID']['input'];
|
|
29174
|
+
sort?: InputMaybe<GraphStoreConfluencePageSharedWithGroupSortInput>;
|
|
29175
|
+
};
|
|
29176
|
+
export declare type GraphStoreConfluencePageSharedWithUserArgs = {
|
|
29177
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
29178
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
29179
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29180
|
+
id: Scalars['ID']['input'];
|
|
29181
|
+
sort?: InputMaybe<GraphStoreConfluencePageSharedWithUserSortInput>;
|
|
29182
|
+
};
|
|
29183
|
+
export declare type GraphStoreConfluencePageSharedWithUserInverseArgs = {
|
|
29184
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
29185
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
29186
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29187
|
+
id: Scalars['ID']['input'];
|
|
29188
|
+
sort?: InputMaybe<GraphStoreConfluencePageSharedWithUserSortInput>;
|
|
29189
|
+
};
|
|
29190
|
+
export declare type GraphStoreConfluenceSpaceHasConfluenceBlogpostArgs = {
|
|
29191
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
29192
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
29193
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29194
|
+
id: Scalars['ID']['input'];
|
|
29195
|
+
sort?: InputMaybe<GraphStoreConfluenceSpaceHasConfluenceBlogpostSortInput>;
|
|
29196
|
+
};
|
|
29197
|
+
export declare type GraphStoreConfluenceSpaceHasConfluenceBlogpostInverseArgs = {
|
|
29198
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
29199
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
29200
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29201
|
+
id: Scalars['ID']['input'];
|
|
29202
|
+
sort?: InputMaybe<GraphStoreConfluenceSpaceHasConfluenceBlogpostSortInput>;
|
|
29203
|
+
};
|
|
28977
29204
|
export declare type GraphStoreContentReferencedEntityArgs = {
|
|
28978
29205
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
28979
29206
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -29010,6 +29237,20 @@ export declare type GraphStoreContentReferencedEntityRelationshipArgs = {
|
|
|
29010
29237
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29011
29238
|
id: Scalars['ID']['input'];
|
|
29012
29239
|
};
|
|
29240
|
+
export declare type GraphStoreConversationHasMessageArgs = {
|
|
29241
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
29242
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
29243
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29244
|
+
id: Scalars['ID']['input'];
|
|
29245
|
+
sort?: InputMaybe<GraphStoreConversationHasMessageSortInput>;
|
|
29246
|
+
};
|
|
29247
|
+
export declare type GraphStoreConversationHasMessageInverseArgs = {
|
|
29248
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
29249
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
29250
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29251
|
+
id: Scalars['ID']['input'];
|
|
29252
|
+
sort?: InputMaybe<GraphStoreConversationHasMessageSortInput>;
|
|
29253
|
+
};
|
|
29013
29254
|
export declare type GraphStoreCypherQueryArgs = {
|
|
29014
29255
|
additionalInputs?: InputMaybe<Scalars['JSON']['input']>;
|
|
29015
29256
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -29140,6 +29381,13 @@ export declare type GraphStoreFocusAreaHasProjectInverseBatchArgs = {
|
|
|
29140
29381
|
ids: Array<Scalars['ID']['input']>;
|
|
29141
29382
|
sort?: InputMaybe<GraphStoreFocusAreaHasProjectSortInput>;
|
|
29142
29383
|
};
|
|
29384
|
+
export declare type GraphStoreGroupCanViewConfluenceSpaceArgs = {
|
|
29385
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
29386
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
29387
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29388
|
+
id: Scalars['ID']['input'];
|
|
29389
|
+
sort?: InputMaybe<GraphStoreGroupCanViewConfluenceSpaceSortInput>;
|
|
29390
|
+
};
|
|
29143
29391
|
export declare type GraphStoreIncidentAssociatedPostIncidentReviewArgs = {
|
|
29144
29392
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
29145
29393
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -29284,6 +29532,13 @@ export declare type GraphStoreIncidentLinkedJswIssueRelationshipArgs = {
|
|
|
29284
29532
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29285
29533
|
id: Scalars['ID']['input'];
|
|
29286
29534
|
};
|
|
29535
|
+
export declare type GraphStoreIssueAssociatedBranchArgs = {
|
|
29536
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
29537
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
29538
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29539
|
+
id: Scalars['ID']['input'];
|
|
29540
|
+
sort?: InputMaybe<GraphStoreIssueAssociatedBranchSortInput>;
|
|
29541
|
+
};
|
|
29287
29542
|
export declare type GraphStoreIssueAssociatedBranchInverseArgs = {
|
|
29288
29543
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
29289
29544
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -29513,6 +29768,13 @@ export declare type GraphStoreIssueAssociatedPrRelationshipArgs = {
|
|
|
29513
29768
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29514
29769
|
id: Scalars['ID']['input'];
|
|
29515
29770
|
};
|
|
29771
|
+
export declare type GraphStoreIssueAssociatedRemoteLinkArgs = {
|
|
29772
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
29773
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
29774
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29775
|
+
id: Scalars['ID']['input'];
|
|
29776
|
+
sort?: InputMaybe<GraphStoreIssueAssociatedRemoteLinkSortInput>;
|
|
29777
|
+
};
|
|
29516
29778
|
export declare type GraphStoreIssueAssociatedRemoteLinkInverseArgs = {
|
|
29517
29779
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
29518
29780
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -29938,6 +30200,20 @@ export declare type GraphStoreOperationsContainerImprovedByActionItemRelationshi
|
|
|
29938
30200
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29939
30201
|
id: Scalars['ID']['input'];
|
|
29940
30202
|
};
|
|
30203
|
+
export declare type GraphStoreParentCommentHasChildCommentArgs = {
|
|
30204
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30205
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30206
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30207
|
+
id: Scalars['ID']['input'];
|
|
30208
|
+
sort?: InputMaybe<GraphStoreParentCommentHasChildCommentSortInput>;
|
|
30209
|
+
};
|
|
30210
|
+
export declare type GraphStoreParentCommentHasChildCommentInverseArgs = {
|
|
30211
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30212
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30213
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30214
|
+
id: Scalars['ID']['input'];
|
|
30215
|
+
sort?: InputMaybe<GraphStoreParentCommentHasChildCommentSortInput>;
|
|
30216
|
+
};
|
|
29941
30217
|
export declare type GraphStoreParentDocumentHasChildDocumentArgs = {
|
|
29942
30218
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
29943
30219
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -29986,6 +30262,34 @@ export declare type GraphStoreParentIssueHasChildIssueRelationshipArgs = {
|
|
|
29986
30262
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29987
30263
|
id: Scalars['ID']['input'];
|
|
29988
30264
|
};
|
|
30265
|
+
export declare type GraphStoreParentMessageHasChildMessageArgs = {
|
|
30266
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30267
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30268
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30269
|
+
id: Scalars['ID']['input'];
|
|
30270
|
+
sort?: InputMaybe<GraphStoreParentMessageHasChildMessageSortInput>;
|
|
30271
|
+
};
|
|
30272
|
+
export declare type GraphStoreParentMessageHasChildMessageInverseArgs = {
|
|
30273
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30274
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30275
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30276
|
+
id: Scalars['ID']['input'];
|
|
30277
|
+
sort?: InputMaybe<GraphStoreParentMessageHasChildMessageSortInput>;
|
|
30278
|
+
};
|
|
30279
|
+
export declare type GraphStorePositionAllocatedToFocusAreaArgs = {
|
|
30280
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30281
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30282
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30283
|
+
id: Scalars['ID']['input'];
|
|
30284
|
+
sort?: InputMaybe<GraphStorePositionAllocatedToFocusAreaSortInput>;
|
|
30285
|
+
};
|
|
30286
|
+
export declare type GraphStorePositionAllocatedToFocusAreaInverseArgs = {
|
|
30287
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30288
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30289
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30290
|
+
id: Scalars['ID']['input'];
|
|
30291
|
+
sort?: InputMaybe<GraphStorePositionAllocatedToFocusAreaSortInput>;
|
|
30292
|
+
};
|
|
29989
30293
|
export declare type GraphStorePrInRepoArgs = {
|
|
29990
30294
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
29991
30295
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -30010,6 +30314,13 @@ export declare type GraphStorePrInRepoRelationshipArgs = {
|
|
|
30010
30314
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30011
30315
|
id: Scalars['ID']['input'];
|
|
30012
30316
|
};
|
|
30317
|
+
export declare type GraphStoreProjectAssociatedBranchArgs = {
|
|
30318
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30319
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30320
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30321
|
+
id: Scalars['ID']['input'];
|
|
30322
|
+
sort?: InputMaybe<GraphStoreProjectAssociatedBranchSortInput>;
|
|
30323
|
+
};
|
|
30013
30324
|
export declare type GraphStoreProjectAssociatedBranchInverseArgs = {
|
|
30014
30325
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30015
30326
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -30607,6 +30918,20 @@ export declare type GraphStoreServiceAssociatedDeploymentInverseArgs = {
|
|
|
30607
30918
|
id: Scalars['ID']['input'];
|
|
30608
30919
|
sort?: InputMaybe<GraphStoreServiceAssociatedDeploymentSortInput>;
|
|
30609
30920
|
};
|
|
30921
|
+
export declare type GraphStoreServiceAssociatedRemoteLinkArgs = {
|
|
30922
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30923
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30924
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30925
|
+
id: Scalars['ID']['input'];
|
|
30926
|
+
sort?: InputMaybe<GraphStoreServiceAssociatedRemoteLinkSortInput>;
|
|
30927
|
+
};
|
|
30928
|
+
export declare type GraphStoreServiceAssociatedRemoteLinkInverseArgs = {
|
|
30929
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30930
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30931
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30932
|
+
id: Scalars['ID']['input'];
|
|
30933
|
+
sort?: InputMaybe<GraphStoreServiceAssociatedRemoteLinkSortInput>;
|
|
30934
|
+
};
|
|
30610
30935
|
export declare type GraphStoreServiceLinkedIncidentArgs = {
|
|
30611
30936
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30612
30937
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31028,6 +31353,34 @@ export declare type GraphStoreUserAssignedIncidentInverseArgs = {
|
|
|
31028
31353
|
id: Scalars['ID']['input'];
|
|
31029
31354
|
sort?: InputMaybe<GraphStoreUserAssignedIncidentSortInput>;
|
|
31030
31355
|
};
|
|
31356
|
+
export declare type GraphStoreUserAttendedCalendarEventArgs = {
|
|
31357
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31358
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31359
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31360
|
+
id: Scalars['ID']['input'];
|
|
31361
|
+
sort?: InputMaybe<GraphStoreUserAttendedCalendarEventSortInput>;
|
|
31362
|
+
};
|
|
31363
|
+
export declare type GraphStoreUserAttendedCalendarEventInverseArgs = {
|
|
31364
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31365
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31366
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31367
|
+
id: Scalars['ID']['input'];
|
|
31368
|
+
sort?: InputMaybe<GraphStoreUserAttendedCalendarEventSortInput>;
|
|
31369
|
+
};
|
|
31370
|
+
export declare type GraphStoreUserAuthoredCommitArgs = {
|
|
31371
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31372
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31373
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31374
|
+
id: Scalars['ID']['input'];
|
|
31375
|
+
sort?: InputMaybe<GraphStoreUserAuthoredCommitSortInput>;
|
|
31376
|
+
};
|
|
31377
|
+
export declare type GraphStoreUserAuthoredCommitInverseArgs = {
|
|
31378
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31379
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31380
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31381
|
+
id: Scalars['ID']['input'];
|
|
31382
|
+
sort?: InputMaybe<GraphStoreUserAuthoredCommitSortInput>;
|
|
31383
|
+
};
|
|
31031
31384
|
export declare type GraphStoreUserAuthoredPrArgs = {
|
|
31032
31385
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31033
31386
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31042,6 +31395,62 @@ export declare type GraphStoreUserAuthoredPrInverseArgs = {
|
|
|
31042
31395
|
id: Scalars['ID']['input'];
|
|
31043
31396
|
sort?: InputMaybe<GraphStoreUserAuthoredPrSortInput>;
|
|
31044
31397
|
};
|
|
31398
|
+
export declare type GraphStoreUserCanViewConfluenceSpaceArgs = {
|
|
31399
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31400
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31401
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31402
|
+
id: Scalars['ID']['input'];
|
|
31403
|
+
sort?: InputMaybe<GraphStoreUserCanViewConfluenceSpaceSortInput>;
|
|
31404
|
+
};
|
|
31405
|
+
export declare type GraphStoreUserCanViewConfluenceSpaceInverseArgs = {
|
|
31406
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31407
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31408
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31409
|
+
id: Scalars['ID']['input'];
|
|
31410
|
+
sort?: InputMaybe<GraphStoreUserCanViewConfluenceSpaceSortInput>;
|
|
31411
|
+
};
|
|
31412
|
+
export declare type GraphStoreUserContributedConfluenceBlogpostArgs = {
|
|
31413
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31414
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31415
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31416
|
+
id: Scalars['ID']['input'];
|
|
31417
|
+
sort?: InputMaybe<GraphStoreUserContributedConfluenceBlogpostSortInput>;
|
|
31418
|
+
};
|
|
31419
|
+
export declare type GraphStoreUserContributedConfluenceBlogpostInverseArgs = {
|
|
31420
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31421
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31422
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31423
|
+
id: Scalars['ID']['input'];
|
|
31424
|
+
sort?: InputMaybe<GraphStoreUserContributedConfluenceBlogpostSortInput>;
|
|
31425
|
+
};
|
|
31426
|
+
export declare type GraphStoreUserContributedConfluencePageArgs = {
|
|
31427
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31428
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31429
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31430
|
+
id: Scalars['ID']['input'];
|
|
31431
|
+
sort?: InputMaybe<GraphStoreUserContributedConfluencePageSortInput>;
|
|
31432
|
+
};
|
|
31433
|
+
export declare type GraphStoreUserContributedConfluencePageInverseArgs = {
|
|
31434
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31435
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31436
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31437
|
+
id: Scalars['ID']['input'];
|
|
31438
|
+
sort?: InputMaybe<GraphStoreUserContributedConfluencePageSortInput>;
|
|
31439
|
+
};
|
|
31440
|
+
export declare type GraphStoreUserCreatedBranchArgs = {
|
|
31441
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31442
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31443
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31444
|
+
id: Scalars['ID']['input'];
|
|
31445
|
+
sort?: InputMaybe<GraphStoreUserCreatedBranchSortInput>;
|
|
31446
|
+
};
|
|
31447
|
+
export declare type GraphStoreUserCreatedBranchInverseArgs = {
|
|
31448
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31449
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31450
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31451
|
+
id: Scalars['ID']['input'];
|
|
31452
|
+
sort?: InputMaybe<GraphStoreUserCreatedBranchSortInput>;
|
|
31453
|
+
};
|
|
31045
31454
|
export declare type GraphStoreUserCreatedConfluenceBlogpostArgs = {
|
|
31046
31455
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31047
31456
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31070,6 +31479,76 @@ export declare type GraphStoreUserCreatedConfluencePageInverseArgs = {
|
|
|
31070
31479
|
id: Scalars['ID']['input'];
|
|
31071
31480
|
sort?: InputMaybe<GraphStoreUserCreatedConfluencePageSortInput>;
|
|
31072
31481
|
};
|
|
31482
|
+
export declare type GraphStoreUserCreatedLoomVideoArgs = {
|
|
31483
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31484
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31485
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31486
|
+
id: Scalars['ID']['input'];
|
|
31487
|
+
sort?: InputMaybe<GraphStoreUserCreatedLoomVideoSortInput>;
|
|
31488
|
+
};
|
|
31489
|
+
export declare type GraphStoreUserCreatedLoomVideoInverseArgs = {
|
|
31490
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31491
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31492
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31493
|
+
id: Scalars['ID']['input'];
|
|
31494
|
+
sort?: InputMaybe<GraphStoreUserCreatedLoomVideoSortInput>;
|
|
31495
|
+
};
|
|
31496
|
+
export declare type GraphStoreUserCreatedMessageArgs = {
|
|
31497
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31498
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31499
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31500
|
+
id: Scalars['ID']['input'];
|
|
31501
|
+
sort?: InputMaybe<GraphStoreUserCreatedMessageSortInput>;
|
|
31502
|
+
};
|
|
31503
|
+
export declare type GraphStoreUserCreatedMessageInverseArgs = {
|
|
31504
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31505
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31506
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31507
|
+
id: Scalars['ID']['input'];
|
|
31508
|
+
sort?: InputMaybe<GraphStoreUserCreatedMessageSortInput>;
|
|
31509
|
+
};
|
|
31510
|
+
export declare type GraphStoreUserCreatedRepositoryArgs = {
|
|
31511
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31512
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31513
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31514
|
+
id: Scalars['ID']['input'];
|
|
31515
|
+
sort?: InputMaybe<GraphStoreUserCreatedRepositorySortInput>;
|
|
31516
|
+
};
|
|
31517
|
+
export declare type GraphStoreUserCreatedRepositoryInverseArgs = {
|
|
31518
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31519
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31520
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31521
|
+
id: Scalars['ID']['input'];
|
|
31522
|
+
sort?: InputMaybe<GraphStoreUserCreatedRepositorySortInput>;
|
|
31523
|
+
};
|
|
31524
|
+
export declare type GraphStoreUserFavoritedConfluenceBlogpostArgs = {
|
|
31525
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31526
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31527
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31528
|
+
id: Scalars['ID']['input'];
|
|
31529
|
+
sort?: InputMaybe<GraphStoreUserFavoritedConfluenceBlogpostSortInput>;
|
|
31530
|
+
};
|
|
31531
|
+
export declare type GraphStoreUserFavoritedConfluenceBlogpostInverseArgs = {
|
|
31532
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31533
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31534
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31535
|
+
id: Scalars['ID']['input'];
|
|
31536
|
+
sort?: InputMaybe<GraphStoreUserFavoritedConfluenceBlogpostSortInput>;
|
|
31537
|
+
};
|
|
31538
|
+
export declare type GraphStoreUserFavoritedConfluencePageArgs = {
|
|
31539
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31540
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31541
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31542
|
+
id: Scalars['ID']['input'];
|
|
31543
|
+
sort?: InputMaybe<GraphStoreUserFavoritedConfluencePageSortInput>;
|
|
31544
|
+
};
|
|
31545
|
+
export declare type GraphStoreUserFavoritedConfluencePageInverseArgs = {
|
|
31546
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31547
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31548
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31549
|
+
id: Scalars['ID']['input'];
|
|
31550
|
+
sort?: InputMaybe<GraphStoreUserFavoritedConfluencePageSortInput>;
|
|
31551
|
+
};
|
|
31073
31552
|
export declare type GraphStoreUserHasRelevantProjectArgs = {
|
|
31074
31553
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31075
31554
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31112,6 +31591,20 @@ export declare type GraphStoreUserIsInTeamInverseArgs = {
|
|
|
31112
31591
|
id: Scalars['ID']['input'];
|
|
31113
31592
|
sort?: InputMaybe<GraphStoreUserIsInTeamSortInput>;
|
|
31114
31593
|
};
|
|
31594
|
+
export declare type GraphStoreUserMemberOfConversationArgs = {
|
|
31595
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31596
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31597
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31598
|
+
id: Scalars['ID']['input'];
|
|
31599
|
+
sort?: InputMaybe<GraphStoreUserMemberOfConversationSortInput>;
|
|
31600
|
+
};
|
|
31601
|
+
export declare type GraphStoreUserMemberOfConversationInverseArgs = {
|
|
31602
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31603
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31604
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31605
|
+
id: Scalars['ID']['input'];
|
|
31606
|
+
sort?: InputMaybe<GraphStoreUserMemberOfConversationSortInput>;
|
|
31607
|
+
};
|
|
31115
31608
|
export declare type GraphStoreUserMergedPullRequestArgs = {
|
|
31116
31609
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31117
31610
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31126,6 +31619,62 @@ export declare type GraphStoreUserMergedPullRequestInverseArgs = {
|
|
|
31126
31619
|
id: Scalars['ID']['input'];
|
|
31127
31620
|
sort?: InputMaybe<GraphStoreUserMergedPullRequestSortInput>;
|
|
31128
31621
|
};
|
|
31622
|
+
export declare type GraphStoreUserOwnedBranchArgs = {
|
|
31623
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31624
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31625
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31626
|
+
id: Scalars['ID']['input'];
|
|
31627
|
+
sort?: InputMaybe<GraphStoreUserOwnedBranchSortInput>;
|
|
31628
|
+
};
|
|
31629
|
+
export declare type GraphStoreUserOwnedBranchInverseArgs = {
|
|
31630
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31631
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31632
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31633
|
+
id: Scalars['ID']['input'];
|
|
31634
|
+
sort?: InputMaybe<GraphStoreUserOwnedBranchSortInput>;
|
|
31635
|
+
};
|
|
31636
|
+
export declare type GraphStoreUserOwnedCalendarEventArgs = {
|
|
31637
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31638
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31639
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31640
|
+
id: Scalars['ID']['input'];
|
|
31641
|
+
sort?: InputMaybe<GraphStoreUserOwnedCalendarEventSortInput>;
|
|
31642
|
+
};
|
|
31643
|
+
export declare type GraphStoreUserOwnedCalendarEventInverseArgs = {
|
|
31644
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31645
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31646
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31647
|
+
id: Scalars['ID']['input'];
|
|
31648
|
+
sort?: InputMaybe<GraphStoreUserOwnedCalendarEventSortInput>;
|
|
31649
|
+
};
|
|
31650
|
+
export declare type GraphStoreUserOwnedRemoteLinkArgs = {
|
|
31651
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31652
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31653
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31654
|
+
id: Scalars['ID']['input'];
|
|
31655
|
+
sort?: InputMaybe<GraphStoreUserOwnedRemoteLinkSortInput>;
|
|
31656
|
+
};
|
|
31657
|
+
export declare type GraphStoreUserOwnedRemoteLinkInverseArgs = {
|
|
31658
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31659
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31660
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31661
|
+
id: Scalars['ID']['input'];
|
|
31662
|
+
sort?: InputMaybe<GraphStoreUserOwnedRemoteLinkSortInput>;
|
|
31663
|
+
};
|
|
31664
|
+
export declare type GraphStoreUserOwnedRepositoryArgs = {
|
|
31665
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31666
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31667
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31668
|
+
id: Scalars['ID']['input'];
|
|
31669
|
+
sort?: InputMaybe<GraphStoreUserOwnedRepositorySortInput>;
|
|
31670
|
+
};
|
|
31671
|
+
export declare type GraphStoreUserOwnedRepositoryInverseArgs = {
|
|
31672
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31673
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31674
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31675
|
+
id: Scalars['ID']['input'];
|
|
31676
|
+
sort?: InputMaybe<GraphStoreUserOwnedRepositorySortInput>;
|
|
31677
|
+
};
|
|
31129
31678
|
export declare type GraphStoreUserOwnsComponentArgs = {
|
|
31130
31679
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31131
31680
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31182,6 +31731,34 @@ export declare type GraphStoreUserReviewsPrInverseArgs = {
|
|
|
31182
31731
|
id: Scalars['ID']['input'];
|
|
31183
31732
|
sort?: InputMaybe<GraphStoreUserReviewsPrSortInput>;
|
|
31184
31733
|
};
|
|
31734
|
+
export declare type GraphStoreUserTaggedInCommentArgs = {
|
|
31735
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31736
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31737
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31738
|
+
id: Scalars['ID']['input'];
|
|
31739
|
+
sort?: InputMaybe<GraphStoreUserTaggedInCommentSortInput>;
|
|
31740
|
+
};
|
|
31741
|
+
export declare type GraphStoreUserTaggedInCommentInverseArgs = {
|
|
31742
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31743
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31744
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31745
|
+
id: Scalars['ID']['input'];
|
|
31746
|
+
sort?: InputMaybe<GraphStoreUserTaggedInCommentSortInput>;
|
|
31747
|
+
};
|
|
31748
|
+
export declare type GraphStoreUserTriggeredDeploymentArgs = {
|
|
31749
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31750
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31751
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31752
|
+
id: Scalars['ID']['input'];
|
|
31753
|
+
sort?: InputMaybe<GraphStoreUserTriggeredDeploymentSortInput>;
|
|
31754
|
+
};
|
|
31755
|
+
export declare type GraphStoreUserTriggeredDeploymentInverseArgs = {
|
|
31756
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31757
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31758
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31759
|
+
id: Scalars['ID']['input'];
|
|
31760
|
+
sort?: InputMaybe<GraphStoreUserTriggeredDeploymentSortInput>;
|
|
31761
|
+
};
|
|
31185
31762
|
export declare type GraphStoreUserUpdatedConfluenceBlogpostArgs = {
|
|
31186
31763
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31187
31764
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31210,6 +31787,20 @@ export declare type GraphStoreUserUpdatedConfluencePageInverseArgs = {
|
|
|
31210
31787
|
id: Scalars['ID']['input'];
|
|
31211
31788
|
sort?: InputMaybe<GraphStoreUserUpdatedConfluencePageSortInput>;
|
|
31212
31789
|
};
|
|
31790
|
+
export declare type GraphStoreUserUpdatedConfluenceSpaceArgs = {
|
|
31791
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31792
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31793
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31794
|
+
id: Scalars['ID']['input'];
|
|
31795
|
+
sort?: InputMaybe<GraphStoreUserUpdatedConfluenceSpaceSortInput>;
|
|
31796
|
+
};
|
|
31797
|
+
export declare type GraphStoreUserUpdatedConfluenceSpaceInverseArgs = {
|
|
31798
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31799
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31800
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31801
|
+
id: Scalars['ID']['input'];
|
|
31802
|
+
sort?: InputMaybe<GraphStoreUserUpdatedConfluenceSpaceSortInput>;
|
|
31803
|
+
};
|
|
31213
31804
|
export declare type GraphStoreUserViewedAtlasGoalArgs = {
|
|
31214
31805
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31215
31806
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31280,6 +31871,41 @@ export declare type GraphStoreUserViewedJiraIssueInverseArgs = {
|
|
|
31280
31871
|
id: Scalars['ID']['input'];
|
|
31281
31872
|
sort?: InputMaybe<GraphStoreUserViewedJiraIssueSortInput>;
|
|
31282
31873
|
};
|
|
31874
|
+
export declare type GraphStoreUserWatchesConfluenceBlogpostArgs = {
|
|
31875
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31876
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31877
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31878
|
+
id: Scalars['ID']['input'];
|
|
31879
|
+
sort?: InputMaybe<GraphStoreUserWatchesConfluenceBlogpostSortInput>;
|
|
31880
|
+
};
|
|
31881
|
+
export declare type GraphStoreUserWatchesConfluenceBlogpostInverseArgs = {
|
|
31882
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31883
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31884
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31885
|
+
id: Scalars['ID']['input'];
|
|
31886
|
+
sort?: InputMaybe<GraphStoreUserWatchesConfluenceBlogpostSortInput>;
|
|
31887
|
+
};
|
|
31888
|
+
export declare type GraphStoreUserWatchesConfluencePageArgs = {
|
|
31889
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31890
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31891
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31892
|
+
id: Scalars['ID']['input'];
|
|
31893
|
+
sort?: InputMaybe<GraphStoreUserWatchesConfluencePageSortInput>;
|
|
31894
|
+
};
|
|
31895
|
+
export declare type GraphStoreUserWatchesConfluencePageInverseArgs = {
|
|
31896
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31897
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31898
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31899
|
+
id: Scalars['ID']['input'];
|
|
31900
|
+
sort?: InputMaybe<GraphStoreUserWatchesConfluencePageSortInput>;
|
|
31901
|
+
};
|
|
31902
|
+
export declare type GraphStoreVersionAssociatedBranchArgs = {
|
|
31903
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31904
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31905
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31906
|
+
id: Scalars['ID']['input'];
|
|
31907
|
+
sort?: InputMaybe<GraphStoreVersionAssociatedBranchSortInput>;
|
|
31908
|
+
};
|
|
31283
31909
|
export declare type GraphStoreVersionAssociatedBranchInverseArgs = {
|
|
31284
31910
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31285
31911
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -31471,6 +32097,13 @@ export declare type GraphStoreVersionAssociatedPullRequestRelationshipArgs = {
|
|
|
31471
32097
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31472
32098
|
id: Scalars['ID']['input'];
|
|
31473
32099
|
};
|
|
32100
|
+
export declare type GraphStoreVersionAssociatedRemoteLinkArgs = {
|
|
32101
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32102
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32103
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32104
|
+
id: Scalars['ID']['input'];
|
|
32105
|
+
sort?: InputMaybe<GraphStoreVersionAssociatedRemoteLinkSortInput>;
|
|
32106
|
+
};
|
|
31474
32107
|
export declare type GraphStoreVersionAssociatedRemoteLinkInverseArgs = {
|
|
31475
32108
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31476
32109
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -32047,7 +32680,7 @@ export declare type GraphStoreBatchIssueAssociatedDeploymentEndNode = {
|
|
|
32047
32680
|
data?: Maybe<GraphStoreBatchIssueAssociatedDeploymentEndUnion>;
|
|
32048
32681
|
id: Scalars['ID']['output'];
|
|
32049
32682
|
};
|
|
32050
|
-
export declare type GraphStoreBatchIssueAssociatedDeploymentEndUnion = DeploymentSummary;
|
|
32683
|
+
export declare type GraphStoreBatchIssueAssociatedDeploymentEndUnion = DeploymentSummary | ExternalDeployment;
|
|
32051
32684
|
export declare type GraphStoreBatchIssueAssociatedDeploymentInnerConnection = {
|
|
32052
32685
|
__typename?: 'GraphStoreBatchIssueAssociatedDeploymentInnerConnection';
|
|
32053
32686
|
edges: Array<Maybe<GraphStoreBatchIssueAssociatedDeploymentInnerEdge>>;
|
|
@@ -32295,9 +32928,24 @@ export declare type GraphStoreComponentLinkedJswIssueSortInput = {
|
|
|
32295
32928
|
export declare type GraphStoreConfluencePageHasConfluenceCommentSortInput = {
|
|
32296
32929
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
32297
32930
|
};
|
|
32931
|
+
export declare type GraphStoreConfluencePageHasParentPageSortInput = {
|
|
32932
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
32933
|
+
};
|
|
32934
|
+
export declare type GraphStoreConfluencePageSharedWithGroupSortInput = {
|
|
32935
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
32936
|
+
};
|
|
32937
|
+
export declare type GraphStoreConfluencePageSharedWithUserSortInput = {
|
|
32938
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
32939
|
+
};
|
|
32940
|
+
export declare type GraphStoreConfluenceSpaceHasConfluenceBlogpostSortInput = {
|
|
32941
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
32942
|
+
};
|
|
32298
32943
|
export declare type GraphStoreContentReferencedEntitySortInput = {
|
|
32299
32944
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
32300
32945
|
};
|
|
32946
|
+
export declare type GraphStoreConversationHasMessageSortInput = {
|
|
32947
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
32948
|
+
};
|
|
32301
32949
|
export declare type GraphStoreCreateComponentImpactedByIncidentInput = {
|
|
32302
32950
|
relationships: Array<GraphStoreCreateComponentImpactedByIncidentRelationshipInput>;
|
|
32303
32951
|
};
|
|
@@ -32698,7 +33346,7 @@ export declare type GraphStoreCypherQueryFromNode = {
|
|
|
32698
33346
|
data?: Maybe<GraphStoreCypherQueryFromNodeUnion>;
|
|
32699
33347
|
id: Scalars['ID']['output'];
|
|
32700
33348
|
};
|
|
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;
|
|
33349
|
+
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
33350
|
export declare type GraphStoreCypherQueryNode = {
|
|
32703
33351
|
__typename?: 'GraphStoreCypherQueryNode';
|
|
32704
33352
|
from: GraphStoreCypherQueryFromNode;
|
|
@@ -32709,7 +33357,7 @@ export declare type GraphStoreCypherQueryToNode = {
|
|
|
32709
33357
|
data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
|
|
32710
33358
|
id: Scalars['ID']['output'];
|
|
32711
33359
|
};
|
|
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;
|
|
33360
|
+
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
33361
|
export declare type GraphStoreDateFilterInput = {
|
|
32714
33362
|
after?: InputMaybe<Scalars['DateTime']['input']>;
|
|
32715
33363
|
before?: InputMaybe<Scalars['DateTime']['input']>;
|
|
@@ -33456,8 +34104,10 @@ export declare type GraphStoreFullIssueAssociatedBranchEdge = {
|
|
|
33456
34104
|
};
|
|
33457
34105
|
export declare type GraphStoreFullIssueAssociatedBranchEndNode = {
|
|
33458
34106
|
__typename?: 'GraphStoreFullIssueAssociatedBranchEndNode';
|
|
34107
|
+
data?: Maybe<GraphStoreFullIssueAssociatedBranchEndUnion>;
|
|
33459
34108
|
id: Scalars['ID']['output'];
|
|
33460
34109
|
};
|
|
34110
|
+
export declare type GraphStoreFullIssueAssociatedBranchEndUnion = ExternalBranch;
|
|
33461
34111
|
export declare type GraphStoreFullIssueAssociatedBranchNode = Node & {
|
|
33462
34112
|
__typename?: 'GraphStoreFullIssueAssociatedBranchNode';
|
|
33463
34113
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -33589,7 +34239,7 @@ export declare type GraphStoreFullIssueAssociatedDeploymentEndNode = {
|
|
|
33589
34239
|
id: Scalars['ID']['output'];
|
|
33590
34240
|
metadata?: Maybe<GraphStoreFullIssueAssociatedDeploymentRelationshipObjectMetadataOutput>;
|
|
33591
34241
|
};
|
|
33592
|
-
export declare type GraphStoreFullIssueAssociatedDeploymentEndUnion = DeploymentSummary;
|
|
34242
|
+
export declare type GraphStoreFullIssueAssociatedDeploymentEndUnion = DeploymentSummary | ExternalDeployment;
|
|
33593
34243
|
export declare enum GraphStoreFullIssueAssociatedDeploymentEnvironmentTypeOutput {
|
|
33594
34244
|
Development = "DEVELOPMENT",
|
|
33595
34245
|
NotSet = "NOT_SET",
|
|
@@ -33847,8 +34497,10 @@ export declare type GraphStoreFullIssueAssociatedRemoteLinkEdge = {
|
|
|
33847
34497
|
};
|
|
33848
34498
|
export declare type GraphStoreFullIssueAssociatedRemoteLinkEndNode = {
|
|
33849
34499
|
__typename?: 'GraphStoreFullIssueAssociatedRemoteLinkEndNode';
|
|
34500
|
+
data?: Maybe<GraphStoreFullIssueAssociatedRemoteLinkEndUnion>;
|
|
33850
34501
|
id: Scalars['ID']['output'];
|
|
33851
34502
|
};
|
|
34503
|
+
export declare type GraphStoreFullIssueAssociatedRemoteLinkEndUnion = ExternalRemoteLink;
|
|
33852
34504
|
export declare type GraphStoreFullIssueAssociatedRemoteLinkNode = Node & {
|
|
33853
34505
|
__typename?: 'GraphStoreFullIssueAssociatedRemoteLinkNode';
|
|
33854
34506
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -33914,7 +34566,7 @@ export declare type GraphStoreFullIssueRecursiveAssociatedDeploymentEndNode = {
|
|
|
33914
34566
|
data?: Maybe<GraphStoreFullIssueRecursiveAssociatedDeploymentEndUnion>;
|
|
33915
34567
|
id: Scalars['ID']['output'];
|
|
33916
34568
|
};
|
|
33917
|
-
export declare type GraphStoreFullIssueRecursiveAssociatedDeploymentEndUnion = DeploymentSummary;
|
|
34569
|
+
export declare type GraphStoreFullIssueRecursiveAssociatedDeploymentEndUnion = DeploymentSummary | ExternalDeployment;
|
|
33918
34570
|
export declare type GraphStoreFullIssueRecursiveAssociatedDeploymentNode = Node & {
|
|
33919
34571
|
__typename?: 'GraphStoreFullIssueRecursiveAssociatedDeploymentNode';
|
|
33920
34572
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -34487,8 +35139,10 @@ export declare type GraphStoreFullProjectAssociatedBranchEdge = {
|
|
|
34487
35139
|
};
|
|
34488
35140
|
export declare type GraphStoreFullProjectAssociatedBranchEndNode = {
|
|
34489
35141
|
__typename?: 'GraphStoreFullProjectAssociatedBranchEndNode';
|
|
35142
|
+
data?: Maybe<GraphStoreFullProjectAssociatedBranchEndUnion>;
|
|
34490
35143
|
id: Scalars['ID']['output'];
|
|
34491
35144
|
};
|
|
35145
|
+
export declare type GraphStoreFullProjectAssociatedBranchEndUnion = ExternalBranch;
|
|
34492
35146
|
export declare type GraphStoreFullProjectAssociatedBranchNode = Node & {
|
|
34493
35147
|
__typename?: 'GraphStoreFullProjectAssociatedBranchNode';
|
|
34494
35148
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -34601,7 +35255,7 @@ export declare type GraphStoreFullProjectAssociatedDeploymentEndNode = {
|
|
|
34601
35255
|
id: Scalars['ID']['output'];
|
|
34602
35256
|
metadata?: Maybe<GraphStoreFullProjectAssociatedDeploymentRelationshipObjectMetadataOutput>;
|
|
34603
35257
|
};
|
|
34604
|
-
export declare type GraphStoreFullProjectAssociatedDeploymentEndUnion = DeploymentSummary;
|
|
35258
|
+
export declare type GraphStoreFullProjectAssociatedDeploymentEndUnion = DeploymentSummary | ExternalDeployment;
|
|
34605
35259
|
export declare enum GraphStoreFullProjectAssociatedDeploymentEnvironmentTypeOutput {
|
|
34606
35260
|
Development = "DEVELOPMENT",
|
|
34607
35261
|
NotSet = "NOT_SET",
|
|
@@ -35553,7 +36207,7 @@ export declare type GraphStoreFullSprintAssociatedDeploymentEndNode = {
|
|
|
35553
36207
|
id: Scalars['ID']['output'];
|
|
35554
36208
|
metadata?: Maybe<GraphStoreFullSprintAssociatedDeploymentRelationshipObjectMetadataOutput>;
|
|
35555
36209
|
};
|
|
35556
|
-
export declare type GraphStoreFullSprintAssociatedDeploymentEndUnion = DeploymentSummary;
|
|
36210
|
+
export declare type GraphStoreFullSprintAssociatedDeploymentEndUnion = DeploymentSummary | ExternalDeployment;
|
|
35557
36211
|
export declare enum GraphStoreFullSprintAssociatedDeploymentEnvironmentTypeOutput {
|
|
35558
36212
|
Development = "DEVELOPMENT",
|
|
35559
36213
|
NotSet = "NOT_SET",
|
|
@@ -36052,8 +36706,10 @@ export declare type GraphStoreFullVersionAssociatedBranchEdge = {
|
|
|
36052
36706
|
};
|
|
36053
36707
|
export declare type GraphStoreFullVersionAssociatedBranchEndNode = {
|
|
36054
36708
|
__typename?: 'GraphStoreFullVersionAssociatedBranchEndNode';
|
|
36709
|
+
data?: Maybe<GraphStoreFullVersionAssociatedBranchEndUnion>;
|
|
36055
36710
|
id: Scalars['ID']['output'];
|
|
36056
36711
|
};
|
|
36712
|
+
export declare type GraphStoreFullVersionAssociatedBranchEndUnion = ExternalBranch;
|
|
36057
36713
|
export declare type GraphStoreFullVersionAssociatedBranchNode = Node & {
|
|
36058
36714
|
__typename?: 'GraphStoreFullVersionAssociatedBranchNode';
|
|
36059
36715
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -36152,7 +36808,7 @@ export declare type GraphStoreFullVersionAssociatedDeploymentEndNode = {
|
|
|
36152
36808
|
data?: Maybe<GraphStoreFullVersionAssociatedDeploymentEndUnion>;
|
|
36153
36809
|
id: Scalars['ID']['output'];
|
|
36154
36810
|
};
|
|
36155
|
-
export declare type GraphStoreFullVersionAssociatedDeploymentEndUnion = DeploymentSummary;
|
|
36811
|
+
export declare type GraphStoreFullVersionAssociatedDeploymentEndUnion = DeploymentSummary | ExternalDeployment;
|
|
36156
36812
|
export declare type GraphStoreFullVersionAssociatedDeploymentNode = Node & {
|
|
36157
36813
|
__typename?: 'GraphStoreFullVersionAssociatedDeploymentNode';
|
|
36158
36814
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -36332,8 +36988,10 @@ export declare type GraphStoreFullVersionAssociatedRemoteLinkEdge = {
|
|
|
36332
36988
|
};
|
|
36333
36989
|
export declare type GraphStoreFullVersionAssociatedRemoteLinkEndNode = {
|
|
36334
36990
|
__typename?: 'GraphStoreFullVersionAssociatedRemoteLinkEndNode';
|
|
36991
|
+
data?: Maybe<GraphStoreFullVersionAssociatedRemoteLinkEndUnion>;
|
|
36335
36992
|
id: Scalars['ID']['output'];
|
|
36336
36993
|
};
|
|
36994
|
+
export declare type GraphStoreFullVersionAssociatedRemoteLinkEndUnion = ExternalRemoteLink;
|
|
36337
36995
|
export declare type GraphStoreFullVersionAssociatedRemoteLinkNode = Node & {
|
|
36338
36996
|
__typename?: 'GraphStoreFullVersionAssociatedRemoteLinkNode';
|
|
36339
36997
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -36449,6 +37107,9 @@ export declare enum GraphStoreFullVulnerabilityAssociatedIssueVulnerabilityTypeO
|
|
|
36449
37107
|
Sca = "SCA",
|
|
36450
37108
|
Unknown = "UNKNOWN"
|
|
36451
37109
|
}
|
|
37110
|
+
export declare type GraphStoreGroupCanViewConfluenceSpaceSortInput = {
|
|
37111
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
37112
|
+
};
|
|
36452
37113
|
export declare type GraphStoreIncidentAssociatedPostIncidentReviewLinkSortInput = {
|
|
36453
37114
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
36454
37115
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -36890,12 +37551,21 @@ export declare type GraphStoreOperationsContainerImpactedByIncidentSortInput = {
|
|
|
36890
37551
|
export declare type GraphStoreOperationsContainerImprovedByActionItemSortInput = {
|
|
36891
37552
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
36892
37553
|
};
|
|
37554
|
+
export declare type GraphStoreParentCommentHasChildCommentSortInput = {
|
|
37555
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
37556
|
+
};
|
|
36893
37557
|
export declare type GraphStoreParentDocumentHasChildDocumentSortInput = {
|
|
36894
37558
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
36895
37559
|
};
|
|
36896
37560
|
export declare type GraphStoreParentIssueHasChildIssueSortInput = {
|
|
36897
37561
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
36898
37562
|
};
|
|
37563
|
+
export declare type GraphStoreParentMessageHasChildMessageSortInput = {
|
|
37564
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
37565
|
+
};
|
|
37566
|
+
export declare type GraphStorePositionAllocatedToFocusAreaSortInput = {
|
|
37567
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
37568
|
+
};
|
|
36899
37569
|
export declare type GraphStorePrInRepoSortInput = {
|
|
36900
37570
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
36901
37571
|
};
|
|
@@ -37334,6 +38004,9 @@ export declare type GraphStoreSecurityContainerAssociatedToVulnerabilitySortInpu
|
|
|
37334
38004
|
export declare type GraphStoreServiceAssociatedDeploymentSortInput = {
|
|
37335
38005
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
37336
38006
|
};
|
|
38007
|
+
export declare type GraphStoreServiceAssociatedRemoteLinkSortInput = {
|
|
38008
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38009
|
+
};
|
|
37337
38010
|
export declare type GraphStoreServiceLinkedIncidentConditionalFilterInput = {
|
|
37338
38011
|
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
37339
38012
|
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
@@ -37841,6 +38514,104 @@ export declare type GraphStoreSimplifiedConfluencePageHasConfluenceCommentInvers
|
|
|
37841
38514
|
};
|
|
37842
38515
|
export declare type GraphStoreSimplifiedConfluencePageHasConfluenceCommentInverseUnion = ConfluenceBlogPost | ConfluencePage;
|
|
37843
38516
|
export declare type GraphStoreSimplifiedConfluencePageHasConfluenceCommentUnion = ConfluenceFooterComment | ConfluenceInlineComment;
|
|
38517
|
+
export declare type GraphStoreSimplifiedConfluencePageHasParentPageConnection = HasPageInfo & {
|
|
38518
|
+
__typename?: 'GraphStoreSimplifiedConfluencePageHasParentPageConnection';
|
|
38519
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluencePageHasParentPageEdge>>>;
|
|
38520
|
+
pageInfo: PageInfo;
|
|
38521
|
+
};
|
|
38522
|
+
export declare type GraphStoreSimplifiedConfluencePageHasParentPageEdge = {
|
|
38523
|
+
__typename?: 'GraphStoreSimplifiedConfluencePageHasParentPageEdge';
|
|
38524
|
+
createdAt: Scalars['DateTime']['output'];
|
|
38525
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
38526
|
+
id: Scalars['ID']['output'];
|
|
38527
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
38528
|
+
node?: Maybe<GraphStoreSimplifiedConfluencePageHasParentPageUnion>;
|
|
38529
|
+
};
|
|
38530
|
+
export declare type GraphStoreSimplifiedConfluencePageHasParentPageInverseConnection = HasPageInfo & {
|
|
38531
|
+
__typename?: 'GraphStoreSimplifiedConfluencePageHasParentPageInverseConnection';
|
|
38532
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluencePageHasParentPageInverseEdge>>>;
|
|
38533
|
+
pageInfo: PageInfo;
|
|
38534
|
+
};
|
|
38535
|
+
export declare type GraphStoreSimplifiedConfluencePageHasParentPageInverseEdge = {
|
|
38536
|
+
__typename?: 'GraphStoreSimplifiedConfluencePageHasParentPageInverseEdge';
|
|
38537
|
+
createdAt: Scalars['DateTime']['output'];
|
|
38538
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
38539
|
+
id: Scalars['ID']['output'];
|
|
38540
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
38541
|
+
node?: Maybe<GraphStoreSimplifiedConfluencePageHasParentPageInverseUnion>;
|
|
38542
|
+
};
|
|
38543
|
+
export declare type GraphStoreSimplifiedConfluencePageHasParentPageInverseUnion = ConfluencePage;
|
|
38544
|
+
export declare type GraphStoreSimplifiedConfluencePageHasParentPageUnion = ConfluencePage;
|
|
38545
|
+
export declare type GraphStoreSimplifiedConfluencePageSharedWithGroupInverseConnection = HasPageInfo & {
|
|
38546
|
+
__typename?: 'GraphStoreSimplifiedConfluencePageSharedWithGroupInverseConnection';
|
|
38547
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluencePageSharedWithGroupInverseEdge>>>;
|
|
38548
|
+
pageInfo: PageInfo;
|
|
38549
|
+
};
|
|
38550
|
+
export declare type GraphStoreSimplifiedConfluencePageSharedWithGroupInverseEdge = {
|
|
38551
|
+
__typename?: 'GraphStoreSimplifiedConfluencePageSharedWithGroupInverseEdge';
|
|
38552
|
+
createdAt: Scalars['DateTime']['output'];
|
|
38553
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
38554
|
+
id: Scalars['ID']['output'];
|
|
38555
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
38556
|
+
node?: Maybe<GraphStoreSimplifiedConfluencePageSharedWithGroupInverseUnion>;
|
|
38557
|
+
};
|
|
38558
|
+
export declare type GraphStoreSimplifiedConfluencePageSharedWithGroupInverseUnion = ConfluencePage;
|
|
38559
|
+
export declare type GraphStoreSimplifiedConfluencePageSharedWithUserConnection = HasPageInfo & {
|
|
38560
|
+
__typename?: 'GraphStoreSimplifiedConfluencePageSharedWithUserConnection';
|
|
38561
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluencePageSharedWithUserEdge>>>;
|
|
38562
|
+
pageInfo: PageInfo;
|
|
38563
|
+
};
|
|
38564
|
+
export declare type GraphStoreSimplifiedConfluencePageSharedWithUserEdge = {
|
|
38565
|
+
__typename?: 'GraphStoreSimplifiedConfluencePageSharedWithUserEdge';
|
|
38566
|
+
createdAt: Scalars['DateTime']['output'];
|
|
38567
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
38568
|
+
id: Scalars['ID']['output'];
|
|
38569
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
38570
|
+
node?: Maybe<GraphStoreSimplifiedConfluencePageSharedWithUserUnion>;
|
|
38571
|
+
};
|
|
38572
|
+
export declare type GraphStoreSimplifiedConfluencePageSharedWithUserInverseConnection = HasPageInfo & {
|
|
38573
|
+
__typename?: 'GraphStoreSimplifiedConfluencePageSharedWithUserInverseConnection';
|
|
38574
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluencePageSharedWithUserInverseEdge>>>;
|
|
38575
|
+
pageInfo: PageInfo;
|
|
38576
|
+
};
|
|
38577
|
+
export declare type GraphStoreSimplifiedConfluencePageSharedWithUserInverseEdge = {
|
|
38578
|
+
__typename?: 'GraphStoreSimplifiedConfluencePageSharedWithUserInverseEdge';
|
|
38579
|
+
createdAt: Scalars['DateTime']['output'];
|
|
38580
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
38581
|
+
id: Scalars['ID']['output'];
|
|
38582
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
38583
|
+
node?: Maybe<GraphStoreSimplifiedConfluencePageSharedWithUserInverseUnion>;
|
|
38584
|
+
};
|
|
38585
|
+
export declare type GraphStoreSimplifiedConfluencePageSharedWithUserInverseUnion = ConfluencePage;
|
|
38586
|
+
export declare type GraphStoreSimplifiedConfluencePageSharedWithUserUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
38587
|
+
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceBlogpostConnection = HasPageInfo & {
|
|
38588
|
+
__typename?: 'GraphStoreSimplifiedConfluenceSpaceHasConfluenceBlogpostConnection';
|
|
38589
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceBlogpostEdge>>>;
|
|
38590
|
+
pageInfo: PageInfo;
|
|
38591
|
+
};
|
|
38592
|
+
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceBlogpostEdge = {
|
|
38593
|
+
__typename?: 'GraphStoreSimplifiedConfluenceSpaceHasConfluenceBlogpostEdge';
|
|
38594
|
+
createdAt: Scalars['DateTime']['output'];
|
|
38595
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
38596
|
+
id: Scalars['ID']['output'];
|
|
38597
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
38598
|
+
node?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceBlogpostUnion>;
|
|
38599
|
+
};
|
|
38600
|
+
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceBlogpostInverseConnection = HasPageInfo & {
|
|
38601
|
+
__typename?: 'GraphStoreSimplifiedConfluenceSpaceHasConfluenceBlogpostInverseConnection';
|
|
38602
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceBlogpostInverseEdge>>>;
|
|
38603
|
+
pageInfo: PageInfo;
|
|
38604
|
+
};
|
|
38605
|
+
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceBlogpostInverseEdge = {
|
|
38606
|
+
__typename?: 'GraphStoreSimplifiedConfluenceSpaceHasConfluenceBlogpostInverseEdge';
|
|
38607
|
+
createdAt: Scalars['DateTime']['output'];
|
|
38608
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
38609
|
+
id: Scalars['ID']['output'];
|
|
38610
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
38611
|
+
node?: Maybe<GraphStoreSimplifiedConfluenceSpaceHasConfluenceBlogpostInverseUnion>;
|
|
38612
|
+
};
|
|
38613
|
+
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceBlogpostInverseUnion = ConfluenceSpace;
|
|
38614
|
+
export declare type GraphStoreSimplifiedConfluenceSpaceHasConfluenceBlogpostUnion = ConfluenceBlogPost;
|
|
37844
38615
|
export declare type GraphStoreSimplifiedContentReferencedEntityConnection = HasPageInfo & {
|
|
37845
38616
|
__typename?: 'GraphStoreSimplifiedContentReferencedEntityConnection';
|
|
37846
38617
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedContentReferencedEntityEdge>>>;
|
|
@@ -37869,6 +38640,34 @@ export declare type GraphStoreSimplifiedContentReferencedEntityInverseEdge = {
|
|
|
37869
38640
|
};
|
|
37870
38641
|
export declare type GraphStoreSimplifiedContentReferencedEntityInverseUnion = ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
37871
38642
|
export declare type GraphStoreSimplifiedContentReferencedEntityUnion = CompassComponent | ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
38643
|
+
export declare type GraphStoreSimplifiedConversationHasMessageConnection = HasPageInfo & {
|
|
38644
|
+
__typename?: 'GraphStoreSimplifiedConversationHasMessageConnection';
|
|
38645
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConversationHasMessageEdge>>>;
|
|
38646
|
+
pageInfo: PageInfo;
|
|
38647
|
+
};
|
|
38648
|
+
export declare type GraphStoreSimplifiedConversationHasMessageEdge = {
|
|
38649
|
+
__typename?: 'GraphStoreSimplifiedConversationHasMessageEdge';
|
|
38650
|
+
createdAt: Scalars['DateTime']['output'];
|
|
38651
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
38652
|
+
id: Scalars['ID']['output'];
|
|
38653
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
38654
|
+
node?: Maybe<GraphStoreSimplifiedConversationHasMessageUnion>;
|
|
38655
|
+
};
|
|
38656
|
+
export declare type GraphStoreSimplifiedConversationHasMessageInverseConnection = HasPageInfo & {
|
|
38657
|
+
__typename?: 'GraphStoreSimplifiedConversationHasMessageInverseConnection';
|
|
38658
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedConversationHasMessageInverseEdge>>>;
|
|
38659
|
+
pageInfo: PageInfo;
|
|
38660
|
+
};
|
|
38661
|
+
export declare type GraphStoreSimplifiedConversationHasMessageInverseEdge = {
|
|
38662
|
+
__typename?: 'GraphStoreSimplifiedConversationHasMessageInverseEdge';
|
|
38663
|
+
createdAt: Scalars['DateTime']['output'];
|
|
38664
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
38665
|
+
id: Scalars['ID']['output'];
|
|
38666
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
38667
|
+
node?: Maybe<GraphStoreSimplifiedConversationHasMessageInverseUnion>;
|
|
38668
|
+
};
|
|
38669
|
+
export declare type GraphStoreSimplifiedConversationHasMessageInverseUnion = ExternalConversation;
|
|
38670
|
+
export declare type GraphStoreSimplifiedConversationHasMessageUnion = ExternalMessage;
|
|
37872
38671
|
export declare type GraphStoreSimplifiedDeploymentContainsCommitConnection = HasPageInfo & {
|
|
37873
38672
|
__typename?: 'GraphStoreSimplifiedDeploymentContainsCommitConnection';
|
|
37874
38673
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedDeploymentContainsCommitEdge>>>;
|
|
@@ -37895,7 +38694,7 @@ export declare type GraphStoreSimplifiedDeploymentContainsCommitInverseEdge = {
|
|
|
37895
38694
|
lastUpdated: Scalars['DateTime']['output'];
|
|
37896
38695
|
node?: Maybe<GraphStoreSimplifiedDeploymentContainsCommitInverseUnion>;
|
|
37897
38696
|
};
|
|
37898
|
-
export declare type GraphStoreSimplifiedDeploymentContainsCommitInverseUnion = DeploymentSummary;
|
|
38697
|
+
export declare type GraphStoreSimplifiedDeploymentContainsCommitInverseUnion = DeploymentSummary | ExternalDeployment;
|
|
37899
38698
|
export declare type GraphStoreSimplifiedDeploymentContainsCommitUnion = ExternalCommit;
|
|
37900
38699
|
export declare type GraphStoreSimplifiedFocusAreaAssociatedToProjectConnection = HasPageInfo & {
|
|
37901
38700
|
__typename?: 'GraphStoreSimplifiedFocusAreaAssociatedToProjectConnection';
|
|
@@ -38009,6 +38808,20 @@ export declare type GraphStoreSimplifiedFocusAreaHasProjectInverseEdge = {
|
|
|
38009
38808
|
};
|
|
38010
38809
|
export declare type GraphStoreSimplifiedFocusAreaHasProjectInverseUnion = MercuryFocusArea;
|
|
38011
38810
|
export declare type GraphStoreSimplifiedFocusAreaHasProjectUnion = JiraAlignAggProject | JiraIssue | MercuryJiraAlignEpic | TownsquareProject;
|
|
38811
|
+
export declare type GraphStoreSimplifiedGroupCanViewConfluenceSpaceConnection = HasPageInfo & {
|
|
38812
|
+
__typename?: 'GraphStoreSimplifiedGroupCanViewConfluenceSpaceConnection';
|
|
38813
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedGroupCanViewConfluenceSpaceEdge>>>;
|
|
38814
|
+
pageInfo: PageInfo;
|
|
38815
|
+
};
|
|
38816
|
+
export declare type GraphStoreSimplifiedGroupCanViewConfluenceSpaceEdge = {
|
|
38817
|
+
__typename?: 'GraphStoreSimplifiedGroupCanViewConfluenceSpaceEdge';
|
|
38818
|
+
createdAt: Scalars['DateTime']['output'];
|
|
38819
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
38820
|
+
id: Scalars['ID']['output'];
|
|
38821
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
38822
|
+
node?: Maybe<GraphStoreSimplifiedGroupCanViewConfluenceSpaceUnion>;
|
|
38823
|
+
};
|
|
38824
|
+
export declare type GraphStoreSimplifiedGroupCanViewConfluenceSpaceUnion = ConfluenceSpace;
|
|
38012
38825
|
export declare type GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewConnection = HasPageInfo & HasTotal & {
|
|
38013
38826
|
__typename?: 'GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewConnection';
|
|
38014
38827
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewEdge>>>;
|
|
@@ -38137,6 +38950,19 @@ export declare type GraphStoreSimplifiedIncidentLinkedJswIssueInverseEdge = {
|
|
|
38137
38950
|
};
|
|
38138
38951
|
export declare type GraphStoreSimplifiedIncidentLinkedJswIssueInverseUnion = DevOpsOperationsIncidentDetails | JiraIssue;
|
|
38139
38952
|
export declare type GraphStoreSimplifiedIncidentLinkedJswIssueUnion = JiraIssue;
|
|
38953
|
+
export declare type GraphStoreSimplifiedIssueAssociatedBranchConnection = HasPageInfo & {
|
|
38954
|
+
__typename?: 'GraphStoreSimplifiedIssueAssociatedBranchConnection';
|
|
38955
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedBranchEdge>>>;
|
|
38956
|
+
pageInfo: PageInfo;
|
|
38957
|
+
};
|
|
38958
|
+
export declare type GraphStoreSimplifiedIssueAssociatedBranchEdge = {
|
|
38959
|
+
__typename?: 'GraphStoreSimplifiedIssueAssociatedBranchEdge';
|
|
38960
|
+
createdAt: Scalars['DateTime']['output'];
|
|
38961
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
38962
|
+
id: Scalars['ID']['output'];
|
|
38963
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
38964
|
+
node?: Maybe<GraphStoreSimplifiedIssueAssociatedBranchUnion>;
|
|
38965
|
+
};
|
|
38140
38966
|
export declare type GraphStoreSimplifiedIssueAssociatedBranchInverseConnection = HasPageInfo & {
|
|
38141
38967
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedBranchInverseConnection';
|
|
38142
38968
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedBranchInverseEdge>>>;
|
|
@@ -38151,6 +38977,7 @@ export declare type GraphStoreSimplifiedIssueAssociatedBranchInverseEdge = {
|
|
|
38151
38977
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedBranchInverseUnion>;
|
|
38152
38978
|
};
|
|
38153
38979
|
export declare type GraphStoreSimplifiedIssueAssociatedBranchInverseUnion = JiraIssue;
|
|
38980
|
+
export declare type GraphStoreSimplifiedIssueAssociatedBranchUnion = ExternalBranch;
|
|
38154
38981
|
export declare type GraphStoreSimplifiedIssueAssociatedBuildConnection = HasPageInfo & {
|
|
38155
38982
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedBuildConnection';
|
|
38156
38983
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedBuildEdge>>>;
|
|
@@ -38238,7 +39065,7 @@ export declare type GraphStoreSimplifiedIssueAssociatedDeploymentInverseEdge = {
|
|
|
38238
39065
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedDeploymentInverseUnion>;
|
|
38239
39066
|
};
|
|
38240
39067
|
export declare type GraphStoreSimplifiedIssueAssociatedDeploymentInverseUnion = JiraIssue;
|
|
38241
|
-
export declare type GraphStoreSimplifiedIssueAssociatedDeploymentUnion = DeploymentSummary;
|
|
39068
|
+
export declare type GraphStoreSimplifiedIssueAssociatedDeploymentUnion = DeploymentSummary | ExternalDeployment;
|
|
38242
39069
|
export declare type GraphStoreSimplifiedIssueAssociatedDesignConnection = HasPageInfo & {
|
|
38243
39070
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedDesignConnection';
|
|
38244
39071
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedDesignEdge>>>;
|
|
@@ -38351,6 +39178,19 @@ export declare type GraphStoreSimplifiedIssueAssociatedPrInverseEdge = {
|
|
|
38351
39178
|
};
|
|
38352
39179
|
export declare type GraphStoreSimplifiedIssueAssociatedPrInverseUnion = JiraIssue;
|
|
38353
39180
|
export declare type GraphStoreSimplifiedIssueAssociatedPrUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
39181
|
+
export declare type GraphStoreSimplifiedIssueAssociatedRemoteLinkConnection = HasPageInfo & {
|
|
39182
|
+
__typename?: 'GraphStoreSimplifiedIssueAssociatedRemoteLinkConnection';
|
|
39183
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedRemoteLinkEdge>>>;
|
|
39184
|
+
pageInfo: PageInfo;
|
|
39185
|
+
};
|
|
39186
|
+
export declare type GraphStoreSimplifiedIssueAssociatedRemoteLinkEdge = {
|
|
39187
|
+
__typename?: 'GraphStoreSimplifiedIssueAssociatedRemoteLinkEdge';
|
|
39188
|
+
createdAt: Scalars['DateTime']['output'];
|
|
39189
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
39190
|
+
id: Scalars['ID']['output'];
|
|
39191
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
39192
|
+
node?: Maybe<GraphStoreSimplifiedIssueAssociatedRemoteLinkUnion>;
|
|
39193
|
+
};
|
|
38354
39194
|
export declare type GraphStoreSimplifiedIssueAssociatedRemoteLinkInverseConnection = HasPageInfo & {
|
|
38355
39195
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedRemoteLinkInverseConnection';
|
|
38356
39196
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedRemoteLinkInverseEdge>>>;
|
|
@@ -38365,6 +39205,7 @@ export declare type GraphStoreSimplifiedIssueAssociatedRemoteLinkInverseEdge = {
|
|
|
38365
39205
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedRemoteLinkInverseUnion>;
|
|
38366
39206
|
};
|
|
38367
39207
|
export declare type GraphStoreSimplifiedIssueAssociatedRemoteLinkInverseUnion = JiraIssue;
|
|
39208
|
+
export declare type GraphStoreSimplifiedIssueAssociatedRemoteLinkUnion = ExternalRemoteLink;
|
|
38368
39209
|
export declare type GraphStoreSimplifiedIssueChangesComponentConnection = HasPageInfo & HasTotal & {
|
|
38369
39210
|
__typename?: 'GraphStoreSimplifiedIssueChangesComponentConnection';
|
|
38370
39211
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueChangesComponentEdge>>>;
|
|
@@ -38470,7 +39311,7 @@ export declare type GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentInvers
|
|
|
38470
39311
|
node?: Maybe<GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentInverseUnion>;
|
|
38471
39312
|
};
|
|
38472
39313
|
export declare type GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentInverseUnion = JiraIssue;
|
|
38473
|
-
export declare type GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentUnion = DeploymentSummary;
|
|
39314
|
+
export declare type GraphStoreSimplifiedIssueRecursiveAssociatedDeploymentUnion = DeploymentSummary | ExternalDeployment;
|
|
38474
39315
|
export declare type GraphStoreSimplifiedIssueRecursiveAssociatedFeatureFlagConnection = HasPageInfo & HasTotal & {
|
|
38475
39316
|
__typename?: 'GraphStoreSimplifiedIssueRecursiveAssociatedFeatureFlagConnection';
|
|
38476
39317
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueRecursiveAssociatedFeatureFlagEdge>>>;
|
|
@@ -38885,6 +39726,34 @@ export declare type GraphStoreSimplifiedOperationsContainerImprovedByActionItemI
|
|
|
38885
39726
|
};
|
|
38886
39727
|
export declare type GraphStoreSimplifiedOperationsContainerImprovedByActionItemInverseUnion = DevOpsService;
|
|
38887
39728
|
export declare type GraphStoreSimplifiedOperationsContainerImprovedByActionItemUnion = JiraIssue;
|
|
39729
|
+
export declare type GraphStoreSimplifiedParentCommentHasChildCommentConnection = HasPageInfo & {
|
|
39730
|
+
__typename?: 'GraphStoreSimplifiedParentCommentHasChildCommentConnection';
|
|
39731
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedParentCommentHasChildCommentEdge>>>;
|
|
39732
|
+
pageInfo: PageInfo;
|
|
39733
|
+
};
|
|
39734
|
+
export declare type GraphStoreSimplifiedParentCommentHasChildCommentEdge = {
|
|
39735
|
+
__typename?: 'GraphStoreSimplifiedParentCommentHasChildCommentEdge';
|
|
39736
|
+
createdAt: Scalars['DateTime']['output'];
|
|
39737
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
39738
|
+
id: Scalars['ID']['output'];
|
|
39739
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
39740
|
+
node?: Maybe<GraphStoreSimplifiedParentCommentHasChildCommentUnion>;
|
|
39741
|
+
};
|
|
39742
|
+
export declare type GraphStoreSimplifiedParentCommentHasChildCommentInverseConnection = HasPageInfo & {
|
|
39743
|
+
__typename?: 'GraphStoreSimplifiedParentCommentHasChildCommentInverseConnection';
|
|
39744
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedParentCommentHasChildCommentInverseEdge>>>;
|
|
39745
|
+
pageInfo: PageInfo;
|
|
39746
|
+
};
|
|
39747
|
+
export declare type GraphStoreSimplifiedParentCommentHasChildCommentInverseEdge = {
|
|
39748
|
+
__typename?: 'GraphStoreSimplifiedParentCommentHasChildCommentInverseEdge';
|
|
39749
|
+
createdAt: Scalars['DateTime']['output'];
|
|
39750
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
39751
|
+
id: Scalars['ID']['output'];
|
|
39752
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
39753
|
+
node?: Maybe<GraphStoreSimplifiedParentCommentHasChildCommentInverseUnion>;
|
|
39754
|
+
};
|
|
39755
|
+
export declare type GraphStoreSimplifiedParentCommentHasChildCommentInverseUnion = ConfluenceFooterComment | ConfluenceInlineComment;
|
|
39756
|
+
export declare type GraphStoreSimplifiedParentCommentHasChildCommentUnion = ConfluenceFooterComment | ConfluenceInlineComment;
|
|
38888
39757
|
export declare type GraphStoreSimplifiedParentDocumentHasChildDocumentConnection = HasPageInfo & {
|
|
38889
39758
|
__typename?: 'GraphStoreSimplifiedParentDocumentHasChildDocumentConnection';
|
|
38890
39759
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedParentDocumentHasChildDocumentEdge>>>;
|
|
@@ -38941,6 +39810,62 @@ export declare type GraphStoreSimplifiedParentIssueHasChildIssueInverseEdge = {
|
|
|
38941
39810
|
};
|
|
38942
39811
|
export declare type GraphStoreSimplifiedParentIssueHasChildIssueInverseUnion = JiraIssue;
|
|
38943
39812
|
export declare type GraphStoreSimplifiedParentIssueHasChildIssueUnion = JiraIssue;
|
|
39813
|
+
export declare type GraphStoreSimplifiedParentMessageHasChildMessageConnection = HasPageInfo & {
|
|
39814
|
+
__typename?: 'GraphStoreSimplifiedParentMessageHasChildMessageConnection';
|
|
39815
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedParentMessageHasChildMessageEdge>>>;
|
|
39816
|
+
pageInfo: PageInfo;
|
|
39817
|
+
};
|
|
39818
|
+
export declare type GraphStoreSimplifiedParentMessageHasChildMessageEdge = {
|
|
39819
|
+
__typename?: 'GraphStoreSimplifiedParentMessageHasChildMessageEdge';
|
|
39820
|
+
createdAt: Scalars['DateTime']['output'];
|
|
39821
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
39822
|
+
id: Scalars['ID']['output'];
|
|
39823
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
39824
|
+
node?: Maybe<GraphStoreSimplifiedParentMessageHasChildMessageUnion>;
|
|
39825
|
+
};
|
|
39826
|
+
export declare type GraphStoreSimplifiedParentMessageHasChildMessageInverseConnection = HasPageInfo & {
|
|
39827
|
+
__typename?: 'GraphStoreSimplifiedParentMessageHasChildMessageInverseConnection';
|
|
39828
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedParentMessageHasChildMessageInverseEdge>>>;
|
|
39829
|
+
pageInfo: PageInfo;
|
|
39830
|
+
};
|
|
39831
|
+
export declare type GraphStoreSimplifiedParentMessageHasChildMessageInverseEdge = {
|
|
39832
|
+
__typename?: 'GraphStoreSimplifiedParentMessageHasChildMessageInverseEdge';
|
|
39833
|
+
createdAt: Scalars['DateTime']['output'];
|
|
39834
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
39835
|
+
id: Scalars['ID']['output'];
|
|
39836
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
39837
|
+
node?: Maybe<GraphStoreSimplifiedParentMessageHasChildMessageInverseUnion>;
|
|
39838
|
+
};
|
|
39839
|
+
export declare type GraphStoreSimplifiedParentMessageHasChildMessageInverseUnion = ExternalMessage;
|
|
39840
|
+
export declare type GraphStoreSimplifiedParentMessageHasChildMessageUnion = ExternalMessage;
|
|
39841
|
+
export declare type GraphStoreSimplifiedPositionAllocatedToFocusAreaConnection = HasPageInfo & {
|
|
39842
|
+
__typename?: 'GraphStoreSimplifiedPositionAllocatedToFocusAreaConnection';
|
|
39843
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedPositionAllocatedToFocusAreaEdge>>>;
|
|
39844
|
+
pageInfo: PageInfo;
|
|
39845
|
+
};
|
|
39846
|
+
export declare type GraphStoreSimplifiedPositionAllocatedToFocusAreaEdge = {
|
|
39847
|
+
__typename?: 'GraphStoreSimplifiedPositionAllocatedToFocusAreaEdge';
|
|
39848
|
+
createdAt: Scalars['DateTime']['output'];
|
|
39849
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
39850
|
+
id: Scalars['ID']['output'];
|
|
39851
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
39852
|
+
node?: Maybe<GraphStoreSimplifiedPositionAllocatedToFocusAreaUnion>;
|
|
39853
|
+
};
|
|
39854
|
+
export declare type GraphStoreSimplifiedPositionAllocatedToFocusAreaInverseConnection = HasPageInfo & {
|
|
39855
|
+
__typename?: 'GraphStoreSimplifiedPositionAllocatedToFocusAreaInverseConnection';
|
|
39856
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedPositionAllocatedToFocusAreaInverseEdge>>>;
|
|
39857
|
+
pageInfo: PageInfo;
|
|
39858
|
+
};
|
|
39859
|
+
export declare type GraphStoreSimplifiedPositionAllocatedToFocusAreaInverseEdge = {
|
|
39860
|
+
__typename?: 'GraphStoreSimplifiedPositionAllocatedToFocusAreaInverseEdge';
|
|
39861
|
+
createdAt: Scalars['DateTime']['output'];
|
|
39862
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
39863
|
+
id: Scalars['ID']['output'];
|
|
39864
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
39865
|
+
node?: Maybe<GraphStoreSimplifiedPositionAllocatedToFocusAreaInverseUnion>;
|
|
39866
|
+
};
|
|
39867
|
+
export declare type GraphStoreSimplifiedPositionAllocatedToFocusAreaInverseUnion = RadarPosition;
|
|
39868
|
+
export declare type GraphStoreSimplifiedPositionAllocatedToFocusAreaUnion = MercuryFocusArea;
|
|
38944
39869
|
export declare type GraphStoreSimplifiedPrInRepoConnection = HasPageInfo & {
|
|
38945
39870
|
__typename?: 'GraphStoreSimplifiedPrInRepoConnection';
|
|
38946
39871
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedPrInRepoEdge>>>;
|
|
@@ -38969,6 +39894,21 @@ export declare type GraphStoreSimplifiedPrInRepoInverseEdge = {
|
|
|
38969
39894
|
};
|
|
38970
39895
|
export declare type GraphStoreSimplifiedPrInRepoInverseUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
38971
39896
|
export declare type GraphStoreSimplifiedPrInRepoUnion = DevOpsRepository | ExternalRepository;
|
|
39897
|
+
export declare type GraphStoreSimplifiedProjectAssociatedBranchConnection = HasPageInfo & HasTotal & {
|
|
39898
|
+
__typename?: 'GraphStoreSimplifiedProjectAssociatedBranchConnection';
|
|
39899
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectAssociatedBranchEdge>>>;
|
|
39900
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
39901
|
+
pageInfo: PageInfo;
|
|
39902
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
39903
|
+
};
|
|
39904
|
+
export declare type GraphStoreSimplifiedProjectAssociatedBranchEdge = {
|
|
39905
|
+
__typename?: 'GraphStoreSimplifiedProjectAssociatedBranchEdge';
|
|
39906
|
+
createdAt: Scalars['DateTime']['output'];
|
|
39907
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
39908
|
+
id: Scalars['ID']['output'];
|
|
39909
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
39910
|
+
node?: Maybe<GraphStoreSimplifiedProjectAssociatedBranchUnion>;
|
|
39911
|
+
};
|
|
38972
39912
|
export declare type GraphStoreSimplifiedProjectAssociatedBranchInverseConnection = HasPageInfo & HasTotal & {
|
|
38973
39913
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedBranchInverseConnection';
|
|
38974
39914
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectAssociatedBranchInverseEdge>>>;
|
|
@@ -38985,6 +39925,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedBranchInverseEdge = {
|
|
|
38985
39925
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedBranchInverseUnion>;
|
|
38986
39926
|
};
|
|
38987
39927
|
export declare type GraphStoreSimplifiedProjectAssociatedBranchInverseUnion = JiraProject;
|
|
39928
|
+
export declare type GraphStoreSimplifiedProjectAssociatedBranchUnion = ExternalBranch;
|
|
38988
39929
|
export declare type GraphStoreSimplifiedProjectAssociatedBuildConnection = HasPageInfo & HasTotal & {
|
|
38989
39930
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedBuildConnection';
|
|
38990
39931
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectAssociatedBuildEdge>>>;
|
|
@@ -39048,7 +39989,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedDeploymentInverseEdge =
|
|
|
39048
39989
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedDeploymentInverseUnion>;
|
|
39049
39990
|
};
|
|
39050
39991
|
export declare type GraphStoreSimplifiedProjectAssociatedDeploymentInverseUnion = JiraProject;
|
|
39051
|
-
export declare type GraphStoreSimplifiedProjectAssociatedDeploymentUnion = DeploymentSummary;
|
|
39992
|
+
export declare type GraphStoreSimplifiedProjectAssociatedDeploymentUnion = DeploymentSummary | ExternalDeployment;
|
|
39052
39993
|
export declare type GraphStoreSimplifiedProjectAssociatedFeatureFlagConnection = HasPageInfo & HasTotal & {
|
|
39053
39994
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedFeatureFlagConnection';
|
|
39054
39995
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectAssociatedFeatureFlagEdge>>>;
|
|
@@ -39714,7 +40655,35 @@ export declare type GraphStoreSimplifiedServiceAssociatedDeploymentInverseEdge =
|
|
|
39714
40655
|
node?: Maybe<GraphStoreSimplifiedServiceAssociatedDeploymentInverseUnion>;
|
|
39715
40656
|
};
|
|
39716
40657
|
export declare type GraphStoreSimplifiedServiceAssociatedDeploymentInverseUnion = DevOpsService;
|
|
39717
|
-
export declare type GraphStoreSimplifiedServiceAssociatedDeploymentUnion = DeploymentSummary;
|
|
40658
|
+
export declare type GraphStoreSimplifiedServiceAssociatedDeploymentUnion = DeploymentSummary | ExternalDeployment;
|
|
40659
|
+
export declare type GraphStoreSimplifiedServiceAssociatedRemoteLinkConnection = HasPageInfo & {
|
|
40660
|
+
__typename?: 'GraphStoreSimplifiedServiceAssociatedRemoteLinkConnection';
|
|
40661
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedServiceAssociatedRemoteLinkEdge>>>;
|
|
40662
|
+
pageInfo: PageInfo;
|
|
40663
|
+
};
|
|
40664
|
+
export declare type GraphStoreSimplifiedServiceAssociatedRemoteLinkEdge = {
|
|
40665
|
+
__typename?: 'GraphStoreSimplifiedServiceAssociatedRemoteLinkEdge';
|
|
40666
|
+
createdAt: Scalars['DateTime']['output'];
|
|
40667
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
40668
|
+
id: Scalars['ID']['output'];
|
|
40669
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
40670
|
+
node?: Maybe<GraphStoreSimplifiedServiceAssociatedRemoteLinkUnion>;
|
|
40671
|
+
};
|
|
40672
|
+
export declare type GraphStoreSimplifiedServiceAssociatedRemoteLinkInverseConnection = HasPageInfo & {
|
|
40673
|
+
__typename?: 'GraphStoreSimplifiedServiceAssociatedRemoteLinkInverseConnection';
|
|
40674
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedServiceAssociatedRemoteLinkInverseEdge>>>;
|
|
40675
|
+
pageInfo: PageInfo;
|
|
40676
|
+
};
|
|
40677
|
+
export declare type GraphStoreSimplifiedServiceAssociatedRemoteLinkInverseEdge = {
|
|
40678
|
+
__typename?: 'GraphStoreSimplifiedServiceAssociatedRemoteLinkInverseEdge';
|
|
40679
|
+
createdAt: Scalars['DateTime']['output'];
|
|
40680
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
40681
|
+
id: Scalars['ID']['output'];
|
|
40682
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
40683
|
+
node?: Maybe<GraphStoreSimplifiedServiceAssociatedRemoteLinkInverseUnion>;
|
|
40684
|
+
};
|
|
40685
|
+
export declare type GraphStoreSimplifiedServiceAssociatedRemoteLinkInverseUnion = DevOpsService;
|
|
40686
|
+
export declare type GraphStoreSimplifiedServiceAssociatedRemoteLinkUnion = ExternalRemoteLink;
|
|
39718
40687
|
export declare type GraphStoreSimplifiedServiceLinkedIncidentConnection = HasPageInfo & HasTotal & {
|
|
39719
40688
|
__typename?: 'GraphStoreSimplifiedServiceLinkedIncidentConnection';
|
|
39720
40689
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedServiceLinkedIncidentEdge>>>;
|
|
@@ -39926,7 +40895,7 @@ export declare type GraphStoreSimplifiedSprintAssociatedDeploymentEdge = {
|
|
|
39926
40895
|
lastUpdated: Scalars['DateTime']['output'];
|
|
39927
40896
|
node?: Maybe<GraphStoreSimplifiedSprintAssociatedDeploymentUnion>;
|
|
39928
40897
|
};
|
|
39929
|
-
export declare type GraphStoreSimplifiedSprintAssociatedDeploymentUnion = DeploymentSummary;
|
|
40898
|
+
export declare type GraphStoreSimplifiedSprintAssociatedDeploymentUnion = DeploymentSummary | ExternalDeployment;
|
|
39930
40899
|
export declare type GraphStoreSimplifiedSprintAssociatedFeatureFlagConnection = HasPageInfo & HasTotal & {
|
|
39931
40900
|
__typename?: 'GraphStoreSimplifiedSprintAssociatedFeatureFlagConnection';
|
|
39932
40901
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedSprintAssociatedFeatureFlagEdge>>>;
|
|
@@ -40235,6 +41204,62 @@ export declare type GraphStoreSimplifiedUserAssignedIncidentInverseEdge = {
|
|
|
40235
41204
|
};
|
|
40236
41205
|
export declare type GraphStoreSimplifiedUserAssignedIncidentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
40237
41206
|
export declare type GraphStoreSimplifiedUserAssignedIncidentUnion = JiraIssue;
|
|
41207
|
+
export declare type GraphStoreSimplifiedUserAttendedCalendarEventConnection = HasPageInfo & {
|
|
41208
|
+
__typename?: 'GraphStoreSimplifiedUserAttendedCalendarEventConnection';
|
|
41209
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserAttendedCalendarEventEdge>>>;
|
|
41210
|
+
pageInfo: PageInfo;
|
|
41211
|
+
};
|
|
41212
|
+
export declare type GraphStoreSimplifiedUserAttendedCalendarEventEdge = {
|
|
41213
|
+
__typename?: 'GraphStoreSimplifiedUserAttendedCalendarEventEdge';
|
|
41214
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41215
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41216
|
+
id: Scalars['ID']['output'];
|
|
41217
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41218
|
+
node?: Maybe<GraphStoreSimplifiedUserAttendedCalendarEventUnion>;
|
|
41219
|
+
};
|
|
41220
|
+
export declare type GraphStoreSimplifiedUserAttendedCalendarEventInverseConnection = HasPageInfo & {
|
|
41221
|
+
__typename?: 'GraphStoreSimplifiedUserAttendedCalendarEventInverseConnection';
|
|
41222
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserAttendedCalendarEventInverseEdge>>>;
|
|
41223
|
+
pageInfo: PageInfo;
|
|
41224
|
+
};
|
|
41225
|
+
export declare type GraphStoreSimplifiedUserAttendedCalendarEventInverseEdge = {
|
|
41226
|
+
__typename?: 'GraphStoreSimplifiedUserAttendedCalendarEventInverseEdge';
|
|
41227
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41228
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41229
|
+
id: Scalars['ID']['output'];
|
|
41230
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41231
|
+
node?: Maybe<GraphStoreSimplifiedUserAttendedCalendarEventInverseUnion>;
|
|
41232
|
+
};
|
|
41233
|
+
export declare type GraphStoreSimplifiedUserAttendedCalendarEventInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
41234
|
+
export declare type GraphStoreSimplifiedUserAttendedCalendarEventUnion = ExternalCalendarEvent;
|
|
41235
|
+
export declare type GraphStoreSimplifiedUserAuthoredCommitConnection = HasPageInfo & {
|
|
41236
|
+
__typename?: 'GraphStoreSimplifiedUserAuthoredCommitConnection';
|
|
41237
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserAuthoredCommitEdge>>>;
|
|
41238
|
+
pageInfo: PageInfo;
|
|
41239
|
+
};
|
|
41240
|
+
export declare type GraphStoreSimplifiedUserAuthoredCommitEdge = {
|
|
41241
|
+
__typename?: 'GraphStoreSimplifiedUserAuthoredCommitEdge';
|
|
41242
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41243
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41244
|
+
id: Scalars['ID']['output'];
|
|
41245
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41246
|
+
node?: Maybe<GraphStoreSimplifiedUserAuthoredCommitUnion>;
|
|
41247
|
+
};
|
|
41248
|
+
export declare type GraphStoreSimplifiedUserAuthoredCommitInverseConnection = HasPageInfo & {
|
|
41249
|
+
__typename?: 'GraphStoreSimplifiedUserAuthoredCommitInverseConnection';
|
|
41250
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserAuthoredCommitInverseEdge>>>;
|
|
41251
|
+
pageInfo: PageInfo;
|
|
41252
|
+
};
|
|
41253
|
+
export declare type GraphStoreSimplifiedUserAuthoredCommitInverseEdge = {
|
|
41254
|
+
__typename?: 'GraphStoreSimplifiedUserAuthoredCommitInverseEdge';
|
|
41255
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41256
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41257
|
+
id: Scalars['ID']['output'];
|
|
41258
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41259
|
+
node?: Maybe<GraphStoreSimplifiedUserAuthoredCommitInverseUnion>;
|
|
41260
|
+
};
|
|
41261
|
+
export declare type GraphStoreSimplifiedUserAuthoredCommitInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
41262
|
+
export declare type GraphStoreSimplifiedUserAuthoredCommitUnion = ExternalCommit;
|
|
40238
41263
|
export declare type GraphStoreSimplifiedUserAuthoredPrConnection = HasPageInfo & {
|
|
40239
41264
|
__typename?: 'GraphStoreSimplifiedUserAuthoredPrConnection';
|
|
40240
41265
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserAuthoredPrEdge>>>;
|
|
@@ -40263,6 +41288,118 @@ export declare type GraphStoreSimplifiedUserAuthoredPrInverseEdge = {
|
|
|
40263
41288
|
};
|
|
40264
41289
|
export declare type GraphStoreSimplifiedUserAuthoredPrInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
40265
41290
|
export declare type GraphStoreSimplifiedUserAuthoredPrUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
41291
|
+
export declare type GraphStoreSimplifiedUserCanViewConfluenceSpaceConnection = HasPageInfo & {
|
|
41292
|
+
__typename?: 'GraphStoreSimplifiedUserCanViewConfluenceSpaceConnection';
|
|
41293
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCanViewConfluenceSpaceEdge>>>;
|
|
41294
|
+
pageInfo: PageInfo;
|
|
41295
|
+
};
|
|
41296
|
+
export declare type GraphStoreSimplifiedUserCanViewConfluenceSpaceEdge = {
|
|
41297
|
+
__typename?: 'GraphStoreSimplifiedUserCanViewConfluenceSpaceEdge';
|
|
41298
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41299
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41300
|
+
id: Scalars['ID']['output'];
|
|
41301
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41302
|
+
node?: Maybe<GraphStoreSimplifiedUserCanViewConfluenceSpaceUnion>;
|
|
41303
|
+
};
|
|
41304
|
+
export declare type GraphStoreSimplifiedUserCanViewConfluenceSpaceInverseConnection = HasPageInfo & {
|
|
41305
|
+
__typename?: 'GraphStoreSimplifiedUserCanViewConfluenceSpaceInverseConnection';
|
|
41306
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCanViewConfluenceSpaceInverseEdge>>>;
|
|
41307
|
+
pageInfo: PageInfo;
|
|
41308
|
+
};
|
|
41309
|
+
export declare type GraphStoreSimplifiedUserCanViewConfluenceSpaceInverseEdge = {
|
|
41310
|
+
__typename?: 'GraphStoreSimplifiedUserCanViewConfluenceSpaceInverseEdge';
|
|
41311
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41312
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41313
|
+
id: Scalars['ID']['output'];
|
|
41314
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41315
|
+
node?: Maybe<GraphStoreSimplifiedUserCanViewConfluenceSpaceInverseUnion>;
|
|
41316
|
+
};
|
|
41317
|
+
export declare type GraphStoreSimplifiedUserCanViewConfluenceSpaceInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
41318
|
+
export declare type GraphStoreSimplifiedUserCanViewConfluenceSpaceUnion = ConfluenceSpace;
|
|
41319
|
+
export declare type GraphStoreSimplifiedUserContributedConfluenceBlogpostConnection = HasPageInfo & {
|
|
41320
|
+
__typename?: 'GraphStoreSimplifiedUserContributedConfluenceBlogpostConnection';
|
|
41321
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserContributedConfluenceBlogpostEdge>>>;
|
|
41322
|
+
pageInfo: PageInfo;
|
|
41323
|
+
};
|
|
41324
|
+
export declare type GraphStoreSimplifiedUserContributedConfluenceBlogpostEdge = {
|
|
41325
|
+
__typename?: 'GraphStoreSimplifiedUserContributedConfluenceBlogpostEdge';
|
|
41326
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41327
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41328
|
+
id: Scalars['ID']['output'];
|
|
41329
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41330
|
+
node?: Maybe<GraphStoreSimplifiedUserContributedConfluenceBlogpostUnion>;
|
|
41331
|
+
};
|
|
41332
|
+
export declare type GraphStoreSimplifiedUserContributedConfluenceBlogpostInverseConnection = HasPageInfo & {
|
|
41333
|
+
__typename?: 'GraphStoreSimplifiedUserContributedConfluenceBlogpostInverseConnection';
|
|
41334
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserContributedConfluenceBlogpostInverseEdge>>>;
|
|
41335
|
+
pageInfo: PageInfo;
|
|
41336
|
+
};
|
|
41337
|
+
export declare type GraphStoreSimplifiedUserContributedConfluenceBlogpostInverseEdge = {
|
|
41338
|
+
__typename?: 'GraphStoreSimplifiedUserContributedConfluenceBlogpostInverseEdge';
|
|
41339
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41340
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41341
|
+
id: Scalars['ID']['output'];
|
|
41342
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41343
|
+
node?: Maybe<GraphStoreSimplifiedUserContributedConfluenceBlogpostInverseUnion>;
|
|
41344
|
+
};
|
|
41345
|
+
export declare type GraphStoreSimplifiedUserContributedConfluenceBlogpostInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
41346
|
+
export declare type GraphStoreSimplifiedUserContributedConfluenceBlogpostUnion = ConfluenceBlogPost;
|
|
41347
|
+
export declare type GraphStoreSimplifiedUserContributedConfluencePageConnection = HasPageInfo & {
|
|
41348
|
+
__typename?: 'GraphStoreSimplifiedUserContributedConfluencePageConnection';
|
|
41349
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserContributedConfluencePageEdge>>>;
|
|
41350
|
+
pageInfo: PageInfo;
|
|
41351
|
+
};
|
|
41352
|
+
export declare type GraphStoreSimplifiedUserContributedConfluencePageEdge = {
|
|
41353
|
+
__typename?: 'GraphStoreSimplifiedUserContributedConfluencePageEdge';
|
|
41354
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41355
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41356
|
+
id: Scalars['ID']['output'];
|
|
41357
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41358
|
+
node?: Maybe<GraphStoreSimplifiedUserContributedConfluencePageUnion>;
|
|
41359
|
+
};
|
|
41360
|
+
export declare type GraphStoreSimplifiedUserContributedConfluencePageInverseConnection = HasPageInfo & {
|
|
41361
|
+
__typename?: 'GraphStoreSimplifiedUserContributedConfluencePageInverseConnection';
|
|
41362
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserContributedConfluencePageInverseEdge>>>;
|
|
41363
|
+
pageInfo: PageInfo;
|
|
41364
|
+
};
|
|
41365
|
+
export declare type GraphStoreSimplifiedUserContributedConfluencePageInverseEdge = {
|
|
41366
|
+
__typename?: 'GraphStoreSimplifiedUserContributedConfluencePageInverseEdge';
|
|
41367
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41368
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41369
|
+
id: Scalars['ID']['output'];
|
|
41370
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41371
|
+
node?: Maybe<GraphStoreSimplifiedUserContributedConfluencePageInverseUnion>;
|
|
41372
|
+
};
|
|
41373
|
+
export declare type GraphStoreSimplifiedUserContributedConfluencePageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
41374
|
+
export declare type GraphStoreSimplifiedUserContributedConfluencePageUnion = ConfluencePage;
|
|
41375
|
+
export declare type GraphStoreSimplifiedUserCreatedBranchConnection = HasPageInfo & {
|
|
41376
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedBranchConnection';
|
|
41377
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedBranchEdge>>>;
|
|
41378
|
+
pageInfo: PageInfo;
|
|
41379
|
+
};
|
|
41380
|
+
export declare type GraphStoreSimplifiedUserCreatedBranchEdge = {
|
|
41381
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedBranchEdge';
|
|
41382
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41383
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41384
|
+
id: Scalars['ID']['output'];
|
|
41385
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41386
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedBranchUnion>;
|
|
41387
|
+
};
|
|
41388
|
+
export declare type GraphStoreSimplifiedUserCreatedBranchInverseConnection = HasPageInfo & {
|
|
41389
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedBranchInverseConnection';
|
|
41390
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedBranchInverseEdge>>>;
|
|
41391
|
+
pageInfo: PageInfo;
|
|
41392
|
+
};
|
|
41393
|
+
export declare type GraphStoreSimplifiedUserCreatedBranchInverseEdge = {
|
|
41394
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedBranchInverseEdge';
|
|
41395
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41396
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41397
|
+
id: Scalars['ID']['output'];
|
|
41398
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41399
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedBranchInverseUnion>;
|
|
41400
|
+
};
|
|
41401
|
+
export declare type GraphStoreSimplifiedUserCreatedBranchInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
41402
|
+
export declare type GraphStoreSimplifiedUserCreatedBranchUnion = ExternalBranch;
|
|
40266
41403
|
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostConnection = HasPageInfo & {
|
|
40267
41404
|
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceBlogpostConnection';
|
|
40268
41405
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostEdge>>>;
|
|
@@ -40319,6 +41456,146 @@ export declare type GraphStoreSimplifiedUserCreatedConfluencePageInverseEdge = {
|
|
|
40319
41456
|
};
|
|
40320
41457
|
export declare type GraphStoreSimplifiedUserCreatedConfluencePageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
40321
41458
|
export declare type GraphStoreSimplifiedUserCreatedConfluencePageUnion = ConfluencePage;
|
|
41459
|
+
export declare type GraphStoreSimplifiedUserCreatedLoomVideoConnection = HasPageInfo & {
|
|
41460
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedLoomVideoConnection';
|
|
41461
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedLoomVideoEdge>>>;
|
|
41462
|
+
pageInfo: PageInfo;
|
|
41463
|
+
};
|
|
41464
|
+
export declare type GraphStoreSimplifiedUserCreatedLoomVideoEdge = {
|
|
41465
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedLoomVideoEdge';
|
|
41466
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41467
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41468
|
+
id: Scalars['ID']['output'];
|
|
41469
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41470
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedLoomVideoUnion>;
|
|
41471
|
+
};
|
|
41472
|
+
export declare type GraphStoreSimplifiedUserCreatedLoomVideoInverseConnection = HasPageInfo & {
|
|
41473
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedLoomVideoInverseConnection';
|
|
41474
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedLoomVideoInverseEdge>>>;
|
|
41475
|
+
pageInfo: PageInfo;
|
|
41476
|
+
};
|
|
41477
|
+
export declare type GraphStoreSimplifiedUserCreatedLoomVideoInverseEdge = {
|
|
41478
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedLoomVideoInverseEdge';
|
|
41479
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41480
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41481
|
+
id: Scalars['ID']['output'];
|
|
41482
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41483
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedLoomVideoInverseUnion>;
|
|
41484
|
+
};
|
|
41485
|
+
export declare type GraphStoreSimplifiedUserCreatedLoomVideoInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
41486
|
+
export declare type GraphStoreSimplifiedUserCreatedLoomVideoUnion = ExternalVideo;
|
|
41487
|
+
export declare type GraphStoreSimplifiedUserCreatedMessageConnection = HasPageInfo & {
|
|
41488
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedMessageConnection';
|
|
41489
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedMessageEdge>>>;
|
|
41490
|
+
pageInfo: PageInfo;
|
|
41491
|
+
};
|
|
41492
|
+
export declare type GraphStoreSimplifiedUserCreatedMessageEdge = {
|
|
41493
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedMessageEdge';
|
|
41494
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41495
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41496
|
+
id: Scalars['ID']['output'];
|
|
41497
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41498
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedMessageUnion>;
|
|
41499
|
+
};
|
|
41500
|
+
export declare type GraphStoreSimplifiedUserCreatedMessageInverseConnection = HasPageInfo & {
|
|
41501
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedMessageInverseConnection';
|
|
41502
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedMessageInverseEdge>>>;
|
|
41503
|
+
pageInfo: PageInfo;
|
|
41504
|
+
};
|
|
41505
|
+
export declare type GraphStoreSimplifiedUserCreatedMessageInverseEdge = {
|
|
41506
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedMessageInverseEdge';
|
|
41507
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41508
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41509
|
+
id: Scalars['ID']['output'];
|
|
41510
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41511
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedMessageInverseUnion>;
|
|
41512
|
+
};
|
|
41513
|
+
export declare type GraphStoreSimplifiedUserCreatedMessageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
41514
|
+
export declare type GraphStoreSimplifiedUserCreatedMessageUnion = ExternalMessage;
|
|
41515
|
+
export declare type GraphStoreSimplifiedUserCreatedRepositoryConnection = HasPageInfo & {
|
|
41516
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedRepositoryConnection';
|
|
41517
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedRepositoryEdge>>>;
|
|
41518
|
+
pageInfo: PageInfo;
|
|
41519
|
+
};
|
|
41520
|
+
export declare type GraphStoreSimplifiedUserCreatedRepositoryEdge = {
|
|
41521
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedRepositoryEdge';
|
|
41522
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41523
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41524
|
+
id: Scalars['ID']['output'];
|
|
41525
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41526
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedRepositoryUnion>;
|
|
41527
|
+
};
|
|
41528
|
+
export declare type GraphStoreSimplifiedUserCreatedRepositoryInverseConnection = HasPageInfo & {
|
|
41529
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedRepositoryInverseConnection';
|
|
41530
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedRepositoryInverseEdge>>>;
|
|
41531
|
+
pageInfo: PageInfo;
|
|
41532
|
+
};
|
|
41533
|
+
export declare type GraphStoreSimplifiedUserCreatedRepositoryInverseEdge = {
|
|
41534
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedRepositoryInverseEdge';
|
|
41535
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41536
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41537
|
+
id: Scalars['ID']['output'];
|
|
41538
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41539
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedRepositoryInverseUnion>;
|
|
41540
|
+
};
|
|
41541
|
+
export declare type GraphStoreSimplifiedUserCreatedRepositoryInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
41542
|
+
export declare type GraphStoreSimplifiedUserCreatedRepositoryUnion = ExternalRepository;
|
|
41543
|
+
export declare type GraphStoreSimplifiedUserFavoritedConfluenceBlogpostConnection = HasPageInfo & {
|
|
41544
|
+
__typename?: 'GraphStoreSimplifiedUserFavoritedConfluenceBlogpostConnection';
|
|
41545
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserFavoritedConfluenceBlogpostEdge>>>;
|
|
41546
|
+
pageInfo: PageInfo;
|
|
41547
|
+
};
|
|
41548
|
+
export declare type GraphStoreSimplifiedUserFavoritedConfluenceBlogpostEdge = {
|
|
41549
|
+
__typename?: 'GraphStoreSimplifiedUserFavoritedConfluenceBlogpostEdge';
|
|
41550
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41551
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41552
|
+
id: Scalars['ID']['output'];
|
|
41553
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41554
|
+
node?: Maybe<GraphStoreSimplifiedUserFavoritedConfluenceBlogpostUnion>;
|
|
41555
|
+
};
|
|
41556
|
+
export declare type GraphStoreSimplifiedUserFavoritedConfluenceBlogpostInverseConnection = HasPageInfo & {
|
|
41557
|
+
__typename?: 'GraphStoreSimplifiedUserFavoritedConfluenceBlogpostInverseConnection';
|
|
41558
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserFavoritedConfluenceBlogpostInverseEdge>>>;
|
|
41559
|
+
pageInfo: PageInfo;
|
|
41560
|
+
};
|
|
41561
|
+
export declare type GraphStoreSimplifiedUserFavoritedConfluenceBlogpostInverseEdge = {
|
|
41562
|
+
__typename?: 'GraphStoreSimplifiedUserFavoritedConfluenceBlogpostInverseEdge';
|
|
41563
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41564
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41565
|
+
id: Scalars['ID']['output'];
|
|
41566
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41567
|
+
node?: Maybe<GraphStoreSimplifiedUserFavoritedConfluenceBlogpostInverseUnion>;
|
|
41568
|
+
};
|
|
41569
|
+
export declare type GraphStoreSimplifiedUserFavoritedConfluenceBlogpostInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
41570
|
+
export declare type GraphStoreSimplifiedUserFavoritedConfluenceBlogpostUnion = ConfluenceBlogPost;
|
|
41571
|
+
export declare type GraphStoreSimplifiedUserFavoritedConfluencePageConnection = HasPageInfo & {
|
|
41572
|
+
__typename?: 'GraphStoreSimplifiedUserFavoritedConfluencePageConnection';
|
|
41573
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserFavoritedConfluencePageEdge>>>;
|
|
41574
|
+
pageInfo: PageInfo;
|
|
41575
|
+
};
|
|
41576
|
+
export declare type GraphStoreSimplifiedUserFavoritedConfluencePageEdge = {
|
|
41577
|
+
__typename?: 'GraphStoreSimplifiedUserFavoritedConfluencePageEdge';
|
|
41578
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41579
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41580
|
+
id: Scalars['ID']['output'];
|
|
41581
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41582
|
+
node?: Maybe<GraphStoreSimplifiedUserFavoritedConfluencePageUnion>;
|
|
41583
|
+
};
|
|
41584
|
+
export declare type GraphStoreSimplifiedUserFavoritedConfluencePageInverseConnection = HasPageInfo & {
|
|
41585
|
+
__typename?: 'GraphStoreSimplifiedUserFavoritedConfluencePageInverseConnection';
|
|
41586
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserFavoritedConfluencePageInverseEdge>>>;
|
|
41587
|
+
pageInfo: PageInfo;
|
|
41588
|
+
};
|
|
41589
|
+
export declare type GraphStoreSimplifiedUserFavoritedConfluencePageInverseEdge = {
|
|
41590
|
+
__typename?: 'GraphStoreSimplifiedUserFavoritedConfluencePageInverseEdge';
|
|
41591
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41592
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41593
|
+
id: Scalars['ID']['output'];
|
|
41594
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41595
|
+
node?: Maybe<GraphStoreSimplifiedUserFavoritedConfluencePageInverseUnion>;
|
|
41596
|
+
};
|
|
41597
|
+
export declare type GraphStoreSimplifiedUserFavoritedConfluencePageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
41598
|
+
export declare type GraphStoreSimplifiedUserFavoritedConfluencePageUnion = ConfluencePage;
|
|
40322
41599
|
export declare type GraphStoreSimplifiedUserHasRelevantProjectConnection = HasPageInfo & HasTotal & {
|
|
40323
41600
|
__typename?: 'GraphStoreSimplifiedUserHasRelevantProjectConnection';
|
|
40324
41601
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserHasRelevantProjectEdge>>>;
|
|
@@ -40407,6 +41684,34 @@ export declare type GraphStoreSimplifiedUserIsInTeamInverseEdge = {
|
|
|
40407
41684
|
};
|
|
40408
41685
|
export declare type GraphStoreSimplifiedUserIsInTeamInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
40409
41686
|
export declare type GraphStoreSimplifiedUserIsInTeamUnion = TeamV2;
|
|
41687
|
+
export declare type GraphStoreSimplifiedUserMemberOfConversationConnection = HasPageInfo & {
|
|
41688
|
+
__typename?: 'GraphStoreSimplifiedUserMemberOfConversationConnection';
|
|
41689
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserMemberOfConversationEdge>>>;
|
|
41690
|
+
pageInfo: PageInfo;
|
|
41691
|
+
};
|
|
41692
|
+
export declare type GraphStoreSimplifiedUserMemberOfConversationEdge = {
|
|
41693
|
+
__typename?: 'GraphStoreSimplifiedUserMemberOfConversationEdge';
|
|
41694
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41695
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41696
|
+
id: Scalars['ID']['output'];
|
|
41697
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41698
|
+
node?: Maybe<GraphStoreSimplifiedUserMemberOfConversationUnion>;
|
|
41699
|
+
};
|
|
41700
|
+
export declare type GraphStoreSimplifiedUserMemberOfConversationInverseConnection = HasPageInfo & {
|
|
41701
|
+
__typename?: 'GraphStoreSimplifiedUserMemberOfConversationInverseConnection';
|
|
41702
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserMemberOfConversationInverseEdge>>>;
|
|
41703
|
+
pageInfo: PageInfo;
|
|
41704
|
+
};
|
|
41705
|
+
export declare type GraphStoreSimplifiedUserMemberOfConversationInverseEdge = {
|
|
41706
|
+
__typename?: 'GraphStoreSimplifiedUserMemberOfConversationInverseEdge';
|
|
41707
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41708
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41709
|
+
id: Scalars['ID']['output'];
|
|
41710
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41711
|
+
node?: Maybe<GraphStoreSimplifiedUserMemberOfConversationInverseUnion>;
|
|
41712
|
+
};
|
|
41713
|
+
export declare type GraphStoreSimplifiedUserMemberOfConversationInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
41714
|
+
export declare type GraphStoreSimplifiedUserMemberOfConversationUnion = ExternalConversation;
|
|
40410
41715
|
export declare type GraphStoreSimplifiedUserMergedPullRequestConnection = HasPageInfo & {
|
|
40411
41716
|
__typename?: 'GraphStoreSimplifiedUserMergedPullRequestConnection';
|
|
40412
41717
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserMergedPullRequestEdge>>>;
|
|
@@ -40435,6 +41740,118 @@ export declare type GraphStoreSimplifiedUserMergedPullRequestInverseEdge = {
|
|
|
40435
41740
|
};
|
|
40436
41741
|
export declare type GraphStoreSimplifiedUserMergedPullRequestInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
40437
41742
|
export declare type GraphStoreSimplifiedUserMergedPullRequestUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
41743
|
+
export declare type GraphStoreSimplifiedUserOwnedBranchConnection = HasPageInfo & {
|
|
41744
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedBranchConnection';
|
|
41745
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnedBranchEdge>>>;
|
|
41746
|
+
pageInfo: PageInfo;
|
|
41747
|
+
};
|
|
41748
|
+
export declare type GraphStoreSimplifiedUserOwnedBranchEdge = {
|
|
41749
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedBranchEdge';
|
|
41750
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41751
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41752
|
+
id: Scalars['ID']['output'];
|
|
41753
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41754
|
+
node?: Maybe<GraphStoreSimplifiedUserOwnedBranchUnion>;
|
|
41755
|
+
};
|
|
41756
|
+
export declare type GraphStoreSimplifiedUserOwnedBranchInverseConnection = HasPageInfo & {
|
|
41757
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedBranchInverseConnection';
|
|
41758
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnedBranchInverseEdge>>>;
|
|
41759
|
+
pageInfo: PageInfo;
|
|
41760
|
+
};
|
|
41761
|
+
export declare type GraphStoreSimplifiedUserOwnedBranchInverseEdge = {
|
|
41762
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedBranchInverseEdge';
|
|
41763
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41764
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41765
|
+
id: Scalars['ID']['output'];
|
|
41766
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41767
|
+
node?: Maybe<GraphStoreSimplifiedUserOwnedBranchInverseUnion>;
|
|
41768
|
+
};
|
|
41769
|
+
export declare type GraphStoreSimplifiedUserOwnedBranchInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
41770
|
+
export declare type GraphStoreSimplifiedUserOwnedBranchUnion = ExternalBranch;
|
|
41771
|
+
export declare type GraphStoreSimplifiedUserOwnedCalendarEventConnection = HasPageInfo & {
|
|
41772
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedCalendarEventConnection';
|
|
41773
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnedCalendarEventEdge>>>;
|
|
41774
|
+
pageInfo: PageInfo;
|
|
41775
|
+
};
|
|
41776
|
+
export declare type GraphStoreSimplifiedUserOwnedCalendarEventEdge = {
|
|
41777
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedCalendarEventEdge';
|
|
41778
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41779
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41780
|
+
id: Scalars['ID']['output'];
|
|
41781
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41782
|
+
node?: Maybe<GraphStoreSimplifiedUserOwnedCalendarEventUnion>;
|
|
41783
|
+
};
|
|
41784
|
+
export declare type GraphStoreSimplifiedUserOwnedCalendarEventInverseConnection = HasPageInfo & {
|
|
41785
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedCalendarEventInverseConnection';
|
|
41786
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnedCalendarEventInverseEdge>>>;
|
|
41787
|
+
pageInfo: PageInfo;
|
|
41788
|
+
};
|
|
41789
|
+
export declare type GraphStoreSimplifiedUserOwnedCalendarEventInverseEdge = {
|
|
41790
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedCalendarEventInverseEdge';
|
|
41791
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41792
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41793
|
+
id: Scalars['ID']['output'];
|
|
41794
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41795
|
+
node?: Maybe<GraphStoreSimplifiedUserOwnedCalendarEventInverseUnion>;
|
|
41796
|
+
};
|
|
41797
|
+
export declare type GraphStoreSimplifiedUserOwnedCalendarEventInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
41798
|
+
export declare type GraphStoreSimplifiedUserOwnedCalendarEventUnion = ExternalCalendarEvent;
|
|
41799
|
+
export declare type GraphStoreSimplifiedUserOwnedRemoteLinkConnection = HasPageInfo & {
|
|
41800
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedRemoteLinkConnection';
|
|
41801
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnedRemoteLinkEdge>>>;
|
|
41802
|
+
pageInfo: PageInfo;
|
|
41803
|
+
};
|
|
41804
|
+
export declare type GraphStoreSimplifiedUserOwnedRemoteLinkEdge = {
|
|
41805
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedRemoteLinkEdge';
|
|
41806
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41807
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41808
|
+
id: Scalars['ID']['output'];
|
|
41809
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41810
|
+
node?: Maybe<GraphStoreSimplifiedUserOwnedRemoteLinkUnion>;
|
|
41811
|
+
};
|
|
41812
|
+
export declare type GraphStoreSimplifiedUserOwnedRemoteLinkInverseConnection = HasPageInfo & {
|
|
41813
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedRemoteLinkInverseConnection';
|
|
41814
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnedRemoteLinkInverseEdge>>>;
|
|
41815
|
+
pageInfo: PageInfo;
|
|
41816
|
+
};
|
|
41817
|
+
export declare type GraphStoreSimplifiedUserOwnedRemoteLinkInverseEdge = {
|
|
41818
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedRemoteLinkInverseEdge';
|
|
41819
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41820
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41821
|
+
id: Scalars['ID']['output'];
|
|
41822
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41823
|
+
node?: Maybe<GraphStoreSimplifiedUserOwnedRemoteLinkInverseUnion>;
|
|
41824
|
+
};
|
|
41825
|
+
export declare type GraphStoreSimplifiedUserOwnedRemoteLinkInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
41826
|
+
export declare type GraphStoreSimplifiedUserOwnedRemoteLinkUnion = ExternalRemoteLink;
|
|
41827
|
+
export declare type GraphStoreSimplifiedUserOwnedRepositoryConnection = HasPageInfo & {
|
|
41828
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedRepositoryConnection';
|
|
41829
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnedRepositoryEdge>>>;
|
|
41830
|
+
pageInfo: PageInfo;
|
|
41831
|
+
};
|
|
41832
|
+
export declare type GraphStoreSimplifiedUserOwnedRepositoryEdge = {
|
|
41833
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedRepositoryEdge';
|
|
41834
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41835
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41836
|
+
id: Scalars['ID']['output'];
|
|
41837
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41838
|
+
node?: Maybe<GraphStoreSimplifiedUserOwnedRepositoryUnion>;
|
|
41839
|
+
};
|
|
41840
|
+
export declare type GraphStoreSimplifiedUserOwnedRepositoryInverseConnection = HasPageInfo & {
|
|
41841
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedRepositoryInverseConnection';
|
|
41842
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnedRepositoryInverseEdge>>>;
|
|
41843
|
+
pageInfo: PageInfo;
|
|
41844
|
+
};
|
|
41845
|
+
export declare type GraphStoreSimplifiedUserOwnedRepositoryInverseEdge = {
|
|
41846
|
+
__typename?: 'GraphStoreSimplifiedUserOwnedRepositoryInverseEdge';
|
|
41847
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41848
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41849
|
+
id: Scalars['ID']['output'];
|
|
41850
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41851
|
+
node?: Maybe<GraphStoreSimplifiedUserOwnedRepositoryInverseUnion>;
|
|
41852
|
+
};
|
|
41853
|
+
export declare type GraphStoreSimplifiedUserOwnedRepositoryInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
41854
|
+
export declare type GraphStoreSimplifiedUserOwnedRepositoryUnion = ExternalRepository;
|
|
40438
41855
|
export declare type GraphStoreSimplifiedUserOwnsComponentConnection = HasPageInfo & HasTotal & {
|
|
40439
41856
|
__typename?: 'GraphStoreSimplifiedUserOwnsComponentConnection';
|
|
40440
41857
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnsComponentEdge>>>;
|
|
@@ -40551,6 +41968,62 @@ export declare type GraphStoreSimplifiedUserReviewsPrInverseEdge = {
|
|
|
40551
41968
|
};
|
|
40552
41969
|
export declare type GraphStoreSimplifiedUserReviewsPrInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
40553
41970
|
export declare type GraphStoreSimplifiedUserReviewsPrUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
41971
|
+
export declare type GraphStoreSimplifiedUserTaggedInCommentConnection = HasPageInfo & {
|
|
41972
|
+
__typename?: 'GraphStoreSimplifiedUserTaggedInCommentConnection';
|
|
41973
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTaggedInCommentEdge>>>;
|
|
41974
|
+
pageInfo: PageInfo;
|
|
41975
|
+
};
|
|
41976
|
+
export declare type GraphStoreSimplifiedUserTaggedInCommentEdge = {
|
|
41977
|
+
__typename?: 'GraphStoreSimplifiedUserTaggedInCommentEdge';
|
|
41978
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41979
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41980
|
+
id: Scalars['ID']['output'];
|
|
41981
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41982
|
+
node?: Maybe<GraphStoreSimplifiedUserTaggedInCommentUnion>;
|
|
41983
|
+
};
|
|
41984
|
+
export declare type GraphStoreSimplifiedUserTaggedInCommentInverseConnection = HasPageInfo & {
|
|
41985
|
+
__typename?: 'GraphStoreSimplifiedUserTaggedInCommentInverseConnection';
|
|
41986
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTaggedInCommentInverseEdge>>>;
|
|
41987
|
+
pageInfo: PageInfo;
|
|
41988
|
+
};
|
|
41989
|
+
export declare type GraphStoreSimplifiedUserTaggedInCommentInverseEdge = {
|
|
41990
|
+
__typename?: 'GraphStoreSimplifiedUserTaggedInCommentInverseEdge';
|
|
41991
|
+
createdAt: Scalars['DateTime']['output'];
|
|
41992
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
41993
|
+
id: Scalars['ID']['output'];
|
|
41994
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
41995
|
+
node?: Maybe<GraphStoreSimplifiedUserTaggedInCommentInverseUnion>;
|
|
41996
|
+
};
|
|
41997
|
+
export declare type GraphStoreSimplifiedUserTaggedInCommentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
41998
|
+
export declare type GraphStoreSimplifiedUserTaggedInCommentUnion = ConfluenceFooterComment | ConfluenceInlineComment;
|
|
41999
|
+
export declare type GraphStoreSimplifiedUserTriggeredDeploymentConnection = HasPageInfo & {
|
|
42000
|
+
__typename?: 'GraphStoreSimplifiedUserTriggeredDeploymentConnection';
|
|
42001
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTriggeredDeploymentEdge>>>;
|
|
42002
|
+
pageInfo: PageInfo;
|
|
42003
|
+
};
|
|
42004
|
+
export declare type GraphStoreSimplifiedUserTriggeredDeploymentEdge = {
|
|
42005
|
+
__typename?: 'GraphStoreSimplifiedUserTriggeredDeploymentEdge';
|
|
42006
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42007
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42008
|
+
id: Scalars['ID']['output'];
|
|
42009
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42010
|
+
node?: Maybe<GraphStoreSimplifiedUserTriggeredDeploymentUnion>;
|
|
42011
|
+
};
|
|
42012
|
+
export declare type GraphStoreSimplifiedUserTriggeredDeploymentInverseConnection = HasPageInfo & {
|
|
42013
|
+
__typename?: 'GraphStoreSimplifiedUserTriggeredDeploymentInverseConnection';
|
|
42014
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTriggeredDeploymentInverseEdge>>>;
|
|
42015
|
+
pageInfo: PageInfo;
|
|
42016
|
+
};
|
|
42017
|
+
export declare type GraphStoreSimplifiedUserTriggeredDeploymentInverseEdge = {
|
|
42018
|
+
__typename?: 'GraphStoreSimplifiedUserTriggeredDeploymentInverseEdge';
|
|
42019
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42020
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42021
|
+
id: Scalars['ID']['output'];
|
|
42022
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42023
|
+
node?: Maybe<GraphStoreSimplifiedUserTriggeredDeploymentInverseUnion>;
|
|
42024
|
+
};
|
|
42025
|
+
export declare type GraphStoreSimplifiedUserTriggeredDeploymentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
42026
|
+
export declare type GraphStoreSimplifiedUserTriggeredDeploymentUnion = DeploymentSummary | ExternalDeployment;
|
|
40554
42027
|
export declare type GraphStoreSimplifiedUserUpdatedConfluenceBlogpostConnection = HasPageInfo & {
|
|
40555
42028
|
__typename?: 'GraphStoreSimplifiedUserUpdatedConfluenceBlogpostConnection';
|
|
40556
42029
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostEdge>>>;
|
|
@@ -40607,6 +42080,34 @@ export declare type GraphStoreSimplifiedUserUpdatedConfluencePageInverseEdge = {
|
|
|
40607
42080
|
};
|
|
40608
42081
|
export declare type GraphStoreSimplifiedUserUpdatedConfluencePageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
40609
42082
|
export declare type GraphStoreSimplifiedUserUpdatedConfluencePageUnion = ConfluencePage;
|
|
42083
|
+
export declare type GraphStoreSimplifiedUserUpdatedConfluenceSpaceConnection = HasPageInfo & {
|
|
42084
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedConfluenceSpaceConnection';
|
|
42085
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedConfluenceSpaceEdge>>>;
|
|
42086
|
+
pageInfo: PageInfo;
|
|
42087
|
+
};
|
|
42088
|
+
export declare type GraphStoreSimplifiedUserUpdatedConfluenceSpaceEdge = {
|
|
42089
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedConfluenceSpaceEdge';
|
|
42090
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42091
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42092
|
+
id: Scalars['ID']['output'];
|
|
42093
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42094
|
+
node?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceSpaceUnion>;
|
|
42095
|
+
};
|
|
42096
|
+
export declare type GraphStoreSimplifiedUserUpdatedConfluenceSpaceInverseConnection = HasPageInfo & {
|
|
42097
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedConfluenceSpaceInverseConnection';
|
|
42098
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedConfluenceSpaceInverseEdge>>>;
|
|
42099
|
+
pageInfo: PageInfo;
|
|
42100
|
+
};
|
|
42101
|
+
export declare type GraphStoreSimplifiedUserUpdatedConfluenceSpaceInverseEdge = {
|
|
42102
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedConfluenceSpaceInverseEdge';
|
|
42103
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42104
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42105
|
+
id: Scalars['ID']['output'];
|
|
42106
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42107
|
+
node?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceSpaceInverseUnion>;
|
|
42108
|
+
};
|
|
42109
|
+
export declare type GraphStoreSimplifiedUserUpdatedConfluenceSpaceInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
42110
|
+
export declare type GraphStoreSimplifiedUserUpdatedConfluenceSpaceUnion = ConfluenceSpace;
|
|
40610
42111
|
export declare type GraphStoreSimplifiedUserViewedAtlasGoalConnection = HasPageInfo & {
|
|
40611
42112
|
__typename?: 'GraphStoreSimplifiedUserViewedAtlasGoalConnection';
|
|
40612
42113
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedAtlasGoalEdge>>>;
|
|
@@ -40747,6 +42248,77 @@ export declare type GraphStoreSimplifiedUserViewedJiraIssueInverseEdge = {
|
|
|
40747
42248
|
};
|
|
40748
42249
|
export declare type GraphStoreSimplifiedUserViewedJiraIssueInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
40749
42250
|
export declare type GraphStoreSimplifiedUserViewedJiraIssueUnion = JiraIssue;
|
|
42251
|
+
export declare type GraphStoreSimplifiedUserWatchesConfluenceBlogpostConnection = HasPageInfo & {
|
|
42252
|
+
__typename?: 'GraphStoreSimplifiedUserWatchesConfluenceBlogpostConnection';
|
|
42253
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserWatchesConfluenceBlogpostEdge>>>;
|
|
42254
|
+
pageInfo: PageInfo;
|
|
42255
|
+
};
|
|
42256
|
+
export declare type GraphStoreSimplifiedUserWatchesConfluenceBlogpostEdge = {
|
|
42257
|
+
__typename?: 'GraphStoreSimplifiedUserWatchesConfluenceBlogpostEdge';
|
|
42258
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42259
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42260
|
+
id: Scalars['ID']['output'];
|
|
42261
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42262
|
+
node?: Maybe<GraphStoreSimplifiedUserWatchesConfluenceBlogpostUnion>;
|
|
42263
|
+
};
|
|
42264
|
+
export declare type GraphStoreSimplifiedUserWatchesConfluenceBlogpostInverseConnection = HasPageInfo & {
|
|
42265
|
+
__typename?: 'GraphStoreSimplifiedUserWatchesConfluenceBlogpostInverseConnection';
|
|
42266
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserWatchesConfluenceBlogpostInverseEdge>>>;
|
|
42267
|
+
pageInfo: PageInfo;
|
|
42268
|
+
};
|
|
42269
|
+
export declare type GraphStoreSimplifiedUserWatchesConfluenceBlogpostInverseEdge = {
|
|
42270
|
+
__typename?: 'GraphStoreSimplifiedUserWatchesConfluenceBlogpostInverseEdge';
|
|
42271
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42272
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42273
|
+
id: Scalars['ID']['output'];
|
|
42274
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42275
|
+
node?: Maybe<GraphStoreSimplifiedUserWatchesConfluenceBlogpostInverseUnion>;
|
|
42276
|
+
};
|
|
42277
|
+
export declare type GraphStoreSimplifiedUserWatchesConfluenceBlogpostInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
42278
|
+
export declare type GraphStoreSimplifiedUserWatchesConfluenceBlogpostUnion = ConfluenceBlogPost;
|
|
42279
|
+
export declare type GraphStoreSimplifiedUserWatchesConfluencePageConnection = HasPageInfo & {
|
|
42280
|
+
__typename?: 'GraphStoreSimplifiedUserWatchesConfluencePageConnection';
|
|
42281
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserWatchesConfluencePageEdge>>>;
|
|
42282
|
+
pageInfo: PageInfo;
|
|
42283
|
+
};
|
|
42284
|
+
export declare type GraphStoreSimplifiedUserWatchesConfluencePageEdge = {
|
|
42285
|
+
__typename?: 'GraphStoreSimplifiedUserWatchesConfluencePageEdge';
|
|
42286
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42287
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42288
|
+
id: Scalars['ID']['output'];
|
|
42289
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42290
|
+
node?: Maybe<GraphStoreSimplifiedUserWatchesConfluencePageUnion>;
|
|
42291
|
+
};
|
|
42292
|
+
export declare type GraphStoreSimplifiedUserWatchesConfluencePageInverseConnection = HasPageInfo & {
|
|
42293
|
+
__typename?: 'GraphStoreSimplifiedUserWatchesConfluencePageInverseConnection';
|
|
42294
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserWatchesConfluencePageInverseEdge>>>;
|
|
42295
|
+
pageInfo: PageInfo;
|
|
42296
|
+
};
|
|
42297
|
+
export declare type GraphStoreSimplifiedUserWatchesConfluencePageInverseEdge = {
|
|
42298
|
+
__typename?: 'GraphStoreSimplifiedUserWatchesConfluencePageInverseEdge';
|
|
42299
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42300
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42301
|
+
id: Scalars['ID']['output'];
|
|
42302
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42303
|
+
node?: Maybe<GraphStoreSimplifiedUserWatchesConfluencePageInverseUnion>;
|
|
42304
|
+
};
|
|
42305
|
+
export declare type GraphStoreSimplifiedUserWatchesConfluencePageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
42306
|
+
export declare type GraphStoreSimplifiedUserWatchesConfluencePageUnion = ConfluencePage;
|
|
42307
|
+
export declare type GraphStoreSimplifiedVersionAssociatedBranchConnection = HasPageInfo & HasTotal & {
|
|
42308
|
+
__typename?: 'GraphStoreSimplifiedVersionAssociatedBranchConnection';
|
|
42309
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVersionAssociatedBranchEdge>>>;
|
|
42310
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
42311
|
+
pageInfo: PageInfo;
|
|
42312
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
42313
|
+
};
|
|
42314
|
+
export declare type GraphStoreSimplifiedVersionAssociatedBranchEdge = {
|
|
42315
|
+
__typename?: 'GraphStoreSimplifiedVersionAssociatedBranchEdge';
|
|
42316
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42317
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42318
|
+
id: Scalars['ID']['output'];
|
|
42319
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42320
|
+
node?: Maybe<GraphStoreSimplifiedVersionAssociatedBranchUnion>;
|
|
42321
|
+
};
|
|
40750
42322
|
export declare type GraphStoreSimplifiedVersionAssociatedBranchInverseConnection = HasPageInfo & HasTotal & {
|
|
40751
42323
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedBranchInverseConnection';
|
|
40752
42324
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVersionAssociatedBranchInverseEdge>>>;
|
|
@@ -40763,6 +42335,7 @@ export declare type GraphStoreSimplifiedVersionAssociatedBranchInverseEdge = {
|
|
|
40763
42335
|
node?: Maybe<GraphStoreSimplifiedVersionAssociatedBranchInverseUnion>;
|
|
40764
42336
|
};
|
|
40765
42337
|
export declare type GraphStoreSimplifiedVersionAssociatedBranchInverseUnion = JiraVersion;
|
|
42338
|
+
export declare type GraphStoreSimplifiedVersionAssociatedBranchUnion = ExternalBranch;
|
|
40766
42339
|
export declare type GraphStoreSimplifiedVersionAssociatedBuildConnection = HasPageInfo & HasTotal & {
|
|
40767
42340
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedBuildConnection';
|
|
40768
42341
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVersionAssociatedBuildEdge>>>;
|
|
@@ -40858,7 +42431,7 @@ export declare type GraphStoreSimplifiedVersionAssociatedDeploymentInverseEdge =
|
|
|
40858
42431
|
node?: Maybe<GraphStoreSimplifiedVersionAssociatedDeploymentInverseUnion>;
|
|
40859
42432
|
};
|
|
40860
42433
|
export declare type GraphStoreSimplifiedVersionAssociatedDeploymentInverseUnion = JiraVersion;
|
|
40861
|
-
export declare type GraphStoreSimplifiedVersionAssociatedDeploymentUnion = DeploymentSummary;
|
|
42434
|
+
export declare type GraphStoreSimplifiedVersionAssociatedDeploymentUnion = DeploymentSummary | ExternalDeployment;
|
|
40862
42435
|
export declare type GraphStoreSimplifiedVersionAssociatedDesignConnection = HasPageInfo & HasTotal & {
|
|
40863
42436
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedDesignConnection';
|
|
40864
42437
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVersionAssociatedDesignEdge>>>;
|
|
@@ -40983,6 +42556,19 @@ export declare type GraphStoreSimplifiedVersionAssociatedPullRequestInverseEdge
|
|
|
40983
42556
|
};
|
|
40984
42557
|
export declare type GraphStoreSimplifiedVersionAssociatedPullRequestInverseUnion = JiraVersion;
|
|
40985
42558
|
export declare type GraphStoreSimplifiedVersionAssociatedPullRequestUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
42559
|
+
export declare type GraphStoreSimplifiedVersionAssociatedRemoteLinkConnection = HasPageInfo & {
|
|
42560
|
+
__typename?: 'GraphStoreSimplifiedVersionAssociatedRemoteLinkConnection';
|
|
42561
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVersionAssociatedRemoteLinkEdge>>>;
|
|
42562
|
+
pageInfo: PageInfo;
|
|
42563
|
+
};
|
|
42564
|
+
export declare type GraphStoreSimplifiedVersionAssociatedRemoteLinkEdge = {
|
|
42565
|
+
__typename?: 'GraphStoreSimplifiedVersionAssociatedRemoteLinkEdge';
|
|
42566
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42567
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42568
|
+
id: Scalars['ID']['output'];
|
|
42569
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42570
|
+
node?: Maybe<GraphStoreSimplifiedVersionAssociatedRemoteLinkUnion>;
|
|
42571
|
+
};
|
|
40986
42572
|
export declare type GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseConnection = HasPageInfo & {
|
|
40987
42573
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseConnection';
|
|
40988
42574
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseEdge>>>;
|
|
@@ -40997,6 +42583,7 @@ export declare type GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseEdge =
|
|
|
40997
42583
|
node?: Maybe<GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseUnion>;
|
|
40998
42584
|
};
|
|
40999
42585
|
export declare type GraphStoreSimplifiedVersionAssociatedRemoteLinkInverseUnion = JiraVersion;
|
|
42586
|
+
export declare type GraphStoreSimplifiedVersionAssociatedRemoteLinkUnion = ExternalRemoteLink;
|
|
41000
42587
|
export declare type GraphStoreSimplifiedVersionUserAssociatedFeatureFlagConnection = HasPageInfo & HasTotal & {
|
|
41001
42588
|
__typename?: 'GraphStoreSimplifiedVersionUserAssociatedFeatureFlagConnection';
|
|
41002
42589
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVersionUserAssociatedFeatureFlagEdge>>>;
|
|
@@ -41428,15 +43015,48 @@ export declare type GraphStoreTestPerfhammerRelationshipSortInput = {
|
|
|
41428
43015
|
export declare type GraphStoreUserAssignedIncidentSortInput = {
|
|
41429
43016
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41430
43017
|
};
|
|
43018
|
+
export declare type GraphStoreUserAttendedCalendarEventSortInput = {
|
|
43019
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43020
|
+
};
|
|
43021
|
+
export declare type GraphStoreUserAuthoredCommitSortInput = {
|
|
43022
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43023
|
+
};
|
|
41431
43024
|
export declare type GraphStoreUserAuthoredPrSortInput = {
|
|
41432
43025
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41433
43026
|
};
|
|
43027
|
+
export declare type GraphStoreUserCanViewConfluenceSpaceSortInput = {
|
|
43028
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43029
|
+
};
|
|
43030
|
+
export declare type GraphStoreUserContributedConfluenceBlogpostSortInput = {
|
|
43031
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43032
|
+
};
|
|
43033
|
+
export declare type GraphStoreUserContributedConfluencePageSortInput = {
|
|
43034
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43035
|
+
};
|
|
43036
|
+
export declare type GraphStoreUserCreatedBranchSortInput = {
|
|
43037
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43038
|
+
};
|
|
41434
43039
|
export declare type GraphStoreUserCreatedConfluenceBlogpostSortInput = {
|
|
41435
43040
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41436
43041
|
};
|
|
41437
43042
|
export declare type GraphStoreUserCreatedConfluencePageSortInput = {
|
|
41438
43043
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41439
43044
|
};
|
|
43045
|
+
export declare type GraphStoreUserCreatedLoomVideoSortInput = {
|
|
43046
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43047
|
+
};
|
|
43048
|
+
export declare type GraphStoreUserCreatedMessageSortInput = {
|
|
43049
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43050
|
+
};
|
|
43051
|
+
export declare type GraphStoreUserCreatedRepositorySortInput = {
|
|
43052
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43053
|
+
};
|
|
43054
|
+
export declare type GraphStoreUserFavoritedConfluenceBlogpostSortInput = {
|
|
43055
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43056
|
+
};
|
|
43057
|
+
export declare type GraphStoreUserFavoritedConfluencePageSortInput = {
|
|
43058
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43059
|
+
};
|
|
41440
43060
|
export declare type GraphStoreUserHasRelevantProjectSortInput = {
|
|
41441
43061
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
41442
43062
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -41449,9 +43069,24 @@ export declare type GraphStoreUserHasTopProjectSortInput = {
|
|
|
41449
43069
|
export declare type GraphStoreUserIsInTeamSortInput = {
|
|
41450
43070
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41451
43071
|
};
|
|
43072
|
+
export declare type GraphStoreUserMemberOfConversationSortInput = {
|
|
43073
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43074
|
+
};
|
|
41452
43075
|
export declare type GraphStoreUserMergedPullRequestSortInput = {
|
|
41453
43076
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41454
43077
|
};
|
|
43078
|
+
export declare type GraphStoreUserOwnedBranchSortInput = {
|
|
43079
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43080
|
+
};
|
|
43081
|
+
export declare type GraphStoreUserOwnedCalendarEventSortInput = {
|
|
43082
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43083
|
+
};
|
|
43084
|
+
export declare type GraphStoreUserOwnedRemoteLinkSortInput = {
|
|
43085
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43086
|
+
};
|
|
43087
|
+
export declare type GraphStoreUserOwnedRepositorySortInput = {
|
|
43088
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43089
|
+
};
|
|
41455
43090
|
export declare type GraphStoreUserOwnsComponentSortInput = {
|
|
41456
43091
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
41457
43092
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -41467,12 +43102,21 @@ export declare type GraphStoreUserReportsIssueSortInput = {
|
|
|
41467
43102
|
export declare type GraphStoreUserReviewsPrSortInput = {
|
|
41468
43103
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41469
43104
|
};
|
|
43105
|
+
export declare type GraphStoreUserTaggedInCommentSortInput = {
|
|
43106
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43107
|
+
};
|
|
43108
|
+
export declare type GraphStoreUserTriggeredDeploymentSortInput = {
|
|
43109
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43110
|
+
};
|
|
41470
43111
|
export declare type GraphStoreUserUpdatedConfluenceBlogpostSortInput = {
|
|
41471
43112
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41472
43113
|
};
|
|
41473
43114
|
export declare type GraphStoreUserUpdatedConfluencePageSortInput = {
|
|
41474
43115
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41475
43116
|
};
|
|
43117
|
+
export declare type GraphStoreUserUpdatedConfluenceSpaceSortInput = {
|
|
43118
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43119
|
+
};
|
|
41476
43120
|
export declare type GraphStoreUserViewedAtlasGoalSortInput = {
|
|
41477
43121
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41478
43122
|
};
|
|
@@ -41488,6 +43132,12 @@ export declare type GraphStoreUserViewedConfluencePageSortInput = {
|
|
|
41488
43132
|
export declare type GraphStoreUserViewedJiraIssueSortInput = {
|
|
41489
43133
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41490
43134
|
};
|
|
43135
|
+
export declare type GraphStoreUserWatchesConfluenceBlogpostSortInput = {
|
|
43136
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43137
|
+
};
|
|
43138
|
+
export declare type GraphStoreUserWatchesConfluencePageSortInput = {
|
|
43139
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43140
|
+
};
|
|
41491
43141
|
export declare type GraphStoreVersionAssociatedBranchSortInput = {
|
|
41492
43142
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
41493
43143
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -41725,6 +43375,10 @@ export declare type GrowthUnifiedProfileCompany = {
|
|
|
41725
43375
|
size?: Maybe<GrowthUnifiedProfileCompanySize>;
|
|
41726
43376
|
type?: Maybe<GrowthUnifiedProfileCompanyType>;
|
|
41727
43377
|
};
|
|
43378
|
+
export declare type GrowthUnifiedProfileCompanyProfile = {
|
|
43379
|
+
__typename?: 'GrowthUnifiedProfileCompanyProfile';
|
|
43380
|
+
companyType?: Maybe<GrowthUnifiedProfileEntryType>;
|
|
43381
|
+
};
|
|
41728
43382
|
export declare enum GrowthUnifiedProfileCompanySize {
|
|
41729
43383
|
Large = "LARGE",
|
|
41730
43384
|
Medium = "MEDIUM",
|
|
@@ -41750,6 +43404,10 @@ export declare type GrowthUnifiedProfileCreateProfileInput = {
|
|
|
41750
43404
|
tenantId?: InputMaybe<Scalars['ID']['input']>;
|
|
41751
43405
|
unifiedProfile: GrowthUnifiedProfileInput;
|
|
41752
43406
|
};
|
|
43407
|
+
export declare enum GrowthUnifiedProfileDomainType {
|
|
43408
|
+
Business = "BUSINESS",
|
|
43409
|
+
Personal = "PERSONAL"
|
|
43410
|
+
}
|
|
41753
43411
|
export declare enum GrowthUnifiedProfileEnrichmentStatus {
|
|
41754
43412
|
Complete = "COMPLETE",
|
|
41755
43413
|
Error = "ERROR",
|
|
@@ -41769,6 +43427,10 @@ export declare enum GrowthUnifiedProfileEntityType {
|
|
|
41769
43427
|
Org = "ORG",
|
|
41770
43428
|
Site = "SITE"
|
|
41771
43429
|
}
|
|
43430
|
+
export declare enum GrowthUnifiedProfileEntryType {
|
|
43431
|
+
Existing = "EXISTING",
|
|
43432
|
+
New = "NEW"
|
|
43433
|
+
}
|
|
41772
43434
|
export declare type GrowthUnifiedProfileInput = {
|
|
41773
43435
|
onboardingContext?: InputMaybe<GrowthUnifiedProfileOnboardingContextInput>;
|
|
41774
43436
|
};
|
|
@@ -41890,6 +43552,7 @@ export declare type GrowthUnifiedProfileProductDetails = {
|
|
|
41890
43552
|
export declare type GrowthUnifiedProfileResult = {
|
|
41891
43553
|
__typename?: 'GrowthUnifiedProfileResult';
|
|
41892
43554
|
company?: Maybe<GrowthUnifiedProfileCompany>;
|
|
43555
|
+
companyProfile?: Maybe<GrowthUnifiedProfileCompanyProfile>;
|
|
41893
43556
|
enrichmentStatus?: Maybe<GrowthUnifiedProfileEnrichmentStatus>;
|
|
41894
43557
|
entityType?: Maybe<GrowthUnifiedProfileEntityType>;
|
|
41895
43558
|
linkedEntities?: Maybe<Array<Maybe<GrowthUnifiedProfileLinkedEntities>>>;
|
|
@@ -41898,6 +43561,7 @@ export declare type GrowthUnifiedProfileResult = {
|
|
|
41898
43561
|
seoContext?: Maybe<GrowthUnifiedProfileSeoContext>;
|
|
41899
43562
|
sites?: Maybe<Array<Maybe<GrowthUnifiedProfileSiteDetails>>>;
|
|
41900
43563
|
userFootprints?: Maybe<GrowthUnifiedProfileUserFootprints>;
|
|
43564
|
+
userProfile?: Maybe<GrowthUnifiedProfileUserProfile>;
|
|
41901
43565
|
};
|
|
41902
43566
|
export declare type GrowthUnifiedProfileSeoContext = {
|
|
41903
43567
|
__typename?: 'GrowthUnifiedProfileSeoContext';
|
|
@@ -41935,6 +43599,11 @@ export declare type GrowthUnifiedProfileUserFootprints = {
|
|
|
41935
43599
|
hasAtlassianAccount?: Maybe<Scalars['Boolean']['output']>;
|
|
41936
43600
|
products?: Maybe<Array<Maybe<GrowthUnifiedProfileProduct>>>;
|
|
41937
43601
|
};
|
|
43602
|
+
export declare type GrowthUnifiedProfileUserProfile = {
|
|
43603
|
+
__typename?: 'GrowthUnifiedProfileUserProfile';
|
|
43604
|
+
domainType?: Maybe<GrowthUnifiedProfileDomainType>;
|
|
43605
|
+
userType?: Maybe<GrowthUnifiedProfileEntryType>;
|
|
43606
|
+
};
|
|
41938
43607
|
export declare type GrowthUnifiedProfileUtm = {
|
|
41939
43608
|
__typename?: 'GrowthUnifiedProfileUtm';
|
|
41940
43609
|
channel?: Maybe<GrowthUnifiedProfileChannel>;
|
|
@@ -43275,12 +44944,17 @@ export declare type HelpLayoutQueryApi = {
|
|
|
43275
44944
|
__typename?: 'HelpLayoutQueryApi';
|
|
43276
44945
|
elementTypes?: Maybe<Array<HelpLayoutElementType>>;
|
|
43277
44946
|
layout?: Maybe<HelpLayoutResult>;
|
|
44947
|
+
layoutByParentId?: Maybe<HelpLayoutResult>;
|
|
43278
44948
|
mediaConfig?: Maybe<HelpLayoutMediaConfig>;
|
|
43279
44949
|
};
|
|
43280
44950
|
export declare type HelpLayoutQueryApiLayoutArgs = {
|
|
43281
44951
|
filter?: InputMaybe<HelpLayoutFilter>;
|
|
43282
44952
|
id: Scalars['ID']['input'];
|
|
43283
44953
|
};
|
|
44954
|
+
export declare type HelpLayoutQueryApiLayoutByParentIdArgs = {
|
|
44955
|
+
filter?: InputMaybe<HelpLayoutFilter>;
|
|
44956
|
+
parentAri: Scalars['ID']['input'];
|
|
44957
|
+
};
|
|
43284
44958
|
export declare type HelpLayoutQueryApiMediaConfigArgs = {
|
|
43285
44959
|
filter?: InputMaybe<HelpLayoutFilter>;
|
|
43286
44960
|
parentAri: Scalars['ID']['input'];
|
|
@@ -47618,6 +49292,7 @@ export declare type JiraDeleteCustomFieldInput = {
|
|
|
47618
49292
|
};
|
|
47619
49293
|
export declare type JiraDeleteCustomFieldPayload = Payload & {
|
|
47620
49294
|
__typename?: 'JiraDeleteCustomFieldPayload';
|
|
49295
|
+
affectedFieldAssociationWithIssueTypesId?: Maybe<Scalars['ID']['output']>;
|
|
47621
49296
|
errors?: Maybe<Array<MutationError>>;
|
|
47622
49297
|
success: Scalars['Boolean']['output'];
|
|
47623
49298
|
};
|
|
@@ -49277,6 +50952,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
49277
50952
|
issueTypesForHierarchySame?: Maybe<JiraIssueTypeConnection>;
|
|
49278
50953
|
jiraCoverMedia?: Maybe<JiraBackground>;
|
|
49279
50954
|
key: Scalars['String']['output'];
|
|
50955
|
+
lastRedactionTime?: Maybe<Scalars['DateTime']['output']>;
|
|
49280
50956
|
lastViewedTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
49281
50957
|
legacyContentPanels?: Maybe<JiraIssueContentPanelConnection>;
|
|
49282
50958
|
lifecycleState?: Maybe<JiraIssueLifecycleState>;
|
|
@@ -49299,6 +50975,8 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
49299
50975
|
priorityField?: Maybe<JiraPriorityField>;
|
|
49300
50976
|
projectField?: Maybe<JiraProjectField>;
|
|
49301
50977
|
projectRoleCommentVisibilities?: Maybe<JiraRoleConnection>;
|
|
50978
|
+
redactedFields?: Maybe<JiraFieldConnection>;
|
|
50979
|
+
redactions?: Maybe<JiraRedactionConnection>;
|
|
49302
50980
|
reporter?: Maybe<User>;
|
|
49303
50981
|
resolutionDateField?: Maybe<JiraDateTimePickerField>;
|
|
49304
50982
|
resolutionField?: Maybe<JiraResolutionField>;
|
|
@@ -49459,6 +51137,19 @@ export declare type JiraIssueProjectRoleCommentVisibilitiesArgs = {
|
|
|
49459
51137
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
49460
51138
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
49461
51139
|
};
|
|
51140
|
+
export declare type JiraIssueRedactedFieldsArgs = {
|
|
51141
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
51142
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
51143
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
51144
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
51145
|
+
};
|
|
51146
|
+
export declare type JiraIssueRedactionsArgs = {
|
|
51147
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
51148
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
51149
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
51150
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
51151
|
+
sortBy?: InputMaybe<JiraRedactionSortInput>;
|
|
51152
|
+
};
|
|
49462
51153
|
export declare type JiraIssueSearchViewContextArgs = {
|
|
49463
51154
|
isGroupingEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
49464
51155
|
isHierarchyEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -49741,16 +51432,24 @@ export declare type JiraIssueDevSummaryResult = {
|
|
|
49741
51432
|
};
|
|
49742
51433
|
export declare type JiraIssueEdge = {
|
|
49743
51434
|
__typename?: 'JiraIssueEdge';
|
|
51435
|
+
canHaveChildIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
49744
51436
|
cursor: Scalars['String']['output'];
|
|
49745
51437
|
fieldSets?: Maybe<JiraIssueFieldSetConnection>;
|
|
51438
|
+
hasChildren?: Maybe<Scalars['Boolean']['output']>;
|
|
49746
51439
|
node?: Maybe<JiraIssue>;
|
|
49747
51440
|
};
|
|
51441
|
+
export declare type JiraIssueEdgeCanHaveChildIssuesArgs = {
|
|
51442
|
+
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
51443
|
+
};
|
|
49748
51444
|
export declare type JiraIssueEdgeFieldSetsArgs = {
|
|
49749
51445
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
49750
51446
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
49751
51447
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
49752
51448
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
49753
51449
|
};
|
|
51450
|
+
export declare type JiraIssueEdgeHasChildrenArgs = {
|
|
51451
|
+
filterByProjectKeys?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
51452
|
+
};
|
|
49754
51453
|
export declare type JiraIssueExpandedGroup = {
|
|
49755
51454
|
fieldValue?: InputMaybe<Scalars['String']['input']>;
|
|
49756
51455
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -52014,6 +53713,7 @@ export declare type JiraMutation = {
|
|
|
52014
53713
|
jiraServiceManagementCreateRequestTypeCategory?: Maybe<JiraServiceManagementRequestTypeCategoryPayload>;
|
|
52015
53714
|
jiraServiceManagementDeleteRequestTypeCategory?: Maybe<JiraServiceManagementRequestTypeCategoryDefaultPayload>;
|
|
52016
53715
|
jiraServiceManagementUpdateRequestTypeCategory?: Maybe<JiraServiceManagementRequestTypeCategoryPayload>;
|
|
53716
|
+
jwmAssociateField?: Maybe<JiraWorkManagementAssociateFieldPayload>;
|
|
52017
53717
|
jwmCreateCustomBackground?: Maybe<JiraWorkManagementCreateCustomBackgroundPayload>;
|
|
52018
53718
|
jwmCreateSavedView?: Maybe<JiraWorkManagementCreateSavedViewPayload>;
|
|
52019
53719
|
jwmDeleteAttachment?: Maybe<JiraWorkManagementDeleteAttachmentPayload>;
|
|
@@ -52034,6 +53734,7 @@ export declare type JiraMutation = {
|
|
|
52034
53734
|
rankIssues?: Maybe<JiraRankMutationPayload>;
|
|
52035
53735
|
rankNavigationItem?: Maybe<JiraRankNavigationItemPayload>;
|
|
52036
53736
|
removeActiveBackground?: Maybe<JiraRemoveActiveBackgroundPayload>;
|
|
53737
|
+
removeCustomField?: Maybe<JiraRemoveCustomFieldPayload>;
|
|
52037
53738
|
removeIssuesFromAllFixVersions?: Maybe<JiraRemoveIssuesFromAllFixVersionsPayload>;
|
|
52038
53739
|
removeIssuesFromFixVersion?: Maybe<JiraRemoveIssuesFromFixVersionPayload>;
|
|
52039
53740
|
removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
|
|
@@ -52326,6 +54027,10 @@ export declare type JiraMutationJiraServiceManagementUpdateRequestTypeCategoryAr
|
|
|
52326
54027
|
input: JiraServiceManagementUpdateRequestTypeCategoryInput;
|
|
52327
54028
|
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
52328
54029
|
};
|
|
54030
|
+
export declare type JiraMutationJwmAssociateFieldArgs = {
|
|
54031
|
+
cloudId: Scalars['ID']['input'];
|
|
54032
|
+
input: JiraWorkManagementAssociateFieldInput;
|
|
54033
|
+
};
|
|
52329
54034
|
export declare type JiraMutationJwmCreateCustomBackgroundArgs = {
|
|
52330
54035
|
input: JiraWorkManagementCreateCustomBackgroundInput;
|
|
52331
54036
|
};
|
|
@@ -52387,6 +54092,9 @@ export declare type JiraMutationRankNavigationItemArgs = {
|
|
|
52387
54092
|
export declare type JiraMutationRemoveActiveBackgroundArgs = {
|
|
52388
54093
|
input: JiraRemoveActiveBackgroundInput;
|
|
52389
54094
|
};
|
|
54095
|
+
export declare type JiraMutationRemoveCustomFieldArgs = {
|
|
54096
|
+
input: JiraRemoveCustomFieldInput;
|
|
54097
|
+
};
|
|
52390
54098
|
export declare type JiraMutationRemoveIssuesFromAllFixVersionsArgs = {
|
|
52391
54099
|
input: JiraRemoveIssuesFromAllFixVersionsInput;
|
|
52392
54100
|
};
|
|
@@ -53060,10 +54768,15 @@ export declare type JiraOAuthAppsFeatureFlagsModuleInput = {
|
|
|
53060
54768
|
actions?: InputMaybe<JiraOAuthAppsFeatureFlagsModuleActionsInput>;
|
|
53061
54769
|
isEnabled: Scalars['Boolean']['input'];
|
|
53062
54770
|
};
|
|
54771
|
+
export declare type JiraOAuthAppsInstallAppInput = {
|
|
54772
|
+
appId: Scalars['ID']['input'];
|
|
54773
|
+
clientMutationId?: InputMaybe<Scalars['ID']['input']>;
|
|
54774
|
+
};
|
|
53063
54775
|
export declare type JiraOAuthAppsMutation = {
|
|
53064
54776
|
__typename?: 'JiraOAuthAppsMutation';
|
|
53065
54777
|
createJiraOAuthApp?: Maybe<JiraOAuthAppsPayload>;
|
|
53066
54778
|
deleteJiraOAuthApp?: Maybe<JiraOAuthAppsPayload>;
|
|
54779
|
+
installJiraOAuthApp?: Maybe<JiraOAuthAppsPayload>;
|
|
53067
54780
|
updateJiraOAuthApp?: Maybe<JiraOAuthAppsPayload>;
|
|
53068
54781
|
};
|
|
53069
54782
|
export declare type JiraOAuthAppsMutationCreateJiraOAuthAppArgs = {
|
|
@@ -53074,6 +54787,10 @@ export declare type JiraOAuthAppsMutationDeleteJiraOAuthAppArgs = {
|
|
|
53074
54787
|
cloudId: Scalars['String']['input'];
|
|
53075
54788
|
input: JiraOAuthAppsDeleteAppInput;
|
|
53076
54789
|
};
|
|
54790
|
+
export declare type JiraOAuthAppsMutationInstallJiraOAuthAppArgs = {
|
|
54791
|
+
cloudId: Scalars['String']['input'];
|
|
54792
|
+
input: JiraOAuthAppsInstallAppInput;
|
|
54793
|
+
};
|
|
53077
54794
|
export declare type JiraOAuthAppsMutationUpdateJiraOAuthAppArgs = {
|
|
53078
54795
|
cloudId: Scalars['String']['input'];
|
|
53079
54796
|
input: JiraOAuthAppsUpdateAppInput;
|
|
@@ -55688,6 +57405,7 @@ export declare type JiraRankNavigationItemInput = {
|
|
|
55688
57405
|
afterItemId?: InputMaybe<Scalars['ID']['input']>;
|
|
55689
57406
|
beforeItemId?: InputMaybe<Scalars['ID']['input']>;
|
|
55690
57407
|
id: Scalars['ID']['input'];
|
|
57408
|
+
scopeId?: InputMaybe<Scalars['ID']['input']>;
|
|
55691
57409
|
};
|
|
55692
57410
|
export declare type JiraRankNavigationItemPayload = Payload & {
|
|
55693
57411
|
__typename?: 'JiraRankNavigationItemPayload';
|
|
@@ -55711,6 +57429,38 @@ export declare enum JiraRecommendationCategory {
|
|
|
55711
57429
|
ProjectCleanup = "PROJECT_CLEANUP",
|
|
55712
57430
|
ProjectRoleActor = "PROJECT_ROLE_ACTOR"
|
|
55713
57431
|
}
|
|
57432
|
+
export declare type JiraRedaction = {
|
|
57433
|
+
__typename?: 'JiraRedaction';
|
|
57434
|
+
created?: Maybe<Scalars['DateTime']['output']>;
|
|
57435
|
+
externalRedactionId?: Maybe<Scalars['String']['output']>;
|
|
57436
|
+
fieldName?: Maybe<Scalars['String']['output']>;
|
|
57437
|
+
id: Scalars['ID']['output'];
|
|
57438
|
+
reason?: Maybe<Scalars['String']['output']>;
|
|
57439
|
+
redactedBy?: Maybe<User>;
|
|
57440
|
+
updated?: Maybe<Scalars['DateTime']['output']>;
|
|
57441
|
+
};
|
|
57442
|
+
export declare type JiraRedactionConnection = {
|
|
57443
|
+
__typename?: 'JiraRedactionConnection';
|
|
57444
|
+
edges?: Maybe<Array<Maybe<JiraRedactionEdge>>>;
|
|
57445
|
+
pageInfo: PageInfo;
|
|
57446
|
+
totalCount?: Maybe<Scalars['Long']['output']>;
|
|
57447
|
+
};
|
|
57448
|
+
export declare type JiraRedactionEdge = {
|
|
57449
|
+
__typename?: 'JiraRedactionEdge';
|
|
57450
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
57451
|
+
node?: Maybe<JiraRedaction>;
|
|
57452
|
+
};
|
|
57453
|
+
export declare enum JiraRedactionSortField {
|
|
57454
|
+
Created = "CREATED",
|
|
57455
|
+
Field = "FIELD",
|
|
57456
|
+
Reason = "REASON",
|
|
57457
|
+
RedactedBy = "REDACTED_BY",
|
|
57458
|
+
Updated = "UPDATED"
|
|
57459
|
+
}
|
|
57460
|
+
export declare type JiraRedactionSortInput = {
|
|
57461
|
+
field: JiraRedactionSortField;
|
|
57462
|
+
order?: SortDirection;
|
|
57463
|
+
};
|
|
55714
57464
|
export declare type JiraReleaseNotesConfiguration = {
|
|
55715
57465
|
__typename?: 'JiraReleaseNotesConfiguration';
|
|
55716
57466
|
issueFieldIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
@@ -55888,6 +57638,17 @@ export declare type JiraRemoveActiveBackgroundPayload = Payload & {
|
|
|
55888
57638
|
errors?: Maybe<Array<MutationError>>;
|
|
55889
57639
|
success: Scalars['Boolean']['output'];
|
|
55890
57640
|
};
|
|
57641
|
+
export declare type JiraRemoveCustomFieldInput = {
|
|
57642
|
+
cloudId: Scalars['ID']['input'];
|
|
57643
|
+
fieldId: Scalars['String']['input'];
|
|
57644
|
+
projectId: Scalars['String']['input'];
|
|
57645
|
+
};
|
|
57646
|
+
export declare type JiraRemoveCustomFieldPayload = Payload & {
|
|
57647
|
+
__typename?: 'JiraRemoveCustomFieldPayload';
|
|
57648
|
+
affectedFieldAssociationWithIssueTypesId?: Maybe<Scalars['ID']['output']>;
|
|
57649
|
+
errors?: Maybe<Array<MutationError>>;
|
|
57650
|
+
success: Scalars['Boolean']['output'];
|
|
57651
|
+
};
|
|
55891
57652
|
export declare type JiraRemoveIssuesFromAllFixVersionsInput = {
|
|
55892
57653
|
issueIds: Array<Scalars['ID']['input']>;
|
|
55893
57654
|
};
|
|
@@ -55940,6 +57701,7 @@ export declare type JiraRemoveRelatedWorkFromVersionPayload = Payload & {
|
|
|
55940
57701
|
export declare type JiraRenameNavigationItemInput = {
|
|
55941
57702
|
id: Scalars['ID']['input'];
|
|
55942
57703
|
label: Scalars['String']['input'];
|
|
57704
|
+
scopeId?: InputMaybe<Scalars['ID']['input']>;
|
|
55943
57705
|
};
|
|
55944
57706
|
export declare type JiraRenameNavigationItemPayload = Payload & {
|
|
55945
57707
|
__typename?: 'JiraRenameNavigationItemPayload';
|
|
@@ -57521,6 +59283,7 @@ export declare type JiraSetApplicationPropertyInput = {
|
|
|
57521
59283
|
};
|
|
57522
59284
|
export declare type JiraSetDefaultNavigationItemInput = {
|
|
57523
59285
|
id: Scalars['ID']['input'];
|
|
59286
|
+
scopeId?: InputMaybe<Scalars['ID']['input']>;
|
|
57524
59287
|
};
|
|
57525
59288
|
export declare type JiraSetDefaultNavigationItemPayload = Payload & {
|
|
57526
59289
|
__typename?: 'JiraSetDefaultNavigationItemPayload';
|
|
@@ -59324,6 +61087,7 @@ export declare type JiraUserPreferences = {
|
|
|
59324
61087
|
isAdvancedRoadmapsSidebarLayoutEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
59325
61088
|
isIssueViewAttachmentReferenceFlagDismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
59326
61089
|
isIssueViewChildIssuesLimitBestPracticeFlagDismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
61090
|
+
isIssueViewCrossFlowBannerDismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
59327
61091
|
isIssueViewHideDoneChildIssuesFilterEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
59328
61092
|
isIssueViewPinnedFieldsBannerDismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
59329
61093
|
isIssueViewSmartRepliesUserEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -60082,6 +61846,17 @@ export declare type JiraWorkLogField = JiraIssueField & JiraIssueFieldConfigurat
|
|
|
60082
61846
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
60083
61847
|
};
|
|
60084
61848
|
export declare type JiraWorkManagementActiveBackgroundDetailsResult = JiraWorkManagementAttachmentBackground | JiraWorkManagementColorBackground | JiraWorkManagementGradientBackground | JiraWorkManagementMediaBackground | QueryError;
|
|
61849
|
+
export declare type JiraWorkManagementAssociateFieldInput = {
|
|
61850
|
+
fieldId: Scalars['String']['input'];
|
|
61851
|
+
issueTypeIds?: InputMaybe<Array<InputMaybe<Scalars['Long']['input']>>>;
|
|
61852
|
+
projectId: Scalars['Long']['input'];
|
|
61853
|
+
};
|
|
61854
|
+
export declare type JiraWorkManagementAssociateFieldPayload = Payload & {
|
|
61855
|
+
__typename?: 'JiraWorkManagementAssociateFieldPayload';
|
|
61856
|
+
associatedIssueTypeIds?: Maybe<Array<Maybe<Scalars['Long']['output']>>>;
|
|
61857
|
+
errors?: Maybe<Array<MutationError>>;
|
|
61858
|
+
success: Scalars['Boolean']['output'];
|
|
61859
|
+
};
|
|
60085
61860
|
export declare type JiraWorkManagementAttachmentBackground = JiraWorkManagementBackground & {
|
|
60086
61861
|
__typename?: 'JiraWorkManagementAttachmentBackground';
|
|
60087
61862
|
attachment?: Maybe<JiraAttachment>;
|
|
@@ -61686,6 +63461,7 @@ export declare type KnowledgeDiscoveryKeyPhrase = {
|
|
|
61686
63461
|
};
|
|
61687
63462
|
export declare enum KnowledgeDiscoveryKeyPhraseCategory {
|
|
61688
63463
|
Acronym = "ACRONYM",
|
|
63464
|
+
Auto = "AUTO",
|
|
61689
63465
|
Other = "OTHER",
|
|
61690
63466
|
Project = "PROJECT",
|
|
61691
63467
|
Team = "TEAM"
|
|
@@ -61754,6 +63530,7 @@ export declare type KnowledgeDiscoveryQueryApi = {
|
|
|
61754
63530
|
relatedEntities?: Maybe<KnowledgeDiscoveryRelatedEntitiesResult>;
|
|
61755
63531
|
searchRelatedEntities?: Maybe<KnowledgeDiscoverySearchRelatedEntitiesResult>;
|
|
61756
63532
|
searchTeam?: Maybe<KnowledgeDiscoveryTeamSearchResult>;
|
|
63533
|
+
searchUser?: Maybe<KnowledgeDiscoveryUserSearchResult>;
|
|
61757
63534
|
smartAnswersRoute?: Maybe<KnowledgeDiscoverySmartAnswersRouteResult>;
|
|
61758
63535
|
topic?: Maybe<KnowledgeDiscoveryTopicResult>;
|
|
61759
63536
|
};
|
|
@@ -61824,6 +63601,10 @@ export declare type KnowledgeDiscoveryQueryApiSearchTeamArgs = {
|
|
|
61824
63601
|
siteId: Scalars['String']['input'];
|
|
61825
63602
|
teamName: Scalars['String']['input'];
|
|
61826
63603
|
};
|
|
63604
|
+
export declare type KnowledgeDiscoveryQueryApiSearchUserArgs = {
|
|
63605
|
+
siteId: Scalars['String']['input'];
|
|
63606
|
+
userQuery: Scalars['String']['input'];
|
|
63607
|
+
};
|
|
61827
63608
|
export declare type KnowledgeDiscoveryQueryApiSmartAnswersRouteArgs = {
|
|
61828
63609
|
locale: Scalars['String']['input'];
|
|
61829
63610
|
query: Scalars['String']['input'];
|
|
@@ -61876,6 +63657,13 @@ export declare type KnowledgeDiscoverySearchRelatedEntities = {
|
|
|
61876
63657
|
entityGroups?: Maybe<Array<Maybe<KnowledgeDiscoveryEntityGroup>>>;
|
|
61877
63658
|
};
|
|
61878
63659
|
export declare type KnowledgeDiscoverySearchRelatedEntitiesResult = KnowledgeDiscoverySearchRelatedEntities | QueryError;
|
|
63660
|
+
export declare type KnowledgeDiscoverySearchUser = {
|
|
63661
|
+
__typename?: 'KnowledgeDiscoverySearchUser';
|
|
63662
|
+
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
63663
|
+
id: Scalars['String']['output'];
|
|
63664
|
+
name: Scalars['String']['output'];
|
|
63665
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
63666
|
+
};
|
|
61879
63667
|
export declare type KnowledgeDiscoverySmartAnswersRoute = {
|
|
61880
63668
|
__typename?: 'KnowledgeDiscoverySmartAnswersRoute';
|
|
61881
63669
|
route: KnowledgeDiscoverySearchQueryClassification;
|
|
@@ -61949,6 +63737,11 @@ export declare type KnowledgeDiscoveryUser = KnowledgeDiscoveryEntity & {
|
|
|
61949
63737
|
id: Scalars['ID']['output'];
|
|
61950
63738
|
user?: Maybe<User>;
|
|
61951
63739
|
};
|
|
63740
|
+
export declare type KnowledgeDiscoveryUserSearchResult = KnowledgeDiscoveryUsers | QueryError;
|
|
63741
|
+
export declare type KnowledgeDiscoveryUsers = {
|
|
63742
|
+
__typename?: 'KnowledgeDiscoveryUsers';
|
|
63743
|
+
users?: Maybe<Array<Maybe<KnowledgeDiscoverySearchUser>>>;
|
|
63744
|
+
};
|
|
61952
63745
|
export declare type KnownUser = Person & {
|
|
61953
63746
|
__typename?: 'KnownUser';
|
|
61954
63747
|
accountId?: Maybe<Scalars['String']['output']>;
|
|
@@ -62660,6 +64453,7 @@ export declare type MarketplaceConsoleAppSoftwareShort = {
|
|
|
62660
64453
|
__typename?: 'MarketplaceConsoleAppSoftwareShort';
|
|
62661
64454
|
appKey: Scalars['ID']['output'];
|
|
62662
64455
|
appSoftwareId: Scalars['ID']['output'];
|
|
64456
|
+
editionsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
62663
64457
|
hasConnectVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
62664
64458
|
hasPublicVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
62665
64459
|
hosting: MarketplaceConsoleHosting;
|
|
@@ -64052,6 +65846,10 @@ export declare type MarketplaceStoreHomePageSectionScreenSpecificProperties = {
|
|
|
64052
65846
|
md: MarketplaceStoreHomePageSectionScreenConfig;
|
|
64053
65847
|
sm: MarketplaceStoreHomePageSectionScreenConfig;
|
|
64054
65848
|
};
|
|
65849
|
+
export declare enum MarketplaceStoreHostInstanceType {
|
|
65850
|
+
Production = "PRODUCTION",
|
|
65851
|
+
Sandbox = "SANDBOX"
|
|
65852
|
+
}
|
|
64055
65853
|
export declare type MarketplaceStoreHostLicense = {
|
|
64056
65854
|
__typename?: 'MarketplaceStoreHostLicense';
|
|
64057
65855
|
autoRenewal: Scalars['Boolean']['output'];
|
|
@@ -64064,8 +65862,10 @@ export declare type MarketplaceStoreHostLicense = {
|
|
|
64064
65862
|
export declare type MarketplaceStoreHostStatusResponse = {
|
|
64065
65863
|
__typename?: 'MarketplaceStoreHostStatusResponse';
|
|
64066
65864
|
billingCurrency: Scalars['String']['output'];
|
|
64067
|
-
|
|
65865
|
+
billingSystem: MarketplaceStoreBillingSystem;
|
|
65866
|
+
hostCmtEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
64068
65867
|
hostLicense: MarketplaceStoreHostLicense;
|
|
65868
|
+
instanceType: MarketplaceStoreHostInstanceType;
|
|
64069
65869
|
pacUnavailable: Scalars['Boolean']['output'];
|
|
64070
65870
|
upmLicensedHostUsers: Scalars['Int']['output'];
|
|
64071
65871
|
};
|
|
@@ -64097,8 +65897,11 @@ export declare enum MarketplaceStoreInstallationTargetProduct {
|
|
|
64097
65897
|
}
|
|
64098
65898
|
export declare type MarketplaceStoreInstalledAppDetailsResponse = {
|
|
64099
65899
|
__typename?: 'MarketplaceStoreInstalledAppDetailsResponse';
|
|
64100
|
-
|
|
64101
|
-
|
|
65900
|
+
edition?: Maybe<Scalars['String']['output']>;
|
|
65901
|
+
installed: Scalars['Boolean']['output'];
|
|
65902
|
+
licenseActive: Scalars['Boolean']['output'];
|
|
65903
|
+
licenseExpiryDate?: Maybe<Scalars['String']['output']>;
|
|
65904
|
+
paidLicenseActiveOnParent: Scalars['Boolean']['output'];
|
|
64102
65905
|
};
|
|
64103
65906
|
export declare type MarketplaceStoreLoggedInUser = {
|
|
64104
65907
|
__typename?: 'MarketplaceStoreLoggedInUser';
|
|
@@ -64670,6 +66473,7 @@ export declare type MercuryFocusArea = Node & {
|
|
|
64670
66473
|
allocations?: Maybe<MercuryFocusAreaAllocations>;
|
|
64671
66474
|
ari: Scalars['String']['output'];
|
|
64672
66475
|
createdDate: Scalars['String']['output'];
|
|
66476
|
+
externalId?: Maybe<Scalars['String']['output']>;
|
|
64673
66477
|
focusAreaLinks?: Maybe<MercuryFocusAreaLinks>;
|
|
64674
66478
|
focusAreaStatusUpdates?: Maybe<MercuryFocusAreaStatusUpdateConnection>;
|
|
64675
66479
|
focusAreaType: MercuryFocusAreaType;
|
|
@@ -66141,6 +67945,12 @@ export declare type Mutation = {
|
|
|
66141
67945
|
confluenceV2_deletePage?: Maybe<Scalars['Boolean']['output']>;
|
|
66142
67946
|
confluenceV2_updatePage?: Maybe<ConfluenceV2UpdatePagePayload>;
|
|
66143
67947
|
confluence_deleteCalendarCustomEventType?: Maybe<ConfluenceDeleteCalendarCustomEventTypePayload>;
|
|
67948
|
+
confluence_deleteSubCalendarAllFutureEvents?: Maybe<ConfluenceDeleteSubCalendarAllFutureEventsPayload>;
|
|
67949
|
+
confluence_deleteSubCalendarEvent?: Maybe<ConfluenceDeleteSubCalendarEventPayload>;
|
|
67950
|
+
confluence_deleteSubCalendarHiddenEvents?: Maybe<ConfluenceDeleteSubCalendarHiddenEventsPayload>;
|
|
67951
|
+
confluence_deleteSubCalendarSingleEvent?: Maybe<ConfluenceDeleteSubCalendarSingleEventPayload>;
|
|
67952
|
+
confluence_inviteUsers?: Maybe<ConfluenceInviteUserPayload>;
|
|
67953
|
+
confluence_updateSubCalendarHiddenEvents?: Maybe<ConfluenceUpdateSubCalendarHiddenEventsPayload>;
|
|
66144
67954
|
connectionManager_createApiTokenConnectionForJiraProject?: Maybe<ConnectionManagerCreateApiTokenConnectionForJiraProjectPayload>;
|
|
66145
67955
|
connectionManager_createOAuthConnectionForJiraProject?: Maybe<ConnectionManagerCreateOAuthConnectionForJiraProjectPayload>;
|
|
66146
67956
|
connectionManager_deleteApiTokenConnectionForJiraProject?: Maybe<ConnectionManagerDeleteApiTokenConnectionForJiraProjectPayload>;
|
|
@@ -66963,6 +68773,30 @@ export declare type MutationConfluence_DeleteCalendarCustomEventTypeArgs = {
|
|
|
66963
68773
|
cloudId: Scalars['ID']['input'];
|
|
66964
68774
|
input: ConfluenceDeleteCalendarCustomEventTypeInput;
|
|
66965
68775
|
};
|
|
68776
|
+
export declare type MutationConfluence_DeleteSubCalendarAllFutureEventsArgs = {
|
|
68777
|
+
cloudId: Scalars['ID']['input'];
|
|
68778
|
+
input?: InputMaybe<ConfluenceDeleteSubCalendarAllFutureEventsInput>;
|
|
68779
|
+
};
|
|
68780
|
+
export declare type MutationConfluence_DeleteSubCalendarEventArgs = {
|
|
68781
|
+
cloudId: Scalars['ID']['input'];
|
|
68782
|
+
input: ConfluenceDeleteSubCalendarEventInput;
|
|
68783
|
+
};
|
|
68784
|
+
export declare type MutationConfluence_DeleteSubCalendarHiddenEventsArgs = {
|
|
68785
|
+
cloudId: Scalars['ID']['input'];
|
|
68786
|
+
input: Array<ConfluenceDeleteSubCalendarHiddenEventsInput>;
|
|
68787
|
+
};
|
|
68788
|
+
export declare type MutationConfluence_DeleteSubCalendarSingleEventArgs = {
|
|
68789
|
+
cloudId: Scalars['ID']['input'];
|
|
68790
|
+
input: ConfluenceDeleteSubCalendarSingleEventInput;
|
|
68791
|
+
};
|
|
68792
|
+
export declare type MutationConfluence_InviteUsersArgs = {
|
|
68793
|
+
cloudId: Scalars['ID']['input'];
|
|
68794
|
+
input: ConfluenceInviteUserInput;
|
|
68795
|
+
};
|
|
68796
|
+
export declare type MutationConfluence_UpdateSubCalendarHiddenEventsArgs = {
|
|
68797
|
+
cloudId: Scalars['ID']['input'];
|
|
68798
|
+
input: Array<ConfluenceUpdateSubCalendarHiddenEventsInput>;
|
|
68799
|
+
};
|
|
66966
68800
|
export declare type MutationConnectionManager_CreateApiTokenConnectionForJiraProjectArgs = {
|
|
66967
68801
|
createApiTokenConnectionInput?: InputMaybe<ConnectionManagerCreateApiTokenConnectionInput>;
|
|
66968
68802
|
jiraProjectARI?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -70581,6 +72415,7 @@ export declare type Query = {
|
|
|
70581
72415
|
confluence_mutationsPlaceholderQuery?: Maybe<Scalars['Boolean']['output']>;
|
|
70582
72416
|
confluence_searchTeamLabels?: Maybe<LabelSearchResults>;
|
|
70583
72417
|
confluence_storage?: Maybe<ConfluenceStorage>;
|
|
72418
|
+
confluence_template?: Maybe<ContentTemplate>;
|
|
70584
72419
|
confluence_tenantContext?: Maybe<ConfluenceTenantContext>;
|
|
70585
72420
|
confluence_validateCalendarJql?: Maybe<ConfluenceCalendarJqlValidationResult>;
|
|
70586
72421
|
confluence_workflow?: Maybe<ConfluenceWorkflow>;
|
|
@@ -72127,6 +73962,10 @@ export declare type QueryConfluence_SearchTeamLabelsArgs = {
|
|
|
72127
73962
|
export declare type QueryConfluence_StorageArgs = {
|
|
72128
73963
|
cloudId: Scalars['ID']['input'];
|
|
72129
73964
|
};
|
|
73965
|
+
export declare type QueryConfluence_TemplateArgs = {
|
|
73966
|
+
cloudId: Scalars['ID']['input'];
|
|
73967
|
+
contentTemplateId: Scalars['String']['input'];
|
|
73968
|
+
};
|
|
72130
73969
|
export declare type QueryConfluence_TenantContextArgs = {
|
|
72131
73970
|
cloudId: Scalars['ID']['input'];
|
|
72132
73971
|
};
|
|
@@ -73668,7 +75507,13 @@ export declare type RadarGroupMetrics = {
|
|
|
73668
75507
|
__typename?: 'RadarGroupMetrics';
|
|
73669
75508
|
count: Scalars['Int']['output'];
|
|
73670
75509
|
field: RadarFieldValueIdPair;
|
|
73671
|
-
subGroups
|
|
75510
|
+
subGroups?: Maybe<RadarGroupMetricsConnection>;
|
|
75511
|
+
};
|
|
75512
|
+
export declare type RadarGroupMetricsSubGroupsArgs = {
|
|
75513
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
75514
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
75515
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
75516
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
73672
75517
|
};
|
|
73673
75518
|
export declare type RadarGroupMetricsConnection = RadarConnection & {
|
|
73674
75519
|
__typename?: 'RadarGroupMetricsConnection';
|
|
@@ -81600,6 +83445,7 @@ export declare type TrelloCardViewer = {
|
|
|
81600
83445
|
export declare type TrelloCheckItem = {
|
|
81601
83446
|
__typename?: 'TrelloCheckItem';
|
|
81602
83447
|
due?: Maybe<TrelloCheckItemDueInfo>;
|
|
83448
|
+
member?: Maybe<TrelloMember>;
|
|
81603
83449
|
name?: Maybe<TrelloUserGeneratedText>;
|
|
81604
83450
|
objectId: Scalars['ID']['output'];
|
|
81605
83451
|
position?: Maybe<Scalars['Float']['output']>;
|
|
@@ -82376,6 +84222,7 @@ export declare type TrelloPowerUpDataFilterInput = {
|
|
|
82376
84222
|
export declare enum TrelloPowerUpDataScope {
|
|
82377
84223
|
Board = "BOARD",
|
|
82378
84224
|
Card = "CARD",
|
|
84225
|
+
Member = "MEMBER",
|
|
82379
84226
|
Organization = "ORGANIZATION"
|
|
82380
84227
|
}
|
|
82381
84228
|
export declare type TrelloPowerUpIcon = {
|
|
@@ -82738,6 +84585,7 @@ export declare type TrelloWatchCardPayload = Payload & {
|
|
|
82738
84585
|
};
|
|
82739
84586
|
export declare type TrelloWorkspace = Node & {
|
|
82740
84587
|
__typename?: 'TrelloWorkspace';
|
|
84588
|
+
aiEligible?: Maybe<Scalars['Boolean']['output']>;
|
|
82741
84589
|
creationMethod?: Maybe<Scalars['String']['output']>;
|
|
82742
84590
|
description?: Maybe<Scalars['String']['output']>;
|
|
82743
84591
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -82943,6 +84791,7 @@ export declare type UnifiedForumsBadgesConnection = UnifiedIConnection & {
|
|
|
82943
84791
|
};
|
|
82944
84792
|
export declare type UnifiedForumsGroup = UnifiedINode & {
|
|
82945
84793
|
__typename?: 'UnifiedForumsGroup';
|
|
84794
|
+
aaid?: Maybe<Scalars['String']['output']>;
|
|
82946
84795
|
avatar?: Maybe<UnifiedForumsGroupAvatar>;
|
|
82947
84796
|
description?: Maybe<Scalars['String']['output']>;
|
|
82948
84797
|
groupMemberCount?: Maybe<Scalars['Int']['output']>;
|
|
@@ -83269,6 +85118,7 @@ export declare type UnifiedProfile = UnifiedINode & {
|
|
|
83269
85118
|
gamification?: Maybe<UnifiedUGamificationResult>;
|
|
83270
85119
|
id: Scalars['ID']['output'];
|
|
83271
85120
|
internalId?: Maybe<Scalars['ID']['output']>;
|
|
85121
|
+
isLinkedView?: Maybe<Scalars['Boolean']['output']>;
|
|
83272
85122
|
isPersonalView?: Maybe<Scalars['Boolean']['output']>;
|
|
83273
85123
|
isPrivate: Scalars['Boolean']['output'];
|
|
83274
85124
|
learning?: Maybe<UnifiedULearningResult>;
|